cleek 2.9.14 → 2.9.15
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.cjs.js +1 -1
- package/dist/main.css +1 -1
- package/dist/main.es.js +3 -2
- package/dist/types/components/ck-card.vue.d.ts +2 -0
- package/package.json +1 -1
package/dist/main.es.js
CHANGED
|
@@ -97874,6 +97874,7 @@ const yj4 = /* @__PURE__ */ za(Vj4, [["render", xj4]]), Nj4 = ["id"], wj4 = {
|
|
|
97874
97874
|
title: {},
|
|
97875
97875
|
subtitle: {},
|
|
97876
97876
|
block: { type: Boolean },
|
|
97877
|
+
clickable: { type: Boolean },
|
|
97877
97878
|
layout: {}
|
|
97878
97879
|
},
|
|
97879
97880
|
emits: ["update:modelValue", "closeCard"],
|
|
@@ -97890,7 +97891,7 @@ const yj4 = /* @__PURE__ */ za(Vj4, [["render", xj4]]), Nj4 = ["id"], wj4 = {
|
|
|
97890
97891
|
}), o = k(() => {
|
|
97891
97892
|
var f;
|
|
97892
97893
|
const s = [], l = a.layout || ((f = n.value) == null ? void 0 : f.styles.layout);
|
|
97893
|
-
return l && s.push(`layout--${l}`), s;
|
|
97894
|
+
return l && s.push(`layout--${l}`), a.clickable && s.push("clickable"), s;
|
|
97894
97895
|
});
|
|
97895
97896
|
return y3(() => {
|
|
97896
97897
|
n.value = Q.getCleekOptions(Q3);
|
|
@@ -97924,7 +97925,7 @@ const yj4 = /* @__PURE__ */ za(Vj4, [["render", xj4]]), Nj4 = ["id"], wj4 = {
|
|
|
97924
97925
|
], 2)) : X("", !0);
|
|
97925
97926
|
};
|
|
97926
97927
|
}
|
|
97927
|
-
}), Ij4 = /* @__PURE__ */ m2(jj4, [["__scopeId", "data-v-
|
|
97928
|
+
}), Ij4 = /* @__PURE__ */ m2(jj4, [["__scopeId", "data-v-55764618"]]), Wj4 = ["color"], Gj4 = "white", Yj4 = "primary", Zj4 = "s", Xj4 = /* @__PURE__ */ k1({
|
|
97928
97929
|
__name: "ck-chip",
|
|
97929
97930
|
props: {
|
|
97930
97931
|
size: {},
|
|
@@ -8,6 +8,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_TypePropsToRu
|
|
|
8
8
|
title?: string;
|
|
9
9
|
subtitle?: string;
|
|
10
10
|
block?: boolean;
|
|
11
|
+
clickable?: boolean;
|
|
11
12
|
layout?: Layout;
|
|
12
13
|
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
13
14
|
"update:modelValue": (modelValue: boolean) => void;
|
|
@@ -17,6 +18,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_TypePropsToRu
|
|
|
17
18
|
title?: string;
|
|
18
19
|
subtitle?: string;
|
|
19
20
|
block?: boolean;
|
|
21
|
+
clickable?: boolean;
|
|
20
22
|
layout?: Layout;
|
|
21
23
|
}>>> & {
|
|
22
24
|
"onUpdate:modelValue"?: (modelValue: boolean) => any;
|