@codemonster-ru/vueforge 0.55.0 → 0.57.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +124 -2
- package/dist/index.css +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.ts.mjs +4021 -3474
- package/dist/index.ts.umd.js +3 -3
- package/dist/package/components/__tests__/combobox.test.d.ts +1 -0
- package/dist/package/components/__tests__/mention-input.test.d.ts +1 -0
- package/dist/package/components/autocomplete.vue.d.ts +2 -2
- package/dist/package/components/combobox.vue.d.ts +67 -0
- package/dist/package/components/data-table.vue.d.ts +1 -1
- package/dist/package/components/mention-input.vue.d.ts +64 -0
- package/dist/package/components/multi-select.vue.d.ts +2 -2
- package/dist/package/components/tag-input.vue.d.ts +2 -2
- package/dist/package/components/tree-select.vue.d.ts +1 -1
- package/dist/package/config/theme-core.d.ts +81 -0
- package/dist/package/themes/default/components/combobox.d.ts +44 -0
- package/dist/package/themes/default/components/mention-input.d.ts +37 -0
- package/dist/package/themes/default/index.d.ts +79 -0
- package/package.json +1 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -42,11 +42,11 @@ declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, imp
|
|
|
42
42
|
modelValue: OptionValue;
|
|
43
43
|
placeholder: string;
|
|
44
44
|
readonly: boolean;
|
|
45
|
+
loadingText: string;
|
|
46
|
+
emptyText: string;
|
|
45
47
|
options: Array<OptionItem>;
|
|
46
48
|
optionLabel: string;
|
|
47
49
|
optionValue: string;
|
|
48
|
-
loadingText: string;
|
|
49
|
-
emptyText: string;
|
|
50
50
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
51
51
|
root: HTMLDivElement;
|
|
52
52
|
control: HTMLInputElement;
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
type Size = 'small' | 'normal' | 'large';
|
|
2
|
+
type Variant = 'filled' | 'outlined';
|
|
3
|
+
type OptionValue = string | number;
|
|
4
|
+
interface OptionItem {
|
|
5
|
+
label: string;
|
|
6
|
+
value: OptionValue;
|
|
7
|
+
disabled?: boolean;
|
|
8
|
+
}
|
|
9
|
+
interface Props {
|
|
10
|
+
modelValue?: OptionValue;
|
|
11
|
+
inputValue?: string;
|
|
12
|
+
options?: Array<OptionItem>;
|
|
13
|
+
optionLabel?: string;
|
|
14
|
+
optionValue?: string;
|
|
15
|
+
placeholder?: string;
|
|
16
|
+
disabled?: boolean;
|
|
17
|
+
readonly?: boolean;
|
|
18
|
+
loading?: boolean;
|
|
19
|
+
loadingText?: string;
|
|
20
|
+
emptyText?: string;
|
|
21
|
+
filter?: boolean;
|
|
22
|
+
strict?: boolean;
|
|
23
|
+
allowCreate?: boolean;
|
|
24
|
+
clearable?: boolean;
|
|
25
|
+
variant?: Variant;
|
|
26
|
+
size?: Size;
|
|
27
|
+
}
|
|
28
|
+
declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
29
|
+
search: (...args: any[]) => void;
|
|
30
|
+
blur: (...args: any[]) => void;
|
|
31
|
+
change: (...args: any[]) => void;
|
|
32
|
+
focus: (...args: any[]) => void;
|
|
33
|
+
"update:modelValue": (...args: any[]) => void;
|
|
34
|
+
"update:inputValue": (...args: any[]) => void;
|
|
35
|
+
create: (...args: any[]) => void;
|
|
36
|
+
}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
|
|
37
|
+
onSearch?: ((...args: any[]) => any) | undefined;
|
|
38
|
+
onBlur?: ((...args: any[]) => any) | undefined;
|
|
39
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
40
|
+
onFocus?: ((...args: any[]) => any) | undefined;
|
|
41
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
42
|
+
"onUpdate:inputValue"?: ((...args: any[]) => any) | undefined;
|
|
43
|
+
onCreate?: ((...args: any[]) => any) | undefined;
|
|
44
|
+
}>, {
|
|
45
|
+
filter: boolean;
|
|
46
|
+
disabled: boolean;
|
|
47
|
+
strict: boolean;
|
|
48
|
+
size: Size;
|
|
49
|
+
loading: boolean;
|
|
50
|
+
variant: Variant;
|
|
51
|
+
modelValue: OptionValue;
|
|
52
|
+
placeholder: string;
|
|
53
|
+
readonly: boolean;
|
|
54
|
+
clearable: boolean;
|
|
55
|
+
loadingText: string;
|
|
56
|
+
emptyText: string;
|
|
57
|
+
options: Array<OptionItem>;
|
|
58
|
+
optionLabel: string;
|
|
59
|
+
optionValue: string;
|
|
60
|
+
inputValue: string;
|
|
61
|
+
allowCreate: boolean;
|
|
62
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
63
|
+
root: HTMLDivElement;
|
|
64
|
+
control: HTMLInputElement;
|
|
65
|
+
panel: HTMLDivElement;
|
|
66
|
+
}, HTMLDivElement>;
|
|
67
|
+
export default _default;
|
|
@@ -62,9 +62,9 @@ declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {},
|
|
|
62
62
|
loading: boolean;
|
|
63
63
|
variant: Variant;
|
|
64
64
|
ariaLabel: string;
|
|
65
|
-
rows: Array<Record<string, unknown>>;
|
|
66
65
|
loadingText: string;
|
|
67
66
|
emptyText: string;
|
|
67
|
+
rows: Array<Record<string, unknown>>;
|
|
68
68
|
columns: Array<DataTableColumn>;
|
|
69
69
|
rowKey: string | ((row: Record<string, unknown>, index: number) => string | number);
|
|
70
70
|
sortable: boolean;
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
type Size = 'small' | 'normal' | 'large';
|
|
2
|
+
type Variant = 'filled' | 'outlined';
|
|
3
|
+
interface MentionOption {
|
|
4
|
+
label: string;
|
|
5
|
+
value?: string | number;
|
|
6
|
+
trigger?: string;
|
|
7
|
+
disabled?: boolean;
|
|
8
|
+
}
|
|
9
|
+
interface Props {
|
|
10
|
+
modelValue?: string;
|
|
11
|
+
suggestions?: Array<MentionOption>;
|
|
12
|
+
triggers?: Array<string>;
|
|
13
|
+
placeholder?: string;
|
|
14
|
+
disabled?: boolean;
|
|
15
|
+
readonly?: boolean;
|
|
16
|
+
loading?: boolean;
|
|
17
|
+
loadingText?: string;
|
|
18
|
+
emptyText?: string;
|
|
19
|
+
minQueryLength?: number;
|
|
20
|
+
maxSuggestions?: number;
|
|
21
|
+
appendSpace?: boolean;
|
|
22
|
+
size?: Size;
|
|
23
|
+
variant?: Variant;
|
|
24
|
+
ariaLabel?: string;
|
|
25
|
+
}
|
|
26
|
+
declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
27
|
+
search: (...args: any[]) => void;
|
|
28
|
+
blur: (...args: any[]) => void;
|
|
29
|
+
change: (...args: any[]) => void;
|
|
30
|
+
focus: (...args: any[]) => void;
|
|
31
|
+
input: (...args: any[]) => void;
|
|
32
|
+
select: (...args: any[]) => void;
|
|
33
|
+
"update:modelValue": (...args: any[]) => void;
|
|
34
|
+
insert: (...args: any[]) => void;
|
|
35
|
+
}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
|
|
36
|
+
onSearch?: ((...args: any[]) => any) | undefined;
|
|
37
|
+
onBlur?: ((...args: any[]) => any) | undefined;
|
|
38
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
39
|
+
onFocus?: ((...args: any[]) => any) | undefined;
|
|
40
|
+
onInput?: ((...args: any[]) => any) | undefined;
|
|
41
|
+
onSelect?: ((...args: any[]) => any) | undefined;
|
|
42
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
43
|
+
onInsert?: ((...args: any[]) => any) | undefined;
|
|
44
|
+
}>, {
|
|
45
|
+
disabled: boolean;
|
|
46
|
+
size: Size;
|
|
47
|
+
loading: boolean;
|
|
48
|
+
variant: Variant;
|
|
49
|
+
modelValue: string;
|
|
50
|
+
placeholder: string;
|
|
51
|
+
readonly: boolean;
|
|
52
|
+
ariaLabel: string;
|
|
53
|
+
suggestions: Array<MentionOption>;
|
|
54
|
+
triggers: Array<string>;
|
|
55
|
+
loadingText: string;
|
|
56
|
+
emptyText: string;
|
|
57
|
+
minQueryLength: number;
|
|
58
|
+
maxSuggestions: number;
|
|
59
|
+
appendSpace: boolean;
|
|
60
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
61
|
+
root: HTMLDivElement;
|
|
62
|
+
control: HTMLInputElement;
|
|
63
|
+
}, HTMLDivElement>;
|
|
64
|
+
export default _default;
|
|
@@ -45,11 +45,11 @@ declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, imp
|
|
|
45
45
|
placeholder: string;
|
|
46
46
|
readonly: boolean;
|
|
47
47
|
clearable: boolean;
|
|
48
|
+
loadingText: string;
|
|
49
|
+
emptyText: string;
|
|
48
50
|
options: Array<OptionItem>;
|
|
49
51
|
optionLabel: string;
|
|
50
52
|
optionValue: string;
|
|
51
|
-
loadingText: string;
|
|
52
|
-
emptyText: string;
|
|
53
53
|
searchPlaceholder: string;
|
|
54
54
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
55
55
|
root: HTMLDivElement;
|
|
@@ -53,11 +53,11 @@ declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, imp
|
|
|
53
53
|
placeholder: string;
|
|
54
54
|
readonly: boolean;
|
|
55
55
|
clearable: boolean;
|
|
56
|
+
loadingText: string;
|
|
57
|
+
emptyText: string;
|
|
56
58
|
options: Array<OptionItem>;
|
|
57
59
|
optionLabel: string;
|
|
58
60
|
optionValue: string;
|
|
59
|
-
loadingText: string;
|
|
60
|
-
emptyText: string;
|
|
61
61
|
maxTags: number;
|
|
62
62
|
allowCustom: boolean;
|
|
63
63
|
validateTag: (value: string) => boolean;
|
|
@@ -70,9 +70,9 @@ declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {},
|
|
|
70
70
|
placeholder: string;
|
|
71
71
|
readonly: boolean;
|
|
72
72
|
clearable: boolean;
|
|
73
|
-
multiple: boolean;
|
|
74
73
|
loadingText: string;
|
|
75
74
|
emptyText: string;
|
|
75
|
+
multiple: boolean;
|
|
76
76
|
searchPlaceholder: string;
|
|
77
77
|
expandOnClick: boolean;
|
|
78
78
|
selectable: boolean;
|
|
@@ -145,6 +145,42 @@ export type SearchInputTokens = {
|
|
|
145
145
|
clearSize?: string;
|
|
146
146
|
};
|
|
147
147
|
};
|
|
148
|
+
export type MentionInputTokens = {
|
|
149
|
+
minWidth?: string;
|
|
150
|
+
fontSize?: string;
|
|
151
|
+
padding?: string;
|
|
152
|
+
borderRadius?: string;
|
|
153
|
+
borderColor?: string;
|
|
154
|
+
backgroundColor?: string;
|
|
155
|
+
textColor?: string;
|
|
156
|
+
placeholderColor?: string;
|
|
157
|
+
focusBorderColor?: string;
|
|
158
|
+
focusRingShadow?: string;
|
|
159
|
+
hoverBorderColor?: string;
|
|
160
|
+
disabledOpacity?: string;
|
|
161
|
+
panelBackgroundColor?: string;
|
|
162
|
+
panelBorderColor?: string;
|
|
163
|
+
panelPadding?: string;
|
|
164
|
+
panelMaxHeight?: string;
|
|
165
|
+
panelRadiusOffset?: string;
|
|
166
|
+
panelShadow?: string;
|
|
167
|
+
optionPadding?: string;
|
|
168
|
+
optionGap?: string;
|
|
169
|
+
optionBorderRadius?: string;
|
|
170
|
+
optionFontSize?: string;
|
|
171
|
+
optionHoverBackgroundColor?: string;
|
|
172
|
+
optionTriggerColor?: string;
|
|
173
|
+
emptyPadding?: string;
|
|
174
|
+
emptyColor?: string;
|
|
175
|
+
small?: {
|
|
176
|
+
padding?: string;
|
|
177
|
+
fontSize?: string;
|
|
178
|
+
};
|
|
179
|
+
large?: {
|
|
180
|
+
padding?: string;
|
|
181
|
+
fontSize?: string;
|
|
182
|
+
};
|
|
183
|
+
};
|
|
148
184
|
export type PasswordInputTokens = {
|
|
149
185
|
gap?: string;
|
|
150
186
|
fontSize?: string;
|
|
@@ -641,6 +677,49 @@ export type AutocompleteTokens = {
|
|
|
641
677
|
fontSize?: string;
|
|
642
678
|
};
|
|
643
679
|
};
|
|
680
|
+
export type ComboboxTokens = {
|
|
681
|
+
minWidth?: string;
|
|
682
|
+
fontSize?: string;
|
|
683
|
+
controlGap?: string;
|
|
684
|
+
chevronSize?: string;
|
|
685
|
+
padding?: string;
|
|
686
|
+
borderRadius?: string;
|
|
687
|
+
borderColor?: string;
|
|
688
|
+
backgroundColor?: string;
|
|
689
|
+
textColor?: string;
|
|
690
|
+
placeholderColor?: string;
|
|
691
|
+
focusBorderColor?: string;
|
|
692
|
+
hoverBorderColor?: string;
|
|
693
|
+
disabledOpacity?: string;
|
|
694
|
+
panelBackgroundColor?: string;
|
|
695
|
+
panelBorderColor?: string;
|
|
696
|
+
panelPadding?: string;
|
|
697
|
+
panelMaxHeight?: string;
|
|
698
|
+
panelRadiusOffset?: string;
|
|
699
|
+
panelShadow?: string;
|
|
700
|
+
focusRingShadow?: string;
|
|
701
|
+
optionPadding?: string;
|
|
702
|
+
optionBorderRadius?: string;
|
|
703
|
+
optionHoverBackgroundColor?: string;
|
|
704
|
+
optionActiveBackgroundColor?: string;
|
|
705
|
+
optionActiveTextColor?: string;
|
|
706
|
+
optionHighlightedBackgroundColor?: string;
|
|
707
|
+
emptyPadding?: string;
|
|
708
|
+
emptyColor?: string;
|
|
709
|
+
loadingPadding?: string;
|
|
710
|
+
loadingColor?: string;
|
|
711
|
+
clearSize?: string;
|
|
712
|
+
clearRadius?: string;
|
|
713
|
+
clearHoverBackgroundColor?: string;
|
|
714
|
+
small?: {
|
|
715
|
+
padding?: string;
|
|
716
|
+
fontSize?: string;
|
|
717
|
+
};
|
|
718
|
+
large?: {
|
|
719
|
+
padding?: string;
|
|
720
|
+
fontSize?: string;
|
|
721
|
+
};
|
|
722
|
+
};
|
|
644
723
|
export type MultiSelectTokens = {
|
|
645
724
|
minWidth?: string;
|
|
646
725
|
fontSize?: string;
|
|
@@ -1609,6 +1688,7 @@ export type ThemeComponentTokens = {
|
|
|
1609
1688
|
input?: InputTokens;
|
|
1610
1689
|
inlineEdit?: InlineEditTokens;
|
|
1611
1690
|
searchInput?: SearchInputTokens;
|
|
1691
|
+
mentionInput?: MentionInputTokens;
|
|
1612
1692
|
passwordInput?: PasswordInputTokens;
|
|
1613
1693
|
otpInput?: OtpInputTokens;
|
|
1614
1694
|
colorPicker?: ColorPickerTokens;
|
|
@@ -1630,6 +1710,7 @@ export type ThemeComponentTokens = {
|
|
|
1630
1710
|
commandPalette?: CommandPaletteTokens;
|
|
1631
1711
|
select?: SelectTokens;
|
|
1632
1712
|
autocomplete?: AutocompleteTokens;
|
|
1713
|
+
combobox?: ComboboxTokens;
|
|
1633
1714
|
multiselect?: MultiSelectTokens;
|
|
1634
1715
|
taginput?: TagInputTokens;
|
|
1635
1716
|
datepicker?: DatePickerTokens;
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
minWidth: string;
|
|
3
|
+
fontSize: string;
|
|
4
|
+
controlGap: string;
|
|
5
|
+
chevronSize: string;
|
|
6
|
+
padding: string;
|
|
7
|
+
borderRadius: string;
|
|
8
|
+
borderColor: string;
|
|
9
|
+
backgroundColor: string;
|
|
10
|
+
textColor: string;
|
|
11
|
+
placeholderColor: string;
|
|
12
|
+
focusBorderColor: string;
|
|
13
|
+
hoverBorderColor: string;
|
|
14
|
+
disabledOpacity: string;
|
|
15
|
+
panelBackgroundColor: string;
|
|
16
|
+
panelBorderColor: string;
|
|
17
|
+
panelPadding: string;
|
|
18
|
+
panelMaxHeight: string;
|
|
19
|
+
panelRadiusOffset: string;
|
|
20
|
+
panelShadow: string;
|
|
21
|
+
focusRingShadow: string;
|
|
22
|
+
optionPadding: string;
|
|
23
|
+
optionBorderRadius: string;
|
|
24
|
+
optionHoverBackgroundColor: string;
|
|
25
|
+
optionActiveBackgroundColor: string;
|
|
26
|
+
optionActiveTextColor: string;
|
|
27
|
+
optionHighlightedBackgroundColor: string;
|
|
28
|
+
emptyPadding: string;
|
|
29
|
+
emptyColor: string;
|
|
30
|
+
loadingPadding: string;
|
|
31
|
+
loadingColor: string;
|
|
32
|
+
clearSize: string;
|
|
33
|
+
clearRadius: string;
|
|
34
|
+
clearHoverBackgroundColor: string;
|
|
35
|
+
small: {
|
|
36
|
+
padding: string;
|
|
37
|
+
fontSize: string;
|
|
38
|
+
};
|
|
39
|
+
large: {
|
|
40
|
+
padding: string;
|
|
41
|
+
fontSize: string;
|
|
42
|
+
};
|
|
43
|
+
};
|
|
44
|
+
export default _default;
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
minWidth: string;
|
|
3
|
+
fontSize: string;
|
|
4
|
+
padding: string;
|
|
5
|
+
borderRadius: string;
|
|
6
|
+
borderColor: string;
|
|
7
|
+
backgroundColor: string;
|
|
8
|
+
textColor: string;
|
|
9
|
+
placeholderColor: string;
|
|
10
|
+
focusBorderColor: string;
|
|
11
|
+
focusRingShadow: string;
|
|
12
|
+
hoverBorderColor: string;
|
|
13
|
+
disabledOpacity: string;
|
|
14
|
+
panelBackgroundColor: string;
|
|
15
|
+
panelBorderColor: string;
|
|
16
|
+
panelPadding: string;
|
|
17
|
+
panelMaxHeight: string;
|
|
18
|
+
panelRadiusOffset: string;
|
|
19
|
+
panelShadow: string;
|
|
20
|
+
optionPadding: string;
|
|
21
|
+
optionGap: string;
|
|
22
|
+
optionBorderRadius: string;
|
|
23
|
+
optionFontSize: string;
|
|
24
|
+
optionHoverBackgroundColor: string;
|
|
25
|
+
optionTriggerColor: string;
|
|
26
|
+
emptyPadding: string;
|
|
27
|
+
emptyColor: string;
|
|
28
|
+
small: {
|
|
29
|
+
padding: string;
|
|
30
|
+
fontSize: string;
|
|
31
|
+
};
|
|
32
|
+
large: {
|
|
33
|
+
padding: string;
|
|
34
|
+
fontSize: string;
|
|
35
|
+
};
|
|
36
|
+
};
|
|
37
|
+
export default _default;
|
|
@@ -302,6 +302,42 @@ declare const _default: {
|
|
|
302
302
|
clearSize: string;
|
|
303
303
|
};
|
|
304
304
|
};
|
|
305
|
+
mentionInput: {
|
|
306
|
+
minWidth: string;
|
|
307
|
+
fontSize: string;
|
|
308
|
+
padding: string;
|
|
309
|
+
borderRadius: string;
|
|
310
|
+
borderColor: string;
|
|
311
|
+
backgroundColor: string;
|
|
312
|
+
textColor: string;
|
|
313
|
+
placeholderColor: string;
|
|
314
|
+
focusBorderColor: string;
|
|
315
|
+
focusRingShadow: string;
|
|
316
|
+
hoverBorderColor: string;
|
|
317
|
+
disabledOpacity: string;
|
|
318
|
+
panelBackgroundColor: string;
|
|
319
|
+
panelBorderColor: string;
|
|
320
|
+
panelPadding: string;
|
|
321
|
+
panelMaxHeight: string;
|
|
322
|
+
panelRadiusOffset: string;
|
|
323
|
+
panelShadow: string;
|
|
324
|
+
optionPadding: string;
|
|
325
|
+
optionGap: string;
|
|
326
|
+
optionBorderRadius: string;
|
|
327
|
+
optionFontSize: string;
|
|
328
|
+
optionHoverBackgroundColor: string;
|
|
329
|
+
optionTriggerColor: string;
|
|
330
|
+
emptyPadding: string;
|
|
331
|
+
emptyColor: string;
|
|
332
|
+
small: {
|
|
333
|
+
padding: string;
|
|
334
|
+
fontSize: string;
|
|
335
|
+
};
|
|
336
|
+
large: {
|
|
337
|
+
padding: string;
|
|
338
|
+
fontSize: string;
|
|
339
|
+
};
|
|
340
|
+
};
|
|
305
341
|
passwordInput: {
|
|
306
342
|
gap: string;
|
|
307
343
|
fontSize: string;
|
|
@@ -795,6 +831,49 @@ declare const _default: {
|
|
|
795
831
|
fontSize: string;
|
|
796
832
|
};
|
|
797
833
|
};
|
|
834
|
+
combobox: {
|
|
835
|
+
minWidth: string;
|
|
836
|
+
fontSize: string;
|
|
837
|
+
controlGap: string;
|
|
838
|
+
chevronSize: string;
|
|
839
|
+
padding: string;
|
|
840
|
+
borderRadius: string;
|
|
841
|
+
borderColor: string;
|
|
842
|
+
backgroundColor: string;
|
|
843
|
+
textColor: string;
|
|
844
|
+
placeholderColor: string;
|
|
845
|
+
focusBorderColor: string;
|
|
846
|
+
hoverBorderColor: string;
|
|
847
|
+
disabledOpacity: string;
|
|
848
|
+
panelBackgroundColor: string;
|
|
849
|
+
panelBorderColor: string;
|
|
850
|
+
panelPadding: string;
|
|
851
|
+
panelMaxHeight: string;
|
|
852
|
+
panelRadiusOffset: string;
|
|
853
|
+
panelShadow: string;
|
|
854
|
+
focusRingShadow: string;
|
|
855
|
+
optionPadding: string;
|
|
856
|
+
optionBorderRadius: string;
|
|
857
|
+
optionHoverBackgroundColor: string;
|
|
858
|
+
optionActiveBackgroundColor: string;
|
|
859
|
+
optionActiveTextColor: string;
|
|
860
|
+
optionHighlightedBackgroundColor: string;
|
|
861
|
+
emptyPadding: string;
|
|
862
|
+
emptyColor: string;
|
|
863
|
+
loadingPadding: string;
|
|
864
|
+
loadingColor: string;
|
|
865
|
+
clearSize: string;
|
|
866
|
+
clearRadius: string;
|
|
867
|
+
clearHoverBackgroundColor: string;
|
|
868
|
+
small: {
|
|
869
|
+
padding: string;
|
|
870
|
+
fontSize: string;
|
|
871
|
+
};
|
|
872
|
+
large: {
|
|
873
|
+
padding: string;
|
|
874
|
+
fontSize: string;
|
|
875
|
+
};
|
|
876
|
+
};
|
|
798
877
|
multiselect: {
|
|
799
878
|
minWidth: string;
|
|
800
879
|
fontSize: string;
|