vlite3 1.4.1 → 1.4.3

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 (56) hide show
  1. package/components/AppShell/AppShell.vue.d.ts +1 -0
  2. package/components/AppShell/AppShell.vue.js +33 -26
  3. package/components/AppShell/AppShellLayoutStorefront.vue.d.ts +54 -0
  4. package/components/AppShell/AppShellLayoutStorefront.vue.js +222 -0
  5. package/components/AppShell/AppShellLayoutStorefront.vue2.js +4 -0
  6. package/components/AsyncSelect/createAsyncSelect.js +3 -2
  7. package/components/CategoryManager/CategoryManager.vue2.js +3 -2
  8. package/components/CategoryMenu/CategoryMenu.vue.d.ts +22 -0
  9. package/components/CategoryMenu/CategoryMenu.vue.js +106 -0
  10. package/components/CategoryMenu/CategoryMenu.vue2.js +4 -0
  11. package/components/CategoryMenu/CategoryMenuVariant1.vue.d.ts +17 -0
  12. package/components/CategoryMenu/CategoryMenuVariant1.vue.js +146 -0
  13. package/components/CategoryMenu/CategoryMenuVariant1.vue2.js +4 -0
  14. package/components/CategoryMenu/CategoryMenuVariant2.vue.d.ts +18 -0
  15. package/components/CategoryMenu/CategoryMenuVariant2.vue.js +162 -0
  16. package/components/CategoryMenu/CategoryMenuVariant2.vue2.js +4 -0
  17. package/components/CategoryMenu/index.d.ts +2 -0
  18. package/components/CategoryMenu/types.d.ts +32 -0
  19. package/components/CategoryMenu/utils.d.ts +16 -0
  20. package/components/CategoryMenu/utils.js +45 -0
  21. package/components/ColorPicker/ColorPicker.vue.d.ts +7 -3
  22. package/components/ColorPicker/ColorPicker.vue.js +59 -45
  23. package/components/CommandPalette/CommandPaletteContent.vue2.js +1 -1
  24. package/components/CommandPalette/{CommandPaletteItem.vue2.js → CommandPaletteItem.vue.js} +1 -1
  25. package/components/DatePicker.vue.js +5 -4
  26. package/components/DateRangePicker.vue.js +3 -2
  27. package/components/Dropdown/Dropdown.vue.d.ts +4 -1
  28. package/components/Dropdown/Dropdown.vue.js +10 -8
  29. package/components/Dropdown/DropdownGroupedLayout.vue2.js +5 -2
  30. package/components/Dropdown/DropdownGroupedLayout.vue3.js +111 -0
  31. package/components/Dropdown/DropdownItem.vue.d.ts +2 -2
  32. package/components/Dropdown/DropdownItem.vue.js +66 -49
  33. package/components/Dropdown/DropdownMenu.vue.d.ts +2 -0
  34. package/components/Dropdown/DropdownMenu.vue.js +1 -1
  35. package/components/Dropdown/DropdownMenu.vue2.js +44 -42
  36. package/components/Dropdown/composables/useDropdownHydration.d.ts +4 -0
  37. package/components/Dropdown/composables/useDropdownNavigation.js +30 -18
  38. package/components/Form/FormField.vue.js +14 -11
  39. package/components/IconPicker.vue.js +3 -2
  40. package/components/ImportData/ImportStep2.vue.js +3 -2
  41. package/components/MultiSelect/composables/useMultiSelectHydration.d.ts +4 -0
  42. package/components/NavbarCommandPalette.vue.js +1 -1
  43. package/components/PermissionMatrix/PermissionTopBar.vue.js +3 -2
  44. package/components/Screen/ScreenFilter.vue.js +19 -18
  45. package/components/SidebarMenu/SidebarMenuItem.vue.js +3 -2
  46. package/components/Switch.vue.js +8 -8
  47. package/components/Tooltip.vue.js +1 -0
  48. package/components/Workbook/Sheet.vue.js +14 -13
  49. package/components/index.d.ts +1 -0
  50. package/index.d.ts +1 -0
  51. package/index.js +153 -151
  52. package/package.json +2 -2
  53. package/style.css +1 -1
  54. package/types/appshell.type.d.ts +2 -1
  55. package/types/styles.d.ts +2 -0
  56. package/components/Dropdown/DropdownGroupedLayout.vue.js +0 -75
@@ -1,12 +1,12 @@
1
1
  import { defineComponent as h, computed as b, openBlock as n, createElementBlock as s, normalizeClass as i, createElementVNode as o, toDisplayString as d, createCommentVNode as u, withModifiers as v } from "vue";
2
2
  import { $t as m } from "../utils/i18n.js";
