@bridge-ui/vue 0.0.9 → 0.0.10

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.
Files changed (141) hide show
  1. package/ai/skills/bridge-ui-components/SKILL.md +2 -1
  2. package/dist/Components/Accordion/Accordion.js +5 -0
  3. package/dist/Components/Accordion/Accordion.vue.d.ts +26 -0
  4. package/dist/Components/Accordion/Accordion.vue_vue_type_script_setup_true_lang.js +38 -0
  5. package/dist/Components/Accordion/accordion.types.d.ts +88 -0
  6. package/dist/Components/Accordion/accordionInjectionKey.d.ts +63 -0
  7. package/dist/Components/Accordion/accordionInjectionKey.js +4 -0
  8. package/dist/Components/Accordion/composables/useAccordion.d.ts +14 -0
  9. package/dist/Components/Accordion/composables/useAccordion.js +79 -0
  10. package/dist/Components/Accordion/index.d.ts +4 -0
  11. package/dist/Components/Accordion/index.js +4 -0
  12. package/dist/Components/AccordionItem/AccordionItem.js +5 -0
  13. package/dist/Components/AccordionItem/AccordionItem.vue.d.ts +11 -0
  14. package/dist/Components/AccordionItem/AccordionItem.vue_vue_type_script_setup_true_lang.js +25 -0
  15. package/dist/Components/AccordionItem/accordionItem.types.d.ts +105 -0
  16. package/dist/Components/AccordionItem/composables/useAccordionItem.d.ts +41 -0
  17. package/dist/Components/AccordionItem/composables/useAccordionItem.js +123 -0
  18. package/dist/Components/AccordionItem/index.d.ts +3 -0
  19. package/dist/Components/AccordionItem/index.js +3 -0
  20. package/dist/Components/Alert/Alert.vue_vue_type_script_setup_true_lang.js +11 -11
  21. package/dist/Components/Alert/composables/useAlert.js +9 -9
  22. package/dist/Components/Autocomplete/Autocomplete.vue_vue_type_script_setup_true_lang.js +69 -65
  23. package/dist/Components/Avatar/Avatar.vue_vue_type_script_setup_true_lang.js +4 -4
  24. package/dist/Components/Avatar/composables/useAvatar.d.ts +0 -1
  25. package/dist/Components/Avatar/composables/useAvatar.js +23 -24
  26. package/dist/Components/Badge/Badge.vue.d.ts +11 -1
  27. package/dist/Components/Badge/Badge.vue_vue_type_script_setup_true_lang.js +7 -8
  28. package/dist/Components/BaseField/BaseField.vue_vue_type_script_setup_true_lang.js +31 -27
  29. package/dist/Components/BaseField/BaseFieldLabel.vue.d.ts +11 -1
  30. package/dist/Components/BaseField/BaseFieldLabel.vue_vue_type_script_setup_true_lang.js +11 -10
  31. package/dist/Components/BaseField/baseField.types.d.ts +5 -0
  32. package/dist/Components/BaseField/baseField.types.js +11 -0
  33. package/dist/Components/BaseField/index.d.ts +1 -0
  34. package/dist/Components/BaseField/index.js +4 -3
  35. package/dist/Components/Breadcrumb/Breadcrumb.js +5 -0
  36. package/dist/Components/Breadcrumb/Breadcrumb.vue.d.ts +13 -0
  37. package/dist/Components/Breadcrumb/Breadcrumb.vue_vue_type_script_setup_true_lang.js +49 -0
  38. package/dist/Components/Breadcrumb/breadcrumb.types.d.ts +101 -0
  39. package/dist/Components/Breadcrumb/breadcrumbInjectionKey.d.ts +35 -0
  40. package/dist/Components/Breadcrumb/breadcrumbInjectionKey.js +4 -0
  41. package/dist/Components/Breadcrumb/composables/useBreadcrumb.d.ts +20 -0
  42. package/dist/Components/Breadcrumb/composables/useBreadcrumb.js +69 -0
  43. package/dist/Components/Breadcrumb/index.d.ts +4 -0
  44. package/dist/Components/Breadcrumb/index.js +4 -0
  45. package/dist/Components/BreadcrumbItem/BreadcrumbItem.js +5 -0
  46. package/dist/Components/BreadcrumbItem/BreadcrumbItem.vue.d.ts +14 -0
  47. package/dist/Components/BreadcrumbItem/BreadcrumbItem.vue_vue_type_script_setup_true_lang.js +47 -0
  48. package/dist/Components/BreadcrumbItem/breadcrumbItem.types.d.ts +140 -0
  49. package/dist/Components/BreadcrumbItem/composables/useBreadcrumbItem.d.ts +38 -0
  50. package/dist/Components/BreadcrumbItem/composables/useBreadcrumbItem.js +87 -0
  51. package/dist/Components/BreadcrumbItem/index.d.ts +3 -0
  52. package/dist/Components/BreadcrumbItem/index.js +3 -0
  53. package/dist/Components/Button/Button.vue_vue_type_script_setup_true_lang.js +17 -17
  54. package/dist/Components/Card/Card.vue_vue_type_script_setup_true_lang.js +10 -10
  55. package/dist/Components/Card/composables/useCard.d.ts +0 -1
  56. package/dist/Components/Card/composables/useCard.js +64 -66
  57. package/dist/Components/Checkbox/Checkbox.vue_vue_type_script_setup_true_lang.js +31 -26
  58. package/dist/Components/Chip/Chip.vue_vue_type_script_setup_true_lang.js +10 -10
  59. package/dist/Components/DateField/DateField.vue_vue_type_script_setup_true_lang.js +61 -56
  60. package/dist/Components/DateField/composables/useDateField.d.ts +14 -4
  61. package/dist/Components/DateField/dateField.types.d.ts +3 -3
  62. package/dist/Components/DateRangeField/DateRangeField.vue_vue_type_script_setup_true_lang.js +59 -54
  63. package/dist/Components/DateRangeField/composables/useDateRangeField.d.ts +14 -4
  64. package/dist/Components/DateRangeField/dateRangeField.types.d.ts +3 -3
  65. package/dist/Components/DateTimeField/DateTimeField.vue_vue_type_script_setup_true_lang.js +65 -60
  66. package/dist/Components/DateTimeField/composables/useDateTimeField.d.ts +14 -4
  67. package/dist/Components/DateTimeField/dateTimeField.types.d.ts +3 -3
  68. package/dist/Components/DateTimeRangeField/DateTimeRangeField.vue_vue_type_script_setup_true_lang.js +65 -60
  69. package/dist/Components/DateTimeRangeField/composables/useDateTimeRangeField.d.ts +14 -4
  70. package/dist/Components/DateTimeRangeField/dateTimeRangeField.types.d.ts +3 -3
  71. package/dist/Components/Drawer/Drawer.vue_vue_type_script_setup_true_lang.js +19 -20
  72. package/dist/Components/FormControl/FormControl.vue.d.ts +2 -4
  73. package/dist/Components/FormControl/FormControl.vue_vue_type_script_setup_true_lang.js +37 -23
  74. package/dist/Components/FormControl/FormControlLabel.vue.d.ts +11 -1
  75. package/dist/Components/FormControl/FormControlLabel.vue_vue_type_script_setup_true_lang.js +11 -10
  76. package/dist/Components/FormControl/formControl.types.d.ts +4 -0
  77. package/dist/Components/FormControl/formControl.types.js +9 -0
  78. package/dist/Components/FormControl/index.d.ts +1 -0
  79. package/dist/Components/FormControl/index.js +3 -2
  80. package/dist/Components/FormField/FilledFormField.vue.d.ts +14 -2
  81. package/dist/Components/FormField/FilledFormField.vue_vue_type_script_setup_true_lang.js +23 -18
  82. package/dist/Components/FormField/FormField.vue_vue_type_script_setup_true_lang.js +32 -27
  83. package/dist/Components/FormField/FormFieldLabel.vue.d.ts +11 -1
  84. package/dist/Components/FormField/FormFieldLabel.vue_vue_type_script_setup_true_lang.js +11 -10
  85. package/dist/Components/FormField/NotchedFormField.vue.d.ts +14 -2
  86. package/dist/Components/FormField/NotchedFormField.vue_vue_type_script_setup_true_lang.js +22 -17
  87. package/dist/Components/FormField/OutlinedFormField.vue.d.ts +14 -2
  88. package/dist/Components/FormField/OutlinedFormField.vue_vue_type_script_setup_true_lang.js +23 -18
  89. package/dist/Components/FormField/StackedFormField.vue.d.ts +14 -2
  90. package/dist/Components/FormField/StackedFormField.vue_vue_type_script_setup_true_lang.js +25 -20
  91. package/dist/Components/FormField/UnderlinedFormField.vue.d.ts +14 -2
  92. package/dist/Components/FormField/UnderlinedFormField.vue_vue_type_script_setup_true_lang.js +23 -18
  93. package/dist/Components/FormField/formField.types.d.ts +5 -0
  94. package/dist/Components/FormField/formField.types.js +11 -0
  95. package/dist/Components/FormField/index.d.ts +1 -0
  96. package/dist/Components/FormField/index.js +3 -2
  97. package/dist/Components/Label/Label.vue.d.ts +11 -1
  98. package/dist/Components/Label/Label.vue_vue_type_script_setup_true_lang.js +7 -8
  99. package/dist/Components/Link/Link.vue_vue_type_script_setup_true_lang.js +23 -23
  100. package/dist/Components/List/List.vue.d.ts +11 -1
  101. package/dist/Components/List/List.vue_vue_type_script_setup_true_lang.js +9 -10
  102. package/dist/Components/ListItem/ListItem.vue_vue_type_script_setup_true_lang.js +18 -18
  103. package/dist/Components/ListItem/composables/useListItem.d.ts +1 -3
  104. package/dist/Components/ListItem/composables/useListItem.js +47 -55
  105. package/dist/Components/ListSection/ListSection.vue_vue_type_script_setup_true_lang.js +10 -9
  106. package/dist/Components/ListSection/composables/useListSection.d.ts +1 -3
  107. package/dist/Components/ListSection/composables/useListSection.js +29 -31
  108. package/dist/Components/Listbox/Listbox.vue_vue_type_script_setup_true_lang.js +82 -82
  109. package/dist/Components/Menu/Menu.vue_vue_type_script_setup_true_lang.js +19 -19
  110. package/dist/Components/Modal/Modal.vue_vue_type_script_setup_true_lang.js +19 -20
  111. package/dist/Components/NumberField/NumberField.vue_vue_type_script_setup_true_lang.js +48 -43
  112. package/dist/Components/OtpField/OtpField.vue_vue_type_script_setup_true_lang.js +27 -22
  113. package/dist/Components/PasswordField/PasswordField.vue_vue_type_script_setup_true_lang.js +34 -29
  114. package/dist/Components/Radio/Radio.vue_vue_type_script_setup_true_lang.js +26 -21
  115. package/dist/Components/Select/Select.vue_vue_type_script_setup_true_lang.js +67 -63
  116. package/dist/Components/Slider/Slider.vue_vue_type_script_setup_true_lang.js +54 -49
  117. package/dist/Components/Switch/Switch.vue_vue_type_script_setup_true_lang.js +28 -23
  118. package/dist/Components/Tab/Tab.vue_vue_type_script_setup_true_lang.js +16 -16
  119. package/dist/Components/TabList/TabList.vue_vue_type_script_setup_true_lang.js +7 -8
  120. package/dist/Components/TabPanel/TabPanel.vue_vue_type_script_setup_true_lang.js +7 -8
  121. package/dist/Components/Tabs/Tabs.vue_vue_type_script_setup_true_lang.js +29 -26
  122. package/dist/Components/TextField/TextField.vue_vue_type_script_setup_true_lang.js +21 -16
  123. package/dist/Components/Textarea/Textarea.vue_vue_type_script_setup_true_lang.js +25 -20
  124. package/dist/Components/TimeField/TimeField.vue_vue_type_script_setup_true_lang.js +53 -48
  125. package/dist/Components/TimeField/composables/useTimeField.d.ts +14 -4
  126. package/dist/Components/TimeField/timeField.types.d.ts +3 -3
  127. package/dist/Components/TimeRangeField/TimeRangeField.vue_vue_type_script_setup_true_lang.js +53 -48
  128. package/dist/Components/TimeRangeField/composables/useTimeRangeField.d.ts +14 -4
  129. package/dist/Components/TimeRangeField/timeRangeField.types.d.ts +3 -3
  130. package/dist/Components/Tooltip/Tooltip.vue_vue_type_script_setup_true_lang.js +18 -18
  131. package/dist/Utils/index.d.ts +1 -1
  132. package/dist/Utils/index.js +2 -2
  133. package/dist/Utils/slotOrProp.d.ts +20 -11
  134. package/dist/Utils/slotOrProp.js +21 -17
  135. package/dist/Utils/useBreakpoint.d.ts +0 -4
  136. package/dist/index.d.ts +8 -0
  137. package/dist/index.js +133 -124
  138. package/docs/README.md +1 -0
  139. package/docs/components/Accordion.md +104 -0
  140. package/docs/components/Breadcrumb.md +74 -0
  141. package/package.json +2 -2
