cleek 2.10.79 → 2.10.81
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: {},
|
|
@@ -3598,7 +3601,7 @@ const Ca = {
|
|
|
3598
3601
|
return Ce(y.value);
|
|
3599
3602
|
}), F = c(() => n.disabled || T.value), X = c(() => {
|
|
3600
3603
|
var b;
|
|
3601
|
-
if (n.clearValue)
|
|
3604
|
+
if (typeof n.clearValue < "u")
|
|
3602
3605
|
return n.clearValue;
|
|
3603
3606
|
if ((b = i.value.select) != null && b.clearValue)
|
|
3604
3607
|
return i.value.select.clearValue;
|
|
@@ -3830,7 +3833,7 @@ const Ca = {
|
|
|
3830
3833
|
};
|
|
3831
3834
|
}
|
|
3832
3835
|
});
|
|
3833
|
-
const La = /* @__PURE__ */ j(Da, [["__scopeId", "data-v-
|
|
3836
|
+
const La = /* @__PURE__ */ j(Da, [["__scopeId", "data-v-3ab25429"]]), Sa = {
|
|
3834
3837
|
key: 0,
|
|
3835
3838
|
class: "sidebar-header-title"
|
|
3836
3839
|
}, Pa = {
|
|
@@ -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;
|