3
- const w = { class: "flex flex-col gap-0.5 min-w-0" }, k = {
3
+ const w = { class: "flex flex-col gap-0.5 min-w-0" }, p = {
4
4
  key: 0,
5
5
  class: "text-sm font-medium text-foreground leading-snug select-none"
6
- }, p = {
6
+ }, y = {
7
7
  key: 1,
8
8
  class: "text-xs text-muted-foreground leading-snug select-none"
9
- }, x = ["id", "aria-checked", "aria-label", "disabled", "data-testid"], y = ["id", "aria-checked", "aria-label", "disabled", "data-testid"], z = /* @__PURE__ */ h({
9
+ }, k = ["id", "aria-checked", "aria-label", "disabled", "data-testid"], x = ["id", "aria-checked", "aria-label", "disabled", "data-testid"], z = /* @__PURE__ */ h({
10
10
  __name: "Switch",
11
11
  props: {
12
12
  modelValue: { type: Boolean, default: !1 },
@@ -36,8 +36,8 @@ const w = { class: "flex flex-col gap-0.5 min-w-0" }, k = {
36
36
  onClick: r
37
37
  }, [
38
38
  o("div", w, [
39
- t.value ? (n(), s("span", k, d(t.value), 1)) : u("", !0),
40
- c.value ? (n(), s("span", p, d(c.value), 1)) : u("", !0)
39
+ t.value ? (n(), s("span", p, d(t.value), 1)) : u("", !0),
40
+ c.value ? (n(), s("span", y, d(c.value), 1)) : u("", !0)
41
41
  ]),
42
42
  o("button", {
43
43
  id: e.id,
@@ -57,7 +57,7 @@ const w = { class: "flex flex-col gap-0.5 min-w-0" }, k = {
57
57
  e.modelValue ? "translate-x-5 rtl:translate-x-0" : "translate-x-0 rtl:-translate-x-5"
58
58
  ])
59
59
  }, null, 2)
60
- ], 10, x)
60
+ ], 10, k)
61
61
  ], 2)) : (n(), s("div", {
62
62
  key: 1,
63
63
  class: i(["inline-flex items-center gap-2", a.class])
@@ -76,11 +76,11 @@ const w = { class: "flex flex-col gap-0.5 min-w-0" }, k = {
76
76
  o("span", {
77
77
  "aria-hidden": "true",
78
78
  class: i([
79
- "pointer-events-none inline-block h-4.5 w-4.5 transform rounded-full bg-background shadow-lg ring-0 transition duration-200 ease-in-out",
79
+ "pointer-events-none inline-block h-4.5 w-4.5 transform rounded-full bg-primary-fg shadow-lg ring-0 transition duration-200 ease-in-out",
80
80
  e.modelValue ? "translate-x-5 rtl:translate-x-0" : "translate-x-0 rtl:-translate-x-5"
81
81
  ])
82
82
  }, null, 2)
83
- ], 10, y),
83
+ ], 10, x),
84
84
  t.value ? (n(), s("label", {
85
85
  key: 0,
86
86
  class: i([e.disabled ? "opacity-50" : "", "text-sm font-medium text-foreground cursor-pointer"]),
@@ -14,6 +14,7 @@ const y = {
14
14
  placement: { default: "top" },
15
15
  offset: {},
16
16
  trigger: {},
17
+ reference: {},
17
18
  arrow: { type: Boolean, default: !0 },
18
19
  triggerClass: { default: "" },
19
20
  className: { default: "" },
@@ -1,8 +1,9 @@
1
- import { defineComponent as I, ref as b, computed as v, openBlock as a, createElementBlock as d, normalizeClass as $, createElementVNode as u, withModifiers as r, createBlock as S, withCtx as x, createVNode as m, createCommentVNode as V, withDirectives as j, withKeys as g, vModelText as z, toDisplayString as K, unref as M, nextTick as N } from "vue";
1
+ import { defineComponent as I, ref as b, computed as v, openBlock as r, createElementBlock as d, normalizeClass as $, createElementVNode as u, withModifiers as a, createBlock as S, withCtx as x, createVNode as m, createCommentVNode as V, withDirectives as j, withKeys as g, vModelText as z, toDisplayString as K, unref as M, nextTick as N } from "vue";
2
2
  import y from "../Icon.vue.js";
3
3
  import O from "../Dropdown/Dropdown.vue.js";
4
4
  import { $t as l } from "../../utils/i18n.js";
5
5
  /* empty css */
6
+ /* empty css */
6
7
  /* empty css */
7
8
  import R from "../Button.vue.js";
8
9
  import A from "../IconPicker.vue.js";
@@ -15,7 +16,7 @@ const U = {
15
16
  }, F = { class: "flex-1 min-w-0 pr-1" }, G = ["onKeydown"], H = {
16
17
  key: 1,
17
18
  class: "block truncate text-sm font-medium leading-normal"
18
- }, _ = /* @__PURE__ */ I({
19
+ }, ee = /* @__PURE__ */ I({
19
20
  __name: "Sheet",
20
21
  props: {
21
22
  sheet: {},
@@ -86,17 +87,17 @@ const U = {
86
87
  e.isActive ? `bg-secondary text-foreground ring-1 ring-border ring-b-0 z-10 ${e.activeItemClass}` : `text-muted-foreground hover:bg-accent/50 ${e.inactiveItemClass}`,
87
88
  e.isEditing ? "cursor-text" : ""
88
89
  ].filter(Boolean).join(" "));
89
- return (n, t) => (a(), d("div", {
90
+ return (n, t) => (r(), d("div", {
90
91
  class: $(E.value),
91
92
  onClick: t[5] || (t[5] = (c) => o("select", i.sheet.id)),
92
93
  onDblclick: h
93
94
  }, [
94
95
  u("div", {
95
- onClick: t[1] || (t[1] = r(() => {
96
+ onClick: t[1] || (t[1] = a(() => {
96
97
  }, ["stop"])),
97
98
  class: "mr-2 flex items-center shrink-0"
98
99
  }, [
99
- (i.sheet.icon || i.isEditing) && i.allowIconChange ? (a(), S(A, {
100
+ (i.sheet.icon || i.isEditing) && i.allowIconChange ? (r(), S(A, {
100
101
  key: 0,
101
102
  value: i.sheet.icon || "lucide:file",
102
103
  position: "bottom-start",
@@ -111,7 +112,7 @@ const U = {
111
112
  ])
112
113
  ]),
113
114
  _: 1
114
- }, 8, ["value"])) : i.sheet.icon ? (a(), d("div", q, [
115
+ }, 8, ["value"])) : i.sheet.icon ? (r(), d("div", q, [
115
116
  m(y, {
116
117
  icon: i.sheet.icon,
117
118
  class: "w-4 h-4 opacity-70"
@@ -119,7 +120,7 @@ const U = {
119
120
  ])) : V("", !0)
120
121
  ]),
121
122
  u("div", F, [
122
- i.isEditing ? j((a(), d("input", {
123
+ i.isEditing ? j((r(), d("input", {
123
124
  key: 0,
124
125
  ref_key: "inputRef",
125
126
  ref: f,
@@ -128,18 +129,18 @@ const U = {
128
129
  class: "w-full bg-transparent border-none outline-none p-0 text-sm font-medium text-foreground placeholder-muted-foreground focus:ring-0",
129
130
  onBlur: k,
130
131
  onKeydown: [
131
- g(r(k, ["prevent"]), ["enter"]),
132
- g(r(D, ["prevent"]), ["esc"])
132
+ g(a(k, ["prevent"]), ["enter"]),
133
+ g(a(D, ["prevent"]), ["esc"])
133
134
  ],
134
- onClick: t[3] || (t[3] = r(() => {
135
+ onClick: t[3] || (t[3] = a(() => {
135
136
  }, ["stop"]))
136
137
  }, null, 40, G)), [
137
138
  [z, s.value]
138
- ]) : (a(), d("span", H, K(C.value), 1))
139
+ ]) : (r(), d("span", H, K(C.value), 1))
139
140
  ]),
140
141
  u("div", {
141
142
  class: "opacity-0 group-hover:opacity-100 transition-opacity ml-auto pl-1 -mr-2 flex items-center",
142
- onClick: t[4] || (t[4] = r(() => {
143
+ onClick: t[4] || (t[4] = a(() => {
143
144
  }, ["stop"]))
144
145
  }, [
145
146
  m(M(O), {
@@ -165,5 +166,5 @@ const U = {
165
166
  }
166
167
  });
167
168
  export {
168
- _ as default
169
+ ee as default
169
170
  };
@@ -6,6 +6,7 @@ export { default as Badge } from './Badge.vue';
6
6
  export { Barcode } from './Barcode';
7
7
  export { default as Beacon } from './Beacon.vue';
8
8
  export { Breadcrumb, BreadcrumbItem } from './Breadcrumb';
9
+ export { CategoryMenu } from './CategoryMenu';
9
10
  export { default as Button } from './Button.vue';
10
11
  export { default as BackButton } from './BackButton.vue';
11
12
  export { default as ButtonGroup } from './ButtonGroup.vue';
package/index.d.ts CHANGED
@@ -50,6 +50,7 @@ export * from './components/AttachmentsList';
50
50
  export * from './components/CustomFieldsDisplay';
51
51
  export * from './components/Invoice';
52
52
  export * from './components/CategoryManager';
53
+ export * from './components/CategoryMenu';
53
54
  export * from './components/ThumbnailSelector';
54
55
  export * from './components/TagInput';
55
56
  export * from './components/Calendar';
package/index.js CHANGED
@@ -1,6 +1,6 @@
1
1
  import { default as p } from "vue3-google-signin";
2
2
  import { deepMerge as d } from "./utils/object.js";
3
- import { camelCase as x, capitalize as i, copyToClipboard as n, debounce as c, delay as g, downloadFile as C, flattenArray as T, formatAmPm as S, formatCurrency as h, formatDate as I, formatNumber as P, formatSchedule as b, getDefaultDateRange as v, getNextMonth as F, getNextYear as D, getPrevMonth as y, getPrevYear as R, getToday as A, getTomorrow as B, getUniqueId as N, getUpcoming as k, getYear as E, getYesterday as M, isAppleDevice as w, isEmpty as L, isPureTimeString as O, isValidTimeRange as G, parseDateTime as _, randomNumber as K, removeExtraProperties as Y, slugify as U, throttle as z, toISO as V, toLocalISO as H, truncate as Q } from "./utils/functions.js";
3
+ import { camelCase as x, capitalize as i, copyToClipboard as n, debounce as c, delay as g, downloadFile as C, flattenArray as T, formatAmPm as S, formatCurrency as h, formatDate as I, formatNumber as P, formatSchedule as b, getDefaultDateRange as v, getNextMonth as F, getNextYear as y, getPrevMonth as D, getPrevYear as R, getToday as A, getTomorrow as B, getUniqueId as N, getUpcoming as k, getYear as E, getYesterday as M, isAppleDevice as w, isEmpty as L, isPureTimeString as O, isValidTimeRange as G, parseDateTime as _, randomNumber as K, removeExtraProperties as Y, slugify as U, throttle as z, toISO as V, toLocalISO as H, truncate as Q } from "./utils/functions.js";
4
4
  import { lazySearch as X, resetSearchIndex as j, search as q } from "./utils/search.util.js";
5
5
  import { env as J } from "./utils/env.js";
6
6
  import { $t as ee } from "./utils/i18n.js";
@@ -17,7 +17,7 @@ import { default as he } from "./components/Tabes/Tabes.vue.js";
17
17
  import { default as Pe } from "./components/Stats/Stats.vue.js";
18
18
  /* empty css */
19
19
  import { default as ve } from "./components/Kanban/Kanban.vue.js";
20
- import { default as De } from "./components/Kanban/KanbanBoard.vue.js";
20
+ import { default as ye } from "./components/Kanban/KanbanBoard.vue.js";
21
21
  import { useKanbanBoard as Re } from "./components/Kanban/useKanbanBoard.js";
22
22
  import { default as Be } from "./components/Navbar/Navbar.vue.js";
23
23
  import { default as ke } from "./components/Navbar/NavbarItem.vue.js";
@@ -45,7 +45,7 @@ import { default as So } from "./components/Breadcrumb/Breadcrumb.vue.js";
45
45
  import { default as Io } from "./components/Breadcrumb/BreadcrumbItem.vue.js";
46
46
  import { default as bo } from "./components/FileTree/FileTree.vue.js";
47
47
  import { default as Fo } from "./components/FileTree/FileTreeNode.vue.js";
48
- import { useTreeSelection as yo } from "./components/FileTree/useTreeSelection.js";
48
+ import { useTreeSelection as Do } from "./components/FileTree/useTreeSelection.js";
49
49
  import { default as Ao } from "./components/RichTextEditor/RichTextEditor.vue.js";
50
50
  /* empty css */
51
51
  import { default as No } from "./components/RichTextEditor/RichTextReader.vue.js";
@@ -72,7 +72,7 @@ import { default as Tr } from "./components/DataTable/DataTableRow.vue.js";
72
72
  import { SCREEN_CONTEXT_KEY as hr } from "./components/DataTable/types.js";
73
73
  import { default as Pr } from "./components/Splitter/Splitter.vue.js";
74
74
  import { default as vr } from "./components/Footer/Footer.vue.js";
75
- import { initializeTheme as Dr, useTheme as yr } from "./composables/useTheme.js";
75
+ import { initializeTheme as yr, useTheme as Dr } from "./composables/useTheme.js";
76
76
  import { default as Ar } from "./components/FilePicker/FilePicker.vue.js";
77
77
  import { default as Nr } from "./components/Pagination/Pagination.vue.js";
78
78
  import { default as Er } from "./components/ExportData/ExportData.vue.js";
@@ -97,132 +97,134 @@ import { default as Tt } from "./components/Timeline/Timeline.vue.js";
97
97
  import { default as ht } from "./components/Timeline/TimelineItem.vue.js";
98
98
  import { default as Pt } from "./components/Timeline/TimelineIndicator.vue.js";
99
99
  import { default as vt } from "./components/FilePreview/FilePreview.vue.js";
100
- import { default as Dt } from "./components/AttachmentsList/AttachmentsList.vue.js";
100
+ import { default as yt } from "./components/AttachmentsList/AttachmentsList.vue.js";
101
101
  import { getFileTypeIcon as Rt } from "./components/AttachmentsList/fileTypeIcon.js";
102
102
  import { default as Bt } from "./components/CustomFieldsDisplay/CustomFieldsDisplay.vue.js";
103
103
  import { default as kt } from "./components/Invoice/Invoice.vue.js";
104
104
  import { default as Mt } from "./components/Invoice/InvoiceTotals.vue.js";
105
105
  import { default as Lt } from "./components/CategoryManager/CategoryManager.vue.js";
106
- import { default as Gt } from "./components/ThumbnailSelector/ThumbnailSelector.vue.js";
107
- import { default as Kt } from "./components/TagInput/TagInput.vue.js";
108
- import { default as Ut } from "./components/Calendar/Calendar.vue.js";
109
- import { default as Vt } from "./components/Calendar/CalendarEventItem.vue.js";
110
- import { default as Qt } from "./components/Skeleton/Skeleton.vue.js";
111
- import { normalizeBone as Xt } from "./components/Skeleton/types.js";
112
- import { snapshotBones as qt } from "./components/Skeleton/extract.js";
113
- import { configureSkeleton as Jt, getGlobalConfig as Zt, registerBones as ea } from "./components/Skeleton/shared.js";
114
- import { default as ra } from "./components/Chart/LineChart.vue.js";
115
- import { default as aa } from "./components/Chart/BarChart.vue.js";
116
- import { default as ma } from "./components/Chart/PieChart.vue.js";
117
- import { default as pa } from "./components/Chart/CircleChart.vue.js";
118
- import { default as da } from "./components/Chart/GaugeChart.vue.js";
119
- import { default as xa } from "./components/Chart/SpeedometerChart.vue.js";
120
- import { default as na } from "./components/Chart/TimelineChart.vue.js";
121
- import { default as ga } from "./components/Chart/SegmentBarChart.vue.js";
122
- import { default as Ta } from "./components/Chart/StatCardChart.vue.js";
123
- import { default as ha } from "./components/Chart/WaffleChart.vue.js";
124
- import { default as Pa } from "./components/Chart/GanttChart.vue.js";
125
- import { default as va } from "./components/AppShell/AppShell.vue.js";
126
- import { default as Da } from "./components/Rating/Rating.vue.js";
127
- import { default as Ra } from "./components/Rating/ReviewSummary.vue.js";
128
- import { createAsyncSelect as Ba } from "./components/AsyncSelect/createAsyncSelect.js";
129
- import { default as ka } from "./components/ImageComparison/ImageComparison.vue.js";
130
- import { default as Ma } from "./components/Icon.vue.js";
131
- import { default as La } from "./components/Logo.vue.js";
132
- import { default as Ga } from "./components/Alert.vue.js";
133
- import { default as Ka } from "./components/Badge.vue.js";
134
- import { default as Ua } from "./components/Input.vue.js";
106
+ import { default as Gt } from "./components/CategoryMenu/CategoryMenu.vue.js";
107
+ import { default as Kt } from "./components/ThumbnailSelector/ThumbnailSelector.vue.js";
108
+ import { default as Ut } from "./components/TagInput/TagInput.vue.js";
109
+ import { default as Vt } from "./components/Calendar/Calendar.vue.js";
110
+ import { default as Qt } from "./components/Calendar/CalendarEventItem.vue.js";
111
+ import { default as Xt } from "./components/Skeleton/Skeleton.vue.js";
112
+ import { normalizeBone as qt } from "./components/Skeleton/types.js";
113
+ import { snapshotBones as Jt } from "./components/Skeleton/extract.js";
114
+ import { configureSkeleton as ea, getGlobalConfig as oa, registerBones as ra } from "./components/Skeleton/shared.js";
115
+ import { default as aa } from "./components/Chart/LineChart.vue.js";
116
+ import { default as ma } from "./components/Chart/BarChart.vue.js";
117
+ import { default as pa } from "./components/Chart/PieChart.vue.js";
118
+ import { default as da } from "./components/Chart/CircleChart.vue.js";
119
+ import { default as xa } from "./components/Chart/GaugeChart.vue.js";
120
+ import { default as na } from "./components/Chart/SpeedometerChart.vue.js";
121
+ import { default as ga } from "./components/Chart/TimelineChart.vue.js";
122
+ import { default as Ta } from "./components/Chart/SegmentBarChart.vue.js";
123
+ import { default as ha } from "./components/Chart/StatCardChart.vue.js";
124
+ import { default as Pa } from "./components/Chart/WaffleChart.vue.js";
125
+ import { default as va } from "./components/Chart/GanttChart.vue.js";
126
+ import { default as ya } from "./components/AppShell/AppShell.vue.js";
127
+ import { default as Ra } from "./components/Rating/Rating.vue.js";
128
+ import { default as Ba } from "./components/Rating/ReviewSummary.vue.js";
129
+ import { createAsyncSelect as ka } from "./components/AsyncSelect/createAsyncSelect.js";
130
+ import { default as Ma } from "./components/ImageComparison/ImageComparison.vue.js";
131
+ import { default as La } from "./components/Icon.vue.js";
132
+ import { default as Ga } from "./components/Logo.vue.js";
133
+ import { default as Ka } from "./components/Alert.vue.js";
134
+ import { default as Ua } from "./components/Badge.vue.js";
135
+ import { default as Va } from "./components/Input.vue.js";
135
136
  /* empty css */
136
- import { default as Va } from "./components/Label.vue.js";
137
- import { default as Qa } from "./components/Modal.vue.js";
138
- import { default as Xa } from "./components/Avatar.vue.js";
139
- import { default as qa } from "./components/Persona.vue.js";
140
- import { default as Ja } from "./components/Button.vue.js";
141
- import { default as ef } from "./components/BackButton.vue.js";
142
- import { default as rf } from "./components/Clipboard.vue.js";
143
- import { default as af } from "./components/Slider.vue.js";
144
- import { default as mf } from "./components/Switch.vue.js";
145
- import { default as pf } from "./components/Tooltip.vue.js";
146
- import { default as df } from "./components/CheckBox.vue.js";
147
- import { default as xf } from "./components/Textarea.vue.js";
148
- import { default as cf } from "./components/Radio.vue.js";
149
- import { default as Cf } from "./components/RadioGroup.vue.js";
150
- import { default as Sf } from "./components/FadeOverlay/FadeOverlay.vue.js";
151
- import { default as If } from "./components/SidePanel.vue.js";
152
- import { default as bf } from "./components/DatePicker.vue.js";
153
- import { default as Ff } from "./components/IconPicker.vue.js";
154
- import { default as yf } from "./components/ButtonGroup.vue.js";
155
- import { default as Af } from "./components/NumberInput.vue.js";
156
- import { default as Nf } from "./components/ThemeToggle.vue.js";
157
- import { default as Ef } from "./components/GoogleLogin.vue.js";
158
- import { default as wf } from "./components/ColorPicker/ColorPicker.vue.js";
159
- import { default as Of } from "./components/ConfirmationModal.vue.js";
160
- import { default as _f } from "./components/ToastNotification.vue.js";
161
- import { default as Yf } from "./components/CommandPalette/CommandPaletteContent.vue.js";
162
- import { default as zf } from "./components/NavbarCommandPalette.vue.js";
163
- import { default as Hf } from "./components/DateRangePicker.vue.js";
164
- import { createVLite as Wf } from "./core/index.js";
165
- import { default as jf } from "./components/StatusChip/StatusChip.vue.js";
166
- import { STATUS_MAP as $f, normalizeStatus as Jf, resolveStatus as Zf } from "./components/StatusChip/status-map.js";
167
- import { default as om } from "./components/Price/Price.vue.js";
168
- import { default as tm } from "./components/DateTime/DateTime.vue.js";
169
- import { default as fm } from "./components/Clock/Clock.vue.js";
170
- import { default as lm } from "./components/Chat/ChatInterface.vue.js";
171
- import { VLITE_CONFIG_KEY as sm, configState as dm, updateConfig as um, useVLiteConfig as xm } from "./core/config.js";
172
- import { getStatusColorClass as nm } from "./utils/status.js";
137
+ import { default as Qa } from "./components/Label.vue.js";
138
+ import { default as Xa } from "./components/Modal.vue.js";
139
+ import { default as qa } from "./components/Avatar.vue.js";
140
+ import { default as Ja } from "./components/Persona.vue.js";
141
+ import { default as ef } from "./components/Button.vue.js";
142
+ import { default as rf } from "./components/BackButton.vue.js";
143
+ import { default as af } from "./components/Clipboard.vue.js";
144
+ import { default as mf } from "./components/Slider.vue.js";
145
+ import { default as pf } from "./components/Switch.vue.js";
146
+ import { default as df } from "./components/Tooltip.vue.js";
147
+ import { default as xf } from "./components/CheckBox.vue.js";
148
+ import { default as cf } from "./components/Textarea.vue.js";
149
+ import { default as Cf } from "./components/Radio.vue.js";
150
+ import { default as Sf } from "./components/RadioGroup.vue.js";
151
+ import { default as If } from "./components/FadeOverlay/FadeOverlay.vue.js";
152
+ import { default as bf } from "./components/SidePanel.vue.js";
153
+ import { default as Ff } from "./components/DatePicker.vue.js";
154
+ import { default as Df } from "./components/IconPicker.vue.js";
155
+ import { default as Af } from "./components/ButtonGroup.vue.js";
156
+ import { default as Nf } from "./components/NumberInput.vue.js";
157
+ import { default as Ef } from "./components/ThemeToggle.vue.js";
158
+ import { default as wf } from "./components/GoogleLogin.vue.js";
159
+ import { default as Of } from "./components/ColorPicker/ColorPicker.vue.js";
160
+ import { default as _f } from "./components/ConfirmationModal.vue.js";
161
+ import { default as Yf } from "./components/ToastNotification.vue.js";
162
+ import { default as zf } from "./components/CommandPalette/CommandPaletteContent.vue.js";
163
+ import { default as Hf } from "./components/NavbarCommandPalette.vue.js";
164
+ import { default as Wf } from "./components/DateRangePicker.vue.js";
165
+ import { createVLite as jf } from "./core/index.js";
166
+ import { default as $f } from "./components/StatusChip/StatusChip.vue.js";
167
+ import { STATUS_MAP as Zf, normalizeStatus as em, resolveStatus as om } from "./components/StatusChip/status-map.js";
168
+ import { default as tm } from "./components/Price/Price.vue.js";
169
+ import { default as fm } from "./components/DateTime/DateTime.vue.js";
170
+ import { default as lm } from "./components/Clock/Clock.vue.js";
171
+ import { default as sm } from "./components/Chat/ChatInterface.vue.js";
172
+ import { VLITE_CONFIG_KEY as um, configState as xm, updateConfig as im, useVLiteConfig as nm } from "./core/config.js";
173
+ import { getStatusColorClass as gm } from "./utils/status.js";
173
174
  export {
174
175
  ee as $t,
175
176
  ar as Accordion,
176
177
  dr as AccordionContent,
177
178
  mr as AccordionItem,
178
179
  pr as AccordionTrigger,
179
- Ga as Alert,
180
- va as AppShell,
181
- Dt as AttachmentsList,
182
- Xa as Avatar,
180
+ Ka as Alert,
181
+ ya as AppShell,
182
+ yt as AttachmentsList,
183
+ qa as Avatar,
183
184
  pt as AvatarGroup,
184
185
  mt as AvatarUploader,
185
- ef as BackButton,
186
- Ka as Badge,
187
- aa as BarChart,
186
+ rf as BackButton,
187
+ Ua as Badge,
188
+ ma as BarChart,
188
189
  eo as Barcode,
189
190
  So as Breadcrumb,
190
191
  Io as BreadcrumbItem,
191
- Ja as Button,
192
- yf as ButtonGroup,
193
- Ut as Calendar,
194
- Vt as CalendarEventItem,
192
+ ef as Button,
193
+ Af as ButtonGroup,
194
+ Vt as Calendar,
195
+ Qt as CalendarEventItem,
195
196
  ao as Carousel,
196
197
  Lt as CategoryManager,
197
- lm as ChatInterface,
198
- df as CheckBox,
198
+ Gt as CategoryMenu,
199
+ sm as ChatInterface,
200
+ xf as CheckBox,
199
201
  ae as Chip,
200
202
  xr as ChoiceBox,
201
- pa as CircleChart,
202
- rf as Clipboard,
203
- fm as Clock,
204
- wf as ColorPicker,
205
- Yf as CommandPaletteContent,
203
+ da as CircleChart,
204
+ af as Clipboard,
205
+ lm as Clock,
206
+ Of as ColorPicker,
207
+ zf as CommandPaletteContent,
206
208
  rr as CommentEditor,
207
209
  Jo as CommentItem,
208
210
  er as CommentThread,
209
- Of as ConfirmationModal,
211
+ _f as ConfirmationModal,
210
212
  xe as CustomFields,
211
213
  Bt as CustomFieldsDisplay,
212
214
  Uo as DataList,
213
215
  nr as DataTable,
214
216
  gr as DataTableHeader,
215
217
  Tr as DataTableRow,
216
- bf as DatePicker,
217
- Hf as DateRangePicker,
218
- tm as DateTime,
218
+ Ff as DatePicker,
219
+ Wf as DateRangePicker,
220
+ fm as DateTime,
219
221
  mo as Dropdown,
220
222
  io as DropdownItem,
221
223
  po as DropdownMenu,
222
224
  uo as DropdownTrigger,
223
225
  qo as Empty,
224
226
  Er as ExportData,
225
- Sf as FadeOverlay,
227
+ If as FadeOverlay,
226
228
  Ar as FilePicker,
227
229
  vt as FilePreview,
228
230
  bo as FileTree,
@@ -232,95 +234,95 @@ export {
232
234
  pe as FormField,
233
235
  de as FormFields,
234
236
  ne as FormSkeleton,
235
- Pa as GanttChart,
236
- da as GaugeChart,
237
- Ef as GoogleLogin,
237
+ va as GanttChart,
238
+ xa as GaugeChart,
239
+ wf as GoogleLogin,
238
240
  p as GoogleSignInPlugin,
239
241
  Qe as Heatmap,
240
- Ma as Icon,
241
- Ff as IconPicker,
242
- ka as ImageComparison,
242
+ La as Icon,
243
+ Df as IconPicker,
244
+ Ma as ImageComparison,
243
245
  wr as ImportData,
244
- Ua as Input,
246
+ Va as Input,
245
247
  kt as Invoice,
246
248
  Mt as InvoiceTotals,
247
249
  ve as Kanban,
248
- De as KanbanBoard,
249
- Va as Label,
250
- ra as LineChart,
250
+ ye as KanbanBoard,
251
+ Qa as Label,
252
+ aa as LineChart,
251
253
  Vo as List,
252
254
  Qo as ListFieldRow,
253
- La as Logo,
255
+ Ga as Logo,
254
256
  qe as MASONRY_BREAKPOINTS,
255
257
  Xe as Masonry,
256
- Qa as Modal,
258
+ Xa as Modal,
257
259
  Or as MultiSelect,
258
260
  Be as Navbar,
259
- zf as NavbarCommandPalette,
261
+ Hf as NavbarCommandPalette,
260
262
  Me as NavbarGroup,
261
263
  ke as NavbarItem,
262
264
  Le as NavbarTabs,
263
- Af as NumberInput,
265
+ Nf as NumberInput,
264
266
  Lo as OTPInput,
265
267
  Nr as Pagination,
266
268
  Zr as PermissionEditor,
267
269
  $r as PermissionMatrix,
268
- qa as Persona,
269
- ma as PieChart,
270
- om as Price,
270
+ Ja as Persona,
271
+ pa as PieChart,
272
+ tm as Price,
271
273
  Yr as PricingPlan,
272
274
  zr as PricingPlanItem,
273
275
  jr as ProgressBar,
274
276
  Ge as QRCode,
275
277
  Eo as RICH_TEXT_TOOL_GROUPS,
276
- cf as Radio,
277
- Cf as RadioGroup,
278
- Da as Rating,
279
- Ra as ReviewSummary,
278
+ Cf as Radio,
279
+ Sf as RadioGroup,
280
+ Ra as Rating,
281
+ Ba as ReviewSummary,
280
282
  Ao as RichTextEditor,
281
283
  No as RichTextReader,
282
284
  hr as SCREEN_CONTEXT_KEY,
283
- $f as STATUS_MAP,
285
+ Zf as STATUS_MAP,
284
286
  Ke as Screen,
285
287
  Ue as ScreenFilter,
286
288
  Ve as ScreenQuickFilters,
287
- ga as SegmentBarChart,
289
+ Ta as SegmentBarChart,
288
290
  Ko as Sheet,
289
- If as SidePanel,
291
+ bf as SidePanel,
290
292
  Hr as SidebarMenu,
291
293
  Wr as SidebarMenuItem,
292
- Qt as Skeleton,
293
- af as Slider,
294
- xa as SpeedometerChart,
294
+ Xt as Skeleton,
295
+ mf as Slider,
296
+ na as SpeedometerChart,
295
297
  Je as Spinner,
296
298
  Pr as Splitter,
297
- Ta as StatCardChart,
299
+ ha as StatCardChart,
298
300
  Pe as Stats,
299
- jf as StatusChip,
300
- mf as Switch,
301
+ $f as StatusChip,
302
+ pf as Switch,
301
303
  he as Tabes,
302
- Kt as TagInput,
303
- xf as Textarea,
304
- Nf as ThemeToggle,
305
- Gt as ThumbnailSelector,
304
+ Ut as TagInput,
305
+ cf as Textarea,
306
+ Ef as ThemeToggle,
307
+ Kt as ThumbnailSelector,
306
308
  Tt as Timeline,
307
- na as TimelineChart,
309
+ ga as TimelineChart,
308
310
  Pt as TimelineIndicator,
309
311
  ht as TimelineItem,
310
- _f as ToastNotification,
311
- pf as Tooltip,
312
- sm as VLITE_CONFIG_KEY,
313
- ha as WaffleChart,
312
+ Yf as ToastNotification,
313
+ df as Tooltip,
314
+ um as VLITE_CONFIG_KEY,
315
+ Pa as WaffleChart,
314
316
  Go as Workbook,
315
317
  ro as barcodesConstants,
316
318
  x as camelCase,
317
319
  i as capitalize,
318
- dm as configState,
320
+ xm as configState,
319
321
  dt as configure,
320
- Jt as configureSkeleton,
322
+ ea as configureSkeleton,
321
323
  n as copyToClipboard,
322
- Ba as createAsyncSelect,
323
- Wf as createVLite,
324
+ ka as createAsyncSelect,
325
+ jf as createVLite,
324
326
  c as debounce,
325
327
  d as deepMerge,
326
328
  g as delay,
@@ -335,47 +337,47 @@ export {
335
337
  re as getComponentConfig,
336
338
  v as getDefaultDateRange,
337
339
  Rt as getFileTypeIcon,
338
- Zt as getGlobalConfig,
340
+ oa as getGlobalConfig,
339
341
  F as getNextMonth,
340
- D as getNextYear,
342
+ y as getNextYear,
341
343
  Xo as getObjectValue,
342
- y as getPrevMonth,
344
+ D as getPrevMonth,
343
345
  R as getPrevYear,
344
- nm as getStatusColorClass,
346
+ gm as getStatusColorClass,
345
347
  A as getToday,
346
348
  B as getTomorrow,
347
349
  N as getUniqueId,
348
350
  k as getUpcoming,
349
351
  E as getYear,
350
352
  M as getYesterday,
351
- Dr as initializeTheme,
353
+ yr as initializeTheme,
352
354
  w as isAppleDevice,
353
355
  L as isEmpty,
354
356
  O as isPureTimeString,
355
357
  G as isValidTimeRange,
356
358
  X as lazySearch,
357
- Xt as normalizeBone,
358
- Jf as normalizeStatus,
359
+ qt as normalizeBone,
360
+ em as normalizeStatus,
359
361
  _ as parseDateTime,
360
362
  ut as pauseTimers,
361
363
  K as randomNumber,
362
- ea as registerBones,
364
+ ra as registerBones,
363
365
  Y as removeExtraProperties,
364
366
  xt as removeToast,
365
367
  j as resetSearchIndex,
366
368
  Mo as resolveRichTextTools,
367
- Zf as resolveStatus,
369
+ om as resolveStatus,
368
370
  it as resumeTimers,
369
371
  q as search,
370
372
  nt as showToast,
371
373
  U as slugify,
372
- qt as snapshotBones,
374
+ Jt as snapshotBones,
373
375
  z as throttle,
374
376
  V as toISO,
375
377
  H as toLocalISO,
376
378
  ct as toast,
377
379
  Q as truncate,
378
- um as updateConfig,
380
+ im as updateConfig,
379
381
  ot as useAdvancedKeyStroke,
380
382
  Co as useDropdownIds,
381
383
  co as useDropdownSelection,
@@ -385,8 +387,8 @@ export {
385
387
  rt as useKeyStroke,
386
388
  _r as useMultiSelectHydration,
387
389
  gt as useNotifications,
388
- yr as useTheme,
389
- yo as useTreeSelection,
390
- xm as useVLiteConfig,
390
+ Dr as useTheme,
391
+ Do as useTreeSelection,
392
+ nm as useVLiteConfig,
391
393
  at as vScrollReveal
392
394
  };