vlite3 1.1.1 → 1.1.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.
- package/components/AttachmentsList/AttachmentsList.vue.d.ts +1 -16
- package/components/AttachmentsList/AttachmentsList.vue.js +191 -167
- package/components/AvatarUploader/AvatarUploader.vue.d.ts +1 -1
- package/components/Button.vue.d.ts +1 -1
- package/components/Calendar/Calendar.vue.d.ts +6 -6
- package/components/Carousel/Carousel.vue.d.ts +2 -2
- package/components/CategoryManager/CategoryManager.vue.d.ts +2 -1
- package/components/CategoryManager/CategoryManager.vue.js +187 -147
- package/components/CategoryManager/types.d.ts +14 -0
- package/components/Chip/Chip.vue.d.ts +2 -2
- package/components/CommandPalette/CommandPaletteContent.vue2.js +1 -1
- package/components/CommandPalette/{CommandPaletteItem.vue2.js → CommandPaletteItem.vue.js} +1 -1
- package/components/ConfirmationModal.vue.d.ts +2 -2
- package/components/CustomFieldsDisplay/CustomFieldsDisplay.vue.d.ts +1 -1
- package/components/DataTable/DataTable.vue.d.ts +3 -3
- package/components/Dropdown/Dropdown.vue.d.ts +2 -2
- package/components/Dropdown/DropdownGroupedLayout.vue.d.ts +1 -1
- package/components/Dropdown/DropdownMenu.vue.d.ts +1 -1
- package/components/Dropdown/DropdownTrigger.vue.d.ts +1 -1
- package/components/FilePicker/FilePicker.vue.d.ts +1 -1
- package/components/Form/Form.vue.js +2 -2
- package/components/Form/Form.vue2.js +220 -232
- package/components/Form/FormField.vue.d.ts +1 -1
- package/components/Input.vue.d.ts +3 -3
- package/components/Invoice/Invoice.vue.d.ts +1 -4
- package/components/Invoice/Invoice.vue.js +20 -13
- package/components/Invoice/InvoiceVariant1.vue.d.ts +3 -0
- package/components/Invoice/InvoiceVariant1.vue.js +302 -256
- package/components/Invoice/InvoiceVariant2.vue.d.ts +3 -0
- package/components/Invoice/InvoiceVariant2.vue.js +164 -168
- package/components/Invoice/InvoiceVariant3.vue.d.ts +3 -0
- package/components/Invoice/InvoiceVariant3.vue.js +213 -170
- package/components/Invoice/InvoiceVariant4.vue.d.ts +3 -0
- package/components/Invoice/InvoiceVariant4.vue.js +280 -227
- package/components/Invoice/types.d.ts +4 -0
- package/components/List/List.vue.d.ts +1 -9
- package/components/List/List.vue.js +166 -165
- package/components/List/ListFieldRow.vue.d.ts +2 -2
- package/components/List/ListFieldRow.vue.js +50 -50
- package/components/MultiSelect/MultiSelect.vue.d.ts +1 -1
- package/components/Navbar/NavbarItem.vue.d.ts +1 -1
- package/components/NavbarCommandPalette.vue.js +1 -1
- package/components/NumberInput.vue.d.ts +2 -2
- package/components/OTPInput/OTPInput.vue.d.ts +1 -1
- package/components/PricingPlan/PricingPlan.vue.d.ts +1 -1
- package/components/SidebarMenu/SidebarMenu.vue.d.ts +1 -1
- package/components/Stats/Stats.vue.d.ts +1 -1
- package/components/StatusChip/status-map.js +27 -7
- package/components/ThumbnailSelector/ThumbnailSelector.vue.d.ts +2 -2
- package/components/Workbook/Workbook.vue.d.ts +3 -3
- package/core/config.d.ts +76 -0
- package/core/index.js +17 -5
- package/index.js +264 -262
- package/package.json +1 -1
- package/style.css +2 -2
- package/types/config.type.d.ts +6 -0
- package/types/list.type.d.ts +6 -0
- package/utils/configUtils.d.ts +9 -0
- package/utils/configUtils.js +7 -0
- package/utils/index.d.ts +1 -0
package/index.js
CHANGED
|
@@ -4,251 +4,252 @@ import { camelCase as p, capitalize as d, copyToClipboard as u, debounce as x, d
|
|
|
4
4
|
import { lazySearch as z, resetSearchIndex as H, search as Q } from "./utils/search.util.js";
|
|
5
5
|
import { env as q } from "./utils/env.js";
|
|
6
6
|
import { $t as X } from "./utils/i18n.js";
|
|
7
|
-
import {
|
|
8
|
-
import { default as ee } from "./components/
|
|
9
|
-
import { default as re } from "./components/Form/
|
|
10
|
-
import { default as ae } from "./components/Form/
|
|
11
|
-
import { default as me } from "./components/Form/
|
|
12
|
-
import { default as se } from "./components/Form/
|
|
13
|
-
import {
|
|
14
|
-
import {
|
|
15
|
-
import {
|
|
16
|
-
import { default as ge } from "./components/
|
|
17
|
-
import { default as Se } from "./components/
|
|
18
|
-
import { default as be } from "./components/Kanban/
|
|
19
|
-
import {
|
|
20
|
-
import {
|
|
21
|
-
import { default as Fe } from "./components/Navbar/
|
|
22
|
-
import { default as ye } from "./components/Navbar/
|
|
23
|
-
import { default as Me } from "./components/Navbar/
|
|
7
|
+
import { getComponentConfig as J } from "./utils/configUtils.js";
|
|
8
|
+
import { default as ee } from "./components/Chip/Chip.vue.js";
|
|
9
|
+
import { default as re } from "./components/Form/Form.vue.js";
|
|
10
|
+
import { default as ae } from "./components/Form/FormField.vue.js";
|
|
11
|
+
import { default as me } from "./components/Form/FormFields.vue.js";
|
|
12
|
+
import { default as se } from "./components/Form/CustomFields.vue.js";
|
|
13
|
+
import { default as de } from "./components/Form/FormSkeleton.vue.js";
|
|
14
|
+
import { useForm as xe } from "./components/Form/composables/useForm.js";
|
|
15
|
+
import { useFileUpload as ne } from "./components/Form/composables/useFileUpload.js";
|
|
16
|
+
import { default as ge } from "./components/Tabes/Tabes.vue.js";
|
|
17
|
+
import { default as Se } from "./components/Stats/Stats.vue.js";
|
|
18
|
+
import { default as be } from "./components/Kanban/Kanban.vue.js";
|
|
19
|
+
import { default as Pe } from "./components/Kanban/KanbanBoard.vue.js";
|
|
20
|
+
import { useKanbanBoard as De } from "./components/Kanban/useKanbanBoard.js";
|
|
21
|
+
import { default as Fe } from "./components/Navbar/Navbar.vue.js";
|
|
22
|
+
import { default as ye } from "./components/Navbar/NavbarItem.vue.js";
|
|
23
|
+
import { default as Me } from "./components/Navbar/NavbarGroup.vue.js";
|
|
24
|
+
import { default as Be } from "./components/Navbar/NavbarTabs.vue.js";
|
|
24
25
|
/* empty css */
|
|
25
|
-
import { default as
|
|
26
|
-
import { default as
|
|
27
|
-
import { default as
|
|
28
|
-
import { default as
|
|
29
|
-
import { default as
|
|
30
|
-
import { default as
|
|
31
|
-
import { MASONRY_BREAKPOINTS as
|
|
32
|
-
import { default as
|
|
33
|
-
import { default as
|
|
34
|
-
import { barcodesConstants as
|
|
35
|
-
import { default as
|
|
36
|
-
import { default as
|
|
37
|
-
import { default as
|
|
38
|
-
import { default as
|
|
39
|
-
import { default as
|
|
40
|
-
import { useDropdownSelection as
|
|
41
|
-
import { useDropdownIds as
|
|
42
|
-
import { default as
|
|
43
|
-
import { default as
|
|
44
|
-
import { default as
|
|
45
|
-
import { default as
|
|
46
|
-
import { useTreeSelection as
|
|
47
|
-
import { default as
|
|
48
|
-
import { default as
|
|
49
|
-
import { default as
|
|
50
|
-
import { default as
|
|
51
|
-
import { default as
|
|
52
|
-
import { default as
|
|
53
|
-
import { formatNumber as
|
|
54
|
-
import { default 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 { SCREEN_CONTEXT_KEY as
|
|
64
|
-
import { initializeTheme as
|
|
65
|
-
import { default as
|
|
66
|
-
import { default as
|
|
67
|
-
import { default as
|
|
68
|
-
import { default as
|
|
69
|
-
import { default as
|
|
70
|
-
import { useMultiSelectHydration as
|
|
71
|
-
import { default as
|
|
72
|
-
import { default as
|
|
73
|
-
import { default as
|
|
74
|
-
import { default as
|
|
26
|
+
import { default as Ee } from "./components/QRCode/QRCode.vue.js";
|
|
27
|
+
import { default as Re } from "./components/Screen/Screen.vue.js";
|
|
28
|
+
import { default as Oe } from "./components/Screen/ScreenFilter.vue.js";
|
|
29
|
+
import { default as Ge } from "./components/Screen/components/ScreenQuickFilters.vue.js";
|
|
30
|
+
import { default as Ue } from "./components/Heatmap/Heatmap.vue.js";
|
|
31
|
+
import { default as ze } from "./components/Masonry/Masonry.vue.js";
|
|
32
|
+
import { MASONRY_BREAKPOINTS as Qe } from "./components/Masonry/types.js";
|
|
33
|
+
import { default as qe } from "./components/Spinner/Spinner.vue.js";
|
|
34
|
+
import { default as Xe } from "./components/Barcode/Barcode.vue.js";
|
|
35
|
+
import { barcodesConstants as Je } from "./components/Barcode/types.js";
|
|
36
|
+
import { default as eo } from "./components/Carousel/Carousel.vue.js";
|
|
37
|
+
import { default as ro } from "./components/Dropdown/Dropdown.vue.js";
|
|
38
|
+
import { default as ao } from "./components/Dropdown/DropdownMenu.vue.js";
|
|
39
|
+
import { default as mo } from "./components/Dropdown/DropdownTrigger.vue.js";
|
|
40
|
+
import { default as so } from "./components/Dropdown/DropdownItem.vue.js";
|
|
41
|
+
import { useDropdownSelection as uo } from "./components/Dropdown/composables/useDropdownSelection.js";
|
|
42
|
+
import { useDropdownIds as io } from "./components/Dropdown/composables/useDropdownIds.js";
|
|
43
|
+
import { default as co } from "./components/Breadcrumb/Breadcrumb.vue.js";
|
|
44
|
+
import { default as To } from "./components/Breadcrumb/BreadcrumbItem.vue.js";
|
|
45
|
+
import { default as Co } from "./components/FileTree/FileTree.vue.js";
|
|
46
|
+
import { default as Io } from "./components/FileTree/FileTreeNode.vue.js";
|
|
47
|
+
import { useTreeSelection as vo } from "./components/FileTree/useTreeSelection.js";
|
|
48
|
+
import { default as ho } from "./components/OTPInput/OTPInput.vue.js";
|
|
49
|
+
import { default as No } from "./components/Workbook/Workbook.vue.js";
|
|
50
|
+
import { default as Ao } from "./components/Workbook/Sheet.vue.js";
|
|
51
|
+
import { default as ko } from "./components/DataList/DataList.vue.js";
|
|
52
|
+
import { default as wo } from "./components/List/List.vue.js";
|
|
53
|
+
import { default as Lo } from "./components/List/ListFieldRow.vue.js";
|
|
54
|
+
import { formatNumber as Ko, getObjectValue as Oo } from "./components/List/utils.js";
|
|
55
|
+
import { default as Go } from "./components/Empty/Empty.vue.js";
|
|
56
|
+
import { default as Uo } from "./components/Accordion/Accordion.vue.js";
|
|
57
|
+
import { default as zo } from "./components/Accordion/AccordionItem.vue.js";
|
|
58
|
+
import { default as Qo } from "./components/Accordion/AccordionTrigger.vue.js";
|
|
59
|
+
import { default as qo } from "./components/Accordion/AccordionContent.vue.js";
|
|
60
|
+
import { default as Xo } from "./components/ChoiceBox/ChoiceBox.vue.js";
|
|
61
|
+
import { default as Jo } from "./components/DataTable/DataTable.vue.js";
|
|
62
|
+
import { default as er } from "./components/DataTable/DataTableHeader.vue.js";
|
|
63
|
+
import { default as rr } from "./components/DataTable/DataTableRow.vue.js";
|
|
64
|
+
import { SCREEN_CONTEXT_KEY as ar } from "./components/DataTable/types.js";
|
|
65
|
+
import { initializeTheme as mr, useTheme as lr } from "./composables/useTheme.js";
|
|
66
|
+
import { default as pr } from "./components/FilePicker/FilePicker.vue.js";
|
|
67
|
+
import { default as ur } from "./components/Pagination/Pagination.vue.js";
|
|
68
|
+
import { default as ir } from "./components/ExportData/ExportData.vue.js";
|
|
69
|
+
import { default as cr } from "./components/ImportData/ImportData.vue.js";
|
|
70
|
+
import { default as Tr } from "./components/MultiSelect/MultiSelect.vue.js";
|
|
71
|
+
import { useMultiSelectHydration as Cr } from "./components/MultiSelect/composables/useMultiSelectHydration.js";
|
|
72
|
+
import { default as Ir } from "./components/PricingPlan/PricingPlan.vue.js";
|
|
73
|
+
import { default as vr } from "./components/PricingPlan/PricingPlanItem.vue.js";
|
|
74
|
+
import { default as hr } from "./components/SidebarMenu/SidebarMenu.vue.js";
|
|
75
|
+
import { default as Nr } from "./components/SidebarMenu/SidebarMenuItem.vue.js";
|
|
75
76
|
/* empty css */
|
|
76
|
-
import { default as
|
|
77
|
-
import { default as
|
|
78
|
-
import { default as
|
|
79
|
-
import { useAdvancedKeyStroke as
|
|
80
|
-
import { vScrollReveal as
|
|
81
|
-
import { default as
|
|
82
|
-
import { default as
|
|
83
|
-
import { configure as
|
|
84
|
-
import { default as
|
|
85
|
-
import { default as
|
|
86
|
-
import { default as
|
|
87
|
-
import { default as
|
|
88
|
-
import { default as
|
|
89
|
-
import { getFileTypeIcon as
|
|
90
|
-
import { default 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
|
|
77
|
+
import { default as Ar } from "./components/ProgressBar/ProgressBar.vue.js";
|
|
78
|
+
import { default as kr } from "./components/PermissionMatrix/PermissionMatrix.vue.js";
|
|
79
|
+
import { default as wr } from "./components/PermissionMatrix/PermissionEditor.vue.js";
|
|
80
|
+
import { useAdvancedKeyStroke as Lr, useKeyStroke as Rr } from "./composables/useKeyStroke.js";
|
|
81
|
+
import { vScrollReveal as Or } from "./directives/vScrollReveal.js";
|
|
82
|
+
import { default as Gr } from "./components/AvatarUploader/AvatarUploader.vue.js";
|
|
83
|
+
import { default as Ur } from "./components/AvatarGroup/AvatarGroup.vue.js";
|
|
84
|
+
import { configure as zr, pauseTimers as Hr, removeToast as Qr, resumeTimers as jr, showToast as qr, toast as Wr, useNotifications as Xr } from "./composables/useNotifications.js";
|
|
85
|
+
import { default as Jr } from "./components/Timeline/Timeline.vue.js";
|
|
86
|
+
import { default as et } from "./components/Timeline/TimelineItem.vue.js";
|
|
87
|
+
import { default as rt } from "./components/Timeline/TimelineIndicator.vue.js";
|
|
88
|
+
import { default as at } from "./components/FilePreview/FilePreview.vue.js";
|
|
89
|
+
import { default as mt } from "./components/AttachmentsList/AttachmentsList.vue.js";
|
|
90
|
+
import { getFileTypeIcon as st } from "./components/AttachmentsList/fileTypeIcon.js";
|
|
91
|
+
import { default as dt } from "./components/CustomFieldsDisplay/CustomFieldsDisplay.vue.js";
|
|
92
|
+
import { default as xt } from "./components/Invoice/Invoice.vue.js";
|
|
93
|
+
import { default as nt } from "./components/CategoryManager/CategoryManager.vue.js";
|
|
94
|
+
import { default as gt } from "./components/ThumbnailSelector/ThumbnailSelector.vue.js";
|
|
95
|
+
import { default as St } from "./components/Calendar/Calendar.vue.js";
|
|
96
|
+
import { default as bt } from "./components/Calendar/CalendarEventItem.vue.js";
|
|
97
|
+
import { default as Pt } from "./components/Icon.vue.js";
|
|
98
|
+
import { default as Dt } from "./components/Logo.vue.js";
|
|
99
|
+
import { default as Ft } from "./components/Alert.vue.js";
|
|
100
|
+
import { default as yt } from "./components/Badge.vue.js";
|
|
101
|
+
import { default as Mt } from "./components/Input.vue.js";
|
|
101
102
|
/* empty css */
|
|
102
|
-
import { default as
|
|
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 { createVLite as
|
|
126
|
-
import { default as
|
|
127
|
-
import { STATUS_MAP as
|
|
128
|
-
import { default as
|
|
129
|
-
import { default as
|
|
130
|
-
import { default as
|
|
131
|
-
import { default as
|
|
132
|
-
import { VLITE_CONFIG_KEY as
|
|
133
|
-
import { getStatusColorClass as
|
|
103
|
+
import { default as Bt } from "./components/Label.vue.js";
|
|
104
|
+
import { default as Et } from "./components/Modal.vue.js";
|
|
105
|
+
import { default as Rt } from "./components/Avatar.vue.js";
|
|
106
|
+
import { default as Ot } from "./components/Button.vue.js";
|
|
107
|
+
import { default as Gt } from "./components/BackButton.vue.js";
|
|
108
|
+
import { default as Ut } from "./components/Slider.vue.js";
|
|
109
|
+
import { default as zt } from "./components/Switch.vue.js";
|
|
110
|
+
import { default as Qt } from "./components/Tooltip.vue.js";
|
|
111
|
+
import { default as qt } from "./components/CheckBox.vue.js";
|
|
112
|
+
import { default as Xt } from "./components/Textarea.vue.js";
|
|
113
|
+
import { default as Jt } from "./components/SidePanel.vue.js";
|
|
114
|
+
import { default as ea } from "./components/DatePicker.vue.js";
|
|
115
|
+
import { default as ra } from "./components/IconPicker.vue.js";
|
|
116
|
+
import { default as aa } from "./components/ButtonGroup.vue.js";
|
|
117
|
+
import { default as ma } from "./components/NumberInput.vue.js";
|
|
118
|
+
import { default as sa } from "./components/ThemeToggle.vue.js";
|
|
119
|
+
import { default as da } from "./components/GoogleLogin.vue.js";
|
|
120
|
+
import { default as xa } from "./components/ColorPicker/ColorPicker.vue.js";
|
|
121
|
+
import { default as na } from "./components/ConfirmationModal.vue.js";
|
|
122
|
+
import { default as ga } from "./components/ToastNotification.vue.js";
|
|
123
|
+
import { default as Sa } from "./components/CommandPalette/CommandPaletteContent.vue.js";
|
|
124
|
+
import { default as ba } from "./components/NavbarCommandPalette.vue.js";
|
|
125
|
+
import { default as Pa } from "./components/DateRangePicker.vue.js";
|
|
126
|
+
import { createVLite as Da } from "./core/index.js";
|
|
127
|
+
import { default as Fa } from "./components/StatusChip/StatusChip.vue.js";
|
|
128
|
+
import { STATUS_MAP as ya, normalizeStatus as Aa, resolveStatus as Ma } from "./components/StatusChip/status-map.js";
|
|
129
|
+
import { default as Ba } from "./components/Price/Price.vue.js";
|
|
130
|
+
import { default as Ea } from "./components/DateTime/DateTime.vue.js";
|
|
131
|
+
import { default as Ra } from "./components/Clock/Clock.vue.js";
|
|
132
|
+
import { default as Oa } from "./components/Chat/ChatInterface.vue.js";
|
|
133
|
+
import { VLITE_CONFIG_KEY as Ga, configState as _a, updateConfig as Ua, useVLiteConfig as Va } from "./core/config.js";
|
|
134
|
+
import { getStatusColorClass as Ha } from "./utils/status.js";
|
|
134
135
|
export {
|
|
135
136
|
X as $t,
|
|
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
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
137
|
+
Uo as Accordion,
|
|
138
|
+
qo as AccordionContent,
|
|
139
|
+
zo as AccordionItem,
|
|
140
|
+
Qo as AccordionTrigger,
|
|
141
|
+
Ft as Alert,
|
|
142
|
+
mt as AttachmentsList,
|
|
143
|
+
Rt as Avatar,
|
|
144
|
+
Ur as AvatarGroup,
|
|
145
|
+
Gr as AvatarUploader,
|
|
146
|
+
Gt as BackButton,
|
|
147
|
+
yt as Badge,
|
|
148
|
+
Xe as Barcode,
|
|
149
|
+
co as Breadcrumb,
|
|
150
|
+
To as BreadcrumbItem,
|
|
151
|
+
Ot as Button,
|
|
152
|
+
aa as ButtonGroup,
|
|
153
|
+
St as Calendar,
|
|
154
|
+
bt as CalendarEventItem,
|
|
155
|
+
eo as Carousel,
|
|
156
|
+
nt as CategoryManager,
|
|
157
|
+
Oa as ChatInterface,
|
|
158
|
+
qt as CheckBox,
|
|
159
|
+
ee as Chip,
|
|
160
|
+
Xo as ChoiceBox,
|
|
161
|
+
Ra as Clock,
|
|
162
|
+
xa as ColorPicker,
|
|
163
|
+
Sa as CommandPaletteContent,
|
|
164
|
+
na as ConfirmationModal,
|
|
165
|
+
se as CustomFields,
|
|
166
|
+
dt as CustomFieldsDisplay,
|
|
167
|
+
ko as DataList,
|
|
168
|
+
Jo as DataTable,
|
|
169
|
+
er as DataTableHeader,
|
|
170
|
+
rr as DataTableRow,
|
|
171
|
+
ea as DatePicker,
|
|
172
|
+
Pa as DateRangePicker,
|
|
173
|
+
Ea as DateTime,
|
|
174
|
+
ro as Dropdown,
|
|
175
|
+
so as DropdownItem,
|
|
176
|
+
ao as DropdownMenu,
|
|
177
|
+
mo as DropdownTrigger,
|
|
178
|
+
Go as Empty,
|
|
179
|
+
ir as ExportData,
|
|
180
|
+
pr as FilePicker,
|
|
181
|
+
at as FilePreview,
|
|
182
|
+
Co as FileTree,
|
|
183
|
+
Io as FileTreeNode,
|
|
184
|
+
re as Form,
|
|
185
|
+
ae as FormField,
|
|
186
|
+
me as FormFields,
|
|
187
|
+
de as FormSkeleton,
|
|
188
|
+
da as GoogleLogin,
|
|
188
189
|
f as GoogleSignInPlugin,
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
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
|
-
|
|
245
|
-
|
|
190
|
+
Ue as Heatmap,
|
|
191
|
+
Pt as Icon,
|
|
192
|
+
ra as IconPicker,
|
|
193
|
+
cr as ImportData,
|
|
194
|
+
Mt as Input,
|
|
195
|
+
xt as Invoice,
|
|
196
|
+
be as Kanban,
|
|
197
|
+
Pe as KanbanBoard,
|
|
198
|
+
Bt as Label,
|
|
199
|
+
wo as List,
|
|
200
|
+
Lo as ListFieldRow,
|
|
201
|
+
Dt as Logo,
|
|
202
|
+
Qe as MASONRY_BREAKPOINTS,
|
|
203
|
+
ze as Masonry,
|
|
204
|
+
Et as Modal,
|
|
205
|
+
Tr as MultiSelect,
|
|
206
|
+
Fe as Navbar,
|
|
207
|
+
ba as NavbarCommandPalette,
|
|
208
|
+
Me as NavbarGroup,
|
|
209
|
+
ye as NavbarItem,
|
|
210
|
+
Be as NavbarTabs,
|
|
211
|
+
ma as NumberInput,
|
|
212
|
+
ho as OTPInput,
|
|
213
|
+
ur as Pagination,
|
|
214
|
+
wr as PermissionEditor,
|
|
215
|
+
kr as PermissionMatrix,
|
|
216
|
+
Ba as Price,
|
|
217
|
+
Ir as PricingPlan,
|
|
218
|
+
vr as PricingPlanItem,
|
|
219
|
+
Ar as ProgressBar,
|
|
220
|
+
Ee as QRCode,
|
|
221
|
+
ar as SCREEN_CONTEXT_KEY,
|
|
222
|
+
ya as STATUS_MAP,
|
|
223
|
+
Re as Screen,
|
|
224
|
+
Oe as ScreenFilter,
|
|
225
|
+
Ge as ScreenQuickFilters,
|
|
226
|
+
Ao as Sheet,
|
|
227
|
+
Jt as SidePanel,
|
|
228
|
+
hr as SidebarMenu,
|
|
229
|
+
Nr as SidebarMenuItem,
|
|
230
|
+
Ut as Slider,
|
|
231
|
+
qe as Spinner,
|
|
232
|
+
Se as Stats,
|
|
233
|
+
Fa as StatusChip,
|
|
234
|
+
zt as Switch,
|
|
235
|
+
ge as Tabes,
|
|
236
|
+
Xt as Textarea,
|
|
237
|
+
sa as ThemeToggle,
|
|
238
|
+
gt as ThumbnailSelector,
|
|
239
|
+
Jr as Timeline,
|
|
240
|
+
rt as TimelineIndicator,
|
|
241
|
+
et as TimelineItem,
|
|
242
|
+
ga as ToastNotification,
|
|
243
|
+
Qt as Tooltip,
|
|
244
|
+
Ga as VLITE_CONFIG_KEY,
|
|
245
|
+
No as Workbook,
|
|
246
|
+
Je as barcodesConstants,
|
|
246
247
|
p as camelCase,
|
|
247
248
|
d as capitalize,
|
|
248
|
-
|
|
249
|
-
|
|
249
|
+
_a as configState,
|
|
250
|
+
zr as configure,
|
|
250
251
|
u as copyToClipboard,
|
|
251
|
-
|
|
252
|
+
Da as createVLite,
|
|
252
253
|
x as debounce,
|
|
253
254
|
l as deepMerge,
|
|
254
255
|
i as delay,
|
|
@@ -258,57 +259,58 @@ export {
|
|
|
258
259
|
g as formatAmPm,
|
|
259
260
|
T as formatCurrency,
|
|
260
261
|
S as formatDate,
|
|
261
|
-
|
|
262
|
+
Ko as formatNumber,
|
|
262
263
|
C as formatSchedule,
|
|
264
|
+
J as getComponentConfig,
|
|
263
265
|
b as getDefaultDateRange,
|
|
264
|
-
|
|
266
|
+
st as getFileTypeIcon,
|
|
265
267
|
I as getNextMonth,
|
|
266
268
|
P as getNextYear,
|
|
267
|
-
|
|
269
|
+
Oo as getObjectValue,
|
|
268
270
|
v as getPrevMonth,
|
|
269
271
|
D as getPrevYear,
|
|
270
|
-
|
|
272
|
+
Ha as getStatusColorClass,
|
|
271
273
|
h as getToday,
|
|
272
274
|
F as getTomorrow,
|
|
273
275
|
N as getUniqueId,
|
|
274
276
|
y as getUpcoming,
|
|
275
277
|
A as getYear,
|
|
276
278
|
M as getYesterday,
|
|
277
|
-
|
|
279
|
+
mr as initializeTheme,
|
|
278
280
|
k as isAppleDevice,
|
|
279
281
|
B as isEmpty,
|
|
280
282
|
w as isPureTimeString,
|
|
281
283
|
E as isValidTimeRange,
|
|
282
284
|
z as lazySearch,
|
|
283
|
-
|
|
285
|
+
Aa as normalizeStatus,
|
|
284
286
|
L as parseDateTime,
|
|
285
|
-
|
|
287
|
+
Hr as pauseTimers,
|
|
286
288
|
R as randomNumber,
|
|
287
289
|
K as removeExtraProperties,
|
|
288
|
-
|
|
290
|
+
Qr as removeToast,
|
|
289
291
|
H as resetSearchIndex,
|
|
290
|
-
|
|
291
|
-
|
|
292
|
+
Ma as resolveStatus,
|
|
293
|
+
jr as resumeTimers,
|
|
292
294
|
Q as search,
|
|
293
|
-
|
|
295
|
+
qr as showToast,
|
|
294
296
|
O as slugify,
|
|
295
297
|
Y as throttle,
|
|
296
298
|
G as toISO,
|
|
297
299
|
_ as toLocalISO,
|
|
298
|
-
|
|
300
|
+
Wr as toast,
|
|
299
301
|
U as truncate,
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
302
|
+
Ua as updateConfig,
|
|
303
|
+
Lr as useAdvancedKeyStroke,
|
|
304
|
+
io as useDropdownIds,
|
|
305
|
+
uo as useDropdownSelection,
|
|
306
|
+
ne as useFileUpload,
|
|
307
|
+
xe as useForm,
|
|
308
|
+
De as useKanbanBoard,
|
|
309
|
+
Rr as useKeyStroke,
|
|
310
|
+
Cr as useMultiSelectHydration,
|
|
311
|
+
Xr as useNotifications,
|
|
312
|
+
lr as useTheme,
|
|
313
|
+
vo as useTreeSelection,
|
|
314
|
+
Va as useVLiteConfig,
|
|
315
|
+
Or as vScrollReveal
|
|
314
316
|
};
|