cleek 2.10.78 → 2.10.80
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.es.js
CHANGED
|
@@ -3098,6 +3098,7 @@ const Nn = /* @__PURE__ */ j(Wn, [["__scopeId", "data-v-1d834ae1"]]), En = "roun
|
|
|
3098
3098
|
layout: {},
|
|
3099
3099
|
icon: {},
|
|
3100
3100
|
iconRight: {},
|
|
3101
|
+
iconPack: {},
|
|
3101
3102
|
preventAutoUpdate: { type: Boolean }
|
|
3102
3103
|
},
|
|
3103
3104
|
emits: ["update:modelValue"],
|
|
@@ -3121,18 +3122,20 @@ const Nn = /* @__PURE__ */ j(Wn, [["__scopeId", "data-v-1d834ae1"]]), En = "roun
|
|
|
3121
3122
|
}, [
|
|
3122
3123
|
d.icon ? (v(), S(p, {
|
|
3123
3124
|
key: 0,
|
|
3124
|
-
icon: d.icon
|
|
3125
|
-
|
|
3125
|
+
icon: d.icon,
|
|
3126
|
+
iconPack: d.iconPack
|
|
3127
|
+
}, null, 8, ["icon", "iconPack"])) : C("", !0),
|
|
3126
3128
|
W(d.$slots, "default", {}, void 0, !0),
|
|
3127
3129
|
d.iconRight ? (v(), S(p, {
|
|
3128
3130
|
key: 1,
|
|
3129
|
-
icon: d.iconRight
|
|
3130
|
-
|
|
3131
|
+
icon: d.iconRight,
|
|
3132
|
+
iconPack: d.iconPack
|
|
3133
|
+
}, null, 8, ["icon", "iconPack"])) : C("", !0)
|
|
3131
3134
|
], 2);
|
|
3132
3135
|
};
|
|
3133
3136
|
}
|
|
3134
3137
|
});
|
|
3135
|
-
const qn = /* @__PURE__ */ j(Fn, [["__scopeId", "data-v-
|
|
3138
|
+
const qn = /* @__PURE__ */ j(Fn, [["__scopeId", "data-v-f613ffcb"]]), Hn = { class: "ck-toggle-group" }, jn = /* @__PURE__ */ R({
|
|
3136
3139
|
__name: "ck-toggle-group",
|
|
3137
3140
|
props: /* @__PURE__ */ ee({
|
|
3138
3141
|
options: {},
|
|
@@ -3140,7 +3143,8 @@ const qn = /* @__PURE__ */ j(Fn, [["__scopeId", "data-v-e3c474ff"]]), Hn = { cla
|
|
|
3140
3143
|
label: {},
|
|
3141
3144
|
labelAlign: {},
|
|
3142
3145
|
gap: {},
|
|
3143
|
-
multipleSelection: { type: Boolean }
|
|
3146
|
+
multipleSelection: { type: Boolean },
|
|
3147
|
+
iconPack: {}
|
|
3144
3148
|
}, {
|
|
3145
3149
|
modelValue: { required: !0 },
|
|
3146
3150
|
modelModifiers: {}
|
|
@@ -3191,6 +3195,7 @@ const qn = /* @__PURE__ */ j(Fn, [["__scopeId", "data-v-e3c474ff"]]), Hn = { cla
|
|
|
3191
3195
|
modelValue: u(m),
|
|
3192
3196
|
key: i(m),
|
|
3193
3197
|
icon: d(m),
|
|
3198
|
+
iconPack: s.iconPack,
|
|
3194
3199
|
layout: s.layout,
|
|
3195
3200
|
preventAutoUpdate: "",
|
|
3196
3201
|
onClick: (h) => p(m)
|
|
@@ -3199,13 +3204,13 @@ const qn = /* @__PURE__ */ j(Fn, [["__scopeId", "data-v-e3c474ff"]]), Hn = { cla
|
|
|
3199
3204
|
Z(I(a(m)), 1)
|
|
3200
3205
|
]),
|
|
3201
3206
|
_: 2
|
|
3202
|
-
}, 1032, ["modelValue", "icon", "layout", "onClick"]))), 128))
|
|
3207
|
+
}, 1032, ["modelValue", "icon", "iconPack", "layout", "onClick"]))), 128))
|
|
3203
3208
|
], 4)
|
|
3204
3209
|
]);
|
|
3205
3210
|
};
|
|
3206
3211
|
}
|
|
3207
3212
|
});
|
|
3208
|
-
const Un = /* @__PURE__ */ j(jn, [["__scopeId", "data-v-
|
|
3213
|
+
const Un = /* @__PURE__ */ j(jn, [["__scopeId", "data-v-43006e82"]]), Gn = {
|
|
3209
3214
|
key: 0,
|
|
3210
3215
|
class: "ck-card__header-title"
|
|
3211
3216
|
}, Zn = { class: "ck-card__body" }, Yn = {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Color, Icon, Layout } from '../../cleek-options/cleek-options.types';
|
|
1
|
+
import { Color, Icon, Layout, IconPack } from '../../cleek-options/cleek-options.types';
|
|
2
2
|
|
|
3
3
|
declare function __VLS_template(): {
|
|
4
4
|
default?(_: {}): any;
|
|
@@ -9,6 +9,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
9
9
|
layout?: Layout;
|
|
10
10
|
icon?: Icon;
|
|
11
11
|
iconRight?: Icon;
|
|
12
|
+
iconPack?: IconPack;
|
|
12
13
|
preventAutoUpdate?: boolean;
|
|
13
14
|
}>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
14
15
|
"update:modelValue": (value: boolean) => void;
|
|
@@ -18,6 +19,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
18
19
|
layout?: Layout;
|
|
19
20
|
icon?: Icon;
|
|
20
21
|
iconRight?: Icon;
|
|
22
|
+
iconPack?: IconPack;
|
|
21
23
|
preventAutoUpdate?: boolean;
|
|
22
24
|
}>>> & Readonly<{
|
|
23
25
|
"onUpdate:modelValue"?: (value: boolean) => any;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Layout, Align } from '../../cleek-options/cleek-options.types';
|
|
1
|
+
import { IconPack, Layout, Align } from '../../cleek-options/cleek-options.types';
|
|
2
2
|
|
|
3
3
|
type Option = {
|
|
4
4
|
id: any;
|
|
@@ -30,6 +30,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
30
30
|
multipleSelection: {
|
|
31
31
|
type: import('vue').PropType<boolean>;
|
|
32
32
|
};
|
|
33
|
+
iconPack: {
|
|
34
|
+
type: import('vue').PropType<IconPack>;
|
|
35
|
+
};
|
|
33
36
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
34
37
|
change: () => void;
|
|
35
38
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
@@ -56,6 +59,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
56
59
|
multipleSelection: {
|
|
57
60
|
type: import('vue').PropType<boolean>;
|
|
58
61
|
};
|
|
62
|
+
iconPack: {
|
|
63
|
+
type: import('vue').PropType<IconPack>;
|
|
64
|
+
};
|
|
59
65
|
}>> & Readonly<{
|
|
60
66
|
onChange?: () => any;
|
|
61
67
|
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|