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.
- package/components/Chart/BarChart.vue.js +369 -0
- package/components/Chart/BarChart.vue2.js +4 -0
- package/components/Chart/CircleChart.vue.js +137 -0
- package/components/Chart/CircleChart.vue2.js +4 -0
- package/components/Chart/GaugeChart.vue.js +443 -0
- package/components/Chart/GaugeChart.vue2.js +4 -0
- package/components/Chart/LineChart.vue.js +7 -0
- package/components/Chart/LineChart.vue2.js +313 -0
- package/components/Chart/PieChart.vue.js +203 -0
- package/components/Chart/PieChart.vue2.js +4 -0
- package/components/Chart/utils.js +90 -0
- package/components/Footer/Footer.vue.js +35 -0
- package/components/Footer/Footer.vue2.js +4 -0
- package/components/Footer/Variant1.vue.js +178 -0
- package/components/Footer/Variant1.vue2.js +4 -0
- package/components/Footer/Variant2.vue.js +177 -0
- package/components/Footer/Variant2.vue2.js +4 -0
- package/components/Footer/Variant3.vue.js +82 -0
- package/components/Footer/Variant3.vue2.js +4 -0
- package/components/RichTextEditor/RichTextEditor.vue.js +332 -0
- package/components/RichTextEditor/RichTextEditor.vue3.js +5 -0
- package/components/RichTextEditor/RichTextLinkPopover.vue.js +107 -0
- package/components/RichTextEditor/RichTextLinkPopover.vue3.js +5 -0
- package/components/RichTextEditor/RichTextReader.vue.js +7 -0
- package/components/RichTextEditor/RichTextReader.vue2.js +19 -0
- package/components/RichTextEditor/RichTextToolbar.vue.js +330 -0
- package/components/RichTextEditor/RichTextToolbar.vue3.js +5 -0
- package/components/RichTextEditor/composables/useRichTextImageUpload.js +77 -0
- package/components/RichTextEditor/composables/useRichTextLinks.js +120 -0
- package/core/config.d.ts +2 -2
- package/index.d.ts +3 -0
- package/index.js +332 -315
- package/package.json +1 -1
- package/style.css +1 -1
package/index.js
CHANGED
|
@@ -1,341 +1,358 @@
|
|
|
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
|
|
9
|
-
import { default as
|
|
10
|
-
import { default as
|
|
11
|
-
import { default as
|
|
12
|
-
import { default as
|
|
13
|
-
import { default as
|
|
14
|
-
import { useForm as
|
|
15
|
-
import { useFileUpload as
|
|
16
|
-
import { default as
|
|
17
|
-
import { default as
|
|
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
|
|
20
|
-
import { useKanbanBoard as
|
|
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
|
|
23
|
-
import { default as
|
|
24
|
-
import { default as
|
|
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
|
|
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
|
|
37
|
-
import { default as
|
|
38
|
-
import { default as
|
|
39
|
-
import { default as
|
|
40
|
-
import { default as
|
|
41
|
-
import { useDropdownSelection as
|
|
42
|
-
import { useDropdownIds as
|
|
43
|
-
import { default as
|
|
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
|
|
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
|
|
48
|
-
import { default as
|
|
49
|
-
|
|
50
|
-
import { default as
|
|
51
|
-
import { default as
|
|
52
|
-
import { default as
|
|
53
|
-
import { default as Ro } from "./components/
|
|
54
|
-
import {
|
|
55
|
-
import { default as
|
|
56
|
-
import { default as
|
|
57
|
-
import {
|
|
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 { default as
|
|
65
|
-
import { default as
|
|
66
|
-
import { default as
|
|
67
|
-
import {
|
|
68
|
-
import { default as
|
|
69
|
-
import {
|
|
70
|
-
import {
|
|
71
|
-
import { default as
|
|
72
|
-
import { default as
|
|
73
|
-
import {
|
|
74
|
-
import { default as
|
|
75
|
-
import {
|
|
76
|
-
import { default as
|
|
77
|
-
import { default as
|
|
78
|
-
import { default as
|
|
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
|
|
84
|
+
import { default as Ur } from "./components/SidebarMenu/SidebarMenuItem.vue.js";
|
|
81
85
|
/* empty css */
|
|
82
|
-
import { default as
|
|
83
|
-
import { default as
|
|
84
|
-
import { default as
|
|
85
|
-
import { useAdvancedKeyStroke as
|
|
86
|
-
import { vScrollReveal as
|
|
87
|
-
import { default as
|
|
88
|
-
import { default as
|
|
89
|
-
import { configure as
|
|
90
|
-
import { default as
|
|
91
|
-
import { default as
|
|
92
|
-
import { default as
|
|
93
|
-
import { default as
|
|
94
|
-
import { default as
|
|
95
|
-
import { getFileTypeIcon 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
|
|
102
|
-
import { default as
|
|
103
|
-
import { default as
|
|
104
|
-
import { default as
|
|
105
|
-
import { normalizeBone as
|
|
106
|
-
import { snapshotBones as
|
|
107
|
-
import { configureSkeleton as
|
|
108
|
-
import { default as
|
|
109
|
-
import { default as
|
|
110
|
-
import { default as
|
|
111
|
-
import { default as
|
|
112
|
-
import { default as
|
|
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
|
|
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 { default as
|
|
127
|
-
import { default as
|
|
128
|
-
import { default as
|
|
129
|
-
import { default as
|
|
130
|
-
import { default as
|
|
131
|
-
import { default as
|
|
132
|
-
import { default as
|
|
133
|
-
import { default as
|
|
134
|
-
import { default as
|
|
135
|
-
import { default as
|
|
136
|
-
import { default as
|
|
137
|
-
import { default as
|
|
138
|
-
import { createVLite as
|
|
139
|
-
import { default as
|
|
140
|
-
import { STATUS_MAP as
|
|
141
|
-
import { default as
|
|
142
|
-
import { default as
|
|
143
|
-
import { default as
|
|
144
|
-
import { default as
|
|
145
|
-
import { VLITE_CONFIG_KEY as
|
|
146
|
-
import { getStatusColorClass as
|
|
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
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
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
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
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
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
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
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
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
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
Or as
|
|
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
|
-
|
|
239
|
-
|
|
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
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
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
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
299
|
+
I as formatDate,
|
|
300
|
+
Uo as formatNumber,
|
|
301
|
+
h as formatSchedule,
|
|
302
|
+
ee as getComponentConfig,
|
|
286
303
|
b as getDefaultDateRange,
|
|
287
|
-
|
|
288
|
-
|
|
304
|
+
vt as getFileTypeIcon,
|
|
305
|
+
Wt as getGlobalConfig,
|
|
289
306
|
P as getNextMonth,
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
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
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
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
|
-
|
|
304
|
-
|
|
320
|
+
w as isEmpty,
|
|
321
|
+
R as isPureTimeString,
|
|
305
322
|
L as isValidTimeRange,
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
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
|
-
|
|
329
|
+
Xt as registerBones,
|
|
313
330
|
O as removeExtraProperties,
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
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
|
};
|