vlite3 1.4.1 → 1.4.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.d.ts +1 -0
- package/components/AppShell/AppShell.vue.js +33 -26
- package/components/AppShell/AppShellLayoutStorefront.vue.d.ts +54 -0
- package/components/AppShell/AppShellLayoutStorefront.vue.js +222 -0
- package/components/AppShell/AppShellLayoutStorefront.vue2.js +4 -0
- package/components/AsyncSelect/createAsyncSelect.js +3 -2
- package/components/CategoryManager/CategoryManager.vue2.js +4 -3
- package/components/CategoryMenu/CategoryMenu.vue.d.ts +22 -0
- package/components/CategoryMenu/CategoryMenu.vue.js +106 -0
- package/components/CategoryMenu/CategoryMenu.vue2.js +4 -0
- package/components/CategoryMenu/CategoryMenuVariant1.vue.d.ts +17 -0
- package/components/CategoryMenu/CategoryMenuVariant1.vue.js +146 -0
- package/components/CategoryMenu/CategoryMenuVariant1.vue2.js +4 -0
- package/components/CategoryMenu/CategoryMenuVariant2.vue.d.ts +18 -0
- package/components/CategoryMenu/CategoryMenuVariant2.vue.js +162 -0
- package/components/CategoryMenu/CategoryMenuVariant2.vue2.js +4 -0
- package/components/CategoryMenu/index.d.ts +2 -0
- package/components/CategoryMenu/types.d.ts +32 -0
- package/components/CategoryMenu/utils.d.ts +16 -0
- package/components/CategoryMenu/utils.js +45 -0
- package/components/ColorPicker/ColorIro.vue3.js +2 -2
- package/components/ColorPicker/ColorPicker.vue.d.ts +7 -3
- package/components/ColorPicker/ColorPicker.vue.js +60 -46
- package/components/CommandPalette/CommandPaletteContent.vue2.js +1 -1
- package/components/CommandPalette/{CommandPaletteItem.vue2.js → CommandPaletteItem.vue.js} +1 -1
- package/components/DatePicker.vue.js +5 -4
- package/components/DateRangePicker.vue.js +3 -2
- package/components/Dropdown/Dropdown.vue.d.ts +4 -1
- package/components/Dropdown/Dropdown.vue.js +8 -7
- package/components/Dropdown/DropdownGroupedLayout.vue2.js +5 -2
- package/components/Dropdown/DropdownGroupedLayout.vue3.js +111 -0
- package/components/Dropdown/DropdownItem.vue.d.ts +2 -2
- package/components/Dropdown/DropdownItem.vue.js +66 -49
- package/components/Dropdown/DropdownMenu.vue.js +1 -1
- package/components/Dropdown/{DropdownMenu.vue2.js → DropdownMenu.vue3.js} +40 -40
- package/components/Dropdown/composables/useDropdownHydration.d.ts +4 -0
- package/components/Dropdown/composables/useDropdownNavigation.js +30 -18
- package/components/Form/FormField.vue.js +14 -11
- package/components/IconPicker.vue.js +3 -2
- package/components/ImportData/ImportStep2.vue.js +3 -2
- package/components/MultiSelect/composables/useMultiSelectHydration.d.ts +4 -0
- package/components/NavbarCommandPalette.vue.js +1 -1
- package/components/PermissionMatrix/PermissionTopBar.vue.js +3 -2
- package/components/Screen/ScreenFilter.vue.js +20 -19
- package/components/SidebarMenu/SidebarMenuItem.vue.js +3 -2
- package/components/Switch.vue.js +8 -8
- package/components/Tooltip.vue.js +1 -0
- package/components/Workbook/Sheet.vue.js +14 -13
- package/components/index.d.ts +1 -0
- package/index.d.ts +1 -0
- package/index.js +153 -151
- package/package.json +2 -2
- package/style.css +1 -1
- package/types/appshell.type.d.ts +2 -1
- package/types/styles.d.ts +2 -0
- package/components/Dropdown/DropdownGroupedLayout.vue.js +0 -75
- /package/components/ColorPicker/{ColorIro.vue2.js → ColorIro.vue.js} +0 -0
package/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { default as p } from "vue3-google-signin";
|
|
2
2
|
import { deepMerge as d } from "./utils/object.js";
|
|
3
|
-
import { camelCase as x, capitalize as i, copyToClipboard as n, debounce as c, delay as g, downloadFile as C, flattenArray as T, formatAmPm as S, formatCurrency as h, formatDate as I, formatNumber as P, formatSchedule as b, getDefaultDateRange as v, getNextMonth as F, getNextYear as
|
|
3
|
+
import { camelCase as x, capitalize as i, copyToClipboard as n, debounce as c, delay as g, downloadFile as C, flattenArray as T, formatAmPm as S, formatCurrency as h, formatDate as I, formatNumber as P, formatSchedule as b, getDefaultDateRange as v, getNextMonth as F, getNextYear as y, getPrevMonth as D, getPrevYear as R, getToday as A, getTomorrow as B, getUniqueId as N, getUpcoming as k, getYear as E, getYesterday as M, isAppleDevice as w, isEmpty as L, isPureTimeString as O, isValidTimeRange as G, parseDateTime as _, randomNumber as K, removeExtraProperties as Y, slugify as U, throttle as z, toISO as V, toLocalISO as H, truncate as Q } from "./utils/functions.js";
|
|
4
4
|
import { lazySearch as X, resetSearchIndex as j, search as q } from "./utils/search.util.js";
|
|
5
5
|
import { env as J } from "./utils/env.js";
|
|
6
6
|
import { $t as ee } from "./utils/i18n.js";
|
|
@@ -17,7 +17,7 @@ import { default as he } from "./components/Tabes/Tabes.vue.js";
|
|
|
17
17
|
import { default as Pe } from "./components/Stats/Stats.vue.js";
|
|
18
18
|
/* empty css */
|
|
19
19
|
import { default as ve } from "./components/Kanban/Kanban.vue.js";
|
|
20
|
-
import { default as
|
|
20
|
+
import { default as ye } from "./components/Kanban/KanbanBoard.vue.js";
|
|
21
21
|
import { useKanbanBoard as Re } from "./components/Kanban/useKanbanBoard.js";
|
|
22
22
|
import { default as Be } from "./components/Navbar/Navbar.vue.js";
|
|
23
23
|
import { default as ke } from "./components/Navbar/NavbarItem.vue.js";
|
|
@@ -45,7 +45,7 @@ import { default as So } from "./components/Breadcrumb/Breadcrumb.vue.js";
|
|
|
45
45
|
import { default as Io } from "./components/Breadcrumb/BreadcrumbItem.vue.js";
|
|
46
46
|
import { default as bo } from "./components/FileTree/FileTree.vue.js";
|
|
47
47
|
import { default as Fo } from "./components/FileTree/FileTreeNode.vue.js";
|
|
48
|
-
import { useTreeSelection as
|
|
48
|
+
import { useTreeSelection as Do } from "./components/FileTree/useTreeSelection.js";
|
|
49
49
|
import { default as Ao } from "./components/RichTextEditor/RichTextEditor.vue.js";
|
|
50
50
|
/* empty css */
|
|
51
51
|
import { default as No } from "./components/RichTextEditor/RichTextReader.vue.js";
|
|
@@ -72,7 +72,7 @@ import { default as Tr } from "./components/DataTable/DataTableRow.vue.js";
|
|
|
72
72
|
import { SCREEN_CONTEXT_KEY as hr } from "./components/DataTable/types.js";
|
|
73
73
|
import { default as Pr } from "./components/Splitter/Splitter.vue.js";
|
|
74
74
|
import { default as vr } from "./components/Footer/Footer.vue.js";
|
|
75
|
-
import { initializeTheme as
|
|
75
|
+
import { initializeTheme as yr, useTheme as Dr } from "./composables/useTheme.js";
|
|
76
76
|
import { default as Ar } from "./components/FilePicker/FilePicker.vue.js";
|
|
77
77
|
import { default as Nr } from "./components/Pagination/Pagination.vue.js";
|
|
78
78
|
import { default as Er } from "./components/ExportData/ExportData.vue.js";
|
|
@@ -97,132 +97,134 @@ import { default as Tt } from "./components/Timeline/Timeline.vue.js";
|
|
|
97
97
|
import { default as ht } from "./components/Timeline/TimelineItem.vue.js";
|
|
98
98
|
import { default as Pt } from "./components/Timeline/TimelineIndicator.vue.js";
|
|
99
99
|
import { default as vt } from "./components/FilePreview/FilePreview.vue.js";
|
|
100
|
-
import { default as
|
|
100
|
+
import { default as yt } from "./components/AttachmentsList/AttachmentsList.vue.js";
|
|
101
101
|
import { getFileTypeIcon as Rt } from "./components/AttachmentsList/fileTypeIcon.js";
|
|
102
102
|
import { default as Bt } from "./components/CustomFieldsDisplay/CustomFieldsDisplay.vue.js";
|
|
103
103
|
import { default as kt } from "./components/Invoice/Invoice.vue.js";
|
|
104
104
|
import { default as Mt } from "./components/Invoice/InvoiceTotals.vue.js";
|
|
105
105
|
import { default as Lt } from "./components/CategoryManager/CategoryManager.vue.js";
|
|
106
|
-
import { default as Gt } from "./components/
|
|
107
|
-
import { default as Kt } from "./components/
|
|
108
|
-
import { default as Ut } from "./components/
|
|
109
|
-
import { default as Vt } from "./components/Calendar/
|
|
110
|
-
import { default as Qt } from "./components/
|
|
111
|
-
import {
|
|
112
|
-
import {
|
|
113
|
-
import {
|
|
114
|
-
import {
|
|
115
|
-
import { default as aa } from "./components/Chart/
|
|
116
|
-
import { default as ma } from "./components/Chart/
|
|
117
|
-
import { default as pa } from "./components/Chart/
|
|
118
|
-
import { default as da } from "./components/Chart/
|
|
119
|
-
import { default as xa } from "./components/Chart/
|
|
120
|
-
import { default as na } from "./components/Chart/
|
|
121
|
-
import { default as ga } from "./components/Chart/
|
|
122
|
-
import { default as Ta } from "./components/Chart/
|
|
123
|
-
import { default as ha } from "./components/Chart/
|
|
124
|
-
import { default as Pa } from "./components/Chart/
|
|
125
|
-
import { default as va } from "./components/
|
|
126
|
-
import { default as
|
|
127
|
-
import { default as Ra } from "./components/Rating/
|
|
128
|
-
import {
|
|
129
|
-
import {
|
|
130
|
-
import { default as Ma } from "./components/
|
|
131
|
-
import { default as La } from "./components/
|
|
132
|
-
import { default as Ga } from "./components/
|
|
133
|
-
import { default as Ka } from "./components/
|
|
134
|
-
import { default as Ua } from "./components/
|
|
106
|
+
import { default as Gt } from "./components/CategoryMenu/CategoryMenu.vue.js";
|
|
107
|
+
import { default as Kt } from "./components/ThumbnailSelector/ThumbnailSelector.vue.js";
|
|
108
|
+
import { default as Ut } from "./components/TagInput/TagInput.vue.js";
|
|
109
|
+
import { default as Vt } from "./components/Calendar/Calendar.vue.js";
|
|
110
|
+
import { default as Qt } from "./components/Calendar/CalendarEventItem.vue.js";
|
|
111
|
+
import { default as Xt } from "./components/Skeleton/Skeleton.vue.js";
|
|
112
|
+
import { normalizeBone as qt } from "./components/Skeleton/types.js";
|
|
113
|
+
import { snapshotBones as Jt } from "./components/Skeleton/extract.js";
|
|
114
|
+
import { configureSkeleton as ea, getGlobalConfig as oa, registerBones as ra } from "./components/Skeleton/shared.js";
|
|
115
|
+
import { default as aa } from "./components/Chart/LineChart.vue.js";
|
|
116
|
+
import { default as ma } from "./components/Chart/BarChart.vue.js";
|
|
117
|
+
import { default as pa } from "./components/Chart/PieChart.vue.js";
|
|
118
|
+
import { default as da } from "./components/Chart/CircleChart.vue.js";
|
|
119
|
+
import { default as xa } from "./components/Chart/GaugeChart.vue.js";
|
|
120
|
+
import { default as na } from "./components/Chart/SpeedometerChart.vue.js";
|
|
121
|
+
import { default as ga } from "./components/Chart/TimelineChart.vue.js";
|
|
122
|
+
import { default as Ta } from "./components/Chart/SegmentBarChart.vue.js";
|
|
123
|
+
import { default as ha } from "./components/Chart/StatCardChart.vue.js";
|
|
124
|
+
import { default as Pa } from "./components/Chart/WaffleChart.vue.js";
|
|
125
|
+
import { default as va } from "./components/Chart/GanttChart.vue.js";
|
|
126
|
+
import { default as ya } from "./components/AppShell/AppShell.vue.js";
|
|
127
|
+
import { default as Ra } from "./components/Rating/Rating.vue.js";
|
|
128
|
+
import { default as Ba } from "./components/Rating/ReviewSummary.vue.js";
|
|
129
|
+
import { createAsyncSelect as ka } from "./components/AsyncSelect/createAsyncSelect.js";
|
|
130
|
+
import { default as Ma } from "./components/ImageComparison/ImageComparison.vue.js";
|
|
131
|
+
import { default as La } from "./components/Icon.vue.js";
|
|
132
|
+
import { default as Ga } from "./components/Logo.vue.js";
|
|
133
|
+
import { default as Ka } from "./components/Alert.vue.js";
|
|
134
|
+
import { default as Ua } from "./components/Badge.vue.js";
|
|
135
|
+
import { default as Va } from "./components/Input.vue.js";
|
|
135
136
|
/* empty css */
|
|
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 { default as
|
|
152
|
-
import { default as
|
|
153
|
-
import { default as
|
|
154
|
-
import { default as
|
|
155
|
-
import { default as
|
|
156
|
-
import { default as
|
|
157
|
-
import { default as
|
|
158
|
-
import { default as
|
|
159
|
-
import { default as
|
|
160
|
-
import { default as
|
|
161
|
-
import { default as
|
|
162
|
-
import { default as
|
|
163
|
-
import { default as
|
|
164
|
-
import { createVLite as
|
|
165
|
-
import { default as
|
|
166
|
-
import { STATUS_MAP as
|
|
167
|
-
import { default as
|
|
168
|
-
import { default as
|
|
169
|
-
import { default as
|
|
170
|
-
import { default as
|
|
171
|
-
import { VLITE_CONFIG_KEY as
|
|
172
|
-
import { getStatusColorClass as
|
|
137
|
+
import { default as Qa } from "./components/Label.vue.js";
|
|
138
|
+
import { default as Xa } from "./components/Modal.vue.js";
|
|
139
|
+
import { default as qa } from "./components/Avatar.vue.js";
|
|
140
|
+
import { default as Ja } from "./components/Persona.vue.js";
|
|
141
|
+
import { default as ef } from "./components/Button.vue.js";
|
|
142
|
+
import { default as rf } from "./components/BackButton.vue.js";
|
|
143
|
+
import { default as af } from "./components/Clipboard.vue.js";
|
|
144
|
+
import { default as mf } from "./components/Slider.vue.js";
|
|
145
|
+
import { default as pf } from "./components/Switch.vue.js";
|
|
146
|
+
import { default as df } from "./components/Tooltip.vue.js";
|
|
147
|
+
import { default as xf } from "./components/CheckBox.vue.js";
|
|
148
|
+
import { default as cf } from "./components/Textarea.vue.js";
|
|
149
|
+
import { default as Cf } from "./components/Radio.vue.js";
|
|
150
|
+
import { default as Sf } from "./components/RadioGroup.vue.js";
|
|
151
|
+
import { default as If } from "./components/FadeOverlay/FadeOverlay.vue.js";
|
|
152
|
+
import { default as bf } from "./components/SidePanel.vue.js";
|
|
153
|
+
import { default as Ff } from "./components/DatePicker.vue.js";
|
|
154
|
+
import { default as Df } from "./components/IconPicker.vue.js";
|
|
155
|
+
import { default as Af } from "./components/ButtonGroup.vue.js";
|
|
156
|
+
import { default as Nf } from "./components/NumberInput.vue.js";
|
|
157
|
+
import { default as Ef } from "./components/ThemeToggle.vue.js";
|
|
158
|
+
import { default as wf } from "./components/GoogleLogin.vue.js";
|
|
159
|
+
import { default as Of } from "./components/ColorPicker/ColorPicker.vue.js";
|
|
160
|
+
import { default as _f } from "./components/ConfirmationModal.vue.js";
|
|
161
|
+
import { default as Yf } from "./components/ToastNotification.vue.js";
|
|
162
|
+
import { default as zf } from "./components/CommandPalette/CommandPaletteContent.vue.js";
|
|
163
|
+
import { default as Hf } from "./components/NavbarCommandPalette.vue.js";
|
|
164
|
+
import { default as Wf } from "./components/DateRangePicker.vue.js";
|
|
165
|
+
import { createVLite as jf } from "./core/index.js";
|
|
166
|
+
import { default as $f } from "./components/StatusChip/StatusChip.vue.js";
|
|
167
|
+
import { STATUS_MAP as Zf, normalizeStatus as em, resolveStatus as om } from "./components/StatusChip/status-map.js";
|
|
168
|
+
import { default as tm } from "./components/Price/Price.vue.js";
|
|
169
|
+
import { default as fm } from "./components/DateTime/DateTime.vue.js";
|
|
170
|
+
import { default as lm } from "./components/Clock/Clock.vue.js";
|
|
171
|
+
import { default as sm } from "./components/Chat/ChatInterface.vue.js";
|
|
172
|
+
import { VLITE_CONFIG_KEY as um, configState as xm, updateConfig as im, useVLiteConfig as nm } from "./core/config.js";
|
|
173
|
+
import { getStatusColorClass as gm } from "./utils/status.js";
|
|
173
174
|
export {
|
|
174
175
|
ee as $t,
|
|
175
176
|
ar as Accordion,
|
|
176
177
|
dr as AccordionContent,
|
|
177
178
|
mr as AccordionItem,
|
|
178
179
|
pr as AccordionTrigger,
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
180
|
+
Ka as Alert,
|
|
181
|
+
ya as AppShell,
|
|
182
|
+
yt as AttachmentsList,
|
|
183
|
+
qa as Avatar,
|
|
183
184
|
pt as AvatarGroup,
|
|
184
185
|
mt as AvatarUploader,
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
186
|
+
rf as BackButton,
|
|
187
|
+
Ua as Badge,
|
|
188
|
+
ma as BarChart,
|
|
188
189
|
eo as Barcode,
|
|
189
190
|
So as Breadcrumb,
|
|
190
191
|
Io as BreadcrumbItem,
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
192
|
+
ef as Button,
|
|
193
|
+
Af as ButtonGroup,
|
|
194
|
+
Vt as Calendar,
|
|
195
|
+
Qt as CalendarEventItem,
|
|
195
196
|
ao as Carousel,
|
|
196
197
|
Lt as CategoryManager,
|
|
197
|
-
|
|
198
|
-
|
|
198
|
+
Gt as CategoryMenu,
|
|
199
|
+
sm as ChatInterface,
|
|
200
|
+
xf as CheckBox,
|
|
199
201
|
ae as Chip,
|
|
200
202
|
xr as ChoiceBox,
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
203
|
+
da as CircleChart,
|
|
204
|
+
af as Clipboard,
|
|
205
|
+
lm as Clock,
|
|
206
|
+
Of as ColorPicker,
|
|
207
|
+
zf as CommandPaletteContent,
|
|
206
208
|
rr as CommentEditor,
|
|
207
209
|
Jo as CommentItem,
|
|
208
210
|
er as CommentThread,
|
|
209
|
-
|
|
211
|
+
_f as ConfirmationModal,
|
|
210
212
|
xe as CustomFields,
|
|
211
213
|
Bt as CustomFieldsDisplay,
|
|
212
214
|
Uo as DataList,
|
|
213
215
|
nr as DataTable,
|
|
214
216
|
gr as DataTableHeader,
|
|
215
217
|
Tr as DataTableRow,
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
218
|
+
Ff as DatePicker,
|
|
219
|
+
Wf as DateRangePicker,
|
|
220
|
+
fm as DateTime,
|
|
219
221
|
mo as Dropdown,
|
|
220
222
|
io as DropdownItem,
|
|
221
223
|
po as DropdownMenu,
|
|
222
224
|
uo as DropdownTrigger,
|
|
223
225
|
qo as Empty,
|
|
224
226
|
Er as ExportData,
|
|
225
|
-
|
|
227
|
+
If as FadeOverlay,
|
|
226
228
|
Ar as FilePicker,
|
|
227
229
|
vt as FilePreview,
|
|
228
230
|
bo as FileTree,
|
|
@@ -232,95 +234,95 @@ export {
|
|
|
232
234
|
pe as FormField,
|
|
233
235
|
de as FormFields,
|
|
234
236
|
ne as FormSkeleton,
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
237
|
+
va as GanttChart,
|
|
238
|
+
xa as GaugeChart,
|
|
239
|
+
wf as GoogleLogin,
|
|
238
240
|
p as GoogleSignInPlugin,
|
|
239
241
|
Qe as Heatmap,
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
242
|
+
La as Icon,
|
|
243
|
+
Df as IconPicker,
|
|
244
|
+
Ma as ImageComparison,
|
|
243
245
|
wr as ImportData,
|
|
244
|
-
|
|
246
|
+
Va as Input,
|
|
245
247
|
kt as Invoice,
|
|
246
248
|
Mt as InvoiceTotals,
|
|
247
249
|
ve as Kanban,
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
250
|
+
ye as KanbanBoard,
|
|
251
|
+
Qa as Label,
|
|
252
|
+
aa as LineChart,
|
|
251
253
|
Vo as List,
|
|
252
254
|
Qo as ListFieldRow,
|
|
253
|
-
|
|
255
|
+
Ga as Logo,
|
|
254
256
|
qe as MASONRY_BREAKPOINTS,
|
|
255
257
|
Xe as Masonry,
|
|
256
|
-
|
|
258
|
+
Xa as Modal,
|
|
257
259
|
Or as MultiSelect,
|
|
258
260
|
Be as Navbar,
|
|
259
|
-
|
|
261
|
+
Hf as NavbarCommandPalette,
|
|
260
262
|
Me as NavbarGroup,
|
|
261
263
|
ke as NavbarItem,
|
|
262
264
|
Le as NavbarTabs,
|
|
263
|
-
|
|
265
|
+
Nf as NumberInput,
|
|
264
266
|
Lo as OTPInput,
|
|
265
267
|
Nr as Pagination,
|
|
266
268
|
Zr as PermissionEditor,
|
|
267
269
|
$r as PermissionMatrix,
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
270
|
+
Ja as Persona,
|
|
271
|
+
pa as PieChart,
|
|
272
|
+
tm as Price,
|
|
271
273
|
Yr as PricingPlan,
|
|
272
274
|
zr as PricingPlanItem,
|
|
273
275
|
jr as ProgressBar,
|
|
274
276
|
Ge as QRCode,
|
|
275
277
|
Eo as RICH_TEXT_TOOL_GROUPS,
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
278
|
+
Cf as Radio,
|
|
279
|
+
Sf as RadioGroup,
|
|
280
|
+
Ra as Rating,
|
|
281
|
+
Ba as ReviewSummary,
|
|
280
282
|
Ao as RichTextEditor,
|
|
281
283
|
No as RichTextReader,
|
|
282
284
|
hr as SCREEN_CONTEXT_KEY,
|
|
283
|
-
|
|
285
|
+
Zf as STATUS_MAP,
|
|
284
286
|
Ke as Screen,
|
|
285
287
|
Ue as ScreenFilter,
|
|
286
288
|
Ve as ScreenQuickFilters,
|
|
287
|
-
|
|
289
|
+
Ta as SegmentBarChart,
|
|
288
290
|
Ko as Sheet,
|
|
289
|
-
|
|
291
|
+
bf as SidePanel,
|
|
290
292
|
Hr as SidebarMenu,
|
|
291
293
|
Wr as SidebarMenuItem,
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
294
|
+
Xt as Skeleton,
|
|
295
|
+
mf as Slider,
|
|
296
|
+
na as SpeedometerChart,
|
|
295
297
|
Je as Spinner,
|
|
296
298
|
Pr as Splitter,
|
|
297
|
-
|
|
299
|
+
ha as StatCardChart,
|
|
298
300
|
Pe as Stats,
|
|
299
|
-
|
|
300
|
-
|
|
301
|
+
$f as StatusChip,
|
|
302
|
+
pf as Switch,
|
|
301
303
|
he as Tabes,
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
304
|
+
Ut as TagInput,
|
|
305
|
+
cf as Textarea,
|
|
306
|
+
Ef as ThemeToggle,
|
|
307
|
+
Kt as ThumbnailSelector,
|
|
306
308
|
Tt as Timeline,
|
|
307
|
-
|
|
309
|
+
ga as TimelineChart,
|
|
308
310
|
Pt as TimelineIndicator,
|
|
309
311
|
ht as TimelineItem,
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
312
|
+
Yf as ToastNotification,
|
|
313
|
+
df as Tooltip,
|
|
314
|
+
um as VLITE_CONFIG_KEY,
|
|
315
|
+
Pa as WaffleChart,
|
|
314
316
|
Go as Workbook,
|
|
315
317
|
ro as barcodesConstants,
|
|
316
318
|
x as camelCase,
|
|
317
319
|
i as capitalize,
|
|
318
|
-
|
|
320
|
+
xm as configState,
|
|
319
321
|
dt as configure,
|
|
320
|
-
|
|
322
|
+
ea as configureSkeleton,
|
|
321
323
|
n as copyToClipboard,
|
|
322
|
-
|
|
323
|
-
|
|
324
|
+
ka as createAsyncSelect,
|
|
325
|
+
jf as createVLite,
|
|
324
326
|
c as debounce,
|
|
325
327
|
d as deepMerge,
|
|
326
328
|
g as delay,
|
|
@@ -335,47 +337,47 @@ export {
|
|
|
335
337
|
re as getComponentConfig,
|
|
336
338
|
v as getDefaultDateRange,
|
|
337
339
|
Rt as getFileTypeIcon,
|
|
338
|
-
|
|
340
|
+
oa as getGlobalConfig,
|
|
339
341
|
F as getNextMonth,
|
|
340
|
-
|
|
342
|
+
y as getNextYear,
|
|
341
343
|
Xo as getObjectValue,
|
|
342
|
-
|
|
344
|
+
D as getPrevMonth,
|
|
343
345
|
R as getPrevYear,
|
|
344
|
-
|
|
346
|
+
gm as getStatusColorClass,
|
|
345
347
|
A as getToday,
|
|
346
348
|
B as getTomorrow,
|
|
347
349
|
N as getUniqueId,
|
|
348
350
|
k as getUpcoming,
|
|
349
351
|
E as getYear,
|
|
350
352
|
M as getYesterday,
|
|
351
|
-
|
|
353
|
+
yr as initializeTheme,
|
|
352
354
|
w as isAppleDevice,
|
|
353
355
|
L as isEmpty,
|
|
354
356
|
O as isPureTimeString,
|
|
355
357
|
G as isValidTimeRange,
|
|
356
358
|
X as lazySearch,
|
|
357
|
-
|
|
358
|
-
|
|
359
|
+
qt as normalizeBone,
|
|
360
|
+
em as normalizeStatus,
|
|
359
361
|
_ as parseDateTime,
|
|
360
362
|
ut as pauseTimers,
|
|
361
363
|
K as randomNumber,
|
|
362
|
-
|
|
364
|
+
ra as registerBones,
|
|
363
365
|
Y as removeExtraProperties,
|
|
364
366
|
xt as removeToast,
|
|
365
367
|
j as resetSearchIndex,
|
|
366
368
|
Mo as resolveRichTextTools,
|
|
367
|
-
|
|
369
|
+
om as resolveStatus,
|
|
368
370
|
it as resumeTimers,
|
|
369
371
|
q as search,
|
|
370
372
|
nt as showToast,
|
|
371
373
|
U as slugify,
|
|
372
|
-
|
|
374
|
+
Jt as snapshotBones,
|
|
373
375
|
z as throttle,
|
|
374
376
|
V as toISO,
|
|
375
377
|
H as toLocalISO,
|
|
376
378
|
ct as toast,
|
|
377
379
|
Q as truncate,
|
|
378
|
-
|
|
380
|
+
im as updateConfig,
|
|
379
381
|
ot as useAdvancedKeyStroke,
|
|
380
382
|
Co as useDropdownIds,
|
|
381
383
|
co as useDropdownSelection,
|
|
@@ -385,8 +387,8 @@ export {
|
|
|
385
387
|
rt as useKeyStroke,
|
|
386
388
|
_r as useMultiSelectHydration,
|
|
387
389
|
gt as useNotifications,
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
390
|
+
Dr as useTheme,
|
|
391
|
+
Do as useTreeSelection,
|
|
392
|
+
nm as useVLiteConfig,
|
|
391
393
|
at as vScrollReveal
|
|
392
394
|
};
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"private": false,
|
|
4
4
|
"description": "A Vue 3 UI component library built with Tailwind CSS.",
|
|
5
5
|
"license": "MIT",
|
|
6
|
-
"version": "1.4.
|
|
6
|
+
"version": "1.4.2",
|
|
7
7
|
"type": "module",
|
|
8
8
|
"main": "index.js",
|
|
9
9
|
"module": "index.js",
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
"v-datepicker-lite": "^0.1.10",
|
|
51
51
|
"v-event-calendar": "^0.0.10",
|
|
52
52
|
"v-file-preview": "^0.1.3",
|
|
53
|
-
"v-tooltip-lite": "^0.2.
|
|
53
|
+
"v-tooltip-lite": "^0.2.10",
|
|
54
54
|
"vue-carousel-lite": "^0.2.8",
|
|
55
55
|
"vue-draggable-plus": "^0.5.3",
|
|
56
56
|
"vue3-google-signin": "^2.1.1",
|