vlite3 1.1.2 → 1.1.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -0
- package/components/AttachmentsList/AttachmentsList.vue.d.ts +1 -1
- package/components/AttachmentsList/AttachmentsList.vue.js +237 -163
- package/components/Avatar.vue.js +1 -1
- package/components/AvatarUploader/AvatarUploader.vue.js +40 -37
- package/components/Button.vue.js +30 -28
- package/components/Carousel/Carousel.vue.d.ts +2 -2
- package/components/CategoryManager/CategoryManager.vue.d.ts +10 -2
- package/components/CategoryManager/CategoryManager.vue.js +138 -119
- package/components/CategoryManager/CategoryNode.vue.d.ts +2 -0
- package/components/CategoryManager/CategoryNode.vue.js +93 -88
- package/components/Chart/BarChart.vue.d.ts +48 -0
- package/components/Chart/CircleChart.vue.d.ts +47 -0
- package/components/Chart/LineChart.vue.d.ts +55 -0
- package/components/Chart/PieChart.vue.d.ts +49 -0
- package/components/Chart/index.d.ts +5 -0
- package/components/Chart/types.d.ts +135 -0
- package/components/Chart/utils.d.ts +40 -0
- package/components/Chat/ChatBubble.vue.js +22 -22
- package/components/CheckBox.vue.js +29 -28
- package/components/ColorPicker/ColorIro.vue3.js +2 -2
- package/components/ColorPicker/ColorPicker.vue.js +2 -2
- package/components/Comment/CommentEditor.vue.d.ts +41 -0
- package/components/Comment/CommentEditor.vue.js +221 -0
- package/components/Comment/CommentEditor.vue2.js +4 -0
- package/components/Comment/CommentItem.vue.d.ts +70 -0
- package/components/Comment/CommentItem.vue.js +7 -0
- package/components/Comment/CommentItem.vue2.js +322 -0
- package/components/Comment/CommentThread.vue.d.ts +64 -0
- package/components/Comment/CommentThread.vue.js +185 -0
- package/components/Comment/CommentThread.vue2.js +4 -0
- package/components/Comment/index.d.ts +4 -0
- package/components/Comment/types.d.ts +34 -0
- package/components/ConfirmationModal.vue.js +30 -28
- package/components/CopyButton.vue.d.ts +50 -0
- package/components/CopyButton.vue.js +69 -0
- package/components/CopyButton.vue2.js +4 -0
- package/components/DataTable/DataTable.vue.d.ts +2 -4
- package/components/DataTable/DataTable.vue.js +184 -235
- package/components/DataTable/DataTableHeader.vue.d.ts +2 -0
- package/components/DataTable/DataTableHeader.vue.js +24 -23
- package/components/DataTable/DataTableRow.vue.d.ts +2 -0
- package/components/DataTable/DataTableRow.vue.js +32 -31
- package/components/DataTable/types.d.ts +2 -9
- package/components/DatePicker.vue.js +41 -35
- package/components/DateRangePicker.vue.js +18 -17
- package/components/Dropdown/Dropdown.vue.d.ts +5 -0
- package/components/Dropdown/Dropdown.vue.js +141 -137
- package/components/Dropdown/DropdownBooleanItem.vue.js +16 -15
- package/components/Dropdown/DropdownItem.vue.js +21 -20
- package/components/Dropdown/DropdownMenu.vue.js +1 -1
- package/components/Dropdown/DropdownMenu.vue2.js +13 -12
- package/components/Dropdown/DropdownTrigger.vue.d.ts +4 -0
- package/components/Dropdown/DropdownTrigger.vue.js +12 -7
- package/components/Dropdown/composables/useDropdownHydration.d.ts +2 -0
- package/components/Dropdown/composables/useDropdownSelection.d.ts +1 -0
- package/components/Dropdown/composables/useDropdownSelection.js +46 -31
- package/components/Empty/Empty.vue.js +7 -5
- package/components/Empty/index.d.ts +1 -1
- package/components/Empty/variants/Variant12.vue.d.ts +22 -0
- package/components/Empty/variants/Variant12.vue.js +35 -0
- package/components/Empty/variants/Variant12.vue2.js +4 -0
- package/components/FilePicker/FilePicker.vue.js +93 -90
- package/components/Footer/Footer.vue.d.ts +3 -0
- package/components/Footer/Variant1.vue.d.ts +20 -0
- package/components/Footer/Variant2.vue.d.ts +20 -0
- package/components/Footer/Variant3.vue.d.ts +12 -0
- package/components/Footer/index.d.ts +2 -0
- package/components/Footer/types.d.ts +73 -0
- package/components/Form/CustomFields.vue.d.ts +2 -0
- package/components/Form/CustomFields.vue.js +1 -1
- package/components/Form/CustomFields.vue2.js +125 -122
- package/components/Form/Form.vue.js +2 -2
- package/components/Form/Form.vue2.js +68 -64
- package/components/Form/FormField.vue.js +205 -149
- package/components/Form/FormFields.vue.js +2 -2
- package/components/Form/FormFields.vue2.js +28 -27
- package/components/Form/types.d.ts +2 -2
- package/components/Form/utils/form.utils.d.ts +3 -3
- package/components/Form/utils/form.utils.js +37 -37
- package/components/Input.vue.js +64 -62
- package/components/Invoice/Invoice.vue.js +9 -7
- package/components/Invoice/InvoiceTotals.vue.d.ts +14 -0
- package/components/Invoice/InvoiceTotals.vue.js +86 -0
- package/components/Invoice/InvoiceTotals.vue2.js +4 -0
- package/components/Invoice/InvoiceVariant1.vue.d.ts +3 -1
- package/components/Invoice/InvoiceVariant1.vue.js +194 -207
- package/components/Invoice/InvoiceVariant2.vue.d.ts +3 -1
- package/components/Invoice/InvoiceVariant2.vue.js +109 -118
- package/components/Invoice/InvoiceVariant3.vue.d.ts +3 -1
- package/components/Invoice/InvoiceVariant3.vue.js +157 -167
- package/components/Invoice/InvoiceVariant4.vue.d.ts +3 -1
- package/components/Invoice/InvoiceVariant4.vue.js +192 -202
- package/components/Invoice/index.d.ts +1 -0
- package/components/Invoice/types.d.ts +22 -0
- package/components/Masonry/Masonry.vue.d.ts +1 -1
- package/components/Modal.vue.js +1 -1
- package/components/Modal.vue2.js +60 -54
- package/components/MultiSelect/MultiSelect.vue.d.ts +2 -0
- package/components/MultiSelect/MultiSelect.vue.js +92 -90
- package/components/MultiSelect/composables/useMultiSelectHydration.d.ts +2 -0
- package/components/NumberInput.vue.js +2 -2
- package/components/NumberInput.vue2.js +127 -121
- package/components/PricingPlan/PricingPlan.vue.d.ts +1 -1
- package/components/RichTextEditor/RichTextLinkPopover.vue.d.ts +26 -0
- package/components/RichTextEditor/RichTextReader.vue.d.ts +7 -0
- package/components/RichTextEditor/RichTextToolbar.vue.d.ts +24 -0
- package/components/RichTextEditor/composables/useRichTextImageUpload.d.ts +14 -0
- package/components/RichTextEditor/composables/useRichTextLinks.d.ts +32 -0
- package/components/RichTextEditor/index.d.ts +2 -0
- package/components/Screen/Screen.vue.js +45 -46
- package/components/Screen/ScreenFilter.vue.js +1 -1
- package/components/SidePanel.vue.js +2 -2
- package/components/SidePanel.vue2.js +58 -52
- package/components/SidebarMenu/SidebarMenu.vue.d.ts +1 -1
- package/components/SidebarMenu/SidebarMenu.vue.js +192 -91
- package/components/SidebarMenu/SidebarMenu.vue3.js +5 -0
- package/components/SidebarMenu/SidebarMenuItem.vue.js +170 -157
- package/components/SidebarMenu/types.d.ts +12 -3
- package/components/{DataTable/DataTableToolbar.vue.d.ts → Splitter/Splitter.vue.d.ts} +18 -15
- package/components/Splitter/Splitter.vue.js +64 -0
- package/components/Splitter/Splitter.vue2.js +4 -0
- package/components/Splitter/index.d.ts +1 -0
- package/components/Stats/StatItem.vue.js +96 -91
- package/components/Stats/types.d.ts +1 -0
- package/components/StatusChip/status-map.js +34 -2
- package/components/Switch.vue.d.ts +6 -1
- package/components/Switch.vue.js +61 -24
- package/components/TagInput/TagInput.vue.d.ts +187 -0
- package/components/TagInput/TagInput.vue.js +113 -0
- package/components/TagInput/TagInput.vue2.js +4 -0
- package/components/TagInput/index.d.ts +1 -0
- package/components/Textarea.vue.js +19 -18
- package/components/ThumbnailSelector/ThumbnailSelector.vue.js +2 -2
- package/components/ThumbnailSelector/ThumbnailSelector.vue2.js +19 -16
- package/components/index.d.ts +4 -0
- package/core/config.d.ts +54 -0
- package/index.d.ts +4 -0
- package/index.js +300 -285
- package/package.json +1 -1
- package/style.css +657 -6
- package/types/button.d.ts +1 -1
- package/types/config.type.d.ts +2 -0
- package/types/styles.d.ts +1 -0
- package/utils/functions.js +9 -9
- package/components/DataTable/DataTableToolbar.vue.js +0 -60
- package/components/DataTable/DataTableToolbar.vue2.js +0 -4
- package/components/SidebarMenu/SidebarMenu.vue2.js +0 -4
- /package/components/ColorPicker/{ColorIro.vue2.js → ColorIro.vue.js} +0 -0
package/index.js
CHANGED
|
@@ -1,316 +1,331 @@
|
|
|
1
|
-
import { default as
|
|
2
|
-
import { deepMerge as
|
|
3
|
-
import { camelCase as
|
|
4
|
-
import { lazySearch as
|
|
5
|
-
import { env as
|
|
6
|
-
import { $t as
|
|
7
|
-
import { getComponentConfig as
|
|
8
|
-
import { default as
|
|
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 v, getPrevMonth as h, getPrevYear as D, getToday as F, getTomorrow as y, getUniqueId as N, getUpcoming as A, getYear as B, getYesterday as M, isAppleDevice as k, isEmpty as E, isPureTimeString as w, isValidTimeRange as L, parseDateTime as R, randomNumber as K, removeExtraProperties as O, slugify as Y, throttle as G, toISO as _, toLocalISO as U, truncate as V } 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
9
|
import { default as re } from "./components/Form/Form.vue.js";
|
|
10
|
-
import { default as
|
|
11
|
-
import { default as
|
|
10
|
+
import { default as fe } from "./components/Form/FormField.vue.js";
|
|
11
|
+
import { default as le } from "./components/Form/FormFields.vue.js";
|
|
12
12
|
import { default as se } from "./components/Form/CustomFields.vue.js";
|
|
13
|
-
import { default as
|
|
14
|
-
import { useForm as
|
|
15
|
-
import { useFileUpload as
|
|
16
|
-
import { default as
|
|
17
|
-
import { default as
|
|
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";
|
|
18
18
|
import { default as be } from "./components/Kanban/Kanban.vue.js";
|
|
19
|
-
import { default as
|
|
19
|
+
import { default as ve } from "./components/Kanban/KanbanBoard.vue.js";
|
|
20
20
|
import { useKanbanBoard as De } from "./components/Kanban/useKanbanBoard.js";
|
|
21
|
-
import { default as
|
|
22
|
-
import { default as
|
|
21
|
+
import { default as ye } from "./components/Navbar/Navbar.vue.js";
|
|
22
|
+
import { default as Ae } from "./components/Navbar/NavbarItem.vue.js";
|
|
23
23
|
import { default as Me } from "./components/Navbar/NavbarGroup.vue.js";
|
|
24
|
-
import { default as
|
|
24
|
+
import { default as Ee } from "./components/Navbar/NavbarTabs.vue.js";
|
|
25
25
|
/* empty css */
|
|
26
|
-
import { default as
|
|
27
|
-
import { default as
|
|
28
|
-
import { default as
|
|
29
|
-
import { default as
|
|
30
|
-
import { default as
|
|
31
|
-
import { default as
|
|
32
|
-
import { MASONRY_BREAKPOINTS as
|
|
33
|
-
import { default as
|
|
34
|
-
import { default as
|
|
35
|
-
import { barcodesConstants as
|
|
36
|
-
import { default as
|
|
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 _e } from "./components/Screen/components/ScreenQuickFilters.vue.js";
|
|
30
|
+
import { default as Ve } 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
37
|
import { default as ro } from "./components/Dropdown/Dropdown.vue.js";
|
|
38
|
-
import { default as
|
|
39
|
-
import { default as
|
|
38
|
+
import { default as fo } from "./components/Dropdown/DropdownMenu.vue.js";
|
|
39
|
+
import { default as lo } from "./components/Dropdown/DropdownTrigger.vue.js";
|
|
40
40
|
import { default as so } from "./components/Dropdown/DropdownItem.vue.js";
|
|
41
|
-
import { useDropdownSelection as
|
|
42
|
-
import { useDropdownIds as
|
|
43
|
-
import { default as
|
|
44
|
-
import { default as
|
|
45
|
-
import { default as
|
|
46
|
-
import { default as
|
|
47
|
-
import { useTreeSelection as
|
|
48
|
-
import { default as
|
|
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";
|
|
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 ho } from "./components/FileTree/useTreeSelection.js";
|
|
48
|
+
import { default as Fo } from "./components/OTPInput/OTPInput.vue.js";
|
|
49
49
|
import { default as No } from "./components/Workbook/Workbook.vue.js";
|
|
50
|
-
import { default as
|
|
50
|
+
import { default as Bo } from "./components/Workbook/Sheet.vue.js";
|
|
51
51
|
import { default as ko } from "./components/DataList/DataList.vue.js";
|
|
52
52
|
import { default as wo } from "./components/List/List.vue.js";
|
|
53
|
-
import { default as
|
|
54
|
-
import { formatNumber as
|
|
55
|
-
import { default as
|
|
56
|
-
import { default as
|
|
57
|
-
import { default as
|
|
58
|
-
import { default as
|
|
59
|
-
import { default as
|
|
60
|
-
import { default as
|
|
61
|
-
import { default as
|
|
62
|
-
import { default as
|
|
63
|
-
import { default as
|
|
64
|
-
import {
|
|
65
|
-
import {
|
|
66
|
-
import { default as
|
|
67
|
-
import {
|
|
68
|
-
import { default as
|
|
69
|
-
import {
|
|
70
|
-
import { default as
|
|
71
|
-
import {
|
|
72
|
-
import { default as
|
|
73
|
-
import { default as
|
|
74
|
-
import { default as
|
|
75
|
-
import {
|
|
53
|
+
import { default as Ro } from "./components/List/ListFieldRow.vue.js";
|
|
54
|
+
import { formatNumber as Oo, getObjectValue as Yo } from "./components/List/utils.js";
|
|
55
|
+
import { default as _o } from "./components/Empty/Empty.vue.js";
|
|
56
|
+
import { default as Vo } 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 ot } from "./components/Accordion/AccordionContent.vue.js";
|
|
63
|
+
import { default as rt } from "./components/ChoiceBox/ChoiceBox.vue.js";
|
|
64
|
+
import { default as ft } from "./components/DataTable/DataTable.vue.js";
|
|
65
|
+
import { default as lt } from "./components/DataTable/DataTableHeader.vue.js";
|
|
66
|
+
import { default as st } from "./components/DataTable/DataTableRow.vue.js";
|
|
67
|
+
import { SCREEN_CONTEXT_KEY as ut } from "./components/DataTable/types.js";
|
|
68
|
+
import { default as it } from "./components/Splitter/Splitter.vue.js";
|
|
69
|
+
import { initializeTheme as ct, useTheme as gt } from "./composables/useTheme.js";
|
|
70
|
+
import { default as St } from "./components/FilePicker/FilePicker.vue.js";
|
|
71
|
+
import { default as It } from "./components/Pagination/Pagination.vue.js";
|
|
72
|
+
import { default as Pt } from "./components/ExportData/ExportData.vue.js";
|
|
73
|
+
import { default as ht } from "./components/ImportData/ImportData.vue.js";
|
|
74
|
+
import { default as Ft } from "./components/MultiSelect/MultiSelect.vue.js";
|
|
75
|
+
import { useMultiSelectHydration as Nt } from "./components/MultiSelect/composables/useMultiSelectHydration.js";
|
|
76
|
+
import { default as Bt } from "./components/PricingPlan/PricingPlan.vue.js";
|
|
77
|
+
import { default as kt } from "./components/PricingPlan/PricingPlanItem.vue.js";
|
|
78
|
+
import { default as wt } from "./components/SidebarMenu/SidebarMenu.vue.js";
|
|
79
|
+
/* empty css */
|
|
80
|
+
import { default as Rt } from "./components/SidebarMenu/SidebarMenuItem.vue.js";
|
|
76
81
|
/* empty css */
|
|
77
|
-
import { default as
|
|
78
|
-
import { default as
|
|
79
|
-
import { default as
|
|
80
|
-
import { useAdvancedKeyStroke as
|
|
81
|
-
import { vScrollReveal as
|
|
82
|
-
import { default as
|
|
83
|
-
import { default as
|
|
84
|
-
import { configure as
|
|
85
|
-
import { default as
|
|
86
|
-
import { default as
|
|
87
|
-
import { default as
|
|
88
|
-
import { default as
|
|
89
|
-
import { default as
|
|
90
|
-
import { getFileTypeIcon as
|
|
91
|
-
import { default as
|
|
92
|
-
import { default as
|
|
93
|
-
import { default as
|
|
94
|
-
import { default as
|
|
95
|
-
import { default as
|
|
96
|
-
import { default as
|
|
97
|
-
import { default as
|
|
98
|
-
import { default as
|
|
99
|
-
import { default as
|
|
100
|
-
import { default as
|
|
101
|
-
import { default as
|
|
82
|
+
import { default as Ot } from "./components/ProgressBar/ProgressBar.vue.js";
|
|
83
|
+
import { default as Gt } from "./components/PermissionMatrix/PermissionMatrix.vue.js";
|
|
84
|
+
import { default as Ut } from "./components/PermissionMatrix/PermissionEditor.vue.js";
|
|
85
|
+
import { useAdvancedKeyStroke as zt, useKeyStroke as Ht } from "./composables/useKeyStroke.js";
|
|
86
|
+
import { vScrollReveal as jt } from "./directives/vScrollReveal.js";
|
|
87
|
+
import { default as Wt } from "./components/AvatarUploader/AvatarUploader.vue.js";
|
|
88
|
+
import { default as $t } from "./components/AvatarGroup/AvatarGroup.vue.js";
|
|
89
|
+
import { configure as Zt, pauseTimers as er, removeToast as or, resumeTimers as tr, showToast as rr, toast as ar, useNotifications as fr } from "./composables/useNotifications.js";
|
|
90
|
+
import { default as lr } from "./components/Timeline/Timeline.vue.js";
|
|
91
|
+
import { default as sr } from "./components/Timeline/TimelineItem.vue.js";
|
|
92
|
+
import { default as ur } from "./components/Timeline/TimelineIndicator.vue.js";
|
|
93
|
+
import { default as ir } from "./components/FilePreview/FilePreview.vue.js";
|
|
94
|
+
import { default as cr } from "./components/AttachmentsList/AttachmentsList.vue.js";
|
|
95
|
+
import { getFileTypeIcon as Tr } from "./components/AttachmentsList/fileTypeIcon.js";
|
|
96
|
+
import { default as Cr } from "./components/CustomFieldsDisplay/CustomFieldsDisplay.vue.js";
|
|
97
|
+
import { default as br } from "./components/Invoice/Invoice.vue.js";
|
|
98
|
+
import { default as vr } from "./components/Invoice/InvoiceTotals.vue.js";
|
|
99
|
+
import { default as Dr } from "./components/CategoryManager/CategoryManager.vue.js";
|
|
100
|
+
import { default as yr } from "./components/ThumbnailSelector/ThumbnailSelector.vue.js";
|
|
101
|
+
import { default as Ar } from "./components/TagInput/TagInput.vue.js";
|
|
102
|
+
import { default as Mr } from "./components/Calendar/Calendar.vue.js";
|
|
103
|
+
import { default as Er } from "./components/Calendar/CalendarEventItem.vue.js";
|
|
104
|
+
import { default as Lr } from "./components/Icon.vue.js";
|
|
105
|
+
import { default as Kr } from "./components/Logo.vue.js";
|
|
106
|
+
import { default as Yr } from "./components/Alert.vue.js";
|
|
107
|
+
import { default as _r } from "./components/Badge.vue.js";
|
|
108
|
+
import { default as Vr } from "./components/Input.vue.js";
|
|
102
109
|
/* empty css */
|
|
103
|
-
import { default as
|
|
104
|
-
import { default as
|
|
105
|
-
import { default as
|
|
106
|
-
import { default as
|
|
107
|
-
import { default as
|
|
108
|
-
import { default as
|
|
109
|
-
import { default as
|
|
110
|
-
import { default as
|
|
111
|
-
import { default as
|
|
112
|
-
import { default as
|
|
113
|
-
import { default as
|
|
114
|
-
import { default as
|
|
115
|
-
import { default as
|
|
116
|
-
import { default as
|
|
117
|
-
import { default as
|
|
118
|
-
import { default as
|
|
119
|
-
import { default as
|
|
120
|
-
import { default as
|
|
121
|
-
import { default as
|
|
122
|
-
import { default as
|
|
123
|
-
import { default as
|
|
124
|
-
import { default as
|
|
125
|
-
import { default as
|
|
126
|
-
import {
|
|
127
|
-
import {
|
|
128
|
-
import {
|
|
129
|
-
import {
|
|
130
|
-
import { default as
|
|
131
|
-
import { default as
|
|
132
|
-
import { default as
|
|
133
|
-
import {
|
|
134
|
-
import {
|
|
110
|
+
import { default as Hr } from "./components/Label.vue.js";
|
|
111
|
+
import { default as jr } from "./components/Modal.vue.js";
|
|
112
|
+
import { default as Wr } from "./components/Avatar.vue.js";
|
|
113
|
+
import { default as $r } from "./components/Button.vue.js";
|
|
114
|
+
import { default as Zr } from "./components/BackButton.vue.js";
|
|
115
|
+
import { default as oa } from "./components/CopyButton.vue.js";
|
|
116
|
+
import { default as ra } from "./components/Slider.vue.js";
|
|
117
|
+
import { default as fa } from "./components/Switch.vue.js";
|
|
118
|
+
import { default as la } from "./components/Tooltip.vue.js";
|
|
119
|
+
import { default as sa } from "./components/CheckBox.vue.js";
|
|
120
|
+
import { default as ua } from "./components/Textarea.vue.js";
|
|
121
|
+
import { default as ia } from "./components/SidePanel.vue.js";
|
|
122
|
+
import { default as ca } from "./components/DatePicker.vue.js";
|
|
123
|
+
import { default as Ta } from "./components/IconPicker.vue.js";
|
|
124
|
+
import { default as Ca } from "./components/ButtonGroup.vue.js";
|
|
125
|
+
import { default as ba } from "./components/NumberInput.vue.js";
|
|
126
|
+
import { default as va } from "./components/ThemeToggle.vue.js";
|
|
127
|
+
import { default as Da } from "./components/GoogleLogin.vue.js";
|
|
128
|
+
import { default as ya } from "./components/ColorPicker/ColorPicker.vue.js";
|
|
129
|
+
import { default as Aa } from "./components/ConfirmationModal.vue.js";
|
|
130
|
+
import { default as Ma } from "./components/ToastNotification.vue.js";
|
|
131
|
+
import { default as Ea } from "./components/CommandPalette/CommandPaletteContent.vue.js";
|
|
132
|
+
import { default as La } from "./components/NavbarCommandPalette.vue.js";
|
|
133
|
+
import { default as Ka } from "./components/DateRangePicker.vue.js";
|
|
134
|
+
import { createVLite as Ya } from "./core/index.js";
|
|
135
|
+
import { default as _a } from "./components/StatusChip/StatusChip.vue.js";
|
|
136
|
+
import { STATUS_MAP as Va, normalizeStatus as za, resolveStatus as Ha } from "./components/StatusChip/status-map.js";
|
|
137
|
+
import { default as ja } from "./components/Price/Price.vue.js";
|
|
138
|
+
import { default as Wa } from "./components/DateTime/DateTime.vue.js";
|
|
139
|
+
import { default as $a } from "./components/Clock/Clock.vue.js";
|
|
140
|
+
import { default as Za } from "./components/Chat/ChatInterface.vue.js";
|
|
141
|
+
import { VLITE_CONFIG_KEY as of, configState as tf, updateConfig as rf, useVLiteConfig as af } from "./core/config.js";
|
|
142
|
+
import { getStatusColorClass as mf } from "./utils/status.js";
|
|
135
143
|
export {
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
144
|
+
$ as $t,
|
|
145
|
+
Wo as Accordion,
|
|
146
|
+
ot as AccordionContent,
|
|
147
|
+
$o as AccordionItem,
|
|
148
|
+
Zo as AccordionTrigger,
|
|
149
|
+
Yr as Alert,
|
|
150
|
+
cr as AttachmentsList,
|
|
151
|
+
Wr as Avatar,
|
|
152
|
+
$t as AvatarGroup,
|
|
153
|
+
Wt as AvatarUploader,
|
|
154
|
+
Zr as BackButton,
|
|
155
|
+
_r as Badge,
|
|
156
|
+
$e as Barcode,
|
|
157
|
+
go as Breadcrumb,
|
|
158
|
+
So as BreadcrumbItem,
|
|
159
|
+
$r as Button,
|
|
160
|
+
Ca as ButtonGroup,
|
|
161
|
+
Mr as Calendar,
|
|
162
|
+
Er as CalendarEventItem,
|
|
163
|
+
oo as Carousel,
|
|
164
|
+
Dr as CategoryManager,
|
|
165
|
+
Za as ChatInterface,
|
|
166
|
+
sa as CheckBox,
|
|
167
|
+
oe as Chip,
|
|
168
|
+
rt as ChoiceBox,
|
|
169
|
+
$a as Clock,
|
|
170
|
+
ya as ColorPicker,
|
|
171
|
+
Ea as CommandPaletteContent,
|
|
172
|
+
jo as CommentEditor,
|
|
173
|
+
Vo as CommentItem,
|
|
174
|
+
Ho as CommentThread,
|
|
175
|
+
Aa as ConfirmationModal,
|
|
176
|
+
oa as CopyButton,
|
|
165
177
|
se as CustomFields,
|
|
166
|
-
|
|
178
|
+
Cr as CustomFieldsDisplay,
|
|
167
179
|
ko as DataList,
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
180
|
+
ft as DataTable,
|
|
181
|
+
lt as DataTableHeader,
|
|
182
|
+
st as DataTableRow,
|
|
183
|
+
ca as DatePicker,
|
|
184
|
+
Ka as DateRangePicker,
|
|
185
|
+
Wa as DateTime,
|
|
174
186
|
ro as Dropdown,
|
|
175
187
|
so as DropdownItem,
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
188
|
+
fo as DropdownMenu,
|
|
189
|
+
lo as DropdownTrigger,
|
|
190
|
+
_o as Empty,
|
|
191
|
+
Pt as ExportData,
|
|
192
|
+
St as FilePicker,
|
|
193
|
+
ir as FilePreview,
|
|
194
|
+
Io as FileTree,
|
|
195
|
+
Po as FileTreeNode,
|
|
184
196
|
re as Form,
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
197
|
+
fe as FormField,
|
|
198
|
+
le as FormFields,
|
|
199
|
+
ue as FormSkeleton,
|
|
200
|
+
Da as GoogleLogin,
|
|
201
|
+
m as GoogleSignInPlugin,
|
|
202
|
+
Ve as Heatmap,
|
|
203
|
+
Lr as Icon,
|
|
204
|
+
Ta as IconPicker,
|
|
205
|
+
ht as ImportData,
|
|
206
|
+
Vr as Input,
|
|
207
|
+
br as Invoice,
|
|
208
|
+
vr as InvoiceTotals,
|
|
196
209
|
be as Kanban,
|
|
197
|
-
|
|
198
|
-
|
|
210
|
+
ve as KanbanBoard,
|
|
211
|
+
Hr as Label,
|
|
199
212
|
wo as List,
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
213
|
+
Ro as ListFieldRow,
|
|
214
|
+
Kr as Logo,
|
|
215
|
+
je as MASONRY_BREAKPOINTS,
|
|
216
|
+
He as Masonry,
|
|
217
|
+
jr as Modal,
|
|
218
|
+
Ft as MultiSelect,
|
|
219
|
+
ye as Navbar,
|
|
220
|
+
La as NavbarCommandPalette,
|
|
208
221
|
Me as NavbarGroup,
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
222
|
+
Ae as NavbarItem,
|
|
223
|
+
Ee as NavbarTabs,
|
|
224
|
+
ba as NumberInput,
|
|
225
|
+
Fo as OTPInput,
|
|
226
|
+
It as Pagination,
|
|
227
|
+
Ut as PermissionEditor,
|
|
228
|
+
Gt as PermissionMatrix,
|
|
229
|
+
ja as Price,
|
|
230
|
+
Bt as PricingPlan,
|
|
231
|
+
kt as PricingPlanItem,
|
|
232
|
+
Ot as ProgressBar,
|
|
233
|
+
Le as QRCode,
|
|
234
|
+
ut as SCREEN_CONTEXT_KEY,
|
|
235
|
+
Va as STATUS_MAP,
|
|
236
|
+
Ke as Screen,
|
|
237
|
+
Ye as ScreenFilter,
|
|
238
|
+
_e as ScreenQuickFilters,
|
|
239
|
+
Bo as Sheet,
|
|
240
|
+
ia as SidePanel,
|
|
241
|
+
wt as SidebarMenu,
|
|
242
|
+
Rt as SidebarMenuItem,
|
|
243
|
+
ra as Slider,
|
|
244
|
+
We as Spinner,
|
|
245
|
+
it as Splitter,
|
|
246
|
+
Ce as Stats,
|
|
247
|
+
_a as StatusChip,
|
|
248
|
+
fa as Switch,
|
|
249
|
+
Te as Tabes,
|
|
250
|
+
Ar as TagInput,
|
|
251
|
+
ua as Textarea,
|
|
252
|
+
va as ThemeToggle,
|
|
253
|
+
yr as ThumbnailSelector,
|
|
254
|
+
lr as Timeline,
|
|
255
|
+
ur as TimelineIndicator,
|
|
256
|
+
sr as TimelineItem,
|
|
257
|
+
Ma as ToastNotification,
|
|
258
|
+
la as Tooltip,
|
|
259
|
+
of as VLITE_CONFIG_KEY,
|
|
245
260
|
No as Workbook,
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
261
|
+
Ze as barcodesConstants,
|
|
262
|
+
d as camelCase,
|
|
263
|
+
u as capitalize,
|
|
264
|
+
tf as configState,
|
|
265
|
+
Zt as configure,
|
|
266
|
+
x as copyToClipboard,
|
|
267
|
+
Ya as createVLite,
|
|
268
|
+
i as debounce,
|
|
269
|
+
p as deepMerge,
|
|
270
|
+
n as delay,
|
|
271
|
+
c as downloadFile,
|
|
272
|
+
W as env,
|
|
273
|
+
g as flattenArray,
|
|
274
|
+
T as formatAmPm,
|
|
275
|
+
S as formatCurrency,
|
|
276
|
+
C as formatDate,
|
|
277
|
+
Oo as formatNumber,
|
|
278
|
+
I as formatSchedule,
|
|
279
|
+
Z as getComponentConfig,
|
|
265
280
|
b as getDefaultDateRange,
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
281
|
+
Tr as getFileTypeIcon,
|
|
282
|
+
P as getNextMonth,
|
|
283
|
+
v as getNextYear,
|
|
284
|
+
Yo as getObjectValue,
|
|
285
|
+
h as getPrevMonth,
|
|
271
286
|
D as getPrevYear,
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
287
|
+
mf as getStatusColorClass,
|
|
288
|
+
F as getToday,
|
|
289
|
+
y as getTomorrow,
|
|
275
290
|
N as getUniqueId,
|
|
276
|
-
|
|
277
|
-
|
|
291
|
+
A as getUpcoming,
|
|
292
|
+
B as getYear,
|
|
278
293
|
M as getYesterday,
|
|
279
|
-
|
|
294
|
+
ct as initializeTheme,
|
|
280
295
|
k as isAppleDevice,
|
|
281
|
-
|
|
296
|
+
E as isEmpty,
|
|
282
297
|
w as isPureTimeString,
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
298
|
+
L as isValidTimeRange,
|
|
299
|
+
H as lazySearch,
|
|
300
|
+
za as normalizeStatus,
|
|
301
|
+
R as parseDateTime,
|
|
302
|
+
er as pauseTimers,
|
|
303
|
+
K as randomNumber,
|
|
304
|
+
O as removeExtraProperties,
|
|
305
|
+
or as removeToast,
|
|
306
|
+
Q as resetSearchIndex,
|
|
307
|
+
Ha as resolveStatus,
|
|
308
|
+
tr as resumeTimers,
|
|
309
|
+
j as search,
|
|
310
|
+
rr as showToast,
|
|
311
|
+
Y as slugify,
|
|
312
|
+
G as throttle,
|
|
313
|
+
_ as toISO,
|
|
314
|
+
U as toLocalISO,
|
|
315
|
+
ar as toast,
|
|
316
|
+
V as truncate,
|
|
317
|
+
rf as updateConfig,
|
|
318
|
+
zt as useAdvancedKeyStroke,
|
|
319
|
+
no as useDropdownIds,
|
|
320
|
+
xo as useDropdownSelection,
|
|
321
|
+
ce as useFileUpload,
|
|
322
|
+
ie as useForm,
|
|
308
323
|
De as useKanbanBoard,
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
324
|
+
Ht as useKeyStroke,
|
|
325
|
+
Nt as useMultiSelectHydration,
|
|
326
|
+
fr as useNotifications,
|
|
327
|
+
gt as useTheme,
|
|
328
|
+
ho as useTreeSelection,
|
|
329
|
+
af as useVLiteConfig,
|
|
330
|
+
jt as vScrollReveal
|
|
316
331
|
};
|