vlite3 0.6.4 → 0.6.6
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/Breadcrumb/Breadcrumb.vue.d.ts +12 -2
- package/components/Breadcrumb/Breadcrumb.vue.js +1 -1
- package/components/Breadcrumb/Breadcrumb.vue2.js +54 -43
- package/components/Breadcrumb/BreadcrumbItem.vue.d.ts +13 -1
- package/components/Breadcrumb/BreadcrumbItem.vue.js +2 -2
- package/components/Breadcrumb/BreadcrumbItem.vue2.js +36 -21
- package/components/ColorPicker/ColorIro.vue3.js +2 -2
- package/components/ColorPicker/ColorPicker.vue.js +2 -2
- package/components/Screen/Screen.vue.d.ts +1 -0
- package/components/Screen/Screen.vue.js +105 -115
- package/components/Screen/ScreenFilter.vue.js +1 -1
- package/package.json +1 -1
- package/style.css +1 -1
- /package/components/ColorPicker/{ColorIro.vue2.js → ColorIro.vue.js} +0 -0
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { BreadcrumbProps, BreadcrumbVariant, BreadcrumbSeparator, BreadcrumbSize } from './types';
|
|
1
|
+
import { BreadcrumbProps, BreadcrumbItemSchema, BreadcrumbVariant, BreadcrumbSeparator, BreadcrumbSize } from './types';
|
|
2
2
|
declare function __VLS_template(): {
|
|
3
3
|
attrs: Partial<{}>;
|
|
4
4
|
slots: {
|
|
@@ -8,7 +8,17 @@ declare function __VLS_template(): {
|
|
|
8
8
|
rootEl: HTMLElement;
|
|
9
9
|
};
|
|
10
10
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
11
|
-
declare const __VLS_component: import('vue').DefineComponent<BreadcrumbProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}
|
|
11
|
+
declare const __VLS_component: import('vue').DefineComponent<BreadcrumbProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
12
|
+
"item-click": (payload: {
|
|
13
|
+
item: BreadcrumbItemSchema;
|
|
14
|
+
index: number;
|
|
15
|
+
}) => any;
|
|
16
|
+
}, string, import('vue').PublicProps, Readonly<BreadcrumbProps> & Readonly<{
|
|
17
|
+
"onItem-click"?: (payload: {
|
|
18
|
+
item: BreadcrumbItemSchema;
|
|
19
|
+
index: number;
|
|
20
|
+
}) => any;
|
|
21
|
+
}>, {
|
|
12
22
|
variant: BreadcrumbVariant;
|
|
13
23
|
size: BreadcrumbSize;
|
|
14
24
|
class: string;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import o from "./Breadcrumb.vue2.js";
|
|
2
2
|
/* empty css */
|
|
3
3
|
import r from "../../_virtual/_plugin-vue_export-helper.js";
|
|
4
|
-
const c = /* @__PURE__ */ r(o, [["__scopeId", "data-v-
|
|
4
|
+
const c = /* @__PURE__ */ r(o, [["__scopeId", "data-v-12cf2491"]]);
|
|
5
5
|
export {
|
|
6
6
|
c as default
|
|
7
7
|
};
|
|
@@ -1,13 +1,9 @@
|
|
|
1
|
-
import { defineComponent as
|
|
2
|
-
import
|
|
3
|
-
const
|
|
4
|
-
key: 0,
|
|
1
|
+
import { defineComponent as B, ref as w, computed as l, openBlock as i, createElementBlock as m, normalizeClass as p, createElementVNode as s, Fragment as u, renderList as M, toDisplayString as v, createCommentVNode as h, createVNode as N, mergeProps as S, renderSlot as V } from "vue";
|
|
2
|
+
import E from "./BreadcrumbItem.vue.js";
|
|
3
|
+
const O = { class: "breadcrumb-list" }, _ = {
|
|
5
4
|
class: "breadcrumb-separator",
|
|
6
5
|
"aria-hidden": "true"
|
|
7
|
-
},
|
|
8
|
-
class: "breadcrumb-separator",
|
|
9
|
-
"aria-hidden": "true"
|
|
10
|
-
}, j = /* @__PURE__ */ C({
|
|
6
|
+
}, F = /* @__PURE__ */ B({
|
|
11
7
|
__name: "Breadcrumb",
|
|
12
8
|
props: {
|
|
13
9
|
items: {},
|
|
@@ -17,68 +13,83 @@ const M = { class: "breadcrumb-list" }, N = {
|
|
|
17
13
|
maxItems: {},
|
|
18
14
|
class: { default: "" }
|
|
19
15
|
},
|
|
20
|
-
|
|
21
|
-
|
|
16
|
+
emits: ["item-click"],
|
|
17
|
+
setup(n, { emit: x }) {
|
|
18
|
+
const e = n, k = x, d = w(!0), c = l(() => !e.maxItems || !e.items ? !1 : e.items.length > e.maxItems && d.value), b = l(() => {
|
|
22
19
|
if (!e.items) return [];
|
|
23
|
-
if (!
|
|
24
|
-
const
|
|
25
|
-
return [e.items[0], ...e.items.slice(-
|
|
26
|
-
}),
|
|
27
|
-
function
|
|
28
|
-
|
|
20
|
+
if (!c.value) return e.items;
|
|
21
|
+
const t = e.maxItems, r = Math.max(t - 1, 1);
|
|
22
|
+
return [e.items[0], ...e.items.slice(-r)];
|
|
23
|
+
}), g = l(() => c.value ? 1 : -1);
|
|
24
|
+
function C() {
|
|
25
|
+
d.value = !1;
|
|
26
|
+
}
|
|
27
|
+
function I(t) {
|
|
28
|
+
if (!e.items || !c.value) return t;
|
|
29
|
+
const r = e.maxItems, o = Math.max(r - 1, 1), a = e.items.length - o;
|
|
30
|
+
return t === 0 ? 0 : a + (t - 1);
|
|
31
|
+
}
|
|
32
|
+
function z(t) {
|
|
33
|
+
k("item-click", { item: t.item, index: I(t.index) });
|
|
29
34
|
}
|
|
30
|
-
const
|
|
31
|
-
const
|
|
35
|
+
const y = l(() => {
|
|
36
|
+
const t = {
|
|
32
37
|
default: "breadcrumb--default",
|
|
33
38
|
contained: "breadcrumb--contained",
|
|
34
39
|
pills: "breadcrumb--pills",
|
|
35
40
|
arrow: "breadcrumb--arrow"
|
|
36
|
-
},
|
|
41
|
+
}, r = {
|
|
37
42
|
sm: "breadcrumb--sm",
|
|
38
43
|
md: "breadcrumb--md",
|
|
39
44
|
lg: "breadcrumb--lg"
|
|
40
45
|
};
|
|
41
|
-
return ["breadcrumb",
|
|
42
|
-
}),
|
|
46
|
+
return ["breadcrumb", t[e.variant], r[e.size], e.class].filter(Boolean).join(" ");
|
|
47
|
+
}), f = l(() => ({
|
|
43
48
|
slash: "/",
|
|
44
49
|
chevron: "›",
|
|
45
50
|
dot: "·",
|
|
46
51
|
arrow: "→"
|
|
47
52
|
})[e.separator] || "›");
|
|
48
|
-
return (
|
|
49
|
-
class:
|
|
53
|
+
return (t, r) => (i(), m("nav", {
|
|
54
|
+
class: p(y.value),
|
|
50
55
|
"aria-label": "Breadcrumb"
|
|
51
56
|
}, [
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
key:
|
|
57
|
+
s("ol", O, [
|
|
58
|
+
n.items && n.items.length ? (i(!0), m(u, { key: 0 }, M(b.value, (o, a) => (i(), m(u, {
|
|
59
|
+
key: o.label + a
|
|
55
60
|
}, [
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
61
|
+
a > 0 ? (i(), m("li", {
|
|
62
|
+
key: 0,
|
|
63
|
+
class: p(["breadcrumb-separator", (e.separator == "chevron" || e?.separator === "dot") && "text-fs-3!"]),
|
|
64
|
+
"aria-hidden": "true"
|
|
65
|
+
}, [
|
|
66
|
+
s("span", null, v(f.value), 1)
|
|
67
|
+
], 2)) : h("", !0),
|
|
68
|
+
a === g.value ? (i(), m(u, { key: 1 }, [
|
|
69
|
+
s("li", _, [
|
|
70
|
+
s("span", null, v(f.value), 1)
|
|
62
71
|
]),
|
|
63
|
-
|
|
64
|
-
|
|
72
|
+
s("li", { class: "breadcrumb-ellipsis" }, [
|
|
73
|
+
s("button", {
|
|
65
74
|
type: "button",
|
|
66
75
|
class: "breadcrumb-ellipsis-btn",
|
|
67
76
|
"aria-label": "Show all breadcrumb items",
|
|
68
|
-
onClick:
|
|
77
|
+
onClick: C
|
|
69
78
|
}, " … ")
|
|
70
79
|
])
|
|
71
|
-
], 64)) :
|
|
72
|
-
|
|
73
|
-
size:
|
|
74
|
-
variant:
|
|
75
|
-
"is-current":
|
|
76
|
-
|
|
77
|
-
|
|
80
|
+
], 64)) : h("", !0),
|
|
81
|
+
N(E, S({ ref_for: !0 }, o, {
|
|
82
|
+
size: n.size,
|
|
83
|
+
variant: n.variant,
|
|
84
|
+
"is-current": a === b.value.length - 1,
|
|
85
|
+
"item-index": a,
|
|
86
|
+
onItemClick: z
|
|
87
|
+
}), null, 16, ["size", "variant", "is-current", "item-index"])
|
|
88
|
+
], 64))), 128)) : V(t.$slots, "default", { key: 1 }, void 0, !0)
|
|
78
89
|
])
|
|
79
90
|
], 2));
|
|
80
91
|
}
|
|
81
92
|
});
|
|
82
93
|
export {
|
|
83
|
-
|
|
94
|
+
F as default
|
|
84
95
|
};
|
|
@@ -3,6 +3,7 @@ interface Props extends BreadcrumbItemSchema {
|
|
|
3
3
|
size?: BreadcrumbSize;
|
|
4
4
|
isCurrent?: boolean;
|
|
5
5
|
variant?: string;
|
|
6
|
+
itemIndex?: number;
|
|
6
7
|
}
|
|
7
8
|
declare function __VLS_template(): {
|
|
8
9
|
attrs: Partial<{}>;
|
|
@@ -13,10 +14,21 @@ declare function __VLS_template(): {
|
|
|
13
14
|
rootEl: HTMLLIElement;
|
|
14
15
|
};
|
|
15
16
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
16
|
-
declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}
|
|
17
|
+
declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
18
|
+
"item-click": (payload: {
|
|
19
|
+
item: BreadcrumbItemSchema;
|
|
20
|
+
index: number;
|
|
21
|
+
}) => any;
|
|
22
|
+
}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
|
|
23
|
+
"onItem-click"?: (payload: {
|
|
24
|
+
item: BreadcrumbItemSchema;
|
|
25
|
+
index: number;
|
|
26
|
+
}) => any;
|
|
27
|
+
}>, {
|
|
17
28
|
variant: string;
|
|
18
29
|
size: BreadcrumbSize;
|
|
19
30
|
isCurrent: boolean;
|
|
31
|
+
itemIndex: number;
|
|
20
32
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLLIElement>;
|
|
21
33
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
22
34
|
export default _default;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import o from "./BreadcrumbItem.vue2.js";
|
|
2
2
|
/* empty css */
|
|
3
3
|
import r from "../../_virtual/_plugin-vue_export-helper.js";
|
|
4
|
-
const
|
|
4
|
+
const a = /* @__PURE__ */ r(o, [["__scopeId", "data-v-5c9662c5"]]);
|
|
5
5
|
export {
|
|
6
|
-
|
|
6
|
+
a as default
|
|
7
7
|
};
|
|
@@ -1,11 +1,12 @@
|
|
|
1
|
-
import { defineComponent as
|
|
2
|
-
import
|
|
3
|
-
const
|
|
1
|
+
import { defineComponent as f, computed as r, openBlock as a, createElementBlock as b, normalizeClass as n, createBlock as l, resolveDynamicComponent as C, mergeProps as h, withCtx as k, createCommentVNode as v, renderSlot as B, createTextVNode as x, toDisplayString as y } from "vue";
|
|
2
|
+
import g from "../Icon.vue.js";
|
|
3
|
+
const I = /* @__PURE__ */ f({
|
|
4
4
|
__name: "BreadcrumbItem",
|
|
5
5
|
props: {
|
|
6
6
|
size: { default: "md" },
|
|
7
7
|
isCurrent: { type: Boolean, default: !1 },
|
|
8
8
|
variant: { default: "default" },
|
|
9
|
+
itemIndex: { default: 0 },
|
|
9
10
|
label: {},
|
|
10
11
|
to: {},
|
|
11
12
|
href: {},
|
|
@@ -13,31 +14,45 @@ const w = /* @__PURE__ */ u({
|
|
|
13
14
|
disabled: { type: Boolean },
|
|
14
15
|
active: { type: Boolean }
|
|
15
16
|
},
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
17
|
+
emits: ["item-click"],
|
|
18
|
+
setup(t, { emit: s }) {
|
|
19
|
+
const e = t, c = s, d = r(() => e.disabled || e.isCurrent ? "span" : e.to ? "router-link" : e.href ? "a" : "span"), o = r(() => e.disabled || e.isCurrent ? {} : e.to ? { to: e.to } : e.href ? { href: e.href } : {}), u = r(() => {
|
|
20
|
+
const i = {
|
|
19
21
|
sm: "w-3 h-3",
|
|
20
22
|
md: "w-3.5 h-3.5",
|
|
21
23
|
lg: "w-4 h-4"
|
|
22
24
|
};
|
|
23
|
-
return
|
|
25
|
+
return i[e.size] || i.md;
|
|
24
26
|
});
|
|
25
|
-
|
|
26
|
-
|
|
27
|
+
function m() {
|
|
28
|
+
if (e.disabled || e.isCurrent) return;
|
|
29
|
+
const i = {
|
|
30
|
+
label: e.label,
|
|
31
|
+
to: e.to,
|
|
32
|
+
href: e.href,
|
|
33
|
+
icon: e.icon,
|
|
34
|
+
disabled: e.disabled,
|
|
35
|
+
active: e.active
|
|
36
|
+
};
|
|
37
|
+
c("item-click", { item: i, index: e.itemIndex });
|
|
38
|
+
}
|
|
39
|
+
return (i, z) => (a(), b("li", {
|
|
40
|
+
class: n(["breadcrumb-item", { "is-current": t.isCurrent, "is-disabled": t.disabled }])
|
|
27
41
|
}, [
|
|
28
|
-
(
|
|
29
|
-
class: ["breadcrumb-link", { current:
|
|
30
|
-
"aria-current":
|
|
31
|
-
"aria-disabled":
|
|
42
|
+
(a(), l(C(d.value), h(o.value, {
|
|
43
|
+
class: ["breadcrumb-link", { current: t.isCurrent, disabled: t.disabled }],
|
|
44
|
+
"aria-current": t.isCurrent ? "page" : void 0,
|
|
45
|
+
"aria-disabled": t.disabled || void 0,
|
|
46
|
+
onClick: m
|
|
32
47
|
}), {
|
|
33
|
-
default:
|
|
34
|
-
|
|
48
|
+
default: k(() => [
|
|
49
|
+
t.icon ? (a(), l(g, {
|
|
35
50
|
key: 0,
|
|
36
|
-
icon:
|
|
37
|
-
class: n(["breadcrumb-icon",
|
|
38
|
-
}, null, 8, ["icon", "class"])) :
|
|
39
|
-
|
|
40
|
-
|
|
51
|
+
icon: t.icon,
|
|
52
|
+
class: n(["breadcrumb-icon", u.value])
|
|
53
|
+
}, null, 8, ["icon", "class"])) : v("", !0),
|
|
54
|
+
B(i.$slots, "default", {}, () => [
|
|
55
|
+
x(y(t.label), 1)
|
|
41
56
|
], !0)
|
|
42
57
|
]),
|
|
43
58
|
_: 3
|
|
@@ -46,5 +61,5 @@ const w = /* @__PURE__ */ u({
|
|
|
46
61
|
}
|
|
47
62
|
});
|
|
48
63
|
export {
|
|
49
|
-
|
|
64
|
+
I as default
|
|
50
65
|
};
|
|
@@ -5,8 +5,8 @@ import O from "../Input.vue.js";
|
|
|
5
5
|
/* empty css */
|
|
6
6
|
import "../../core/config.js";
|
|
7
7
|
import y from "../Button.vue.js";
|
|
8
|
-
import E from "./ColorIro.
|
|
9
|
-
/* empty css
|
|
8
|
+
import E from "./ColorIro.vue.js";
|
|
9
|
+
/* empty css */
|
|
10
10
|
import { useEyeDropper as P } from "@vueuse/core";
|
|
11
11
|
const I = {
|
|
12
12
|
key: 0,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { defineComponent as
|
|
1
|
+
import { defineComponent as Ce, computed as o, ref as x, provide as Z, watch as q, resolveComponent as Pe, openBlock as a, createElementBlock as s, normalizeClass as O, createElementVNode as g, renderSlot as w, toDisplayString as f, createBlock as c, withCtx as d, createVNode as u, createCommentVNode as m, unref as b, resolveDynamicComponent as z, Fragment as C, mergeProps as v, createTextVNode as p, renderList as Ie } from "vue";
|
|
2
2
|
import Se from "../Input.vue.js";
|
|
3
3
|
/* empty css */
|
|
4
|
-
import
|
|
4
|
+
import h from "../Button.vue.js";
|
|
5
5
|
import R from "../Icon.vue.js";
|
|
6
6
|
import $e from "../Tooltip.vue.js";
|
|
7
7
|
import H from "../Modal.vue.js";
|
|
@@ -33,7 +33,7 @@ const Le = { class: "flex flex-col w-full space-y-8" }, Me = { class: "flex flex
|
|
|
33
33
|
}, et = {
|
|
34
34
|
key: 2,
|
|
35
35
|
class: "-mt-2"
|
|
36
|
-
}, tt = { class: "px-1 py-1 text-sm" }, nt = { class: "font-medium mb-3 text-muted-foreground" }, at = { class: "space-y-3" }, lt = { key: 4 }, kt = /* @__PURE__ */
|
|
36
|
+
}, tt = { class: "px-1 py-1 text-sm" }, nt = { class: "font-medium mb-3 text-muted-foreground" }, at = { class: "space-y-3" }, lt = { key: 4 }, kt = /* @__PURE__ */ Ce({
|
|
37
37
|
__name: "Screen",
|
|
38
38
|
props: {
|
|
39
39
|
name: { default: "" },
|
|
@@ -84,14 +84,14 @@ const Le = { class: "flex flex-col w-full space-y-8" }, Me = { class: "flex flex
|
|
|
84
84
|
const n = t, P = Fe(), J = _, ee = o(() => n.name || n.title || "default-screen"), I = Ne(
|
|
85
85
|
`view-mode-${ee.value}`,
|
|
86
86
|
n.table ? "table" : "list"
|
|
87
|
-
), S = x(""), T = x({}), k = x(n.pageInfo?.currentPage || 1), V = x(n.pageInfo?.itemsPerPage || n.paginationProps?.itemsPerPage || 10),
|
|
88
|
-
Z("screen-selected-rows",
|
|
87
|
+
), S = x(""), T = x({}), k = x(n.pageInfo?.currentPage || 1), V = x(n.pageInfo?.itemsPerPage || n.paginationProps?.itemsPerPage || 10), B = x([]), j = x([]), $ = x(!1);
|
|
88
|
+
Z("screen-selected-rows", B), Z("screen-request-delete", (e) => N(e));
|
|
89
89
|
const N = (e) => {
|
|
90
90
|
j.value = e, $.value = !0;
|
|
91
91
|
}, te = () => {
|
|
92
|
-
J("delete", j.value), $.value = !1,
|
|
92
|
+
J("delete", j.value), $.value = !1, B.value = [];
|
|
93
93
|
}, ne = (e) => {
|
|
94
|
-
J("delete", e),
|
|
94
|
+
J("delete", e), B.value = [];
|
|
95
95
|
};
|
|
96
96
|
q(
|
|
97
97
|
() => n.pageInfo?.currentPage,
|
|
@@ -107,14 +107,14 @@ const Le = { class: "flex flex-col w-full space-y-8" }, Me = { class: "flex flex
|
|
|
107
107
|
let F = null;
|
|
108
108
|
q(S, (e) => {
|
|
109
109
|
F && clearTimeout(F), F = setTimeout(() => {
|
|
110
|
-
k.value = 1,
|
|
110
|
+
k.value = 1, D();
|
|
111
111
|
}, 300);
|
|
112
112
|
});
|
|
113
113
|
const ae = (e) => {
|
|
114
|
-
k.value = e,
|
|
114
|
+
k.value = e, D();
|
|
115
115
|
}, le = (e) => {
|
|
116
|
-
V.value = e, k.value = 1,
|
|
117
|
-
},
|
|
116
|
+
V.value = e, k.value = 1, D();
|
|
117
|
+
}, D = () => {
|
|
118
118
|
const e = {
|
|
119
119
|
pageinfo: {
|
|
120
120
|
page: k.value,
|
|
@@ -196,8 +196,8 @@ const Le = { class: "flex flex-col w-full space-y-8" }, Me = { class: "flex flex
|
|
|
196
196
|
failed: 0,
|
|
197
197
|
errors: []
|
|
198
198
|
}), Be = () => {
|
|
199
|
-
|
|
200
|
-
}, ke = o(() => n.exportMode || P?.exportData?.mode || "frontend"),
|
|
199
|
+
D();
|
|
200
|
+
}, ke = o(() => n.exportMode || P?.exportData?.mode || "frontend"), De = async (e) => {
|
|
201
201
|
if (P?.services?.exportApi && n.exportType) {
|
|
202
202
|
const l = {
|
|
203
203
|
format: e,
|
|
@@ -212,16 +212,16 @@ const Le = { class: "flex flex-col w-full space-y-8" }, Me = { class: "flex flex
|
|
|
212
212
|
};
|
|
213
213
|
return (e, l) => {
|
|
214
214
|
const Y = Pe("router-link");
|
|
215
|
-
return a(),
|
|
216
|
-
t.customHeader ?
|
|
215
|
+
return a(), s("div", Le, [
|
|
216
|
+
t.customHeader ? w(e.$slots, "custom-header", { key: 1 }) : (a(), s("div", {
|
|
217
217
|
key: 0,
|
|
218
218
|
class: O([t.headerClass, "flex flex-col md:flex-row sm:items-start md:items-center justify-between gap-4"])
|
|
219
219
|
}, [
|
|
220
220
|
g("div", Me, [
|
|
221
|
-
|
|
222
|
-
Q.value ? (a(),
|
|
223
|
-
g("h1", qe,
|
|
224
|
-
t.info || t.infoI18n ? (a(),
|
|
221
|
+
w(e.$slots, "title", {}, () => [
|
|
222
|
+
Q.value ? (a(), s("div", Ue, [
|
|
223
|
+
g("h1", qe, f(Q.value), 1),
|
|
224
|
+
t.info || t.infoI18n ? (a(), c($e, {
|
|
225
225
|
key: 0,
|
|
226
226
|
content: t.info,
|
|
227
227
|
"content-i18n": t.infoI18n,
|
|
@@ -234,28 +234,28 @@ const Le = { class: "flex flex-col w-full space-y-8" }, Me = { class: "flex flex
|
|
|
234
234
|
})
|
|
235
235
|
]),
|
|
236
236
|
_: 1
|
|
237
|
-
}, 8, ["content", "content-i18n"])) :
|
|
238
|
-
])) :
|
|
237
|
+
}, 8, ["content", "content-i18n"])) : m("", !0)
|
|
238
|
+
])) : m("", !0)
|
|
239
239
|
]),
|
|
240
|
-
|
|
241
|
-
G.value ? (a(),
|
|
240
|
+
w(e.$slots, "description", {}, () => [
|
|
241
|
+
G.value ? (a(), s("p", ze, f(G.value), 1)) : m("", !0)
|
|
242
242
|
])
|
|
243
243
|
]),
|
|
244
244
|
g("div", He, [
|
|
245
245
|
g("div", Je, [
|
|
246
|
-
|
|
246
|
+
B.value.length > 0 ? (a(), c(h, {
|
|
247
247
|
key: 0,
|
|
248
248
|
variant: "outline",
|
|
249
249
|
class: "hover:bg-destructive/10 shrink-0 h-9! w-9!",
|
|
250
250
|
icon: "lucide:trash-2",
|
|
251
251
|
title: ie.value,
|
|
252
|
-
onClick: l[0] || (l[0] = (i) => N(
|
|
253
|
-
}, null, 8, ["title"])) :
|
|
254
|
-
t.table && t.list ? (a(),
|
|
252
|
+
onClick: l[0] || (l[0] = (i) => N(B.value))
|
|
253
|
+
}, null, 8, ["title"])) : m("", !0),
|
|
254
|
+
t.table && t.list ? (a(), s("div", Ke, [
|
|
255
255
|
g("button", {
|
|
256
256
|
onClick: l[1] || (l[1] = (i) => I.value = "list"),
|
|
257
257
|
class: O(["p-1.5 rounded", [
|
|
258
|
-
|
|
258
|
+
b(I) === "list" ? "bg-secondary/85 dark:bg-secondary shadow-sm text-foreground" : "text-muted-foreground hover:text-foreground"
|
|
259
259
|
]]),
|
|
260
260
|
title: re.value
|
|
261
261
|
}, [
|
|
@@ -267,7 +267,7 @@ const Le = { class: "flex flex-col w-full space-y-8" }, Me = { class: "flex flex
|
|
|
267
267
|
g("button", {
|
|
268
268
|
onClick: l[2] || (l[2] = (i) => I.value = "table"),
|
|
269
269
|
class: O(["p-1.5 rounded", [
|
|
270
|
-
|
|
270
|
+
b(I) === "table" ? "bg-secondary/85 dark:bg-secondary shadow-sm text-foreground" : "text-muted-foreground hover:text-foreground"
|
|
271
271
|
]]),
|
|
272
272
|
title: de.value
|
|
273
273
|
}, [
|
|
@@ -276,9 +276,9 @@ const Le = { class: "flex flex-col w-full space-y-8" }, Me = { class: "flex flex
|
|
|
276
276
|
class: "w-4 h-4"
|
|
277
277
|
})
|
|
278
278
|
], 10, Ge)
|
|
279
|
-
])) :
|
|
280
|
-
|
|
281
|
-
t.showRefresh ? (a(),
|
|
279
|
+
])) : m("", !0),
|
|
280
|
+
w(e.$slots, "before-search"),
|
|
281
|
+
t.showRefresh ? (a(), c(h, {
|
|
282
282
|
key: 2,
|
|
283
283
|
variant: "outline",
|
|
284
284
|
icon: "lucide:refresh-cw",
|
|
@@ -286,17 +286,17 @@ const Le = { class: "flex flex-col w-full space-y-8" }, Me = { class: "flex flex
|
|
|
286
286
|
class: "shrink-0 h-9! w-9!",
|
|
287
287
|
title: se.value,
|
|
288
288
|
disabled: t.loading,
|
|
289
|
-
onClick:
|
|
290
|
-
}, null, 8, ["title", "disabled"])) :
|
|
291
|
-
t.filterSchema && t.filterSchema.length > 0 ? (a(),
|
|
289
|
+
onClick: D
|
|
290
|
+
}, null, 8, ["title", "disabled"])) : m("", !0),
|
|
291
|
+
t.filterSchema && t.filterSchema.length > 0 ? (a(), c(Ae, {
|
|
292
292
|
key: 3,
|
|
293
293
|
schema: t.filterSchema,
|
|
294
294
|
type: t.filterType,
|
|
295
295
|
modelValue: T.value,
|
|
296
296
|
"onUpdate:modelValue": l[3] || (l[3] = (i) => T.value = i),
|
|
297
|
-
onChange:
|
|
298
|
-
}, null, 8, ["schema", "type", "modelValue"])) :
|
|
299
|
-
t.canSearch ? (a(),
|
|
297
|
+
onChange: D
|
|
298
|
+
}, null, 8, ["schema", "type", "modelValue"])) : m("", !0),
|
|
299
|
+
t.canSearch ? (a(), s("div", We, [
|
|
300
300
|
u(Se, {
|
|
301
301
|
lazy: "",
|
|
302
302
|
modelValue: S.value,
|
|
@@ -307,13 +307,13 @@ const Le = { class: "flex flex-col w-full space-y-8" }, Me = { class: "flex flex
|
|
|
307
307
|
class: "bg-background w-full",
|
|
308
308
|
"show-clear-button": !0
|
|
309
309
|
}, null, 8, ["modelValue", "placeholder"])
|
|
310
|
-
])) :
|
|
310
|
+
])) : m("", !0)
|
|
311
311
|
]),
|
|
312
312
|
g("div", Xe, [
|
|
313
|
-
|
|
314
|
-
t.addComponent ? (a(),
|
|
315
|
-
t.addBtn ? (a(),
|
|
316
|
-
t.addBtn.modal ? (a(),
|
|
313
|
+
w(e.$slots, "actions", {}, () => [
|
|
314
|
+
t.addComponent ? (a(), c(z(t.addComponent), { key: 0 })) : t.canAdd ? (a(), s(C, { key: 1 }, [
|
|
315
|
+
t.addBtn ? (a(), s(C, { key: 0 }, [
|
|
316
|
+
t.addBtn.modal ? (a(), c(H, v({
|
|
317
317
|
key: 0,
|
|
318
318
|
body: t.addBtn.modal
|
|
319
319
|
}, t.addBtn.modalProps, {
|
|
@@ -323,53 +323,53 @@ const Le = { class: "flex flex-col w-full space-y-8" }, Me = { class: "flex flex
|
|
|
323
323
|
loading: t.loading
|
|
324
324
|
}), {
|
|
325
325
|
trigger: d(() => [
|
|
326
|
-
u(
|
|
326
|
+
u(h, v({
|
|
327
327
|
class: "w-full",
|
|
328
328
|
icon: t.addBtn.icon || "fluent:add-16-filled",
|
|
329
329
|
variant: t.addBtn.variant || "primary"
|
|
330
330
|
}, t.addBtn.buttonProps), {
|
|
331
331
|
default: d(() => [
|
|
332
|
-
p(
|
|
332
|
+
p(f(y.value), 1)
|
|
333
333
|
]),
|
|
334
334
|
_: 1
|
|
335
335
|
}, 16, ["icon", "variant"])
|
|
336
336
|
]),
|
|
337
337
|
_: 1
|
|
338
|
-
}, 16, ["body", "refetch", "data", "loading"])) : t.addBtn.to ? (a(),
|
|
338
|
+
}, 16, ["body", "refetch", "data", "loading"])) : t.addBtn.to ? (a(), c(Y, {
|
|
339
339
|
key: 1,
|
|
340
340
|
to: t.addBtn.to,
|
|
341
341
|
class: "inline-flex w-full sm:w-auto"
|
|
342
342
|
}, {
|
|
343
343
|
default: d(() => [
|
|
344
|
-
u(
|
|
344
|
+
u(h, v({
|
|
345
345
|
class: "w-full",
|
|
346
346
|
icon: t.addBtn.icon || "fluent:add-16-filled",
|
|
347
347
|
variant: t.addBtn.variant || "primary"
|
|
348
348
|
}, t.addBtn.buttonProps), {
|
|
349
349
|
default: d(() => [
|
|
350
|
-
p(
|
|
350
|
+
p(f(y.value), 1)
|
|
351
351
|
]),
|
|
352
352
|
_: 1
|
|
353
353
|
}, 16, ["icon", "variant"])
|
|
354
354
|
]),
|
|
355
355
|
_: 1
|
|
356
|
-
}, 8, ["to"])) : t.addBtn.href ? (a(),
|
|
356
|
+
}, 8, ["to"])) : t.addBtn.href ? (a(), s("a", {
|
|
357
357
|
key: 2,
|
|
358
358
|
href: t.addBtn.href,
|
|
359
359
|
target: t.addBtn.target,
|
|
360
360
|
class: "inline-flex w-full sm:w-auto"
|
|
361
361
|
}, [
|
|
362
|
-
u(
|
|
362
|
+
u(h, v({
|
|
363
363
|
class: "w-full",
|
|
364
364
|
icon: t.addBtn.icon || "fluent:add-16-filled",
|
|
365
365
|
variant: t.addBtn.variant || "primary"
|
|
366
366
|
}, t.addBtn.buttonProps), {
|
|
367
367
|
default: d(() => [
|
|
368
|
-
p(
|
|
368
|
+
p(f(y.value), 1)
|
|
369
369
|
]),
|
|
370
370
|
_: 1
|
|
371
371
|
}, 16, ["icon", "variant"])
|
|
372
|
-
], 8, Ye)) : (a(),
|
|
372
|
+
], 8, Ye)) : (a(), c(h, v({
|
|
373
373
|
key: 3,
|
|
374
374
|
class: "w-full sm:w-auto",
|
|
375
375
|
icon: t.addBtn.icon || "fluent:add-16-filled",
|
|
@@ -378,25 +378,14 @@ const Le = { class: "flex flex-col w-full space-y-8" }, Me = { class: "flex flex
|
|
|
378
378
|
onClick: l[5] || (l[5] = (i) => t.addBtn.onClick ? t.addBtn.onClick() : e.$emit("add"))
|
|
379
379
|
}), {
|
|
380
380
|
default: d(() => [
|
|
381
|
-
p(
|
|
381
|
+
p(f(y.value), 1)
|
|
382
382
|
]),
|
|
383
383
|
_: 1
|
|
384
384
|
}, 16, ["icon", "variant"]))
|
|
385
|
-
], 64)) : (
|
|
386
|
-
|
|
387
|
-
class: "w-full sm:w-auto",
|
|
388
|
-
icon: "fluent:add-16-filled",
|
|
389
|
-
variant: "primary",
|
|
390
|
-
onClick: l[6] || (l[6] = (i) => e.$emit("add"))
|
|
391
|
-
}, {
|
|
392
|
-
default: d(() => [
|
|
393
|
-
p(m(y.value), 1)
|
|
394
|
-
]),
|
|
395
|
-
_: 1
|
|
396
|
-
}))
|
|
397
|
-
], 64)) : f("", !0)
|
|
385
|
+
], 64)) : m("", !0)
|
|
386
|
+
], 64)) : m("", !0)
|
|
398
387
|
]),
|
|
399
|
-
W.value ? (a(),
|
|
388
|
+
W.value ? (a(), c(Ee, {
|
|
400
389
|
key: 0,
|
|
401
390
|
closeOnSelect: "",
|
|
402
391
|
position: "bottom-end",
|
|
@@ -404,24 +393,25 @@ const Le = { class: "flex flex-col w-full space-y-8" }, Me = { class: "flex flex
|
|
|
404
393
|
onOnSelect: ye
|
|
405
394
|
}, {
|
|
406
395
|
trigger: d(() => [
|
|
407
|
-
u(
|
|
396
|
+
u(h, {
|
|
408
397
|
variant: "outline",
|
|
409
398
|
icon: "lucide:more-vertical",
|
|
410
399
|
class: "px-2!",
|
|
411
|
-
title:
|
|
400
|
+
title: b(r)("vlite.screen.moreOptions") !== "vlite.screen.moreOptions" ? b(r)("vlite.screen.moreOptions") : "More Options"
|
|
412
401
|
}, null, 8, ["title"])
|
|
413
402
|
]),
|
|
414
403
|
_: 1
|
|
415
|
-
}, 8, ["options"])) :
|
|
416
|
-
|
|
404
|
+
}, 8, ["options"])) : m("", !0),
|
|
405
|
+
w(e.$slots, "after-add")
|
|
417
406
|
])
|
|
418
407
|
])
|
|
419
408
|
], 2)),
|
|
409
|
+
w(e.$slots, "sub-header"),
|
|
420
410
|
g("div", {
|
|
421
|
-
class: O(["flex-1 w-full relative min-h-[
|
|
411
|
+
class: O(["flex-1 w-full relative min-h-[250px]", t.containerClass])
|
|
422
412
|
}, [
|
|
423
|
-
!oe.value && !t.loading ?
|
|
424
|
-
u(
|
|
413
|
+
!oe.value && !t.loading ? w(e.$slots, "empty", { key: 0 }, () => [
|
|
414
|
+
u(b(je), {
|
|
425
415
|
title: t.emptyTitle,
|
|
426
416
|
titleI18n: t.emptyTitleI18n,
|
|
427
417
|
description: t.emptyDescription,
|
|
@@ -429,100 +419,100 @@ const Le = { class: "flex flex-col w-full space-y-8" }, Me = { class: "flex flex
|
|
|
429
419
|
icon: t.emptyIcon
|
|
430
420
|
}, {
|
|
431
421
|
action: d(() => [
|
|
432
|
-
t.addComponent ? (a(),
|
|
433
|
-
t.addBtn ? (a(),
|
|
434
|
-
t.addBtn.modal ? (a(),
|
|
422
|
+
t.addComponent ? (a(), c(z(t.addComponent), { key: 0 })) : t.canAdd ? (a(), s(C, { key: 1 }, [
|
|
423
|
+
t.addBtn ? (a(), s(C, { key: 0 }, [
|
|
424
|
+
t.addBtn.modal ? (a(), c(H, v({
|
|
435
425
|
key: 0,
|
|
436
426
|
body: t.addBtn.modal
|
|
437
427
|
}, t.addBtn.modalProps), {
|
|
438
428
|
trigger: d(() => [
|
|
439
|
-
u(
|
|
429
|
+
u(h, v({
|
|
440
430
|
icon: t.addBtn.icon || "fluent:add-16-filled",
|
|
441
431
|
variant: t.addBtn.variant || "primary",
|
|
442
432
|
rounded: "full",
|
|
443
433
|
class: "px-6!"
|
|
444
434
|
}, t.addBtn.buttonProps), {
|
|
445
435
|
default: d(() => [
|
|
446
|
-
p(
|
|
436
|
+
p(f(y.value), 1)
|
|
447
437
|
]),
|
|
448
438
|
_: 1
|
|
449
439
|
}, 16, ["icon", "variant"])
|
|
450
440
|
]),
|
|
451
441
|
_: 1
|
|
452
|
-
}, 16, ["body"])) : t.addBtn.to ? (a(),
|
|
442
|
+
}, 16, ["body"])) : t.addBtn.to ? (a(), c(Y, {
|
|
453
443
|
key: 1,
|
|
454
444
|
to: t.addBtn.to,
|
|
455
445
|
class: "inline-flex"
|
|
456
446
|
}, {
|
|
457
447
|
default: d(() => [
|
|
458
|
-
u(
|
|
448
|
+
u(h, v({
|
|
459
449
|
icon: t.addBtn.icon || "fluent:add-16-filled",
|
|
460
450
|
variant: t.addBtn.variant || "outline"
|
|
461
451
|
}, t.addBtn.buttonProps), {
|
|
462
452
|
default: d(() => [
|
|
463
|
-
p(
|
|
453
|
+
p(f(y.value), 1)
|
|
464
454
|
]),
|
|
465
455
|
_: 1
|
|
466
456
|
}, 16, ["icon", "variant"])
|
|
467
457
|
]),
|
|
468
458
|
_: 1
|
|
469
|
-
}, 8, ["to"])) : t.addBtn.href ? (a(),
|
|
459
|
+
}, 8, ["to"])) : t.addBtn.href ? (a(), s("a", {
|
|
470
460
|
key: 2,
|
|
471
461
|
href: t.addBtn.href,
|
|
472
462
|
target: t.addBtn.target,
|
|
473
463
|
class: "inline-flex"
|
|
474
464
|
}, [
|
|
475
|
-
u(
|
|
465
|
+
u(h, v({
|
|
476
466
|
icon: t.addBtn.icon || "lucide:plus",
|
|
477
467
|
variant: t.addBtn.variant || "outline"
|
|
478
468
|
}, t.addBtn.buttonProps), {
|
|
479
469
|
default: d(() => [
|
|
480
|
-
p(
|
|
470
|
+
p(f(y.value), 1)
|
|
481
471
|
]),
|
|
482
472
|
_: 1
|
|
483
473
|
}, 16, ["icon", "variant"])
|
|
484
|
-
], 8, Ze)) : (a(),
|
|
474
|
+
], 8, Ze)) : (a(), c(h, v({
|
|
485
475
|
key: 3,
|
|
486
476
|
icon: t.addBtn.icon || "lucide:plus",
|
|
487
477
|
variant: t.addBtn.variant || "outline"
|
|
488
478
|
}, t.addBtn.buttonProps, {
|
|
489
|
-
onClick: l[
|
|
479
|
+
onClick: l[6] || (l[6] = (i) => t.addBtn.onClick ? t.addBtn.onClick() : e.$emit("add"))
|
|
490
480
|
}), {
|
|
491
481
|
default: d(() => [
|
|
492
|
-
p(
|
|
482
|
+
p(f(y.value), 1)
|
|
493
483
|
]),
|
|
494
484
|
_: 1
|
|
495
485
|
}, 16, ["icon", "variant"]))
|
|
496
|
-
], 64)) : (a(),
|
|
486
|
+
], 64)) : (a(), c(h, {
|
|
497
487
|
key: 1,
|
|
498
488
|
icon: "lucide:plus",
|
|
499
489
|
variant: "outline",
|
|
500
|
-
onClick: l[
|
|
490
|
+
onClick: l[7] || (l[7] = (i) => e.$emit("add"))
|
|
501
491
|
}, {
|
|
502
492
|
default: d(() => [
|
|
503
|
-
p(
|
|
493
|
+
p(f(y.value), 1)
|
|
504
494
|
]),
|
|
505
495
|
_: 1
|
|
506
496
|
}))
|
|
507
|
-
], 64)) :
|
|
497
|
+
], 64)) : m("", !0)
|
|
508
498
|
]),
|
|
509
499
|
_: 1
|
|
510
500
|
}, 8, ["title", "titleI18n", "description", "descriptionI18n", "icon"])
|
|
511
|
-
]) : (a(),
|
|
512
|
-
K.value ? (a(),
|
|
501
|
+
]) : (a(), s(C, { key: 1 }, [
|
|
502
|
+
K.value ? (a(), c(z(K.value), {
|
|
513
503
|
key: 0,
|
|
514
504
|
data: t.data,
|
|
515
505
|
loading: t.loading,
|
|
516
506
|
refetch: t.refetch,
|
|
517
|
-
selectedRows:
|
|
518
|
-
"onUpdate:selectedRows": l[
|
|
507
|
+
selectedRows: B.value,
|
|
508
|
+
"onUpdate:selectedRows": l[8] || (l[8] = (i) => B.value = i),
|
|
519
509
|
delete: N,
|
|
520
510
|
onDelete: ne
|
|
521
|
-
}, null, 40, ["data", "loading", "refetch", "selectedRows"])) : (a(),
|
|
511
|
+
}, null, 40, ["data", "loading", "refetch", "selectedRows"])) : (a(), s("div", _e, f(he.value), 1))
|
|
522
512
|
], 64))
|
|
523
513
|
], 2),
|
|
524
|
-
t.pagination && t.pageInfo && t.pageInfo.totalPages > 1 ? (a(),
|
|
525
|
-
u(
|
|
514
|
+
t.pagination && t.pageInfo && t.pageInfo.totalPages > 1 ? (a(), s("div", et, [
|
|
515
|
+
u(b(Ve), v({
|
|
526
516
|
"current-page": t.pageInfo.currentPage,
|
|
527
517
|
"total-pages": t.pageInfo.totalPages,
|
|
528
518
|
"total-items": t.pageInfo.totalItems
|
|
@@ -530,45 +520,45 @@ const Le = { class: "flex flex-col w-full space-y-8" }, Me = { class: "flex flex
|
|
|
530
520
|
onChange: ae,
|
|
531
521
|
"onUpdate:itemsPerPage": le
|
|
532
522
|
}), null, 16, ["current-page", "total-pages", "total-items"])
|
|
533
|
-
])) :
|
|
523
|
+
])) : m("", !0),
|
|
534
524
|
u(Te, {
|
|
535
525
|
show: $.value,
|
|
536
|
-
"onUpdate:show": l[
|
|
526
|
+
"onUpdate:show": l[9] || (l[9] = (i) => $.value = i),
|
|
537
527
|
title: ue.value,
|
|
538
528
|
description: me.value,
|
|
539
529
|
"confirm-text": fe.value,
|
|
540
530
|
"cancel-text": ve.value,
|
|
541
531
|
variant: "danger",
|
|
542
532
|
onConfirm: te,
|
|
543
|
-
onCancel: l[
|
|
533
|
+
onCancel: l[10] || (l[10] = (i) => $.value = !1)
|
|
544
534
|
}, null, 8, ["show", "title", "description", "confirm-text", "cancel-text"]),
|
|
545
|
-
A.value ? (a(),
|
|
535
|
+
A.value ? (a(), c(H, {
|
|
546
536
|
key: 3,
|
|
547
537
|
show: A.value,
|
|
548
|
-
"onUpdate:show": l[
|
|
538
|
+
"onUpdate:show": l[11] || (l[11] = (i) => A.value = i),
|
|
549
539
|
title: L.value,
|
|
550
540
|
"max-width": "sm:max-w-[400px]"
|
|
551
541
|
}, {
|
|
552
542
|
default: d(({ close: i }) => [
|
|
553
|
-
u(Oe,
|
|
543
|
+
u(Oe, v({
|
|
554
544
|
ref_key: "exportDataRef",
|
|
555
545
|
ref: M,
|
|
556
546
|
data: t.data || [],
|
|
557
547
|
fields: pe.value,
|
|
558
548
|
mode: ke.value,
|
|
559
|
-
"on-export":
|
|
549
|
+
"on-export": De
|
|
560
550
|
}, typeof t.exportProps == "object" ? t.exportProps : {}, {
|
|
561
551
|
title: L.value,
|
|
562
552
|
class: "hidden!"
|
|
563
553
|
}), null, 16, ["data", "fields", "mode", "title"]),
|
|
564
554
|
g("div", tt, [
|
|
565
|
-
g("h6", nt,
|
|
555
|
+
g("h6", nt, f(b(r)("vlite.exportData.selectFormat") !== "vlite.exportData.selectFormat" ? b(r)("vlite.exportData.selectFormat") : "Select Export Format"), 1),
|
|
566
556
|
g("div", at, [
|
|
567
|
-
(a(!0),
|
|
557
|
+
(a(!0), s(C, null, Ie(M.value?.availableFormats || [
|
|
568
558
|
{ value: "excel", label: "Excel (.xlsx)", icon: "lucide:file-spreadsheet" },
|
|
569
559
|
{ value: "csv", label: "CSV (.csv)", icon: "lucide:file-text" },
|
|
570
560
|
{ value: "json", label: "JSON (.json)", icon: "lucide:file-json" }
|
|
571
|
-
], (E) => (a(),
|
|
561
|
+
], (E) => (a(), c(h, {
|
|
572
562
|
key: E.value,
|
|
573
563
|
variant: "outline",
|
|
574
564
|
class: "w-full flex items-center justify-start gap-3 h-12",
|
|
@@ -579,7 +569,7 @@ const Le = { class: "flex flex-col w-full space-y-8" }, Me = { class: "flex flex
|
|
|
579
569
|
icon: E.icon,
|
|
580
570
|
class: "text-muted-foreground h-5 w-5"
|
|
581
571
|
}, null, 8, ["icon"]),
|
|
582
|
-
g("span", null,
|
|
572
|
+
g("span", null, f(E.label), 1)
|
|
583
573
|
]),
|
|
584
574
|
_: 2
|
|
585
575
|
}, 1032, ["onClick"]))), 128))
|
|
@@ -587,11 +577,11 @@ const Le = { class: "flex flex-col w-full space-y-8" }, Me = { class: "flex flex
|
|
|
587
577
|
])
|
|
588
578
|
]),
|
|
589
579
|
_: 1
|
|
590
|
-
}, 8, ["show", "title"])) :
|
|
591
|
-
W.value ? (a(),
|
|
592
|
-
u(Re,
|
|
580
|
+
}, 8, ["show", "title"])) : m("", !0),
|
|
581
|
+
W.value ? (a(), s("div", lt, [
|
|
582
|
+
u(Re, v({
|
|
593
583
|
show: U.value,
|
|
594
|
-
"onUpdate:show": l[
|
|
584
|
+
"onUpdate:show": l[12] || (l[12] = (i) => U.value = i),
|
|
595
585
|
ref_key: "importDataRef",
|
|
596
586
|
ref: xe,
|
|
597
587
|
fields: we.value,
|
|
@@ -601,7 +591,7 @@ const Le = { class: "flex flex-col w-full space-y-8" }, Me = { class: "flex flex
|
|
|
601
591
|
title: X.value,
|
|
602
592
|
class: "hidden!"
|
|
603
593
|
}), null, 16, ["show", "fields", "title"])
|
|
604
|
-
])) :
|
|
594
|
+
])) : m("", !0)
|
|
605
595
|
]);
|
|
606
596
|
};
|
|
607
597
|
}
|
package/package.json
CHANGED
package/style.css
CHANGED
|
@@ -894,5 +894,5 @@ textarea::-webkit-scrollbar-thumb {
|
|
|
894
894
|
}
|
|
895
895
|
|
|
896
896
|
/* --- Vite Generated CSS --- */
|
|
897
|
-
input[data-v-e7171c4f]::-webkit-outer-spin-button,input[data-v-e7171c4f]::-webkit-inner-spin-button{-webkit-appearance:none;appearance:none;margin:0}input[type=number][data-v-e7171c4f]{-moz-appearance:textfield;appearance:textfield}@keyframes onAutoFillStart{0%{opacity:1}to{opacity:1}}@keyframes onAutoFillCancel{0%{opacity:1}to{opacity:1}}input.autofill-detect:-webkit-autofill{animation-name:onAutoFillStart;animation-duration:1ms;animation-fill-mode:both}input.autofill-detect:not(:-webkit-autofill){animation-name:onAutoFillCancel;animation-duration:1ms;animation-fill-mode:both}.blink-bg[data-v-c26acbd9]{animation:blink-animation-c26acbd9 1s infinite}@keyframes blink-animation-c26acbd9{0%{background-color:inherit}15%{background-color:var(--color-gray-250)}35%{background-color:inherit}75%{background-color:var(--color-gray-250)}to{background-color:inherit}}.IroBox{border-radius:8px!important}.custom-fields-table[data-v-c9831df1] .form-field-item{margin-bottom:0!important;height:100%}.custom-fields-table[data-v-c9831df1] input,.custom-fields-table[data-v-c9831df1] textarea{padding-left:1em;padding-right:.5em}.custom-fields-table[data-v-c9831df1] input,.custom-fields-table[data-v-c9831df1] textarea,.custom-fields-table[data-v-c9831df1] select,.custom-fields-table[data-v-c9831df1] .input-wrapper,.custom-fields-table[data-v-c9831df1] .tooltip-trigger button{border:none!important;background:transparent!important;box-shadow:none!important;border-radius:0!important;height:100%!important;min-height:40px}.custom-fields-table[data-v-c9831df1] .tooltip-trigger button{justify-content:space-between!important}.custom-fields-table[data-v-c9831df1] input:focus,.custom-fields-table[data-v-c9831df1] textarea:focus,.custom-fields-table[data-v-c9831df1] select:focus,.custom-fields-table[data-v-c9831df1] .input-wrapper:focus-within{background-color:hsla(var(--primary) / .03)!important;box-shadow:inset 0 0 0 2px hsla(var(--primary) / .1)!important}.custom-fields-table[data-v-c9831df1] .w-full{width:100%;height:100%}.list-enter-active[data-v-c9831df1]{transition:all .15s cubic-bezier(.16,1,.3,1)}.list-enter-from[data-v-c9831df1]{opacity:0;transform:translateY(-5px)}.form-field-item[data-v-0fe8a23f]{display:flex;flex-direction:column}.form-field-item[data-v-0fe8a23f]:has([role=switch]),.form-field-item[data-v-0fe8a23f]:has([role=checkbox]){flex-direction:row;align-items:center;justify-content:flex-start}.form-container[data-v-78f87e2c]{width:100%}.custom-scrollbar[data-v-3849c10a]::-webkit-scrollbar{width:0px}.custom-scrollbar[data-v-3849c10a]::-webkit-scrollbar-track{background:transparent}.custom-scrollbar[data-v-3849c10a]::-webkit-scrollbar-thumb{background-color:var(--color-border);border-radius:10px}.custom-scrollbar-x[data-v-11bc76c9]::-webkit-scrollbar{height:8px}.custom-scrollbar-x[data-v-11bc76c9]::-webkit-scrollbar-track{background:transparent}.custom-scrollbar-x[data-v-11bc76c9]::-webkit-scrollbar-thumb{background-color:var(--color-border);border-radius:10px}.navbar-tabs-no-scrollbar{scrollbar-width:none;-ms-overflow-style:none}.navbar-tabs-no-scrollbar::-webkit-scrollbar{display:none}.fade-x-enter-active,.fade-x-leave-active{transition:opacity .15s ease}.fade-x-enter-from,.fade-x-leave-to{opacity:0}.breadcrumb-item[data-v-0b2efcbc]{display:inline-flex;align-items:center}.breadcrumb-link[data-v-0b2efcbc]{display:inline-flex;align-items:center;gap:.35em;color:var(--color-muted-foreground);text-decoration:none;transition:color .15s ease,background-color .15s ease;border-radius:var(--radius-sm)}.breadcrumb-link[data-v-0b2efcbc]:not(.current):not(.disabled):hover{color:var(--color-foreground)}.breadcrumb-link.current[data-v-0b2efcbc]{color:var(--color-foreground);font-weight:600;cursor:default}.breadcrumb-link.disabled[data-v-0b2efcbc]{opacity:.45;cursor:not-allowed;pointer-events:none}.breadcrumb-icon[data-v-0b2efcbc]{flex-shrink:0}.breadcrumb-list[data-v-ae18a95c]{display:flex;flex-wrap:wrap;align-items:center;list-style:none;margin:0;padding:0;gap:.45em}.breadcrumb--sm[data-v-ae18a95c]{font-size:var(--text--fs-2)}.breadcrumb--md[data-v-ae18a95c]{font-size:var(--text-fs-0.5, 1em)}.breadcrumb--lg[data-v-ae18a95c]{font-size:var(--text-fs-2)}.breadcrumb-separator[data-v-ae18a95c]{display:inline-flex;align-items:center;color:var(--color-gray-400);-webkit-user-select:none;user-select:none;font-size:.9em;line-height:1;padding:0 .1em}.breadcrumb-ellipsis[data-v-ae18a95c]{display:inline-flex;align-items:center}.breadcrumb-ellipsis-btn[data-v-ae18a95c]{display:inline-flex;align-items:center;justify-content:center;width:1.6em;height:1.6em;border-radius:var(--radius-sm);border:1px solid var(--color-border);background:transparent;color:var(--color-muted-foreground);cursor:pointer;font-size:.9em;line-height:1;letter-spacing:.05em;transition:all .15s ease}.breadcrumb-ellipsis-btn[data-v-ae18a95c]:hover{background:var(--color-accent);color:var(--color-foreground);border-color:var(--color-gray-350)}.breadcrumb--contained[data-v-ae18a95c]{background:var(--color-secondary);border:1px solid var(--color-border);border-radius:var(--radius-lg);padding:.45em 1em}.breadcrumb--pills[data-v-ae18a95c] .breadcrumb-link{padding:.2em .7em;border-radius:9999px;background:var(--color-secondary);border:1px solid var(--color-border)}.breadcrumb--pills[data-v-ae18a95c] .breadcrumb-link:not(.current):not(.disabled):hover{background:var(--color-accent);border-color:var(--color-gray-350)}.breadcrumb--pills[data-v-ae18a95c] .breadcrumb-link.current{background:var(--color-primary);color:var(--color-primary-foreground);border-color:var(--color-primary)}.breadcrumb--arrow .breadcrumb-list[data-v-ae18a95c]{gap:0}.breadcrumb--arrow[data-v-ae18a95c] .breadcrumb-link{padding:.35em .9em .35em 1.4em;background:var(--color-secondary);clip-path:polygon(0 0,calc(100% - .6em) 0,100% 50%,calc(100% - .6em) 100%,0 100%,.6em 50%);border:none;margin-left:-.3em}.breadcrumb--arrow[data-v-ae18a95c] .breadcrumb-item:first-child .breadcrumb-link{padding-left:.9em;clip-path:polygon(0 0,calc(100% - .6em) 0,100% 50%,calc(100% - .6em) 100%,0 100%);border-radius:var(--radius-sm) 0 0 var(--radius-sm);margin-left:0}.breadcrumb--arrow[data-v-ae18a95c] .breadcrumb-link:not(.current):not(.disabled):hover{background:var(--color-accent)}.breadcrumb--arrow[data-v-ae18a95c] .breadcrumb-link.current{background:var(--color-primary);color:var(--color-primary-foreground)}.breadcrumb--arrow .breadcrumb-separator[data-v-ae18a95c]{display:none}.heatmap-container[data-v-00476f00]{width:100%;height:100%;display:flex;flex-direction:column;min-height:0}.heatmap-wrapper[data-v-00476f00]{width:100%;height:100%;overflow:auto;flex:1;min-height:0;display:flex;align-items:center;justify-content:center;padding:16px;box-sizing:border-box;position:relative}.heatmap-grid[data-v-00476f00]{width:fit-content;height:fit-content;transition:all .2s ease-in-out}.heatmap-cell[data-v-00476f00]{aspect-ratio:1 / 1;border-radius:2px;transition:all .15s ease-in-out;border:1px solid transparent;box-sizing:border-box}.heatmap-cell-interactive[data-v-00476f00]{cursor:pointer}.heatmap-cell-interactive[data-v-00476f00]:hover{transform:scale(1.1);border-color:var(--border);box-shadow:0 4px 6px -1px #0000001a,0 2px 4px -2px #0000001a;z-index:10;position:relative}.heatmap-cell-empty[data-v-00476f00]{opacity:.6}.heatmap-cell-hovered[data-v-00476f00]{outline:2px solid var(--primary);outline-offset:1px}.heatmap-cell-label[data-v-00476f00]{font-size:8px;font-weight:500;color:var(--foreground);opacity:.8;display:flex;align-items:center;justify-content:center;height:100%;width:100%;pointer-events:none}.heatmap-legend[data-v-00476f00]{display:flex;align-items:center;gap:.5rem;margin-top:1rem;font-size:.75rem;color:var(--muted-foreground);flex-shrink:0}.heatmap-legend-label[data-v-00476f00]{font-weight:500}.heatmap-legend-colors[data-v-00476f00]{display:flex;gap:.125rem}.heatmap-legend-item[data-v-00476f00]{width:.75rem;height:.75rem;border-radius:.375rem;border:1px solid var(--border)}@media(max-width:640px){.heatmap-wrapper[data-v-00476f00]{padding:12px}.heatmap-cell[data-v-00476f00]{border-radius:2px}.heatmap-cell-label[data-v-00476f00]{font-size:7px}}@media(min-width:641px)and (max-width:1023px){.heatmap-wrapper[data-v-00476f00]{padding:14px}.heatmap-cell[data-v-00476f00]{border-radius:2px}}@media(min-width:1024px){.heatmap-wrapper[data-v-00476f00]{padding:16px}.heatmap-cell[data-v-00476f00]{border-radius:3px}}.masonry-item[data-v-c29d0159]{content-visibility:auto;contain-intrinsic-size:1px 200px}.carousel-wrapper[data-v-655a78c8]{width:100%;position:relative}.accordion-enter-active[data-v-aa189e08],.accordion-leave-active[data-v-aa189e08]{transition:height .3s ease-in-out}.sidebar-manu-item .tooltip-trigger{width:100%!important}.sidebar-menu-tooltip{margin-left:4px!important}[dir=rtl] .sidebar-menu-tooltip{margin-right:4px!important}.bg-stripe[data-v-454a1505]{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:1rem 1rem}.animate-progress-stripe[data-v-454a1505]{animation:progress-stripe-454a1505 1s linear infinite}@keyframes progress-stripe-454a1505{0%{background-position:1rem 0}to{background-position:0 0}}.animate-progress-indeterminate[data-v-454a1505]{animation:progress-indeterminate-454a1505 1.5s infinite cubic-bezier(.65,.815,.735,.395)}@keyframes progress-indeterminate-454a1505{0%{transform:translate(-100%) scaleX(.2)}50%{transform:translate(0) scaleX(.5)}to{transform:translate(100%) scaleX(.2)}}.permission-matrix-wrapper[data-v-c5641678]{max-height:70vh}.permission-matrix-wrapper[data-v-c5641678]::-webkit-scrollbar{width:6px;height:6px}.permission-matrix-wrapper[data-v-c5641678]::-webkit-scrollbar-track{background:transparent}.permission-matrix-wrapper[data-v-c5641678]::-webkit-scrollbar-thumb{background:var(--color-gray-350);border-radius:3px}.permission-matrix-wrapper[data-v-c5641678]::-webkit-scrollbar-thumb:hover{background:var(--color-gray-400)}.button-group[data-v-ba735fac] button{align-self:stretch;height:auto!important;min-height:unset!important;min-width:unset!important;width:auto!important}.button-group[data-v-ba735fac]:not(.vertical-group) button{aspect-ratio:unset}.attached-group[data-v-ba735fac] button{position:relative;--radius: .375rem}.attached-group[data-v-ba735fac] button:focus-visible,.attached-group[data-v-ba735fac] button:hover{z-index:10}.attached-group[data-v-ba735fac]:not(.vertical-group) button:not(:first-child){margin-left:-1px}.attached-group[data-v-ba735fac]:not(.vertical-group) button:first-child{border-top-left-radius:var(--radius);border-bottom-left-radius:var(--radius);border-top-right-radius:0;border-bottom-right-radius:0}.attached-group[data-v-ba735fac]:not(.vertical-group) button:not(:first-child):not(:last-child){border-radius:0}.attached-group[data-v-ba735fac]:not(.vertical-group) button:last-child{border-top-right-radius:var(--radius);border-bottom-right-radius:var(--radius);border-top-left-radius:0;border-bottom-left-radius:0}.vertical-group[data-v-ba735fac] button:not(:first-child){margin-top:-1px}.vertical-group[data-v-ba735fac] button:first-child{border-top-left-radius:var(--radius);border-top-right-radius:var(--radius);border-bottom-left-radius:0;border-bottom-right-radius:0}.vertical-group[data-v-ba735fac] button:not(:first-child):not(:last-child){border-radius:0}.vertical-group[data-v-ba735fac] button:last-child{border-bottom-left-radius:var(--radius);border-bottom-right-radius:var(--radius);border-top-left-radius:0;border-top-right-radius:0}.attached-group[data-v-ba735fac]:not(.vertical-group) button:not(:first-child):not(.border):before{content:"";position:absolute;left:0;top:0;bottom:0;width:1px;background-color:currentColor;opacity:.15;z-index:5;pointer-events:none;height:100%}.vertical-group[data-v-ba735fac] button:not(:first-child):not(.border):before{content:"";position:absolute;top:0;left:0;right:0;height:1px;width:100%;background-color:currentColor;opacity:.15;z-index:5;pointer-events:none}.first-toast-enter-active[data-v-dc3a3b49]{animation:first-toast-in-dc3a3b49 .45s cubic-bezier(.23,1,.32,1) forwards}.first-toast-leave-active[data-v-dc3a3b49]{transition:all .25s ease-in}.first-toast-leave-to[data-v-dc3a3b49]{opacity:0;transform:scale(.98)}@keyframes first-toast-in-dc3a3b49{0%{opacity:var(--entrance-opacity, .6);transform:translateY(var(--entrance-offset, 25px)) scale(.98)}to{opacity:1;transform:translateY(0) scale(1)}}.stack-toast-enter-active[data-v-dc3a3b49],.stack-toast-leave-active[data-v-dc3a3b49]{transition:all .3s cubic-bezier(.16,1,.3,1)}.stack-toast-enter-from[data-v-dc3a3b49]{opacity:0;transform:scale(.95) translateY(10px)}.stack-toast-leave-to[data-v-dc3a3b49]{opacity:0;transform:scale(.95)}.stack-toast-move[data-v-dc3a3b49]{transition:transform .4s cubic-bezier(.16,1,.3,1)}.command-palette-content[data-v-e919f56b] ::-webkit-scrollbar{width:4px}.command-palette-content[data-v-e919f56b] ::-webkit-scrollbar-track{background:transparent}.command-palette-content[data-v-e919f56b] ::-webkit-scrollbar-thumb{background:var(--border);border-radius:9999px}
|
|
897
|
+
input[data-v-e7171c4f]::-webkit-outer-spin-button,input[data-v-e7171c4f]::-webkit-inner-spin-button{-webkit-appearance:none;appearance:none;margin:0}input[type=number][data-v-e7171c4f]{-moz-appearance:textfield;appearance:textfield}@keyframes onAutoFillStart{0%{opacity:1}to{opacity:1}}@keyframes onAutoFillCancel{0%{opacity:1}to{opacity:1}}input.autofill-detect:-webkit-autofill{animation-name:onAutoFillStart;animation-duration:1ms;animation-fill-mode:both}input.autofill-detect:not(:-webkit-autofill){animation-name:onAutoFillCancel;animation-duration:1ms;animation-fill-mode:both}.blink-bg[data-v-c26acbd9]{animation:blink-animation-c26acbd9 1s infinite}@keyframes blink-animation-c26acbd9{0%{background-color:inherit}15%{background-color:var(--color-gray-250)}35%{background-color:inherit}75%{background-color:var(--color-gray-250)}to{background-color:inherit}}.IroBox{border-radius:8px!important}.custom-fields-table[data-v-c9831df1] .form-field-item{margin-bottom:0!important;height:100%}.custom-fields-table[data-v-c9831df1] input,.custom-fields-table[data-v-c9831df1] textarea{padding-left:1em;padding-right:.5em}.custom-fields-table[data-v-c9831df1] input,.custom-fields-table[data-v-c9831df1] textarea,.custom-fields-table[data-v-c9831df1] select,.custom-fields-table[data-v-c9831df1] .input-wrapper,.custom-fields-table[data-v-c9831df1] .tooltip-trigger button{border:none!important;background:transparent!important;box-shadow:none!important;border-radius:0!important;height:100%!important;min-height:40px}.custom-fields-table[data-v-c9831df1] .tooltip-trigger button{justify-content:space-between!important}.custom-fields-table[data-v-c9831df1] input:focus,.custom-fields-table[data-v-c9831df1] textarea:focus,.custom-fields-table[data-v-c9831df1] select:focus,.custom-fields-table[data-v-c9831df1] .input-wrapper:focus-within{background-color:hsla(var(--primary) / .03)!important;box-shadow:inset 0 0 0 2px hsla(var(--primary) / .1)!important}.custom-fields-table[data-v-c9831df1] .w-full{width:100%;height:100%}.list-enter-active[data-v-c9831df1]{transition:all .15s cubic-bezier(.16,1,.3,1)}.list-enter-from[data-v-c9831df1]{opacity:0;transform:translateY(-5px)}.form-field-item[data-v-0fe8a23f]{display:flex;flex-direction:column}.form-field-item[data-v-0fe8a23f]:has([role=switch]),.form-field-item[data-v-0fe8a23f]:has([role=checkbox]){flex-direction:row;align-items:center;justify-content:flex-start}.form-container[data-v-78f87e2c]{width:100%}.custom-scrollbar[data-v-3849c10a]::-webkit-scrollbar{width:0px}.custom-scrollbar[data-v-3849c10a]::-webkit-scrollbar-track{background:transparent}.custom-scrollbar[data-v-3849c10a]::-webkit-scrollbar-thumb{background-color:var(--color-border);border-radius:10px}.custom-scrollbar-x[data-v-11bc76c9]::-webkit-scrollbar{height:8px}.custom-scrollbar-x[data-v-11bc76c9]::-webkit-scrollbar-track{background:transparent}.custom-scrollbar-x[data-v-11bc76c9]::-webkit-scrollbar-thumb{background-color:var(--color-border);border-radius:10px}.navbar-tabs-no-scrollbar{scrollbar-width:none;-ms-overflow-style:none}.navbar-tabs-no-scrollbar::-webkit-scrollbar{display:none}.fade-x-enter-active,.fade-x-leave-active{transition:opacity .15s ease}.fade-x-enter-from,.fade-x-leave-to{opacity:0}.breadcrumb-item[data-v-5c9662c5]{display:inline-flex;align-items:center}.breadcrumb-link[data-v-5c9662c5]{display:inline-flex;align-items:center;gap:.35em;color:var(--color-muted-foreground);text-decoration:none;transition:color .15s ease,background-color .15s ease;border-radius:var(--radius-sm)}.breadcrumb-link[data-v-5c9662c5]:not(.current):not(.disabled):hover{color:var(--color-foreground)}.breadcrumb-link.current[data-v-5c9662c5]{color:var(--color-foreground);font-weight:600;cursor:default}.breadcrumb-link.disabled[data-v-5c9662c5]{opacity:.45;cursor:not-allowed;pointer-events:none}.breadcrumb-icon[data-v-5c9662c5]{flex-shrink:0}.breadcrumb-list[data-v-12cf2491]{display:flex;flex-wrap:wrap;align-items:center;list-style:none;margin:0;padding:0;gap:.45em}.breadcrumb--sm[data-v-12cf2491]{font-size:var(--text--fs-2)}.breadcrumb--md[data-v-12cf2491]{font-size:var(--text-fs-0.5, 1em)}.breadcrumb--lg[data-v-12cf2491]{font-size:var(--text-fs-2)}.breadcrumb-separator[data-v-12cf2491]{display:inline-flex;align-items:center;color:var(--color-gray-500);-webkit-user-select:none;user-select:none;font-size:.9em;line-height:1;padding:0 .1em}.breadcrumb-ellipsis[data-v-12cf2491]{display:inline-flex;align-items:center}.breadcrumb-ellipsis-btn[data-v-12cf2491]{display:inline-flex;align-items:center;justify-content:center;width:1.6em;height:1.6em;border-radius:var(--radius-sm);border:1px solid var(--color-border);background:transparent;color:var(--color-muted-foreground);cursor:pointer;font-size:.9em;line-height:1;letter-spacing:.05em;transition:all .15s ease}.breadcrumb-ellipsis-btn[data-v-12cf2491]:hover{background:var(--color-accent);color:var(--color-foreground);border-color:var(--color-gray-350)}.breadcrumb--contained[data-v-12cf2491]{background:var(--color-secondary);border:1px solid var(--color-border);border-radius:var(--radius-lg);padding:.45em 1em}.breadcrumb--pills[data-v-12cf2491] .breadcrumb-link{padding:.2em .7em;border-radius:9999px;background:var(--color-secondary);border:1px solid var(--color-border)}.breadcrumb--pills[data-v-12cf2491] .breadcrumb-link:not(.current):not(.disabled):hover{background:var(--color-accent);border-color:var(--color-gray-350)}.breadcrumb--pills[data-v-12cf2491] .breadcrumb-link.current{background:var(--color-primary);color:var(--color-primary-foreground);border-color:var(--color-primary)}.breadcrumb--arrow .breadcrumb-list[data-v-12cf2491]{gap:0}.breadcrumb--arrow[data-v-12cf2491] .breadcrumb-link{padding:.35em .9em .35em 1.4em;background:var(--color-secondary);clip-path:polygon(0 0,calc(100% - .6em) 0,100% 50%,calc(100% - .6em) 100%,0 100%,.6em 50%);border:none;margin-left:-.3em}.breadcrumb--arrow[data-v-12cf2491] .breadcrumb-item:first-child .breadcrumb-link{padding-left:.9em;clip-path:polygon(0 0,calc(100% - .6em) 0,100% 50%,calc(100% - .6em) 100%,0 100%);border-radius:var(--radius-sm) 0 0 var(--radius-sm);margin-left:0}.breadcrumb--arrow[data-v-12cf2491] .breadcrumb-link:not(.current):not(.disabled):hover{background:var(--color-accent)}.breadcrumb--arrow[data-v-12cf2491] .breadcrumb-link.current{background:var(--color-primary);color:var(--color-primary-foreground)}.breadcrumb--arrow .breadcrumb-separator[data-v-12cf2491]{display:none}.heatmap-container[data-v-00476f00]{width:100%;height:100%;display:flex;flex-direction:column;min-height:0}.heatmap-wrapper[data-v-00476f00]{width:100%;height:100%;overflow:auto;flex:1;min-height:0;display:flex;align-items:center;justify-content:center;padding:16px;box-sizing:border-box;position:relative}.heatmap-grid[data-v-00476f00]{width:fit-content;height:fit-content;transition:all .2s ease-in-out}.heatmap-cell[data-v-00476f00]{aspect-ratio:1 / 1;border-radius:2px;transition:all .15s ease-in-out;border:1px solid transparent;box-sizing:border-box}.heatmap-cell-interactive[data-v-00476f00]{cursor:pointer}.heatmap-cell-interactive[data-v-00476f00]:hover{transform:scale(1.1);border-color:var(--border);box-shadow:0 4px 6px -1px #0000001a,0 2px 4px -2px #0000001a;z-index:10;position:relative}.heatmap-cell-empty[data-v-00476f00]{opacity:.6}.heatmap-cell-hovered[data-v-00476f00]{outline:2px solid var(--primary);outline-offset:1px}.heatmap-cell-label[data-v-00476f00]{font-size:8px;font-weight:500;color:var(--foreground);opacity:.8;display:flex;align-items:center;justify-content:center;height:100%;width:100%;pointer-events:none}.heatmap-legend[data-v-00476f00]{display:flex;align-items:center;gap:.5rem;margin-top:1rem;font-size:.75rem;color:var(--muted-foreground);flex-shrink:0}.heatmap-legend-label[data-v-00476f00]{font-weight:500}.heatmap-legend-colors[data-v-00476f00]{display:flex;gap:.125rem}.heatmap-legend-item[data-v-00476f00]{width:.75rem;height:.75rem;border-radius:.375rem;border:1px solid var(--border)}@media(max-width:640px){.heatmap-wrapper[data-v-00476f00]{padding:12px}.heatmap-cell[data-v-00476f00]{border-radius:2px}.heatmap-cell-label[data-v-00476f00]{font-size:7px}}@media(min-width:641px)and (max-width:1023px){.heatmap-wrapper[data-v-00476f00]{padding:14px}.heatmap-cell[data-v-00476f00]{border-radius:2px}}@media(min-width:1024px){.heatmap-wrapper[data-v-00476f00]{padding:16px}.heatmap-cell[data-v-00476f00]{border-radius:3px}}.masonry-item[data-v-c29d0159]{content-visibility:auto;contain-intrinsic-size:1px 200px}.carousel-wrapper[data-v-655a78c8]{width:100%;position:relative}.accordion-enter-active[data-v-aa189e08],.accordion-leave-active[data-v-aa189e08]{transition:height .3s ease-in-out}.sidebar-manu-item .tooltip-trigger{width:100%!important}.sidebar-menu-tooltip{margin-left:4px!important}[dir=rtl] .sidebar-menu-tooltip{margin-right:4px!important}.bg-stripe[data-v-454a1505]{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:1rem 1rem}.animate-progress-stripe[data-v-454a1505]{animation:progress-stripe-454a1505 1s linear infinite}@keyframes progress-stripe-454a1505{0%{background-position:1rem 0}to{background-position:0 0}}.animate-progress-indeterminate[data-v-454a1505]{animation:progress-indeterminate-454a1505 1.5s infinite cubic-bezier(.65,.815,.735,.395)}@keyframes progress-indeterminate-454a1505{0%{transform:translate(-100%) scaleX(.2)}50%{transform:translate(0) scaleX(.5)}to{transform:translate(100%) scaleX(.2)}}.permission-matrix-wrapper[data-v-c5641678]{max-height:70vh}.permission-matrix-wrapper[data-v-c5641678]::-webkit-scrollbar{width:6px;height:6px}.permission-matrix-wrapper[data-v-c5641678]::-webkit-scrollbar-track{background:transparent}.permission-matrix-wrapper[data-v-c5641678]::-webkit-scrollbar-thumb{background:var(--color-gray-350);border-radius:3px}.permission-matrix-wrapper[data-v-c5641678]::-webkit-scrollbar-thumb:hover{background:var(--color-gray-400)}.button-group[data-v-ba735fac] button{align-self:stretch;height:auto!important;min-height:unset!important;min-width:unset!important;width:auto!important}.button-group[data-v-ba735fac]:not(.vertical-group) button{aspect-ratio:unset}.attached-group[data-v-ba735fac] button{position:relative;--radius: .375rem}.attached-group[data-v-ba735fac] button:focus-visible,.attached-group[data-v-ba735fac] button:hover{z-index:10}.attached-group[data-v-ba735fac]:not(.vertical-group) button:not(:first-child){margin-left:-1px}.attached-group[data-v-ba735fac]:not(.vertical-group) button:first-child{border-top-left-radius:var(--radius);border-bottom-left-radius:var(--radius);border-top-right-radius:0;border-bottom-right-radius:0}.attached-group[data-v-ba735fac]:not(.vertical-group) button:not(:first-child):not(:last-child){border-radius:0}.attached-group[data-v-ba735fac]:not(.vertical-group) button:last-child{border-top-right-radius:var(--radius);border-bottom-right-radius:var(--radius);border-top-left-radius:0;border-bottom-left-radius:0}.vertical-group[data-v-ba735fac] button:not(:first-child){margin-top:-1px}.vertical-group[data-v-ba735fac] button:first-child{border-top-left-radius:var(--radius);border-top-right-radius:var(--radius);border-bottom-left-radius:0;border-bottom-right-radius:0}.vertical-group[data-v-ba735fac] button:not(:first-child):not(:last-child){border-radius:0}.vertical-group[data-v-ba735fac] button:last-child{border-bottom-left-radius:var(--radius);border-bottom-right-radius:var(--radius);border-top-left-radius:0;border-top-right-radius:0}.attached-group[data-v-ba735fac]:not(.vertical-group) button:not(:first-child):not(.border):before{content:"";position:absolute;left:0;top:0;bottom:0;width:1px;background-color:currentColor;opacity:.15;z-index:5;pointer-events:none;height:100%}.vertical-group[data-v-ba735fac] button:not(:first-child):not(.border):before{content:"";position:absolute;top:0;left:0;right:0;height:1px;width:100%;background-color:currentColor;opacity:.15;z-index:5;pointer-events:none}.first-toast-enter-active[data-v-dc3a3b49]{animation:first-toast-in-dc3a3b49 .45s cubic-bezier(.23,1,.32,1) forwards}.first-toast-leave-active[data-v-dc3a3b49]{transition:all .25s ease-in}.first-toast-leave-to[data-v-dc3a3b49]{opacity:0;transform:scale(.98)}@keyframes first-toast-in-dc3a3b49{0%{opacity:var(--entrance-opacity, .6);transform:translateY(var(--entrance-offset, 25px)) scale(.98)}to{opacity:1;transform:translateY(0) scale(1)}}.stack-toast-enter-active[data-v-dc3a3b49],.stack-toast-leave-active[data-v-dc3a3b49]{transition:all .3s cubic-bezier(.16,1,.3,1)}.stack-toast-enter-from[data-v-dc3a3b49]{opacity:0;transform:scale(.95) translateY(10px)}.stack-toast-leave-to[data-v-dc3a3b49]{opacity:0;transform:scale(.95)}.stack-toast-move[data-v-dc3a3b49]{transition:transform .4s cubic-bezier(.16,1,.3,1)}.command-palette-content[data-v-e919f56b] ::-webkit-scrollbar{width:4px}.command-palette-content[data-v-e919f56b] ::-webkit-scrollbar-track{background:transparent}.command-palette-content[data-v-e919f56b] ::-webkit-scrollbar-thumb{background:var(--border);border-radius:9999px}
|
|
898
898
|
|
|
File without changes
|