| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212 |
- import { _AbstractConstructor } from '@angular/material/core';
- import { AfterViewInit } from '@angular/core';
- import { AutofillMonitor } from '@angular/cdk/text-field';
- import { BooleanInput } from '@angular/cdk/coercion';
- import { CanUpdateErrorState } from '@angular/material/core';
- import { _Constructor } from '@angular/material/core';
- import { DoCheck } from '@angular/core';
- import { ElementRef } from '@angular/core';
- import { ErrorStateMatcher } from '@angular/material/core';
- import { FormGroupDirective } from '@angular/forms';
- import * as i0 from '@angular/core';
- import * as i2 from '@angular/material/core';
- import * as i3 from '@angular/material/form-field';
- import * as i4 from '@angular/cdk/text-field';
- import { InjectionToken } from '@angular/core';
- import { MatFormField } from '@angular/material/form-field';
- import { MatFormFieldControl } from '@angular/material/form-field';
- import { NgControl } from '@angular/forms';
- import { NgForm } from '@angular/forms';
- import { NgZone } from '@angular/core';
- import { OnChanges } from '@angular/core';
- import { OnDestroy } from '@angular/core';
- import { Platform } from '@angular/cdk/platform';
- import { Subject } from 'rxjs';
- /** @docs-private */
- export declare function getMatInputUnsupportedTypeError(type: string): Error;
- declare namespace i1 {
- export {
- MatInput
- }
- }
- /**
- * This token is used to inject the object whose value should be set into `MatInput`. If none is
- * provided, the native `HTMLInputElement` is used. Directives like `MatDatepickerInput` can provide
- * themselves for this token, in order to make `MatInput` delegate the getting and setting of the
- * value to them.
- */
- export declare const MAT_INPUT_VALUE_ACCESSOR: InjectionToken<{
- value: any;
- }>;
- export declare class MatInput extends _MatInputBase implements MatFormFieldControl<any>, OnChanges, OnDestroy, AfterViewInit, DoCheck, CanUpdateErrorState {
- protected _elementRef: ElementRef<HTMLInputElement | HTMLSelectElement | HTMLTextAreaElement>;
- protected _platform: Platform;
- private _autofillMonitor;
- protected _formField?: MatFormField | undefined;
- protected _uid: string;
- protected _previousNativeValue: any;
- private _inputValueAccessor;
- private _previousPlaceholder;
- /** Whether the component is being rendered on the server. */
- readonly _isServer: boolean;
- /** Whether the component is a native html select. */
- readonly _isNativeSelect: boolean;
- /** Whether the component is a textarea. */
- readonly _isTextarea: boolean;
- /** Whether the input is inside of a form field. */
- readonly _isInFormField: boolean;
- /**
- * Implemented as part of MatFormFieldControl.
- * @docs-private
- */
- focused: boolean;
- /**
- * Implemented as part of MatFormFieldControl.
- * @docs-private
- */
- readonly stateChanges: Subject<void>;
- /**
- * Implemented as part of MatFormFieldControl.
- * @docs-private
- */
- controlType: string;
- /**
- * Implemented as part of MatFormFieldControl.
- * @docs-private
- */
- autofilled: boolean;
- /**
- * Implemented as part of MatFormFieldControl.
- * @docs-private
- */
- get disabled(): boolean;
- set disabled(value: BooleanInput);
- protected _disabled: boolean;
- /**
- * Implemented as part of MatFormFieldControl.
- * @docs-private
- */
- get id(): string;
- set id(value: string);
- protected _id: string;
- /**
- * Implemented as part of MatFormFieldControl.
- * @docs-private
- */
- placeholder: string;
- /**
- * Name of the input.
- * @docs-private
- */
- name: string;
- /**
- * Implemented as part of MatFormFieldControl.
- * @docs-private
- */
- get required(): boolean;
- set required(value: BooleanInput);
- protected _required: boolean | undefined;
- /** Input type of the element. */
- get type(): string;
- set type(value: string);
- protected _type: string;
- /** An object used to control when error messages are shown. */
- errorStateMatcher: ErrorStateMatcher;
- /**
- * Implemented as part of MatFormFieldControl.
- * @docs-private
- */
- userAriaDescribedBy: string;
- /**
- * Implemented as part of MatFormFieldControl.
- * @docs-private
- */
- get value(): string;
- set value(value: any);
- /** Whether the element is readonly. */
- get readonly(): boolean;
- set readonly(value: BooleanInput);
- private _readonly;
- protected _neverEmptyInputTypes: string[];
- constructor(_elementRef: ElementRef<HTMLInputElement | HTMLSelectElement | HTMLTextAreaElement>, _platform: Platform, ngControl: NgControl, _parentForm: NgForm, _parentFormGroup: FormGroupDirective, _defaultErrorStateMatcher: ErrorStateMatcher, inputValueAccessor: any, _autofillMonitor: AutofillMonitor, ngZone: NgZone, _formField?: MatFormField | undefined);
- ngAfterViewInit(): void;
- ngOnChanges(): void;
- ngOnDestroy(): void;
- ngDoCheck(): void;
- /** Focuses the input. */
- focus(options?: FocusOptions): void;
- /** Callback for the cases where the focused state of the input changes. */
- _focusChanged(isFocused: boolean): void;
- _onInput(): void;
- /** Does some manual dirty checking on the native input `value` property. */
- protected _dirtyCheckNativeValue(): void;
- /** Does some manual dirty checking on the native input `placeholder` attribute. */
- private _dirtyCheckPlaceholder;
- /** Gets the current placeholder of the form field. */
- protected _getPlaceholder(): string | null;
- /** Make sure the input is a supported type. */
- protected _validateType(): void;
- /** Checks whether the input type is one of the types that are never empty. */
- protected _isNeverEmpty(): boolean;
- /** Checks whether the input is invalid based on the native validation. */
- protected _isBadInput(): boolean;
- /**
- * Implemented as part of MatFormFieldControl.
- * @docs-private
- */
- get empty(): boolean;
- /**
- * Implemented as part of MatFormFieldControl.
- * @docs-private
- */
- get shouldLabelFloat(): boolean;
- /**
- * Implemented as part of MatFormFieldControl.
- * @docs-private
- */
- setDescribedByIds(ids: string[]): void;
- /**
- * Implemented as part of MatFormFieldControl.
- * @docs-private
- */
- onContainerClick(): void;
- /** Whether the form control is a native select that is displayed inline. */
- _isInlineSelect(): boolean;
- private _iOSKeyupListener;
- static ɵfac: i0.ɵɵFactoryDeclaration<MatInput, [null, null, { optional: true; self: true; }, { optional: true; }, { optional: true; }, null, { optional: true; self: true; }, null, null, { optional: true; }]>;
- static ɵdir: i0.ɵɵDirectiveDeclaration<MatInput, "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", ["matInput"], { "disabled": { "alias": "disabled"; "required": false; }; "id": { "alias": "id"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "name": { "alias": "name"; "required": false; }; "required": { "alias": "required"; "required": false; }; "type": { "alias": "type"; "required": false; }; "errorStateMatcher": { "alias": "errorStateMatcher"; "required": false; }; "userAriaDescribedBy": { "alias": "aria-describedby"; "required": false; }; "value": { "alias": "value"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; }, {}, never, never, false, never>;
- }
- /** @docs-private */
- declare const _MatInputBase: _Constructor<CanUpdateErrorState> & _AbstractConstructor<CanUpdateErrorState> & {
- new (_defaultErrorStateMatcher: ErrorStateMatcher, _parentForm: NgForm, _parentFormGroup: FormGroupDirective, ngControl: NgControl): {
- /**
- * Emits whenever the component state changes and should cause the parent
- * form field to update. Implemented as part of `MatFormFieldControl`.
- * @docs-private
- */
- readonly stateChanges: Subject<void>;
- _defaultErrorStateMatcher: ErrorStateMatcher;
- _parentForm: NgForm;
- _parentFormGroup: FormGroupDirective;
- /**
- * Form control bound to the component.
- * Implemented as part of `MatFormFieldControl`.
- * @docs-private
- */
- ngControl: NgControl;
- };
- };
- export declare class MatInputModule {
- static ɵfac: i0.ɵɵFactoryDeclaration<MatInputModule, never>;
- static ɵmod: i0.ɵɵNgModuleDeclaration<MatInputModule, [typeof i1.MatInput], [typeof i2.MatCommonModule, typeof i3.MatFormFieldModule], [typeof i1.MatInput, typeof i3.MatFormFieldModule, typeof i4.TextFieldModule, typeof i2.MatCommonModule]>;
- static ɵinj: i0.ɵɵInjectorDeclaration<MatInputModule>;
- }
- export { }
|