vlite3 1.1.8 → 1.1.9

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 (34) hide show
  1. package/components/Chart/BarChart.vue.js +369 -0
  2. package/components/Chart/BarChart.vue2.js +4 -0
  3. package/components/Chart/CircleChart.vue.js +137 -0
  4. package/components/Chart/CircleChart.vue2.js +4 -0
  5. package/components/Chart/GaugeChart.vue.js +443 -0
  6. package/components/Chart/GaugeChart.vue2.js +4 -0
  7. package/components/Chart/LineChart.vue.js +7 -0
  8. package/components/Chart/LineChart.vue2.js +313 -0
  9. package/components/Chart/PieChart.vue.js +203 -0
  10. package/components/Chart/PieChart.vue2.js +4 -0
  11. package/components/Chart/utils.js +90 -0
  12. package/components/Footer/Footer.vue.js +35 -0
  13. package/components/Footer/Footer.vue2.js +4 -0
  14. package/components/Footer/Variant1.vue.js +178 -0
  15. package/components/Footer/Variant1.vue2.js +4 -0
  16. package/components/Footer/Variant2.vue.js +177 -0
  17. package/components/Footer/Variant2.vue2.js +4 -0
  18. package/components/Footer/Variant3.vue.js +82 -0
  19. package/components/Footer/Variant3.vue2.js +4 -0
  20. package/components/RichTextEditor/RichTextEditor.vue.js +332 -0
  21. package/components/RichTextEditor/RichTextEditor.vue3.js +5 -0
  22. package/components/RichTextEditor/RichTextLinkPopover.vue.js +107 -0
  23. package/components/RichTextEditor/RichTextLinkPopover.vue3.js +5 -0
  24. package/components/RichTextEditor/RichTextReader.vue.js +7 -0
  25. package/components/RichTextEditor/RichTextReader.vue2.js +19 -0
  26. package/components/RichTextEditor/RichTextToolbar.vue.js +330 -0
  27. package/components/RichTextEditor/RichTextToolbar.vue3.js +5 -0
  28. package/components/RichTextEditor/composables/useRichTextImageUpload.js +77 -0
  29. package/components/RichTextEditor/composables/useRichTextLinks.js +120 -0
  30. package/core/config.d.ts +2 -2
  31. package/index.d.ts +3 -0
  32. package/index.js +332 -315
  33. package/package.json +1 -1
  34. package/style.css +1 -1
package/index.js CHANGED
@@ -1,341 +1,358 @@
1
- import { default as m } from "vue3-google-signin";
2
- import { deepMerge as p } from "./utils/object.js";
3
- import { camelCase as d, capitalize as u, copyToClipboard as x, debounce as i, delay as n, downloadFile as c, flattenArray as g, formatAmPm as T, formatCurrency as S, formatDate as C, formatSchedule as I, getDefaultDateRange as b, getNextMonth as P, getNextYear as h, getPrevMonth as v, getPrevYear as D, getToday as F, getTomorrow as y, getUniqueId as B, getUpcoming as N, getYear as A, getYesterday as k, isAppleDevice as M, isEmpty as E, isPureTimeString as w, isValidTimeRange as L, parseDateTime as R, randomNumber as K, removeExtraProperties as O, slugify as G, throttle as Y, toISO as _, toLocalISO as z, truncate as U } from "./utils/functions.js";
4
- import { lazySearch as H, resetSearchIndex as Q, search as j } from "./utils/search.util.js";
5
- import { env as W } from "./utils/env.js";
6
- import { $t as $ } from "./utils/i18n.js";
7
- import { getComponentConfig as Z } from "./utils/configUtils.js";
8
- import { default as oe } from "./components/Chip/Chip.vue.js";
9
- import { default as te } from "./components/Form/Form.vue.js";
10
- import { default as fe } from "./components/Form/FormField.vue.js";
11
- import { default as le } from "./components/Form/FormFields.vue.js";
12
- import { default as se } from "./components/Form/CustomFields.vue.js";
13
- import { default as ue } from "./components/Form/FormSkeleton.vue.js";
14
- import { useForm as ie } from "./components/Form/composables/useForm.js";
15
- import { useFileUpload as ce } from "./components/Form/composables/useFileUpload.js";
16
- import { default as Te } from "./components/Tabes/Tabes.vue.js";
17
- import { default as Ce } from "./components/Stats/Stats.vue.js";
1
+ import { default as l } from "vue3-google-signin";
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 T, formatAmPm as C, formatCurrency as S, formatDate as I, formatSchedule as h, 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 j, search as q } 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 Ce } from "./components/Tabes/Tabes.vue.js";
17
+ import { default as Ie } from "./components/Stats/Stats.vue.js";
18
18
  import { default as be } from "./components/Kanban/Kanban.vue.js";
