@wikicasa-dev/components 1.7.6 → 1.7.8
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/BaseTabView.js +1 -1
- package/dist/UIKit/Tab/BaseTabView.vue.d.ts +10 -9
- package/dist/chunks/BaseTabView.vue_vue_type_script_setup_true_lang.BRUWgxtO.js +87 -0
- package/dist/index.d.ts +1 -2
- package/dist/index.js +63 -65
- package/package.json +1 -1
- package/dist/chunks/BaseTabView.vue_vue_type_script_setup_true_lang.uPKMPIZj.js +0 -85
package/dist/BaseTabView.js
CHANGED
|
@@ -1,24 +1,25 @@
|
|
|
1
|
+
import { ClassType } from "@wikicasa-dev/types";
|
|
1
2
|
declare const _default: import("vue").DefineComponent<{
|
|
2
3
|
activeIdx: import("vue").PropType<number | undefined>;
|
|
3
|
-
header: {
|
|
4
|
-
type: import("vue").PropType<string>;
|
|
5
|
-
default: string;
|
|
6
|
-
};
|
|
7
4
|
tabViewDescription: {
|
|
8
5
|
type: import("vue").PropType<string>;
|
|
9
6
|
required: true;
|
|
10
7
|
};
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
header: {
|
|
14
|
-
type: import("vue").PropType<string>;
|
|
8
|
+
tabListClasses: {
|
|
9
|
+
type: import("vue").PropType<ClassType>;
|
|
15
10
|
default: string;
|
|
16
11
|
};
|
|
12
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
13
|
+
activeIdx: import("vue").PropType<number | undefined>;
|
|
17
14
|
tabViewDescription: {
|
|
18
15
|
type: import("vue").PropType<string>;
|
|
19
16
|
required: true;
|
|
20
17
|
};
|
|
18
|
+
tabListClasses: {
|
|
19
|
+
type: import("vue").PropType<ClassType>;
|
|
20
|
+
default: string;
|
|
21
|
+
};
|
|
21
22
|
}>>, {
|
|
22
|
-
|
|
23
|
+
tabListClasses: ClassType;
|
|
23
24
|
}, {}>;
|
|
24
25
|
export default _default;
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
import { defineComponent as L, mergeModels as M, useModel as N, getCurrentInstance as x, ref as v, useSlots as S, computed as z, watch as j, openBlock as i, createElementBlock as s, normalizeClass as p, createElementVNode as T, toDisplayString as C, Fragment as I, renderList as $, createBlock as h, resolveDynamicComponent as g, createCommentVNode as F, withCtx as q } from "vue";
|
|
2
|
+
import { _ as G } from "./BaseTabPanel.vue_vue_type_script_setup_true_lang.DoZHWHt1.js";
|
|
3
|
+
const H = ["id"], J = ["aria-labelledby"], K = ["id", "aria-selected", "aria-controls", "tabindex", "onClick"], O = { key: 0 }, W = /* @__PURE__ */ L({
|
|
4
|
+
inheritAttrs: !1,
|
|
5
|
+
__name: "BaseTabView",
|
|
6
|
+
props: /* @__PURE__ */ M({
|
|
7
|
+
tabViewDescription: {},
|
|
8
|
+
tabListClasses: { default: "" }
|
|
9
|
+
}, {
|
|
10
|
+
activeIdx: { default: 0 },
|
|
11
|
+
activeIdxModifiers: {}
|
|
12
|
+
}),
|
|
13
|
+
emits: ["update:activeIdx"],
|
|
14
|
+
setup(B) {
|
|
15
|
+
const c = N(B, "activeIdx"), m = x(), r = v(m ? m.uid : null), P = v(""), f = v(""), k = S(), o = (e) => e.props ?? null, y = (e) => e.type.__name === "BaseTab", _ = (e, t) => ({
|
|
16
|
+
renderFn: e,
|
|
17
|
+
tabId: u(t),
|
|
18
|
+
"active-tab-panel-idx": o(e)?.["active-tab-panel-idx"] ?? t,
|
|
19
|
+
"header-title": o(e)?.["header-title"] || "",
|
|
20
|
+
class: o(e)?.class || ""
|
|
21
|
+
}), l = z(() => k.default ? k.default().reduce((e, t) => (t.children && Array.isArray(t.children) ? t.children.forEach((a) => {
|
|
22
|
+
y(a) && e.push(_(a, e.length));
|
|
23
|
+
}) : y(t) && e.push(_(t, e.length)), e), []) : []), d = (e) => c.value === e, w = (e) => f.value === e, u = (e) => `base-tab-${e}-${r.value}`, b = (e) => `base-tab-panel-${e}-${r.value}`, A = (e) => l.value.find((t) => t["active-tab-panel-idx"] === e)?.tabId, V = (e) => {
|
|
24
|
+
P.value = u(e);
|
|
25
|
+
}, D = (e) => {
|
|
26
|
+
const t = l.value.at(e ?? -1), a = b(t?.["active-tab-panel-idx"] ?? -1);
|
|
27
|
+
a && (f.value = a);
|
|
28
|
+
}, E = (e) => {
|
|
29
|
+
V(e), c.value = e;
|
|
30
|
+
};
|
|
31
|
+
return j(
|
|
32
|
+
c,
|
|
33
|
+
(e) => {
|
|
34
|
+
D(e ?? -1);
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
immediate: !0
|
|
38
|
+
}
|
|
39
|
+
), (e, t) => (i(), s("div", {
|
|
40
|
+
class: p(e.$attrs.class)
|
|
41
|
+
}, [
|
|
42
|
+
T("span", {
|
|
43
|
+
id: `tablist-${r.value}`,
|
|
44
|
+
class: "uikit-sr-only"
|
|
45
|
+
}, C(e.tabViewDescription), 9, H),
|
|
46
|
+
T("div", {
|
|
47
|
+
role: "tablist",
|
|
48
|
+
"aria-labelledby": `tablist-${r.value}`,
|
|
49
|
+
class: p(e.tabListClasses)
|
|
50
|
+
}, [
|
|
51
|
+
(i(!0), s(I, null, $(l.value, (a, n) => (i(), s("button", {
|
|
52
|
+
key: n,
|
|
53
|
+
id: u(n),
|
|
54
|
+
type: "button",
|
|
55
|
+
role: "tab",
|
|
56
|
+
"aria-selected": d(n),
|
|
57
|
+
"aria-controls": `base-tab-panel-${n}-${r.value}`,
|
|
58
|
+
tabindex: d(n) ? void 0 : -1,
|
|
59
|
+
class: p([
|
|
60
|
+
"uikit-bg-transparent uikit-p-5px",
|
|
61
|
+
{
|
|
62
|
+
"uikit-border-b-2 uikit-border-solid uikit-border-w-primary uikit-font-semibold": d(n)
|
|
63
|
+
},
|
|
64
|
+
a.class
|
|
65
|
+
]),
|
|
66
|
+
onClick: (Q) => E(n)
|
|
67
|
+
}, [
|
|
68
|
+
a["header-title"] ? (i(), s("span", O, C(a["header-title"]), 1)) : a.renderFn.children && a.renderFn.children.header ? (i(), h(g(a.renderFn.children.header), { key: 1 })) : F("", !0)
|
|
69
|
+
], 10, K))), 128))
|
|
70
|
+
], 10, J),
|
|
71
|
+
(i(!0), s(I, null, $(l.value, (a, n) => (i(), h(G, {
|
|
72
|
+
key: n,
|
|
73
|
+
id: b(n),
|
|
74
|
+
"labelled-by": A(n) || "",
|
|
75
|
+
active: w(b(n))
|
|
76
|
+
}, {
|
|
77
|
+
default: q(() => [
|
|
78
|
+
a.renderFn.children && a.renderFn.children.default ? (i(), h(g(a.renderFn.children.default), { key: 0 })) : F("", !0)
|
|
79
|
+
]),
|
|
80
|
+
_: 2
|
|
81
|
+
}, 1032, ["id", "labelled-by", "active"]))), 128))
|
|
82
|
+
], 2));
|
|
83
|
+
}
|
|
84
|
+
});
|
|
85
|
+
export {
|
|
86
|
+
W as _
|
|
87
|
+
};
|
package/dist/index.d.ts
CHANGED
|
@@ -7,7 +7,6 @@ import CheckboxBtn from './UIKit/Checkbox/CheckboxBtn.vue';
|
|
|
7
7
|
import CheckboxGroup from './UIKit/Checkbox/CheckboxGroup.vue';
|
|
8
8
|
import BaseTab from './UIKit/Tab/BaseTab.vue';
|
|
9
9
|
import BaseTabList from './UIKit/Tab/BaseTabView.vue';
|
|
10
|
-
import BaseTabPanel from './UIKit/Tab/BaseTabPanel.vue';
|
|
11
10
|
import RadioButton from './UIKit/Radio/RadioButton.vue';
|
|
12
11
|
import RadioGroup from './UIKit/Radio/RadioGroup.vue';
|
|
13
12
|
import AccessibleSelect from './UIKit/AccessibleSelect.vue';
|
|
@@ -39,4 +38,4 @@ import SwiperCarousel from './components/carousel/SwiperCarousel.vue';
|
|
|
39
38
|
import SwiperSlide from './components/carousel/SwiperSlide.vue';
|
|
40
39
|
import { useValidator } from './composables/useValidator';
|
|
41
40
|
export type { ChartOptions, ChartData } from "chart.js";
|
|
42
|
-
export { DoughnutChart, LineChart, BaseAccordion, BaseAccordionBtn, BaseAccordionContent, BaseAccordionItem, SelectItem, BaseAlert, BaseAutocomplete, BaseBadge, BaseButton, AccessibleSelect, BaseComplexToggle, BaseDropDown, BaseFloatingLabel, BaseCard, BaseIcon, BaseInput, BaseNavItem, BasePagination, BasePaper, BaseSlider, BaseTab, BaseTextarea, BaseToggle, BaseTooltip, BaseUploadFile, CheckboxBtn, CheckboxGroup, RadioButton, RadioGroup, SwiperCarousel, SwiperSlide, IntersectionObservable, IntersectionObserver, useValidator, BaseModal, BaseSnackbar, BaseTabList,
|
|
41
|
+
export { DoughnutChart, LineChart, BaseAccordion, BaseAccordionBtn, BaseAccordionContent, BaseAccordionItem, SelectItem, BaseAlert, BaseAutocomplete, BaseBadge, BaseButton, AccessibleSelect, BaseComplexToggle, BaseDropDown, BaseFloatingLabel, BaseCard, BaseIcon, BaseInput, BaseNavItem, BasePagination, BasePaper, BaseSlider, BaseTab, BaseTextarea, BaseToggle, BaseTooltip, BaseUploadFile, CheckboxBtn, CheckboxGroup, RadioButton, RadioGroup, SwiperCarousel, SwiperSlide, IntersectionObservable, IntersectionObserver, useValidator, BaseModal, BaseSnackbar, BaseTabList, };
|
package/dist/index.js
CHANGED
|
@@ -5,79 +5,77 @@ import { _ as f } from "./chunks/BaseAccordionContent.vue_vue_type_script_setup_
|
|
|
5
5
|
import { _ as m } from "./chunks/BaseAccordionItem.vue_vue_type_script_setup_true_lang.cWFIcTGL.js";
|
|
6
6
|
import { _ as l } from "./chunks/SelectItem.vue_vue_type_script_setup_true_lang.Colhxc7n.js";
|
|
7
7
|
import { default as d } from "./CheckboxBtn.js";
|
|
8
|
-
import { _
|
|
8
|
+
import { _ } from "./chunks/CheckboxGroup.vue_vue_type_script_setup_true_lang.DDtN9_Bg.js";
|
|
9
9
|
import { _ as i } from "./chunks/BaseTab.vue_vue_type_script_setup_true_lang.BRubYI9e.js";
|
|
10
|
-
import { _ as b } from "./chunks/BaseTabView.vue_vue_type_script_setup_true_lang.
|
|
11
|
-
import { _ as C } from "./chunks/
|
|
12
|
-
import { _ as I } from "./chunks/
|
|
13
|
-
import { _ as T } from "./chunks/
|
|
14
|
-
import { _ as k } from "./chunks/
|
|
15
|
-
import { _ as w } from "./chunks/
|
|
16
|
-
import { _ as L } from "./chunks/
|
|
17
|
-
import { _ as
|
|
18
|
-
import { _ as
|
|
19
|
-
import {
|
|
20
|
-
import {
|
|
21
|
-
import {
|
|
22
|
-
import { default as y } from "./
|
|
23
|
-
import { default as E } from "./
|
|
24
|
-
import { default as J } from "./
|
|
25
|
-
import { default as Q } from "./
|
|
26
|
-
import { default as X } from "./
|
|
27
|
-
import { default as Z } from "./
|
|
28
|
-
import { default as ee } from "./
|
|
29
|
-
import { default as ae } from "./
|
|
30
|
-
import { default as te } from "./
|
|
31
|
-
import {
|
|
32
|
-
import { _ as me } from "./chunks/
|
|
33
|
-
import {
|
|
34
|
-
import {
|
|
35
|
-
import { _ as
|
|
36
|
-
import { _ as ie } from "./chunks/
|
|
37
|
-
import { _ as be } from "./chunks/
|
|
38
|
-
import { _ as Ce } from "./chunks/
|
|
39
|
-
import {
|
|
40
|
-
import {
|
|
41
|
-
import { useValidator as ke } from "./useValidator.js";
|
|
10
|
+
import { _ as b } from "./chunks/BaseTabView.vue_vue_type_script_setup_true_lang.BRUWgxtO.js";
|
|
11
|
+
import { _ as C } from "./chunks/RadioButton.vue_vue_type_script_setup_true_lang.DR6a7QAi.js";
|
|
12
|
+
import { _ as I } from "./chunks/RadioGroup.vue_vue_type_script_setup_true_lang.DTUA_Q5e.js";
|
|
13
|
+
import { _ as T } from "./chunks/AccessibleSelect.vue_vue_type_script_setup_true_lang.5pqk7vlZ.js";
|
|
14
|
+
import { _ as k } from "./chunks/BaseAlert.vue_vue_type_style_index_0_lang.BtqP_iYL.js";
|
|
15
|
+
import { _ as w } from "./chunks/BaseAutocomplete.vue_vue_type_script_setup_true_lang.DyNyXytE.js";
|
|
16
|
+
import { _ as L } from "./chunks/BaseBadge.vue_vue_type_style_index_0_lang.BOA1gBKu.js";
|
|
17
|
+
import { _ as G } from "./chunks/BaseButton.vue_vue_type_script_setup_true_lang.BwONsejV.js";
|
|
18
|
+
import { _ as P } from "./chunks/BaseCard.vue_vue_type_style_index_0_lang.w5aEohzG.js";
|
|
19
|
+
import { default as M } from "./BaseComplexToggle.js";
|
|
20
|
+
import { _ as U } from "./chunks/BaseDropDown.vue_vue_type_script_setup_true_lang.BRcL69nu.js";
|
|
21
|
+
import { default as j } from "./BaseFloatingLabel.js";
|
|
22
|
+
import { default as y } from "./BaseIcon.js";
|
|
23
|
+
import { default as E } from "./BaseInput.js";
|
|
24
|
+
import { default as J } from "./BaseNavItem.js";
|
|
25
|
+
import { default as Q } from "./BasePagination.js";
|
|
26
|
+
import { default as X } from "./BasePaper.js";
|
|
27
|
+
import { default as Z } from "./BaseSlider.js";
|
|
28
|
+
import { default as ee } from "./BaseTextarea.js";
|
|
29
|
+
import { default as ae } from "./BaseToggle.js";
|
|
30
|
+
import { default as te } from "./BaseTooltip.js";
|
|
31
|
+
import { _ as fe } from "./chunks/BaseUploadFile.vue_vue_type_script_setup_true_lang.1Uo4HnFM.js";
|
|
32
|
+
import { _ as me } from "./chunks/BaseModal.vue_vue_type_style_index_0_lang.Cz2Kd5zD.js";
|
|
33
|
+
import { default as le } from "./BaseSnackbar.js";
|
|
34
|
+
import { _ as de } from "./chunks/DoughnutChart.vue_vue_type_script_setup_true_lang.C4QPaUsI.js";
|
|
35
|
+
import { _ as _e } from "./chunks/LineChart.vue_vue_type_script_setup_true_lang.D1HsyTJq.js";
|
|
36
|
+
import { _ as ie } from "./chunks/IntersectionObservable.vue_vue_type_script_setup_true_lang.BBMxY-re.js";
|
|
37
|
+
import { _ as be } from "./chunks/IntersectionObserver.vue_vue_type_script_setup_true_lang.CQHjzQc3.js";
|
|
38
|
+
import { _ as Ce } from "./chunks/SwiperCarousel.vue_vue_type_style_index_0_lang.DDYbH2A1.js";
|
|
39
|
+
import { default as Ie } from "./SwiperSlide.js";
|
|
40
|
+
import { useValidator as Te } from "./useValidator.js";
|
|
42
41
|
export {
|
|
43
|
-
|
|
42
|
+
T as AccessibleSelect,
|
|
44
43
|
a as BaseAccordion,
|
|
45
44
|
t as BaseAccordionBtn,
|
|
46
45
|
f as BaseAccordionContent,
|
|
47
46
|
m as BaseAccordionItem,
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
47
|
+
k as BaseAlert,
|
|
48
|
+
w as BaseAutocomplete,
|
|
49
|
+
L as BaseBadge,
|
|
50
|
+
G as BaseButton,
|
|
51
|
+
P as BaseCard,
|
|
52
|
+
M as BaseComplexToggle,
|
|
53
|
+
U as BaseDropDown,
|
|
54
|
+
j as BaseFloatingLabel,
|
|
55
|
+
y as BaseIcon,
|
|
56
|
+
E as BaseInput,
|
|
57
|
+
me as BaseModal,
|
|
58
|
+
J as BaseNavItem,
|
|
59
|
+
Q as BasePagination,
|
|
60
|
+
X as BasePaper,
|
|
61
|
+
Z as BaseSlider,
|
|
62
|
+
le as BaseSnackbar,
|
|
64
63
|
i as BaseTab,
|
|
65
64
|
b as BaseTabList,
|
|
66
|
-
|
|
67
|
-
ae as
|
|
68
|
-
te as
|
|
69
|
-
fe as
|
|
70
|
-
me as BaseUploadFile,
|
|
65
|
+
ee as BaseTextarea,
|
|
66
|
+
ae as BaseToggle,
|
|
67
|
+
te as BaseTooltip,
|
|
68
|
+
fe as BaseUploadFile,
|
|
71
69
|
d as CheckboxBtn,
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
70
|
+
_ as CheckboxGroup,
|
|
71
|
+
de as DoughnutChart,
|
|
72
|
+
ie as IntersectionObservable,
|
|
73
|
+
be as IntersectionObserver,
|
|
74
|
+
_e as LineChart,
|
|
75
|
+
C as RadioButton,
|
|
76
|
+
I as RadioGroup,
|
|
79
77
|
l as SelectItem,
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
78
|
+
Ce as SwiperCarousel,
|
|
79
|
+
Ie as SwiperSlide,
|
|
80
|
+
Te as useValidator
|
|
83
81
|
};
|
package/package.json
CHANGED
|
@@ -1,85 +0,0 @@
|
|
|
1
|
-
import { defineComponent as E, mergeModels as M, useModel as N, getCurrentInstance as S, ref as v, useSlots as z, computed as L, watch as j, openBlock as r, createElementBlock as l, Fragment as p, createElementVNode as T, toDisplayString as I, normalizeClass as $, renderList as g, createBlock as h, resolveDynamicComponent as C, createCommentVNode as F, withCtx as q } from "vue";
|
|
2
|
-
import { _ as G } from "./BaseTabPanel.vue_vue_type_script_setup_true_lang.DoZHWHt1.js";
|
|
3
|
-
const H = ["id"], J = ["aria-labelledby"], K = ["id", "aria-selected", "aria-controls", "tabindex", "onClick"], O = { key: 0 }, W = /* @__PURE__ */ E({
|
|
4
|
-
inheritAttrs: !1,
|
|
5
|
-
__name: "BaseTabView",
|
|
6
|
-
props: /* @__PURE__ */ M({
|
|
7
|
-
tabViewDescription: {},
|
|
8
|
-
header: { default: "" }
|
|
9
|
-
}, {
|
|
10
|
-
activeIdx: { default: 0 },
|
|
11
|
-
activeIdxModifiers: {}
|
|
12
|
-
}),
|
|
13
|
-
emits: ["update:activeIdx"],
|
|
14
|
-
setup(B) {
|
|
15
|
-
const c = N(B, "activeIdx"), m = S(), i = v(m ? m.uid : null), P = v(""), f = v(""), _ = z(), o = (e) => e.props ?? null, k = (e) => e.type.__name === "BaseTab", y = (e, a) => ({
|
|
16
|
-
renderFn: e,
|
|
17
|
-
tabId: u(a),
|
|
18
|
-
"active-tab-panel-idx": o(e)?.["active-tab-panel-idx"] ?? a,
|
|
19
|
-
"header-title": o(e)?.["header-title"] || "",
|
|
20
|
-
class: o(e)?.class || ""
|
|
21
|
-
}), s = L(() => _.default ? _.default().reduce((e, a) => (a.children && Array.isArray(a.children) ? a.children.forEach((t) => {
|
|
22
|
-
k(t) && e.push(y(t, e.length));
|
|
23
|
-
}) : k(a) && e.push(y(a, e.length)), e), []) : []), d = (e) => c.value === e, w = (e) => f.value === e, u = (e) => `base-tab-${e}-${i.value}`, b = (e) => `base-tab-panel-${e}-${i.value}`, A = (e) => s.value.find((a) => a["active-tab-panel-idx"] === e)?.tabId, V = (e) => {
|
|
24
|
-
P.value = u(e);
|
|
25
|
-
}, D = (e) => {
|
|
26
|
-
const a = s.value.at(e ?? -1), t = b(a?.["active-tab-panel-idx"] ?? -1);
|
|
27
|
-
t && (f.value = t);
|
|
28
|
-
}, x = (e) => {
|
|
29
|
-
V(e), c.value = e;
|
|
30
|
-
};
|
|
31
|
-
return j(
|
|
32
|
-
c,
|
|
33
|
-
(e) => {
|
|
34
|
-
D(e ?? -1);
|
|
35
|
-
},
|
|
36
|
-
{
|
|
37
|
-
immediate: !0
|
|
38
|
-
}
|
|
39
|
-
), (e, a) => (r(), l(p, null, [
|
|
40
|
-
T("span", {
|
|
41
|
-
id: `tablist-${i.value}`,
|
|
42
|
-
class: "uikit-sr-only"
|
|
43
|
-
}, I(e.tabViewDescription), 9, H),
|
|
44
|
-
T("div", {
|
|
45
|
-
role: "tablist",
|
|
46
|
-
"aria-labelledby": `tablist-${i.value}`,
|
|
47
|
-
class: $(e.$attrs.class)
|
|
48
|
-
}, [
|
|
49
|
-
(r(!0), l(p, null, g(s.value, (t, n) => (r(), l("button", {
|
|
50
|
-
key: n,
|
|
51
|
-
id: u(n),
|
|
52
|
-
type: "button",
|
|
53
|
-
role: "tab",
|
|
54
|
-
"aria-selected": d(n),
|
|
55
|
-
"aria-controls": `base-tab-panel-${n}-${i.value}`,
|
|
56
|
-
tabindex: d(n) ? void 0 : -1,
|
|
57
|
-
class: $([
|
|
58
|
-
"uikit-bg-transparent uikit-p-5px",
|
|
59
|
-
{
|
|
60
|
-
"uikit-border-b-2 uikit-border-solid uikit-border-w-primary uikit-font-semibold": d(n)
|
|
61
|
-
},
|
|
62
|
-
t.class
|
|
63
|
-
]),
|
|
64
|
-
onClick: (Q) => x(n)
|
|
65
|
-
}, [
|
|
66
|
-
t["header-title"] ? (r(), l("span", O, I(t["header-title"]), 1)) : t.renderFn.children && t.renderFn.children.header ? (r(), h(C(t.renderFn.children.header), { key: 1 })) : F("", !0)
|
|
67
|
-
], 10, K))), 128))
|
|
68
|
-
], 10, J),
|
|
69
|
-
(r(!0), l(p, null, g(s.value, (t, n) => (r(), h(G, {
|
|
70
|
-
key: n,
|
|
71
|
-
id: b(n),
|
|
72
|
-
"labelled-by": A(n) || "",
|
|
73
|
-
active: w(b(n))
|
|
74
|
-
}, {
|
|
75
|
-
default: q(() => [
|
|
76
|
-
t.renderFn.children && t.renderFn.children.default ? (r(), h(C(t.renderFn.children.default), { key: 0 })) : F("", !0)
|
|
77
|
-
]),
|
|
78
|
-
_: 2
|
|
79
|
-
}, 1032, ["id", "labelled-by", "active"]))), 128))
|
|
80
|
-
], 64));
|
|
81
|
-
}
|
|
82
|
-
});
|
|
83
|
-
export {
|
|
84
|
-
W as _
|
|
85
|
-
};
|