cleek 2.10.11 → 2.10.13
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/LICENSE +21 -21
- package/README.md +66 -66
- package/dist/cleek-styles/clear-app.styl +34 -34
- package/dist/cleek-styles/cleek-classes.styl +6 -6
- package/dist/cleek-styles/cleek-mixins.styl +127 -127
- package/dist/cleek-styles/tiny-tailwind/.custom.styl +8 -8
- package/dist/cleek-styles/tiny-tailwind/align-items.styl +10 -10
- package/dist/cleek-styles/tiny-tailwind/cursor.styl +72 -72
- package/dist/cleek-styles/tiny-tailwind/display.styl +42 -42
- package/dist/cleek-styles/tiny-tailwind/flex-shrink.styl +4 -4
- package/dist/cleek-styles/tiny-tailwind/flex-wrap.styl +6 -6
- package/dist/cleek-styles/tiny-tailwind/font-weight.styl +18 -18
- package/dist/cleek-styles/tiny-tailwind/index.styl +15 -15
- package/dist/cleek-styles/tiny-tailwind/justify-content.styl +12 -12
- package/dist/cleek-styles/tiny-tailwind/margin.styl +576 -576
- package/dist/cleek-styles/tiny-tailwind/padding.styl +576 -576
- package/dist/cleek-styles/tiny-tailwind/position.styl +10 -10
- package/dist/cleek-styles/tiny-tailwind/text-align.styl +8 -8
- package/dist/cleek-styles/tiny-tailwind/whitespace.styl +10 -10
- package/dist/cleek-styles/tiny-tailwind/width.styl +72 -72
- package/dist/main.cjs.js +145 -352
- package/dist/main.css +1 -1
- package/dist/main.es.js +49073 -48855
- package/dist/types/cleek-options/cleek-options.store.d.ts +421 -1
- package/dist/types/components/ck-button.vue.d.ts +4 -4
- package/dist/types/components/ck-card.vue.d.ts +4 -4
- package/dist/types/components/ck-checkbox.vue.d.ts +11 -11
- package/dist/types/components/ck-chip.vue.d.ts +4 -4
- package/dist/types/components/ck-circle.vue.d.ts +4 -4
- package/dist/types/components/ck-div.vue.d.ts +4 -4
- package/dist/types/components/ck-dropdown/ck-dropdown.vue.d.ts +3 -3
- package/dist/types/components/ck-icon.vue.d.ts +4 -4
- package/dist/types/components/ck-img.vue.d.ts +4 -4
- package/dist/types/components/ck-input/ck-input-date.vue.d.ts +4 -4
- package/dist/types/components/ck-input/ck-input-time.vue.d.ts +4 -4
- package/dist/types/components/ck-input.vue.d.ts +22 -22
- package/dist/types/components/ck-label.vue.d.ts +3 -3
- package/dist/types/components/ck-navbar/ck-navbar.vue.d.ts +3 -3
- package/dist/types/components/ck-notify/components/CkAlert.vue.d.ts +4 -4
- package/dist/types/components/ck-notify/components/CkConfirm.vue.d.ts +7 -7
- package/dist/types/components/ck-notify/components/CkNotify.vue.d.ts +6 -6
- package/dist/types/components/ck-popup.vue.d.ts +5 -5
- package/dist/types/components/ck-radio.vue.d.ts +4 -4
- package/dist/types/components/ck-select.vue.d.ts +5 -5
- package/dist/types/components/ck-sidebar.vue.d.ts +3 -3
- package/dist/types/components/ck-switch-options.vue.d.ts +5 -5
- package/dist/types/components/ck-switch.vue.d.ts +4 -4
- package/dist/types/components/ck-table/ck-pagination/ck-pagination.vue.d.ts +4 -4
- package/dist/types/components/ck-table/ck-table.vue.d.ts +4 -4
- package/dist/types/components/ck-table/ck-td.vue.d.ts +3 -3
- package/dist/types/components/ck-table/ck-th.vue.d.ts +3 -3
- package/dist/types/components/ck-table/ck-tr.vue.d.ts +1 -1
- package/dist/types/components/ck-table/inner-components/ck-table__columns-manager.vue.d.ts +4 -4
- package/dist/types/components/ck-table/inner-components/ck-table__header-items.vue.d.ts +4 -4
- package/dist/types/components/ck-table/inner-components/ck-table__pagination.vue.d.ts +4 -4
- package/dist/types/components/ck-table/inner-components/ck-table__title.vue.d.ts +3 -3
- package/dist/types/components/ck-tabs/ck-tab.vue.d.ts +3 -3
- package/dist/types/components/ck-tabs/ck-tabs.vue.d.ts +1 -1
- package/dist/types/components/ck-textarea.vue.d.ts +5 -5
- package/dist/types/components/ck-toggle/ck-toggle.vue.d.ts +4 -4
- package/dist/types/components/showers/ck-datetime-shower.vue.d.ts +4 -4
- package/dist/types/components/showers/ck-time-shower.vue.d.ts +3 -3
- package/dist/types/hooks/rainbow.d.ts +1 -1
- package/dist/types/hooks/windowWidth.d.ts +1 -1
- package/dist/types/resources/floating-vue.config.d.ts +8 -0
- package/dist/types/{package-config.d.ts → resources/package-config.d.ts} +1 -1
- package/package.json +85 -85
|
@@ -1 +1,421 @@
|
|
|
1
|
-
export declare const useCleekOptionsStore:
|
|
1
|
+
export declare const useCleekOptionsStore: import('pinia').StoreDefinition<"cleek-options", Pick<{
|
|
2
|
+
cleekOptions: import('vue').Ref<{
|
|
3
|
+
lang: import('./cleek-options.types').Lang;
|
|
4
|
+
darkMode: boolean;
|
|
5
|
+
darkModeColorText: import('./cleek-options.types').Color;
|
|
6
|
+
darkModeColorBackground: import('./cleek-options.types').Color;
|
|
7
|
+
darkModeColorItems: import('./cleek-options.types').Color;
|
|
8
|
+
colors: {
|
|
9
|
+
primary: import('./cleek-options.types').Color;
|
|
10
|
+
secondary: import('./cleek-options.types').Color;
|
|
11
|
+
};
|
|
12
|
+
styles: {
|
|
13
|
+
layout: import('./cleek-options.types').Layout;
|
|
14
|
+
borderColor: import('./cleek-options.types').Color;
|
|
15
|
+
};
|
|
16
|
+
button: {
|
|
17
|
+
type: import('./cleek-options.types').ButtonType;
|
|
18
|
+
layout: import('./cleek-options.types').Layout;
|
|
19
|
+
backgroundColor: import('./cleek-options.types').Color;
|
|
20
|
+
textColor: import('./cleek-options.types').Color;
|
|
21
|
+
};
|
|
22
|
+
div: {
|
|
23
|
+
gap: 0;
|
|
24
|
+
};
|
|
25
|
+
img: {
|
|
26
|
+
basePath: string;
|
|
27
|
+
basePathStatic: string;
|
|
28
|
+
basePathDynamic: string;
|
|
29
|
+
};
|
|
30
|
+
popup: {
|
|
31
|
+
textColor: string;
|
|
32
|
+
headerAlign: import('./cleek-options.types').Align;
|
|
33
|
+
backgroundColor: import('./cleek-options.types').Color;
|
|
34
|
+
headerColor: import('./cleek-options.types').Color;
|
|
35
|
+
acceptBtnType: import('./cleek-options.types').ButtonType;
|
|
36
|
+
cancelBtnType: import('./cleek-options.types').ButtonType;
|
|
37
|
+
maxWidth: string;
|
|
38
|
+
fontSize: string;
|
|
39
|
+
};
|
|
40
|
+
select: {
|
|
41
|
+
clearValue: any;
|
|
42
|
+
backgroundColor: import('./cleek-options.types').Color;
|
|
43
|
+
};
|
|
44
|
+
table: {
|
|
45
|
+
striped: boolean;
|
|
46
|
+
version: import('./cleek-options.types').TableVersion;
|
|
47
|
+
headerTextColor?: import('./cleek-options.types').Color;
|
|
48
|
+
headerBackgroundColor?: import('./cleek-options.types').Color;
|
|
49
|
+
};
|
|
50
|
+
}, import('./cleek-options.types').CleekOptions | {
|
|
51
|
+
lang: import('./cleek-options.types').Lang;
|
|
52
|
+
darkMode: boolean;
|
|
53
|
+
darkModeColorText: import('./cleek-options.types').Color;
|
|
54
|
+
darkModeColorBackground: import('./cleek-options.types').Color;
|
|
55
|
+
darkModeColorItems: import('./cleek-options.types').Color;
|
|
56
|
+
colors: {
|
|
57
|
+
primary: import('./cleek-options.types').Color;
|
|
58
|
+
secondary: import('./cleek-options.types').Color;
|
|
59
|
+
};
|
|
60
|
+
styles: {
|
|
61
|
+
layout: import('./cleek-options.types').Layout;
|
|
62
|
+
borderColor: import('./cleek-options.types').Color;
|
|
63
|
+
};
|
|
64
|
+
button: {
|
|
65
|
+
type: import('./cleek-options.types').ButtonType;
|
|
66
|
+
layout: import('./cleek-options.types').Layout;
|
|
67
|
+
backgroundColor: import('./cleek-options.types').Color;
|
|
68
|
+
textColor: import('./cleek-options.types').Color;
|
|
69
|
+
};
|
|
70
|
+
div: {
|
|
71
|
+
gap: 0;
|
|
72
|
+
};
|
|
73
|
+
img: {
|
|
74
|
+
basePath: string;
|
|
75
|
+
basePathStatic: string;
|
|
76
|
+
basePathDynamic: string;
|
|
77
|
+
};
|
|
78
|
+
popup: {
|
|
79
|
+
textColor: string;
|
|
80
|
+
headerAlign: import('./cleek-options.types').Align;
|
|
81
|
+
backgroundColor: import('./cleek-options.types').Color;
|
|
82
|
+
headerColor: import('./cleek-options.types').Color;
|
|
83
|
+
acceptBtnType: import('./cleek-options.types').ButtonType;
|
|
84
|
+
cancelBtnType: import('./cleek-options.types').ButtonType;
|
|
85
|
+
maxWidth: string;
|
|
86
|
+
fontSize: string;
|
|
87
|
+
};
|
|
88
|
+
select: {
|
|
89
|
+
clearValue: any;
|
|
90
|
+
backgroundColor: import('./cleek-options.types').Color;
|
|
91
|
+
};
|
|
92
|
+
table: {
|
|
93
|
+
striped: boolean;
|
|
94
|
+
version: import('./cleek-options.types').TableVersion;
|
|
95
|
+
headerTextColor?: import('./cleek-options.types').Color;
|
|
96
|
+
headerBackgroundColor?: import('./cleek-options.types').Color;
|
|
97
|
+
};
|
|
98
|
+
}>;
|
|
99
|
+
colorsOptions: import('vue').ComputedRef<{
|
|
100
|
+
primary: import('./cleek-options.types').Color;
|
|
101
|
+
secondary: import('./cleek-options.types').Color;
|
|
102
|
+
}>;
|
|
103
|
+
stylesOptions: import('vue').ComputedRef<{
|
|
104
|
+
layout: import('./cleek-options.types').Layout;
|
|
105
|
+
borderColor: import('./cleek-options.types').Color;
|
|
106
|
+
}>;
|
|
107
|
+
buttonOptions: import('vue').ComputedRef<{
|
|
108
|
+
type: import('./cleek-options.types').ButtonType;
|
|
109
|
+
layout: import('./cleek-options.types').Layout;
|
|
110
|
+
backgroundColor: import('./cleek-options.types').Color;
|
|
111
|
+
textColor: import('./cleek-options.types').Color;
|
|
112
|
+
}>;
|
|
113
|
+
divOptions: import('vue').ComputedRef<{
|
|
114
|
+
gap: 0;
|
|
115
|
+
}>;
|
|
116
|
+
imgOptions: import('vue').ComputedRef<{
|
|
117
|
+
basePath: string;
|
|
118
|
+
basePathStatic: string;
|
|
119
|
+
basePathDynamic: string;
|
|
120
|
+
}>;
|
|
121
|
+
popupOptions: import('vue').ComputedRef<{
|
|
122
|
+
textColor: string;
|
|
123
|
+
headerAlign: import('./cleek-options.types').Align;
|
|
124
|
+
backgroundColor: import('./cleek-options.types').Color;
|
|
125
|
+
headerColor: import('./cleek-options.types').Color;
|
|
126
|
+
acceptBtnType: import('./cleek-options.types').ButtonType;
|
|
127
|
+
cancelBtnType: import('./cleek-options.types').ButtonType;
|
|
128
|
+
maxWidth: string;
|
|
129
|
+
fontSize: string;
|
|
130
|
+
}>;
|
|
131
|
+
selectOptions: import('vue').ComputedRef<{
|
|
132
|
+
clearValue: any;
|
|
133
|
+
backgroundColor: import('./cleek-options.types').Color;
|
|
134
|
+
}>;
|
|
135
|
+
tableOptions: import('vue').ComputedRef<{
|
|
136
|
+
striped: boolean;
|
|
137
|
+
version: import('./cleek-options.types').TableVersion;
|
|
138
|
+
headerTextColor?: import('./cleek-options.types').Color;
|
|
139
|
+
headerBackgroundColor?: import('./cleek-options.types').Color;
|
|
140
|
+
}>;
|
|
141
|
+
}, "cleekOptions">, Pick<{
|
|
142
|
+
cleekOptions: import('vue').Ref<{
|
|
143
|
+
lang: import('./cleek-options.types').Lang;
|
|
144
|
+
darkMode: boolean;
|
|
145
|
+
darkModeColorText: import('./cleek-options.types').Color;
|
|
146
|
+
darkModeColorBackground: import('./cleek-options.types').Color;
|
|
147
|
+
darkModeColorItems: import('./cleek-options.types').Color;
|
|
148
|
+
colors: {
|
|
149
|
+
primary: import('./cleek-options.types').Color;
|
|
150
|
+
secondary: import('./cleek-options.types').Color;
|
|
151
|
+
};
|
|
152
|
+
styles: {
|
|
153
|
+
layout: import('./cleek-options.types').Layout;
|
|
154
|
+
borderColor: import('./cleek-options.types').Color;
|
|
155
|
+
};
|
|
156
|
+
button: {
|
|
157
|
+
type: import('./cleek-options.types').ButtonType;
|
|
158
|
+
layout: import('./cleek-options.types').Layout;
|
|
159
|
+
backgroundColor: import('./cleek-options.types').Color;
|
|
160
|
+
textColor: import('./cleek-options.types').Color;
|
|
161
|
+
};
|
|
162
|
+
div: {
|
|
163
|
+
gap: 0;
|
|
164
|
+
};
|
|
165
|
+
img: {
|
|
166
|
+
basePath: string;
|
|
167
|
+
basePathStatic: string;
|
|
168
|
+
basePathDynamic: string;
|
|
169
|
+
};
|
|
170
|
+
popup: {
|
|
171
|
+
textColor: string;
|
|
172
|
+
headerAlign: import('./cleek-options.types').Align;
|
|
173
|
+
backgroundColor: import('./cleek-options.types').Color;
|
|
174
|
+
headerColor: import('./cleek-options.types').Color;
|
|
175
|
+
acceptBtnType: import('./cleek-options.types').ButtonType;
|
|
176
|
+
cancelBtnType: import('./cleek-options.types').ButtonType;
|
|
177
|
+
maxWidth: string;
|
|
178
|
+
fontSize: string;
|
|
179
|
+
};
|
|
180
|
+
select: {
|
|
181
|
+
clearValue: any;
|
|
182
|
+
backgroundColor: import('./cleek-options.types').Color;
|
|
183
|
+
};
|
|
184
|
+
table: {
|
|
185
|
+
striped: boolean;
|
|
186
|
+
version: import('./cleek-options.types').TableVersion;
|
|
187
|
+
headerTextColor?: import('./cleek-options.types').Color;
|
|
188
|
+
headerBackgroundColor?: import('./cleek-options.types').Color;
|
|
189
|
+
};
|
|
190
|
+
}, import('./cleek-options.types').CleekOptions | {
|
|
191
|
+
lang: import('./cleek-options.types').Lang;
|
|
192
|
+
darkMode: boolean;
|
|
193
|
+
darkModeColorText: import('./cleek-options.types').Color;
|
|
194
|
+
darkModeColorBackground: import('./cleek-options.types').Color;
|
|
195
|
+
darkModeColorItems: import('./cleek-options.types').Color;
|
|
196
|
+
colors: {
|
|
197
|
+
primary: import('./cleek-options.types').Color;
|
|
198
|
+
secondary: import('./cleek-options.types').Color;
|
|
199
|
+
};
|
|
200
|
+
styles: {
|
|
201
|
+
layout: import('./cleek-options.types').Layout;
|
|
202
|
+
borderColor: import('./cleek-options.types').Color;
|
|
203
|
+
};
|
|
204
|
+
button: {
|
|
205
|
+
type: import('./cleek-options.types').ButtonType;
|
|
206
|
+
layout: import('./cleek-options.types').Layout;
|
|
207
|
+
backgroundColor: import('./cleek-options.types').Color;
|
|
208
|
+
textColor: import('./cleek-options.types').Color;
|
|
209
|
+
};
|
|
210
|
+
div: {
|
|
211
|
+
gap: 0;
|
|
212
|
+
};
|
|
213
|
+
img: {
|
|
214
|
+
basePath: string;
|
|
215
|
+
basePathStatic: string;
|
|
216
|
+
basePathDynamic: string;
|
|
217
|
+
};
|
|
218
|
+
popup: {
|
|
219
|
+
textColor: string;
|
|
220
|
+
headerAlign: import('./cleek-options.types').Align;
|
|
221
|
+
backgroundColor: import('./cleek-options.types').Color;
|
|
222
|
+
headerColor: import('./cleek-options.types').Color;
|
|
223
|
+
acceptBtnType: import('./cleek-options.types').ButtonType;
|
|
224
|
+
cancelBtnType: import('./cleek-options.types').ButtonType;
|
|
225
|
+
maxWidth: string;
|
|
226
|
+
fontSize: string;
|
|
227
|
+
};
|
|
228
|
+
select: {
|
|
229
|
+
clearValue: any;
|
|
230
|
+
backgroundColor: import('./cleek-options.types').Color;
|
|
231
|
+
};
|
|
232
|
+
table: {
|
|
233
|
+
striped: boolean;
|
|
234
|
+
version: import('./cleek-options.types').TableVersion;
|
|
235
|
+
headerTextColor?: import('./cleek-options.types').Color;
|
|
236
|
+
headerBackgroundColor?: import('./cleek-options.types').Color;
|
|
237
|
+
};
|
|
238
|
+
}>;
|
|
239
|
+
colorsOptions: import('vue').ComputedRef<{
|
|
240
|
+
primary: import('./cleek-options.types').Color;
|
|
241
|
+
secondary: import('./cleek-options.types').Color;
|
|
242
|
+
}>;
|
|
243
|
+
stylesOptions: import('vue').ComputedRef<{
|
|
244
|
+
layout: import('./cleek-options.types').Layout;
|
|
245
|
+
borderColor: import('./cleek-options.types').Color;
|
|
246
|
+
}>;
|
|
247
|
+
buttonOptions: import('vue').ComputedRef<{
|
|
248
|
+
type: import('./cleek-options.types').ButtonType;
|
|
249
|
+
layout: import('./cleek-options.types').Layout;
|
|
250
|
+
backgroundColor: import('./cleek-options.types').Color;
|
|
251
|
+
textColor: import('./cleek-options.types').Color;
|
|
252
|
+
}>;
|
|
253
|
+
divOptions: import('vue').ComputedRef<{
|
|
254
|
+
gap: 0;
|
|
255
|
+
}>;
|
|
256
|
+
imgOptions: import('vue').ComputedRef<{
|
|
257
|
+
basePath: string;
|
|
258
|
+
basePathStatic: string;
|
|
259
|
+
basePathDynamic: string;
|
|
260
|
+
}>;
|
|
261
|
+
popupOptions: import('vue').ComputedRef<{
|
|
262
|
+
textColor: string;
|
|
263
|
+
headerAlign: import('./cleek-options.types').Align;
|
|
264
|
+
backgroundColor: import('./cleek-options.types').Color;
|
|
265
|
+
headerColor: import('./cleek-options.types').Color;
|
|
266
|
+
acceptBtnType: import('./cleek-options.types').ButtonType;
|
|
267
|
+
cancelBtnType: import('./cleek-options.types').ButtonType;
|
|
268
|
+
maxWidth: string;
|
|
269
|
+
fontSize: string;
|
|
270
|
+
}>;
|
|
271
|
+
selectOptions: import('vue').ComputedRef<{
|
|
272
|
+
clearValue: any;
|
|
273
|
+
backgroundColor: import('./cleek-options.types').Color;
|
|
274
|
+
}>;
|
|
275
|
+
tableOptions: import('vue').ComputedRef<{
|
|
276
|
+
striped: boolean;
|
|
277
|
+
version: import('./cleek-options.types').TableVersion;
|
|
278
|
+
headerTextColor?: import('./cleek-options.types').Color;
|
|
279
|
+
headerBackgroundColor?: import('./cleek-options.types').Color;
|
|
280
|
+
}>;
|
|
281
|
+
}, "colorsOptions" | "stylesOptions" | "buttonOptions" | "divOptions" | "imgOptions" | "popupOptions" | "selectOptions" | "tableOptions">, Pick<{
|
|
282
|
+
cleekOptions: import('vue').Ref<{
|
|
283
|
+
lang: import('./cleek-options.types').Lang;
|
|
284
|
+
darkMode: boolean;
|
|
285
|
+
darkModeColorText: import('./cleek-options.types').Color;
|
|
286
|
+
darkModeColorBackground: import('./cleek-options.types').Color;
|
|
287
|
+
darkModeColorItems: import('./cleek-options.types').Color;
|
|
288
|
+
colors: {
|
|
289
|
+
primary: import('./cleek-options.types').Color;
|
|
290
|
+
secondary: import('./cleek-options.types').Color;
|
|
291
|
+
};
|
|
292
|
+
styles: {
|
|
293
|
+
layout: import('./cleek-options.types').Layout;
|
|
294
|
+
borderColor: import('./cleek-options.types').Color;
|
|
295
|
+
};
|
|
296
|
+
button: {
|
|
297
|
+
type: import('./cleek-options.types').ButtonType;
|
|
298
|
+
layout: import('./cleek-options.types').Layout;
|
|
299
|
+
backgroundColor: import('./cleek-options.types').Color;
|
|
300
|
+
textColor: import('./cleek-options.types').Color;
|
|
301
|
+
};
|
|
302
|
+
div: {
|
|
303
|
+
gap: 0;
|
|
304
|
+
};
|
|
305
|
+
img: {
|
|
306
|
+
basePath: string;
|
|
307
|
+
basePathStatic: string;
|
|
308
|
+
basePathDynamic: string;
|
|
309
|
+
};
|
|
310
|
+
popup: {
|
|
311
|
+
textColor: string;
|
|
312
|
+
headerAlign: import('./cleek-options.types').Align;
|
|
313
|
+
backgroundColor: import('./cleek-options.types').Color;
|
|
314
|
+
headerColor: import('./cleek-options.types').Color;
|
|
315
|
+
acceptBtnType: import('./cleek-options.types').ButtonType;
|
|
316
|
+
cancelBtnType: import('./cleek-options.types').ButtonType;
|
|
317
|
+
maxWidth: string;
|
|
318
|
+
fontSize: string;
|
|
319
|
+
};
|
|
320
|
+
select: {
|
|
321
|
+
clearValue: any;
|
|
322
|
+
backgroundColor: import('./cleek-options.types').Color;
|
|
323
|
+
};
|
|
324
|
+
table: {
|
|
325
|
+
striped: boolean;
|
|
326
|
+
version: import('./cleek-options.types').TableVersion;
|
|
327
|
+
headerTextColor?: import('./cleek-options.types').Color;
|
|
328
|
+
headerBackgroundColor?: import('./cleek-options.types').Color;
|
|
329
|
+
};
|
|
330
|
+
}, import('./cleek-options.types').CleekOptions | {
|
|
331
|
+
lang: import('./cleek-options.types').Lang;
|
|
332
|
+
darkMode: boolean;
|
|
333
|
+
darkModeColorText: import('./cleek-options.types').Color;
|
|
334
|
+
darkModeColorBackground: import('./cleek-options.types').Color;
|
|
335
|
+
darkModeColorItems: import('./cleek-options.types').Color;
|
|
336
|
+
colors: {
|
|
337
|
+
primary: import('./cleek-options.types').Color;
|
|
338
|
+
secondary: import('./cleek-options.types').Color;
|
|
339
|
+
};
|
|
340
|
+
styles: {
|
|
341
|
+
layout: import('./cleek-options.types').Layout;
|
|
342
|
+
borderColor: import('./cleek-options.types').Color;
|
|
343
|
+
};
|
|
344
|
+
button: {
|
|
345
|
+
type: import('./cleek-options.types').ButtonType;
|
|
346
|
+
layout: import('./cleek-options.types').Layout;
|
|
347
|
+
backgroundColor: import('./cleek-options.types').Color;
|
|
348
|
+
textColor: import('./cleek-options.types').Color;
|
|
349
|
+
};
|
|
350
|
+
div: {
|
|
351
|
+
gap: 0;
|
|
352
|
+
};
|
|
353
|
+
img: {
|
|
354
|
+
basePath: string;
|
|
355
|
+
basePathStatic: string;
|
|
356
|
+
basePathDynamic: string;
|
|
357
|
+
};
|
|
358
|
+
popup: {
|
|
359
|
+
textColor: string;
|
|
360
|
+
headerAlign: import('./cleek-options.types').Align;
|
|
361
|
+
backgroundColor: import('./cleek-options.types').Color;
|
|
362
|
+
headerColor: import('./cleek-options.types').Color;
|
|
363
|
+
acceptBtnType: import('./cleek-options.types').ButtonType;
|
|
364
|
+
cancelBtnType: import('./cleek-options.types').ButtonType;
|
|
365
|
+
maxWidth: string;
|
|
366
|
+
fontSize: string;
|
|
367
|
+
};
|
|
368
|
+
select: {
|
|
369
|
+
clearValue: any;
|
|
370
|
+
backgroundColor: import('./cleek-options.types').Color;
|
|
371
|
+
};
|
|
372
|
+
table: {
|
|
373
|
+
striped: boolean;
|
|
374
|
+
version: import('./cleek-options.types').TableVersion;
|
|
375
|
+
headerTextColor?: import('./cleek-options.types').Color;
|
|
376
|
+
headerBackgroundColor?: import('./cleek-options.types').Color;
|
|
377
|
+
};
|
|
378
|
+
}>;
|
|
379
|
+
colorsOptions: import('vue').ComputedRef<{
|
|
380
|
+
primary: import('./cleek-options.types').Color;
|
|
381
|
+
secondary: import('./cleek-options.types').Color;
|
|
382
|
+
}>;
|
|
383
|
+
stylesOptions: import('vue').ComputedRef<{
|
|
384
|
+
layout: import('./cleek-options.types').Layout;
|
|
385
|
+
borderColor: import('./cleek-options.types').Color;
|
|
386
|
+
}>;
|
|
387
|
+
buttonOptions: import('vue').ComputedRef<{
|
|
388
|
+
type: import('./cleek-options.types').ButtonType;
|
|
389
|
+
layout: import('./cleek-options.types').Layout;
|
|
390
|
+
backgroundColor: import('./cleek-options.types').Color;
|
|
391
|
+
textColor: import('./cleek-options.types').Color;
|
|
392
|
+
}>;
|
|
393
|
+
divOptions: import('vue').ComputedRef<{
|
|
394
|
+
gap: 0;
|
|
395
|
+
}>;
|
|
396
|
+
imgOptions: import('vue').ComputedRef<{
|
|
397
|
+
basePath: string;
|
|
398
|
+
basePathStatic: string;
|
|
399
|
+
basePathDynamic: string;
|
|
400
|
+
}>;
|
|
401
|
+
popupOptions: import('vue').ComputedRef<{
|
|
402
|
+
textColor: string;
|
|
403
|
+
headerAlign: import('./cleek-options.types').Align;
|
|
404
|
+
backgroundColor: import('./cleek-options.types').Color;
|
|
405
|
+
headerColor: import('./cleek-options.types').Color;
|
|
406
|
+
acceptBtnType: import('./cleek-options.types').ButtonType;
|
|
407
|
+
cancelBtnType: import('./cleek-options.types').ButtonType;
|
|
408
|
+
maxWidth: string;
|
|
409
|
+
fontSize: string;
|
|
410
|
+
}>;
|
|
411
|
+
selectOptions: import('vue').ComputedRef<{
|
|
412
|
+
clearValue: any;
|
|
413
|
+
backgroundColor: import('./cleek-options.types').Color;
|
|
414
|
+
}>;
|
|
415
|
+
tableOptions: import('vue').ComputedRef<{
|
|
416
|
+
striped: boolean;
|
|
417
|
+
version: import('./cleek-options.types').TableVersion;
|
|
418
|
+
headerTextColor?: import('./cleek-options.types').Color;
|
|
419
|
+
headerBackgroundColor?: import('./cleek-options.types').Color;
|
|
420
|
+
}>;
|
|
421
|
+
}, never>>;
|
|
@@ -3,7 +3,7 @@ import { Align, AlignVertical, Color, Icon, IconPack, Layout, ButtonType, WidthB
|
|
|
3
3
|
declare function __VLS_template(): {
|
|
4
4
|
default?(_: {}): any;
|
|
5
5
|
};
|
|
6
|
-
declare const __VLS_component: import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<{
|
|
6
|
+
declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
7
7
|
title?: string;
|
|
8
8
|
disabled?: boolean;
|
|
9
9
|
isLoading?: boolean;
|
|
@@ -23,7 +23,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_TypePropsToRu
|
|
|
23
23
|
widthBreaks?: WidthBreaks;
|
|
24
24
|
group?: Align;
|
|
25
25
|
groupVertical?: AlignVertical;
|
|
26
|
-
}
|
|
26
|
+
}>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
27
27
|
click: (event: Event) => void;
|
|
28
28
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
29
29
|
title?: string;
|
|
@@ -45,9 +45,9 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_TypePropsToRu
|
|
|
45
45
|
widthBreaks?: WidthBreaks;
|
|
46
46
|
group?: Align;
|
|
47
47
|
groupVertical?: AlignVertical;
|
|
48
|
-
}>>> & {
|
|
48
|
+
}>>> & Readonly<{
|
|
49
49
|
onClick?: (event: Event) => any;
|
|
50
|
-
}, {}, {}>;
|
|
50
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
51
51
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
52
52
|
export default _default;
|
|
53
53
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
@@ -4,14 +4,14 @@ declare function __VLS_template(): {
|
|
|
4
4
|
header?(_: {}): any;
|
|
5
5
|
default?(_: {}): any;
|
|
6
6
|
};
|
|
7
|
-
declare const __VLS_component: import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<{
|
|
7
|
+
declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
8
8
|
modelValue?: any;
|
|
9
9
|
title?: string;
|
|
10
10
|
subtitle?: string;
|
|
11
11
|
block?: boolean;
|
|
12
12
|
clickable?: boolean;
|
|
13
13
|
layout?: Layout;
|
|
14
|
-
}
|
|
14
|
+
}>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
15
15
|
"update:modelValue": (modelValue: boolean) => void;
|
|
16
16
|
closeCard: () => void;
|
|
17
17
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
@@ -21,10 +21,10 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_TypePropsToRu
|
|
|
21
21
|
block?: boolean;
|
|
22
22
|
clickable?: boolean;
|
|
23
23
|
layout?: Layout;
|
|
24
|
-
}>>> & {
|
|
24
|
+
}>>> & Readonly<{
|
|
25
25
|
"onUpdate:modelValue"?: (modelValue: boolean) => any;
|
|
26
26
|
onCloseCard?: () => any;
|
|
27
|
-
}, {}, {}>;
|
|
27
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
28
28
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
29
29
|
export default _default;
|
|
30
30
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
@@ -4,7 +4,7 @@ type Value = boolean | null;
|
|
|
4
4
|
declare function __VLS_template(): {
|
|
5
5
|
default?(_: {}): any;
|
|
6
6
|
};
|
|
7
|
-
declare const __VLS_component: import('vue').DefineComponent<{
|
|
7
|
+
declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
8
8
|
modelValue: {
|
|
9
9
|
required: true;
|
|
10
10
|
type: import('vue').PropType<Value>;
|
|
@@ -12,13 +12,13 @@ declare const __VLS_component: import('vue').DefineComponent<{
|
|
|
12
12
|
label: {
|
|
13
13
|
type: import('vue').PropType<string>;
|
|
14
14
|
};
|
|
15
|
+
size: {
|
|
16
|
+
type: import('vue').PropType<Size>;
|
|
17
|
+
};
|
|
15
18
|
color: {
|
|
16
19
|
type: import('vue').PropType<string>;
|
|
17
20
|
default: string;
|
|
18
21
|
};
|
|
19
|
-
size: {
|
|
20
|
-
type: import('vue').PropType<Size>;
|
|
21
|
-
};
|
|
22
22
|
disabled: {
|
|
23
23
|
type: import('vue').PropType<boolean>;
|
|
24
24
|
};
|
|
@@ -28,7 +28,7 @@ declare const __VLS_component: import('vue').DefineComponent<{
|
|
|
28
28
|
colorText: {
|
|
29
29
|
type: import('vue').PropType<string>;
|
|
30
30
|
};
|
|
31
|
-
}
|
|
31
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
32
32
|
change: (event: Event) => void;
|
|
33
33
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
34
34
|
modelValue: {
|
|
@@ -38,13 +38,13 @@ declare const __VLS_component: import('vue').DefineComponent<{
|
|
|
38
38
|
label: {
|
|
39
39
|
type: import('vue').PropType<string>;
|
|
40
40
|
};
|
|
41
|
+
size: {
|
|
42
|
+
type: import('vue').PropType<Size>;
|
|
43
|
+
};
|
|
41
44
|
color: {
|
|
42
45
|
type: import('vue').PropType<string>;
|
|
43
46
|
default: string;
|
|
44
47
|
};
|
|
45
|
-
size: {
|
|
46
|
-
type: import('vue').PropType<Size>;
|
|
47
|
-
};
|
|
48
48
|
disabled: {
|
|
49
49
|
type: import('vue').PropType<boolean>;
|
|
50
50
|
};
|
|
@@ -54,11 +54,11 @@ declare const __VLS_component: import('vue').DefineComponent<{
|
|
|
54
54
|
colorText: {
|
|
55
55
|
type: import('vue').PropType<string>;
|
|
56
56
|
};
|
|
57
|
-
}>> & {
|
|
57
|
+
}>> & Readonly<{
|
|
58
58
|
onChange?: (event: Event) => any;
|
|
59
|
-
}
|
|
59
|
+
}>, {
|
|
60
60
|
color: Color;
|
|
61
|
-
}, {}>;
|
|
61
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
62
62
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
63
63
|
export default _default;
|
|
64
64
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -3,7 +3,7 @@ import { Align, Color, Icon, IconPack, Size } from '../cleek-options/cleek-optio
|
|
|
3
3
|
declare function __VLS_template(): {
|
|
4
4
|
default?(_: {}): any;
|
|
5
5
|
};
|
|
6
|
-
declare const __VLS_component: import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<{
|
|
6
|
+
declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
7
7
|
size?: Size;
|
|
8
8
|
color?: Color;
|
|
9
9
|
textColor?: Color;
|
|
@@ -12,7 +12,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_TypePropsToRu
|
|
|
12
12
|
icon?: Icon;
|
|
13
13
|
iconRight?: Icon;
|
|
14
14
|
iconPack?: IconPack;
|
|
15
|
-
}
|
|
15
|
+
}>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
16
16
|
click: (event: Event) => void;
|
|
17
17
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
18
18
|
size?: Size;
|
|
@@ -23,9 +23,9 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_TypePropsToRu
|
|
|
23
23
|
icon?: Icon;
|
|
24
24
|
iconRight?: Icon;
|
|
25
25
|
iconPack?: IconPack;
|
|
26
|
-
}>>> & {
|
|
26
|
+
}>>> & Readonly<{
|
|
27
27
|
onClick?: (event: Event) => any;
|
|
28
|
-
}, {}, {}>;
|
|
28
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
29
29
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
30
30
|
export default _default;
|
|
31
31
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
@@ -3,14 +3,14 @@ import { Color, Icon, IconPack, Size } from '../cleek-options/cleek-options.type
|
|
|
3
3
|
declare function __VLS_template(): {
|
|
4
4
|
default?(_: {}): any;
|
|
5
5
|
};
|
|
6
|
-
declare const __VLS_component: import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<{
|
|
6
|
+
declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
7
7
|
size?: Size;
|
|
8
8
|
sizeInPx?: Size;
|
|
9
9
|
color?: Color;
|
|
10
10
|
textColor?: Color;
|
|
11
11
|
icon?: Icon;
|
|
12
12
|
iconPack?: IconPack;
|
|
13
|
-
}
|
|
13
|
+
}>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
14
14
|
click: (domEvent: DomEvent) => void;
|
|
15
15
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
16
16
|
size?: Size;
|
|
@@ -19,9 +19,9 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_TypePropsToRu
|
|
|
19
19
|
textColor?: Color;
|
|
20
20
|
icon?: Icon;
|
|
21
21
|
iconPack?: IconPack;
|
|
22
|
-
}>>> & {
|
|
22
|
+
}>>> & Readonly<{
|
|
23
23
|
onClick?: (domEvent: DomEvent) => any;
|
|
24
|
-
}, {}, {}>;
|
|
24
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
25
25
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
26
26
|
export default _default;
|
|
27
27
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
@@ -3,19 +3,19 @@ import { SizeInCSS } from '../cleek-options/cleek-options.types';
|
|
|
3
3
|
declare function __VLS_template(): {
|
|
4
4
|
default?(_: {}): any;
|
|
5
5
|
};
|
|
6
|
-
declare const __VLS_component: import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<{
|
|
6
|
+
declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
7
7
|
widthBreaks?: [number, string][];
|
|
8
8
|
block?: boolean;
|
|
9
9
|
gap: SizeInCSS;
|
|
10
|
-
}
|
|
10
|
+
}>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
11
11
|
click: (event: Event) => void;
|
|
12
12
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
13
13
|
widthBreaks?: [number, string][];
|
|
14
14
|
block?: boolean;
|
|
15
15
|
gap: SizeInCSS;
|
|
16
|
-
}>>> & {
|
|
16
|
+
}>>> & Readonly<{
|
|
17
17
|
onClick?: (event: Event) => any;
|
|
18
|
-
}, {}, {}>;
|
|
18
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
19
19
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
20
20
|
export default _default;
|
|
21
21
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
@@ -4,15 +4,15 @@ declare function __VLS_template(): {
|
|
|
4
4
|
trigger?(_: {}): any;
|
|
5
5
|
content?(_: {}): any;
|
|
6
6
|
};
|
|
7
|
-
declare const __VLS_component: import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<{
|
|
7
|
+
declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
8
8
|
align?: Align;
|
|
9
9
|
dark?: boolean;
|
|
10
10
|
layout?: Layout;
|
|
11
|
-
}
|
|
11
|
+
}>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
12
12
|
align?: Align;
|
|
13
13
|
dark?: boolean;
|
|
14
14
|
layout?: Layout;
|
|
15
|
-
}
|
|
15
|
+
}>>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
16
16
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
17
17
|
export default _default;
|
|
18
18
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|