cleek 2.11.10 → 2.11.12
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 +1832 -1782
- package/dist/types/components/ck-popup.vue.d.ts +8 -0
- package/dist/types/components/ck-switch.vue.d.ts +24 -0
- package/package.json +1 -1
|
@@ -10,9 +10,13 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
10
10
|
required: true;
|
|
11
11
|
type: import('vue').PropType<boolean>;
|
|
12
12
|
};
|
|
13
|
+
topAlertVisible: import('vue').PropType<boolean>;
|
|
13
14
|
title: {
|
|
14
15
|
type: import('vue').PropType<string>;
|
|
15
16
|
};
|
|
17
|
+
topAlert: {
|
|
18
|
+
type: import('vue').PropType<string>;
|
|
19
|
+
};
|
|
16
20
|
confirmButtons: {
|
|
17
21
|
type: import('vue').PropType<boolean>;
|
|
18
22
|
};
|
|
@@ -82,9 +86,13 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
82
86
|
required: true;
|
|
83
87
|
type: import('vue').PropType<boolean>;
|
|
84
88
|
};
|
|
89
|
+
topAlertVisible: import('vue').PropType<boolean>;
|
|
85
90
|
title: {
|
|
86
91
|
type: import('vue').PropType<string>;
|
|
87
92
|
};
|
|
93
|
+
topAlert: {
|
|
94
|
+
type: import('vue').PropType<string>;
|
|
95
|
+
};
|
|
88
96
|
confirmButtons: {
|
|
89
97
|
type: import('vue').PropType<boolean>;
|
|
90
98
|
};
|
|
@@ -38,6 +38,18 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
38
38
|
iconPack: {
|
|
39
39
|
type: import('vue').PropType<IconPack>;
|
|
40
40
|
};
|
|
41
|
+
label: {
|
|
42
|
+
type: import('vue').PropType<string>;
|
|
43
|
+
};
|
|
44
|
+
labelIcon: {
|
|
45
|
+
type: import('vue').PropType<Icon>;
|
|
46
|
+
};
|
|
47
|
+
labelIconRight: {
|
|
48
|
+
type: import('vue').PropType<Icon>;
|
|
49
|
+
};
|
|
50
|
+
colorText: {
|
|
51
|
+
type: import('vue').PropType<string>;
|
|
52
|
+
};
|
|
41
53
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
42
54
|
click: () => void;
|
|
43
55
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
@@ -75,6 +87,18 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
75
87
|
iconPack: {
|
|
76
88
|
type: import('vue').PropType<IconPack>;
|
|
77
89
|
};
|
|
90
|
+
label: {
|
|
91
|
+
type: import('vue').PropType<string>;
|
|
92
|
+
};
|
|
93
|
+
labelIcon: {
|
|
94
|
+
type: import('vue').PropType<Icon>;
|
|
95
|
+
};
|
|
96
|
+
labelIconRight: {
|
|
97
|
+
type: import('vue').PropType<Icon>;
|
|
98
|
+
};
|
|
99
|
+
colorText: {
|
|
100
|
+
type: import('vue').PropType<string>;
|
|
101
|
+
};
|
|
78
102
|
}>> & Readonly<{
|
|
79
103
|
onClick?: () => any;
|
|
80
104
|
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|