UNPKG

xui

Version:

xUI Components for Angular

9 lines (8 loc) 360 B
import { InjectionToken } from '@angular/core'; export type InputSize = 'large' | 'small'; export type InputColor = 'light' | 'dark'; export type InputType = 'text' | 'password' | 'color' | 'date' | 'email' | 'number'; export declare const INPUT_GROUP_ACCESSOR: InjectionToken<InputGroupAccessor>; export interface InputGroupAccessor { size?: InputSize; }