vlite3 0.6.6 → 0.6.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/components/DataTable/DataTable.vue.js +232 -209
- package/components/DataTable/types.d.ts +15 -0
- package/components/DataTable/types.js +4 -0
- package/components/Dropdown/Dropdown.vue.js +13 -21
- package/components/Modal.vue.js +2 -2
- package/components/Modal.vue2.js +58 -56
- package/components/PermissionMatrix/PermissionEditor.vue.d.ts +0 -12
- package/components/PermissionMatrix/PermissionEditor.vue.js +120 -524
- package/components/PermissionMatrix/PermissionEditorList.vue.d.ts +18 -0
- package/components/PermissionMatrix/PermissionEditorList.vue.js +156 -0
- package/components/PermissionMatrix/PermissionEditorList.vue2.js +4 -0
- package/components/PermissionMatrix/PermissionEditorMatrix.vue.d.ts +18 -0
- package/components/PermissionMatrix/PermissionEditorMatrix.vue.js +207 -0
- package/components/PermissionMatrix/PermissionEditorMatrix.vue2.js +4 -0
- package/components/PermissionMatrix/PermissionTopBar.vue.d.ts +28 -0
- package/components/PermissionMatrix/PermissionTopBar.vue.js +132 -0
- package/components/PermissionMatrix/PermissionTopBar.vue2.js +4 -0
- package/components/PermissionMatrix/utils.d.ts +11 -0
- package/components/PermissionMatrix/utils.js +20 -0
- package/components/Screen/Screen.vue.js +113 -107
- package/components/SidePanel.vue.js +57 -53
- package/index.js +179 -177
- package/package.json +1 -1
- package/style.css +1 -1
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { defineComponent as
|
|
2
|
-
import
|
|
3
|
-
import { useKeyStroke as
|
|
4
|
-
import { $t as
|
|
5
|
-
const
|
|
1
|
+
import { defineComponent as P, ref as D, inject as V, watch as C, onMounted as j, onUnmounted as K, computed as m, openBlock as l, createElementBlock as r, Fragment as M, createElementVNode as y, mergeProps as h, withModifiers as F, renderSlot as u, createCommentVNode as n, createBlock as v, Teleport as L, createVNode as k, Transition as w, withCtx as x, normalizeClass as f, toDisplayString as $, resolveDynamicComponent as U } from "vue";
|
|
2
|
+
import q from "./Button.vue.js";
|
|
3
|
+
import { useKeyStroke as G } from "../composables/useKeyStroke.js";
|
|
4
|
+
import { $t as T } from "../utils/i18n.js";
|
|
5
|
+
const H = { class: "text-lg font-bold text-foreground" }, J = {
|
|
6
6
|
key: 0,
|
|
7
7
|
class: "mt-1 text-sm text-muted-foreground"
|
|
8
|
-
},
|
|
8
|
+
}, Y = /* @__PURE__ */ P({
|
|
9
9
|
inheritAttrs: !1,
|
|
10
10
|
__name: "SidePanel",
|
|
11
11
|
props: {
|
|
@@ -30,26 +30,30 @@ const G = { class: "text-lg font-bold text-foreground" }, H = {
|
|
|
30
30
|
},
|
|
31
31
|
emits: ["close", "update:show", "onOpen", "onAfterOpen", "onAfterClose"],
|
|
32
32
|
setup(t, { emit: B }) {
|
|
33
|
-
const o = t,
|
|
33
|
+
const o = t, p = B, s = D(o.show);
|
|
34
|
+
let d = null;
|
|
35
|
+
const a = V("dropdown-context", null);
|
|
34
36
|
C(
|
|
35
37
|
() => o.show,
|
|
36
38
|
(e) => {
|
|
37
|
-
s.value = e, e && (
|
|
39
|
+
s.value = e, e && (p("onOpen"), a?.close());
|
|
38
40
|
}
|
|
39
41
|
);
|
|
40
42
|
const z = () => {
|
|
41
|
-
s.value = !0,
|
|
42
|
-
},
|
|
43
|
-
s.value = !1,
|
|
43
|
+
s.value = !0, a?.close();
|
|
44
|
+
}, i = () => {
|
|
45
|
+
s.value = !1, p("update:show", !1), p("close");
|
|
44
46
|
}, A = () => {
|
|
45
|
-
o.closeOutside &&
|
|
46
|
-
}, { onKeyStroke: O } =
|
|
47
|
-
O("Escape",
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
47
|
+
o.closeOutside && i();
|
|
48
|
+
}, { onKeyStroke: O } = G();
|
|
49
|
+
O("Escape", i), C(s, (e) => {
|
|
50
|
+
d && clearTimeout(d), e ? (a?.onChildToggle?.(!0), document.body.style.overflow = "hidden") : (document.body.style.overflow = "", d = setTimeout(() => {
|
|
51
|
+
a?.onChildToggle?.(!1);
|
|
52
|
+
}, 300));
|
|
51
53
|
}), j(() => {
|
|
52
|
-
s.value &&
|
|
54
|
+
s.value && a?.onChildToggle?.(!0);
|
|
55
|
+
}), K(() => {
|
|
56
|
+
d && clearTimeout(d), s.value && a?.onChildToggle?.(!1), document.body.style.overflow = "";
|
|
53
57
|
});
|
|
54
58
|
const I = {
|
|
55
59
|
sm: "max-w-sm",
|
|
@@ -57,20 +61,20 @@ const G = { class: "text-lg font-bold text-foreground" }, H = {
|
|
|
57
61
|
lg: "max-w-lg",
|
|
58
62
|
xl: "max-w-xl",
|
|
59
63
|
full: "max-w-full"
|
|
60
|
-
},
|
|
61
|
-
() => o.descriptionI18n ?
|
|
64
|
+
}, S = m(() => o.position === "left" ? "left-0" : "right-0"), E = m(() => o.position === "left" ? "slide-left" : "slide-right"), b = m(() => o.titleI18n ? T(o.titleI18n) : o.title), g = m(
|
|
65
|
+
() => o.descriptionI18n ? T(o.descriptionI18n) : o.description
|
|
62
66
|
);
|
|
63
|
-
return (e,
|
|
64
|
-
|
|
65
|
-
onClick:
|
|
67
|
+
return (e, c) => (l(), r(M, null, [
|
|
68
|
+
y("span", h({
|
|
69
|
+
onClick: F(z, ["stop"]),
|
|
66
70
|
class: `${t.triggerClass}`
|
|
67
71
|
}, e.$attrs), [
|
|
68
|
-
|
|
69
|
-
t.body ?
|
|
72
|
+
u(e.$slots, "trigger", {}, () => [
|
|
73
|
+
t.body ? u(e.$slots, "default", { key: 0 }) : n("", !0)
|
|
70
74
|
])
|
|
71
75
|
], 16),
|
|
72
|
-
(l(),
|
|
73
|
-
|
|
76
|
+
(l(), v(L, { to: "body" }, [
|
|
77
|
+
k(w, {
|
|
74
78
|
"enter-active-class": "transition-opacity duration-300 ease-out",
|
|
75
79
|
"enter-from-class": "opacity-0",
|
|
76
80
|
"enter-to-class": "opacity-100",
|
|
@@ -78,58 +82,58 @@ const G = { class: "text-lg font-bold text-foreground" }, H = {
|
|
|
78
82
|
"leave-from-class": "opacity-100",
|
|
79
83
|
"leave-to-class": "opacity-0"
|
|
80
84
|
}, {
|
|
81
|
-
default:
|
|
82
|
-
s.value ? (l(),
|
|
85
|
+
default: x(() => [
|
|
86
|
+
s.value ? (l(), r("div", {
|
|
83
87
|
key: 0,
|
|
84
|
-
class:
|
|
88
|
+
class: f(["fixed inset-0 z-50 bg-[#00000033] v-sidepanel-overlay", [t.overlayClass, { "backdrop-blur-[2px]": t.backdrop }]]),
|
|
85
89
|
onClick: A
|
|
86
90
|
}, null, 2)) : n("", !0)
|
|
87
91
|
]),
|
|
88
92
|
_: 1
|
|
89
93
|
}),
|
|
90
|
-
|
|
91
|
-
name:
|
|
92
|
-
onAfterEnter:
|
|
93
|
-
onAfterLeave:
|
|
94
|
+
k(w, {
|
|
95
|
+
name: E.value,
|
|
96
|
+
onAfterEnter: c[0] || (c[0] = (N) => e.$emit("onAfterOpen")),
|
|
97
|
+
onAfterLeave: c[1] || (c[1] = (N) => e.$emit("onAfterClose"))
|
|
94
98
|
}, {
|
|
95
|
-
default:
|
|
96
|
-
s.value ? (l(),
|
|
99
|
+
default: x(() => [
|
|
100
|
+
s.value ? (l(), r("div", {
|
|
97
101
|
key: 0,
|
|
98
|
-
class:
|
|
102
|
+
class: f(["sidepanel-body fixed inset-y-0 z-50 flex flex-col bg-body shadow-sm border transition-transform duration-300 ease-in-out w-full", [I[t.size], S.value, o.class]])
|
|
99
103
|
}, [
|
|
100
|
-
|
|
104
|
+
b.value || e.$slots.header ? (l(), r("div", {
|
|
101
105
|
key: 0,
|
|
102
|
-
class:
|
|
106
|
+
class: f([t.headerClass, "flex-none flex items-center justify-between px-6 py-2 border-b border-border"])
|
|
103
107
|
}, [
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
+
u(e.$slots, "header", {}, () => [
|
|
109
|
+
y("div", null, [
|
|
110
|
+
y("h3", H, $(b.value), 1),
|
|
111
|
+
g.value ? (l(), r("p", J, $(g.value), 1)) : n("", !0)
|
|
108
112
|
])
|
|
109
113
|
]),
|
|
110
|
-
t.hideCloseButton ? n("", !0) : (l(),
|
|
114
|
+
t.hideCloseButton ? n("", !0) : (l(), v(q, {
|
|
111
115
|
key: 0,
|
|
112
116
|
rounded: "full",
|
|
113
117
|
size: "sm",
|
|
114
118
|
variant: "ghost",
|
|
115
119
|
icon: "lucide:x",
|
|
116
|
-
onClick:
|
|
120
|
+
onClick: i,
|
|
117
121
|
class: "-mr-2"
|
|
118
122
|
}))
|
|
119
123
|
], 2)) : n("", !0),
|
|
120
|
-
|
|
121
|
-
class:
|
|
124
|
+
y("div", {
|
|
125
|
+
class: f(["flex-1 overflow-y-auto px-6 py-4", t.bodyClass])
|
|
122
126
|
}, [
|
|
123
|
-
t.body ? (l(),
|
|
127
|
+
t.body ? (l(), v(U(t.body), h({ key: 0 }, { ...t.bodyProps, ...e.$attrs }, { close: i }), null, 16)) : u(e.$slots, "default", {
|
|
124
128
|
key: 1,
|
|
125
|
-
close:
|
|
129
|
+
close: i
|
|
126
130
|
})
|
|
127
131
|
], 2),
|
|
128
|
-
e.$slots.footer ? (l(),
|
|
132
|
+
e.$slots.footer ? (l(), r("div", {
|
|
129
133
|
key: 1,
|
|
130
|
-
class:
|
|
134
|
+
class: f(["flex-none px-6 py-3 border-t border-border", t.footerClass])
|
|
131
135
|
}, [
|
|
132
|
-
|
|
136
|
+
u(e.$slots, "footer", { close: i })
|
|
133
137
|
], 2)) : n("", !0)
|
|
134
138
|
], 2)) : n("", !0)
|
|
135
139
|
]),
|
|
@@ -140,5 +144,5 @@ const G = { class: "text-lg font-bold text-foreground" }, H = {
|
|
|
140
144
|
}
|
|
141
145
|
});
|
|
142
146
|
export {
|
|
143
|
-
|
|
147
|
+
Y as default
|
|
144
148
|
};
|
package/index.js
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
import { default as f } from "vue3-google-signin";
|
|
2
2
|
import { deepMerge as l } from "./utils/object.js";
|
|
3
|
-
import { camelCase as p, capitalize as d, copyToClipboard as u, debounce as x, delay as i, downloadFile as n, flattenArray as c, formatCurrency as T, getUniqueId as S, isAppleDevice as b, isEmpty as g, randomNumber as
|
|
4
|
-
import { lazySearch as
|
|
3
|
+
import { camelCase as p, capitalize as d, copyToClipboard as u, debounce as x, delay as i, downloadFile as n, flattenArray as c, formatCurrency as T, getUniqueId as S, isAppleDevice as b, isEmpty as g, randomNumber as C, removeExtraProperties as P, slugify as I, throttle as D, truncate as v } from "./utils/functions.js";
|
|
4
|
+
import { lazySearch as h, resetSearchIndex as A, search as B } from "./utils/search.util.js";
|
|
5
5
|
import { env as k } from "./utils/env.js";
|
|
6
6
|
import { $t as y } from "./utils/i18n.js";
|
|
7
|
-
import { default as
|
|
8
|
-
import { default as
|
|
9
|
-
import { default as
|
|
10
|
-
import { default as
|
|
11
|
-
import { default as
|
|
12
|
-
import { useForm as
|
|
13
|
-
import { useFileUpload as
|
|
14
|
-
import { default as
|
|
15
|
-
import { default as
|
|
16
|
-
import { default as
|
|
7
|
+
import { default as E } from "./components/Chip/Chip.vue.js";
|
|
8
|
+
import { default as R } from "./components/Form/Form.vue.js";
|
|
9
|
+
import { default as O } from "./components/Form/FormField.vue.js";
|
|
10
|
+
import { default as G } from "./components/Form/FormFields.vue.js";
|
|
11
|
+
import { default as _ } from "./components/Form/CustomFields.vue.js";
|
|
12
|
+
import { useForm as H } from "./components/Form/composables/useForm.js";
|
|
13
|
+
import { useFileUpload as j } from "./components/Form/composables/useFileUpload.js";
|
|
14
|
+
import { default as Q } from "./components/Tabes/Tabes.vue.js";
|
|
15
|
+
import { default as X } from "./components/Stats/Stats.vue.js";
|
|
16
|
+
import { default as J } from "./components/Kanban/Kanban.vue.js";
|
|
17
17
|
import { default as ee } from "./components/Kanban/KanbanBoard.vue.js";
|
|
18
18
|
import { useKanbanBoard as re } from "./components/Kanban/useKanbanBoard.js";
|
|
19
19
|
import { default as ae } from "./components/Navbar/Navbar.vue.js";
|
|
@@ -25,23 +25,23 @@ import { default as xe } from "./components/QRCode/QRCode.vue.js";
|
|
|
25
25
|
import { default as ne } from "./components/Screen/Screen.vue.js";
|
|
26
26
|
import { default as Te } from "./components/Screen/ScreenFilter.vue.js";
|
|
27
27
|
import { default as be } from "./components/Heatmap/Heatmap.vue.js";
|
|
28
|
-
import { default as
|
|
28
|
+
import { default as Ce } from "./components/Masonry/Masonry.vue.js";
|
|
29
29
|
import { MASONRY_BREAKPOINTS as Ie } from "./components/Masonry/types.js";
|
|
30
30
|
import { default as ve } from "./components/Spinner/Spinner.vue.js";
|
|
31
|
-
import { default as
|
|
32
|
-
import { barcodesConstants as
|
|
31
|
+
import { default as he } from "./components/Barcode/Barcode.vue.js";
|
|
32
|
+
import { barcodesConstants as Be } from "./components/Barcode/types.js";
|
|
33
33
|
import { default as ke } from "./components/Carousel/Carousel.vue.js";
|
|
34
34
|
import { default as ye } from "./components/Dropdown/Dropdown.vue.js";
|
|
35
|
-
import { default as
|
|
36
|
-
import { default as
|
|
37
|
-
import { default as
|
|
38
|
-
import { useDropdownSelection as
|
|
39
|
-
import { useDropdownIds as
|
|
40
|
-
import { default as
|
|
41
|
-
import { default as
|
|
42
|
-
import { default as
|
|
43
|
-
import { default as
|
|
44
|
-
import { useTreeSelection as
|
|
35
|
+
import { default as Ee } from "./components/Dropdown/DropdownMenu.vue.js";
|
|
36
|
+
import { default as Re } from "./components/Dropdown/DropdownTrigger.vue.js";
|
|
37
|
+
import { default as Oe } from "./components/Dropdown/DropdownItem.vue.js";
|
|
38
|
+
import { useDropdownSelection as Ge } from "./components/Dropdown/composables/useDropdownSelection.js";
|
|
39
|
+
import { useDropdownIds as _e } from "./components/Dropdown/composables/useDropdownIds.js";
|
|
40
|
+
import { default as He } from "./components/Breadcrumb/Breadcrumb.vue.js";
|
|
41
|
+
import { default as je } from "./components/Breadcrumb/BreadcrumbItem.vue.js";
|
|
42
|
+
import { default as Qe } from "./components/FileTree/FileTree.vue.js";
|
|
43
|
+
import { default as Xe } from "./components/FileTree/FileTreeNode.vue.js";
|
|
44
|
+
import { useTreeSelection as Je } from "./components/FileTree/useTreeSelection.js";
|
|
45
45
|
import { default as eo } from "./components/OTPInput/OTPInput.vue.js";
|
|
46
46
|
import { default as ro } from "./components/Workbook/Workbook.vue.js";
|
|
47
47
|
import { default as ao } from "./components/Workbook/Sheet.vue.js";
|
|
@@ -50,168 +50,170 @@ import { default as so } from "./components/List/List.vue.js";
|
|
|
50
50
|
import { default as uo } from "./components/List/ListFieldRow.vue.js";
|
|
51
51
|
import { formatDate as io, formatNumber as no, formatPrice as co, getObjectValue as To, getStatusColorClass as So } from "./components/List/utils.js";
|
|
52
52
|
import { default as go } from "./components/Empty/Empty.vue.js";
|
|
53
|
-
import { default as
|
|
53
|
+
import { default as Po } from "./components/Accordion/Accordion.vue.js";
|
|
54
54
|
import { default as Do } from "./components/Accordion/AccordionItem.vue.js";
|
|
55
|
-
import { default as
|
|
56
|
-
import { default as
|
|
57
|
-
import { default as
|
|
55
|
+
import { default as No } from "./components/Accordion/AccordionTrigger.vue.js";
|
|
56
|
+
import { default as Ao } from "./components/Accordion/AccordionContent.vue.js";
|
|
57
|
+
import { default as Fo } from "./components/ChoiceBox/ChoiceBox.vue.js";
|
|
58
58
|
import { default as wo } from "./components/DataTable/DataTable.vue.js";
|
|
59
59
|
import { default as Mo } from "./components/DataTable/DataTableHeader.vue.js";
|
|
60
|
-
import { default as
|
|
61
|
-
import {
|
|
62
|
-
import {
|
|
63
|
-
import { default as
|
|
64
|
-
import { default as
|
|
65
|
-
import { default as
|
|
66
|
-
import { default as
|
|
67
|
-
import { default as
|
|
68
|
-
import { default as
|
|
69
|
-
import { default as er } from "./components/
|
|
70
|
-
import { default as rr } from "./components/SidebarMenu/
|
|
60
|
+
import { default as Lo } from "./components/DataTable/DataTableRow.vue.js";
|
|
61
|
+
import { SCREEN_CONTEXT_KEY as Ko } from "./components/DataTable/types.js";
|
|
62
|
+
import { initializeTheme as zo, useTheme as Go } from "./composables/useTheme.js";
|
|
63
|
+
import { default as _o } from "./components/FilePicker/FilePicker.vue.js";
|
|
64
|
+
import { default as Ho } from "./components/Pagination/Pagination.vue.js";
|
|
65
|
+
import { default as jo } from "./components/ExportData/ExportData.vue.js";
|
|
66
|
+
import { default as Qo } from "./components/ImportData/ImportData.vue.js";
|
|
67
|
+
import { default as Xo } from "./components/MultiSelect/MultiSelect.vue.js";
|
|
68
|
+
import { default as Jo } from "./components/PricingPlan/PricingPlan.vue.js";
|
|
69
|
+
import { default as er } from "./components/PricingPlan/PricingPlanItem.vue.js";
|
|
70
|
+
import { default as rr } from "./components/SidebarMenu/SidebarMenu.vue.js";
|
|
71
|
+
import { default as ar } from "./components/SidebarMenu/SidebarMenuItem.vue.js";
|
|
71
72
|
/* empty css */
|
|
72
|
-
import { default as
|
|
73
|
-
import { default as
|
|
74
|
-
import { default as
|
|
75
|
-
import { useAdvancedKeyStroke as
|
|
76
|
-
import { vScrollReveal as
|
|
77
|
-
import { default as
|
|
78
|
-
import { configure as
|
|
79
|
-
import { default as
|
|
80
|
-
import { default as
|
|
81
|
-
import { default as
|
|
82
|
-
import { default as
|
|
83
|
-
import { default as
|
|
84
|
-
import { default as
|
|
85
|
-
import { default as
|
|
86
|
-
import { default as
|
|
73
|
+
import { default as mr } from "./components/ProgressBar/ProgressBar.vue.js";
|
|
74
|
+
import { default as sr } from "./components/PermissionMatrix/PermissionMatrix.vue.js";
|
|
75
|
+
import { default as dr } from "./components/PermissionMatrix/PermissionEditor.vue.js";
|
|
76
|
+
import { useAdvancedKeyStroke as xr, useKeyStroke as ir } from "./composables/useKeyStroke.js";
|
|
77
|
+
import { vScrollReveal as cr } from "./directives/vScrollReveal.js";
|
|
78
|
+
import { default as Sr } from "./components/AvatarUploader/AvatarUploader.vue.js";
|
|
79
|
+
import { configure as gr, pauseTimers as Cr, removeToast as Pr, resumeTimers as Ir, showToast as Dr, toast as vr, useNotifications as Nr } from "./composables/useNotifications.js";
|
|
80
|
+
import { default as Ar } from "./components/Timeline/Timeline.vue.js";
|
|
81
|
+
import { default as Fr } from "./components/Timeline/TimelineItem.vue.js";
|
|
82
|
+
import { default as wr } from "./components/Timeline/TimelineIndicator.vue.js";
|
|
83
|
+
import { default as Mr } from "./components/Icon.vue.js";
|
|
84
|
+
import { default as Lr } from "./components/Logo.vue.js";
|
|
85
|
+
import { default as Kr } from "./components/Alert.vue.js";
|
|
86
|
+
import { default as zr } from "./components/Badge.vue.js";
|
|
87
|
+
import { default as Ur } from "./components/Input.vue.js";
|
|
87
88
|
/* empty css */
|
|
88
|
-
import { default as
|
|
89
|
-
import { default as
|
|
90
|
-
import { default as
|
|
91
|
-
import { default as
|
|
92
|
-
import { default as
|
|
93
|
-
import { default as
|
|
94
|
-
import { default as
|
|
95
|
-
import { default as
|
|
96
|
-
import { default as
|
|
97
|
-
import { default as
|
|
98
|
-
import { default as
|
|
99
|
-
import { default as
|
|
100
|
-
import { default as
|
|
101
|
-
import { default as
|
|
102
|
-
import { default as
|
|
103
|
-
import { default as
|
|
104
|
-
import { default as
|
|
105
|
-
import { default as
|
|
106
|
-
import { default as
|
|
107
|
-
import { default as
|
|
108
|
-
import { default as
|
|
109
|
-
import { default as
|
|
110
|
-
import { default as
|
|
111
|
-
import { createVLite as
|
|
112
|
-
import { default as
|
|
113
|
-
import { STATUS_MAP as
|
|
114
|
-
import { useVLiteConfig as
|
|
89
|
+
import { default as Vr } from "./components/Label.vue.js";
|
|
90
|
+
import { default as Yr } from "./components/Modal.vue.js";
|
|
91
|
+
import { default as qr } from "./components/Avatar.vue.js";
|
|
92
|
+
import { default as Wr } from "./components/Button.vue.js";
|
|
93
|
+
import { default as $r } from "./components/BackButton.vue.js";
|
|
94
|
+
import { default as Zr } from "./components/Slider.vue.js";
|
|
95
|
+
import { default as ot } from "./components/Switch.vue.js";
|
|
96
|
+
import { default as tt } from "./components/Tooltip.vue.js";
|
|
97
|
+
import { default as ft } from "./components/CheckBox.vue.js";
|
|
98
|
+
import { default as lt } from "./components/Textarea.vue.js";
|
|
99
|
+
import { default as pt } from "./components/SidePanel.vue.js";
|
|
100
|
+
import { default as ut } from "./components/DatePicker.vue.js";
|
|
101
|
+
import { default as it } from "./components/IconPicker.vue.js";
|
|
102
|
+
import { default as ct } from "./components/ButtonGroup.vue.js";
|
|
103
|
+
import { default as St } from "./components/NumberInput.vue.js";
|
|
104
|
+
import { default as gt } from "./components/ThemeToggle.vue.js";
|
|
105
|
+
import { default as Pt } from "./components/GoogleLogin.vue.js";
|
|
106
|
+
import { default as Dt } from "./components/ColorPicker/ColorPicker.vue.js";
|
|
107
|
+
import { default as Nt } from "./components/ConfirmationModal.vue.js";
|
|
108
|
+
import { default as At } from "./components/ToastNotification.vue.js";
|
|
109
|
+
import { default as Ft } from "./components/CommandPaletteContent.vue.js";
|
|
110
|
+
import { default as wt } from "./components/NavbarCommandPalette.vue.js";
|
|
111
|
+
import { default as Mt } from "./components/DateRangePicker.vue.js";
|
|
112
|
+
import { createVLite as Lt } from "./core/index.js";
|
|
113
|
+
import { default as Kt } from "./components/StatusChip/StatusChip.vue.js";
|
|
114
|
+
import { STATUS_MAP as zt, normalizeStatus as Gt, resolveStatus as Ut } from "./components/StatusChip/status-map.js";
|
|
115
|
+
import { useVLiteConfig as Vt } from "./core/config.js";
|
|
115
116
|
export {
|
|
116
117
|
y as $t,
|
|
117
|
-
|
|
118
|
-
|
|
118
|
+
Po as Accordion,
|
|
119
|
+
Ao as AccordionContent,
|
|
119
120
|
Do as AccordionItem,
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
121
|
+
No as AccordionTrigger,
|
|
122
|
+
Kr as Alert,
|
|
123
|
+
qr as Avatar,
|
|
124
|
+
Sr as AvatarUploader,
|
|
125
|
+
$r as BackButton,
|
|
126
|
+
zr as Badge,
|
|
127
|
+
he as Barcode,
|
|
128
|
+
He as Breadcrumb,
|
|
129
|
+
je as BreadcrumbItem,
|
|
130
|
+
Wr as Button,
|
|
131
|
+
ct as ButtonGroup,
|
|
131
132
|
ke as Carousel,
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
133
|
+
ft as CheckBox,
|
|
134
|
+
E as Chip,
|
|
135
|
+
Fo as ChoiceBox,
|
|
136
|
+
Dt as ColorPicker,
|
|
137
|
+
Ft as CommandPaletteContent,
|
|
138
|
+
Nt as ConfirmationModal,
|
|
139
|
+
_ as CustomFields,
|
|
139
140
|
mo as DataList,
|
|
140
141
|
wo as DataTable,
|
|
141
142
|
Mo as DataTableHeader,
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
143
|
+
Lo as DataTableRow,
|
|
144
|
+
ut as DatePicker,
|
|
145
|
+
Mt as DateRangePicker,
|
|
145
146
|
ye as Dropdown,
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
147
|
+
Oe as DropdownItem,
|
|
148
|
+
Ee as DropdownMenu,
|
|
149
|
+
Re as DropdownTrigger,
|
|
149
150
|
go as Empty,
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
151
|
+
jo as ExportData,
|
|
152
|
+
_o as FilePicker,
|
|
153
|
+
Qe as FileTree,
|
|
154
|
+
Xe as FileTreeNode,
|
|
155
|
+
R as Form,
|
|
156
|
+
O as FormField,
|
|
157
|
+
G as FormFields,
|
|
158
|
+
Pt as GoogleLogin,
|
|
158
159
|
f as GoogleSignInPlugin,
|
|
159
160
|
be as Heatmap,
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
161
|
+
Mr as Icon,
|
|
162
|
+
it as IconPicker,
|
|
163
|
+
Qo as ImportData,
|
|
164
|
+
Ur as Input,
|
|
165
|
+
J as Kanban,
|
|
165
166
|
ee as KanbanBoard,
|
|
166
|
-
|
|
167
|
+
Vr as Label,
|
|
167
168
|
so as List,
|
|
168
169
|
uo as ListFieldRow,
|
|
169
|
-
|
|
170
|
+
Lr as Logo,
|
|
170
171
|
Ie as MASONRY_BREAKPOINTS,
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
172
|
+
Ce as Masonry,
|
|
173
|
+
Yr as Modal,
|
|
174
|
+
Xo as MultiSelect,
|
|
174
175
|
ae as Navbar,
|
|
175
|
-
|
|
176
|
+
wt as NavbarCommandPalette,
|
|
176
177
|
se as NavbarGroup,
|
|
177
178
|
me as NavbarItem,
|
|
178
179
|
de as NavbarTabs,
|
|
179
|
-
|
|
180
|
+
St as NumberInput,
|
|
180
181
|
eo as OTPInput,
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
182
|
+
Ho as Pagination,
|
|
183
|
+
dr as PermissionEditor,
|
|
184
|
+
sr as PermissionMatrix,
|
|
185
|
+
Jo as PricingPlan,
|
|
186
|
+
er as PricingPlanItem,
|
|
187
|
+
mr as ProgressBar,
|
|
187
188
|
xe as QRCode,
|
|
188
|
-
|
|
189
|
+
Ko as SCREEN_CONTEXT_KEY,
|
|
190
|
+
zt as STATUS_MAP,
|
|
189
191
|
ne as Screen,
|
|
190
192
|
Te as ScreenFilter,
|
|
191
193
|
ao as Sheet,
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
194
|
+
pt as SidePanel,
|
|
195
|
+
rr as SidebarMenu,
|
|
196
|
+
ar as SidebarMenuItem,
|
|
197
|
+
Zr as Slider,
|
|
196
198
|
ve as Spinner,
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
199
|
+
X as Stats,
|
|
200
|
+
Kt as StatusChip,
|
|
201
|
+
ot as Switch,
|
|
202
|
+
Q as Tabes,
|
|
203
|
+
lt as Textarea,
|
|
204
|
+
gt as ThemeToggle,
|
|
205
|
+
Ar as Timeline,
|
|
206
|
+
wr as TimelineIndicator,
|
|
207
|
+
Fr as TimelineItem,
|
|
208
|
+
At as ToastNotification,
|
|
209
|
+
tt as Tooltip,
|
|
208
210
|
ro as Workbook,
|
|
209
|
-
|
|
211
|
+
Be as barcodesConstants,
|
|
210
212
|
p as camelCase,
|
|
211
213
|
d as capitalize,
|
|
212
|
-
|
|
214
|
+
gr as configure,
|
|
213
215
|
u as copyToClipboard,
|
|
214
|
-
|
|
216
|
+
Lt as createVLite,
|
|
215
217
|
x as debounce,
|
|
216
218
|
l as deepMerge,
|
|
217
219
|
i as delay,
|
|
@@ -225,34 +227,34 @@ export {
|
|
|
225
227
|
To as getObjectValue,
|
|
226
228
|
So as getStatusColorClass,
|
|
227
229
|
S as getUniqueId,
|
|
228
|
-
|
|
230
|
+
zo as initializeTheme,
|
|
229
231
|
b as isAppleDevice,
|
|
230
232
|
g as isEmpty,
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
233
|
+
h as lazySearch,
|
|
234
|
+
Gt as normalizeStatus,
|
|
235
|
+
Cr as pauseTimers,
|
|
236
|
+
C as randomNumber,
|
|
237
|
+
P as removeExtraProperties,
|
|
238
|
+
Pr as removeToast,
|
|
239
|
+
A as resetSearchIndex,
|
|
240
|
+
Ut as resolveStatus,
|
|
241
|
+
Ir as resumeTimers,
|
|
242
|
+
B as search,
|
|
243
|
+
Dr as showToast,
|
|
242
244
|
I as slugify,
|
|
243
245
|
D as throttle,
|
|
244
|
-
|
|
246
|
+
vr as toast,
|
|
245
247
|
v as truncate,
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
248
|
+
xr as useAdvancedKeyStroke,
|
|
249
|
+
_e as useDropdownIds,
|
|
250
|
+
Ge as useDropdownSelection,
|
|
251
|
+
j as useFileUpload,
|
|
252
|
+
H as useForm,
|
|
251
253
|
re as useKanbanBoard,
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
254
|
+
ir as useKeyStroke,
|
|
255
|
+
Nr as useNotifications,
|
|
256
|
+
Go as useTheme,
|
|
257
|
+
Je as useTreeSelection,
|
|
258
|
+
Vt as useVLiteConfig,
|
|
259
|
+
cr as vScrollReveal
|
|
258
260
|
};
|