@@ -1,14 +1,14 @@
1
- import { hasNamedSlot as e, resolveNamedSlot as t } from "../../Utils/slotOrProp.js";
2
- import n from "../Icon/Icon.js";
3
- import { useLink as r } from "./composables/useLink.js";
4
- import { createBlock as i, createCommentVNode as a, createElementBlock as o, defineComponent as s, mergeProps as c, openBlock as l, resolveDynamicComponent as u, unref as d } from "vue";
1
+ import { hasNamedSlot as e } from "../../Utils/slotOrProp.js";
2
+ import t from "../Icon/Icon.js";
3
+ import { useLink as n } from "./composables/useLink.js";
4
+ import { createBlock as r, createCommentVNode as i, createElementBlock as a, defineComponent as o, mergeProps as s, openBlock as c, renderSlot as l, unref as u } from "vue";
5
5
  //#region src/Components/Link/Link.vue?vue&type=script&setup=true&lang.ts
6
- var f = [
6
+ var d = [
7
7
  "rel",
8
8
  "href",
9
9
  "target",
10
10
  "aria-disabled"
11
- ], p = /*@__PURE__*/ s({
11
+ ], f = /*@__PURE__*/ o({
12
12
  inheritAttrs: !1,
13
13
  __name: "Link",
14
14
  props: {
@@ -23,30 +23,30 @@ var f = [
23
23
  size: {},
24
24
  underline: {}
25
25
  },
26
- setup(s) {
27
- let { slots: p, merged: m, rootRel: h, rootBind: g, rootHref: _, rootTarget: v, leftIconBind: y, rightIconBind: b, rootAriaDisabled: x } = r(s, {
26
+ setup(o) {
27
+ let { slots: f, merged: p, rootRel: m, rootBind: h, rootHref: g, rootTarget: _, leftIconBind: v, rightIconBind: y, rootAriaDisabled: b } = n(o, {
28
28
  size: "md",
29
29
  color: "primary",
30
30
  underline: "hover"
31
31
  });
32
- return (r, s) => (l(), o("a", c({
33
- rel: d(h),
34
- href: d(_)
35
- }, d(g), {
36
- target: d(v),
37
- "aria-disabled": d(x)
32
+ return (n, o) => (c(), a("a", s({
33
+ rel: u(m),
34
+ href: u(g)
35
+ }, u(h), {
36
+ target: u(_),
37
+ "aria-disabled": u(b)
38
38
  }), [
39
- d(e)(d(p), "prepend") ? (l(), i(u(d(t)(d(p), "prepend")), { key: 0 })) : d(m).leftIcon ? (l(), i(d(n), c({
39
+ u(e)(u(f), "prepend") ? l(n.$slots, "prepend", {}, void 0, void 0, 0) : u(p).leftIcon ? (c(), r(u(t), s({
40
40
  key: 1,
41
- size: d(m).size
42
- }, d(y), { icon: d(m).leftIcon }), null, 16, ["size", "icon"])) : a("", !0),
43
- (l(), i(u(d(t)(d(p), "default")))),
44
- d(e)(d(p), "append") ? (l(), i(u(d(t)(d(p), "append")), { key: 2 })) : d(m).rightIcon ? (l(), i(d(n), c({
41
+ size: u(p).size
42
+ }, u(v), { icon: u(p).leftIcon }), null, 16, ["size", "icon"])) : i("", !0),
43
+ l(n.$slots, "default"),
44
+ u(e)(u(f), "append") ? l(n.$slots, "append", {}, void 0, void 0, 2) : u(p).rightIcon ? (c(), r(u(t), s({
45
45
  key: 3,
46
- size: d(m).size
47
- }, d(b), { icon: d(m).rightIcon }), null, 16, ["size", "icon"])) : a("", !0)
48
- ], 16, f));
46
+ size: u(p).size
47
+ }, u(y), { icon: u(p).rightIcon }), null, 16, ["size", "icon"])) : i("", !0)
48
+ ], 16, d));
49
49
  }
50
50
  });
51
51
  //#endregion
52
- export { p as default };
52
+ export { f as default };
@@ -1,8 +1,18 @@
1
1
  import { ListOwnProps } from './list.types';
2
- declare const __VLS_export: import('vue').DefineComponent<ListOwnProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<ListOwnProps> & Readonly<{}>, {
2
+ declare var __VLS_8: {};
3
+ type __VLS_Slots = {} & {
4
+ default?: (props: typeof __VLS_8) => any;
5
+ };
6
+ declare const __VLS_base: import('vue').DefineComponent<ListOwnProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<ListOwnProps> & Readonly<{}>, {
3
7
  as: "ol" | "ul" | "nav";
4
8
  dense: boolean;
5
9
  nested: boolean;
6
10
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
11
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
7
12
  declare const _default: typeof __VLS_export;
8
13
  export default _default;
14
+ type __VLS_WithSlots<T, S> = T & {
15
+ new (): {
16
+ $slots: S;
17
+ };
18
+ };
@@ -1,8 +1,7 @@
1
- import { resolveNamedSlot as e } from "../../Utils/slotOrProp.js";
2
- import { useList as t } from "./composables/useList.js";
3
- import { computed as n, createBlock as r, defineComponent as i, guardReactiveProps as a, normalizeProps as o, openBlock as s, resolveDynamicComponent as c, unref as l, useSlots as u, withCtx as d } from "vue";
1
+ import { useList as e } from "./composables/useList.js";
2
+ import { computed as t, createBlock as n, defineComponent as r, guardReactiveProps as i, normalizeProps as a, openBlock as o, renderSlot as s, resolveDynamicComponent as c, unref as l, withCtx as u } from "vue";
4
3
  //#region src/Components/List/List.vue?vue&type=script&setup=true&lang.ts
5
- var f = /*@__PURE__*/ i({
4
+ var d = /*@__PURE__*/ r({
6
5
  inheritAttrs: !1,
7
6
  __name: "List",
8
7
  props: {
@@ -18,13 +17,13 @@ var f = /*@__PURE__*/ i({
18
17
  default: !1
19
18
  }
20
19
  },
21
- setup(i) {
22
- let f = u(), { merged: p, rootBind: m } = t(i), h = n(() => p.value.as ?? "ul");
23
- return (t, n) => (s(), r(c(h.value), o(a(l(m))), {
24
- default: d(() => [(s(), r(c(l(e)(l(f), "default"))))]),
25
- _: 1
20
+ setup(r) {
21
+ let { merged: d, rootBind: f } = e(r), p = t(() => d.value.as ?? "ul");
22
+ return (e, t) => (o(), n(c(p.value), a(i(l(f))), {
23
+ default: u(() => [s(e.$slots, "default")]),
24
+ _: 3
26
25
  }, 16));
27
26
  }
28
27
  });
29
28
  //#endregion
30
- export { f as default };
29
+ export { d as default };
@@ -1,9 +1,9 @@
1
- import { hasNamedSlot as e, resolveNamedSlot as t, resolveSlotOrProp as n } from "../../Utils/slotOrProp.js";
2
- import r from "../Icon/Icon.js";
3
- import { resolveListItemPrimary as i, useListItem as a } from "./composables/useListItem.js";
4
- import { computed as o, createBlock as s, createCommentVNode as c, createElementBlock as l, createElementVNode as u, defineComponent as d, guardReactiveProps as f, mergeProps as p, normalizeClass as m, normalizeProps as h, openBlock as g, resolveDynamicComponent as _, unref as v, useSlots as y, withCtx as b } from "vue";
1
+ import { hasNamedSlot as e, isPropPresent as t } from "../../Utils/slotOrProp.js";
2
+ import n from "../Icon/Icon.js";
3
+ import { useListItem as r } from "./composables/useListItem.js";
4
+ import { Fragment as i, computed as a, createBlock as o, createCommentVNode as s, createElementBlock as c, createElementVNode as l, createTextVNode as u, defineComponent as d, guardReactiveProps as f, mergeProps as p, normalizeClass as m, normalizeProps as h, openBlock as g, renderSlot as _, resolveDynamicComponent as v, toDisplayString as y, unref as b, useSlots as x, withCtx as S } from "vue";
5
5
  //#region src/Components/ListItem/ListItem.vue?vue&type=script&setup=true&lang.ts
6
- var x = /*@__PURE__*/ d({
6
+ var C = /*@__PURE__*/ d({
7
7
  inheritAttrs: !1,
8
8
  __name: "ListItem",
9
9
  props: {
@@ -34,23 +34,23 @@ var x = /*@__PURE__*/ d({
34
34
  value: {}
35
35
  },
36
36
  setup(d) {
37
- let x = y(), S = d, { merged: C, hasEnd: w, endBind: T, rootBind: E, rowClass: D, hasStart: O, startBind: k, hasPrimary: A, contentBind: j, primaryBind: M, hasSecondary: N, secondaryBind: P, interactiveBind: F, selectedIconBind: I, resolvedSelectedIcon: L } = a(S, { role: "button" }, x), R = o(() => C.value.as ?? "li"), z = o(() => i(x, S.primary)), B = o(() => n(x, "secondary", S.secondary)), V = o(() => e(x, "end"));
38
- return (e, n) => (g(), s(_(R.value), h(f(v(E))), {
39
- default: b(() => [v(F) ? (g(), l("div", h(p({ key: 0 }, v(F))), [u("div", { class: m(v(D)) }, [
40
- v(O) ? (g(), l("div", h(p({ key: 0 }, v(k))), [(g(), s(_(v(t)(v(x), "start"))))], 16)) : c("", !0),
41
- u("div", h(f(v(j))), [v(A) ? (g(), l("span", h(p({ key: 0 }, v(M))), [(g(), s(_(z.value)))], 16)) : c("", !0), v(N) ? (g(), l("span", h(p({ key: 1 }, v(P))), [(g(), s(_(B.value)))], 16)) : c("", !0)], 16),
42
- v(w) ? (g(), l("div", h(p({ key: 1 }, v(T))), [V.value ? (g(), s(_(v(t)(v(x), "end")), { key: 0 })) : v(L) ? (g(), s(r, p({ key: 1 }, v(I), { icon: v(L) }), null, 16, ["icon"])) : c("", !0)], 16)) : c("", !0)
43
- ], 2)], 16)) : (g(), l("div", {
37
+ let C = x(), { merged: w, hasEnd: T, endBind: E, rootBind: D, rowClass: O, startBind: k, hasPrimary: A, contentBind: j, primaryBind: M, hasSecondary: N, secondaryBind: P, interactiveBind: F, selectedIconBind: I, resolvedSelectedIcon: L } = r(d, { role: "button" }, C), R = a(() => w.value.as ?? "li");
38
+ return (r, a) => (g(), o(v(R.value), h(f(b(D))), {
39
+ default: S(() => [b(F) ? (g(), c("div", h(p({ key: 0 }, b(F))), [l("div", { class: m(b(O)) }, [
40
+ b(e)(b(C), "start") ? (g(), c("div", h(p({ key: 0 }, b(k))), [_(r.$slots, "start")], 16)) : s("", !0),
41
+ l("div", h(f(b(j))), [b(A) ? (g(), c("span", h(p({ key: 0 }, b(M))), [b(e)(b(C), "primary") ? _(r.$slots, "primary", {}, void 0, void 0, 0) : b(e)(b(C), "default") ? _(r.$slots, "default", {}, void 0, void 0, 1) : b(t)(b(w).primary) ? (g(), c(i, { key: 2 }, [u(y(b(w).primary), 1)], 64)) : s("", !0)], 16)) : s("", !0), b(N) ? (g(), c("span", h(p({ key: 1 }, b(P))), [b(e)(b(C), "secondary") ? _(r.$slots, "secondary", {}, void 0, void 0, 0) : b(t)(b(w).secondary) ? (g(), c(i, { key: 1 }, [u(y(b(w).secondary), 1)], 64)) : s("", !0)], 16)) : s("", !0)], 16),
42
+ b(T) ? (g(), c("div", h(p({ key: 1 }, b(E))), [b(e)(b(C), "end") ? _(r.$slots, "end", {}, void 0, void 0, 0) : b(L) ? (g(), o(n, p({ key: 1 }, b(I), { icon: b(L) }), null, 16, ["icon"])) : s("", !0)], 16)) : s("", !0)
43
+ ], 2)], 16)) : (g(), c("div", {
44
44
  key: 1,
45
- class: m(v(D))
45
+ class: m(b(O))
46
46
  }, [
47
- v(O) ? (g(), l("div", h(p({ key: 0 }, v(k))), [(g(), s(_(v(t)(v(x), "start"))))], 16)) : c("", !0),
48
- u("div", h(f(v(j))), [v(A) ? (g(), l("span", h(p({ key: 0 }, v(M))), [(g(), s(_(z.value)))], 16)) : c("", !0), v(N) ? (g(), l("span", h(p({ key: 1 }, v(P))), [(g(), s(_(B.value)))], 16)) : c("", !0)], 16),
49
- v(w) ? (g(), l("div", h(p({ key: 1 }, v(T))), [V.value ? (g(), s(_(v(t)(v(x), "end")), { key: 0 })) : v(L) ? (g(), s(r, p({ key: 1 }, v(I), { icon: v(L) }), null, 16, ["icon"])) : c("", !0)], 16)) : c("", !0)
47
+ b(e)(b(C), "start") ? (g(), c("div", h(p({ key: 0 }, b(k))), [_(r.$slots, "start")], 16)) : s("", !0),
48
+ l("div", h(f(b(j))), [b(A) ? (g(), c("span", h(p({ key: 0 }, b(M))), [b(e)(b(C), "primary") ? _(r.$slots, "primary", {}, void 0, void 0, 0) : b(e)(b(C), "default") ? _(r.$slots, "default", {}, void 0, void 0, 1) : b(t)(b(w).primary) ? (g(), c(i, { key: 2 }, [u(y(b(w).primary), 1)], 64)) : s("", !0)], 16)) : s("", !0), b(N) ? (g(), c("span", h(p({ key: 1 }, b(P))), [b(e)(b(C), "secondary") ? _(r.$slots, "secondary", {}, void 0, void 0, 0) : b(t)(b(w).secondary) ? (g(), c(i, { key: 1 }, [u(y(b(w).secondary), 1)], 64)) : s("", !0)], 16)) : s("", !0)], 16),
49
+ b(T) ? (g(), c("div", h(p({ key: 1 }, b(E))), [b(e)(b(C), "end") ? _(r.$slots, "end", {}, void 0, void 0, 0) : b(L) ? (g(), o(n, p({ key: 1 }, b(I), { icon: b(L) }), null, 16, ["icon"])) : s("", !0)], 16)) : s("", !0)
50
50
  ], 2))]),
51
- _: 1
51
+ _: 3
52
52
  }, 16));
53
53
  }
54
54
  });
55
55
  //#endregion
56
- export { x as default };
56
+ export { C as default };
@@ -1,4 +1,4 @@
1
- import { useSlots, Slot } from 'vue';
1
+ import { useSlots } from 'vue';
2
2
  import { LibDefaultsShape, MergeLibDefaults } from '@bridge-ui/core';
3
3
  import { IconSource } from '../../../Adapters/Icon';
4
4
  import { ListItemOwnProps, ListItemProps } from '../listItem.types';
@@ -13,7 +13,6 @@ export declare function useListItem(props: ListItemOwnProps, libDefaults: ListIt
13
13
  id: string | undefined;
14
14
  }, "class", import('vue').HTMLAttributes | undefined, Omit<Omit<ListItemProps, "role" | "value" | "classes" | "customProps" | "primary" | "secondary" | "disabled" | "as" | "dense" | "divider" | "interactive" | "selected" | "selectedIcon">, never>>>;
15
15
  rowClass: import('vue').ComputedRef<string>;
16
- hasStart: import('vue').ComputedRef<boolean>;
17
16
  startBind: import('vue').ComputedRef<import('@bridge-ui/core').MergePartBind<object, "class", import('vue').HTMLAttributes | undefined, {}>>;
18
17
  hasPrimary: import('vue').ComputedRef<boolean>;
19
18
  contentBind: import('vue').ComputedRef<import('@bridge-ui/core').MergePartBind<object, "class", import('vue').HTMLAttributes | undefined, {}>>;
@@ -36,5 +35,4 @@ export declare function useListItem(props: ListItemOwnProps, libDefaults: ListIt
36
35
  }, "class", Partial<Omit<import('../../Icon').IconProps, "icon">> | undefined, {}>>;
37
36
  resolvedSelectedIcon: import('vue').ComputedRef<IconSource | null>;
38
37
  };
39
- export declare function resolveListItemPrimary(slots: ReturnType<typeof useSlots>, primary?: string): Slot | (() => null | string);
40
38
  export {};
@@ -1,13 +1,13 @@
1
- import { hasNamedSlot as e, isPropPresent as t, resolveNamedSlot as n } from "../../../Utils/slotOrProp.js";
2
- import { mergePartBind as r, useBridgeUIComponent as i, useBridgeUIMergedRegistryClasses as a } from "../../../Utils/index.js";
3
- import { getListboxOptionId as o } from "../../Listbox/composables/useListboxNavigation.js";
4
- import { LIST_INJECTION_KEY as s } from "../../List/listInjectionKey.js";
5
- import { LISTBOX_INJECTION_KEY as c } from "../../Listbox/listboxInjectionKey.js";
6
- import { computed as l, getCurrentInstance as u, inject as d, onBeforeUnmount as f, toValue as p, useAttrs as m, watch as h } from "vue";
7
- import { cn as g, splitComponentProps as _ } from "@bridge-ui/core";
8
- import { get as v, isNull as y, omit as b } from "es-toolkit/compat";
1
+ import { hasNamedSlot as e } from "../../../Utils/slotOrProp.js";
2
+ import { mergePartBind as t, useBridgeUIComponent as n, useBridgeUIMergedRegistryClasses as r } from "../../../Utils/index.js";
3
+ import { getListboxOptionId as i } from "../../Listbox/composables/useListboxNavigation.js";
4
+ import { LIST_INJECTION_KEY as a } from "../../List/listInjectionKey.js";
5
+ import { LISTBOX_INJECTION_KEY as o } from "../../Listbox/listboxInjectionKey.js";
6
+ import { computed as s, getCurrentInstance as c, inject as l, onBeforeUnmount as u, toValue as d, useAttrs as f, watch as p } from "vue";
7
+ import { cn as m, splitComponentProps as h } from "@bridge-ui/core";
8
+ import { get as g, isNull as _, omit as v } from "es-toolkit/compat";
9
9
  //#region src/Components/ListItem/composables/useListItem.ts
10
- var x = [
10
+ var y = [
11
11
  "as",
12
12
  "role",
13
13
  "dense",
@@ -22,44 +22,44 @@ var x = [
22
22
  "interactive",
23
23
  "selectedIcon"
24
24
  ];
25
- function S(t, n, S) {
26
- let C = m(), w = d(s, null), T = d(c, null), E = T != null, D = l(() => _({
25
+ function b(b, x, S) {
26
+ let C = f(), w = l(a, null), T = l(o, null), E = T != null, D = s(() => h({
27
27
  props: {
28
28
  ...C,
29
- ...t
29
+ ...b
30
30
  },
31
- bridgeKeys: x
32
- })), { merged: O, entry: k } = i({
33
- libDefaults: n,
31
+ bridgeKeys: y
32
+ })), { merged: O, entry: k } = n({
33
+ libDefaults: x,
34
34
  componentName: "ListItem",
35
35
  props: () => D.value.componentProps
36
- }), A = l(() => T ? p(T) : null), j = l(() => O.value.value == null || !E ? null : {
36
+ }), A = s(() => T ? d(T) : null), j = s(() => O.value.value == null || !E ? null : {
37
37
  value: O.value.value,
38
38
  description: O.value.secondary,
39
39
  disabled: !!O.value.disabled,
40
40
  label: O.value.primary ?? String(O.value.value)
41
41
  }), M;
42
- h(() => {
42
+ p(() => {
43
43
  let e = j.value;
44
44
  return e ? `${String(e.value)}:${e.label}:${e.disabled}:${e.description ?? ""}` : null;
45
45
  }, () => {
46
46
  M?.(), M = void 0;
47
47
  let e = j.value;
48
- !e || !T || (M = p(T).registerOption(e));
49
- }, { immediate: !0 }), f(() => {
48
+ !e || !T || (M = d(T).registerOption(e));
49
+ }, { immediate: !0 }), u(() => {
50
50
  M?.();
51
51
  });
52
- let N = l(() => j.value != null), P = l(() => !j.value || !A.value ? !1 : A.value.isSelected(j.value.value)), F = l(() => !j.value || !A.value ? -1 : A.value.getOptionIndex(j.value.value)), I = l(() => !A.value || F.value < 0 ? !1 : A.value.highlightedIndex === F.value), L = l(() => O.value.customProps), R = a({
52
+ let N = s(() => j.value != null), P = s(() => !j.value || !A.value ? !1 : A.value.isSelected(j.value.value)), F = s(() => !j.value || !A.value ? -1 : A.value.getOptionIndex(j.value.value)), I = s(() => !A.value || F.value < 0 ? !1 : A.value.highlightedIndex === F.value), L = s(() => O.value.customProps), R = r({
53
53
  entry: k,
54
54
  props: () => D.value.componentProps
55
- }), z = l(() => "dense" in (u()?.vnode.props ?? {}) ? t.dense === !0 : t.dense === !0 ? !0 : w ? p(w).dense : !1), B = l(() => e(S, "primary") || e(S, "default") || !!O.value.primary), V = l(() => e(S, "secondary") || !!O.value.secondary), H = l(() => e(S, "start")), U = l(() => N.value ? !P.value || !A.value?.showCheckmark ? null : "check" : !O.value.selected || y(O.value.selectedIcon) ? null : O.value.selectedIcon ?? "check"), W = l(() => e(S, "end") || U.value != null), G = l(() => b(D.value.inheritedAttrs, [])), K = l(() => r(L.value?.root, G.value, {
56
- class: g({
55
+ }), z = s(() => "dense" in (c()?.vnode.props ?? {}) ? b.dense === !0 : b.dense === !0 ? !0 : w ? d(w).dense : !1), B = s(() => e(S, "primary") || e(S, "default") || !!O.value.primary), V = s(() => e(S, "secondary") || !!O.value.secondary), H = s(() => N.value ? !P.value || !A.value?.showCheckmark ? null : "check" : !O.value.selected || _(O.value.selectedIcon) ? null : O.value.selectedIcon ?? "check"), U = s(() => e(S, "end") || H.value != null), W = s(() => v(D.value.inheritedAttrs, [])), G = s(() => t(L.value?.root, W.value, {
56
+ class: m({
57
57
  "list-none": !0,
58
58
  "border-b border-black/10 last:border-b-0 dark:border-white/10": O.value.divider,
59
- [v(R.value, "root") ?? ""]: !0
59
+ [g(R.value, "root") ?? ""]: !0
60
60
  }),
61
- id: N.value && A.value?.listboxId && F.value >= 0 ? o(A.value.listboxId, F.value) : void 0
62
- })), q = l(() => O.value.interactive || N.value ? r(L.value?.interactive, {}, {
61
+ id: N.value && A.value?.listboxId && F.value >= 0 ? i(A.value.listboxId, F.value) : void 0
62
+ })), K = s(() => O.value.interactive || N.value ? t(L.value?.interactive, {}, {
63
63
  "aria-disabled": O.value.disabled ? !0 : void 0,
64
64
  role: N.value ? "option" : O.value.role,
65
65
  tabindex: O.value.disabled || N.value ? -1 : 0,
@@ -71,7 +71,7 @@ function S(t, n, S) {
71
71
  onClick: N.value ? () => {
72
72
  j.value && A.value?.onSelect(j.value);
73
73
  } : void 0,
74
- class: g({
74
+ class: m({
75
75
  "flex w-full min-w-0 items-center gap-x-3 text-left text-dark-900 outline-hidden transition-colors dark:text-dark-100": !0,
76
76
  "cursor-pointer select-none": !O.value.disabled,
77
77
  "px-4": !0,
@@ -84,52 +84,44 @@ function S(t, n, S) {
84
84
  [A.value?.optionHighlightedClass ?? ""]: N.value && I.value && !P.value,
85
85
  [A.value?.mergedClasses.optionHighlighted ?? ""]: N.value && I.value && !P.value,
86
86
  "opacity-50 pointer-events-none": O.value.disabled,
87
- [v(R.value, "interactive") ?? ""]: !0,
87
+ [g(R.value, "interactive") ?? ""]: !0,
88
88
  [A.value?.sizeClasses?.option ?? ""]: !0
89
89
  })
90
- }) : null), J = l(() => g({
90
+ }) : null), q = s(() => m({
91
91
  "flex w-full min-w-0 gap-x-3": !0,
92
92
  "items-center text-dark-900 dark:text-dark-100": !O.value.interactive,
93
93
  "px-4": !O.value.interactive,
94
94
  "py-2": !O.value.interactive && !z.value,
95
95
  "py-1.5": !O.value.interactive && z.value
96
- })), Y = l(() => r(L.value?.start, {}, g({
96
+ })), J = s(() => t(L.value?.start, {}, m({
97
97
  "flex shrink-0 text-dark-600 dark:text-dark-300": !0,
98
- [v(R.value, "start") ?? ""]: !0
99
- }))), X = l(() => r(L.value?.content, {}, g({
98
+ [g(R.value, "start") ?? ""]: !0
99
+ }))), Y = s(() => t(L.value?.content, {}, m({
100
100
  "min-w-0 flex-1": !0,
101
- [v(R.value, "content") ?? ""]: !0
102
- }))), Z = l(() => r(L.value?.primary, {}, g("block truncate text-sm font-medium", A.value?.sizeClasses?.primary, v(R.value, "primary")))), Q = l(() => r(L.value?.secondary, {}, g("mt-0.5 block truncate text-xs text-dark-500 dark:text-dark-400", A.value?.sizeClasses?.secondary, v(R.value, "secondary"))));
101
+ [g(R.value, "content") ?? ""]: !0
102
+ }))), X = s(() => t(L.value?.primary, {}, m("block truncate text-sm font-medium", A.value?.sizeClasses?.primary, g(R.value, "primary")))), Z = s(() => t(L.value?.secondary, {}, m("mt-0.5 block truncate text-xs text-dark-500 dark:text-dark-400", A.value?.sizeClasses?.secondary, g(R.value, "secondary"))));
103
103
  return {
104
104
  merged: O,
105
- hasEnd: W,
106
- endBind: l(() => r(L.value?.end, {}, g({
105
+ hasEnd: U,
106
+ endBind: s(() => t(L.value?.end, {}, m({
107
107
  "ml-auto flex shrink-0 items-center": !0,
108
- [v(R.value, "end") ?? ""]: !0
108
+ [g(R.value, "end") ?? ""]: !0
109
109
  }))),
110
- rootBind: K,
111
- rowClass: J,
112
- hasStart: H,
113
- startBind: Y,
110
+ rootBind: G,
111
+ rowClass: q,
112
+ startBind: J,
114
113
  hasPrimary: B,
115
- contentBind: X,
116
- primaryBind: Z,
114
+ contentBind: Y,
115
+ primaryBind: X,
117
116
  hasSecondary: V,
118
- secondaryBind: Q,
119
- interactiveBind: q,
120
- selectedIconBind: l(() => r(L.value?.selectedIcon, {}, {
117
+ secondaryBind: Z,
118
+ interactiveBind: K,
119
+ selectedIconBind: s(() => t(L.value?.selectedIcon, {}, {
121
120
  size: "sm",
122
- class: g("shrink-0", A.value?.checkClass, v(R.value, "selectedIcon"))
121
+ class: m("shrink-0", A.value?.checkClass, g(R.value, "selectedIcon"))
123
122
  })),
124
- resolvedSelectedIcon: U
123
+ resolvedSelectedIcon: H
125
124
  };
126
125
  }
127
- function C(r, i) {
128
- if (e(r, "primary")) return n(r, "primary");
129
- if (e(r, "default")) return n(r, "default");
130
- if (!t(i)) return () => null;
131
- let a = String(i);
132
- return () => a;
133
- }
134
126
  //#endregion
135
- export { C as resolveListItemPrimary, S as useListItem };
127
+ export { b as useListItem };
@@ -1,7 +1,8 @@
1
- import { useListSection as e } from "./composables/useListSection.js";
2
- import { computed as t, createBlock as n, createElementBlock as r, createElementVNode as i, defineComponent as a, guardReactiveProps as o, mergeProps as s, normalizeProps as c, openBlock as l, resolveDynamicComponent as u, unref as d, useSlots as f, withCtx as p } from "vue";
1
+ import { hasNamedSlot as e, isPropPresent as t } from "../../Utils/slotOrProp.js";
2
+ import { useListSection as n } from "./composables/useListSection.js";
3
+ import { Fragment as r, computed as i, createBlock as a, createCommentVNode as o, createElementBlock as s, createElementVNode as c, createTextVNode as l, defineComponent as u, guardReactiveProps as d, mergeProps as f, normalizeProps as p, openBlock as m, renderSlot as h, resolveDynamicComponent as g, toDisplayString as _, unref as v, useSlots as y, withCtx as b } from "vue";
3
4
  //#region src/Components/ListSection/ListSection.vue?vue&type=script&setup=true&lang.ts
4
- var m = /*@__PURE__*/ a({
5
+ var x = /*@__PURE__*/ u({
5
6
  inheritAttrs: !1,
6
7
  __name: "ListSection",
7
8
  props: {
@@ -18,13 +19,13 @@ var m = /*@__PURE__*/ a({
18
19
  },
19
20
  title: {}
20
21
  },
21
- setup(a) {
22
- let m = f(), { label: h, merged: g, rootBind: _, titleBind: v } = e(a, m), y = t(() => g.value.as ?? "li");
23
- return (e, t) => y.value === "div" ? (l(), r("div", c(s({ key: 0 }, d(v))), [(l(), n(u(d(h))))], 16)) : (l(), n(u(y.value), c(s({ key: 1 }, d(_))), {
24
- default: p(() => [i("div", c(o(d(v))), [(l(), n(u(d(h))))], 16)]),
25
- _: 1
22
+ setup(u) {
23
+ let x = y(), { merged: S, rootBind: C, titleBind: w } = n(u), T = i(() => S.value.as ?? "li");
24
+ return (n, i) => T.value === "div" ? (m(), s("div", p(f({ key: 0 }, v(w))), [v(e)(v(x), "default") ? h(n.$slots, "default", {}, void 0, void 0, 0) : v(t)(v(S).title) ? (m(), s(r, { key: 1 }, [l(_(v(S).title), 1)], 64)) : o("", !0)], 16)) : (m(), a(g(T.value), p(f({ key: 1 }, v(C))), {
25
+ default: b(() => [c("div", p(d(v(w))), [v(e)(v(x), "default") ? h(n.$slots, "default", {}, void 0, void 0, 0) : v(t)(v(S).title) ? (m(), s(r, { key: 1 }, [l(_(v(S).title), 1)], 64)) : o("", !0)], 16)]),
26
+ _: 3
26
27
  }, 16));
27
28
  }
28
29
  });
29
30
  //#endregion
30
- export { m as default };
31
+ export { x as default };
@@ -1,7 +1,5 @@
1
- import { useSlots } from 'vue';
2
1
  import { ListSectionOwnProps, ListSectionProps } from '../listSection.types';
3
- export declare function useListSection(props: ListSectionOwnProps, slots: ReturnType<typeof useSlots>): {
4
- label: import('vue').ComputedRef<import('vue').Slot | (() => null | import('vue').VNodeChild)>;
2
+ export declare function useListSection(props: ListSectionOwnProps): {
5
3
  merged: import('vue').ComputedRef<ListSectionOwnProps>;
6
4
  rootBind: import('vue').ComputedRef<import('@bridge-ui/core').MergePartBind<object, "class", import('vue').HTMLAttributes | undefined, Omit<Omit<ListSectionProps, "classes" | "customProps" | "title" | "as" | "inset" | "sticky">, never>>>;
7
5
  titleBind: import('vue').ComputedRef<import('@bridge-ui/core').MergePartBind<{
@@ -1,11 +1,10 @@
1
- import { resolveSlotOrProp as e } from "../../../Utils/slotOrProp.js";
2
- import { mergePartBind as t, useBridgeUIComponent as n, useBridgeUIMergedRegistryClasses as r } from "../../../Utils/index.js";
3
- import { LIST_INJECTION_KEY as i } from "../../List/listInjectionKey.js";
4
- import { computed as a, inject as o, toValue as s, useAttrs as c } from "vue";
5
- import { cn as l, splitComponentProps as u } from "@bridge-ui/core";
6
- import { get as d, omit as f } from "es-toolkit/compat";
1
+ import { mergePartBind as e, useBridgeUIComponent as t, useBridgeUIMergedRegistryClasses as n } from "../../../Utils/index.js";
2
+ import { LIST_INJECTION_KEY as r } from "../../List/listInjectionKey.js";
3
+ import { computed as i, inject as a, toValue as o, useAttrs as s } from "vue";
4
+ import { cn as c, splitComponentProps as l } from "@bridge-ui/core";
5
+ import { get as u, omit as d } from "es-toolkit/compat";
7
6
  //#region src/Components/ListSection/composables/useListSection.ts
8
- var p = [
7
+ var f = [
9
8
  "as",
10
9
  "inset",
11
10
  "title",
@@ -13,40 +12,39 @@ var p = [
13
12
  "classes",
14
13
  "customProps"
15
14
  ];
16
- function m(m, h) {
17
- let g = c(), _ = o(i, null), v = a(() => u({
15
+ function p(p) {
16
+ let m = s(), h = a(r, null), g = i(() => l({
18
17
  props: {
19
- ...g,
20
- ...m
18
+ ...m,
19
+ ...p
21
20
  },
22
- bridgeKeys: p
23
- })), { merged: y, entry: b } = n({
21
+ bridgeKeys: f
22
+ })), { merged: _, entry: v } = t({
24
23
  componentName: "ListSection",
25
- props: () => v.value.componentProps
26
- }), x = a(() => y.value.customProps), S = r({
27
- entry: b,
28
- props: () => v.value.componentProps
29
- }), C = a(() => _ ? s(_).dense : !1), w = a(() => e(h, "default", y.value.title)), T = a(() => f(v.value.inheritedAttrs, [])), E = a(() => y.value.as === "div");
24
+ props: () => g.value.componentProps
25
+ }), y = i(() => _.value.customProps), b = n({
26
+ entry: v,
27
+ props: () => g.value.componentProps
28
+ }), x = i(() => h ? o(h).dense : !1), S = i(() => d(g.value.inheritedAttrs, [])), C = i(() => _.value.as === "div");
30
29
  return {
31
- label: w,
32
- merged: y,
33
- rootBind: a(() => t(x.value?.root, T.value, l({
30
+ merged: _,
31
+ rootBind: i(() => e(y.value?.root, S.value, c({
34
32
  "list-none": !0,
35
- "sticky top-0 z-10 bg-white dark:bg-dark-800": y.value.sticky && !E.value,
36
- [d(S.value, "root") ?? ""]: !0
33
+ "sticky top-0 z-10 bg-white dark:bg-dark-800": _.value.sticky && !C.value,
34
+ [u(b.value, "root") ?? ""]: !0
37
35
  }))),
38
- titleBind: a(() => t(x.value?.title, {}, {
36
+ titleBind: i(() => e(y.value?.title, {}, {
39
37
  role: "presentation",
40
- class: l({
38
+ class: c({
41
39
  "bg-white px-4 text-xs font-semibold tracking-wide text-dark-500 uppercase dark:bg-dark-800 dark:text-dark-300": !0,
42
- "sticky top-0 z-10": y.value.sticky && E.value,
43
- "py-2": !C.value,
44
- "py-1.5": C.value,
45
- "pl-14": y.value.inset,
46
- [d(S.value, "title") ?? ""]: !0
40
+ "sticky top-0 z-10": _.value.sticky && C.value,
41
+ "py-2": !x.value,
42
+ "py-1.5": x.value,
43
+ "pl-14": _.value.inset,
44
+ [u(b.value, "title") ?? ""]: !0
47
45
  })
48
46
  }))
49
47
  };
50
48
  }
51
49
  //#endregion
52
- export { m as useListSection };
50
+ export { p as useListSection };