UNPKG

@ngx-formly/material

Version:

Formly is a dynamic (JSON powered) form library for Angular that bring unmatched maintainability to your application's forms.

16 lines (15 loc) 867 B
import { Type } from '@angular/core'; import { FieldTypeConfig, FormlyFieldConfig } from '@ngx-formly/core'; import { FormlyFieldSelectProps } from '@ngx-formly/core/select'; import { FieldType, FormlyFieldProps } from '@ngx-formly/material/form-field'; import * as i0 from "@angular/core"; interface NativeSelectProps extends FormlyFieldProps, FormlyFieldSelectProps { } export interface FormlyNativeSelectFieldConfig extends FormlyFieldConfig<NativeSelectProps> { type: 'native-select' | Type<FormlyFieldNativeSelect>; } export declare class FormlyFieldNativeSelect extends FieldType<FieldTypeConfig<NativeSelectProps>> { static ɵfac: i0.ɵɵFactoryDeclaration<FormlyFieldNativeSelect, never>; static ɵcmp: i0.ɵɵComponentDeclaration<FormlyFieldNativeSelect, "formly-field-mat-native-select", never, {}, {}, never, never, false, never>; } export {};