vlite3 1.1.11 → 1.2.2

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 (52) hide show
  1. package/components/AppShell/AppShell.vue.js +76 -0
  2. package/components/AppShell/AppShell.vue2.js +4 -0
  3. package/components/AppShell/AppShellLayoutClassic.vue.js +279 -0
  4. package/components/AppShell/AppShellLayoutClassic.vue2.js +4 -0
  5. package/components/AppShell/AppShellLayoutDashboard.vue.js +171 -0
  6. package/components/AppShell/AppShellLayoutDashboard.vue2.js +4 -0
  7. package/components/AppShell/AppShellLayoutDock.vue.js +165 -0
  8. package/components/AppShell/AppShellLayoutDock.vue2.js +4 -0
  9. package/components/AppShell/AppShellLayoutHeaderShell.vue.js +173 -0
  10. package/components/AppShell/AppShellLayoutHeaderShell.vue2.js +4 -0
  11. package/components/AppShell/AppShellLayoutSidebarFirst.vue.js +166 -0
  12. package/components/AppShell/AppShellLayoutSidebarFirst.vue2.js +4 -0
  13. package/components/AppShell/useAppShell.js +134 -0
  14. package/components/CommandPalette/CommandPaletteContent.vue2.js +1 -1
  15. package/components/CommandPalette/{CommandPaletteItem.vue2.js → CommandPaletteItem.vue.js} +1 -1
  16. package/components/DataTable/DataTable.vue.d.ts +3 -3
  17. package/components/DataTable/DataTableRow.vue.d.ts +1 -1
  18. package/components/Dropdown/Dropdown.vue.js +11 -11
  19. package/components/Form/CustomFields.vue.js +2 -2
  20. package/components/Form/CustomFields.vue2.js +15 -2
  21. package/components/Invoice/InvoiceVariant1.vue.js +225 -176
  22. package/components/Invoice/InvoiceVariant2.vue.js +174 -125
  23. package/components/Invoice/InvoiceVariant3.vue.js +186 -157
  24. package/components/Invoice/InvoiceVariant4.vue.js +200 -156
  25. package/components/Invoice/types.d.ts +10 -1
  26. package/components/List/ListFieldRow.vue.js +16 -16
  27. package/components/List/utils.d.ts +2 -2
  28. package/components/List/utils.js +6 -9
  29. package/components/NavbarCommandPalette.vue.js +2 -2
  30. package/components/Price/Price.vue.d.ts +2 -0
  31. package/components/Price/Price.vue.js +15 -12
  32. package/components/Screen/Screen.vue.d.ts +36 -10
  33. package/components/Screen/Screen.vue.js +398 -304
  34. package/components/Screen/components/ScreenToolbar.vue.d.ts +62 -0
  35. package/components/Screen/components/ScreenToolbar.vue.js +116 -0
  36. package/components/Screen/components/ScreenToolbar.vue2.js +4 -0
  37. package/components/Screen/types.d.ts +9 -0
  38. package/components/Stats/StatItem.vue.js +88 -87
  39. package/components/Stats/Stats.vue.js +20 -20
  40. package/components/Stats/types.d.ts +3 -1
  41. package/composables/useBreadcrumb.js +27 -0
  42. package/core/config.d.ts +10 -0
  43. package/core/config.js +11 -9
  44. package/index.d.ts +1 -0
  45. package/index.js +215 -213
  46. package/package.json +1 -1
  47. package/style.css +1 -1
  48. package/types/appshell.type.d.ts +1 -1
  49. package/types/config.type.d.ts +2 -0
  50. package/types/list.type.d.ts +4 -0
  51. package/utils/functions.d.ts +9 -10
  52. package/utils/functions.js +78 -63
package/core/config.d.ts CHANGED
@@ -32,6 +32,8 @@ export declare const configState: {
32
32
  };
33
33
  price?: {
34
34
  currency?: string;
35
+ numberFormat?: "standard" | "compact";
36
+ compactThreshold?: number;
35
37
  };
