Fixed styles(TODO: styles in search mode)

This commit is contained in:
MaxOvs
2023-01-10 18:12:38 +03:00
parent d4eb4c20d0
commit 5b7b9c041e
5 changed files with 248 additions and 21 deletions

View File

@ -12,9 +12,18 @@ export interface ICgSelect {
listDisplayMode?: boolean;
language?: string;
lable?: string;
styles?: object;
styles?: IStyle;
event?: string;
url?: string;
multiselect?: boolean;
multiselectTag?: boolean;
}
export interface IStyle {
head?: object;
caret?: object;
placeholder?: object;
lable?: object;
list?: object;
search?: object;
}