MCPcopy Create free account
hub / github.com/angular/components / empty

Method empty

src/material/datepicker/date-range-input.ts:227–231  ·  view source on GitHub ↗

Whether the datepicker input is empty.

()

Source from the content-addressed store, hash-verified

225
226 /** Whether the datepicker input is empty. */
227 get empty(): boolean {
228 const startEmpty = this._startInput ? this._startInput.isEmpty() : false;
229 const endEmpty = this._endInput ? this._endInput.isEmpty() : false;
230 return startEmpty && endEmpty;
231 }
232
233 /** Value for the `aria-describedby` attribute of the inputs. */
234 _ariaDescribedBy: string | null = null;

Callers

nothing calls this directly

Calls 1

isEmptyMethod · 0.45

Tested by

no test coverage detected