kwikui
Version:
KwikID's UI Component Library in Angular
21 lines (20 loc) • 819 B
TypeScript
export declare enum EKwikUIInputCase {
DEFAULT = "default",
UPPER = "upper",
LOWER = "lower"
}
export declare const VKwikUIInputCase: readonly [EKwikUIInputCase.DEFAULT, EKwikUIInputCase.UPPER, EKwikUIInputCase.LOWER];
export declare type TKwikUIInputCase = (typeof VKwikUIInputCase)[number];
export declare enum EKwikUIInputType {
TEXT = "text",
EMAIL = "email"
}
export declare const VKwikUIInputType: readonly [EKwikUIInputType.TEXT, EKwikUIInputType.EMAIL];
export declare type TKwikUIInputType = (typeof VKwikUIInputType)[number];
export declare enum EKwikUIInputSize {
S = "s",
M = "m",
L = "l"
}
export declare const VKwikUIInputSize: readonly [EKwikUIInputSize.S, EKwikUIInputSize.M, EKwikUIInputSize.L];
export declare type TKwikUIInputSize = (typeof VKwikUIInputSize)[number];