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