vlite3 1.4.6 → 1.4.7

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 CHANGED
@@ -463,6 +463,7 @@ Follow these rules strictly to ensure visual consistency and predictable styling
463
463
  - [x] **Charts**
464
464
  - [x] **GanttChart**
465
465
  - [x] **ImageComparison**
466
+ - [x] **ImageMagnifier**
466
467
 
467
468
  ### Feedback & Overlays
468
469
 
@@ -17,7 +17,7 @@ import "v-datepicker-lite";
17
17
  import "v-datepicker-lite/style.css";
18
18
  import "@jaames/iro";
19
19
  import "@vueuse/core";
20
- /* empty css */
20
+ /* empty css */
21
21
  import qe from "../IconPicker.vue.js";
22
22
  /* empty css */
23
23
  /* empty css */
@@ -1,5 +1,5 @@
1
- import o from "./ColorIro.vue2.js";
2
- /* empty css */
1
+ import o from "./ColorIro.vue.js";
2
+ /* empty css */
3
3
  export {
4
4
  o as default
5
5
  };
@@ -7,8 +7,8 @@ import "../../core/config.js";
7
7
  /* empty css */
8
8
  /* empty css */
9
9
  import E from "../Button.vue.js";
10
- import _ from "./ColorIro.vue2.js";
11
- /* empty css */
10
+ import _ from "./ColorIro.vue.js";
11
+ /* empty css */
12
12
  import { useEyeDropper as I } from "@vueuse/core";
