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

Method _minDate

packages/main/src/DateComponentBase.ts:140–147  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

138 }
139
140 get _minDate() {
141 const key = `${this.minDate}__${this._primaryCalendarType}`;
142 if (!this._cachedMinDate || this._cachedMinDate.key !== key) {
143 const parsed = this.minDate ? this._getMinMaxCalendarDateFromString(this.minDate) : undefined;
144 this._cachedMinDate = { key, value: parsed || getMinCalendarDate(this._primaryCalendarType) };
145 }
146 return this._cachedMinDate.value;
147 }
148
149 get _maxDate() {
150 const key = `${this.maxDate}__${this._primaryCalendarType}`;

Callers

nothing calls this directly

Calls 2

getMinCalendarDateFunction · 0.85

Tested by

no test coverage detected