36
38
  datetime?: {
37
39
  format?: string;
@@ -87,6 +89,7 @@ export declare const configState: {
87
89
  due?: string;
88
90
  from?: string;
89
91
  billedTo?: string;
92
+ shipTo?: string;
90
93
  status?: string;
91
94
  item?: string;
92
95
  price?: string;
@@ -97,6 +100,8 @@ export declare const configState: {
97
100
  notes?: string;
98
101
  sku?: string;
99
102
  taxId?: string;
103
+ paymentMethod?: string;
104
+ shippingMethod?: string;
100
105
  };
101
106
  };
102
107
  footer?: {
@@ -142,6 +147,8 @@ export declare function useVLiteConfig(): {
142
147
  };
143
148
  price?: {
144
149
  currency?: string;
150
+ numberFormat?: "standard" | "compact";
151
+ compactThreshold?: number;
145
152
  };
146
153
  datetime?: {
147
154
  format?: string;
@@ -197,6 +204,7 @@ export declare function useVLiteConfig(): {
197
204
  due?: string;
198
205
  from?: string;
199
206
  billedTo?: string;
207
+ shipTo?: string;
200
208
  status?: string;
201
209
  item?: string;
202
210
  price?: string;
@@ -207,6 +215,8 @@ export declare function useVLiteConfig(): {
207
215
  notes?: string;
208
216
  sku?: string;
209
217
  taxId?: string;
218
+ paymentMethod?: string;
219
+ shippingMethod?: string;
210
220
  };
211
221
  };
212
222
  footer?: {
package/core/config.js CHANGED
@@ -1,11 +1,13 @@
1
- import { reactive as n, inject as i } from "vue";
2
- import { deepMerge as c } from "../utils/object.js";
3
- const r = /* @__PURE__ */ Symbol("vlite-config"), s = {
1
+ import { reactive as n, inject as c } from "vue";
2
+ import { deepMerge as r } from "../utils/object.js";
3
+ const i = /* @__PURE__ */ Symbol("vlite-config"), s = {
4
4
  services: {},
5
5
  components: {
6
6
  form: {},
7
7
  price: {
8
- currency: "USD"
8
+ currency: "USD",
9
+ numberFormat: "standard",
10
+ compactThreshold: 1e3
9
11
  },
10
12
  datetime: {
11
13
  format: "MM/DD/YYYY"
@@ -16,16 +18,16 @@ const r = /* @__PURE__ */ Symbol("vlite-config"), s = {
16
18
  }
17
19
  }
18
20
  }, e = n({ ...s });
19
- function a(t) {
20
- const o = c(e, t);
21
+ function f(t) {
22
+ const o = r(e, t);
21
23
  Object.assign(e, o);
22
24
  }
23
25
  function u() {
24
- return i(r, e);
26
+ return c(i, e);
25
27
  }
26
28
  export {
27
- r as VLITE_CONFIG_KEY,
29
+ i as VLITE_CONFIG_KEY,
28
30
  e as configState,
29
- a as updateConfig,
31
+ f as updateConfig,
30
32
  u as useVLiteConfig
31
33
  };
package/index.d.ts CHANGED
@@ -55,6 +55,7 @@ export * from './components/TagInput';
55
55
  export * from './components/Calendar';
56
56
  export * from './components/Skeleton';
57
57
  export * from './components/Chart';
58
+ export * from './components/AppShell';
58
59
  export { default as Icon } from './components/Icon.vue';
59
60
  export { default as Logo } from './components/Logo.vue';
60
61
  export { default as Alert } from './components/Alert.vue';
package/index.js CHANGED
@@ -1,60 +1,60 @@
1
1
  import { default as l } from "vue3-google-signin";
2
2
  import { deepMerge as s } from "./utils/object.js";
3
- import { camelCase as u, capitalize as x, copyToClipboard as i, debounce as n, delay as c, downloadFile as g, flattenArray as C, formatAmPm as T, formatCurrency as S, formatDate as h, formatSchedule as I, getDefaultDateRange as b, getNextMonth as P, getNextYear as v, getPrevMonth as D, getPrevYear as F, getToday as B, getTomorrow as y, getUniqueId as N, getUpcoming as A, getYear as k, getYesterday as E, isAppleDevice as M, isEmpty as w, isPureTimeString as R, isValidTimeRange as L, parseDateTime as G, randomNumber as K, removeExtraProperties as O, slugify as Y, throttle as _, toISO as z, toLocalISO as U, truncate as V } from "./utils/functions.js";
4
- import { lazySearch as Q, resetSearchIndex as W, search as j } from "./utils/search.util.js";
5
- import { env as X } from "./utils/env.js";
6
- import { $t as J } from "./utils/i18n.js";
7
- import { getComponentConfig as ee } from "./utils/configUtils.js";
8
- import { default as re } from "./components/Chip/Chip.vue.js";
9
- import { default as ae } from "./components/Form/Form.vue.js";
10
- import { default as me } from "./components/Form/FormField.vue.js";
11
- import { default as pe } from "./components/Form/FormFields.vue.js";
12
- import { default as de } from "./components/Form/CustomFields.vue.js";
13
- import { default as xe } from "./components/Form/FormSkeleton.vue.js";
14
- import { useForm as ne } from "./components/Form/composables/useForm.js";
15
- import { useFileUpload as ge } from "./components/Form/composables/useFileUpload.js";
16
- import { default as Te } from "./components/Tabes/Tabes.vue.js";
17
- import { default as he } from "./components/Stats/Stats.vue.js";
18
- import { default as be } from "./components/Kanban/Kanban.vue.js";
19
- import { default as ve } from "./components/Kanban/KanbanBoard.vue.js";
20
- import { useKanbanBoard as Fe } from "./components/Kanban/useKanbanBoard.js";
21
- import { default as ye } from "./components/Navbar/Navbar.vue.js";
22
- import { default as Ae } from "./components/Navbar/NavbarItem.vue.js";
23
- import { default as Ee } from "./components/Navbar/NavbarGroup.vue.js";
24
- import { default as we } from "./components/Navbar/NavbarTabs.vue.js";
3
+ import { camelCase as u, capitalize as x, copyToClipboard as i, debounce as n, delay as c, downloadFile as g, flattenArray as C, formatAmPm as T, formatCurrency as S, formatDate as h, formatNumber as I, formatSchedule as b, getDefaultDateRange as P, getNextMonth as v, getNextYear as D, getPrevMonth as F, getPrevYear as B, getToday as y, getTomorrow as A, getUniqueId as N, getUpcoming as k, getYear as E, getYesterday as M, isAppleDevice as w, isEmpty as R, isPureTimeString as L, isValidTimeRange as G, parseDateTime as K, randomNumber as O, removeExtraProperties as Y, slugify as _, throttle as z, toISO as U, toLocalISO as V, truncate as H } from "./utils/functions.js";
4
+ import { lazySearch as W, resetSearchIndex as j, search as q } from "./utils/search.util.js";
5
+ import { env as $ } from "./utils/env.js";
6
+ import { $t as Z } from "./utils/i18n.js";
7
+ import { getComponentConfig as oe } from "./utils/configUtils.js";
8
+ import { default as te } from "./components/Chip/Chip.vue.js";
9
+ import { default as fe } from "./components/Form/Form.vue.js";
10
+ import { default as le } from "./components/Form/FormField.vue.js";
11
+ import { default as se } from "./components/Form/FormFields.vue.js";
12
+ import { default as ue } from "./components/Form/CustomFields.vue.js";
13
+ import { default as ie } from "./components/Form/FormSkeleton.vue.js";
14
+ import { useForm as ce } from "./components/Form/composables/useForm.js";
15
+ import { useFileUpload as Ce } from "./components/Form/composables/useFileUpload.js";
16
+ import { default as Se } from "./components/Tabes/Tabes.vue.js";
17
+ import { default as Ie } from "./components/Stats/Stats.vue.js";
18
+ import { default as Pe } from "./components/Kanban/Kanban.vue.js";
19
+ import { default as De } from "./components/Kanban/KanbanBoard.vue.js";
20
+ import { useKanbanBoard as Be } from "./components/Kanban/useKanbanBoard.js";
21
+ import { default as Ae } from "./components/Navbar/Navbar.vue.js";
22
+ import { default as ke } from "./components/Navbar/NavbarItem.vue.js";
23
+ import { default as Me } from "./components/Navbar/NavbarGroup.vue.js";
24
+ import { default as Re } from "./components/Navbar/NavbarTabs.vue.js";
25
25
  /* empty css */
26
- import { default as Le } from "./components/QRCode/QRCode.vue.js";
27
- import { default as Ke } from "./components/Screen/Screen.vue.js";
28
- import { default as Ye } from "./components/Screen/ScreenFilter.vue.js";
29
- import { default as ze } from "./components/Screen/components/ScreenQuickFilters.vue.js";
30
- import { default as Ve } from "./components/Heatmap/Heatmap.vue.js";
31
- import { default as Qe } from "./components/Masonry/Masonry.vue.js";
32
- import { MASONRY_BREAKPOINTS as je } from "./components/Masonry/types.js";
33
- import { default as Xe } from "./components/Spinner/Spinner.vue.js";
34
- import { default as Je } from "./components/Barcode/Barcode.vue.js";
35
- import { barcodesConstants as eo } from "./components/Barcode/types.js";
36
- import { default as ro } from "./components/Carousel/Carousel.vue.js";
37
- import { default as ao } from "./components/Dropdown/Dropdown.vue.js";
38
- import { default as mo } from "./components/Dropdown/DropdownMenu.vue.js";
39
- import { default as po } from "./components/Dropdown/DropdownTrigger.vue.js";
40
- import { default as uo } from "./components/Dropdown/DropdownItem.vue.js";
41
- import { useDropdownSelection as io } from "./components/Dropdown/composables/useDropdownSelection.js";
42
- import { useDropdownIds as co } from "./components/Dropdown/composables/useDropdownIds.js";
43
- import { default as Co } from "./components/Breadcrumb/Breadcrumb.vue.js";
44
- import { default as So } from "./components/Breadcrumb/BreadcrumbItem.vue.js";
45
- import { default as Io } from "./components/FileTree/FileTree.vue.js";
46
- import { default as Po } from "./components/FileTree/FileTreeNode.vue.js";
47
- import { useTreeSelection as Do } from "./components/FileTree/useTreeSelection.js";
48
- import { default as Bo } from "./components/RichTextEditor/RichTextEditor.vue.js";
26
+ import { default as Ge } from "./components/QRCode/QRCode.vue.js";
27
+ import { default as Oe } from "./components/Screen/Screen.vue.js";
28
+ import { default as _e } from "./components/Screen/ScreenFilter.vue.js";
29
+ import { default as Ue } from "./components/Screen/components/ScreenQuickFilters.vue.js";
30
+ import { default as He } from "./components/Heatmap/Heatmap.vue.js";
31
+ import { default as We } from "./components/Masonry/Masonry.vue.js";
32
+ import { MASONRY_BREAKPOINTS as qe } from "./components/Masonry/types.js";
33
+ import { default as $e } from "./components/Spinner/Spinner.vue.js";
34
+ import { default as Ze } from "./components/Barcode/Barcode.vue.js";
35
+ import { barcodesConstants as oo } from "./components/Barcode/types.js";
36
+ import { default as to } from "./components/Carousel/Carousel.vue.js";
37
+ import { default as fo } from "./components/Dropdown/Dropdown.vue.js";
38
+ import { default as lo } from "./components/Dropdown/DropdownMenu.vue.js";
39
+ import { default as so } from "./components/Dropdown/DropdownTrigger.vue.js";
40
+ import { default as xo } from "./components/Dropdown/DropdownItem.vue.js";
41
+ import { useDropdownSelection as no } from "./components/Dropdown/composables/useDropdownSelection.js";
42
+ import { useDropdownIds as go } from "./components/Dropdown/composables/useDropdownIds.js";
43
+ import { default as To } from "./components/Breadcrumb/Breadcrumb.vue.js";
44
+ import { default as ho } from "./components/Breadcrumb/BreadcrumbItem.vue.js";
45
+ import { default as bo } from "./components/FileTree/FileTree.vue.js";
46
+ import { default as vo } from "./components/FileTree/FileTreeNode.vue.js";
47
+ import { useTreeSelection as Fo } from "./components/FileTree/useTreeSelection.js";
48
+ import { default as yo } from "./components/RichTextEditor/RichTextEditor.vue.js";
49
49
  /* empty css */
50
50
  import { default as No } from "./components/RichTextEditor/RichTextReader.vue.js";
51
- import { default as ko } from "./components/OTPInput/OTPInput.vue.js";
52
- import { default as Mo } from "./components/Workbook/Workbook.vue.js";
53
- import { default as Ro } from "./components/Workbook/Sheet.vue.js";
54
- import { default as Go } from "./components/DataList/DataList.vue.js";
55
- import { default as Oo } from "./components/List/List.vue.js";
56
- import { default as _o } from "./components/List/ListFieldRow.vue.js";
57
- import { formatNumber as Uo, getObjectValue as Vo } from "./components/List/utils.js";
51
+ import { default as Eo } from "./components/OTPInput/OTPInput.vue.js";
52
+ import { default as wo } from "./components/Workbook/Workbook.vue.js";
53
+ import { default as Lo } from "./components/Workbook/Sheet.vue.js";
54
+ import { default as Ko } from "./components/DataList/DataList.vue.js";
55
+ import { default as Yo } from "./components/List/List.vue.js";
56
+ import { default as zo } from "./components/List/ListFieldRow.vue.js";
57
+ import { getObjectValue as Vo } from "./components/List/utils.js";
58
58
  import { default as Qo } from "./components/Empty/Empty.vue.js";
59
59
  import { default as jo } from "./components/Comment/CommentItem.vue.js";
60
60
  import { default as Xo } from "./components/Comment/CommentThread.vue.js";
@@ -73,7 +73,7 @@ import { default as hr } from "./components/Footer/Footer.vue.js";
73
73
  import { initializeTheme as br, useTheme as Pr } from "./composables/useTheme.js";
74
74
  import { default as Dr } from "./components/FilePicker/FilePicker.vue.js";
75
75
  import { default as Br } from "./components/Pagination/Pagination.vue.js";
76
- import { default as Nr } from "./components/ExportData/ExportData.vue.js";
76
+ import { default as Ar } from "./components/ExportData/ExportData.vue.js";
77
77
  import { default as kr } from "./components/ImportData/ImportData.vue.js";
78
78
  import { default as Mr } from "./components/MultiSelect/MultiSelect.vue.js";
79
79
  import { useMultiSelectHydration as Rr } from "./components/MultiSelect/composables/useMultiSelectHydration.js";
@@ -99,7 +99,7 @@ import { default as bt } from "./components/AttachmentsList/AttachmentsList.vue.
99
99
  import { getFileTypeIcon as vt } from "./components/AttachmentsList/fileTypeIcon.js";
100
100
  import { default as Ft } from "./components/CustomFieldsDisplay/CustomFieldsDisplay.vue.js";
101
101
  import { default as yt } from "./components/Invoice/Invoice.vue.js";
102
- import { default as At } from "./components/Invoice/InvoiceTotals.vue.js";
102
+ import { default as Nt } from "./components/Invoice/InvoiceTotals.vue.js";
103
103
  import { default as Et } from "./components/CategoryManager/CategoryManager.vue.js";
104
104
  import { default as wt } from "./components/ThumbnailSelector/ThumbnailSelector.vue.js";
105
105
  import { default as Lt } from "./components/TagInput/TagInput.vue.js";
@@ -118,249 +118,251 @@ import { default as pa } from "./components/Chart/TimelineChart.vue.js";
118
118
  import { default as da } from "./components/Chart/SegmentBarChart.vue.js";
119
119
  import { default as xa } from "./components/Chart/StatCardChart.vue.js";
120
120
  import { default as na } from "./components/Chart/WaffleChart.vue.js";
121
- import { default as ga } from "./components/Icon.vue.js";
122
- import { default as Ta } from "./components/Logo.vue.js";
123
- import { default as ha } from "./components/Alert.vue.js";
124
- import { default as ba } from "./components/Badge.vue.js";
125
- import { default as va } from "./components/Input.vue.js";
121
+ import { default as ga } from "./components/AppShell/AppShell.vue.js";
122
+ import { default as Ta } from "./components/Icon.vue.js";
123
+ import { default as ha } from "./components/Logo.vue.js";
124
+ import { default as ba } from "./components/Alert.vue.js";
125
+ import { default as va } from "./components/Badge.vue.js";
126
+ import { default as Fa } from "./components/Input.vue.js";
126
127
  /* empty css */
127
- import { default as Fa } from "./components/Label.vue.js";
128
- import { default as ya } from "./components/Modal.vue.js";
129
- import { default as Aa } from "./components/Avatar.vue.js";
130
- import { default as Ea } from "./components/Button.vue.js";
131
- import { default as wa } from "./components/BackButton.vue.js";
132
- import { default as La } from "./components/CopyButton.vue.js";
133
- import { default as Ka } from "./components/Slider.vue.js";
134
- import { default as Ya } from "./components/Switch.vue.js";
135
- import { default as za } from "./components/Tooltip.vue.js";
136
- import { default as Va } from "./components/CheckBox.vue.js";
137
- import { default as Qa } from "./components/Textarea.vue.js";
138
- import { default as ja } from "./components/SidePanel.vue.js";
139
- import { default as Xa } from "./components/DatePicker.vue.js";
140
- import { default as Ja } from "./components/IconPicker.vue.js";
141
- import { default as ef } from "./components/ButtonGroup.vue.js";
142
- import { default as rf } from "./components/NumberInput.vue.js";
143
- import { default as af } from "./components/ThemeToggle.vue.js";
144
- import { default as mf } from "./components/GoogleLogin.vue.js";
145
- import { default as pf } from "./components/ColorPicker/ColorPicker.vue.js";
146
- import { default as df } from "./components/ConfirmationModal.vue.js";
147
- import { default as xf } from "./components/ToastNotification.vue.js";
148
- import { default as cf } from "./components/CommandPalette/CommandPaletteContent.vue.js";
149
- import { default as Cf } from "./components/NavbarCommandPalette.vue.js";
150
- import { default as Sf } from "./components/DateRangePicker.vue.js";
151
- import { createVLite as If } from "./core/index.js";
152
- import { default as Pf } from "./components/StatusChip/StatusChip.vue.js";
153
- import { STATUS_MAP as Df, normalizeStatus as Ff, resolveStatus as Bf } from "./components/StatusChip/status-map.js";
154
- import { default as Nf } from "./components/Price/Price.vue.js";
155
- import { default as kf } from "./components/DateTime/DateTime.vue.js";
156
- import { default as Mf } from "./components/Clock/Clock.vue.js";
157
- import { default as Rf } from "./components/Chat/ChatInterface.vue.js";
158
- import { VLITE_CONFIG_KEY as Gf, configState as Kf, updateConfig as Of, useVLiteConfig as Yf } from "./core/config.js";
159
- import { getStatusColorClass as zf } from "./utils/status.js";
128
+ import { default as ya } from "./components/Label.vue.js";
129
+ import { default as Na } from "./components/Modal.vue.js";
130
+ import { default as Ea } from "./components/Avatar.vue.js";
131
+ import { default as wa } from "./components/Button.vue.js";
132
+ import { default as La } from "./components/BackButton.vue.js";
133
+ import { default as Ka } from "./components/CopyButton.vue.js";
134
+ import { default as Ya } from "./components/Slider.vue.js";
135
+ import { default as za } from "./components/Switch.vue.js";
136
+ import { default as Va } from "./components/Tooltip.vue.js";
137
+ import { default as Qa } from "./components/CheckBox.vue.js";
138
+ import { default as ja } from "./components/Textarea.vue.js";
139
+ import { default as Xa } from "./components/SidePanel.vue.js";
140
+ import { default as Ja } from "./components/DatePicker.vue.js";
141
+ import { default as ef } from "./components/IconPicker.vue.js";
142
+ import { default as rf } from "./components/ButtonGroup.vue.js";
143
+ import { default as af } from "./components/NumberInput.vue.js";
144
+ import { default as mf } from "./components/ThemeToggle.vue.js";
145
+ import { default as pf } from "./components/GoogleLogin.vue.js";
146
+ import { default as df } from "./components/ColorPicker/ColorPicker.vue.js";
147
+ import { default as xf } from "./components/ConfirmationModal.vue.js";
148
+ import { default as cf } from "./components/ToastNotification.vue.js";
149
+ import { default as Cf } from "./components/CommandPalette/CommandPaletteContent.vue.js";
150
+ import { default as Sf } from "./components/NavbarCommandPalette.vue.js";
151
+ import { default as If } from "./components/DateRangePicker.vue.js";
152
+ import { createVLite as Pf } from "./core/index.js";
153
+ import { default as Df } from "./components/StatusChip/StatusChip.vue.js";
154
+ import { STATUS_MAP as Bf, normalizeStatus as yf, resolveStatus as Af } from "./components/StatusChip/status-map.js";
155
+ import { default as kf } from "./components/Price/Price.vue.js";
156
+ import { default as Mf } from "./components/DateTime/DateTime.vue.js";
157
+ import { default as Rf } from "./components/Clock/Clock.vue.js";
158
+ import { default as Gf } from "./components/Chat/ChatInterface.vue.js";
159
+ import { VLITE_CONFIG_KEY as Of, configState as Yf, updateConfig as _f, useVLiteConfig as zf } from "./core/config.js";
160
+ import { getStatusColorClass as Vf } from "./utils/status.js";
160
161
  export {
161
- J as $t,
162
+ Z as $t,
162
163
  er as Accordion,
163
164
  mr as AccordionContent,
164
165
  rr as AccordionItem,
165
166
  ar as AccordionTrigger,
166
- ha as Alert,
167
+ ba as Alert,
168
+ ga as AppShell,
167
169
  bt as AttachmentsList,
168
- Aa as Avatar,
170
+ Ea as Avatar,
169
171
  at as AvatarGroup,
170
172
  rt as AvatarUploader,
171
- wa as BackButton,
172
- ba as Badge,
173
+ La as BackButton,
174
+ va as Badge,
173
175
  ea as BarChart,
174
- Je as Barcode,
175
- Co as Breadcrumb,
176
- So as BreadcrumbItem,
177
- Ea as Button,
178
- ef as ButtonGroup,
176
+ Ze as Barcode,
177
+ To as Breadcrumb,
178
+ ho as BreadcrumbItem,
179
+ wa as Button,
180
+ rf as ButtonGroup,
179
181
  Kt as Calendar,
180
182
  Yt as CalendarEventItem,
181
- ro as Carousel,
183
+ to as Carousel,
182
184
  Et as CategoryManager,
183
- Rf as ChatInterface,
184
- Va as CheckBox,
185
- re as Chip,
185
+ Gf as ChatInterface,
186
+ Qa as CheckBox,
187
+ te as Chip,
186
188
  pr as ChoiceBox,
187
189
  aa as CircleChart,
188
- Mf as Clock,
189
- pf as ColorPicker,
190
- cf as CommandPaletteContent,
190
+ Rf as Clock,
191
+ df as ColorPicker,
192
+ Cf as CommandPaletteContent,
191
193
  Jo as CommentEditor,
192
194
  jo as CommentItem,
193
195
  Xo as CommentThread,
194
- df as ConfirmationModal,
195
- La as CopyButton,
196
- de as CustomFields,
196
+ xf as ConfirmationModal,
197
+ Ka as CopyButton,
198
+ ue as CustomFields,
197
199
  Ft as CustomFieldsDisplay,
198
- Go as DataList,
200
+ Ko as DataList,
199
201
  dr as DataTable,
200
202
  xr as DataTableHeader,
201
203
  nr as DataTableRow,
202
- Xa as DatePicker,
203
- Sf as DateRangePicker,
204
- kf as DateTime,
205
- ao as Dropdown,
206
- uo as DropdownItem,
207
- mo as DropdownMenu,
208
- po as DropdownTrigger,
204
+ Ja as DatePicker,
205
+ If as DateRangePicker,
206
+ Mf as DateTime,
207
+ fo as Dropdown,
208
+ xo as DropdownItem,
209
+ lo as DropdownMenu,
210
+ so as DropdownTrigger,
209
211
  Qo as Empty,
210
- Nr as ExportData,
212
+ Ar as ExportData,
211
213
  Dr as FilePicker,
212
214
  ht as FilePreview,
213
- Io as FileTree,
214
- Po as FileTreeNode,
215
+ bo as FileTree,
216
+ vo as FileTreeNode,
215
217
  hr as Footer,
216
- ae as Form,
217
- me as FormField,
218
- pe as FormFields,
219
- xe as FormSkeleton,
218
+ fe as Form,
219
+ le as FormField,
220
+ se as FormFields,
221
+ ie as FormSkeleton,
220
222
  ma as GaugeChart,
221
- mf as GoogleLogin,
223
+ pf as GoogleLogin,
222
224
  l as GoogleSignInPlugin,
223
- Ve as Heatmap,
224
- ga as Icon,
225
- Ja as IconPicker,
225
+ He as Heatmap,
226
+ Ta as Icon,
227
+ ef as IconPicker,
226
228
  kr as ImportData,
227
- va as Input,
229
+ Fa as Input,
228
230
  yt as Invoice,
229
- At as InvoiceTotals,
230
- be as Kanban,
231
- ve as KanbanBoard,
232
- Fa as Label,
231
+ Nt as InvoiceTotals,
232
+ Pe as Kanban,
233
+ De as KanbanBoard,
234
+ ya as Label,
233
235
  Jt as LineChart,
234
- Oo as List,
235
- _o as ListFieldRow,
236
- Ta as Logo,
237
- je as MASONRY_BREAKPOINTS,
238
- Qe as Masonry,
239
- ya as Modal,
236
+ Yo as List,
237
+ zo as ListFieldRow,
238
+ ha as Logo,
239
+ qe as MASONRY_BREAKPOINTS,
240
+ We as Masonry,
241
+ Na as Modal,
240
242
  Mr as MultiSelect,
241
- ye as Navbar,
242
- Cf as NavbarCommandPalette,
243
- Ee as NavbarGroup,
244
- Ae as NavbarItem,
245
- we as NavbarTabs,
246
- rf as NumberInput,
247
- ko as OTPInput,
243
+ Ae as Navbar,
244
+ Sf as NavbarCommandPalette,
245
+ Me as NavbarGroup,
246
+ ke as NavbarItem,
247
+ Re as NavbarTabs,
248
+ af as NumberInput,
249
+ Eo as OTPInput,
248
250
  Br as Pagination,
249
251
  qr as PermissionEditor,
250
252
  Wr as PermissionMatrix,
251
253
  ra as PieChart,
252
- Nf as Price,
254
+ kf as Price,
253
255
  Gr as PricingPlan,
254
256
  Or as PricingPlanItem,
255
257
  Hr as ProgressBar,
256
- Le as QRCode,
257
- Bo as RichTextEditor,
258
+ Ge as QRCode,
259
+ yo as RichTextEditor,
258
260
  No as RichTextReader,
259
261
  gr as SCREEN_CONTEXT_KEY,
260
- Df as STATUS_MAP,
261
- Ke as Screen,
262
- Ye as ScreenFilter,
263
- ze as ScreenQuickFilters,
262
+ Bf as STATUS_MAP,
263
+ Oe as Screen,
264
+ _e as ScreenFilter,
265
+ Ue as ScreenQuickFilters,
264
266
  da as SegmentBarChart,
265
- Ro as Sheet,
266
- ja as SidePanel,
267
+ Lo as Sheet,
268
+ Xa as SidePanel,
267
269
  _r as SidebarMenu,
268
270
  Ur as SidebarMenuItem,
269
271
  zt as Skeleton,
270
- Ka as Slider,
271
- Xe as Spinner,
272
+ Ya as Slider,
273
+ $e as Spinner,
272
274
  Tr as Splitter,
273
275
  xa as StatCardChart,
274
- he as Stats,
275
- Pf as StatusChip,
276
- Ya as Switch,
277
- Te as Tabes,
276
+ Ie as Stats,
277
+ Df as StatusChip,
278
+ za as Switch,
279
+ Se as Tabes,
278
280
  Lt as TagInput,
279
- Qa as Textarea,
280
- af as ThemeToggle,
281
+ ja as Textarea,
282
+ mf as ThemeToggle,
281
283
  wt as ThumbnailSelector,
282
284
  nt as Timeline,
283
285
  pa as TimelineChart,
284
286
  Tt as TimelineIndicator,
285
287
  gt as TimelineItem,
286
- xf as ToastNotification,
287
- za as Tooltip,
288
- Gf as VLITE_CONFIG_KEY,
288
+ cf as ToastNotification,
289
+ Va as Tooltip,
290
+ Of as VLITE_CONFIG_KEY,
289
291
  na as WaffleChart,
290
- Mo as Workbook,
291
- eo as barcodesConstants,
292
+ wo as Workbook,
293
+ oo as barcodesConstants,
292
294
  u as camelCase,
293
295
  x as capitalize,
294
- Kf as configState,
296
+ Yf as configState,
295
297
  mt as configure,
296
298
  jt as configureSkeleton,
297
299
  i as copyToClipboard,
298
- If as createVLite,
300
+ Pf as createVLite,
299
301
  n as debounce,
300
302
  s as deepMerge,
301
303
  c as delay,
302
304
  g as downloadFile,
303
- X as env,
305
+ $ as env,
304
306
  C as flattenArray,
305
307
  T as formatAmPm,
306
308
  S as formatCurrency,
307
309
  h as formatDate,
308
- Uo as formatNumber,
309
- I as formatSchedule,
310
- ee as getComponentConfig,
311
- b as getDefaultDateRange,
310
+ I as formatNumber,
311
+ b as formatSchedule,
312
+ oe as getComponentConfig,
313
+ P as getDefaultDateRange,
312
314
  vt as getFileTypeIcon,
313
315
  qt as getGlobalConfig,
314
- P as getNextMonth,
315
- v as getNextYear,
316
+ v as getNextMonth,
317
+ D as getNextYear,
316
318
  Vo as getObjectValue,
317
- D as getPrevMonth,
318
- F as getPrevYear,
319
- zf as getStatusColorClass,
320
- B as getToday,
321
- y as getTomorrow,
319
+ F as getPrevMonth,
320
+ B as getPrevYear,
321
+ Vf as getStatusColorClass,
322
+ y as getToday,
323
+ A as getTomorrow,
322
324
  N as getUniqueId,
323
- A as getUpcoming,
324
- k as getYear,
325
- E as getYesterday,
325
+ k as getUpcoming,
326
+ E as getYear,
327
+ M as getYesterday,
326
328
  br as initializeTheme,
327
- M as isAppleDevice,
328
- w as isEmpty,
329
- R as isPureTimeString,
330
- L as isValidTimeRange,
331
- Q as lazySearch,
329
+ w as isAppleDevice,
330
+ R as isEmpty,
331
+ L as isPureTimeString,
332
+ G as isValidTimeRange,
333
+ W as lazySearch,
332
334
  Vt as normalizeBone,
333
- Ff as normalizeStatus,
334
- G as parseDateTime,
335
+ yf as normalizeStatus,
336
+ K as parseDateTime,
335
337
  lt as pauseTimers,
336
- K as randomNumber,
338
+ O as randomNumber,
337
339
  Xt as registerBones,
338
- O as removeExtraProperties,
340
+ Y as removeExtraProperties,
339
341
  pt as removeToast,
340
- W as resetSearchIndex,
341
- Bf as resolveStatus,
342
+ j as resetSearchIndex,
343
+ Af as resolveStatus,
342
344
  st as resumeTimers,
343
- j as search,
345
+ q as search,
344
346
  dt as showToast,
345
- Y as slugify,
347
+ _ as slugify,
346
348
  Qt as snapshotBones,
347
- _ as throttle,
348
- z as toISO,
349
- U as toLocalISO,
349
+ z as throttle,
350
+ U as toISO,
351
+ V as toLocalISO,
350
352
  ut as toast,
351
- V as truncate,
352
- Of as updateConfig,
353
+ H as truncate,
354
+ _f as updateConfig,
353
355
  $r as useAdvancedKeyStroke,
354
- co as useDropdownIds,
355
- io as useDropdownSelection,
356
- ge as useFileUpload,
357
- ne as useForm,
358
- Fe as useKanbanBoard,
356
+ go as useDropdownIds,
357
+ no as useDropdownSelection,
358
+ Ce as useFileUpload,
359
+ ce as useForm,
360
+ Be as useKanbanBoard,
359
361
  Jr as useKeyStroke,
360
362
  Rr as useMultiSelectHydration,
361
363
  xt as useNotifications,
362
364
  Pr as useTheme,
363
- Do as useTreeSelection,
364
- Yf as useVLiteConfig,
365
+ Fo as useTreeSelection,
366
+ zf as useVLiteConfig,
365
367
  et as vScrollReveal
366
368
  };