Whether the datepicker input is empty.
()
| 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; |