13
13
  const N = { class: "absolute left-2.5 top-1/2 -translate-y-1/2 flex items-center justify-center z-20 pointer-events-none" }, j = {
14
14
  key: 0,
@@ -4,7 +4,7 @@ import k from "../Icon.vue.js";
4
4
  import { $t as E } from "../../utils/i18n.js";
5
5
  import { useCommandPaletteItems as Y } from "./useCommandPaletteItems.js";
6
6
  import { useCommandPaletteNav as Z } from "./useCommandPaletteNav.js";
7
- import ee from "./CommandPaletteItem.vue.js";
7
+ import ee from "./CommandPaletteItem.vue2.js";
8
8
  const te = { class: "command-palette-content flex flex-col w-full h-full max-h-[70vh]" }, oe = { class: "flex items-center gap-3 px-4 py-3 border-b border-border/80 shrink-0" }, se = ["placeholder"], ne = ["aria-label"], re = {
9
9
  key: 0,
10
10
  class: "flex flex-col items-center justify-center py-14 px-6 text-center select-none",
@@ -1,5 +1,5 @@
1
1
  import t from "./CommandPaletteItem.vue3.js";
2
- /* empty css */
2
+ /* empty css */
3
3
  import o from "../../_virtual/_plugin-vue_export-helper.js";
4
4
  const r = /* @__PURE__ */ o(t, [["__scopeId", "data-v-66b1ae06"]]);
5
5
  export {
@@ -0,0 +1,18 @@
1
+ export interface ImageMagnifierProps {
2
+ src: string;
3
+ alt?: string;
4
+ zoom?: number;
5
+ magnifierSize?: number;
6
+ glass?: boolean;
7
+ class?: any;
8
+ imageClass?: any;
9
+ }
10
+ declare const _default: import('vue').DefineComponent<ImageMagnifierProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<ImageMagnifierProps> & Readonly<{}>, {
11
+ glass: boolean;
12
+ zoom: number;
13
+ magnifierSize: number;
14
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
15
+ containerRef: HTMLDivElement;
16
+ imageRef: HTMLImageElement;
17
+ }, HTMLDivElement>;
18
+ export default _default;
@@ -0,0 +1,73 @@
1
+ import { defineComponent as k, ref as a, openBlock as S, createElementBlock as R, withModifiers as m, normalizeClass as f, createElementVNode as x, withDirectives as C, normalizeStyle as _, vShow as B } from "vue";
2
+ const T = ["src", "alt"], E = /* @__PURE__ */ k({
3
+ __name: "ImageMagnifier",
4
+ props: {
5
+ src: {},
6
+ alt: {},
7
+ zoom: { default: 2 },
8
+ magnifierSize: { default: 120 },
9
+ glass: { type: Boolean, default: !0 },
10
+ class: {},
11
+ imageClass: {}
12
+ },
13
+ setup(b) {
14
+ const e = b, r = a(null), v = a(null), t = a(!1), u = a({ x: 0, y: 0 }), c = a({ x: 0, y: 0 }), g = a({ width: 0, height: 0 }), d = (n) => {
15
+ if (!r.value || !v.value) return;
16
+ const { left: o, top: i, width: p, height: h } = r.value.getBoundingClientRect();
17
+ let l = n.clientX - o, s = n.clientY - i;
18
+ l = Math.max(0, Math.min(l, p)), s = Math.max(0, Math.min(s, h)), u.value = {
19
+ x: l - e.magnifierSize / 2,
20
+ y: s - e.magnifierSize / 2
21
+ };
22
+ const w = p * e.zoom, y = h * e.zoom;
23
+ g.value = { width: w, height: y };
24
+ const M = e.magnifierSize / 2 - l * e.zoom, $ = e.magnifierSize / 2 - s * e.zoom;
25
+ c.value = { x: M, y: $ };
26
+ }, z = (n) => {
27
+ n.touches.length > 0 && d(n.touches[0]);
28
+ };
29
+ return (n, o) => (S(), R("div", {
30
+ ref_key: "containerRef",
31
+ ref: r,
32
+ class: f(["relative inline-block w-full max-w-max cursor-crosshair select-none touch-none group", e.class]),
33
+ onMouseenter: o[0] || (o[0] = (i) => t.value = !0),
34
+ onMouseleave: o[1] || (o[1] = (i) => t.value = !1),
35
+ onMousemove: d,
36
+ onTouchstart: o[2] || (o[2] = m((i) => t.value = !0, ["prevent"])),
37
+ onTouchend: o[3] || (o[3] = m((i) => t.value = !1, ["prevent"])),
38
+ onTouchmove: m(z, ["prevent"])
39
+ }, [
40
+ x("img", {
41
+ ref_key: "imageRef",
42
+ ref: v,
43
+ src: e.src,
44
+ alt: e.alt || "Magnifiable Image",
45
+ class: f(["block w-full h-auto object-cover rounded-lg", e.imageClass])
46
+ }, null, 10, T),
47
+ C(x("div", {
48
+ class: f(["absolute pointer-events-none border border-border/50 shadow-[0_8px_30px_rgb(0,0,0,0.12)] z-10 will-change-transform", [
49
+ e.glass ? "backdrop-blur-sm bg-background/5" : "bg-white",
50
+ "rounded-full",
51
+ t.value ? "opacity-100 scale-100" : "opacity-0 scale-95"
52
+ ]]),
53
+ style: _({
54
+ width: `${e.magnifierSize}px`,
55
+ height: `${e.magnifierSize}px`,
56
+ transform: `translate(${u.value.x}px, ${u.value.y}px)`,
57
+ top: "0",
58
+ left: "0",
59
+ backgroundImage: `url(${e.src})`,
60
+ backgroundRepeat: "no-repeat",
61
+ backgroundSize: `${g.value.width}px ${g.value.height}px`,
62
+ backgroundPosition: `${c.value.x}px ${c.value.y}px`,
63
+ transition: "opacity 0.2s ease, transform 0.05s linear"
64
+ })
65
+ }, null, 6), [
66
+ [B, t.value]
67
+ ])
68
+ ], 34));
69
+ }
70
+ });
71
+ export {
72
+ E as default
73
+ };
@@ -0,0 +1,4 @@
1
+ import f from "./ImageMagnifier.vue.js";
2
+ export {
3
+ f as default
4
+ };
@@ -3,7 +3,7 @@ import L from "./Icon.vue.js";
3
3
  import v from "./Modal.vue.js";
4
4
  import N from "./CommandPalette/CommandPaletteContent.vue.js";
5
5
  import { $t as U } from "../utils/i18n.js";
6
- /* empty css */
6
+ /* empty css */
7
7
  const V = { class: "block truncate -text-fs-1.5" }, S = { class: "ml-auto inline-flex items-center gap-0.5 px-1.5 py-0.5 rounded text-[10px] font-mono font-medium border border-border/80 bg-background text-muted-foreground ml-1" }, A = /* @__PURE__ */ x({
8
8
  __name: "NavbarCommandPalette",
9
9
  props: {
@@ -15,7 +15,7 @@ import "v-datepicker-lite";
15
15
  import "v-datepicker-lite/style.css";
16
16
  import "@jaames/iro";
17
17
  import "@vueuse/core";
18
- /* empty css */
18
+ /* empty css */
19
19
  import "iconify-icon-picker";
20
20
  import "iconify-icon-picker/style.css";
21
21
  /* empty css */
@@ -35,6 +35,7 @@ export { default as GoogleLogin } from './GoogleLogin.vue';
35
35
  export { Heatmap } from './Heatmap';
36
36
  export { default as Icon } from './Icon.vue';
37
37
  export { default as IconPicker } from './IconPicker.vue';
38
+ export { default as ImageMagnifier } from './ImageMagnifier.vue';
38
39
  export { default as Input } from './Input.vue';
39
40
  export { Kanban } from './Kanban';
40
41
  export { default as Label } from './Label.vue';
package/index.d.ts CHANGED
@@ -61,6 +61,7 @@ export * from './components/AppShell';
61
61
  export * from './components/Rating';
62
62
  export * from './components/AsyncSelect';
63
63
  export * from './components/ImageComparison';
64
+ export { default as ImageMagnifier } from './components/ImageMagnifier.vue';
64
65
  export { default as Icon } from './components/Icon.vue';
65
66
  export { default as Logo } from './components/Logo.vue';
66
67
  export { default as Alert } from './components/Alert.vue';
package/index.js CHANGED
@@ -1,6 +1,6 @@
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 C, downloadFile as g, flattenArray as T, formatAmPm as S, formatCurrency as h, formatDate as I, formatNumber as P, formatSchedule as b, getDefaultDateRange as v, getNextMonth as y, getNextYear as D, getPrevMonth as F, getPrevYear as R, getToday as A, getTomorrow as B, getUniqueId as N, getUpcoming as E, getYear as k, getYesterday as M, isAppleDevice as L, isEmpty as w, 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";
3
+ import { camelCase as x, capitalize as i, copyToClipboard as n, debounce as c, delay as C, downloadFile as g, flattenArray as T, formatAmPm as S, formatCurrency as h, formatDate as I, formatNumber as P, formatSchedule as b, getDefaultDateRange as v, getNextMonth as y, getNextYear as D, getPrevMonth as F, getPrevYear as R, getToday as A, getTomorrow as B, getUniqueId as N, getUpcoming as E, getYear as M, getYesterday as k, isAppleDevice as L, isEmpty as w, 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";
@@ -21,7 +21,7 @@ import { default as De } 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 Ee } from "./components/Navbar/NavbarItem.vue.js";
24
- import { default as Me } from "./components/Navbar/NavbarGroup.vue.js";
24
+ import { default as ke } from "./components/Navbar/NavbarGroup.vue.js";
25
25
  import { default as we } from "./components/Navbar/NavbarTabs.vue.js";
26
26
  /* empty css */
27
27
  import { default as Ge } from "./components/QRCode/QRCode.vue.js";
@@ -45,7 +45,7 @@ import { calculateCartTotals as So, computeCouponDiscount as ho, computeShipping
45
45
  import { default as Ro } from "./components/Dropdown/Dropdown.vue.js";
46
46
  import { default as Bo } from "./components/Dropdown/DropdownMenu.vue.js";
47
47
  import { default as Eo } from "./components/Dropdown/DropdownTrigger.vue.js";
48
- import { default as Mo } from "./components/Dropdown/DropdownItem.vue.js";
48
+ import { default as ko } from "./components/Dropdown/DropdownItem.vue.js";
49
49
  import { useDropdownSelection as wo } from "./components/Dropdown/composables/useDropdownSelection.js";
50
50
  import { useDropdownIds as Go } from "./components/Dropdown/composables/useDropdownIds.js";
51
51
  import { default as Ko } from "./components/Breadcrumb/Breadcrumb.vue.js";
@@ -72,7 +72,7 @@ import { default as yt } from "./components/Accordion/Accordion.vue.js";
72
72
  import { default as Ft } from "./components/Accordion/AccordionItem.vue.js";
73
73
  import { default as At } from "./components/Accordion/AccordionTrigger.vue.js";
74
74
  import { default as Nt } from "./components/Accordion/AccordionContent.vue.js";
75
- import { default as kt } from "./components/ChoiceBox/ChoiceBox.vue.js";
75
+ import { default as Mt } from "./components/ChoiceBox/ChoiceBox.vue.js";
76
76
  import { default as Lt } from "./components/DataTable/DataTable.vue.js";
77
77
  import { default as Ot } from "./components/DataTable/DataTableHeader.vue.js";
78
78
  import { default as _t } from "./components/DataTable/DataTableRow.vue.js";
@@ -99,7 +99,7 @@ import { useAdvancedKeyStroke as Pr, useKeyStroke as br } from "./composables/us
99
99
  import { vScrollReveal as yr } from "./directives/vScrollReveal.js";
100
100
  import { default as Fr } from "./components/AvatarUploader/AvatarUploader.vue.js";
101
101
  import { default as Ar } from "./components/AvatarGroup/AvatarGroup.vue.js";
102
- import { configure as Nr, pauseTimers as Er, removeToast as kr, resumeTimers as Mr, showToast as Lr, toast as wr, useNotifications as Or } from "./composables/useNotifications.js";
102
+ import { configure as Nr, pauseTimers as Er, removeToast as Mr, resumeTimers as kr, showToast as Lr, toast as wr, useNotifications as Or } from "./composables/useNotifications.js";
103
103
  import { default as _r } from "./components/Timeline/Timeline.vue.js";
104
104
  import { default as Yr } from "./components/Timeline/TimelineItem.vue.js";
105
105
  import { default as zr } from "./components/Timeline/TimelineIndicator.vue.js";
@@ -123,7 +123,7 @@ import { default as ya } from "./components/Chart/LineChart.vue.js";
123
123
  import { default as Fa } from "./components/Chart/BarChart.vue.js";
124
124
  import { default as Aa } from "./components/Chart/PieChart.vue.js";
125
125
  import { default as Na } from "./components/Chart/CircleChart.vue.js";
126
- import { default as ka } from "./components/Chart/GaugeChart.vue.js";
126
+ import { default as Ma } from "./components/Chart/GaugeChart.vue.js";
127
127
  import { default as La } from "./components/Chart/SpeedometerChart.vue.js";
128
128
  import { default as Oa } from "./components/Chart/TimelineChart.vue.js";
129
129
  import { default as _a } from "./components/Chart/SegmentBarChart.vue.js";
@@ -135,69 +135,70 @@ import { default as ja } from "./components/Rating/Rating.vue.js";
135
135
  import { default as $a } from "./components/Rating/ReviewSummary.vue.js";
136
136
  import { createAsyncSelect as Za } from "./components/AsyncSelect/createAsyncSelect.js";
137
137
  import { default as of } from "./components/ImageComparison/ImageComparison.vue.js";
138
- import { default as rf } from "./components/Icon.vue.js";
139
- import { default as ff } from "./components/Logo.vue.js";
140
- import { default as lf } from "./components/Alert.vue.js";
141
- import { default as sf } from "./components/Badge.vue.js";
142
- import { default as df } from "./components/Input.vue.js";
138
+ import { default as rf } from "./components/ImageMagnifier.vue.js";
139
+ import { default as ff } from "./components/Icon.vue.js";
140
+ import { default as lf } from "./components/Logo.vue.js";
141
+ import { default as sf } from "./components/Alert.vue.js";
142
+ import { default as df } from "./components/Badge.vue.js";
143
+ import { default as nf } from "./components/Input.vue.js";
143
144
  /* empty css */
144
- import { default as nf } from "./components/Label.vue.js";
145
- import { default as Cf } from "./components/Modal.vue.js";
146
- import { default as Tf } from "./components/Avatar.vue.js";
147
- import { default as hf } from "./components/Persona.vue.js";
148
- import { default as Pf } from "./components/Button.vue.js";
149
- import { default as vf } from "./components/BackButton.vue.js";
150
- import { default as Df } from "./components/Clipboard.vue.js";
151
- import { default as Rf } from "./components/Slider.vue.js";
152
- import { default as Bf } from "./components/Switch.vue.js";
153
- import { default as Ef } from "./components/Tooltip.vue.js";
154
- import { default as Mf } from "./components/CheckBox.vue.js";
155
- import { default as wf } from "./components/Textarea.vue.js";
156
- import { default as Gf } from "./components/Radio.vue.js";
157
- import { default as Kf } from "./components/RadioGroup.vue.js";
158
- import { default as Uf } from "./components/FadeOverlay/FadeOverlay.vue.js";
159
- import { default as Vf } from "./components/SidePanel.vue.js";
160
- import { default as Qf } from "./components/DatePicker.vue.js";
161
- import { default as Xf } from "./components/IconPicker.vue.js";
162
- import { default as qf } from "./components/ButtonGroup.vue.js";
163
- import { default as Jf } from "./components/NumberInput.vue.js";
164
- import { default as em } from "./components/ThemeToggle.vue.js";
165
- import { default as tm } from "./components/GoogleLogin.vue.js";
166
- import { default as am } from "./components/ColorPicker/ColorPicker.vue.js";
167
- import { default as mm } from "./components/ConfirmationModal.vue.js";
168
- import { default as pm } from "./components/ToastNotification.vue.js";
169
- import { default as um } from "./components/CommandPalette/CommandPaletteContent.vue.js";
170
- import { default as xm } from "./components/NavbarCommandPalette.vue.js";
171
- import { default as nm } from "./components/DateRangePicker.vue.js";
172
- import { createVLite as Cm } from "./core/index.js";
173
- import { default as Tm } from "./components/StatusChip/StatusChip.vue.js";
174
- import { STATUS_MAP as hm, normalizeStatus as Im, resolveStatus as Pm } from "./components/StatusChip/status-map.js";
175
- import { default as vm } from "./components/Price/Price.vue.js";
176
- import { default as Dm } from "./components/DateTime/DateTime.vue.js";
177
- import { default as Rm } from "./components/Clock/Clock.vue.js";
178
- import { default as Bm } from "./components/Chat/ChatInterface.vue.js";
179
- import { VLITE_CONFIG_KEY as Em, configState as km, updateConfig as Mm, useVLiteConfig as Lm } from "./core/config.js";
180
- import { getStatusColorClass as Om } from "./utils/status.js";
145
+ import { default as Cf } from "./components/Label.vue.js";
146
+ import { default as Tf } from "./components/Modal.vue.js";
147
+ import { default as hf } from "./components/Avatar.vue.js";
148
+ import { default as Pf } from "./components/Persona.vue.js";
149
+ import { default as vf } from "./components/Button.vue.js";
150
+ import { default as Df } from "./components/BackButton.vue.js";
151
+ import { default as Rf } from "./components/Clipboard.vue.js";
152
+ import { default as Bf } from "./components/Slider.vue.js";
153
+ import { default as Ef } from "./components/Switch.vue.js";
154
+ import { default as kf } from "./components/Tooltip.vue.js";
155
+ import { default as wf } from "./components/CheckBox.vue.js";
156
+ import { default as Gf } from "./components/Textarea.vue.js";
157
+ import { default as Kf } from "./components/Radio.vue.js";
158
+ import { default as Uf } from "./components/RadioGroup.vue.js";
159
+ import { default as Vf } from "./components/FadeOverlay/FadeOverlay.vue.js";
160
+ import { default as Qf } from "./components/SidePanel.vue.js";
161
+ import { default as Xf } from "./components/DatePicker.vue.js";
162
+ import { default as qf } from "./components/IconPicker.vue.js";
163
+ import { default as Jf } from "./components/ButtonGroup.vue.js";
164
+ import { default as em } from "./components/NumberInput.vue.js";
165
+ import { default as tm } from "./components/ThemeToggle.vue.js";
166
+ import { default as am } from "./components/GoogleLogin.vue.js";
167
+ import { default as mm } from "./components/ColorPicker/ColorPicker.vue.js";
168
+ import { default as pm } from "./components/ConfirmationModal.vue.js";
169
+ import { default as um } from "./components/ToastNotification.vue.js";
170
+ import { default as xm } from "./components/CommandPalette/CommandPaletteContent.vue.js";
171
+ import { default as nm } from "./components/NavbarCommandPalette.vue.js";
172
+ import { default as Cm } from "./components/DateRangePicker.vue.js";
173
+ import { createVLite as Tm } from "./core/index.js";
174
+ import { default as hm } from "./components/StatusChip/StatusChip.vue.js";
175
+ import { STATUS_MAP as Pm, normalizeStatus as bm, resolveStatus as vm } from "./components/StatusChip/status-map.js";
176
+ import { default as Dm } from "./components/Price/Price.vue.js";
177
+ import { default as Rm } from "./components/DateTime/DateTime.vue.js";
178
+ import { default as Bm } from "./components/Clock/Clock.vue.js";
179
+ import { default as Em } from "./components/Chat/ChatInterface.vue.js";
180
+ import { VLITE_CONFIG_KEY as km, configState as Lm, updateConfig as wm, useVLiteConfig as Om } from "./core/config.js";
181
+ import { getStatusColorClass as _m } from "./utils/status.js";
181
182
  export {
182
183
  ee as $t,
183
184
  yt as Accordion,
184
185
  Nt as AccordionContent,
185
186
  Ft as AccordionItem,
186
187
  At as AccordionTrigger,
187
- lf as Alert,
188
+ sf as Alert,
188
189
  Wa as AppShell,
189
190
  Wr as AttachmentsList,
190
- Tf as Avatar,
191
+ hf as Avatar,
191
192
  Ar as AvatarGroup,
192
193
  Fr as AvatarUploader,
193
- vf as BackButton,
194
- sf as Badge,
194
+ Df as BackButton,
195
+ df as Badge,
195
196
  Fa as BarChart,
196
197
  eo as Barcode,
197
198
  Ko as Breadcrumb,
198
199
  Uo as BreadcrumbItem,
199
- Pf as Button,
200
- qf as ButtonGroup,
200
+ vf as Button,
201
+ Jf as ButtonGroup,
201
202
  da as Calendar,
202
203
  ia as CalendarEventItem,
203
204
  ao as Carousel,
@@ -208,35 +209,35 @@ export {
208
209
  uo as CartSummary,
209
210
  ra as CategoryManager,
210
211
  fa as CategoryMenu,
211
- Bm as ChatInterface,
212
- Mf as CheckBox,
212
+ Em as ChatInterface,
213
+ wf as CheckBox,
213
214
  ae as Chip,
214
- kt as ChoiceBox,
215
+ Mt as ChoiceBox,
215
216
  Na as CircleChart,
216
- Df as Clipboard,
217
- Rm as Clock,
218
- am as ColorPicker,
219
- um as CommandPaletteContent,
217
+ Rf as Clipboard,
218
+ Bm as Clock,
219
+ mm as ColorPicker,
220
+ xm as CommandPaletteContent,
220
221
  bt as CommentEditor,
221
222
  St as CommentItem,
222
223
  It as CommentThread,
223
- mm as ConfirmationModal,
224
+ pm as ConfirmationModal,
224
225
  xe as CustomFields,
225
226
  $r as CustomFieldsDisplay,
226
227
  st as DataList,
227
228
  Lt as DataTable,
228
229
  Ot as DataTableHeader,
229
230
  _t as DataTableRow,
230
- Qf as DatePicker,
231
- nm as DateRangePicker,
232
- Dm as DateTime,
231
+ Xf as DatePicker,
232
+ Cm as DateRangePicker,
233
+ Rm as DateTime,
233
234
  Ro as Dropdown,
234
- Mo as DropdownItem,
235
+ ko as DropdownItem,
235
236
  Bo as DropdownMenu,
236
237
  Eo as DropdownTrigger,
237
238
  gt as Empty,
238
239
  er as ExportData,
239
- Uf as FadeOverlay,
240
+ Vf as FadeOverlay,
240
241
  qt as FilePicker,
241
242
  Hr as FilePreview,
242
243
  Vo as FileTree,
@@ -247,83 +248,84 @@ export {
247
248
  ue as FormFields,
248
249
  ne as FormSkeleton,
249
250
  Ha as GanttChart,
250
- ka as GaugeChart,
251
- tm as GoogleLogin,
251
+ Ma as GaugeChart,
252
+ am as GoogleLogin,
252
253
  p as GoogleSignInPlugin,
253
254
  Qe as Heatmap,
254
- rf as Icon,
255
- Xf as IconPicker,
255
+ ff as Icon,
256
+ qf as IconPicker,
256
257
  of as ImageComparison,
258
+ rf as ImageMagnifier,
257
259
  tr as ImportData,
258
- df as Input,
260
+ nf as Input,
259
261
  Zr as Invoice,
260
262
  oa as InvoiceTotals,
261
263
  ve as Kanban,
262
264
  De as KanbanBoard,
263
- nf as Label,
265
+ Cf as Label,
264
266
  ya as LineChart,
265
267
  dt as List,
266
268
  it as ListFieldRow,
267
- ff as Logo,
269
+ lf as Logo,
268
270
  qe as MASONRY_BREAKPOINTS,
269
271
  Xe as Masonry,
270
- Cf as Modal,
272
+ Tf as Modal,
271
273
  ar as MultiSelect,
272
274
  Be as Navbar,
273
- xm as NavbarCommandPalette,
274
- Me as NavbarGroup,
275
+ nm as NavbarCommandPalette,
276
+ ke as NavbarGroup,
275
277
  Ee as NavbarItem,
276
278
  we as NavbarTabs,
277
- Jf as NumberInput,
279
+ em as NumberInput,
278
280
  rt as OTPInput,
279
281
  Jt as Pagination,
280
282
  hr as PermissionEditor,
281
283
  Tr as PermissionMatrix,
282
- hf as Persona,
284
+ Pf as Persona,
283
285
  Aa as PieChart,
284
- vm as Price,
286
+ Dm as Price,
285
287
  pr as PricingPlan,
286
288
  ur as PricingPlanItem,
287
289
  Cr as ProgressBar,
288
290
  Ge as QRCode,
289
291
  et as RICH_TEXT_TOOL_GROUPS,
290
- Gf as Radio,
291
- Kf as RadioGroup,
292
+ Kf as Radio,
293
+ Uf as RadioGroup,
292
294
  ja as Rating,
293
295
  $a as ReviewSummary,
294
296
  qo as RichTextEditor,
295
297
  Jo as RichTextReader,
296
298
  Yt as SCREEN_CONTEXT_KEY,
297
- hm as STATUS_MAP,
299
+ Pm as STATUS_MAP,
298
300
  Ke as Screen,
299
301
  Ue as ScreenFilter,
300
302
  Ve as ScreenQuickFilters,
301
303
  _a as SegmentBarChart,
302
304
  lt as Sheet,
303
- Vf as SidePanel,
305
+ Qf as SidePanel,
304
306
  xr as SidebarMenu,
305
307
  nr as SidebarMenuItem,
306
308
  ca as Skeleton,
307
- Rf as Slider,
309
+ Bf as Slider,
308
310
  La as SpeedometerChart,
309
311
  Je as Spinner,
310
312
  zt as Splitter,
311
313
  Ya as StatCardChart,
312
314
  Pe as Stats,
313
- Tm as StatusChip,
314
- Bf as Switch,
315
+ hm as StatusChip,
316
+ Ef as Switch,
315
317
  he as Tabes,
316
318
  sa as TagInput,
317
- wf as Textarea,
318
- em as ThemeToggle,
319
+ Gf as Textarea,
320
+ tm as ThemeToggle,
319
321
  la as ThumbnailSelector,
320
322
  _r as Timeline,
321
323
  Oa as TimelineChart,
322
324
  zr as TimelineIndicator,
323
325
  Yr as TimelineItem,
324
- pm as ToastNotification,
325
- Ef as Tooltip,
326
- Em as VLITE_CONFIG_KEY,
326
+ um as ToastNotification,
327
+ kf as Tooltip,
328
+ km as VLITE_CONFIG_KEY,
327
329
  za as WaffleChart,
328
330
  ft as Workbook,
329
331
  to as barcodesConstants,
@@ -333,12 +335,12 @@ export {
333
335
  ho as computeCouponDiscount,
334
336
  Io as computeShipping,
335
337
  Po as computeTax,
336
- km as configState,
338
+ Lm as configState,
337
339
  Nr as configure,
338
340
  Ia as configureSkeleton,
339
341
  n as copyToClipboard,
340
342
  Za as createAsyncSelect,
341
- Cm as createVLite,
343
+ Tm as createVLite,
342
344
  c as debounce,
343
345
  u as deepMerge,
344
346
  C as delay,
@@ -359,13 +361,13 @@ export {
359
361
  ct as getObjectValue,
360
362
  F as getPrevMonth,
361
363
  R as getPrevYear,
362
- Om as getStatusColorClass,
364
+ _m as getStatusColorClass,
363
365
  A as getToday,
364
366
  B as getTomorrow,
365
367
  N as getUniqueId,
366
368
  E as getUpcoming,
367
- k as getYear,
368
- M as getYesterday,
369
+ M as getYear,
370
+ k as getYesterday,
369
371
  Wt as initializeTheme,
370
372
  L as isAppleDevice,
371
373
  w as isEmpty,
@@ -373,17 +375,17 @@ export {
373
375
  G as isValidTimeRange,
374
376
  X as lazySearch,
375
377
  ga as normalizeBone,
376
- Im as normalizeStatus,
378
+ bm as normalizeStatus,
377
379
  _ as parseDateTime,
378
380
  Er as pauseTimers,
379
381
  K as randomNumber,
380
382
  ba as registerBones,
381
383
  Y as removeExtraProperties,
382
- kr as removeToast,
384
+ Mr as removeToast,
383
385
  j as resetSearchIndex,
384
386
  ot as resolveRichTextTools,
385
- Pm as resolveStatus,
386
- Mr as resumeTimers,
387
+ vm as resolveStatus,
388
+ kr as resumeTimers,
387
389
  q as search,
388
390
  Lr as showToast,
389
391
  U as slugify,
@@ -396,7 +398,7 @@ export {
396
398
  H as toLocalISO,
397
399
  wr as toast,
398
400
  Q as truncate,
399
- Mm as updateConfig,
401
+ wm as updateConfig,
400
402
  Pr as useAdvancedKeyStroke,
401
403
  go as useCart,
402
404
  Do as useCartCalculation,
@@ -410,6 +412,6 @@ export {
410
412
  Or as useNotifications,
411
413
  Xt as useTheme,
412
414
  Xo as useTreeSelection,
413
- Lm as useVLiteConfig,
415
+ Om as useVLiteConfig,
414
416
  yr as vScrollReveal
415
417
  };
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",
6
+ "version": "1.4.7",
7
7
  "type": "module",
8
8
  "main": "index.js",
9
9
  "module": "index.js",