19
- import { default as he } from "./components/Kanban/KanbanBoard.vue.js";
20
- import { useKanbanBoard as De } from "./components/Kanban/useKanbanBoard.js";
19
+ import { default as ve } from "./components/Kanban/KanbanBoard.vue.js";
20
+ import { useKanbanBoard as Fe } from "./components/Kanban/useKanbanBoard.js";
21
21
  import { default as ye } from "./components/Navbar/Navbar.vue.js";
22
- import { default as Ne } from "./components/Navbar/NavbarItem.vue.js";
23
- import { default as ke } from "./components/Navbar/NavbarGroup.vue.js";
24
- import { default as Ee } from "./components/Navbar/NavbarTabs.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";
25
25
  /* empty css */
26
26
  import { default as Le } from "./components/QRCode/QRCode.vue.js";
27
27
  import { default as Ke } from "./components/Screen/Screen.vue.js";
28
- import { default as Ge } from "./components/Screen/ScreenFilter.vue.js";
29
- import { default as _e } from "./components/Screen/components/ScreenQuickFilters.vue.js";
30
- import { default as Ue } from "./components/Heatmap/Heatmap.vue.js";
31
- import { default as He } from "./components/Masonry/Masonry.vue.js";
32
- import { MASONRY_BREAKPOINTS as je } from "./components/Masonry/types.js";
33
- import { default as We } from "./components/Spinner/Spinner.vue.js";
34
- import { default as $e } from "./components/Barcode/Barcode.vue.js";
35
- import { barcodesConstants as Ze } from "./components/Barcode/types.js";
36
- import { default as oo } from "./components/Carousel/Carousel.vue.js";
37
- import { default as to } from "./components/Dropdown/Dropdown.vue.js";
38
- import { default as fo } from "./components/Dropdown/DropdownMenu.vue.js";
39
- import { default as lo } from "./components/Dropdown/DropdownTrigger.vue.js";
40
- import { default as so } from "./components/Dropdown/DropdownItem.vue.js";
41
- import { useDropdownSelection as xo } from "./components/Dropdown/composables/useDropdownSelection.js";
42
- import { useDropdownIds as no } from "./components/Dropdown/composables/useDropdownIds.js";
43
- import { default as go } from "./components/Breadcrumb/Breadcrumb.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 qe } 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 To } from "./components/Breadcrumb/Breadcrumb.vue.js";
44
44
  import { default as So } from "./components/Breadcrumb/BreadcrumbItem.vue.js";
45
- import { default as Io } from "./components/FileTree/FileTree.vue.js";
45
+ import { default as ho } from "./components/FileTree/FileTree.vue.js";
46
46
  import { default as Po } from "./components/FileTree/FileTreeNode.vue.js";
