cisse-vue-ui 0.5.11 → 0.5.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/{Timeline.vue_vue_type_script_setup_true_lang-1yrOZ-T-.cjs → Timeline.vue_vue_type_script_setup_true_lang-5MnyzOrB.cjs} +30 -24
- package/dist/Timeline.vue_vue_type_script_setup_true_lang-5MnyzOrB.cjs.map +1 -0
- package/dist/{Timeline.vue_vue_type_script_setup_true_lang-SaNCS3ie.js → Timeline.vue_vue_type_script_setup_true_lang-go_BS8Q4.js} +31 -25
- package/dist/Timeline.vue_vue_type_script_setup_true_lang-go_BS8Q4.js.map +1 -0
- package/dist/components/core/CardComponent.vue.d.ts +2 -0
- package/dist/components/core/index.cjs +1 -1
- package/dist/components/core/index.js +1 -1
- package/dist/components/index.cjs +1 -1
- package/dist/components/index.js +1 -1
- package/dist/{index-Cf5paArr.js → index-BZaMLErH.js} +2 -2
- package/dist/index-BZaMLErH.js.map +1 -0
- package/dist/{index-DX1YDiXc.cjs → index-L9lZawxP.cjs} +2 -2
- package/dist/index-L9lZawxP.cjs.map +1 -0
- package/dist/index.cjs +2 -2
- package/dist/index.js +2 -2
- package/package.json +1 -1
- package/dist/Timeline.vue_vue_type_script_setup_true_lang-1yrOZ-T-.cjs.map +0 -1
- package/dist/Timeline.vue_vue_type_script_setup_true_lang-SaNCS3ie.js.map +0 -1
- package/dist/index-Cf5paArr.js.map +0 -1
- package/dist/index-DX1YDiXc.cjs.map +0 -1
|
@@ -5,52 +5,58 @@ const BadgeType_vue_vue_type_script_setup_true_lang = require("./BadgeType.vue_v
|
|
|
5
5
|
const vue$1 = require("@iconify/vue");
|
|
6
6
|
const useDropdown = require("./useDropdown-DHFnd259.cjs");
|
|
7
7
|
const _hoisted_1$c = { class: "flex flex-col overflow-hidden rounded-lg bg-white shadow-md dark:bg-slate-950" };
|
|
8
|
-
const _hoisted_2$9 = {
|
|
9
|
-
key: 0,
|
|
10
|
-
class: "border-b border-gray-200 dark:border-gray-700"
|
|
11
|
-
};
|
|
8
|
+
const _hoisted_2$9 = { class: "flex flex-col gap-0.5" };
|
|
12
9
|
const _hoisted_3$7 = {
|
|
13
|
-
key: 1,
|
|
14
|
-
class: "flex items-center justify-between border-b border-gray-200 px-5 py-3 dark:border-gray-700"
|
|
15
|
-
};
|
|
16
|
-
const _hoisted_4$6 = { class: "flex flex-col gap-0.5" };
|
|
17
|
-
const _hoisted_5$4 = {
|
|
18
|
-
key: 0,
|
|
19
|
-
class: "text-md font-semibold text-gray-800 dark:text-gray-200"
|
|
20
|
-
};
|
|
21
|
-
const _hoisted_6$4 = {
|
|
22
10
|
key: 1,
|
|
23
11
|
class: "text-sm font-normal text-gray-600 dark:text-gray-400"
|
|
24
12
|
};
|
|
25
|
-
const
|
|
13
|
+
const _hoisted_4$6 = { class: "flex gap-2" };
|
|
26
14
|
const _sfc_main$i = /* @__PURE__ */ vue.defineComponent({
|
|
27
15
|
__name: "CardComponent",
|
|
28
16
|
props: {
|
|
29
17
|
title: {},
|
|
30
|
-
description: {}
|
|
18
|
+
description: {},
|
|
19
|
+
titleClass: {},
|
|
20
|
+
dividerClass: {}
|
|
31
21
|
},
|
|
32
22
|
setup(__props) {
|
|
23
|
+
const props = __props;
|
|
24
|
+
const titleClasses = vue.computed(
|
|
25
|
+
() => props.titleClass || "text-gray-800 dark:text-gray-200"
|
|
26
|
+
);
|
|
27
|
+
const dividerClasses = vue.computed(
|
|
28
|
+
() => props.dividerClass || "border-gray-200 dark:border-gray-700"
|
|
29
|
+
);
|
|
33
30
|
return (_ctx, _cache) => {
|
|
34
31
|
return vue.openBlock(), vue.createElementBlock("div", _hoisted_1$c, [
|
|
35
|
-
_ctx.$slots.header ? (vue.openBlock(), vue.createElementBlock("div",
|
|
32
|
+
_ctx.$slots.header ? (vue.openBlock(), vue.createElementBlock("div", {
|
|
33
|
+
key: 0,
|
|
34
|
+
class: vue.normalizeClass(["border-b", dividerClasses.value])
|
|
35
|
+
}, [
|
|
36
36
|
vue.renderSlot(_ctx.$slots, "header")
|
|
37
|
-
])) : __props.title || __props.description || _ctx.$slots.title || _ctx.$slots.description || _ctx.$slots.actions ? (vue.openBlock(), vue.createElementBlock("div",
|
|
38
|
-
|
|
39
|
-
|
|
37
|
+
], 2)) : __props.title || __props.description || _ctx.$slots.title || _ctx.$slots.description || _ctx.$slots.actions ? (vue.openBlock(), vue.createElementBlock("div", {
|
|
38
|
+
key: 1,
|
|
39
|
+
class: vue.normalizeClass(["flex items-center justify-between border-b px-5 py-3", dividerClasses.value])
|
|
40
|
+
}, [
|
|
41
|
+
vue.createElementVNode("div", _hoisted_2$9, [
|
|
42
|
+
__props.title || _ctx.$slots.title ? (vue.openBlock(), vue.createElementBlock("span", {
|
|
43
|
+
key: 0,
|
|
44
|
+
class: vue.normalizeClass(["text-md font-semibold", titleClasses.value])
|
|
45
|
+
}, [
|
|
40
46
|
vue.renderSlot(_ctx.$slots, "title", {}, () => [
|
|
41
47
|
vue.createTextVNode(vue.toDisplayString(__props.title), 1)
|
|
42
48
|
])
|
|
43
|
-
])) : vue.createCommentVNode("", true),
|
|
44
|
-
__props.description || _ctx.$slots.description ? (vue.openBlock(), vue.createElementBlock("span",
|
|
49
|
+
], 2)) : vue.createCommentVNode("", true),
|
|
50
|
+
__props.description || _ctx.$slots.description ? (vue.openBlock(), vue.createElementBlock("span", _hoisted_3$7, [
|
|
45
51
|
vue.renderSlot(_ctx.$slots, "description", {}, () => [
|
|
46
52
|
vue.createTextVNode(vue.toDisplayString(__props.description), 1)
|
|
47
53
|
])
|
|
48
54
|
])) : vue.createCommentVNode("", true)
|
|
49
55
|
]),
|
|
50
|
-
vue.createElementVNode("div",
|
|
56
|
+
vue.createElementVNode("div", _hoisted_4$6, [
|
|
51
57
|
vue.renderSlot(_ctx.$slots, "actions")
|
|
52
58
|
])
|
|
53
|
-
])) : vue.createCommentVNode("", true),
|
|
59
|
+
], 2)) : vue.createCommentVNode("", true),
|
|
54
60
|
vue.renderSlot(_ctx.$slots, "default")
|
|
55
61
|
]);
|
|
56
62
|
};
|
|
@@ -2076,4 +2082,4 @@ exports._sfc_main$6 = _sfc_main$c;
|
|
|
2076
2082
|
exports._sfc_main$7 = _sfc_main$b;
|
|
2077
2083
|
exports._sfc_main$8 = _sfc_main$a;
|
|
2078
2084
|
exports._sfc_main$9 = _sfc_main$9;
|
|
2079
|
-
//# sourceMappingURL=Timeline.vue_vue_type_script_setup_true_lang-
|
|
2085
|
+
//# sourceMappingURL=Timeline.vue_vue_type_script_setup_true_lang-5MnyzOrB.cjs.map
|