cleek 2.10.27 → 2.10.29
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 +7511 -7500
- package/dist/types/components/ck-checkbox.vue.d.ts +6 -0
- package/dist/types/components/ck-chip.vue.d.ts +2 -0
- package/dist/types/components/ck-input.vue.d.ts +4 -2
- package/dist/types/components/ck-select.vue.d.ts +2 -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
|
}>, {
|
|
@@ -12,6 +12,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
12
12
|
icon?: Icon;
|
|
13
13
|
iconRight?: Icon;
|
|
14
14
|
iconPack?: IconPack;
|
|
15
|
+
group?: Align;
|
|
15
16
|
}>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
16
17
|
click: (event: Event) => void;
|
|
17
18
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
@@ -23,6 +24,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
23
24
|
icon?: Icon;
|
|
24
25
|
iconRight?: Icon;
|
|
25
26
|
iconPack?: IconPack;
|
|
27
|
+
group?: Align;
|
|
26
28
|
}>>> & Readonly<{
|
|
27
29
|
onClick?: (event: Event) => any;
|
|
28
30
|
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
@@ -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;
|
|
@@ -121,7 +121,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
121
121
|
blur: typeof blur;
|
|
122
122
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
123
123
|
click: (event: Event) => void;
|
|
124
|
-
change: (
|
|
124
|
+
change: (val: any) => void;
|
|
125
125
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
126
126
|
modelValue: {
|
|
127
127
|
required: true;
|
|
@@ -236,7 +236,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
236
236
|
};
|
|
237
237
|
}>> & Readonly<{
|
|
238
238
|
onClick?: (event: Event) => any;
|
|
239
|
-
onChange?: (
|
|
239
|
+
onChange?: (val: any) => any;
|
|
240
240
|
}>, {
|
|
241
241
|
placeholder: string;
|
|
242
242
|
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
|
};
|