47
- import { useTreeSelection as vo } from "./components/FileTree/useTreeSelection.js";
48
- import { default as Fo } from "./components/OTPInput/OTPInput.vue.js";
49
- import { default as Bo } from "./components/Workbook/Workbook.vue.js";
50
- import { default as Ao } from "./components/Workbook/Sheet.vue.js";
51
- import { default as Mo } from "./components/DataList/DataList.vue.js";
52
- import { default as wo } from "./components/List/List.vue.js";
53
- import { default as Ro } from "./components/List/ListFieldRow.vue.js";
54
- import { formatNumber as Oo, getObjectValue as Go } from "./components/List/utils.js";
55
- import { default as _o } from "./components/Empty/Empty.vue.js";
56
- import { default as Uo } from "./components/Comment/CommentItem.vue.js";
57
- import { default as Ho } from "./components/Comment/CommentThread.vue.js";
58
- import { default as jo } from "./components/Comment/CommentEditor.vue.js";
59
- import { default as Wo } from "./components/Accordion/Accordion.vue.js";
60
- import { default as $o } from "./components/Accordion/AccordionItem.vue.js";
61
- import { default as Zo } from "./components/Accordion/AccordionTrigger.vue.js";
62
- import { default as or } from "./components/Accordion/AccordionContent.vue.js";
63
- import { default as tr } from "./components/ChoiceBox/ChoiceBox.vue.js";
64
- import { default as fr } from "./components/DataTable/DataTable.vue.js";
65
- import { default as lr } from "./components/DataTable/DataTableHeader.vue.js";
66
- import { default as sr } from "./components/DataTable/DataTableRow.vue.js";
67
- import { SCREEN_CONTEXT_KEY as ur } from "./components/DataTable/types.js";
68
- import { default as ir } from "./components/Splitter/Splitter.vue.js";
69
- import { initializeTheme as cr, useTheme as gr } from "./composables/useTheme.js";
70
- import { default as Sr } from "./components/FilePicker/FilePicker.vue.js";
71
- import { default as Ir } from "./components/Pagination/Pagination.vue.js";
72
- import { default as Pr } from "./components/ExportData/ExportData.vue.js";
73
- import { default as vr } from "./components/ImportData/ImportData.vue.js";
74
- import { default as Fr } from "./components/MultiSelect/MultiSelect.vue.js";
75
- import { useMultiSelectHydration as Br } from "./components/MultiSelect/composables/useMultiSelectHydration.js";
76
- import { default as Ar } from "./components/PricingPlan/PricingPlan.vue.js";
77
- import { default as Mr } from "./components/PricingPlan/PricingPlanItem.vue.js";
78
- import { default as wr } from "./components/SidebarMenu/SidebarMenu.vue.js";
47
+ import { useTreeSelection as Do } from "./components/FileTree/useTreeSelection.js";
48
+ import { default as Bo } from "./components/RichTextEditor/RichTextEditor.vue.js";
49
+ /* empty css */
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";
58
+ import { default as Qo } from "./components/Empty/Empty.vue.js";
59
+ import { default as qo } from "./components/Comment/CommentItem.vue.js";
60
+ import { default as Xo } from "./components/Comment/CommentThread.vue.js";
61
+ import { default as Jo } from "./components/Comment/CommentEditor.vue.js";
62
+ import { default as er } from "./components/Accordion/Accordion.vue.js";
63
+ import { default as rr } from "./components/Accordion/AccordionItem.vue.js";
64
+ import { default as ar } from "./components/Accordion/AccordionTrigger.vue.js";
65
+ import { default as mr } from "./components/Accordion/AccordionContent.vue.js";
66
+ import { default as pr } from "./components/ChoiceBox/ChoiceBox.vue.js";
67
+ import { default as dr } from "./components/DataTable/DataTable.vue.js";
68
+ import { default as xr } from "./components/DataTable/DataTableHeader.vue.js";
69
+ import { default as nr } from "./components/DataTable/DataTableRow.vue.js";
70
+ import { SCREEN_CONTEXT_KEY as gr } from "./components/DataTable/types.js";
71
+ import { default as Cr } from "./components/Splitter/Splitter.vue.js";
72
+ import { default as Ir } from "./components/Footer/Footer.vue.js";
73
+ import { initializeTheme as br, useTheme as Pr } from "./composables/useTheme.js";
74
+ import { default as Dr } from "./components/FilePicker/FilePicker.vue.js";
75
+ import { default as Br } from "./components/Pagination/Pagination.vue.js";
76
+ import { default as Nr } from "./components/ExportData/ExportData.vue.js";
77
+ import { default as kr } from "./components/ImportData/ImportData.vue.js";
78
+ import { default as Mr } from "./components/MultiSelect/MultiSelect.vue.js";
79
+ import { useMultiSelectHydration as Rr } from "./components/MultiSelect/composables/useMultiSelectHydration.js";
80
+ import { default as Gr } from "./components/PricingPlan/PricingPlan.vue.js";
81
+ import { default as Or } from "./components/PricingPlan/PricingPlanItem.vue.js";
82
+ import { default as _r } from "./components/SidebarMenu/SidebarMenu.vue.js";
79
83
  /* empty css */
80
- import { default as Rr } from "./components/SidebarMenu/SidebarMenuItem.vue.js";
84
+ import { default as Ur } from "./components/SidebarMenu/SidebarMenuItem.vue.js";
81
85
  /* empty css */
