cleek 2.11.15 → 2.11.17
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.
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Align, AlignVertical, Color, Icon, IconPack, Layout, ButtonType, WidthBreaks } from '../cleek-options/cleek-options.types';
|
|
2
2
|
|
|
3
|
-
export interface
|
|
3
|
+
export interface DropdownButtonAction {
|
|
4
4
|
id: number;
|
|
5
5
|
name: string;
|
|
6
6
|
}
|
|
@@ -12,7 +12,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
12
12
|
disabled?: boolean;
|
|
13
13
|
isLoading?: boolean;
|
|
14
14
|
tabindex?: number;
|
|
15
|
-
|
|
15
|
+
dropdownButtonActions: DropdownButtonAction[];
|
|
16
16
|
type?: ButtonType;
|
|
17
17
|
color?: Color;
|
|
18
18
|
textColor?: Color;
|
|
@@ -37,7 +37,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
37
37
|
disabled?: boolean;
|
|
38
38
|
isLoading?: boolean;
|
|
39
39
|
tabindex?: number;
|
|
40
|
-
|
|
40
|
+
dropdownButtonActions: DropdownButtonAction[];
|
|
41
41
|
type?: ButtonType;
|
|
42
42
|
color?: Color;
|
|
43
43
|
textColor?: Color;
|
|
@@ -88,6 +88,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
88
88
|
suffix: {
|
|
89
89
|
type: import('vue').PropType<string>;
|
|
90
90
|
};
|
|
91
|
+
allowIconRightClick: {
|
|
92
|
+
type: import('vue').PropType<boolean>;
|
|
93
|
+
};
|
|
91
94
|
iconColor: {
|
|
92
95
|
type: import('vue').PropType<string>;
|
|
93
96
|
};
|
|
@@ -124,6 +127,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
124
127
|
focus: (event: Event) => void;
|
|
125
128
|
inputDelayed: (value: Value) => void;
|
|
126
129
|
changeDelayed: (value: Value) => void;
|
|
130
|
+
rightIconClick: (event: Event) => void;
|
|
127
131
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
128
132
|
modelValue: {
|
|
129
133
|
required: true;
|
|
@@ -209,6 +213,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
209
213
|
suffix: {
|
|
210
214
|
type: import('vue').PropType<string>;
|
|
211
215
|
};
|
|
216
|
+
allowIconRightClick: {
|
|
217
|
+
type: import('vue').PropType<boolean>;
|
|
218
|
+
};
|
|
212
219
|
iconColor: {
|
|
213
220
|
type: import('vue').PropType<string>;
|
|
214
221
|
};
|
|
@@ -242,6 +249,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
242
249
|
onFocus?: (event: Event) => any;
|
|
243
250
|
onInputDelayed?: (value: Value) => any;
|
|
244
251
|
onChangeDelayed?: (value: Value) => any;
|
|
252
|
+
onRightIconClick?: (event: Event) => any;
|
|
245
253
|
}>, {
|
|
246
254
|
type: InputType;
|
|
247
255
|
size: "s" | "m" | "l" | "xl";
|