xui
Version:
xUI Components for Angular
9 lines (8 loc) • 360 B
TypeScript
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;
}