/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ import { ElementRef, InjectionToken, OnInit, Injector, DoCheck } from '@angular/core'; import { NgForm, FormGroupDirective, NgControl, ValidatorFn } from '@angular/forms'; import { CanUpdateErrorState, DateAdapter, MatDateFormats, ErrorStateMatcher } from '@angular/material/core'; import { MatDatepickerInputBase, DateFilterFn } from './datepicker-input-base'; import { DateRange, DateSelectionModelChange } from './date-selection-model'; /** Parent component that should be wrapped around `MatStartDate` and `MatEndDate`. */ export interface MatDateRangeInputParent { id: string; min: D | null; max: D | null; dateFilter: DateFilterFn; rangePicker: { opened: boolean; id: string; }; _startInput: MatDateRangeInputPartBase; _endInput: MatDateRangeInputPartBase; _groupDisabled: boolean; _handleChildValueChange(): void; _openDatepicker(): void; } /** * Used to provide the date range input wrapper component * to the parts without circular dependencies. */ export declare const MAT_DATE_RANGE_INPUT_PARENT: InjectionToken>; /** * Base class for the individual inputs that can be projected inside a `mat-date-range-input`. */ declare abstract class MatDateRangeInputPartBase extends MatDatepickerInputBase> implements OnInit, DoCheck { _rangeInput: MatDateRangeInputParent; _defaultErrorStateMatcher: ErrorStateMatcher; private _injector; _parentForm: NgForm; _parentFormGroup: FormGroupDirective; /** @docs-private */ ngControl: NgControl; /** @docs-private */ abstract updateErrorState(): void; protected abstract _validator: ValidatorFn | null; protected abstract _assignValueToModel(value: D | null): void; protected abstract _getValueFromModel(modelValue: DateRange): D | null; constructor(_rangeInput: MatDateRangeInputParent, elementRef: ElementRef, _defaultErrorStateMatcher: ErrorStateMatcher, _injector: Injector, _parentForm: NgForm, _parentFormGroup: FormGroupDirective, dateAdapter: DateAdapter, dateFormats: MatDateFormats); ngOnInit(): void; ngDoCheck(): void; /** Gets whether the input is empty. */ isEmpty(): boolean; /** Gets the placeholder of the input. */ _getPlaceholder(): string; /** Focuses the input. */ focus(): void; /** Handles `input` events on the input element. */ _onInput(value: string): void; /** Opens the datepicker associated with the input. */ protected _openPopup(): void; /** Gets the minimum date from the range input. */ _getMinDate(): D | null; /** Gets the maximum date from the range input. */ _getMaxDate(): D | null; /** Gets the date filter function from the range input. */ protected _getDateFilter(): DateFilterFn; protected _parentDisabled(): boolean; protected _shouldHandleChangeEvent({ source }: DateSelectionModelChange>): boolean; protected _assignValueProgrammatically(value: D | null): void; } declare const _MatDateRangeInputBase: import("@angular/material/core/common-behaviors/constructor").Constructor & import("@angular/material/core/common-behaviors/constructor").AbstractConstructor & typeof MatDateRangeInputPartBase; /** Input for entering the start date in a `mat-date-range-input`. */ export declare class MatStartDate extends _MatDateRangeInputBase implements CanUpdateErrorState, DoCheck, OnInit { /** Validator that checks that the start date isn't after the end date. */ private _startValidator; constructor(rangeInput: MatDateRangeInputParent, elementRef: ElementRef, defaultErrorStateMatcher: ErrorStateMatcher, injector: Injector, parentForm: NgForm, parentFormGroup: FormGroupDirective, dateAdapter: DateAdapter, dateFormats: MatDateFormats); ngOnInit(): void; ngDoCheck(): void; protected _validator: ValidatorFn | null; protected _getValueFromModel(modelValue: DateRange): D | null; protected _shouldHandleChangeEvent(change: DateSelectionModelChange>): boolean; protected _assignValueToModel(value: D | null): void; protected _formatValue(value: D | null): void; /** Gets the value that should be used when mirroring the input's size. */ getMirrorValue(): string; } /** Input for entering the end date in a `mat-date-range-input`. */ export declare class MatEndDate extends _MatDateRangeInputBase implements CanUpdateErrorState, DoCheck, OnInit { /** Validator that checks that the end date isn't before the start date. */ private _endValidator; constructor(rangeInput: MatDateRangeInputParent, elementRef: ElementRef, defaultErrorStateMatcher: ErrorStateMatcher, injector: Injector, parentForm: NgForm, parentFormGroup: FormGroupDirective, dateAdapter: DateAdapter, dateFormats: MatDateFormats); ngOnInit(): void; ngDoCheck(): void; protected _validator: ValidatorFn | null; protected _getValueFromModel(modelValue: DateRange): D | null; protected _shouldHandleChangeEvent(change: DateSelectionModelChange>): boolean; protected _assignValueToModel(value: D | null): void; _onKeydown(event: KeyboardEvent): void; } export {};