MCPcopy Create free account
hub / github.com/UI5/webcomponents / isValidMin

Method isValidMin

packages/main/src/DateRangePicker.ts:405–409  ·  view source on GitHub ↗
(value: string)

Source from the content-addressed store, hash-verified

403 }
404
405 isValidMin(value: string): boolean {
406 const parts = this._splitValueByDelimiter(value).filter(str => str.trim() !== "");
407
408 return parts.length <= 2 && parts.every(dateString => super.isValidMin(dateString));
409 }
410
411 isValidMax(value: string): boolean {
412 const parts = this._splitValueByDelimiter(value).filter(str => str.trim() !== "");

Callers 1

formValidityMethod · 0.95

Calls 1

Tested by

no test coverage detected