cleek 2.10.28 → 2.10.30
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/dist/main.cjs.js +35 -35
- package/dist/main.css +1 -1
- package/dist/main.es.js +7250 -7242
- package/dist/types/components/ck-checkbox.vue.d.ts +6 -0
- package/dist/types/components/ck-input.vue.d.ts +4 -2
- package/dist/types/components/ck-select.vue.d.ts +8 -2
- package/dist/types/components/ck-switch.vue.d.ts +6 -0
- package/package.json +1 -1
|
@@ -28,6 +28,9 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
28
28
|
colorText: {
|
|
29
29
|
type: import('vue').PropType<string>;
|
|
30
30
|
};
|
|
31
|
+
textSize: {
|
|
32
|
+
type: import('vue').PropType<Size>;
|
|
33
|
+
};
|
|
31
34
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
32
35
|
change: (event: Event) => void;
|
|
33
36
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
@@ -54,6 +57,9 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
54
57
|
colorText: {
|
|
55
58
|
type: import('vue').PropType<string>;
|
|
56
59
|
};
|
|
60
|
+
textSize: {
|
|
61
|
+
type: import('vue').PropType<Size>;
|
|
62
|
+
};
|
|
57
63
|
}>> & Readonly<{
|
|
58
64
|
onChange?: (event: Event) => any;
|
|
59
65
|
}>, {
|
|
@@ -108,11 +108,12 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
108
108
|
focus: typeof focus;
|
|
109
109
|
select: typeof select;
|
|
110
110
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
111
|
-
input: (
|
|
111
|
+
input: (value: Value) => void;
|
|
112
112
|
click: (event: Event) => void;
|
|
113
113
|
blur: (event: Event) => void;
|
|
114
114
|
change: (value: Value) => void;
|
|
115
115
|
focus: (event: Event) => void;
|
|
116
|
+
inputDelayed: (value: Value) => void;
|
|
116
117
|
changeDelayed: (value: Value) => void;
|
|
117
118
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
118
119
|
modelValue: {
|
|
@@ -216,11 +217,12 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
216
217
|
type: import('vue').PropType<boolean>;
|
|
217
218
|
};
|
|
218
219
|
}>> & Readonly<{
|
|
219
|
-
onInput?: (
|
|
220
|
+
onInput?: (value: Value) => any;
|
|
220
221
|
onClick?: (event: Event) => any;
|
|
221
222
|
onBlur?: (event: Event) => any;
|
|
222
223
|
onChange?: (value: Value) => any;
|
|
223
224
|
onFocus?: (event: Event) => any;
|
|
225
|
+
onInputDelayed?: (value: Value) => any;
|
|
224
226
|
onChangeDelayed?: (value: Value) => any;
|
|
225
227
|
}>, {
|
|
226
228
|
type: InputType;
|
|
@@ -45,6 +45,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
45
45
|
disabled: {
|
|
46
46
|
type: import('vue').PropType<boolean>;
|
|
47
47
|
};
|
|
48
|
+
isLoading: {
|
|
49
|
+
type: import('vue').PropType<boolean>;
|
|
50
|
+
};
|
|
48
51
|
iconRight: {
|
|
49
52
|
type: import('vue').PropType<Icon>;
|
|
50
53
|
};
|
|
@@ -121,7 +124,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
121
124
|
blur: typeof blur;
|
|
122
125
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
123
126
|
click: (event: Event) => void;
|
|
124
|
-
change: (
|
|
127
|
+
change: (val: any) => void;
|
|
125
128
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
126
129
|
modelValue: {
|
|
127
130
|
required: true;
|
|
@@ -163,6 +166,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
163
166
|
disabled: {
|
|
164
167
|
type: import('vue').PropType<boolean>;
|
|
165
168
|
};
|
|
169
|
+
isLoading: {
|
|
170
|
+
type: import('vue').PropType<boolean>;
|
|
171
|
+
};
|
|
166
172
|
iconRight: {
|
|
167
173
|
type: import('vue').PropType<Icon>;
|
|
168
174
|
};
|
|
@@ -236,7 +242,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
236
242
|
};
|
|
237
243
|
}>> & Readonly<{
|
|
238
244
|
onClick?: (event: Event) => any;
|
|
239
|
-
onChange?: (
|
|
245
|
+
onChange?: (val: any) => any;
|
|
240
246
|
}>, {
|
|
241
247
|
placeholder: string;
|
|
242
248
|
iconColor: Color;
|
|
@@ -23,6 +23,9 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
23
23
|
size: {
|
|
24
24
|
type: import('vue').PropType<Size>;
|
|
25
25
|
};
|
|
26
|
+
textSize: {
|
|
27
|
+
type: import('vue').PropType<Size>;
|
|
28
|
+
};
|
|
26
29
|
icon: {
|
|
27
30
|
type: import('vue').PropType<Icon>;
|
|
28
31
|
};
|
|
@@ -51,6 +54,9 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
51
54
|
size: {
|
|
52
55
|
type: import('vue').PropType<Size>;
|
|
53
56
|
};
|
|
57
|
+
textSize: {
|
|
58
|
+
type: import('vue').PropType<Size>;
|
|
59
|
+
};
|
|
54
60
|
icon: {
|
|
55
61
|
type: import('vue').PropType<Icon>;
|
|
56
62
|
};
|