vlite3 1.2.2 → 1.2.5
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 +18 -7
- package/components/AppShell/AppShellLayoutDashboard.vue.js +1 -1
- package/components/AppShell/AppShellLayoutHeaderShell.vue.js +1 -1
- package/components/AsyncSelect/createAsyncSelect.d.ts +88 -0
- package/components/AsyncSelect/createAsyncSelect.js +156 -0
- package/components/AsyncSelect/index.d.ts +1 -0
- package/components/AvatarGroup/AvatarGroup.vue.js +10 -9
- package/components/Beacon.vue.d.ts +13 -0
- package/components/CategoryManager/CategoryManager.vue.js +1 -1
- package/components/ChoiceBox/ChoiceBox.vue.js +4 -2
- package/components/{CopyButton.vue.d.ts → Clipboard.vue.d.ts} +4 -3
- package/components/{CopyButton.vue.js → Clipboard.vue.js} +19 -19
- package/components/Clipboard.vue2.js +4 -0
- package/components/ColorPicker/ColorIro.vue3.js +2 -2
- package/components/ColorPicker/ColorPicker.vue.js +2 -2
- package/components/CommandPalette/CommandPaletteContent.vue2.js +1 -1
- package/components/CommandPalette/{CommandPaletteItem.vue.js → CommandPaletteItem.vue2.js} +1 -1
- package/components/DataTable/types.d.ts +1 -1
- package/components/Form/Form.vue.js +1 -1
- package/components/Form/Form.vue2.js +1 -1
- package/components/List/ListFieldRow.vue.js +221 -144
- package/components/Modal.vue.js +1 -1
- package/components/Modal.vue2.js +92 -86
- package/components/NavbarCommandPalette.vue.js +1 -1
- package/components/Persona.vue.d.ts +25 -0
- package/components/Price/Price.vue.d.ts +1 -1
- package/components/Price/Price.vue.js +35 -13
- package/components/Rating/Rating.vue.d.ts +43 -0
- package/components/Rating/Rating.vue.js +7 -0
- package/components/Rating/Rating.vue2.js +92 -0
- package/components/Rating/ReviewSummary.vue.d.ts +5 -0
- package/components/Rating/ReviewSummary.vue.js +67 -0
- package/components/Rating/ReviewSummary.vue2.js +4 -0
- package/components/Rating/index.d.ts +3 -0
- package/components/Rating/types.d.ts +28 -0
- package/components/Screen/Screen.vue.d.ts +2 -2
- package/components/Screen/Screen.vue.js +3 -1
- package/components/Screen/ScreenFilter.vue.js +1 -1
- package/components/SidePanel.vue.js +3 -3
- package/components/SidePanel.vue2.js +44 -56
- package/components/SidebarMenu/SidebarMenu.vue.js +1 -1
- package/components/SidebarMenu/SidebarMenuItem.vue.d.ts +3 -1
- package/components/SidebarMenu/SidebarMenuItem.vue.js +197 -178
- package/components/Stats/StatItem.vue.js +222 -164
- package/components/Stats/components/StatIconBox.vue.js +42 -42
- package/components/Stats/components/StatTrend.vue.js +20 -20
- package/components/ThemeToggle.vue.js +10 -10
- package/components/Timeline/Timeline.vue.js +21 -11
- package/components/Timeline/TimelineItem.vue.js +1 -1
- package/components/index.d.ts +2 -0
- package/index.d.ts +3 -1
- package/index.js +113 -107
- package/package.json +2 -1
- package/style.css +47 -32
- package/utils/status.js +16 -16
- package/components/CopyButton.vue2.js +0 -4
- /package/components/ColorPicker/{ColorIro.vue.js → ColorIro.vue2.js} +0 -0
|
@@ -1,48 +1,48 @@
|
|
|
1
|
-
import { defineComponent as f, computed as
|
|
1
|
+
import { defineComponent as f, computed as s, openBlock as a, createElementBlock as l, normalizeClass as i, createVNode as d, createTextVNode as g, toDisplayString as c, createElementVNode as v, createCommentVNode as x } from "vue";
|
|
2
2
|
import m from "../../Icon.vue.js";
|
|
3
|
-
const
|
|
3
|
+
const y = {
|
|
4
4
|
key: 0,
|
|
5
5
|
class: "text-muted-foreground truncate"
|
|
6
|
-
},
|
|
6
|
+
}, k = /* @__PURE__ */ f({
|
|
7
7
|
__name: "StatTrend",
|
|
8
8
|
props: {
|
|
9
9
|
trend: {},
|
|
10
10
|
layout: {}
|
|
11
11
|
},
|
|
12
12
|
setup(e) {
|
|
13
|
-
const t = e,
|
|
14
|
-
if (
|
|
13
|
+
const t = e, o = s(() => t.layout === "inline-label-value"), r = s(() => t.layout === "centered-value-title"), u = s(() => {
|
|
14
|
+
if (o.value)
|
|
15
15
|
return [
|
|
16
16
|
"shrink-0 flex items-center gap-0.5 text-xs font-medium",
|
|
17
|
-
t.trend.isPositive ? "text-success-
|
|
17
|
+
t.trend.isPositive ? "text-success-subtle-fg" : "text-danger-subtle-fg"
|
|
18
18
|
].join(" ");
|
|
19
19
|
const n = "flex items-center text-sm";
|
|
20
|
-
return
|
|
20
|
+
return r.value ? `${n} gap-1` : t.layout === "floating-icon" || t.layout === "icon-left" || t.layout === "icon-right" || t.layout === "icon-top" ? `${n} mt-2 gap-1.5` : `${n} mt-1 gap-1`;
|
|
21
21
|
});
|
|
22
|
-
return (n,
|
|
22
|
+
return (n, b) => o.value ? (a(), l("span", {
|
|
23
23
|
key: 0,
|
|
24
|
-
class:
|
|
24
|
+
class: i(u.value)
|
|
25
25
|
}, [
|
|
26
|
-
|
|
26
|
+
d(m, {
|
|
27
27
|
icon: e.trend.isPositive ? "lucide:trending-up" : "lucide:trending-down",
|
|
28
28
|
class: "w-3 h-3"
|
|
29
29
|
}, null, 8, ["icon"]),
|
|
30
|
-
|
|
31
|
-
], 2)) : (
|
|
30
|
+
g(" " + c(e.trend.value), 1)
|
|
31
|
+
], 2)) : (a(), l("div", {
|
|
32
32
|
key: 1,
|
|
33
|
-
class:
|
|
33
|
+
class: i(u.value)
|
|
34
34
|
}, [
|
|
35
|
-
|
|
35
|
+
d(m, {
|
|
36
36
|
icon: e.trend.isPositive ? "lucide:trending-up" : "lucide:trending-down",
|
|
37
|
-
class:
|
|
37
|
+
class: i([e.trend.isPositive ? "text-success" : "text-danger", "w-4 h-4 shrink-0"])
|
|
38
38
|
}, null, 8, ["icon", "class"]),
|
|
39
|
-
|
|
40
|
-
class:
|
|
41
|
-
},
|
|
42
|
-
e.trend.label && !
|
|
39
|
+
v("span", {
|
|
40
|
+
class: i([e.trend.isPositive ? "text-success-subtle-fg" : "text-danger-subtle-fg", "font-medium whitespace-nowrap"])
|
|
41
|
+
}, c(e.trend.value), 3),
|
|
42
|
+
e.trend.label && !r.value ? (a(), l("span", y, c(e.trend.label), 1)) : x("", !0)
|
|
43
43
|
], 2));
|
|
44
44
|
}
|
|
45
45
|
});
|
|
46
46
|
export {
|
|
47
|
-
|
|
47
|
+
k as default
|
|
48
48
|
};
|
|
@@ -11,28 +11,28 @@ const w = /* @__PURE__ */ m({
|
|
|
11
11
|
variant: {}
|
|
12
12
|
},
|
|
13
13
|
setup(t) {
|
|
14
|
-
const { theme: i, toggleTheme:
|
|
15
|
-
const n = i.value === "light",
|
|
14
|
+
const { theme: i, toggleTheme: s } = f(), a = d(() => {
|
|
15
|
+
const n = i.value === "light", l = "vlite.themeToggle.switchToDark", r = "vlite.themeToggle.switchToLight";
|
|
16
16
|
if (n) {
|
|
17
|
-
const e = c(s);
|
|
18
|
-
return e !== s ? e : "Switch to dark mode";
|
|
19
|
-
} else {
|
|
20
17
|
const e = c(l);
|
|
21
|
-
return e !== l ? e : "Switch to
|
|
18
|
+
return e !== l ? e : "Switch to dark mode";
|
|
19
|
+
} else {
|
|
20
|
+
const e = c(r);
|
|
21
|
+
return e !== r ? e : "Switch to light mode";
|
|
22
22
|
}
|
|
23
23
|
});
|
|
24
|
-
return (n,
|
|
25
|
-
toggleTheme: o(
|
|
24
|
+
return (n, l) => u(n.$slots, "default", {
|
|
25
|
+
toggleTheme: o(s),
|
|
26
26
|
theme: o(i)
|
|
27
27
|
}, () => [
|
|
28
28
|
h(T, {
|
|
29
29
|
icon: o(i) === "light" ? "lucide:sun" : "lucide:moon",
|
|
30
30
|
variant: t.variant || "secondary",
|
|
31
|
-
rounded: t.rounded || "
|
|
31
|
+
rounded: t.rounded || "full",
|
|
32
32
|
size: t.size,
|
|
33
33
|
class: g(t.class),
|
|
34
34
|
title: a.value,
|
|
35
|
-
onClick: o(
|
|
35
|
+
onClick: o(s)
|
|
36
36
|
}, null, 8, ["icon", "variant", "rounded", "size", "class", "title", "onClick"])
|
|
37
37
|
]);
|
|
38
38
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { defineComponent as
|
|
1
|
+
import { defineComponent as p, computed as g, openBlock as r, createElementBlock as d, normalizeClass as k, createElementVNode as b, normalizeStyle as S, createCommentVNode as P, Fragment as C, renderList as B, isMemoSame as T, createBlock as z, withCtx as o, renderSlot as n, mergeProps as s } from "vue";
|
|
2
2
|
import V from "./TimelineItem.vue.js";
|
|
3
3
|
const E = {
|
|
4
4
|
key: 0,
|
|
@@ -8,7 +8,7 @@ const E = {
|
|
|
8
8
|
key: 1,
|
|
9
9
|
class: "absolute top-4 left-4 right-4 h-0.5 bg-border block sm:hidden",
|
|
10
10
|
"aria-hidden": "true"
|
|
11
|
-
}, L = /* @__PURE__ */
|
|
11
|
+
}, L = /* @__PURE__ */ p({
|
|
12
12
|
__name: "Timeline",
|
|
13
13
|
props: {
|
|
14
14
|
steps: {},
|
|
@@ -22,14 +22,14 @@ const E = {
|
|
|
22
22
|
},
|
|
23
23
|
emits: ["step-click"],
|
|
24
24
|
setup(e, { emit: w }) {
|
|
25
|
-
const l = e, x = w, a = g(() => l.direction === "vertical"),
|
|
25
|
+
const l = e, x = w, a = g(() => l.direction === "vertical"), y = g(() => l.steps.length <= 1 ? 0 : Math.min(l.activeStep, l.steps.length - 1) / (l.steps.length - 1) * 100), $ = (i, f) => {
|
|
26
26
|
x("step-click", i, f);
|
|
27
27
|
};
|
|
28
28
|
return (i, f) => (r(), d("nav", {
|
|
29
29
|
"aria-label": "Progress",
|
|
30
|
-
class: k(["w-full", l.class])
|
|
30
|
+
class: k(["w-full pb-5", l.class])
|
|
31
31
|
}, [
|
|
32
|
-
|
|
32
|
+
b("ol", {
|
|
33
33
|
role: "list",
|
|
34
34
|
class: k([
|
|
35
35
|
"relative flex",
|
|
@@ -39,19 +39,29 @@ const E = {
|
|
|
39
39
|
])
|
|
40
40
|
}, [
|
|
41
41
|
!a.value && e.textPosition === "bottom" ? (r(), d("div", E, [
|
|
42
|
-
|
|
42
|
+
b("div", {
|
|
43
43
|
class: "h-full bg-primary transition-all duration-300 ease-in-out",
|
|
44
|
-
style: S({ width: `${
|
|
44
|
+
style: S({ width: `${y.value}%` })
|
|
45
45
|
}, null, 4)
|
|
46
46
|
])) : P("", !0),
|
|
47
47
|
!a.value && e.textPosition === "right" ? (r(), d("div", M, [
|
|
48
|
-
|
|
48
|
+
b("div", {
|
|
49
49
|
class: "h-full bg-primary transition-all duration-300 ease-in-out",
|
|
50
|
-
style: S({ width: `${
|
|
50
|
+
style: S({ width: `${y.value}%` })
|
|
51
51
|
}, null, 4)
|
|
52
52
|
])) : P("", !0),
|
|
53
|
-
(r(!0), d(
|
|
54
|
-
const v = [
|
|
53
|
+
(r(!0), d(C, null, B(e.steps, (c, m, N, u) => {
|
|
54
|
+
const v = [
|
|
55
|
+
c,
|
|
56
|
+
m,
|
|
57
|
+
e.activeStep,
|
|
58
|
+
e.direction,
|
|
59
|
+
e.textPosition,
|
|
60
|
+
e.lineStyle,
|
|
61
|
+
e.indicatorType,
|
|
62
|
+
e.clickable,
|
|
63
|
+
e.steps.length
|
|
64
|
+
];
|
|
55
65
|
if (u && u.key === c.id && T(u, v)) return u;
|
|
56
66
|
const h = (r(), z(V, {
|
|
57
67
|
key: c.id,
|
|
@@ -60,7 +60,7 @@ const B = { class: "flex flex-col items-center shrink-0 mr-4 w-9" }, V = { class
|
|
|
60
60
|
}, null, 2))
|
|
61
61
|
]),
|
|
62
62
|
i("div", {
|
|
63
|
-
class: o(["flex-1 flex flex-col pt-0.5", e.isLast ? "pb-0" : "pb-
|
|
63
|
+
class: o(["flex-1 flex flex-col pt-0.5", e.isLast ? "pb-0" : "pb-5"])
|
|
64
64
|
}, [
|
|
65
65
|
a(t.$slots, "content", {
|
|
66
66
|
step: e.step,
|
package/components/index.d.ts
CHANGED
|
@@ -4,6 +4,7 @@ export { default as Avatar } from './Avatar.vue';
|
|
|
4
4
|
export { AvatarUploader } from './AvatarUploader';
|
|
5
5
|
export { default as Badge } from './Badge.vue';
|
|
6
6
|
export { Barcode } from './Barcode';
|
|
7
|
+
export { default as Beacon } from './Beacon.vue';
|
|
7
8
|
export { Breadcrumb, BreadcrumbItem } from './Breadcrumb';
|
|
8
9
|
export { default as Button } from './Button.vue';
|
|
9
10
|
export { default as BackButton } from './BackButton.vue';
|
|
@@ -43,6 +44,7 @@ export { default as NumberInput } from './NumberInput.vue';
|
|
|
43
44
|
export { OTPInput } from './OTPInput';
|
|
44
45
|
export { Pagination } from './Pagination';
|
|
45
46
|
export { PermissionMatrix, PermissionEditor } from './PermissionMatrix';
|
|
47
|
+
export { default as Persona } from './Persona.vue';
|
|
46
48
|
export { PricingPlan } from './PricingPlan';
|
|
47
49
|
export { ProgressBar } from './ProgressBar';
|
|
48
50
|
export { QRCode } from './QRCode';
|
package/index.d.ts
CHANGED
|
@@ -56,6 +56,8 @@ export * from './components/Calendar';
|
|
|
56
56
|
export * from './components/Skeleton';
|
|
57
57
|
export * from './components/Chart';
|
|
58
58
|
export * from './components/AppShell';
|
|
59
|
+
export * from './components/Rating';
|
|
60
|
+
export * from './components/AsyncSelect';
|
|
59
61
|
export { default as Icon } from './components/Icon.vue';
|
|
60
62
|
export { default as Logo } from './components/Logo.vue';
|
|
61
63
|
export { default as Alert } from './components/Alert.vue';
|
|
@@ -66,7 +68,7 @@ export { default as Modal } from './components/Modal.vue';
|
|
|
66
68
|
export { default as Avatar } from './components/Avatar.vue';
|
|
67
69
|
export { default as Button } from './components/Button.vue';
|
|
68
70
|
export { default as BackButton } from './components/BackButton.vue';
|
|
69
|
-
export { default as
|
|
71
|
+
export { default as Clipboard } from './components/Clipboard.vue';
|
|
70
72
|
export { default as Slider } from './components/Slider.vue';
|
|
71
73
|
export { default as Switch } from './components/Switch.vue';
|
|
72
74
|
export { default as Tooltip } from './components/Tooltip.vue';
|
package/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
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, formatNumber as I, formatSchedule as b, getDefaultDateRange as P, getNextMonth as v, getNextYear as D, getPrevMonth as F, getPrevYear 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 y, getToday as A, getTomorrow as B, getUniqueId as N, getUpcoming as k, getYear as E, getYesterday as M, isAppleDevice as R, isEmpty as w, 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
4
|
import { lazySearch as W, resetSearchIndex as j, search as q } from "./utils/search.util.js";
|
|
5
5
|
import { env as $ } from "./utils/env.js";
|
|
6
6
|
import { $t as Z } from "./utils/i18n.js";
|
|
@@ -17,11 +17,11 @@ import { default as Se } from "./components/Tabes/Tabes.vue.js";
|
|
|
17
17
|
import { default as Ie } from "./components/Stats/Stats.vue.js";
|
|
18
18
|
import { default as Pe } from "./components/Kanban/Kanban.vue.js";
|
|
19
19
|
import { default as De } from "./components/Kanban/KanbanBoard.vue.js";
|
|
20
|
-
import { useKanbanBoard as
|
|
21
|
-
import { default as
|
|
20
|
+
import { useKanbanBoard as ye } from "./components/Kanban/useKanbanBoard.js";
|
|
21
|
+
import { default as Be } from "./components/Navbar/Navbar.vue.js";
|
|
22
22
|
import { default as ke } from "./components/Navbar/NavbarItem.vue.js";
|
|
23
23
|
import { default as Me } from "./components/Navbar/NavbarGroup.vue.js";
|
|
24
|
-
import { default as
|
|
24
|
+
import { default as we } from "./components/Navbar/NavbarTabs.vue.js";
|
|
25
25
|
/* empty css */
|
|
26
26
|
import { default as Ge } from "./components/QRCode/QRCode.vue.js";
|
|
27
27
|
import { default as Oe } from "./components/Screen/Screen.vue.js";
|
|
@@ -45,11 +45,11 @@ import { default as ho } from "./components/Breadcrumb/BreadcrumbItem.vue.js";
|
|
|
45
45
|
import { default as bo } from "./components/FileTree/FileTree.vue.js";
|
|
46
46
|
import { default as vo } from "./components/FileTree/FileTreeNode.vue.js";
|
|
47
47
|
import { useTreeSelection as Fo } from "./components/FileTree/useTreeSelection.js";
|
|
48
|
-
import { default as
|
|
48
|
+
import { default as Ao } from "./components/RichTextEditor/RichTextEditor.vue.js";
|
|
49
49
|
/* empty css */
|
|
50
50
|
import { default as No } from "./components/RichTextEditor/RichTextReader.vue.js";
|
|
51
51
|
import { default as Eo } from "./components/OTPInput/OTPInput.vue.js";
|
|
52
|
-
import { default as
|
|
52
|
+
import { default as Ro } from "./components/Workbook/Workbook.vue.js";
|
|
53
53
|
import { default as Lo } from "./components/Workbook/Sheet.vue.js";
|
|
54
54
|
import { default as Ko } from "./components/DataList/DataList.vue.js";
|
|
55
55
|
import { default as Yo } from "./components/List/List.vue.js";
|
|
@@ -72,11 +72,11 @@ import { default as Tr } from "./components/Splitter/Splitter.vue.js";
|
|
|
72
72
|
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
|
-
import { default as
|
|
76
|
-
import { default as
|
|
75
|
+
import { default as yr } from "./components/Pagination/Pagination.vue.js";
|
|
76
|
+
import { default as Br } 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
|
-
import { useMultiSelectHydration as
|
|
79
|
+
import { useMultiSelectHydration as wr } from "./components/MultiSelect/composables/useMultiSelectHydration.js";
|
|
80
80
|
import { default as Gr } from "./components/PricingPlan/PricingPlan.vue.js";
|
|
81
81
|
import { default as Or } from "./components/PricingPlan/PricingPlanItem.vue.js";
|
|
82
82
|
import { default as _r } from "./components/SidebarMenu/SidebarMenu.vue.js";
|
|
@@ -98,10 +98,10 @@ import { default as ht } from "./components/FilePreview/FilePreview.vue.js";
|
|
|
98
98
|
import { default as bt } from "./components/AttachmentsList/AttachmentsList.vue.js";
|
|
99
99
|
import { getFileTypeIcon as vt } from "./components/AttachmentsList/fileTypeIcon.js";
|
|
100
100
|
import { default as Ft } from "./components/CustomFieldsDisplay/CustomFieldsDisplay.vue.js";
|
|
101
|
-
import { default as
|
|
101
|
+
import { default as At } from "./components/Invoice/Invoice.vue.js";
|
|
102
102
|
import { default as Nt } from "./components/Invoice/InvoiceTotals.vue.js";
|
|
103
103
|
import { default as Et } from "./components/CategoryManager/CategoryManager.vue.js";
|
|
104
|
-
import { default as
|
|
104
|
+
import { default as Rt } from "./components/ThumbnailSelector/ThumbnailSelector.vue.js";
|
|
105
105
|
import { default as Lt } from "./components/TagInput/TagInput.vue.js";
|
|
106
106
|
import { default as Kt } from "./components/Calendar/Calendar.vue.js";
|
|
107
107
|
import { default as Yt } from "./components/Calendar/CalendarEventItem.vue.js";
|
|
@@ -119,97 +119,100 @@ 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
121
|
import { default as ga } from "./components/AppShell/AppShell.vue.js";
|
|
122
|
-
import { default as Ta } from "./components/
|
|
123
|
-
import { default as ha } from "./components/
|
|
124
|
-
import {
|
|
125
|
-
import { default as va } from "./components/
|
|
126
|
-
import { default as Fa } from "./components/
|
|
122
|
+
import { default as Ta } from "./components/Rating/Rating.vue.js";
|
|
123
|
+
import { default as ha } from "./components/Rating/ReviewSummary.vue.js";
|
|
124
|
+
import { createAsyncSelect as ba } from "./components/AsyncSelect/createAsyncSelect.js";
|
|
125
|
+
import { default as va } from "./components/Icon.vue.js";
|
|
126
|
+
import { default as Fa } from "./components/Logo.vue.js";
|
|
127
|
+
import { default as Aa } from "./components/Alert.vue.js";
|
|
128
|
+
import { default as Na } from "./components/Badge.vue.js";
|
|
129
|
+
import { default as Ea } from "./components/Input.vue.js";
|
|
127
130
|
/* empty css */
|
|
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 { default as
|
|
152
|
-
import { createVLite as
|
|
153
|
-
import { default as
|
|
154
|
-
import { STATUS_MAP as
|
|
155
|
-
import { default as
|
|
156
|
-
import { default as
|
|
157
|
-
import { default as
|
|
158
|
-
import { default as
|
|
159
|
-
import { VLITE_CONFIG_KEY as
|
|
160
|
-
import { getStatusColorClass as
|
|
131
|
+
import { default as Ra } from "./components/Label.vue.js";
|
|
132
|
+
import { default as La } from "./components/Modal.vue.js";
|
|
133
|
+
import { default as Ka } from "./components/Avatar.vue.js";
|
|
134
|
+
import { default as Ya } from "./components/Button.vue.js";
|
|
135
|
+
import { default as za } from "./components/BackButton.vue.js";
|
|
136
|
+
import { default as Va } from "./components/Clipboard.vue.js";
|
|
137
|
+
import { default as Qa } from "./components/Slider.vue.js";
|
|
138
|
+
import { default as ja } from "./components/Switch.vue.js";
|
|
139
|
+
import { default as Xa } from "./components/Tooltip.vue.js";
|
|
140
|
+
import { default as Ja } from "./components/CheckBox.vue.js";
|
|
141
|
+
import { default as ef } from "./components/Textarea.vue.js";
|
|
142
|
+
import { default as rf } from "./components/SidePanel.vue.js";
|
|
143
|
+
import { default as af } from "./components/DatePicker.vue.js";
|
|
144
|
+
import { default as mf } from "./components/IconPicker.vue.js";
|
|
145
|
+
import { default as pf } from "./components/ButtonGroup.vue.js";
|
|
146
|
+
import { default as df } from "./components/NumberInput.vue.js";
|
|
147
|
+
import { default as xf } from "./components/ThemeToggle.vue.js";
|
|
148
|
+
import { default as cf } from "./components/GoogleLogin.vue.js";
|
|
149
|
+
import { default as Cf } from "./components/ColorPicker/ColorPicker.vue.js";
|
|
150
|
+
import { default as Sf } from "./components/ConfirmationModal.vue.js";
|
|
151
|
+
import { default as If } from "./components/ToastNotification.vue.js";
|
|
152
|
+
import { default as Pf } from "./components/CommandPalette/CommandPaletteContent.vue.js";
|
|
153
|
+
import { default as Df } from "./components/NavbarCommandPalette.vue.js";
|
|
154
|
+
import { default as yf } from "./components/DateRangePicker.vue.js";
|
|
155
|
+
import { createVLite as Bf } from "./core/index.js";
|
|
156
|
+
import { default as kf } from "./components/StatusChip/StatusChip.vue.js";
|
|
157
|
+
import { STATUS_MAP as Mf, normalizeStatus as Rf, resolveStatus as wf } from "./components/StatusChip/status-map.js";
|
|
158
|
+
import { default as Gf } from "./components/Price/Price.vue.js";
|
|
159
|
+
import { default as Of } from "./components/DateTime/DateTime.vue.js";
|
|
160
|
+
import { default as _f } from "./components/Clock/Clock.vue.js";
|
|
161
|
+
import { default as Uf } from "./components/Chat/ChatInterface.vue.js";
|
|
162
|
+
import { VLITE_CONFIG_KEY as Hf, configState as Qf, updateConfig as Wf, useVLiteConfig as jf } from "./core/config.js";
|
|
163
|
+
import { getStatusColorClass as Xf } from "./utils/status.js";
|
|
161
164
|
export {
|
|
162
165
|
Z as $t,
|
|
163
166
|
er as Accordion,
|
|
164
167
|
mr as AccordionContent,
|
|
165
168
|
rr as AccordionItem,
|
|
166
169
|
ar as AccordionTrigger,
|
|
167
|
-
|
|
170
|
+
Aa as Alert,
|
|
168
171
|
ga as AppShell,
|
|
169
172
|
bt as AttachmentsList,
|
|
170
|
-
|
|
173
|
+
Ka as Avatar,
|
|
171
174
|
at as AvatarGroup,
|
|
172
175
|
rt as AvatarUploader,
|
|
173
|
-
|
|
174
|
-
|
|
176
|
+
za as BackButton,
|
|
177
|
+
Na as Badge,
|
|
175
178
|
ea as BarChart,
|
|
176
179
|
Ze as Barcode,
|
|
177
180
|
To as Breadcrumb,
|
|
178
181
|
ho as BreadcrumbItem,
|
|
179
|
-
|
|
180
|
-
|
|
182
|
+
Ya as Button,
|
|
183
|
+
pf as ButtonGroup,
|
|
181
184
|
Kt as Calendar,
|
|
182
185
|
Yt as CalendarEventItem,
|
|
183
186
|
to as Carousel,
|
|
184
187
|
Et as CategoryManager,
|
|
185
|
-
|
|
186
|
-
|
|
188
|
+
Uf as ChatInterface,
|
|
189
|
+
Ja as CheckBox,
|
|
187
190
|
te as Chip,
|
|
188
191
|
pr as ChoiceBox,
|
|
189
192
|
aa as CircleChart,
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
Cf as
|
|
193
|
+
Va as Clipboard,
|
|
194
|
+
_f as Clock,
|
|
195
|
+
Cf as ColorPicker,
|
|
196
|
+
Pf as CommandPaletteContent,
|
|
193
197
|
Jo as CommentEditor,
|
|
194
198
|
jo as CommentItem,
|
|
195
199
|
Xo as CommentThread,
|
|
196
|
-
|
|
197
|
-
Ka as CopyButton,
|
|
200
|
+
Sf as ConfirmationModal,
|
|
198
201
|
ue as CustomFields,
|
|
199
202
|
Ft as CustomFieldsDisplay,
|
|
200
203
|
Ko as DataList,
|
|
201
204
|
dr as DataTable,
|
|
202
205
|
xr as DataTableHeader,
|
|
203
206
|
nr as DataTableRow,
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
+
af as DatePicker,
|
|
208
|
+
yf as DateRangePicker,
|
|
209
|
+
Of as DateTime,
|
|
207
210
|
fo as Dropdown,
|
|
208
211
|
xo as DropdownItem,
|
|
209
212
|
lo as DropdownMenu,
|
|
210
213
|
so as DropdownTrigger,
|
|
211
214
|
Qo as Empty,
|
|
212
|
-
|
|
215
|
+
Br as ExportData,
|
|
213
216
|
Dr as FilePicker,
|
|
214
217
|
ht as FilePreview,
|
|
215
218
|
bo as FileTree,
|
|
@@ -220,84 +223,87 @@ export {
|
|
|
220
223
|
se as FormFields,
|
|
221
224
|
ie as FormSkeleton,
|
|
222
225
|
ma as GaugeChart,
|
|
223
|
-
|
|
226
|
+
cf as GoogleLogin,
|
|
224
227
|
l as GoogleSignInPlugin,
|
|
225
228
|
He as Heatmap,
|
|
226
|
-
|
|
227
|
-
|
|
229
|
+
va as Icon,
|
|
230
|
+
mf as IconPicker,
|
|
228
231
|
kr as ImportData,
|
|
229
|
-
|
|
230
|
-
|
|
232
|
+
Ea as Input,
|
|
233
|
+
At as Invoice,
|
|
231
234
|
Nt as InvoiceTotals,
|
|
232
235
|
Pe as Kanban,
|
|
233
236
|
De as KanbanBoard,
|
|
234
|
-
|
|
237
|
+
Ra as Label,
|
|
235
238
|
Jt as LineChart,
|
|
236
239
|
Yo as List,
|
|
237
240
|
zo as ListFieldRow,
|
|
238
|
-
|
|
241
|
+
Fa as Logo,
|
|
239
242
|
qe as MASONRY_BREAKPOINTS,
|
|
240
243
|
We as Masonry,
|
|
241
|
-
|
|
244
|
+
La as Modal,
|
|
242
245
|
Mr as MultiSelect,
|
|
243
|
-
|
|
244
|
-
|
|
246
|
+
Be as Navbar,
|
|
247
|
+
Df as NavbarCommandPalette,
|
|
245
248
|
Me as NavbarGroup,
|
|
246
249
|
ke as NavbarItem,
|
|
247
|
-
|
|
248
|
-
|
|
250
|
+
we as NavbarTabs,
|
|
251
|
+
df as NumberInput,
|
|
249
252
|
Eo as OTPInput,
|
|
250
|
-
|
|
253
|
+
yr as Pagination,
|
|
251
254
|
qr as PermissionEditor,
|
|
252
255
|
Wr as PermissionMatrix,
|
|
253
256
|
ra as PieChart,
|
|
254
|
-
|
|
257
|
+
Gf as Price,
|
|
255
258
|
Gr as PricingPlan,
|
|
256
259
|
Or as PricingPlanItem,
|
|
257
260
|
Hr as ProgressBar,
|
|
258
261
|
Ge as QRCode,
|
|
259
|
-
|
|
262
|
+
Ta as Rating,
|
|
263
|
+
ha as ReviewSummary,
|
|
264
|
+
Ao as RichTextEditor,
|
|
260
265
|
No as RichTextReader,
|
|
261
266
|
gr as SCREEN_CONTEXT_KEY,
|
|
262
|
-
|
|
267
|
+
Mf as STATUS_MAP,
|
|
263
268
|
Oe as Screen,
|
|
264
269
|
_e as ScreenFilter,
|
|
265
270
|
Ue as ScreenQuickFilters,
|
|
266
271
|
da as SegmentBarChart,
|
|
267
272
|
Lo as Sheet,
|
|
268
|
-
|
|
273
|
+
rf as SidePanel,
|
|
269
274
|
_r as SidebarMenu,
|
|
270
275
|
Ur as SidebarMenuItem,
|
|
271
276
|
zt as Skeleton,
|
|
272
|
-
|
|
277
|
+
Qa as Slider,
|
|
273
278
|
$e as Spinner,
|
|
274
279
|
Tr as Splitter,
|
|
275
280
|
xa as StatCardChart,
|
|
276
281
|
Ie as Stats,
|
|
277
|
-
|
|
278
|
-
|
|
282
|
+
kf as StatusChip,
|
|
283
|
+
ja as Switch,
|
|
279
284
|
Se as Tabes,
|
|
280
285
|
Lt as TagInput,
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
286
|
+
ef as Textarea,
|
|
287
|
+
xf as ThemeToggle,
|
|
288
|
+
Rt as ThumbnailSelector,
|
|
284
289
|
nt as Timeline,
|
|
285
290
|
pa as TimelineChart,
|
|
286
291
|
Tt as TimelineIndicator,
|
|
287
292
|
gt as TimelineItem,
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
293
|
+
If as ToastNotification,
|
|
294
|
+
Xa as Tooltip,
|
|
295
|
+
Hf as VLITE_CONFIG_KEY,
|
|
291
296
|
na as WaffleChart,
|
|
292
|
-
|
|
297
|
+
Ro as Workbook,
|
|
293
298
|
oo as barcodesConstants,
|
|
294
299
|
u as camelCase,
|
|
295
300
|
x as capitalize,
|
|
296
|
-
|
|
301
|
+
Qf as configState,
|
|
297
302
|
mt as configure,
|
|
298
303
|
jt as configureSkeleton,
|
|
299
304
|
i as copyToClipboard,
|
|
300
|
-
|
|
305
|
+
ba as createAsyncSelect,
|
|
306
|
+
Bf as createVLite,
|
|
301
307
|
n as debounce,
|
|
302
308
|
s as deepMerge,
|
|
303
309
|
c as delay,
|
|
@@ -317,22 +323,22 @@ export {
|
|
|
317
323
|
D as getNextYear,
|
|
318
324
|
Vo as getObjectValue,
|
|
319
325
|
F as getPrevMonth,
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
326
|
+
y as getPrevYear,
|
|
327
|
+
Xf as getStatusColorClass,
|
|
328
|
+
A as getToday,
|
|
329
|
+
B as getTomorrow,
|
|
324
330
|
N as getUniqueId,
|
|
325
331
|
k as getUpcoming,
|
|
326
332
|
E as getYear,
|
|
327
333
|
M as getYesterday,
|
|
328
334
|
br as initializeTheme,
|
|
329
|
-
|
|
330
|
-
|
|
335
|
+
R as isAppleDevice,
|
|
336
|
+
w as isEmpty,
|
|
331
337
|
L as isPureTimeString,
|
|
332
338
|
G as isValidTimeRange,
|
|
333
339
|
W as lazySearch,
|
|
334
340
|
Vt as normalizeBone,
|
|
335
|
-
|
|
341
|
+
Rf as normalizeStatus,
|
|
336
342
|
K as parseDateTime,
|
|
337
343
|
lt as pauseTimers,
|
|
338
344
|
O as randomNumber,
|
|
@@ -340,7 +346,7 @@ export {
|
|
|
340
346
|
Y as removeExtraProperties,
|
|
341
347
|
pt as removeToast,
|
|
342
348
|
j as resetSearchIndex,
|
|
343
|
-
|
|
349
|
+
wf as resolveStatus,
|
|
344
350
|
st as resumeTimers,
|
|
345
351
|
q as search,
|
|
346
352
|
dt as showToast,
|
|
@@ -351,18 +357,18 @@ export {
|
|
|
351
357
|
V as toLocalISO,
|
|
352
358
|
ut as toast,
|
|
353
359
|
H as truncate,
|
|
354
|
-
|
|
360
|
+
Wf as updateConfig,
|
|
355
361
|
$r as useAdvancedKeyStroke,
|
|
356
362
|
go as useDropdownIds,
|
|
357
363
|
no as useDropdownSelection,
|
|
358
364
|
Ce as useFileUpload,
|
|
359
365
|
ce as useForm,
|
|
360
|
-
|
|
366
|
+
ye as useKanbanBoard,
|
|
361
367
|
Jr as useKeyStroke,
|
|
362
|
-
|
|
368
|
+
wr as useMultiSelectHydration,
|
|
363
369
|
xt as useNotifications,
|
|
364
370
|
Pr as useTheme,
|
|
365
371
|
Fo as useTreeSelection,
|
|
366
|
-
|
|
372
|
+
jf as useVLiteConfig,
|
|
367
373
|
et as vScrollReveal
|
|
368
374
|
};
|
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.2.
|
|
6
|
+
"version": "1.2.5",
|
|
7
7
|
"type": "module",
|
|
8
8
|
"main": "index.js",
|
|
9
9
|
"module": "index.js",
|
|
@@ -65,6 +65,7 @@
|
|
|
65
65
|
"@types/node": "^25.0.10",
|
|
66
66
|
"@types/qrcode": "^1.5.6",
|
|
67
67
|
"@vitejs/plugin-vue": "^6.0.1",
|
|
68
|
+
"@vitejs/plugin-vue-jsx": "^4.1.1",
|
|
68
69
|
"@vue/tsconfig": "^0.8.1",
|
|
69
70
|
"typescript": "~5.9.3",
|
|
70
71
|
"vite": "^7.2.4",
|