cleek 2.10.3 → 2.10.4
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/cleek-styles/tiny-tailwind/flex-wrap.styl +3 -3
- package/dist/main.cjs.js +33 -33
- package/dist/main.css +1 -1
- package/dist/main.es.js +7273 -7268
- package/dist/types/components/ck-input.vue.d.ts +220 -90
- package/package.json +1 -1
|
@@ -1,100 +1,230 @@
|
|
|
1
|
-
import { Align, AlignVertical,
|
|
1
|
+
import { Align, AlignVertical, Icon, IconPack, InputType, Layout, WidthBreaks } from '../types/cleek-options';
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
declare function
|
|
5
|
-
declare
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
3
|
+
type Value = string | number;
|
|
4
|
+
declare function focus(): void;
|
|
5
|
+
declare function select(): void;
|
|
6
|
+
declare const _default: import('vue').DefineComponent<{
|
|
7
|
+
modelValue: {
|
|
8
|
+
required: true;
|
|
9
|
+
type: import('vue').PropType<Value>;
|
|
10
|
+
};
|
|
11
|
+
group: {
|
|
12
|
+
type: import('vue').PropType<Align>;
|
|
13
|
+
};
|
|
14
|
+
groupVertical: {
|
|
15
|
+
type: import('vue').PropType<AlignVertical>;
|
|
16
|
+
};
|
|
17
|
+
widthBreaks: {
|
|
18
|
+
type: import('vue').PropType<WidthBreaks>;
|
|
19
|
+
};
|
|
20
|
+
width: {
|
|
21
|
+
type: import('vue').PropType<string>;
|
|
22
|
+
};
|
|
23
|
+
icon: {
|
|
24
|
+
type: import('vue').PropType<Icon>;
|
|
25
|
+
};
|
|
26
|
+
iconPack: {
|
|
27
|
+
type: import('vue').PropType<IconPack>;
|
|
28
|
+
};
|
|
29
|
+
size: {
|
|
30
|
+
type: import('vue').PropType<"s" | "m" | "l" | "xl">;
|
|
31
|
+
default: string;
|
|
32
|
+
};
|
|
33
|
+
toUpperCase: {
|
|
34
|
+
type: import('vue').PropType<boolean>;
|
|
35
|
+
};
|
|
36
|
+
type: {
|
|
37
|
+
type: import('vue').PropType<InputType>;
|
|
38
|
+
default: string;
|
|
39
|
+
};
|
|
40
|
+
label: {
|
|
41
|
+
type: import('vue').PropType<string>;
|
|
42
|
+
};
|
|
43
|
+
disabled: {
|
|
44
|
+
type: import('vue').PropType<boolean>;
|
|
45
|
+
};
|
|
46
|
+
textColor: {
|
|
47
|
+
type: import('vue').PropType<string>;
|
|
48
|
+
};
|
|
49
|
+
align: {
|
|
50
|
+
type: import('vue').PropType<Align>;
|
|
51
|
+
};
|
|
52
|
+
layout: {
|
|
53
|
+
type: import('vue').PropType<Layout>;
|
|
54
|
+
};
|
|
55
|
+
iconRight: {
|
|
56
|
+
type: import('vue').PropType<Icon>;
|
|
57
|
+
};
|
|
58
|
+
labelAlign: {
|
|
59
|
+
type: import('vue').PropType<Align>;
|
|
60
|
+
};
|
|
61
|
+
borderColor: {
|
|
62
|
+
type: import('vue').PropType<string>;
|
|
63
|
+
};
|
|
64
|
+
autocomplete: {
|
|
65
|
+
type: import('vue').PropType<boolean>;
|
|
66
|
+
};
|
|
67
|
+
placeholder: {
|
|
68
|
+
type: import('vue').PropType<string>;
|
|
69
|
+
};
|
|
70
|
+
plusMinusButtons: {
|
|
71
|
+
type: import('vue').PropType<boolean>;
|
|
72
|
+
};
|
|
73
|
+
min: {
|
|
74
|
+
type: import('vue').PropType<number>;
|
|
75
|
+
};
|
|
76
|
+
max: {
|
|
77
|
+
type: import('vue').PropType<number>;
|
|
78
|
+
};
|
|
79
|
+
iconColor: {
|
|
80
|
+
type: import('vue').PropType<string>;
|
|
81
|
+
};
|
|
82
|
+
fontSize: {
|
|
83
|
+
type: import('vue').PropType<string>;
|
|
84
|
+
};
|
|
85
|
+
hideBorder: {
|
|
86
|
+
type: import('vue').PropType<boolean>;
|
|
87
|
+
};
|
|
88
|
+
optional: {
|
|
89
|
+
type: import('vue').PropType<boolean>;
|
|
90
|
+
};
|
|
91
|
+
autofocus: {
|
|
92
|
+
type: import('vue').PropType<boolean>;
|
|
93
|
+
};
|
|
94
|
+
capitalize: {
|
|
95
|
+
type: import('vue').PropType<boolean>;
|
|
96
|
+
};
|
|
97
|
+
autoSelect: {
|
|
98
|
+
type: import('vue').PropType<boolean>;
|
|
99
|
+
};
|
|
100
|
+
delayChangeTime: {
|
|
101
|
+
type: import('vue').PropType<number>;
|
|
102
|
+
default: number;
|
|
103
|
+
};
|
|
104
|
+
justInteger: {
|
|
105
|
+
type: import('vue').PropType<boolean>;
|
|
106
|
+
};
|
|
107
|
+
}, {
|
|
108
|
+
focus: typeof focus;
|
|
109
|
+
select: typeof select;
|
|
41
110
|
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
42
|
-
"update:modelValue": (value: string | number) => void;
|
|
43
111
|
click: (event: Event) => void;
|
|
44
112
|
input: (event: Event) => void;
|
|
45
|
-
change: (event: Event) => void;
|
|
46
|
-
focus: (event: Event) => void;
|
|
47
113
|
blur: (event: Event) => void;
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
toUpperCase
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
114
|
+
change: (value: Value) => void;
|
|
115
|
+
focus: (event: Event) => void;
|
|
116
|
+
changeDelayed: (value: Value) => void;
|
|
117
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
118
|
+
modelValue: {
|
|
119
|
+
required: true;
|
|
120
|
+
type: import('vue').PropType<Value>;
|
|
121
|
+
};
|
|
122
|
+
group: {
|
|
123
|
+
type: import('vue').PropType<Align>;
|
|
124
|
+
};
|
|
125
|
+
groupVertical: {
|
|
126
|
+
type: import('vue').PropType<AlignVertical>;
|
|
127
|
+
};
|
|
128
|
+
widthBreaks: {
|
|
129
|
+
type: import('vue').PropType<WidthBreaks>;
|
|
130
|
+
};
|
|
131
|
+
width: {
|
|
132
|
+
type: import('vue').PropType<string>;
|
|
133
|
+
};
|
|
134
|
+
icon: {
|
|
135
|
+
type: import('vue').PropType<Icon>;
|
|
136
|
+
};
|
|
137
|
+
iconPack: {
|
|
138
|
+
type: import('vue').PropType<IconPack>;
|
|
139
|
+
};
|
|
140
|
+
size: {
|
|
141
|
+
type: import('vue').PropType<"s" | "m" | "l" | "xl">;
|
|
142
|
+
default: string;
|
|
143
|
+
};
|
|
144
|
+
toUpperCase: {
|
|
145
|
+
type: import('vue').PropType<boolean>;
|
|
146
|
+
};
|
|
147
|
+
type: {
|
|
148
|
+
type: import('vue').PropType<InputType>;
|
|
149
|
+
default: string;
|
|
150
|
+
};
|
|
151
|
+
label: {
|
|
152
|
+
type: import('vue').PropType<string>;
|
|
153
|
+
};
|
|
154
|
+
disabled: {
|
|
155
|
+
type: import('vue').PropType<boolean>;
|
|
156
|
+
};
|
|
157
|
+
textColor: {
|
|
158
|
+
type: import('vue').PropType<string>;
|
|
159
|
+
};
|
|
160
|
+
align: {
|
|
161
|
+
type: import('vue').PropType<Align>;
|
|
162
|
+
};
|
|
163
|
+
layout: {
|
|
164
|
+
type: import('vue').PropType<Layout>;
|
|
165
|
+
};
|
|
166
|
+
iconRight: {
|
|
167
|
+
type: import('vue').PropType<Icon>;
|
|
168
|
+
};
|
|
169
|
+
labelAlign: {
|
|
170
|
+
type: import('vue').PropType<Align>;
|
|
171
|
+
};
|
|
172
|
+
borderColor: {
|
|
173
|
+
type: import('vue').PropType<string>;
|
|
174
|
+
};
|
|
175
|
+
autocomplete: {
|
|
176
|
+
type: import('vue').PropType<boolean>;
|
|
177
|
+
};
|
|
178
|
+
placeholder: {
|
|
179
|
+
type: import('vue').PropType<string>;
|
|
180
|
+
};
|
|
181
|
+
plusMinusButtons: {
|
|
182
|
+
type: import('vue').PropType<boolean>;
|
|
183
|
+
};
|
|
184
|
+
min: {
|
|
185
|
+
type: import('vue').PropType<number>;
|
|
186
|
+
};
|
|
187
|
+
max: {
|
|
188
|
+
type: import('vue').PropType<number>;
|
|
189
|
+
};
|
|
190
|
+
iconColor: {
|
|
191
|
+
type: import('vue').PropType<string>;
|
|
192
|
+
};
|
|
193
|
+
fontSize: {
|
|
194
|
+
type: import('vue').PropType<string>;
|
|
195
|
+
};
|
|
196
|
+
hideBorder: {
|
|
197
|
+
type: import('vue').PropType<boolean>;
|
|
198
|
+
};
|
|
199
|
+
optional: {
|
|
200
|
+
type: import('vue').PropType<boolean>;
|
|
201
|
+
};
|
|
202
|
+
autofocus: {
|
|
203
|
+
type: import('vue').PropType<boolean>;
|
|
204
|
+
};
|
|
205
|
+
capitalize: {
|
|
206
|
+
type: import('vue').PropType<boolean>;
|
|
207
|
+
};
|
|
208
|
+
autoSelect: {
|
|
209
|
+
type: import('vue').PropType<boolean>;
|
|
210
|
+
};
|
|
211
|
+
delayChangeTime: {
|
|
212
|
+
type: import('vue').PropType<number>;
|
|
213
|
+
default: number;
|
|
214
|
+
};
|
|
215
|
+
justInteger: {
|
|
216
|
+
type: import('vue').PropType<boolean>;
|
|
217
|
+
};
|
|
218
|
+
}>> & {
|
|
83
219
|
onClick?: (event: Event) => any;
|
|
84
220
|
onFocus?: (event: Event) => any;
|
|
85
221
|
onBlur?: (event: Event) => any;
|
|
86
|
-
onChange?: (
|
|
222
|
+
onChange?: (value: Value) => any;
|
|
87
223
|
onInput?: (event: Event) => any;
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
224
|
+
onChangeDelayed?: (value: Value) => any;
|
|
225
|
+
}, {
|
|
226
|
+
size: "s" | "m" | "l" | "xl";
|
|
227
|
+
type: InputType;
|
|
228
|
+
delayChangeTime: number;
|
|
229
|
+
}, {}>;
|
|
91
230
|
export default _default;
|
|
92
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
93
|
-
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
94
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
95
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
96
|
-
} : {
|
|
97
|
-
type: import('vue').PropType<T[K]>;
|
|
98
|
-
required: true;
|
|
99
|
-
};
|
|
100
|
-
};
|