82
- import { default as Or } from "./components/ProgressBar/ProgressBar.vue.js";
83
- import { default as Yr } from "./components/PermissionMatrix/PermissionMatrix.vue.js";
84
- import { default as zr } from "./components/PermissionMatrix/PermissionEditor.vue.js";
85
- import { useAdvancedKeyStroke as Vr, useKeyStroke as Hr } from "./composables/useKeyStroke.js";
86
- import { vScrollReveal as jr } from "./directives/vScrollReveal.js";
87
- import { default as Wr } from "./components/AvatarUploader/AvatarUploader.vue.js";
88
- import { default as $r } from "./components/AvatarGroup/AvatarGroup.vue.js";
89
- import { configure as Zr, pauseTimers as et, removeToast as ot, resumeTimers as rt, showToast as tt, toast as at, useNotifications as ft } from "./composables/useNotifications.js";
90
- import { default as lt } from "./components/Timeline/Timeline.vue.js";
91
- import { default as st } from "./components/Timeline/TimelineItem.vue.js";
92
- import { default as ut } from "./components/Timeline/TimelineIndicator.vue.js";
93
- import { default as it } from "./components/FilePreview/FilePreview.vue.js";
94
- import { default as ct } from "./components/AttachmentsList/AttachmentsList.vue.js";
95
- import { getFileTypeIcon as Tt } from "./components/AttachmentsList/fileTypeIcon.js";
96
- import { default as Ct } from "./components/CustomFieldsDisplay/CustomFieldsDisplay.vue.js";
97
- import { default as bt } from "./components/Invoice/Invoice.vue.js";
98
- import { default as ht } from "./components/Invoice/InvoiceTotals.vue.js";
99
- import { default as Dt } from "./components/CategoryManager/CategoryManager.vue.js";
100
- import { default as yt } from "./components/ThumbnailSelector/ThumbnailSelector.vue.js";
101
- import { default as Nt } from "./components/TagInput/TagInput.vue.js";
102
- import { default as kt } from "./components/Calendar/Calendar.vue.js";
103
- import { default as Et } from "./components/Calendar/CalendarEventItem.vue.js";
104
- import { default as Lt } from "./components/Skeleton/Skeleton.vue.js";
105
- import { normalizeBone as Kt } from "./components/Skeleton/types.js";
106
- import { snapshotBones as Gt } from "./components/Skeleton/extract.js";
107
- import { configureSkeleton as _t, getGlobalConfig as zt, registerBones as Ut } from "./components/Skeleton/shared.js";
108
- import { default as Ht } from "./components/Icon.vue.js";
109
- import { default as jt } from "./components/Logo.vue.js";
110
- import { default as Wt } from "./components/Alert.vue.js";
111
- import { default as $t } from "./components/Badge.vue.js";
112
- import { default as Zt } from "./components/Input.vue.js";
86
+ import { default as Hr } from "./components/ProgressBar/ProgressBar.vue.js";
87
+ import { default as jr } from "./components/PermissionMatrix/PermissionMatrix.vue.js";
88
+ import { default as Wr } from "./components/PermissionMatrix/PermissionEditor.vue.js";
89
+ import { useAdvancedKeyStroke as $r, useKeyStroke as Jr } from "./composables/useKeyStroke.js";
90
+ import { vScrollReveal as et } from "./directives/vScrollReveal.js";
91
+ import { default as rt } from "./components/AvatarUploader/AvatarUploader.vue.js";
92
+ import { default as at } from "./components/AvatarGroup/AvatarGroup.vue.js";
93
+ import { configure as mt, pauseTimers as lt, removeToast as pt, resumeTimers as st, showToast as dt, toast as ut, useNotifications as xt } from "./composables/useNotifications.js";
94
+ import { default as nt } from "./components/Timeline/Timeline.vue.js";
95
+ import { default as gt } from "./components/Timeline/TimelineItem.vue.js";
96
+ import { default as Ct } from "./components/Timeline/TimelineIndicator.vue.js";
97
+ import { default as It } from "./components/FilePreview/FilePreview.vue.js";
98
+ import { default as bt } from "./components/AttachmentsList/AttachmentsList.vue.js";
99
+ import { getFileTypeIcon as vt } from "./components/AttachmentsList/fileTypeIcon.js";
100
+ import { default as Ft } from "./components/CustomFieldsDisplay/CustomFieldsDisplay.vue.js";
101
+ import { default as yt } from "./components/Invoice/Invoice.vue.js";
102
+ import { default as At } from "./components/Invoice/InvoiceTotals.vue.js";
103
+ import { default as Et } from "./components/CategoryManager/CategoryManager.vue.js";
104
+ import { default as wt } from "./components/ThumbnailSelector/ThumbnailSelector.vue.js";
105
+ import { default as Lt } from "./components/TagInput/TagInput.vue.js";
106
+ import { default as Kt } from "./components/Calendar/Calendar.vue.js";
107
+ import { default as Yt } from "./components/Calendar/CalendarEventItem.vue.js";
108
+ import { default as zt } from "./components/Skeleton/Skeleton.vue.js";
109
+ import { normalizeBone as Vt } from "./components/Skeleton/types.js";
110
+ import { snapshotBones as Qt } from "./components/Skeleton/extract.js";
111
+ import { configureSkeleton as qt, getGlobalConfig as Wt, registerBones as Xt } from "./components/Skeleton/shared.js";
112
+ import { default as Jt } from "./components/Chart/LineChart.vue.js";
113
+ import { default as ea } from "./components/Chart/BarChart.vue.js";
114
+ import { default as ra } from "./components/Chart/PieChart.vue.js";
115
+ import { default as aa } from "./components/Chart/CircleChart.vue.js";
116
+ import { default as ma } from "./components/Chart/GaugeChart.vue.js";
117
+ import { default as pa } from "./components/Icon.vue.js";
118
+ import { default as da } from "./components/Logo.vue.js";
119
+ import { default as xa } from "./components/Alert.vue.js";
120
+ import { default as na } from "./components/Badge.vue.js";
121
+ import { default as ga } from "./components/Input.vue.js";
113
122
  /* empty css */
