vlite3 1.4.32 → 1.4.34
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 +7 -0
- package/components/Alert.vue.js +45 -40
- package/components/Barcode/Barcode.vue.js +34 -21
- package/components/CategoryManager/CategoryNode.vue.js +30 -30
- package/components/CategoryMenu/CategoryMenu.vue.js +9 -11
- package/components/Chart/GanttChart.vue.d.ts +5 -1
- package/components/Chart/GanttChart.vue.js +2 -2
- package/components/Chart/GanttChart.vue2.js +977 -812
- package/components/Chart/GanttChartConnectorRouting.d.ts +83 -0
- package/components/Chart/GanttChartConnectorRouting.js +405 -0
- package/components/Chart/GanttChartDependencyUtils.js +43 -47
- package/components/Chart/types.d.ts +16 -1
- package/components/ColorPicker/ColorIro.vue2.js +78 -64
- package/components/ColorPicker/ColorPicker.vue.d.ts +5 -0
- package/components/ColorPicker/ColorPicker.vue.js +110 -64
- package/components/ColorPicker/constants.d.ts +2 -0
- package/components/ColorPicker/constants.js +4 -0
- package/components/ColorPicker/index.d.ts +1 -0
- package/components/Dropdown/Dropdown.vue.js +100 -97
- package/components/ExportData/ExportData.vue.js +85 -63
- package/components/FilePreview/FilePreview.vue.js +31 -13
- package/components/Form/FormField.vue.js +9 -8
- package/components/ImportData/ImportStep1.vue.js +80 -75
- package/components/Kanban/Kanban.vue.d.ts +16 -2
- package/components/Kanban/Kanban.vue.js +2 -2
- package/components/Kanban/Kanban.vue2.js +150 -86
- package/components/Kanban/types.d.ts +37 -0
- package/components/QRCode/QRCode.vue.js +31 -26
- package/components/ToastNotification.vue.js +1 -1
- package/components/ToastNotification.vue2.js +3 -3
- package/components/index.d.ts +1 -1
- package/composables/useKeyStroke.d.ts +18 -0
- package/composables/useKeyStroke.js +103 -77
- package/composables/useTheme.js +1 -1
- package/directives/vScrollReveal.js +23 -18
- package/index.d.ts +1 -0
- package/index.js +235 -233
- package/package.json +11 -4
- package/style.css +1 -1
- package/utils/UtilsModuleInterop.d.ts +6 -0
- package/utils/UtilsModuleInterop.js +9 -0
- package/utils/environment.d.ts +29 -0
- package/utils/environment.js +4 -0
- package/utils/functions.js +14 -13
package/index.js
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { default as p } from "vue3-google-signin";
|
|
2
2
|
import { deepMerge as u } from "./utils/object.js";
|
|
3
|
-
import { camelCase as x, capitalize as i, copyToClipboard as n, debounce as c, delay as S, downloadFile as C, flattenArray as T, formatAmPm as g, formatCurrency as h, formatDate as D, formatNumber as P, formatSchedule as
|
|
3
|
+
import { camelCase as x, capitalize as i, copyToClipboard as n, debounce as c, delay as S, downloadFile as C, flattenArray as T, formatAmPm as g, formatCurrency as h, formatDate as D, formatNumber as P, formatSchedule as I, getDefaultDateRange as b, getNextMonth as E, getNextYear as v, getPrevMonth as y, getPrevYear as A, getToday as R, getTomorrow as L, getUniqueId as B, getUpcoming as N, getYear as F, getYesterday as _, isAppleDevice as k, isEmpty as O, isPureTimeString as M, isValidTimeRange as w, parseDateTime as G, randomNumber as K, removeExtraProperties as Y, slugify as U, throttle as z, toISO as V, toLocalISO as H, truncate as X } from "./utils/functions.js";
|
|
4
4
|
import { lazySearch as Q, resetSearchIndex as j, search as q } from "./utils/search.util.js";
|
|
5
5
|
import { env as Z } from "./utils/env.js";
|
|
6
6
|
import { $t as ee, resolveI18nText as re } from "./utils/i18n.js";
|
|
7
|
-
import { getComponentConfig as
|
|
7
|
+
import { getComponentConfig as te } from "./utils/configUtils.js";
|
|
8
8
|
import { hexToHSL as fe, isDarkColor as me, mixColorHex as le } from "./utils/colorUtils.js";
|
|
9
9
|
import { default as se } from "./components/Chip/Chip.vue.js";
|
|
10
10
|
import { default as de } from "./components/Form/Form.vue.js";
|
|
@@ -13,26 +13,26 @@ import { default as ce } from "./components/Form/FormFields.vue.js";
|
|
|
13
13
|
import { default as Ce } from "./components/Form/index.vue.js";
|
|
14
14
|
import { default as ge } from "./components/Form/FormSkeleton.vue.js";
|
|
15
15
|
import { useForm as De } from "./components/Form/composables/useForm.js";
|
|
16
|
-
import { useFileUpload as
|
|
16
|
+
import { useFileUpload as Ie } from "./components/Form/composables/useFileUpload.js";
|
|
17
17
|
import { default as Ee } from "./components/Tabes/Tabes.vue.js";
|
|
18
18
|
import { default as ye } from "./components/Stats/Stats.vue.js";
|
|
19
19
|
/* empty css */
|
|
20
|
-
import { default as
|
|
21
|
-
import { default as
|
|
20
|
+
import { default as Re } from "./components/Kanban/Kanban.vue.js";
|
|
21
|
+
import { default as Be } from "./components/Kanban/KanbanBoard.vue.js";
|
|
22
22
|
import { useKanbanBoard as Fe } from "./components/Kanban/useKanbanBoard.js";
|
|
23
|
-
import { default as
|
|
24
|
-
import { default as
|
|
23
|
+
import { default as ke } from "./components/Navbar/Navbar.vue.js";
|
|
24
|
+
import { default as Me } from "./components/Navbar/NavbarItem.vue.js";
|
|
25
25
|
import { default as Ge } from "./components/Navbar/NavbarGroup.vue.js";
|
|
26
|
-
import { default as
|
|
26
|
+
import { default as Ye } from "./components/Navbar/NavbarTabs.vue.js";
|
|
27
27
|
/* empty css */
|
|
28
|
-
import { default as
|
|
28
|
+
import { default as ze } from "./components/QRCode/QRCode.vue.js";
|
|
29
29
|
import { default as He } from "./components/Screen/Screen.vue.js";
|
|
30
30
|
import { default as We } from "./components/Screen/ScreenFilter.vue.js";
|
|
31
31
|
import { default as je } from "./components/Screen/components/ScreenQuickFilters.vue.js";
|
|
32
32
|
import { default as Je } from "./components/Heatmap/Heatmap.vue.js";
|
|
33
33
|
import { default as $e } from "./components/Masonry/Masonry.vue.js";
|
|
34
34
|
import { MASONRY_BREAKPOINTS as rr } from "./components/Masonry/types.js";
|
|
35
|
-
import { default as
|
|
35
|
+
import { default as tr } from "./components/Spinner/Spinner.vue.js";
|
|
36
36
|
import { default as fr } from "./components/Barcode/Barcode.vue.js";
|
|
37
37
|
import { barcodesConstants as lr } from "./components/Barcode/types.js";
|
|
38
38
|
import { default as sr } from "./components/Carousel/Carousel.vue.js";
|
|
@@ -42,72 +42,72 @@ import { default as cr } from "./components/Cart/CartSummary.vue.js";
|
|
|
42
42
|
import { default as Cr } from "./components/Cart/CartCouponInput.vue.js";
|
|
43
43
|
import { default as gr } from "./components/Cart/CartEmptyState.vue.js";
|
|
44
44
|
import { useCart as Dr } from "./components/Cart/composables/useCart.js";
|
|
45
|
-
import { calculateCartTotals as
|
|
46
|
-
import { default as
|
|
47
|
-
import { default as
|
|
48
|
-
import { default as
|
|
45
|
+
import { calculateCartTotals as Ir, computeCouponDiscount as br, computeShipping as Er, computeTax as vr, sumItemCount as yr, sumLineTotals as Ar, sumSavings as Rr, useCartCalculation as Lr } from "./components/Cart/composables/useCartCalculation.js";
|
|
46
|
+
import { default as Nr } from "./components/Dropdown/Dropdown.vue.js";
|
|
47
|
+
import { default as _r } from "./components/Dropdown/DropdownMenu.vue.js";
|
|
48
|
+
import { default as Or } from "./components/Dropdown/DropdownTrigger.vue.js";
|
|
49
49
|
import { default as wr } from "./components/Dropdown/DropdownItem.vue.js";
|
|
50
|
-
import { useDropdownSelection as
|
|
51
|
-
import { useDropdownIds as
|
|
50
|
+
import { useDropdownSelection as Kr } from "./components/Dropdown/composables/useDropdownSelection.js";
|
|
51
|
+
import { useDropdownIds as Ur } from "./components/Dropdown/composables/useDropdownIds.js";
|
|
52
52
|
import { default as Vr } from "./components/Breadcrumb/Breadcrumb.vue.js";
|
|
53
53
|
import { default as Xr } from "./components/Breadcrumb/BreadcrumbItem.vue.js";
|
|
54
54
|
import { default as Qr } from "./components/FileTree/FileTree.vue.js";
|
|
55
55
|
import { default as qr } from "./components/FileTree/FileTreeNode.vue.js";
|
|
56
56
|
import { useTreeSelection as Zr } from "./components/FileTree/useTreeSelection.js";
|
|
57
|
-
import { default as
|
|
57
|
+
import { default as eo } from "./components/RichTextEditor/RichTextEditor.vue.js";
|
|
58
58
|
/* empty css */
|
|
59
|
-
import { default as
|
|
60
|
-
import { RICH_TEXT_TOOL_GROUPS 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 { getObjectValue as
|
|
68
|
-
import { default as
|
|
69
|
-
import { default as
|
|
70
|
-
import { default as
|
|
71
|
-
import { default as
|
|
72
|
-
import { default as
|
|
73
|
-
import { default as
|
|
74
|
-
import { default as
|
|
75
|
-
import { default as
|
|
76
|
-
import { default as
|
|
77
|
-
import { default as
|
|
78
|
-
import { default as
|
|
79
|
-
import { default as
|
|
80
|
-
import { SCREEN_CONTEXT_KEY as
|
|
81
|
-
import { default as
|
|
82
|
-
import { default as
|
|
83
|
-
import { initializeTheme as
|
|
84
|
-
import { default as
|
|
85
|
-
import { default as
|
|
86
|
-
import { default as
|
|
87
|
-
import { default as
|
|
88
|
-
import { default as
|
|
89
|
-
import { useMultiSelectHydration as
|
|
90
|
-
import { default as
|
|
91
|
-
import { default as
|
|
92
|
-
import { default as
|
|
59
|
+
import { default as oo } from "./components/RichTextEditor/RichTextReader.vue.js";
|
|
60
|
+
import { RICH_TEXT_TOOL_GROUPS as ao, resolveRichTextTools as fo } from "./components/RichTextEditor/types.js";
|
|
61
|
+
import { default as lo } from "./components/OTPInput/OTPInput.vue.js";
|
|
62
|
+
import { default as so } from "./components/Workbook/Workbook.vue.js";
|
|
63
|
+
import { default as xo } from "./components/Workbook/Sheet.vue.js";
|
|
64
|
+
import { default as no } from "./components/DataList/DataList.vue.js";
|
|
65
|
+
import { default as So } from "./components/List/List.vue.js";
|
|
66
|
+
import { default as To } from "./components/List/ListFieldRow.vue.js";
|
|
67
|
+
import { getObjectValue as ho } from "./components/List/utils.js";
|
|
68
|
+
import { default as Po } from "./components/Empty/Empty.vue.js";
|
|
69
|
+
import { default as bo } from "./components/Comment/CommentItem.vue.js";
|
|
70
|
+
import { default as vo } from "./components/Comment/CommentThread.vue.js";
|
|
71
|
+
import { default as Ao } from "./components/Comment/CommentEditor.vue.js";
|
|
72
|
+
import { default as Lo } from "./components/Accordion/Accordion.vue.js";
|
|
73
|
+
import { default as No } from "./components/Accordion/AccordionItem.vue.js";
|
|
74
|
+
import { default as _o } from "./components/Accordion/AccordionTrigger.vue.js";
|
|
75
|
+
import { default as Oo } from "./components/Accordion/AccordionContent.vue.js";
|
|
76
|
+
import { default as wo } from "./components/ChoiceBox/ChoiceBox.vue.js";
|
|
77
|
+
import { default as Ko } from "./components/DataTable/DataTable.vue.js";
|
|
78
|
+
import { default as Uo } from "./components/DataTable/DataTableHeader.vue.js";
|
|
79
|
+
import { default as Vo } from "./components/DataTable/DataTableRow.vue.js";
|
|
80
|
+
import { SCREEN_CONTEXT_KEY as Xo } from "./components/DataTable/types.js";
|
|
81
|
+
import { default as Qo } from "./components/Splitter/Splitter.vue.js";
|
|
82
|
+
import { default as qo } from "./components/Footer/Footer.vue.js";
|
|
83
|
+
import { initializeTheme as Zo, useTheme as $o } from "./composables/useTheme.js";
|
|
84
|
+
import { default as rt } from "./components/FilePicker/index.vue.js";
|
|
85
|
+
import { default as tt } from "./components/Pagination/Pagination.vue.js";
|
|
86
|
+
import { default as ft } from "./components/ExportData/ExportData.vue.js";
|
|
87
|
+
import { default as lt } from "./components/ImportData/ImportData.vue.js";
|
|
88
|
+
import { default as st } from "./components/MultiSelect/MultiSelect.vue.js";
|
|
89
|
+
import { useMultiSelectHydration as dt } from "./components/MultiSelect/composables/useMultiSelectHydration.js";
|
|
90
|
+
import { default as it } from "./components/PricingPlan/PricingPlan.vue.js";
|
|
91
|
+
import { default as ct } from "./components/PricingPlan/PricingPlanItem.vue.js";
|
|
92
|
+
import { default as Ct } from "./components/SidebarMenu/SidebarMenu.vue.js";
|
|
93
93
|
/* empty css */
|
|
94
|
-
import { default as
|
|
94
|
+
import { default as gt } from "./components/SidebarMenu/SidebarMenuItem.vue.js";
|
|
95
95
|
/* empty css */
|
|
96
|
-
import { default as
|
|
97
|
-
import { default as
|
|
98
|
-
import { default as
|
|
99
|
-
import { useAdvancedKeyStroke as
|
|
100
|
-
import { vScrollReveal as
|
|
101
|
-
import { default as
|
|
102
|
-
import { default as
|
|
103
|
-
import { configure as
|
|
104
|
-
import { default as
|
|
105
|
-
import { default as
|
|
106
|
-
import { default as
|
|
107
|
-
import { default as
|
|
108
|
-
import { default as
|
|
96
|
+
import { default as Dt } from "./components/ProgressBar/ProgressBar.vue.js";
|
|
97
|
+
import { default as It } from "./components/PermissionMatrix/PermissionMatrix.vue.js";
|
|
98
|
+
import { default as Et } from "./components/PermissionMatrix/PermissionEditor.vue.js";
|
|
99
|
+
import { useAdvancedKeyStroke as yt, useKeyStroke as At } from "./composables/useKeyStroke.js";
|
|
100
|
+
import { vScrollReveal as Lt } from "./directives/vScrollReveal.js";
|
|
101
|
+
import { default as Nt } from "./components/AvatarUploader/AvatarUploader.vue.js";
|
|
102
|
+
import { default as _t } from "./components/AvatarGroup/AvatarGroup.vue.js";
|
|
103
|
+
import { configure as Ot, pauseTimers as Mt, removeToast as wt, resumeTimers as Gt, showToast as Kt, toast as Yt, useNotifications as Ut } from "./composables/useNotifications.js";
|
|
104
|
+
import { default as Vt } from "./components/Timeline/Timeline.vue.js";
|
|
105
|
+
import { default as Xt } from "./components/Timeline/TimelineItem.vue.js";
|
|
106
|
+
import { default as Qt } from "./components/Timeline/TimelineIndicator.vue.js";
|
|
107
|
+
import { default as qt } from "./components/FilePreview/FilePreview.vue.js";
|
|
108
|
+
import { default as Zt } from "./components/AttachmentsList/AttachmentsList.vue.js";
|
|
109
109
|
import { getFileTypeIcon as ea } from "./components/AttachmentsList/fileTypeIcon.js";
|
|
110
|
-
import { default as
|
|
110
|
+
import { default as oa } from "./components/CustomFieldsDisplay/CustomFieldsDisplay.vue.js";
|
|
111
111
|
import { default as aa } from "./components/Invoice/Invoice.vue.js";
|
|
112
112
|
import { default as ma } from "./components/Invoice/InvoiceTotals.vue.js";
|
|
113
113
|
import { default as pa } from "./components/CategoryManager/CategoryManager.vue.js";
|
|
@@ -118,21 +118,21 @@ import { default as Sa } from "./components/Calendar/Calendar.vue.js";
|
|
|
118
118
|
import { default as Ta } from "./components/Calendar/CalendarEventItem.vue.js";
|
|
119
119
|
import { default as ha } from "./components/Skeleton/Skeleton.vue.js";
|
|
120
120
|
import { normalizeBone as Pa } from "./components/Skeleton/types.js";
|
|
121
|
-
import { snapshotBones as
|
|
121
|
+
import { snapshotBones as ba } from "./components/Skeleton/extract.js";
|
|
122
122
|
import { configureSkeleton as va, getGlobalConfig as ya, registerBones as Aa } from "./components/Skeleton/shared.js";
|
|
123
123
|
import { default as La } from "./components/Chart/LineChart.vue.js";
|
|
124
|
-
import { default as
|
|
125
|
-
import { default as
|
|
126
|
-
import { default as
|
|
124
|
+
import { default as Na } from "./components/Chart/BarChart.vue.js";
|
|
125
|
+
import { default as _a } from "./components/Chart/PieChart.vue.js";
|
|
126
|
+
import { default as Oa } from "./components/Chart/CircleChart.vue.js";
|
|
127
127
|
import { default as wa } from "./components/Chart/GaugeChart.vue.js";
|
|
128
|
-
import { default as
|
|
129
|
-
import { default as
|
|
128
|
+
import { default as Ka } from "./components/Chart/SpeedometerChart.vue.js";
|
|
129
|
+
import { default as Ua } from "./components/Chart/TimelineChart.vue.js";
|
|
130
130
|
import { default as Va } from "./components/Chart/SegmentBarChart.vue.js";
|
|
131
131
|
import { default as Xa } from "./components/Chart/StatCardChart.vue.js";
|
|
132
132
|
import { default as Qa } from "./components/Chart/WaffleChart.vue.js";
|
|
133
133
|
import { default as qa } from "./components/Chart/GanttChart.vue.js";
|
|
134
134
|
import { GANTT_DEPENDENCY_TYPE_LABELS as Za } from "./components/Chart/types.js";
|
|
135
|
-
import { formatGanttLocalDate as ef, ganttCalendarDaysBetween as rf, ganttDateToX as
|
|
135
|
+
import { formatGanttLocalDate as ef, ganttCalendarDaysBetween as rf, ganttDateToX as of, parseGanttDate as tf } from "./components/Chart/GanttChartDateUtils.js";
|
|
136
136
|
import { default as ff } from "./components/Chart/ChartLegend.vue.js";
|
|
137
137
|
import { default as lf } from "./components/AppShell/AppShell.vue.js";
|
|
138
138
|
import { default as sf } from "./components/Rating/Rating.vue.js";
|
|
@@ -141,16 +141,16 @@ import { createAsyncSelect as nf } from "./components/AsyncSelect/createAsyncSel
|
|
|
141
141
|
import { default as Sf } from "./components/ImageComparison/ImageComparison.vue.js";
|
|
142
142
|
import { default as Tf } from "./components/ImageMagnifier.vue.js";
|
|
143
143
|
import { default as hf } from "./components/ThemeProvider/ThemeProvider.vue.js";
|
|
144
|
-
import { buildCardOverrideStyles as Pf, buildThemeStyleBlock as
|
|
144
|
+
import { buildCardOverrideStyles as Pf, buildThemeStyleBlock as If, buildThemeVariables as bf, getCachedThemeVariables as Ef } from "./components/ThemeProvider/themeVars.js";
|
|
145
145
|
import { default as yf } from "./components/SeoProvider/SeoProvider.vue.js";
|
|
146
|
-
import { noopSeoAdapter as
|
|
147
|
-
import { createDomSeoAdapter as
|
|
146
|
+
import { noopSeoAdapter as Rf, normalizeSeo as Lf, normalizeSeoJsonLd as Bf, normalizeSeoKeywords as Nf, normalizeSeoRobots as Ff, replaceSeoTokens as _f } from "./components/SeoProvider/normalizeSeo.js";
|
|
147
|
+
import { createDomSeoAdapter as Of } from "./components/SeoProvider/domAdapter.js";
|
|
148
148
|
import { htmlToPlainText as wf } from "./components/SeoProvider/plainText.js";
|
|
149
|
-
import { composeCanonicalUrl as
|
|
150
|
-
import { SEO_STRUCTURED_DATA_CONTEXT as
|
|
149
|
+
import { composeCanonicalUrl as Kf, composeSeoUrl as Yf } from "./components/SeoProvider/seoUrl.js";
|
|
150
|
+
import { SEO_STRUCTURED_DATA_CONTEXT as zf, createArticleStructuredData as Vf, createBreadcrumbListStructuredData as Hf, createCreativeWorkStructuredData as Xf, createOrganizationStructuredData as Wf, createPersonStructuredData as Qf, createStructuredData as jf, createWebPageStructuredData as qf, defineStructuredData as Jf } from "./components/SeoProvider/structuredData.js";
|
|
151
151
|
import { default as $f } from "./components/ScaleGenerator/ScaleGenerator.vue.js";
|
|
152
152
|
import { default as rm } from "./components/PanZoomViewport/PanZoomViewport.vue.js";
|
|
153
|
-
import { THEME_STYLES_KEY as
|
|
153
|
+
import { THEME_STYLES_KEY as tm, useThemeStyles as am } from "./composables/useThemeStyles.js";
|
|
154
154
|
import { SEO_CONTEXT_KEY as mm, useSeo as lm } from "./composables/useSeo.js";
|
|
155
155
|
import { default as sm } from "./components/Icon.vue.js";
|
|
156
156
|
import { default as dm } from "./components/Logo.vue.js";
|
|
@@ -160,62 +160,64 @@ import { default as Cm } from "./components/Input.vue.js";
|
|
|
160
160
|
/* empty css */
|
|
161
161
|
import { default as gm } from "./components/Label.vue.js";
|
|
162
162
|
import { default as Dm } from "./components/Modal.vue.js";
|
|
163
|
-
import { default as
|
|
163
|
+
import { default as Im } from "./components/Avatar.vue.js";
|
|
164
164
|
import { default as Em } from "./components/Persona.vue.js";
|
|
165
165
|
import { default as ym } from "./components/Button.vue.js";
|
|
166
|
-
import { default as
|
|
167
|
-
import { default as
|
|
166
|
+
import { default as Rm } from "./components/BackButton.vue.js";
|
|
167
|
+
import { default as Bm } from "./components/Clipboard.vue.js";
|
|
168
168
|
import { default as Fm } from "./components/Slider.vue.js";
|
|
169
|
-
import { default as
|
|
170
|
-
import { default as
|
|
169
|
+
import { default as km } from "./components/Switch.vue.js";
|
|
170
|
+
import { default as Mm } from "./components/Tooltip.vue.js";
|
|
171
171
|
import { default as Gm } from "./components/CheckBox.vue.js";
|
|
172
|
-
import { default as
|
|
173
|
-
import { default as
|
|
172
|
+
import { default as Ym } from "./components/Textarea.vue.js";
|
|
173
|
+
import { default as zm } from "./components/Radio.vue.js";
|
|
174
174
|
import { default as Hm } from "./components/RadioGroup.vue.js";
|
|
175
175
|
import { default as Wm } from "./components/FadeOverlay/FadeOverlay.vue.js";
|
|
176
176
|
import { default as jm } from "./components/SidePanel.vue.js";
|
|
177
177
|
import { default as Jm } from "./components/DatePicker.vue.js";
|
|
178
178
|
import { default as $m } from "./components/IconPicker.vue.js";
|
|
179
179
|
import { default as rl } from "./components/ButtonGroup.vue.js";
|
|
180
|
-
import { default as
|
|
180
|
+
import { default as tl } from "./components/NumberInput.vue.js";
|
|
181
181
|
import { default as fl } from "./components/ThemeToggle.vue.js";
|
|
182
182
|
import { default as ll } from "./components/GoogleLogin.vue.js";
|
|
183
183
|
import { default as sl } from "./components/GoogleMap.vue.js";
|
|
184
184
|
import { default as dl } from "./components/ColorPicker/ColorPicker.vue.js";
|
|
185
|
-
import {
|
|
186
|
-
import { default as cl } from "./components/
|
|
187
|
-
import { default as Cl } from "./components/
|
|
188
|
-
import { default as gl } from "./components/
|
|
189
|
-
import { default as Dl } from "./components/
|
|
190
|
-
import {
|
|
191
|
-
import {
|
|
192
|
-
import {
|
|
193
|
-
import {
|
|
194
|
-
import { default as Fl } from "./components/
|
|
185
|
+
import { COLOR_PICKER_RESET_VALUE as il } from "./components/ColorPicker/constants.js";
|
|
186
|
+
import { default as cl } from "./components/ConfirmationModal.vue.js";
|
|
187
|
+
import { default as Cl } from "./components/ToastNotification.vue.js";
|
|
188
|
+
import { default as gl } from "./components/CommandPalette/CommandPaletteContent.vue.js";
|
|
189
|
+
import { default as Dl } from "./components/NavbarCommandPalette.vue.js";
|
|
190
|
+
import { default as Il } from "./components/DateRangePicker.vue.js";
|
|
191
|
+
import { createVLite as El } from "./core/index.js";
|
|
192
|
+
import { default as yl } from "./components/StatusChip/StatusChip.vue.js";
|
|
193
|
+
import { STATUS_MAP as Rl, normalizeStatus as Ll, resolveStatus as Bl } from "./components/StatusChip/status-map.js";
|
|
194
|
+
import { default as Fl } from "./components/Price/Price.vue.js";
|
|
195
|
+
import { default as kl } from "./components/DateTime/DateTime.vue.js";
|
|
195
196
|
import { default as Ml } from "./components/Clock/Clock.vue.js";
|
|
196
|
-
import { default as
|
|
197
|
-
import { VLITE_CONFIG_KEY as
|
|
198
|
-
import { getStatusColorClass as
|
|
197
|
+
import { default as Gl } from "./components/Chat/ChatInterface.vue.js";
|
|
198
|
+
import { VLITE_CONFIG_KEY as Yl, configState as Ul, updateConfig as zl, useVLiteConfig as Vl } from "./core/config.js";
|
|
199
|
+
import { getStatusColorClass as Xl } from "./utils/status.js";
|
|
199
200
|
export {
|
|
200
201
|
ee as $t,
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
202
|
+
Lo as Accordion,
|
|
203
|
+
Oo as AccordionContent,
|
|
204
|
+
No as AccordionItem,
|
|
205
|
+
_o as AccordionTrigger,
|
|
205
206
|
im as Alert,
|
|
206
207
|
lf as AppShell,
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
208
|
+
Zt as AttachmentsList,
|
|
209
|
+
Im as Avatar,
|
|
210
|
+
_t as AvatarGroup,
|
|
211
|
+
Nt as AvatarUploader,
|
|
212
|
+
Rm as BackButton,
|
|
212
213
|
cm as Badge,
|
|
213
|
-
|
|
214
|
+
Na as BarChart,
|
|
214
215
|
fr as Barcode,
|
|
215
216
|
Vr as Breadcrumb,
|
|
216
217
|
Xr as BreadcrumbItem,
|
|
217
218
|
ym as Button,
|
|
218
219
|
rl as ButtonGroup,
|
|
220
|
+
il as COLOR_PICKER_RESET_VALUE,
|
|
219
221
|
Sa as Calendar,
|
|
220
222
|
Ta as CalendarEventItem,
|
|
221
223
|
sr as Carousel,
|
|
@@ -227,40 +229,40 @@ export {
|
|
|
227
229
|
pa as CategoryManager,
|
|
228
230
|
ua as CategoryMenu,
|
|
229
231
|
ff as ChartLegend,
|
|
230
|
-
|
|
232
|
+
Gl as ChatInterface,
|
|
231
233
|
Gm as CheckBox,
|
|
232
234
|
se as Chip,
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
235
|
+
wo as ChoiceBox,
|
|
236
|
+
Oa as CircleChart,
|
|
237
|
+
Bm as Clipboard,
|
|
236
238
|
Ml as Clock,
|
|
237
239
|
dl as ColorPicker,
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
240
|
+
gl as CommandPaletteContent,
|
|
241
|
+
Ao as CommentEditor,
|
|
242
|
+
bo as CommentItem,
|
|
243
|
+
vo as CommentThread,
|
|
244
|
+
cl as ConfirmationModal,
|
|
243
245
|
Ce as CustomFields,
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
246
|
+
oa as CustomFieldsDisplay,
|
|
247
|
+
no as DataList,
|
|
248
|
+
Ko as DataTable,
|
|
249
|
+
Uo as DataTableHeader,
|
|
250
|
+
Vo as DataTableRow,
|
|
249
251
|
Jm as DatePicker,
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
252
|
+
Il as DateRangePicker,
|
|
253
|
+
kl as DateTime,
|
|
254
|
+
Nr as Dropdown,
|
|
253
255
|
wr as DropdownItem,
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
256
|
+
_r as DropdownMenu,
|
|
257
|
+
Or as DropdownTrigger,
|
|
258
|
+
Po as Empty,
|
|
259
|
+
ft as ExportData,
|
|
258
260
|
Wm as FadeOverlay,
|
|
259
|
-
|
|
260
|
-
|
|
261
|
+
rt as FilePicker,
|
|
262
|
+
qt as FilePreview,
|
|
261
263
|
Qr as FileTree,
|
|
262
264
|
qr as FileTreeNode,
|
|
263
|
-
|
|
265
|
+
qo as Footer,
|
|
264
266
|
de as Form,
|
|
265
267
|
ie as FormField,
|
|
266
268
|
ce as FormFields,
|
|
@@ -276,110 +278,110 @@ export {
|
|
|
276
278
|
$m as IconPicker,
|
|
277
279
|
Sf as ImageComparison,
|
|
278
280
|
Tf as ImageMagnifier,
|
|
279
|
-
|
|
281
|
+
lt as ImportData,
|
|
280
282
|
Cm as Input,
|
|
281
283
|
aa as Invoice,
|
|
282
284
|
ma as InvoiceTotals,
|
|
283
|
-
|
|
284
|
-
|
|
285
|
+
Re as Kanban,
|
|
286
|
+
Be as KanbanBoard,
|
|
285
287
|
gm as Label,
|
|
286
288
|
La as LineChart,
|
|
287
|
-
|
|
288
|
-
|
|
289
|
+
So as List,
|
|
290
|
+
To as ListFieldRow,
|
|
289
291
|
dm as Logo,
|
|
290
292
|
rr as MASONRY_BREAKPOINTS,
|
|
291
293
|
$e as Masonry,
|
|
292
294
|
Dm as Modal,
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
295
|
+
st as MultiSelect,
|
|
296
|
+
ke as Navbar,
|
|
297
|
+
Dl as NavbarCommandPalette,
|
|
296
298
|
Ge as NavbarGroup,
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
299
|
+
Me as NavbarItem,
|
|
300
|
+
Ye as NavbarTabs,
|
|
301
|
+
tl as NumberInput,
|
|
302
|
+
lo as OTPInput,
|
|
303
|
+
tt as Pagination,
|
|
302
304
|
rm as PanZoomViewport,
|
|
303
|
-
|
|
304
|
-
|
|
305
|
+
Et as PermissionEditor,
|
|
306
|
+
It as PermissionMatrix,
|
|
305
307
|
Em as Persona,
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
308
|
+
_a as PieChart,
|
|
309
|
+
Fl as Price,
|
|
310
|
+
it as PricingPlan,
|
|
311
|
+
ct as PricingPlanItem,
|
|
312
|
+
Dt as ProgressBar,
|
|
313
|
+
ze as QRCode,
|
|
314
|
+
ao as RICH_TEXT_TOOL_GROUPS,
|
|
315
|
+
zm as Radio,
|
|
314
316
|
Hm as RadioGroup,
|
|
315
317
|
sf as Rating,
|
|
316
318
|
df as ReviewSummary,
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
319
|
+
eo as RichTextEditor,
|
|
320
|
+
oo as RichTextReader,
|
|
321
|
+
Xo as SCREEN_CONTEXT_KEY,
|
|
320
322
|
mm as SEO_CONTEXT_KEY,
|
|
321
|
-
|
|
322
|
-
|
|
323
|
+
zf as SEO_STRUCTURED_DATA_CONTEXT,
|
|
324
|
+
Rl as STATUS_MAP,
|
|
323
325
|
$f as ScaleGenerator,
|
|
324
326
|
He as Screen,
|
|
325
327
|
We as ScreenFilter,
|
|
326
328
|
je as ScreenQuickFilters,
|
|
327
329
|
Va as SegmentBarChart,
|
|
328
330
|
yf as SeoProvider,
|
|
329
|
-
|
|
331
|
+
xo as Sheet,
|
|
330
332
|
jm as SidePanel,
|
|
331
|
-
|
|
332
|
-
|
|
333
|
+
Ct as SidebarMenu,
|
|
334
|
+
gt as SidebarMenuItem,
|
|
333
335
|
ha as Skeleton,
|
|
334
336
|
Fm as Slider,
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
337
|
+
Ka as SpeedometerChart,
|
|
338
|
+
tr as Spinner,
|
|
339
|
+
Qo as Splitter,
|
|
338
340
|
Xa as StatCardChart,
|
|
339
341
|
ye as Stats,
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
342
|
+
yl as StatusChip,
|
|
343
|
+
km as Switch,
|
|
344
|
+
tm as THEME_STYLES_KEY,
|
|
343
345
|
Ee as Tabes,
|
|
344
346
|
na as TagInput,
|
|
345
|
-
|
|
347
|
+
Ym as Textarea,
|
|
346
348
|
hf as ThemeProvider,
|
|
347
349
|
fl as ThemeToggle,
|
|
348
350
|
xa as ThumbnailSelector,
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
351
|
+
Vt as Timeline,
|
|
352
|
+
Ua as TimelineChart,
|
|
353
|
+
Qt as TimelineIndicator,
|
|
354
|
+
Xt as TimelineItem,
|
|
355
|
+
Cl as ToastNotification,
|
|
356
|
+
Mm as Tooltip,
|
|
357
|
+
Yl as VLITE_CONFIG_KEY,
|
|
356
358
|
Qa as WaffleChart,
|
|
357
|
-
|
|
359
|
+
so as Workbook,
|
|
358
360
|
lr as barcodesConstants,
|
|
359
361
|
Pf as buildCardOverrideStyles,
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
362
|
+
If as buildThemeStyleBlock,
|
|
363
|
+
bf as buildThemeVariables,
|
|
364
|
+
Ir as calculateCartTotals,
|
|
363
365
|
x as camelCase,
|
|
364
366
|
i as capitalize,
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
367
|
+
Kf as composeCanonicalUrl,
|
|
368
|
+
Yf as composeSeoUrl,
|
|
369
|
+
br as computeCouponDiscount,
|
|
368
370
|
Er as computeShipping,
|
|
369
371
|
vr as computeTax,
|
|
370
|
-
|
|
371
|
-
|
|
372
|
+
Ul as configState,
|
|
373
|
+
Ot as configure,
|
|
372
374
|
va as configureSkeleton,
|
|
373
375
|
n as copyToClipboard,
|
|
374
376
|
Vf as createArticleStructuredData,
|
|
375
377
|
nf as createAsyncSelect,
|
|
376
378
|
Hf as createBreadcrumbListStructuredData,
|
|
377
379
|
Xf as createCreativeWorkStructuredData,
|
|
378
|
-
|
|
380
|
+
Of as createDomSeoAdapter,
|
|
379
381
|
Wf as createOrganizationStructuredData,
|
|
380
382
|
Qf as createPersonStructuredData,
|
|
381
383
|
jf as createStructuredData,
|
|
382
|
-
|
|
384
|
+
El as createVLite,
|
|
383
385
|
qf as createWebPageStructuredData,
|
|
384
386
|
c as debounce,
|
|
385
387
|
u as deepMerge,
|
|
@@ -393,84 +395,84 @@ export {
|
|
|
393
395
|
D as formatDate,
|
|
394
396
|
ef as formatGanttLocalDate,
|
|
395
397
|
P as formatNumber,
|
|
396
|
-
|
|
398
|
+
I as formatSchedule,
|
|
397
399
|
rf as ganttCalendarDaysBetween,
|
|
398
|
-
|
|
400
|
+
of as ganttDateToX,
|
|
399
401
|
Ef as getCachedThemeVariables,
|
|
400
|
-
|
|
401
|
-
|
|
402
|
+
te as getComponentConfig,
|
|
403
|
+
b as getDefaultDateRange,
|
|
402
404
|
ea as getFileTypeIcon,
|
|
403
405
|
ya as getGlobalConfig,
|
|
404
406
|
E as getNextMonth,
|
|
405
407
|
v as getNextYear,
|
|
406
|
-
|
|
408
|
+
ho as getObjectValue,
|
|
407
409
|
y as getPrevMonth,
|
|
408
410
|
A as getPrevYear,
|
|
409
|
-
|
|
410
|
-
|
|
411
|
+
Xl as getStatusColorClass,
|
|
412
|
+
R as getToday,
|
|
411
413
|
L as getTomorrow,
|
|
412
|
-
|
|
413
|
-
|
|
414
|
+
B as getUniqueId,
|
|
415
|
+
N as getUpcoming,
|
|
414
416
|
F as getYear,
|
|
415
|
-
|
|
417
|
+
_ as getYesterday,
|
|
416
418
|
fe as hexToHSL,
|
|
417
419
|
wf as htmlToPlainText,
|
|
418
|
-
|
|
419
|
-
|
|
420
|
+
Zo as initializeTheme,
|
|
421
|
+
k as isAppleDevice,
|
|
420
422
|
me as isDarkColor,
|
|
421
|
-
|
|
422
|
-
|
|
423
|
+
O as isEmpty,
|
|
424
|
+
M as isPureTimeString,
|
|
423
425
|
w as isValidTimeRange,
|
|
424
426
|
Q as lazySearch,
|
|
425
427
|
le as mixColorHex,
|
|
426
|
-
|
|
428
|
+
Rf as noopSeoAdapter,
|
|
427
429
|
Pa as normalizeBone,
|
|
428
430
|
Lf as normalizeSeo,
|
|
429
|
-
|
|
430
|
-
|
|
431
|
+
Bf as normalizeSeoJsonLd,
|
|
432
|
+
Nf as normalizeSeoKeywords,
|
|
431
433
|
Ff as normalizeSeoRobots,
|
|
432
|
-
|
|
434
|
+
Ll as normalizeStatus,
|
|
433
435
|
G as parseDateTime,
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
436
|
+
tf as parseGanttDate,
|
|
437
|
+
Mt as pauseTimers,
|
|
438
|
+
K as randomNumber,
|
|
437
439
|
Aa as registerBones,
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
440
|
+
Y as removeExtraProperties,
|
|
441
|
+
wt as removeToast,
|
|
442
|
+
_f as replaceSeoTokens,
|
|
441
443
|
j as resetSearchIndex,
|
|
442
444
|
re as resolveI18nText,
|
|
443
|
-
|
|
445
|
+
fo as resolveRichTextTools,
|
|
444
446
|
Bl as resolveStatus,
|
|
445
|
-
|
|
447
|
+
Gt as resumeTimers,
|
|
446
448
|
q as search,
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
449
|
+
Kt as showToast,
|
|
450
|
+
U as slugify,
|
|
451
|
+
ba as snapshotBones,
|
|
450
452
|
yr as sumItemCount,
|
|
451
453
|
Ar as sumLineTotals,
|
|
452
|
-
|
|
453
|
-
|
|
454
|
+
Rr as sumSavings,
|
|
455
|
+
z as throttle,
|
|
454
456
|
V as toISO,
|
|
455
457
|
H as toLocalISO,
|
|
456
|
-
|
|
458
|
+
Yt as toast,
|
|
457
459
|
X as truncate,
|
|
458
|
-
|
|
459
|
-
|
|
460
|
+
zl as updateConfig,
|
|
461
|
+
yt as useAdvancedKeyStroke,
|
|
460
462
|
Dr as useCart,
|
|
461
463
|
Lr as useCartCalculation,
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
464
|
+
Ur as useDropdownIds,
|
|
465
|
+
Kr as useDropdownSelection,
|
|
466
|
+
Ie as useFileUpload,
|
|
465
467
|
De as useForm,
|
|
466
468
|
Fe as useKanbanBoard,
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
469
|
+
At as useKeyStroke,
|
|
470
|
+
dt as useMultiSelectHydration,
|
|
471
|
+
Ut as useNotifications,
|
|
470
472
|
lm as useSeo,
|
|
471
|
-
|
|
473
|
+
$o as useTheme,
|
|
472
474
|
am as useThemeStyles,
|
|
473
475
|
Zr as useTreeSelection,
|
|
474
|
-
|
|
475
|
-
|
|
476
|
+
Vl as useVLiteConfig,
|
|
477
|
+
Lt as vScrollReveal
|
|
476
478
|
};
|