cleek 2.11.32 → 2.11.33
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/aspect-ratio.styl +6 -6
- package/dist/cleek-styles/tiny-tailwind/bg-color.styl +161 -161
- package/dist/cleek-styles/tiny-tailwind/border-color.styl +161 -161
- package/dist/cleek-styles/tiny-tailwind/border.styl +63 -63
- package/dist/cleek-styles/tiny-tailwind/flex-direction.styl +8 -8
- package/dist/cleek-styles/tiny-tailwind/flex-grow.styl +10 -10
- package/dist/cleek-styles/tiny-tailwind/font-size.styl +24 -24
- package/dist/cleek-styles/tiny-tailwind/grid.styl +87 -87
- package/dist/cleek-styles/tiny-tailwind/height.styl +96 -96
- package/dist/cleek-styles/tiny-tailwind/inset.styl +328 -328
- package/dist/cleek-styles/tiny-tailwind/leading.styl +28 -28
- package/dist/cleek-styles/tiny-tailwind/object-fit.styl +20 -20
- package/dist/cleek-styles/tiny-tailwind/opacity.styl +30 -30
- package/dist/cleek-styles/tiny-tailwind/pointer-events.styl +4 -4
- package/dist/cleek-styles/tiny-tailwind/shadow.styl +16 -16
- package/dist/cleek-styles/tiny-tailwind/size-constraints.styl +127 -127
- package/dist/cleek-styles/tiny-tailwind/text-color.styl +159 -159
- package/dist/cleek-styles/tiny-tailwind/text-decoration.styl +8 -8
- package/dist/cleek-styles/tiny-tailwind/text-overflow.styl +38 -38
- package/dist/cleek-styles/tiny-tailwind/text-transform.styl +8 -8
- package/dist/cleek-styles/tiny-tailwind/transition.styl +55 -55
- package/dist/cleek-styles/tiny-tailwind/user-select.styl +8 -8
- package/dist/cleek-styles/tiny-tailwind/visibility.styl +4 -4
- package/dist/cleek-styles/tiny-tailwind/z-index.styl +14 -14
- package/dist/main.cjs.js +1 -1
- package/dist/main.css +1 -1
- package/dist/main.es.js +1051 -953
- package/dist/types/components/ck-input.vue.d.ts +0 -15
- package/dist/types/components/ck-table/ck-table.vue.d.ts +6 -6
- package/dist/types/components/ck-tile-picker.vue.d.ts +87 -0
- package/dist/types/components/index.d.ts +1 -0
- package/package.json +1 -1
|
@@ -88,13 +88,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
88
88
|
suffix: {
|
|
89
89
|
type: import('vue').PropType<string>;
|
|
90
90
|
};
|
|
91
|
-
rightIconIsButton: {
|
|
92
|
-
type: import('vue').PropType<boolean>;
|
|
93
|
-
default: boolean;
|
|
94
|
-
};
|
|
95
|
-
rightIconTooltip: {
|
|
96
|
-
type: import('vue').PropType<string>;
|
|
97
|
-
};
|
|
98
91
|
iconColor: {
|
|
99
92
|
type: import('vue').PropType<string>;
|
|
100
93
|
};
|
|
@@ -217,13 +210,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
217
210
|
suffix: {
|
|
218
211
|
type: import('vue').PropType<string>;
|
|
219
212
|
};
|
|
220
|
-
rightIconIsButton: {
|
|
221
|
-
type: import('vue').PropType<boolean>;
|
|
222
|
-
default: boolean;
|
|
223
|
-
};
|
|
224
|
-
rightIconTooltip: {
|
|
225
|
-
type: import('vue').PropType<string>;
|
|
226
|
-
};
|
|
227
213
|
iconColor: {
|
|
228
214
|
type: import('vue').PropType<string>;
|
|
229
215
|
};
|
|
@@ -261,7 +247,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
261
247
|
}>, {
|
|
262
248
|
type: InputType;
|
|
263
249
|
size: "s" | "m" | "l" | "xl";
|
|
264
|
-
rightIconIsButton: boolean;
|
|
265
250
|
delayChangeTime: number;
|
|
266
251
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
267
252
|
export default _default;
|
|
@@ -47,6 +47,9 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
47
47
|
type: import('vue').PropType<boolean>;
|
|
48
48
|
default: any;
|
|
49
49
|
};
|
|
50
|
+
columns: {
|
|
51
|
+
type: import('vue').PropType<Columns>;
|
|
52
|
+
};
|
|
50
53
|
currentPage: {
|
|
51
54
|
type: import('vue').PropType<number>;
|
|
52
55
|
};
|
|
@@ -65,9 +68,6 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
65
68
|
hideHeaderActions: {
|
|
66
69
|
type: import('vue').PropType<boolean>;
|
|
67
70
|
};
|
|
68
|
-
columns: {
|
|
69
|
-
type: import('vue').PropType<Columns>;
|
|
70
|
-
};
|
|
71
71
|
rows: {
|
|
72
72
|
type: import('vue').PropType<any[]>;
|
|
73
73
|
required: true;
|
|
@@ -131,6 +131,9 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
131
131
|
type: import('vue').PropType<boolean>;
|
|
132
132
|
default: any;
|
|
133
133
|
};
|
|
134
|
+
columns: {
|
|
135
|
+
type: import('vue').PropType<Columns>;
|
|
136
|
+
};
|
|
134
137
|
currentPage: {
|
|
135
138
|
type: import('vue').PropType<number>;
|
|
136
139
|
};
|
|
@@ -149,9 +152,6 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
149
152
|
hideHeaderActions: {
|
|
150
153
|
type: import('vue').PropType<boolean>;
|
|
151
154
|
};
|
|
152
|
-
columns: {
|
|
153
|
-
type: import('vue').PropType<Columns>;
|
|
154
|
-
};
|
|
155
155
|
rows: {
|
|
156
156
|
type: import('vue').PropType<any[]>;
|
|
157
157
|
required: true;
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
import { Align, Icon, IconPack } from '../cleek-options/cleek-options.types';
|
|
2
|
+
|
|
3
|
+
type Option = {
|
|
4
|
+
id: any;
|
|
5
|
+
name: string | number;
|
|
6
|
+
icon?: Icon;
|
|
7
|
+
description?: string;
|
|
8
|
+
};
|
|
9
|
+
type OptionValue = Option['id'];
|
|
10
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
11
|
+
modelValue: {
|
|
12
|
+
required: true;
|
|
13
|
+
type: import('vue').PropType<OptionValue | null>;
|
|
14
|
+
};
|
|
15
|
+
options: {
|
|
16
|
+
type: import('vue').PropType<Option[]>;
|
|
17
|
+
required: true;
|
|
18
|
+
};
|
|
19
|
+
disabled: {
|
|
20
|
+
type: import('vue').PropType<boolean>;
|
|
21
|
+
};
|
|
22
|
+
disabledTooltip: {
|
|
23
|
+
type: import('vue').PropType<string>;
|
|
24
|
+
};
|
|
25
|
+
size: {
|
|
26
|
+
type: import('vue').PropType<"m" | "l">;
|
|
27
|
+
};
|
|
28
|
+
columns: {
|
|
29
|
+
type: import('vue').PropType<number>;
|
|
30
|
+
};
|
|
31
|
+
changeLabel: {
|
|
32
|
+
type: import('vue').PropType<string>;
|
|
33
|
+
};
|
|
34
|
+
iconColor: {
|
|
35
|
+
type: import('vue').PropType<string>;
|
|
36
|
+
};
|
|
37
|
+
iconPack: {
|
|
38
|
+
type: import('vue').PropType<IconPack>;
|
|
39
|
+
};
|
|
40
|
+
label: {
|
|
41
|
+
type: import('vue').PropType<string>;
|
|
42
|
+
};
|
|
43
|
+
labelAlign: {
|
|
44
|
+
type: import('vue').PropType<Align>;
|
|
45
|
+
};
|
|
46
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
47
|
+
change: (value: any) => void;
|
|
48
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
49
|
+
modelValue: {
|
|
50
|
+
required: true;
|
|
51
|
+
type: import('vue').PropType<OptionValue | null>;
|
|
52
|
+
};
|
|
53
|
+
options: {
|
|
54
|
+
type: import('vue').PropType<Option[]>;
|
|
55
|
+
required: true;
|
|
56
|
+
};
|
|
57
|
+
disabled: {
|
|
58
|
+
type: import('vue').PropType<boolean>;
|
|
59
|
+
};
|
|
60
|
+
disabledTooltip: {
|
|
61
|
+
type: import('vue').PropType<string>;
|
|
62
|
+
};
|
|
63
|
+
size: {
|
|
64
|
+
type: import('vue').PropType<"m" | "l">;
|
|
65
|
+
};
|
|
66
|
+
columns: {
|
|
67
|
+
type: import('vue').PropType<number>;
|
|
68
|
+
};
|
|
69
|
+
changeLabel: {
|
|
70
|
+
type: import('vue').PropType<string>;
|
|
71
|
+
};
|
|
72
|
+
iconColor: {
|
|
73
|
+
type: import('vue').PropType<string>;
|
|
74
|
+
};
|
|
75
|
+
iconPack: {
|
|
76
|
+
type: import('vue').PropType<IconPack>;
|
|
77
|
+
};
|
|
78
|
+
label: {
|
|
79
|
+
type: import('vue').PropType<string>;
|
|
80
|
+
};
|
|
81
|
+
labelAlign: {
|
|
82
|
+
type: import('vue').PropType<Align>;
|
|
83
|
+
};
|
|
84
|
+
}>> & Readonly<{
|
|
85
|
+
onChange?: (value: any) => any;
|
|
86
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
87
|
+
export default _default;
|
|
@@ -31,6 +31,7 @@ export { default as CkSidebar } from './ck-sidebar.vue';
|
|
|
31
31
|
export { default as CkSwitch } from './ck-switch.vue';
|
|
32
32
|
export { default as CkSwitchOptions } from './ck-switch-options.vue';
|
|
33
33
|
export { default as CkTextarea } from './ck-textarea.vue';
|
|
34
|
+
export { default as CkTilePicker } from './ck-tile-picker.vue';
|
|
34
35
|
export { default as useWindowWidth } from '../hooks/windowWidth';
|
|
35
36
|
export { default as ckNotify } from './ck-notify/ck-notify';
|
|
36
37
|
export declare class TableData {
|