vlite3 0.6.11 → 0.7.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/components/ColorPicker/ColorIro.vue3.js +2 -2
- package/components/ColorPicker/ColorPicker.vue.js +2 -2
- package/components/Modal.vue.js +2 -2
- package/components/Modal.vue2.js +68 -66
- package/components/Screen/ScreenFilter.vue.js +1 -1
- package/components/SidebarMenu/SidebarMenuItem.vue.js +196 -177
- package/package.json +1 -1
- package/style.css +1 -1
- /package/components/ColorPicker/{ColorIro.vue2.js → ColorIro.vue.js} +0 -0
|
@@ -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,
|
package/components/Modal.vue.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import o from "./Modal.vue2.js";
|
|
2
2
|
/* empty css */
|
|
3
3
|
import t from "../_virtual/_plugin-vue_export-helper.js";
|
|
4
|
-
const
|
|
4
|
+
const p = /* @__PURE__ */ t(o, [["__scopeId", "data-v-d2085008"]]);
|
|
5
5
|
export {
|
|
6
|
-
|
|
6
|
+
p as default
|
|
7
7
|
};
|
package/components/Modal.vue2.js
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
import { defineComponent as
|
|
2
|
-
import
|
|
3
|
-
import { useKeyStroke as
|
|
4
|
-
import { $t as
|
|
5
|
-
const
|
|
1
|
+
import { defineComponent as P, ref as m, inject as V, watch as w, provide as K, nextTick as R, onMounted as W, onUnmounted as A, computed as T, openBlock as s, createElementBlock as a, Fragment as F, mergeProps as $, withModifiers as B, renderSlot as y, createCommentVNode as i, createBlock as I, Teleport as U, createVNode as S, Transition as q, withCtx as G, normalizeClass as r, createElementVNode as b, toDisplayString as O, resolveDynamicComponent as H } from "vue";
|
|
2
|
+
import J from "./Button.vue.js";
|
|
3
|
+
import { useKeyStroke as L } from "../composables/useKeyStroke.js";
|
|
4
|
+
import { $t as j } from "../utils/i18n.js";
|
|
5
|
+
const Q = {
|
|
6
6
|
key: 0,
|
|
7
7
|
class: "flex-none flex flex-col space-y-1.5 pb-0 border-b border-border/90"
|
|
8
|
-
},
|
|
8
|
+
}, X = { class: "text-lg font-semibold leading-none tracking-tight" }, Y = {
|
|
9
9
|
key: 0,
|
|
10
10
|
class: "text-sm text-muted-foreground mb-3.5"
|
|
11
|
-
},
|
|
11
|
+
}, te = /* @__PURE__ */ P({
|
|
12
12
|
inheritAttrs: !1,
|
|
13
13
|
__name: "Modal",
|
|
14
14
|
props: {
|
|
@@ -28,57 +28,59 @@ const L = {
|
|
|
28
28
|
bodyProps: {}
|
|
29
29
|
},
|
|
30
30
|
emits: ["close", "update:show", "onOpen"],
|
|
31
|
-
setup(o, { emit:
|
|
32
|
-
const t = o,
|
|
31
|
+
setup(o, { emit: z }) {
|
|
32
|
+
const t = o, d = z, l = m(t.show), g = m(!1), v = m(!1), h = m(null);
|
|
33
33
|
let c = null, u = null;
|
|
34
|
-
const
|
|
35
|
-
|
|
34
|
+
const n = V("dropdown-context", null);
|
|
35
|
+
w(
|
|
36
36
|
() => t.show,
|
|
37
37
|
(e) => {
|
|
38
|
-
|
|
38
|
+
l.value = e, e && (d("onOpen"), n?.close());
|
|
39
39
|
}
|
|
40
40
|
);
|
|
41
|
-
const
|
|
42
|
-
|
|
43
|
-
},
|
|
44
|
-
|
|
45
|
-
},
|
|
46
|
-
if (
|
|
41
|
+
const D = () => {
|
|
42
|
+
l.value = !0, n?.close();
|
|
43
|
+
}, E = (e) => {
|
|
44
|
+
g.value = e;
|
|
45
|
+
}, f = () => {
|
|
46
|
+
if (g.value) {
|
|
47
47
|
v.value = !0, c && clearTimeout(c), c = setTimeout(() => {
|
|
48
48
|
v.value = !1;
|
|
49
49
|
}, 1e3);
|
|
50
50
|
return;
|
|
51
51
|
}
|
|
52
|
-
|
|
52
|
+
l.value = !1, d("update:show", !1), d("close");
|
|
53
|
+
}, p = () => {
|
|
54
|
+
l.value = !1, d("update:show", !1), d("close");
|
|
53
55
|
};
|
|
54
|
-
|
|
55
|
-
const
|
|
56
|
-
t.closeOutside &&
|
|
57
|
-
}, { onKeyStroke:
|
|
58
|
-
|
|
59
|
-
u && clearTimeout(u), e ? (
|
|
60
|
-
|
|
56
|
+
K("modal-context", { close: f, setSubmitting: E });
|
|
57
|
+
const M = () => {
|
|
58
|
+
t.closeOutside && f();
|
|
59
|
+
}, { onKeyStroke: N } = L();
|
|
60
|
+
N("Escape", f), w(l, async (e) => {
|
|
61
|
+
u && clearTimeout(u), e ? (n?.onChildToggle?.(!0), document.body.style.overflow = "hidden", await R(), h.value?.focus()) : (document.body.style.overflow = "", u = setTimeout(() => {
|
|
62
|
+
n?.onChildToggle?.(!1);
|
|
61
63
|
}, 200));
|
|
62
|
-
}), R(() => {
|
|
63
|
-
s.value && i?.onChildToggle?.(!0);
|
|
64
64
|
}), W(() => {
|
|
65
|
-
|
|
65
|
+
l.value && n?.onChildToggle?.(!0);
|
|
66
|
+
}), A(() => {
|
|
67
|
+
u && clearTimeout(u), l.value && n?.onChildToggle?.(!1), document.body.style.overflow = "", c && clearTimeout(c);
|
|
66
68
|
});
|
|
67
|
-
const
|
|
68
|
-
() => t.descriptionI18n ?
|
|
69
|
+
const k = T(() => t.titleI18n ? j(t.titleI18n) : t.title), x = T(
|
|
70
|
+
() => t.descriptionI18n ? j(t.descriptionI18n) : t.description
|
|
69
71
|
);
|
|
70
|
-
return (e,
|
|
71
|
-
e.$slots?.trigger ? (
|
|
72
|
+
return (e, C) => (s(), a(F, null, [
|
|
73
|
+
e.$slots?.trigger || e.$slots?.default ? (s(), a("span", $({
|
|
72
74
|
key: 0,
|
|
73
|
-
onClick:
|
|
75
|
+
onClick: B(D, ["stop"]),
|
|
74
76
|
class: `${o.triggerClass}`
|
|
75
77
|
}, e.$attrs), [
|
|
76
|
-
|
|
77
|
-
o.body ?
|
|
78
|
+
y(e.$slots, "trigger", {}, () => [
|
|
79
|
+
o.body ? y(e.$slots, "default", { key: 0 }, void 0, !0) : i("", !0)
|
|
78
80
|
], !0)
|
|
79
|
-
], 16)) :
|
|
80
|
-
(
|
|
81
|
-
|
|
81
|
+
], 16)) : i("", !0),
|
|
82
|
+
(s(), I(U, { to: "body" }, [
|
|
83
|
+
S(q, {
|
|
82
84
|
"enter-active-class": "transition duration-200 ease-out",
|
|
83
85
|
"enter-from-class": "opacity-0",
|
|
84
86
|
"enter-to-class": "opacity-100",
|
|
@@ -86,52 +88,52 @@ const L = {
|
|
|
86
88
|
"leave-from-class": "opacity-100",
|
|
87
89
|
"leave-to-class": "opacity-0"
|
|
88
90
|
}, {
|
|
89
|
-
default:
|
|
90
|
-
|
|
91
|
+
default: G(() => [
|
|
92
|
+
l.value ? (s(), a("div", {
|
|
91
93
|
key: 0,
|
|
92
|
-
class:
|
|
93
|
-
onClick:
|
|
94
|
+
class: r(["fixed inset-0 z-50 flex items-center justify-center bg-[#00000051] p-4 v-modal-overlay", o.backdrop && "backdrop-blur-[2px]"]),
|
|
95
|
+
onClick: M
|
|
94
96
|
}, [
|
|
95
|
-
|
|
97
|
+
b("div", {
|
|
96
98
|
ref_key: "modalRef",
|
|
97
|
-
ref:
|
|
99
|
+
ref: h,
|
|
98
100
|
tabindex: "-1",
|
|
99
|
-
class:
|
|
100
|
-
onClick:
|
|
101
|
+
class: r(["modal-body relative w-full rounded border border-border/60 bg-body shadow-lg text-foreground flex flex-col max-h-[85vh] sm:max-h-[90vh] focus:outline-none", [o.maxWidth]]),
|
|
102
|
+
onClick: C[0] || (C[0] = B(() => {
|
|
101
103
|
}, ["stop"]))
|
|
102
104
|
}, [
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
class:
|
|
105
|
+
k.value ? (s(), a("div", Q, [
|
|
106
|
+
b("div", {
|
|
107
|
+
class: r(["flex items-center justify-between py-2 px-4 rounded-t-md", o.headerClass])
|
|
106
108
|
}, [
|
|
107
|
-
|
|
108
|
-
|
|
109
|
+
b("h3", X, O(k.value), 1),
|
|
110
|
+
S(J, {
|
|
109
111
|
rounded: "full",
|
|
110
112
|
size: "sm",
|
|
111
113
|
icon: "lucide:x",
|
|
112
114
|
variant: "ghost",
|
|
113
|
-
class:
|
|
114
|
-
onClick:
|
|
115
|
+
class: r(["hover:bg-gray-250/25! transition-all", { "blink-bg": v.value }]),
|
|
116
|
+
onClick: f
|
|
115
117
|
}, null, 8, ["class"])
|
|
116
118
|
], 2)
|
|
117
|
-
])) :
|
|
118
|
-
|
|
119
|
-
class:
|
|
119
|
+
])) : i("", !0),
|
|
120
|
+
b("div", {
|
|
121
|
+
class: r(["flex-1 overflow-y-auto px-4 pt-4 pb-3.5 min-h-0", o.bodyClass])
|
|
120
122
|
}, [
|
|
121
|
-
|
|
122
|
-
o.body ? (
|
|
123
|
+
x.value ? (s(), a("p", Y, O(x.value), 1)) : i("", !0),
|
|
124
|
+
o.body ? (s(), I(H(o.body), $({ key: 1 }, { ...o.bodyProps, ...e.$attrs }, { close: p }), null, 16)) : y(e.$slots, "default", {
|
|
123
125
|
key: 2,
|
|
124
|
-
close:
|
|
126
|
+
close: p
|
|
125
127
|
}, void 0, !0)
|
|
126
128
|
], 2),
|
|
127
|
-
e.$slots.footer ? (
|
|
129
|
+
e.$slots.footer ? (s(), a("div", {
|
|
128
130
|
key: 1,
|
|
129
|
-
class:
|
|
131
|
+
class: r([o.footerClass, "flex-none flex items-center px-4 py-3 border-t border-border/75 rounded-b-xl bg-body"])
|
|
130
132
|
}, [
|
|
131
|
-
|
|
132
|
-
], 2)) :
|
|
133
|
+
y(e.$slots, "footer", { close: p }, void 0, !0)
|
|
134
|
+
], 2)) : i("", !0)
|
|
133
135
|
], 2)
|
|
134
|
-
], 2)) :
|
|
136
|
+
], 2)) : i("", !0)
|
|
135
137
|
]),
|
|
136
138
|
_: 3
|
|
137
139
|
})
|
|
@@ -140,5 +142,5 @@ const L = {
|
|
|
140
142
|
}
|
|
141
143
|
});
|
|
142
144
|
export {
|
|
143
|
-
|
|
145
|
+
te as default
|
|
144
146
|
};
|
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
import { defineComponent as
|
|
2
|
-
import { useRouter as
|
|
3
|
-
import
|
|
4
|
-
import
|
|
5
|
-
import
|
|
6
|
-
import { $t as
|
|
1
|
+
import { defineComponent as te, inject as ne, computed as c, resolveComponent as ae, openBlock as r, createElementBlock as p, normalizeClass as u, createBlock as g, unref as i, withCtx as y, createElementVNode as v, normalizeStyle as E, createCommentVNode as m, toDisplayString as w, createVNode as I, resolveDynamicComponent as K, mergeProps as O, createTextVNode as ie, Fragment as R, withKeys as oe, withModifiers as le, Transition as re, renderList as se } from "vue";
|
|
2
|
+
import { useRouter as ce, useRoute as ue } from "vue-router";
|
|
3
|
+
import k from "../Icon.vue.js";
|
|
4
|
+
import W from "../Tooltip.vue.js";
|
|
5
|
+
import de from "../Dropdown/Dropdown.vue.js";
|
|
6
|
+
import { $t as F } from "../../utils/i18n.js";
|
|
7
7
|
/* empty css */
|
|
8
|
-
const
|
|
8
|
+
const me = {
|
|
9
9
|
key: 0,
|
|
10
10
|
class: "px-3 py-1.5 text-sm flex items-center gap-2 font-medium border-b bg-muted-light rounded-t-md text-center truncate"
|
|
11
|
-
},
|
|
11
|
+
}, fe = { class: "w-full" }, he = { class: "flex items-center w-full gap-2 text-sm" }, pe = { class: "truncate flex-1 font-medium" }, ve = ["onKeydown"], be = {
|
|
12
12
|
key: 0,
|
|
13
13
|
class: "overflow-hidden transition-all duration-300 ease-in-out relative"
|
|
14
|
-
},
|
|
14
|
+
}, ge = { class: "mt-0.5 space-y-0.5" }, ze = /* @__PURE__ */ te({
|
|
15
15
|
__name: "SidebarMenuItem",
|
|
16
16
|
props: {
|
|
17
17
|
item: {},
|
|
@@ -19,168 +19,187 @@ const re = {
|
|
|
19
19
|
menuOffset: {},
|
|
20
20
|
itemClass: {}
|
|
21
21
|
},
|
|
22
|
-
setup(
|
|
23
|
-
const t =
|
|
22
|
+
setup(s) {
|
|
23
|
+
const t = s, e = ne("sidebar-menu-ctx"), C = ce(), q = ue();
|
|
24
24
|
if (!e)
|
|
25
25
|
throw new Error("SidebarMenuItem must be used within a SidebarMenu");
|
|
26
|
-
const
|
|
26
|
+
const o = c(
|
|
27
27
|
() => e.currentOrientation === "horizontal" && t.depth === 0
|
|
28
|
-
),
|
|
28
|
+
), f = c(() => !!t.item.children?.length), G = c(() => o.value && f.value || e.compact && f.value ? "popover" : t.item.renderMode || e.renderMode || "tree"), z = c(() => e.renderNestedTabs && t.depth === 0 ? !1 : G.value === "popover" && f.value), x = c(() => t.item.id ? t.item.id : t.item.to && typeof t.item.to == "string" ? t.item.to : t.item.label), j = c(() => z.value || e.renderNestedTabs && t.depth === 0 ? !1 : e.expandedItems.includes(x.value)), N = c(() => !(!f.value || e.renderNestedTabs && t.depth === 0)), T = (a, n, d) => {
|
|
29
|
+
const l = a.id || (typeof a.to == "string" ? a.to : null) || a.label;
|
|
30
|
+
if (n && l === n) return !0;
|
|
31
|
+
if (a.to) {
|
|
32
|
+
const b = typeof a.to == "string" ? a.to : a.to.path;
|
|
33
|
+
if (b) {
|
|
34
|
+
if (d === b) return !0;
|
|
35
|
+
if (b !== "/" && b.length > 1 && d.startsWith(b)) {
|
|
36
|
+
const L = d[b.length];
|
|
37
|
+
if (!L || L === "/" || L === "?") return !0;
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
return a.children?.length ? a.children.some(
|
|
42
|
+
(b) => T(b, n, d)
|
|
43
|
+
) : !1;
|
|
44
|
+
}, $ = c(() => {
|
|
45
|
+
const a = q?.path || "", n = e.activeItem;
|
|
46
|
+
return f.value ? T(t.item, n, a) : n === x.value;
|
|
47
|
+
}), _ = (a) => {
|
|
29
48
|
if (!t.item.disabled) {
|
|
30
49
|
if (e.renderNestedTabs && t.depth === 0) {
|
|
31
50
|
if (t.item.action && t.item.action(t.item), t.item.to)
|
|
32
|
-
|
|
51
|
+
C.push(t.item.to).catch(() => {
|
|
33
52
|
});
|
|
34
53
|
else if (t.item.href)
|
|
35
54
|
window.open(t.item.href, "_blank");
|
|
36
|
-
else if (
|
|
37
|
-
const
|
|
38
|
-
|
|
39
|
-
}) :
|
|
55
|
+
else if (f.value) {
|
|
56
|
+
const n = t.item.children?.[0];
|
|
57
|
+
n && (n.to ? C.push(n.to).catch(() => {
|
|
58
|
+
}) : n.href && window.open(n.href, "_blank"));
|
|
40
59
|
}
|
|
41
|
-
e.setActive(
|
|
60
|
+
e.setActive(x.value);
|
|
42
61
|
return;
|
|
43
62
|
}
|
|
44
|
-
|
|
63
|
+
f.value && !t.item.to && !t.item.href && (z.value || e.toggleExpand(x.value)), t.item.action && t.item.action(t.item), (!f.value || t.item.to) && e.setActive(x.value);
|
|
45
64
|
}
|
|
46
|
-
},
|
|
47
|
-
if (
|
|
65
|
+
}, A = (a) => {
|
|
66
|
+
if (a.stopPropagation(), e.renderNestedTabs && t.depth === 0) {
|
|
48
67
|
if (t.item.action && t.item.action(t.item), t.item.to)
|
|
49
|
-
|
|
68
|
+
C.push(t.item.to).catch(() => {
|
|
50
69
|
});
|
|
51
70
|
else if (t.item.href)
|
|
52
71
|
window.open(t.item.href, "_blank");
|
|
53
|
-
else if (
|
|
54
|
-
const
|
|
55
|
-
|
|
56
|
-
}) :
|
|
72
|
+
else if (f.value) {
|
|
73
|
+
const n = t.item.children?.[0];
|
|
74
|
+
n && (n.to ? C.push(n.to).catch(() => {
|
|
75
|
+
}) : n.href && window.open(n.href, "_blank"));
|
|
57
76
|
}
|
|
58
|
-
e.setActive(
|
|
77
|
+
e.setActive(x.value);
|
|
59
78
|
return;
|
|
60
79
|
}
|
|
61
|
-
|
|
62
|
-
},
|
|
63
|
-
marginLeft: `${t.depth *
|
|
64
|
-
width: `calc(100% - ${t.depth *
|
|
65
|
-
}),
|
|
66
|
-
const
|
|
80
|
+
z.value || e.toggleExpand(x.value);
|
|
81
|
+
}, M = c(() => e.indentSize || 12), H = c(() => o.value ? {} : e.compact ? { width: "100%" } : {
|
|
82
|
+
marginLeft: `${t.depth * M.value}px`,
|
|
83
|
+
width: `calc(100% - ${t.depth * M.value}px)`
|
|
84
|
+
}), B = c(() => {
|
|
85
|
+
const n = `group flex items-center justify-between font-medium rounded-md focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-primary/50 relative border border-transparent select-none cursor-pointer ${o.value ? "w-auto" : "w-full"} ${t?.itemClass || ""} ${e.labelClass}`, d = e.compact ? `justify-center ${e.compactItemPadding}` : `justify-between ${e.itemPadding}`;
|
|
67
86
|
let l = "";
|
|
68
|
-
return
|
|
69
|
-
}),
|
|
70
|
-
() => t.item.labelI18n ?
|
|
71
|
-
),
|
|
72
|
-
label:
|
|
73
|
-
value:
|
|
74
|
-
icon:
|
|
75
|
-
disabled:
|
|
76
|
-
children:
|
|
77
|
-
data:
|
|
78
|
-
}),
|
|
79
|
-
const
|
|
80
|
-
if (
|
|
81
|
-
|
|
82
|
-
const
|
|
83
|
-
|
|
84
|
-
}) :
|
|
87
|
+
return $.value ? l = "bg-primary-light text-primary-fg-light" : l = "text-muted hover:bg-accent/80 hover:text-foreground", t.item.disabled && (l = "opacity-50 cursor-not-allowed pointer-events-none"), `${n} ${d} ${l} ${t.item.class || ""}`;
|
|
88
|
+
}), h = c(() => e.compact && e.showCompactLabels), S = c(
|
|
89
|
+
() => t.item.labelI18n ? F(t.item.labelI18n) : t.item.label
|
|
90
|
+
), D = (a) => ({
|
|
91
|
+
label: a.labelI18n ? F(a.labelI18n) : a.label,
|
|
92
|
+
value: a.id || a.label,
|
|
93
|
+
icon: a.icon,
|
|
94
|
+
disabled: a.disabled,
|
|
95
|
+
children: a.children ? a.children.map(D) : void 0,
|
|
96
|
+
data: a
|
|
97
|
+
}), J = c(() => t.item.children ? t.item.children.map(D) : []), Q = (a) => {
|
|
98
|
+
const n = a.data;
|
|
99
|
+
if (n) {
|
|
100
|
+
n.action && n.action(n);
|
|
101
|
+
const d = n.id || n.label || (typeof n.to == "string" ? n.to : "");
|
|
102
|
+
d && e.setActive(d), n.to ? C.push(n.to).catch(() => {
|
|
103
|
+
}) : n.href && window.open(n.href, "_blank");
|
|
85
104
|
}
|
|
86
|
-
},
|
|
87
|
-
const
|
|
88
|
-
|
|
89
|
-
},
|
|
90
|
-
const
|
|
91
|
-
|
|
92
|
-
},
|
|
93
|
-
const
|
|
94
|
-
|
|
95
|
-
},
|
|
96
|
-
const
|
|
97
|
-
|
|
98
|
-
},
|
|
99
|
-
const
|
|
100
|
-
|
|
101
|
-
},
|
|
105
|
+
}, U = (a) => {
|
|
106
|
+
const n = a;
|
|
107
|
+
n.style.height = "0", n.style.opacity = "0";
|
|
108
|
+
}, X = (a) => {
|
|
109
|
+
const n = a;
|
|
110
|
+
n.style.height = n.scrollHeight + "px", n.style.opacity = "1";
|
|
111
|
+
}, Y = (a) => {
|
|
112
|
+
const n = a;
|
|
113
|
+
n.style.height = "auto", n.style.overflow = "visible";
|
|
114
|
+
}, Z = (a) => {
|
|
115
|
+
const n = a;
|
|
116
|
+
n.style.height = n.scrollHeight + "px", n.style.overflow = "hidden", n.style.opacity = "1";
|
|
117
|
+
}, ee = (a) => {
|
|
118
|
+
const n = a;
|
|
119
|
+
n.style.height = "0", n.style.opacity = "0";
|
|
120
|
+
}, P = c(() => t.item.to ? "router-link" : t.item.href ? "a" : "button"), V = c(() => t.item.to ? { to: t.item.to } : t.item.href ? {
|
|
102
121
|
href: t.item.href,
|
|
103
122
|
target: "_blank",
|
|
104
123
|
rel: "noopener noreferrer"
|
|
105
124
|
} : { type: "button" });
|
|
106
|
-
return (
|
|
107
|
-
const
|
|
108
|
-
return r(),
|
|
109
|
-
class: u(["relative sidebar-manu-item",
|
|
125
|
+
return (a, n) => {
|
|
126
|
+
const d = ae("SidebarMenuItem", !0);
|
|
127
|
+
return r(), p("div", {
|
|
128
|
+
class: u(["relative sidebar-manu-item", o.value ? "w-auto" : "w-full"])
|
|
110
129
|
}, [
|
|
111
|
-
|
|
130
|
+
z.value ? (r(), g(i(de), {
|
|
112
131
|
key: 0,
|
|
113
|
-
position:
|
|
114
|
-
offset:
|
|
132
|
+
position: o.value ? "bottom-start" : "right-start",
|
|
133
|
+
offset: s.menuOffset,
|
|
115
134
|
class: "w-full block",
|
|
116
135
|
searchable: !1,
|
|
117
|
-
width:
|
|
118
|
-
maxHeight:
|
|
119
|
-
options:
|
|
120
|
-
onOnSelect:
|
|
136
|
+
width: i(e).nestedMenuWidth,
|
|
137
|
+
maxHeight: i(e).nestedMenuMaxHeight,
|
|
138
|
+
options: J.value,
|
|
139
|
+
onOnSelect: Q
|
|
121
140
|
}, {
|
|
122
|
-
header:
|
|
123
|
-
|
|
124
|
-
|
|
141
|
+
header: y(() => [
|
|
142
|
+
i(e).compact && !o.value ? (r(), p("div", me, [
|
|
143
|
+
s.item.icon ? (r(), g(k, {
|
|
125
144
|
key: 0,
|
|
126
|
-
icon:
|
|
145
|
+
icon: s.item.icon,
|
|
127
146
|
class: "shrink-0 transition-colors opacity-80 group-hover:opacity-100"
|
|
128
|
-
}, null, 8, ["icon"])) :
|
|
129
|
-
|
|
130
|
-
])) :
|
|
147
|
+
}, null, 8, ["icon"])) : m("", !0),
|
|
148
|
+
ie(" " + w(S.value), 1)
|
|
149
|
+
])) : m("", !0)
|
|
131
150
|
]),
|
|
132
|
-
trigger:
|
|
133
|
-
|
|
134
|
-
content:
|
|
135
|
-
placement:
|
|
151
|
+
trigger: y(({ isOpen: l }) => [
|
|
152
|
+
I(W, {
|
|
153
|
+
content: S.value,
|
|
154
|
+
placement: o.value ? "bottom" : "right",
|
|
136
155
|
className: "sidebar-menu-tooltip",
|
|
137
|
-
disabled: !
|
|
156
|
+
disabled: !i(e).showTooltip || !i(e).compact && !o.value || l,
|
|
138
157
|
class: "w-full block"
|
|
139
158
|
}, {
|
|
140
|
-
default:
|
|
141
|
-
v("div",
|
|
142
|
-
(r(),
|
|
143
|
-
class: [
|
|
144
|
-
style:
|
|
159
|
+
default: y(() => [
|
|
160
|
+
v("div", fe, [
|
|
161
|
+
(r(), g(K(P.value), O(V.value, {
|
|
162
|
+
class: [B.value, l ? "bg-muted text-foreground" : ""],
|
|
163
|
+
style: H.value,
|
|
145
164
|
"aria-haspopup": !0,
|
|
146
165
|
"aria-expanded": l,
|
|
147
|
-
onClick:
|
|
166
|
+
onClick: _
|
|
148
167
|
}), {
|
|
149
|
-
default:
|
|
168
|
+
default: y(() => [
|
|
150
169
|
v("div", {
|
|
151
170
|
class: u(["min-w-0 flex-1 flex", [
|
|
152
|
-
|
|
171
|
+
h.value && !o.value ? "flex-col items-center justify-center gap-1" : i(e).compact && !o.value ? "justify-center" : "items-center gap-2.5"
|
|
153
172
|
]])
|
|
154
173
|
}, [
|
|
155
|
-
|
|
174
|
+
s.item.icon ? (r(), g(k, {
|
|
156
175
|
key: 0,
|
|
157
|
-
icon:
|
|
158
|
-
class: u(["shrink-0 transition-colors opacity-80 group-hover:opacity-100", [
|
|
159
|
-
style:
|
|
160
|
-
width:
|
|
161
|
-
height:
|
|
176
|
+
icon: s.item.icon,
|
|
177
|
+
class: u(["shrink-0 transition-colors opacity-80 group-hover:opacity-100", [$.value || l ? "opacity-100" : ""]]),
|
|
178
|
+
style: E({
|
|
179
|
+
width: i(e).compact && !o.value ? i(e).compactIconSize : i(e).iconSize,
|
|
180
|
+
height: i(e).compact && !o.value ? i(e).compactIconSize : i(e).iconSize
|
|
162
181
|
})
|
|
163
|
-
}, null, 8, ["icon", "class", "style"])) :
|
|
182
|
+
}, null, 8, ["icon", "class", "style"])) : m("", !0),
|
|
164
183
|
v("span", {
|
|
165
184
|
class: u(["truncate leading-none pt-0.5 text-wrap", {
|
|
166
|
-
[
|
|
167
|
-
hidden:
|
|
168
|
-
"md:hidden":
|
|
185
|
+
[i(e).compactLabelClass]: h.value && !o.value,
|
|
186
|
+
hidden: i(e).compact && !h.value && !o.value,
|
|
187
|
+
"md:hidden": i(e).compact && !h.value && !o.value
|
|
169
188
|
}])
|
|
170
|
-
},
|
|
171
|
-
|
|
189
|
+
}, w(S.value), 3),
|
|
190
|
+
s.item.badge && (!i(e).compact || !h.value || o.value) ? (r(), p("span", {
|
|
172
191
|
key: 1,
|
|
173
192
|
class: u(["ml-auto inline-flex items-center px-1.5 py-0.5 rounded text-[10px] font-medium", [
|
|
174
|
-
|
|
175
|
-
{ "md:hidden":
|
|
193
|
+
s.item.badgeClass || "bg-muted text-muted-foreground",
|
|
194
|
+
{ "md:hidden": i(e).compact && !o.value }
|
|
176
195
|
]])
|
|
177
|
-
},
|
|
196
|
+
}, w(s.item.badge), 3)) : m("", !0)
|
|
178
197
|
], 2),
|
|
179
198
|
v("div", {
|
|
180
|
-
class: u(["ml-1.5 flex h-4 w-4 shrink-0 items-center justify-center text-muted-foreground", { "md:hidden":
|
|
199
|
+
class: u(["ml-1.5 flex h-4 w-4 shrink-0 items-center justify-center text-muted-foreground", { "md:hidden": i(e).compact && !o.value }])
|
|
181
200
|
}, [
|
|
182
|
-
|
|
183
|
-
icon:
|
|
201
|
+
I(k, {
|
|
202
|
+
icon: o.value ? "lucide:chevron-down" : "lucide:chevron-right",
|
|
184
203
|
class: "h-3 w-3"
|
|
185
204
|
}, null, 8, ["icon"])
|
|
186
205
|
], 2)
|
|
@@ -192,111 +211,111 @@ const re = {
|
|
|
192
211
|
_: 2
|
|
193
212
|
}, 1032, ["content", "placement", "disabled"])
|
|
194
213
|
]),
|
|
195
|
-
item:
|
|
196
|
-
v("div",
|
|
197
|
-
l.icon ? (r(),
|
|
214
|
+
item: y(({ option: l }) => [
|
|
215
|
+
v("div", he, [
|
|
216
|
+
l.icon ? (r(), g(k, {
|
|
198
217
|
key: 0,
|
|
199
218
|
icon: l.icon,
|
|
200
219
|
class: "shrink-0 opacity-80",
|
|
201
|
-
style:
|
|
202
|
-
}, null, 8, ["icon", "style"])) :
|
|
203
|
-
v("span",
|
|
204
|
-
l.data?.badge ? (r(),
|
|
220
|
+
style: E({ width: i(e).iconSize, height: i(e).iconSize })
|
|
221
|
+
}, null, 8, ["icon", "style"])) : m("", !0),
|
|
222
|
+
v("span", pe, w(l.label), 1),
|
|
223
|
+
l.data?.badge ? (r(), p("span", {
|
|
205
224
|
key: 1,
|
|
206
225
|
class: u(["ml-auto inline-flex items-center px-1.5 py-0.5 rounded text-[10px] font-medium", l.data?.badgeClass || "bg-muted text-muted-foreground"])
|
|
207
|
-
},
|
|
226
|
+
}, w(l.data.badge), 3)) : m("", !0)
|
|
208
227
|
])
|
|
209
228
|
]),
|
|
210
229
|
_: 1
|
|
211
|
-
}, 8, ["position", "offset", "width", "maxHeight", "options"])) : (r(),
|
|
212
|
-
|
|
213
|
-
content:
|
|
214
|
-
placement:
|
|
215
|
-
disabled: !
|
|
230
|
+
}, 8, ["position", "offset", "width", "maxHeight", "options"])) : (r(), p(R, { key: 1 }, [
|
|
231
|
+
I(W, {
|
|
232
|
+
content: S.value,
|
|
233
|
+
placement: o.value ? "bottom" : "right",
|
|
234
|
+
disabled: !i(e).showTooltip || !i(e).compact && !o.value,
|
|
216
235
|
class: "w-full block"
|
|
217
236
|
}, {
|
|
218
|
-
default:
|
|
219
|
-
(r(),
|
|
220
|
-
class: [
|
|
221
|
-
style:
|
|
222
|
-
"aria-expanded":
|
|
223
|
-
"aria-current":
|
|
224
|
-
onClick:
|
|
237
|
+
default: y(() => [
|
|
238
|
+
(r(), g(K(P.value), O(V.value, {
|
|
239
|
+
class: [B.value, "mb-0.5"],
|
|
240
|
+
style: H.value,
|
|
241
|
+
"aria-expanded": N.value ? j.value : void 0,
|
|
242
|
+
"aria-current": $.value ? "page" : void 0,
|
|
243
|
+
onClick: _
|
|
225
244
|
}), {
|
|
226
|
-
default:
|
|
245
|
+
default: y(() => [
|
|
227
246
|
v("div", {
|
|
228
247
|
class: u(["min-w-0 flex-1 flex py-0.5", [
|
|
229
|
-
|
|
248
|
+
h.value && !o.value ? "flex-col items-center justify-center gap-1" : i(e).compact && !o.value ? "justify-center" : "items-center gap-2.5"
|
|
230
249
|
]])
|
|
231
250
|
}, [
|
|
232
|
-
|
|
251
|
+
s.item.icon ? (r(), g(k, {
|
|
233
252
|
key: 0,
|
|
234
|
-
icon:
|
|
235
|
-
class: u(["shrink-0 transition-colors opacity-80 group-hover:opacity-100", [
|
|
236
|
-
style:
|
|
237
|
-
width:
|
|
238
|
-
height:
|
|
253
|
+
icon: s.item.icon,
|
|
254
|
+
class: u(["shrink-0 transition-colors opacity-80 group-hover:opacity-100", [$.value ? "opacity-100" : ""]]),
|
|
255
|
+
style: E({
|
|
256
|
+
width: i(e).compact && !o.value ? i(e).compactIconSize : i(e).iconSize,
|
|
257
|
+
height: i(e).compact && !o.value ? i(e).compactIconSize : i(e).iconSize
|
|
239
258
|
})
|
|
240
|
-
}, null, 8, ["icon", "class", "style"])) :
|
|
259
|
+
}, null, 8, ["icon", "class", "style"])) : m("", !0),
|
|
241
260
|
v("span", {
|
|
242
261
|
class: u(["truncate leading-none pt-0.5 wrap-break-word flex-wrap text-wrap", {
|
|
243
|
-
[
|
|
244
|
-
hidden:
|
|
245
|
-
"md:hidden":
|
|
262
|
+
[i(e).compactLabelClass]: h.value && !o.value,
|
|
263
|
+
hidden: i(e).compact && !h.value && !o.value,
|
|
264
|
+
"md:hidden": i(e).compact && !h.value && !o.value
|
|
246
265
|
}])
|
|
247
|
-
},
|
|
248
|
-
|
|
266
|
+
}, w(S.value), 3),
|
|
267
|
+
s.item.badge && (!i(e).compact || !h.value || o.value) ? (r(), p("span", {
|
|
249
268
|
key: 1,
|
|
250
269
|
class: u(["ml-auto inline-flex items-center px-1.5 py-0.5 rounded text-[10px] font-medium", [
|
|
251
|
-
|
|
252
|
-
{ "md:hidden":
|
|
270
|
+
s.item.badgeClass || "bg-muted text-muted-foreground",
|
|
271
|
+
{ "md:hidden": i(e).compact && !o.value }
|
|
253
272
|
]])
|
|
254
|
-
},
|
|
273
|
+
}, w(s.item.badge), 3)) : m("", !0)
|
|
255
274
|
], 2),
|
|
256
|
-
|
|
275
|
+
N.value ? (r(), p("div", {
|
|
257
276
|
key: 0,
|
|
258
277
|
role: "button",
|
|
259
278
|
tabindex: "0",
|
|
260
|
-
class: u(["ml-1.5 flex shrink-0 items-center justify-center rounded-sm text-muted-foreground hover:bg-accent/50 hover:text-foreground transition-all", { "md:hidden":
|
|
261
|
-
onClick:
|
|
262
|
-
onKeydown:
|
|
279
|
+
class: u(["ml-1.5 flex shrink-0 items-center justify-center rounded-sm text-muted-foreground hover:bg-accent/50 hover:text-foreground transition-all", { "md:hidden": i(e).compact && !o.value }]),
|
|
280
|
+
onClick: A,
|
|
281
|
+
onKeydown: oe(le(A, ["prevent"]), ["enter", "space"])
|
|
263
282
|
}, [
|
|
264
|
-
|
|
283
|
+
I(k, {
|
|
265
284
|
icon: "lucide:chevron-down",
|
|
266
|
-
class: u(["h-3 w-3 transition-transform duration-200", { "rotate-180":
|
|
285
|
+
class: u(["h-3 w-3 transition-transform duration-200", { "rotate-180": j.value && !o.value }])
|
|
267
286
|
}, null, 8, ["class"])
|
|
268
|
-
], 42,
|
|
287
|
+
], 42, ve)) : m("", !0)
|
|
269
288
|
]),
|
|
270
289
|
_: 1
|
|
271
290
|
}, 16, ["class", "style", "aria-expanded", "aria-current"]))
|
|
272
291
|
]),
|
|
273
292
|
_: 1
|
|
274
293
|
}, 8, ["content", "placement", "disabled"]),
|
|
275
|
-
|
|
294
|
+
I(re, {
|
|
276
295
|
name: "sidebar-slide",
|
|
277
|
-
onBeforeEnter:
|
|
278
|
-
onEnter:
|
|
279
|
-
onAfterEnter:
|
|
280
|
-
onBeforeLeave:
|
|
281
|
-
onLeave:
|
|
296
|
+
onBeforeEnter: U,
|
|
297
|
+
onEnter: X,
|
|
298
|
+
onAfterEnter: Y,
|
|
299
|
+
onBeforeLeave: Z,
|
|
300
|
+
onLeave: ee
|
|
282
301
|
}, {
|
|
283
|
-
default:
|
|
284
|
-
|
|
285
|
-
|
|
302
|
+
default: y(() => [
|
|
303
|
+
f.value && j.value && !o.value ? (r(), p("div", be, [
|
|
304
|
+
i(e).variant === "default" ? (r(), p("div", {
|
|
286
305
|
key: 0,
|
|
287
306
|
class: "absolute top-0 bottom-2 w-px bg-border",
|
|
288
|
-
style:
|
|
289
|
-
left: `${(
|
|
307
|
+
style: E({
|
|
308
|
+
left: `${(s.depth + 1) * M.value - M.value / 2}px`
|
|
290
309
|
})
|
|
291
|
-
}, null, 4)) :
|
|
292
|
-
v("div",
|
|
293
|
-
(r(!0),
|
|
310
|
+
}, null, 4)) : m("", !0),
|
|
311
|
+
v("div", ge, [
|
|
312
|
+
(r(!0), p(R, null, se(s.item.children, (l) => (r(), g(d, {
|
|
294
313
|
key: l.id || l.label,
|
|
295
314
|
item: l,
|
|
296
|
-
depth:
|
|
315
|
+
depth: s.depth + 1
|
|
297
316
|
}, null, 8, ["item", "depth"]))), 128))
|
|
298
317
|
])
|
|
299
|
-
])) :
|
|
318
|
+
])) : m("", !0)
|
|
300
319
|
]),
|
|
301
320
|
_: 1
|
|
302
321
|
})
|
|
@@ -306,5 +325,5 @@ const re = {
|
|
|
306
325
|
}
|
|
307
326
|
});
|
|
308
327
|
export {
|
|
309
|
-
|
|
328
|
+
ze as default
|
|
310
329
|
};
|
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-2a2855f6]{animation:blink-animation-2a2855f6 1s infinite}@keyframes blink-animation-2a2855f6{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-e5c8ab25]{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-ecb5df7c]{display:inline-flex;align-items:center;cursor:pointer}.breadcrumb-link[data-v-ecb5df7c]{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-ecb5df7c]:not(.current):not(.disabled):hover{color:var(--color-foreground)}.breadcrumb-link.current[data-v-ecb5df7c]{color:var(--color-foreground);font-weight:600;cursor:default}.breadcrumb-link.disabled[data-v-ecb5df7c]{opacity:.45;cursor:not-allowed;pointer-events:none}.breadcrumb-icon[data-v-ecb5df7c]{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-4b13b586]{max-height:70vh}.permission-matrix-wrapper[data-v-4b13b586]::-webkit-scrollbar{width:6px;height:6px}.permission-matrix-wrapper[data-v-4b13b586]::-webkit-scrollbar-track{background:transparent}.permission-matrix-wrapper[data-v-4b13b586]::-webkit-scrollbar-thumb{background:var(--color-gray-350);border-radius:3px}.permission-matrix-wrapper[data-v-4b13b586]::-webkit-scrollbar-thumb:hover{background:var(--color-gray-400)}.permission-list-wrapper[data-v-3adbf210]{border:1px solid var(--color-border);border-radius:.5rem;overflow:hidden;background-color:var(--color-background)}.custom-list-header[data-v-3adbf210]{background-color:var(--color-muted);border-bottom:1px solid var(--color-border);padding:var(--cell-py) var(--cell-px)}.custom-list-group-content .custom-list-item[data-v-3adbf210]{border-bottom:1px solid var(--color-border);padding:var(--cell-py) var(--cell-px);background-color:var(--color-background)}.custom-list-group-content .custom-list-item[data-v-3adbf210]:hover{background-color:var(--color-accent)}.custom-list-group-content .custom-list-item[data-v-3adbf210]:last-child{border-bottom:none}.custom-list-group-content+.custom-list-header[data-v-3adbf210],.custom-list-header+.custom-list-header[data-v-3adbf210]{border-top:1px solid var(--color-border)}.permission-list-wrapper>.custom-list-header[data-v-3adbf210]:last-child{border-bottom:none}.permission-matrix-wrapper[data-v-3bbb236a]{border:1px solid var(--color-border);background-color:var(--color-gray-100);border-radius:.5rem;overflow:auto}.custom-table[data-v-3bbb236a]{width:100%;border-collapse:collapse}.custom-th[data-v-3bbb236a]{background-color:var(--color-gray-150);color:var(--color-foreground);border-bottom:1px solid var(--color-border);border-left:1px solid var(--color-border);padding:var(--cell-py) var(--cell-px);text-align:left;font-weight:600;min-width:200px}.custom-th.text-center[data-v-3bbb236a]{text-align:center;min-width:100px}.custom-th[data-v-3bbb236a]:first-child{border-left:none}.custom-td[data-v-3bbb236a]{border-bottom:1px solid var(--color-border);border-left:1px solid var(--color-border);padding:var(--cell-py) var(--cell-px)}.custom-td.text-center[data-v-3bbb236a]{text-align:center}.custom-td[data-v-3bbb236a]:first-child{border-left:none}.custom-group-row td[data-v-3bbb236a]{background-color:var(--color-gray-100);border-top:1px solid var(--color-border);border-bottom:1px solid var(--color-border)}.custom-entity-row[data-v-3bbb236a]{background-color:var(--color-background);transition:background-color .1s ease}.custom-entity-row[data-v-3bbb236a]:hover{background-color:var(--color-gray-50)}.custom-entity-row:last-child td[data-v-3bbb236a]{border-bottom:none}.custom-active-cell[data-v-3bbb236a]{cursor:pointer}.custom-active-cell[data-v-3bbb236a]:hover{background-color:var(--color-accent)}.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-d2085008]{animation:blink-animation-d2085008 1s infinite}@keyframes blink-animation-d2085008{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-e5c8ab25]{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-ecb5df7c]{display:inline-flex;align-items:center;cursor:pointer}.breadcrumb-link[data-v-ecb5df7c]{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-ecb5df7c]:not(.current):not(.disabled):hover{color:var(--color-foreground)}.breadcrumb-link.current[data-v-ecb5df7c]{color:var(--color-foreground);font-weight:600;cursor:default}.breadcrumb-link.disabled[data-v-ecb5df7c]{opacity:.45;cursor:not-allowed;pointer-events:none}.breadcrumb-icon[data-v-ecb5df7c]{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-4b13b586]{max-height:70vh}.permission-matrix-wrapper[data-v-4b13b586]::-webkit-scrollbar{width:6px;height:6px}.permission-matrix-wrapper[data-v-4b13b586]::-webkit-scrollbar-track{background:transparent}.permission-matrix-wrapper[data-v-4b13b586]::-webkit-scrollbar-thumb{background:var(--color-gray-350);border-radius:3px}.permission-matrix-wrapper[data-v-4b13b586]::-webkit-scrollbar-thumb:hover{background:var(--color-gray-400)}.permission-list-wrapper[data-v-3adbf210]{border:1px solid var(--color-border);border-radius:.5rem;overflow:hidden;background-color:var(--color-background)}.custom-list-header[data-v-3adbf210]{background-color:var(--color-muted);border-bottom:1px solid var(--color-border);padding:var(--cell-py) var(--cell-px)}.custom-list-group-content .custom-list-item[data-v-3adbf210]{border-bottom:1px solid var(--color-border);padding:var(--cell-py) var(--cell-px);background-color:var(--color-background)}.custom-list-group-content .custom-list-item[data-v-3adbf210]:hover{background-color:var(--color-accent)}.custom-list-group-content .custom-list-item[data-v-3adbf210]:last-child{border-bottom:none}.custom-list-group-content+.custom-list-header[data-v-3adbf210],.custom-list-header+.custom-list-header[data-v-3adbf210]{border-top:1px solid var(--color-border)}.permission-list-wrapper>.custom-list-header[data-v-3adbf210]:last-child{border-bottom:none}.permission-matrix-wrapper[data-v-3bbb236a]{border:1px solid var(--color-border);background-color:var(--color-gray-100);border-radius:.5rem;overflow:auto}.custom-table[data-v-3bbb236a]{width:100%;border-collapse:collapse}.custom-th[data-v-3bbb236a]{background-color:var(--color-gray-150);color:var(--color-foreground);border-bottom:1px solid var(--color-border);border-left:1px solid var(--color-border);padding:var(--cell-py) var(--cell-px);text-align:left;font-weight:600;min-width:200px}.custom-th.text-center[data-v-3bbb236a]{text-align:center;min-width:100px}.custom-th[data-v-3bbb236a]:first-child{border-left:none}.custom-td[data-v-3bbb236a]{border-bottom:1px solid var(--color-border);border-left:1px solid var(--color-border);padding:var(--cell-py) var(--cell-px)}.custom-td.text-center[data-v-3bbb236a]{text-align:center}.custom-td[data-v-3bbb236a]:first-child{border-left:none}.custom-group-row td[data-v-3bbb236a]{background-color:var(--color-gray-100);border-top:1px solid var(--color-border);border-bottom:1px solid var(--color-border)}.custom-entity-row[data-v-3bbb236a]{background-color:var(--color-background);transition:background-color .1s ease}.custom-entity-row[data-v-3bbb236a]:hover{background-color:var(--color-gray-50)}.custom-entity-row:last-child td[data-v-3bbb236a]{border-bottom:none}.custom-active-cell[data-v-3bbb236a]{cursor:pointer}.custom-active-cell[data-v-3bbb236a]:hover{background-color:var(--color-accent)}.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
|