114
- import { default as oa } from "./components/Label.vue.js";
115
- import { default as ta } from "./components/Modal.vue.js";
116
- import { default as fa } from "./components/Avatar.vue.js";
117
- import { default as la } from "./components/Button.vue.js";
118
- import { default as sa } from "./components/BackButton.vue.js";
119
- import { default as ua } from "./components/CopyButton.vue.js";
120
- import { default as ia } from "./components/Slider.vue.js";
121
- import { default as ca } from "./components/Switch.vue.js";
122
- import { default as Ta } from "./components/Tooltip.vue.js";
123
- import { default as Ca } from "./components/CheckBox.vue.js";
124
- import { default as ba } from "./components/Textarea.vue.js";
125
- import { default as ha } from "./components/SidePanel.vue.js";
126
- import { default as Da } from "./components/DatePicker.vue.js";
127
- import { default as ya } from "./components/IconPicker.vue.js";
128
- import { default as Na } from "./components/ButtonGroup.vue.js";
129
- import { default as ka } from "./components/NumberInput.vue.js";
130
- import { default as Ea } from "./components/ThemeToggle.vue.js";
131
- import { default as La } from "./components/GoogleLogin.vue.js";
132
- import { default as Ka } from "./components/ColorPicker/ColorPicker.vue.js";
133
- import { default as Ga } from "./components/ConfirmationModal.vue.js";
134
- import { default as _a } from "./components/ToastNotification.vue.js";
135
- import { default as Ua } from "./components/CommandPalette/CommandPaletteContent.vue.js";
136
- import { default as Ha } from "./components/NavbarCommandPalette.vue.js";
137
- import { default as ja } from "./components/DateRangePicker.vue.js";
138
- import { createVLite as Wa } from "./core/index.js";
139
- import { default as $a } from "./components/StatusChip/StatusChip.vue.js";
140
- import { STATUS_MAP as Za, normalizeStatus as ef, resolveStatus as of } from "./components/StatusChip/status-map.js";
141
- import { default as tf } from "./components/Price/Price.vue.js";
142
- import { default as ff } from "./components/DateTime/DateTime.vue.js";
143
- import { default as lf } from "./components/Clock/Clock.vue.js";
144
- import { default as sf } from "./components/Chat/ChatInterface.vue.js";
145
- import { VLITE_CONFIG_KEY as uf, configState as xf, updateConfig as nf, useVLiteConfig as cf } from "./core/config.js";
146
- import { getStatusColorClass as Tf } from "./utils/status.js";
123
+ import { default as Ca } from "./components/Label.vue.js";
124
+ import { default as Ia } from "./components/Modal.vue.js";
125
+ import { default as ba } from "./components/Avatar.vue.js";
126
+ import { default as va } from "./components/Button.vue.js";
127
+ import { default as Fa } from "./components/BackButton.vue.js";
128
+ import { default as ya } from "./components/CopyButton.vue.js";
129
+ import { default as Aa } from "./components/Slider.vue.js";
130
+ import { default as Ea } from "./components/Switch.vue.js";
131
+ import { default as wa } from "./components/Tooltip.vue.js";
132
+ import { default as La } from "./components/CheckBox.vue.js";
133
+ import { default as Ka } from "./components/Textarea.vue.js";
134
+ import { default as Ya } from "./components/SidePanel.vue.js";
135
+ import { default as za } from "./components/DatePicker.vue.js";
136
+ import { default as Va } from "./components/IconPicker.vue.js";
137
+ import { default as Qa } from "./components/ButtonGroup.vue.js";
138
+ import { default as qa } from "./components/NumberInput.vue.js";
139
+ import { default as Xa } from "./components/ThemeToggle.vue.js";
140
+ import { default as Ja } from "./components/GoogleLogin.vue.js";
141
+ import { default as ef } from "./components/ColorPicker/ColorPicker.vue.js";
142
+ import { default as rf } from "./components/ConfirmationModal.vue.js";
143
+ import { default as af } from "./components/ToastNotification.vue.js";
144
+ import { default as mf } from "./components/CommandPalette/CommandPaletteContent.vue.js";
145
+ import { default as pf } from "./components/NavbarCommandPalette.vue.js";
146
+ import { default as df } from "./components/DateRangePicker.vue.js";
147
+ import { createVLite as xf } from "./core/index.js";
148
+ import { default as cf } from "./components/StatusChip/StatusChip.vue.js";
149
+ import { STATUS_MAP as Tf, normalizeStatus as Cf, resolveStatus as Sf } from "./components/StatusChip/status-map.js";
150
+ import { default as hf } from "./components/Price/Price.vue.js";
151
+ import { default as Pf } from "./components/DateTime/DateTime.vue.js";
152
+ import { default as Df } from "./components/Clock/Clock.vue.js";
153
+ import { default as Bf } from "./components/Chat/ChatInterface.vue.js";
154
+ import { VLITE_CONFIG_KEY as Nf, configState as Af, updateConfig as kf, useVLiteConfig as Ef } from "./core/config.js";
155
+ import { getStatusColorClass as wf } from "./utils/status.js";
147
156
  export {
148
- $ as $t,
149
- Wo as Accordion,
150
- or as AccordionContent,
151
- $o as AccordionItem,
152
- Zo as AccordionTrigger,
153
- Wt as Alert,
154
- ct as AttachmentsList,
155
- fa as Avatar,
156
- $r as AvatarGroup,
157
- Wr as AvatarUploader,
158
- sa as BackButton,
159
- $t as Badge,
160
- $e as Barcode,
161
- go as Breadcrumb,
157
+ J as $t,
158
+ er as Accordion,
159
+ mr as AccordionContent,
160
+ rr as AccordionItem,
161
+ ar as AccordionTrigger,
162
+ xa as Alert,
163
+ bt as AttachmentsList,
164
+ ba as Avatar,
165
+ at as AvatarGroup,
166
+ rt as AvatarUploader,
167
+ Fa as BackButton,
168
+ na as Badge,
169
+ ea as BarChart,
170
+ Je as Barcode,
171
+ To as Breadcrumb,
162
172
  So as BreadcrumbItem,
163
- la as Button,
164
- Na as ButtonGroup,
165
- kt as Calendar,
166
- Et as CalendarEventItem,
167
- oo as Carousel,
168
- Dt as CategoryManager,
169
- sf as ChatInterface,
170
- Ca as CheckBox,
171
- oe as Chip,
172
- tr as ChoiceBox,
173
- lf as Clock,
174
- Ka as ColorPicker,
175
- Ua as CommandPaletteContent,
176
- jo as CommentEditor,
177
- Uo as CommentItem,
178
- Ho as CommentThread,
179
- Ga as ConfirmationModal,
180
- ua as CopyButton,
181
- se as CustomFields,
182
- Ct as CustomFieldsDisplay,
183
- Mo as DataList,
184
- fr as DataTable,
185
- lr as DataTableHeader,
186
- sr as DataTableRow,
187
- Da as DatePicker,
188
- ja as DateRangePicker,
189
- ff as DateTime,
190
- to as Dropdown,
191
- so as DropdownItem,
192
- fo as DropdownMenu,
193
- lo as DropdownTrigger,
194
- _o as Empty,
195
- Pr as ExportData,
196
- Sr as FilePicker,
197
- it as FilePreview,
198
- Io as FileTree,
173
+ va as Button,
174
+ Qa as ButtonGroup,
175
+ Kt as Calendar,
176
+ Yt as CalendarEventItem,
177
+ ro as Carousel,
178
+ Et as CategoryManager,
179
+ Bf as ChatInterface,
180
+ La as CheckBox,
181
+ re as Chip,
182
+ pr as ChoiceBox,
183
+ aa as CircleChart,
184
+ Df as Clock,
185
+ ef as ColorPicker,
186
+ mf as CommandPaletteContent,
187
+ Jo as CommentEditor,
188
+ qo as CommentItem,
189
+ Xo as CommentThread,
190
+ rf as ConfirmationModal,
191
+ ya as CopyButton,
192
+ de as CustomFields,
193
+ Ft as CustomFieldsDisplay,
194
+ Go as DataList,
195
+ dr as DataTable,
196
+ xr as DataTableHeader,
197
+ nr as DataTableRow,
198
+ za as DatePicker,
199
+ df as DateRangePicker,
200
+ Pf as DateTime,
201
+ ao as Dropdown,
202
+ uo as DropdownItem,
203
+ mo as DropdownMenu,
204
+ po as DropdownTrigger,
205
+ Qo as Empty,
206
+ Nr as ExportData,
207
+ Dr as FilePicker,
208
+ It as FilePreview,
209
+ ho as FileTree,
199
210
  Po as FileTreeNode,
200
- te as Form,
201
- fe as FormField,
202
- le as FormFields,
203
- ue as FormSkeleton,
204
- La as GoogleLogin,
205
- m as GoogleSignInPlugin,
206
- Ue as Heatmap,
207
- Ht as Icon,
208
- ya as IconPicker,
209
- vr as ImportData,
210
- Zt as Input,
211
- bt as Invoice,
212
- ht as InvoiceTotals,
211
+ Ir as Footer,
212
+ ae as Form,
213
+ me as FormField,
214
+ pe as FormFields,
215
+ xe as FormSkeleton,
216
+ ma as GaugeChart,
217
+ Ja as GoogleLogin,
218
+ l as GoogleSignInPlugin,
219
+ Ve as Heatmap,
220
+ pa as Icon,
221
+ Va as IconPicker,
222
+ kr as ImportData,
223
+ ga as Input,
224
+ yt as Invoice,
225
+ At as InvoiceTotals,
213
226
  be as Kanban,
214
- he as KanbanBoard,
215
- oa as Label,
216
- wo as List,
217
- Ro as ListFieldRow,
218
- jt as Logo,
219
- je as MASONRY_BREAKPOINTS,
220
- He as Masonry,
221
- ta as Modal,
222
- Fr as MultiSelect,
227
+ ve as KanbanBoard,
228
+ Ca as Label,
229
+ Jt as LineChart,
230
+ Oo as List,
231
+ _o as ListFieldRow,
232
+ da as Logo,
233
+ qe as MASONRY_BREAKPOINTS,
234
+ Qe as Masonry,
235
+ Ia as Modal,
236
+ Mr as MultiSelect,
223
237
  ye as Navbar,
224
- Ha as NavbarCommandPalette,
225
- ke as NavbarGroup,
226
- Ne as NavbarItem,
227
- Ee as NavbarTabs,
228
- ka as NumberInput,
229
- Fo as OTPInput,
230
- Ir as Pagination,
231
- zr as PermissionEditor,
232
- Yr as PermissionMatrix,
233
- tf as Price,
234
- Ar as PricingPlan,
235
- Mr as PricingPlanItem,
236
- Or as ProgressBar,
238
+ pf as NavbarCommandPalette,
239
+ Ee as NavbarGroup,
240
+ Ae as NavbarItem,
241
+ we as NavbarTabs,
242
+ qa as NumberInput,
243
+ ko as OTPInput,
244
+ Br as Pagination,
245
+ Wr as PermissionEditor,
246
+ jr as PermissionMatrix,
247
+ ra as PieChart,
248
+ hf as Price,
249
+ Gr as PricingPlan,
250
+ Or as PricingPlanItem,
251
+ Hr as ProgressBar,
237
252
  Le as QRCode,
238
- ur as SCREEN_CONTEXT_KEY,
239
- Za as STATUS_MAP,
253
+ Bo as RichTextEditor,
254
+ No as RichTextReader,
255
+ gr as SCREEN_CONTEXT_KEY,
256
+ Tf as STATUS_MAP,
240
257
  Ke as Screen,
241
- Ge as ScreenFilter,
242
- _e as ScreenQuickFilters,
243
- Ao as Sheet,
244
- ha as SidePanel,
245
- wr as SidebarMenu,
246
- Rr as SidebarMenuItem,
247
- Lt as Skeleton,
248
- ia as Slider,
249
- We as Spinner,
250
- ir as Splitter,
251
- Ce as Stats,
252
- $a as StatusChip,
253
- ca as Switch,
254
- Te as Tabes,
255
- Nt as TagInput,
256
- ba as Textarea,
257
- Ea as ThemeToggle,
258
- yt as ThumbnailSelector,
259
- lt as Timeline,
260
- ut as TimelineIndicator,
261
- st as TimelineItem,
262
- _a as ToastNotification,
263
- Ta as Tooltip,
264
- uf as VLITE_CONFIG_KEY,
265
- Bo as Workbook,
266
- Ze as barcodesConstants,
267
- d as camelCase,
268
- u as capitalize,
269
- xf as configState,
270
- Zr as configure,
271
- _t as configureSkeleton,
272
- x as copyToClipboard,
273
- Wa as createVLite,
274
- i as debounce,
275
- p as deepMerge,
276
- n as delay,
277
- c as downloadFile,
278
- W as env,
279
- g as flattenArray,
280
- T as formatAmPm,
258
+ Ye as ScreenFilter,
259
+ ze as ScreenQuickFilters,
260
+ Ro as Sheet,
261
+ Ya as SidePanel,
262
+ _r as SidebarMenu,
263
+ Ur as SidebarMenuItem,
264
+ zt as Skeleton,
265
+ Aa as Slider,
266
+ Xe as Spinner,
267
+ Cr as Splitter,
268
+ Ie as Stats,
269
+ cf as StatusChip,
270
+ Ea as Switch,
271
+ Ce as Tabes,
272
+ Lt as TagInput,
273
+ Ka as Textarea,
274
+ Xa as ThemeToggle,
275
+ wt as ThumbnailSelector,
276
+ nt as Timeline,
277
+ Ct as TimelineIndicator,
278
+ gt as TimelineItem,
279
+ af as ToastNotification,
280
+ wa as Tooltip,
281
+ Nf as VLITE_CONFIG_KEY,
282
+ Mo as Workbook,
283
+ eo as barcodesConstants,
284
+ u as camelCase,
285
+ x as capitalize,
286
+ Af as configState,
287
+ mt as configure,
288
+ qt as configureSkeleton,
289
+ i as copyToClipboard,
290
+ xf as createVLite,
291
+ n as debounce,
292
+ s as deepMerge,
293
+ c as delay,
294
+ g as downloadFile,
295
+ X as env,
296
+ T as flattenArray,
297
+ C as formatAmPm,
281
298
  S as formatCurrency,
282
- C as formatDate,
283
- Oo as formatNumber,
284
- I as formatSchedule,
285
- Z as getComponentConfig,
299
+ I as formatDate,
300
+ Uo as formatNumber,
301
+ h as formatSchedule,
302
+ ee as getComponentConfig,
286
303
  b as getDefaultDateRange,
287
- Tt as getFileTypeIcon,
288
- zt as getGlobalConfig,
304
+ vt as getFileTypeIcon,
305
+ Wt as getGlobalConfig,
289
306
  P as getNextMonth,
290
- h as getNextYear,
291
- Go as getObjectValue,
292
- v as getPrevMonth,
293
- D as getPrevYear,
294
- Tf as getStatusColorClass,
295
- F as getToday,
307
+ v as getNextYear,
308
+ Vo as getObjectValue,
309
+ D as getPrevMonth,
310
+ F as getPrevYear,
311
+ wf as getStatusColorClass,
312
+ B as getToday,
296
313
  y as getTomorrow,
297
- B as getUniqueId,
298
- N as getUpcoming,
299
- A as getYear,
300
- k as getYesterday,
301
- cr as initializeTheme,
314
+ N as getUniqueId,
315
+ A as getUpcoming,
316
+ k as getYear,
317
+ E as getYesterday,
318
+ br as initializeTheme,
302
319
  M as isAppleDevice,
303
- E as isEmpty,
304
- w as isPureTimeString,
320
+ w as isEmpty,
321
+ R as isPureTimeString,
305
322
  L as isValidTimeRange,
306
- H as lazySearch,
307
- Kt as normalizeBone,
308
- ef as normalizeStatus,
309
- R as parseDateTime,
310
- et as pauseTimers,
323
+ Q as lazySearch,
324
+ Vt as normalizeBone,
325
+ Cf as normalizeStatus,
326
+ G as parseDateTime,
327
+ lt as pauseTimers,
311
328
  K as randomNumber,
312
- Ut as registerBones,
329
+ Xt as registerBones,
313
330
  O as removeExtraProperties,
314
- ot as removeToast,
315
- Q as resetSearchIndex,
316
- of as resolveStatus,
317
- rt as resumeTimers,
318
- j as search,
319
- tt as showToast,
320
- G as slugify,
321
- Gt as snapshotBones,
322
- Y as throttle,
323
- _ as toISO,
324
- z as toLocalISO,
325
- at as toast,
326
- U as truncate,
327
- nf as updateConfig,
328
- Vr as useAdvancedKeyStroke,
329
- no as useDropdownIds,
330
- xo as useDropdownSelection,
331
- ce as useFileUpload,
332
- ie as useForm,
333
- De as useKanbanBoard,
334
- Hr as useKeyStroke,
335
- Br as useMultiSelectHydration,
336
- ft as useNotifications,
337
- gr as useTheme,
338
- vo as useTreeSelection,
339
- cf as useVLiteConfig,
340
- jr as vScrollReveal
331
+ pt as removeToast,
332
+ j as resetSearchIndex,
333
+ Sf as resolveStatus,
334
+ st as resumeTimers,
335
+ q as search,
336
+ dt as showToast,
337
+ Y as slugify,
338
+ Qt as snapshotBones,
339
+ _ as throttle,
340
+ z as toISO,
341
+ U as toLocalISO,
342
+ ut as toast,
343
+ V as truncate,
344
+ kf as updateConfig,
345
+ $r as useAdvancedKeyStroke,
346
+ co as useDropdownIds,
347
+ io as useDropdownSelection,
348
+ ge as useFileUpload,
349
+ ne as useForm,
350
+ Fe as useKanbanBoard,
351
+ Jr as useKeyStroke,
352
+ Rr as useMultiSelectHydration,
353
+ xt as useNotifications,
354
+ Pr as useTheme,
355
+ Do as useTreeSelection,
356
+ Ef as useVLiteConfig,
357
+ et as vScrollReveal
341
358
  };