import { Directionality } from '@angular/cdk/bidi'; import { DoCheck, ElementRef, InjectionToken, Injector, OnInit } from '@angular/core'; import { FormGroupDirective, NgControl, NgForm, ValidatorFn } from '@angular/forms'; import { ErrorStateMatcher } from '@angular/material/core'; import { NgxMatDateAdapter } from './core/date-adapter'; import { NgxMatDateFormats } from './core/date-formats'; import { NgxDateRange, NgxDateSelectionModelChange } from './date-selection-model'; import { NgxDateFilterFn, NgxMatDatepickerInputBase } from './datepicker-input-base'; import * as i0 from "@angular/core"; /** Parent component that should be wrapped around `MatStartDate` and `MatEndDate`. */ export interface NgxMatDateRangeInputParent { id: string; min: D | null; max: D | null; dateFilter: NgxDateFilterFn; rangePicker: { opened: boolean; id: string; }; _startInput: NgxMatDateRangeInputPartBase; _endInput: NgxMatDateRangeInputPartBase; _groupDisabled: boolean; _handleChildValueChange(): void; _openDatepicker(): void; } /** * Used to provide the date range input wrapper component * to the parts without circular dependencies. */ export declare const NGX_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 NgxMatDateRangeInputPartBase extends NgxMatDatepickerInputBase> implements OnInit, DoCheck { _rangeInput: NgxMatDateRangeInputParent; _elementRef: ElementRef; _defaultErrorStateMatcher: ErrorStateMatcher; private _injector; _parentForm: NgForm; _parentFormGroup: FormGroupDirective; errorStateMatcher: ErrorStateMatcher; /** * Form control bound to this input part. * @docs-private */ ngControl: NgControl; errorState: boolean; protected abstract _validator: ValidatorFn | null; protected abstract _assignValueToModel(value: D | null): void; protected abstract _getValueFromModel(modelValue: NgxDateRange): D | null; protected readonly _dir: Directionality; constructor(_rangeInput: NgxMatDateRangeInputParent, _elementRef: ElementRef, _defaultErrorStateMatcher: ErrorStateMatcher, _injector: Injector, _parentForm: NgForm, _parentFormGroup: FormGroupDirective, dateAdapter: NgxMatDateAdapter, dateFormats: NgxMatDateFormats); ngOnInit(): void; ngDoCheck(): void; updateErrorState(): void; /** Gets whether the input is empty. */ isEmpty(): boolean; /** Gets the placeholder of the input. */ _getPlaceholder(): string; /** Focuses the input. */ focus(): void; /** Gets the value that should be used when mirroring the input's size. */ getMirrorValue(): string; /** 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; /** Gets the maximum date from the range input. */ _getMaxDate(): D; /** Gets the date filter function from the range input. */ protected _getDateFilter(): NgxDateFilterFn; protected _parentDisabled(): boolean; protected _shouldHandleChangeEvent({ source }: NgxDateSelectionModelChange>): boolean; protected _assignValueProgrammatically(value: D | null): void; /** return the ARIA accessible name of the input element */ _getAccessibleName(): string; static ɵfac: i0.ɵɵFactoryDeclaration, [null, null, null, null, { optional: true; }, { optional: true; }, { optional: true; }, { optional: true; }]>; static ɵdir: i0.ɵɵDirectiveDeclaration, never, never, { "errorStateMatcher": { "alias": "errorStateMatcher"; "required": false; }; }, {}, never, never, true, never>; } /** Input for entering the start date in a `mat-date-range-input`. */ export declare class NgxMatStartDate extends NgxMatDateRangeInputPartBase { /** Validator that checks that the start date isn't after the end date. */ private _startValidator; constructor(rangeInput: NgxMatDateRangeInputParent, elementRef: ElementRef, defaultErrorStateMatcher: ErrorStateMatcher, injector: Injector, parentForm: NgForm, parentFormGroup: FormGroupDirective, dateAdapter: NgxMatDateAdapter, dateFormats: NgxMatDateFormats); protected _validator: ValidatorFn; protected _getValueFromModel(modelValue: NgxDateRange): D; protected _shouldHandleChangeEvent(change: NgxDateSelectionModelChange>): boolean; protected _assignValueToModel(value: D | null): void; protected _formatValue(value: D | null): void; _onKeydown(event: KeyboardEvent): void; static ɵfac: i0.ɵɵFactoryDeclaration, [null, null, null, null, { optional: true; }, { optional: true; }, { optional: true; }, { optional: true; }]>; static ɵdir: i0.ɵɵDirectiveDeclaration, "input[ngxMatStartDate]", never, { "errorStateMatcher": { "alias": "errorStateMatcher"; "required": false; }; }, { "dateChange": "dateChange"; "dateInput": "dateInput"; }, never, never, false, never>; } /** Input for entering the end date in a `mat-date-range-input`. */ export declare class NgxMatEndDate extends NgxMatDateRangeInputPartBase { /** Validator that checks that the end date isn't before the start date. */ private _endValidator; constructor(rangeInput: NgxMatDateRangeInputParent, elementRef: ElementRef, defaultErrorStateMatcher: ErrorStateMatcher, injector: Injector, parentForm: NgForm, parentFormGroup: FormGroupDirective, dateAdapter: NgxMatDateAdapter, dateFormats: NgxMatDateFormats); protected _validator: ValidatorFn; protected _getValueFromModel(modelValue: NgxDateRange): D; protected _shouldHandleChangeEvent(change: NgxDateSelectionModelChange>): boolean; protected _assignValueToModel(value: D | null): void; _onKeydown(event: KeyboardEvent): void; static ɵfac: i0.ɵɵFactoryDeclaration, [null, null, null, null, { optional: true; }, { optional: true; }, { optional: true; }, { optional: true; }]>; static ɵdir: i0.ɵɵDirectiveDeclaration, "input[ngxMatEndDate]", never, { "errorStateMatcher": { "alias": "errorStateMatcher"; "required": false; }; }, { "dateChange": "dateChange"; "dateInput": "dateInput"; }, never, never, false, never>; } export {};