@aeria-ui/ui 0.0.148 → 0.0.150
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/dist/{_id_-35671aff.js → _id_-34d00aae.js} +1 -1
- package/dist/{activation-9b511196.js → activation-6f8407cf.js} +1 -1
- package/dist/components/aeria-icon/aeria-icon.vue.d.ts +0 -1
- package/dist/{index-17786102.js → index-11e4a76f.js} +1 -1
- package/dist/index-4fe17c52.js +82 -0
- package/dist/{index-da006cde.js → index-99f53a7b.js} +98 -100
- package/dist/{index-13f71246.js → index-ca9d143d.js} +1 -1
- package/dist/{redefine-password-a556ab1e.js → redefine-password-dcd5ab19.js} +1 -1
- package/dist/{signin-80046a53.js → signin-8b3c96f2.js} +1 -1
- package/dist/{signup-2b9cbf2c.js → signup-f7628f48.js} +1 -1
- package/dist/style.css +1 -1
- package/dist/ui.js +1 -1
- package/package.json +2 -2
- package/dist/index-54fc64aa.js +0 -66
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { defineComponent as r, watch as n, openBlock as c, createBlock as l } from "vue";
|
|
2
2
|
import { getGlobalStateManager as a, useStore as m } from "@aeria-ui/state-management";
|
|
3
|
-
import { e as s } from "./index-
|
|
3
|
+
import { e as s } from "./index-99f53a7b.js";
|
|
4
4
|
import "@aeria-ui/i18n";
|
|
5
5
|
import "@aeria-ui/core";
|
|
6
6
|
import "@aeriajs/common";
|
|
@@ -3,7 +3,7 @@ import { INSTANCE_VARS_SYMBOL as U } from "@aeria-ui/core";
|
|
|
3
3
|
import { useStore as $ } from "@aeria-ui/state-management";
|
|
4
4
|
import { useRouter as x } from "vue-router";
|
|
5
5
|
import { t as i } from "@aeria-ui/i18n";
|
|
6
|
-
import { A as E, _ as I, a as v } from "./index-
|
|
6
|
+
import { A as E, _ as I, a as v } from "./index-99f53a7b.js";
|
|
7
7
|
import "@aeriajs/common";
|
|
8
8
|
import "@aeria-ui/utils";
|
|
9
9
|
const N = { key: 0 }, T = {
|
|
@@ -2,7 +2,7 @@ import { defineComponent as k, ref as h, resolveDirective as A, openBlock as d,
|
|
|
2
2
|
import { useRouter as P } from "vue-router";
|
|
3
3
|
import { useStore as y } from "@aeria-ui/state-management";
|
|
4
4
|
import { STORAGE_NAMESPACE as b } from "@aeria-ui/core";
|
|
5
|
-
import { f as E, g as z, b as p, h as O, a as x, A as B, i as M } from "./index-
|
|
5
|
+
import { f as E, g as z, b as p, h as O, a as x, A as B, i as M } from "./index-99f53a7b.js";
|
|
6
6
|
import "@aeria-ui/i18n";
|
|
7
7
|
import "@aeriajs/common";
|
|
8
8
|
import "@aeria-ui/utils";
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
import { defineComponent as u, ref as m, openBlock as _, createBlock as f, withCtx as i, createVNode as d, withModifiers as w, createTextVNode as b, toDisplayString as h, unref as $ } from "vue";
|
|
2
|
+
import { useRouter as v } from "vue-router";
|
|
3
|
+
import { useI18n as x } from "@aeria-ui/i18n";
|
|
4
|
+
import { useStore as c } from "@aeria-ui/state-management";
|
|
5
|
+
import { h as y, _ as S, a as V } from "./index-99f53a7b.js";
|
|
6
|
+
import "@aeria-ui/core";
|
|
7
|
+
import "@aeriajs/common";
|
|
8
|
+
import "@aeria-ui/utils";
|
|
9
|
+
const P = /* @__PURE__ */ u({
|
|
10
|
+
__name: "index",
|
|
11
|
+
setup(k) {
|
|
12
|
+
const l = v(), t = c("user"), a = c("meta"), { t: r } = x(), o = m({
|
|
13
|
+
password: "",
|
|
14
|
+
confirmation: ""
|
|
15
|
+
}), p = async () => {
|
|
16
|
+
if (t.currentUser._id !== t.item._id) {
|
|
17
|
+
const { error: e } = await t.$actions.insert({
|
|
18
|
+
what: {
|
|
19
|
+
_id: t.item._id,
|
|
20
|
+
password: o.value.password
|
|
21
|
+
}
|
|
22
|
+
});
|
|
23
|
+
if (e) {
|
|
24
|
+
a.$actions.spawnModal({
|
|
25
|
+
title: `Error! ${e.httpStatus}`,
|
|
26
|
+
body: e.code
|
|
27
|
+
});
|
|
28
|
+
return;
|
|
29
|
+
}
|
|
30
|
+
} else {
|
|
31
|
+
const { error: e } = await t.$actions.custom("editProfile", {
|
|
32
|
+
_id: t.item._id,
|
|
33
|
+
password: o.value.password
|
|
34
|
+
});
|
|
35
|
+
if (e) {
|
|
36
|
+
a.$actions.spawnModal({
|
|
37
|
+
title: `Error! ${e.httpStatus}`,
|
|
38
|
+
body: e.code
|
|
39
|
+
});
|
|
40
|
+
return;
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
a.$actions.spawnModal({
|
|
44
|
+
title: `${r("done", {
|
|
45
|
+
capitalize: !0
|
|
46
|
+
})}!`,
|
|
47
|
+
body: r("password_has_been_changed", {
|
|
48
|
+
capitalize: !0
|
|
49
|
+
})
|
|
50
|
+
}), l.back();
|
|
51
|
+
};
|
|
52
|
+
return (e, n) => (_(), f(y, {
|
|
53
|
+
bordered: "",
|
|
54
|
+
style: { "--panel-max-width": "40rem" }
|
|
55
|
+
}, {
|
|
56
|
+
default: i(() => [
|
|
57
|
+
d(S, {
|
|
58
|
+
modelValue: o.value,
|
|
59
|
+
"onUpdate:modelValue": n[0] || (n[0] = (s) => o.value = s)
|
|
60
|
+
}, {
|
|
61
|
+
default: i(({ passwordError: s }) => [
|
|
62
|
+
d(V, {
|
|
63
|
+
class: "passchange__save-button",
|
|
64
|
+
disabled: !!s,
|
|
65
|
+
onClick: w(p, ["prevent"])
|
|
66
|
+
}, {
|
|
67
|
+
default: i(() => [
|
|
68
|
+
b(h($(r)("action.save", { capitalize: !0 })), 1)
|
|
69
|
+
]),
|
|
70
|
+
_: 2
|
|
71
|
+
}, 1032, ["disabled"])
|
|
72
|
+
]),
|
|
73
|
+
_: 1
|
|
74
|
+
}, 8, ["modelValue"])
|
|
75
|
+
]),
|
|
76
|
+
_: 1
|
|
77
|
+
}));
|
|
78
|
+
}
|
|
79
|
+
});
|
|
80
|
+
export {
|
|
81
|
+
P as default
|
|
82
|
+
};
|
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
import { defineComponent as
|
|
1
|
+
import { defineComponent as F, ref as ee, resolveDirective as ne, openBlock as t, createElementBlock as l, normalizeClass as W, Fragment as P, renderList as H, withDirectives as J, toDisplayString as C, createCommentVNode as b, createTextVNode as Q, unref as e, renderSlot as A, withModifiers as Re, inject as fe, computed as K, createElementVNode as I, mergeProps as U, createBlock as V, withCtx as y, resolveDynamicComponent as he, useCssVars as gt, normalizeProps as de, guardReactiveProps as Ce, Teleport as Ge, createVNode as L, onMounted as We, watch as ue, vModelDynamic as $t, onBeforeMount as ft, normalizeStyle as $e, provide as ge, createSlots as _e, vModelCheckbox as kt, onUnmounted as Vt, resolveComponent as Ct, Suspense as Ot, useSlots as At, h as It } from "vue";
|
|
2
2
|
import { t as q, useI18n as Bt } from "@aeria-ui/i18n";
|
|
3
|
-
import { INSTANCE_VARS_SYMBOL as St, useScrollObserver as Ye, useBreakpoints as Le, useMask as wt, PAGINATION_PER_PAGE_DEFAULTS as Tt, API_URL as vt, request as jt, useDebounce as yt, convertToSearchQuery as Rt, useParentCollectionStore as je, useCollectionStore as qt, useAction as Lt, convertFromSearchQuery as Mt, usePasswordPolicy as
|
|
4
|
-
import { arraysIntersect as bt, deepClone as Ae, getReferenceProperty as me, freshItem as
|
|
5
|
-
import { useStore as re, getStoreId as Me, useParentStore as Ee, STORE_ID as
|
|
3
|
+
import { INSTANCE_VARS_SYMBOL as St, useScrollObserver as Ye, useBreakpoints as Le, useMask as wt, PAGINATION_PER_PAGE_DEFAULTS as Tt, API_URL as vt, request as jt, useDebounce as yt, convertToSearchQuery as Rt, useParentCollectionStore as je, useCollectionStore as qt, useAction as Lt, convertFromSearchQuery as Mt, usePasswordPolicy as Ft } from "@aeria-ui/core";
|
|
4
|
+
import { arraysIntersect as bt, deepClone as Ae, getReferenceProperty as me, freshItem as zt, isRequired as ct, evaluateCondition as Qe, deepMerge as qe } from "@aeriajs/common";
|
|
5
|
+
import { useStore as re, getStoreId as Me, useParentStore as Ee, STORE_ID as Fe, getGlobalStateManager as Ke } from "@aeria-ui/state-management";
|
|
6
6
|
import { useRouter as Be } from "vue-router";
|
|
7
7
|
import { convertConditionToQuery as Ut, isDocumentComplete as Et, getObjectKey as Ht } from "@aeria-ui/utils";
|
|
8
8
|
const Dt = ["onClick"], Qt = { key: 0 }, Gt = {
|
|
9
9
|
key: 0,
|
|
10
10
|
class: "accordion__content"
|
|
11
|
-
}, Wt = /* @__PURE__ */
|
|
11
|
+
}, Wt = /* @__PURE__ */ F({
|
|
12
12
|
__name: "aeria-accordion",
|
|
13
13
|
props: {
|
|
14
14
|
enumerate: { type: Boolean },
|
|
@@ -51,7 +51,7 @@ const D = (p, r) => {
|
|
|
51
51
|
for (const [n, a] of r)
|
|
52
52
|
o[n] = a;
|
|
53
53
|
return o;
|
|
54
|
-
}, Ol = /* @__PURE__ */ D(Wt, [["__scopeId", "data-v-3ea933d4"]]), Yt = /* @__PURE__ */
|
|
54
|
+
}, Ol = /* @__PURE__ */ D(Wt, [["__scopeId", "data-v-3ea933d4"]]), Yt = /* @__PURE__ */ F({
|
|
55
55
|
__name: "aeria-badge",
|
|
56
56
|
props: {
|
|
57
57
|
large: { type: Boolean },
|
|
@@ -69,7 +69,7 @@ const D = (p, r) => {
|
|
|
69
69
|
], 2));
|
|
70
70
|
}
|
|
71
71
|
});
|
|
72
|
-
const Ve = /* @__PURE__ */ D(Yt, [["__scopeId", "data-v-4cbce7ef"]]), Kt = /* @__PURE__ */
|
|
72
|
+
const Ve = /* @__PURE__ */ D(Yt, [["__scopeId", "data-v-4cbce7ef"]]), Kt = /* @__PURE__ */ F({
|
|
73
73
|
__name: "aeria-bare-button",
|
|
74
74
|
props: {
|
|
75
75
|
disabled: { type: Boolean }
|
|
@@ -93,11 +93,10 @@ const Ve = /* @__PURE__ */ D(Yt, [["__scopeId", "data-v-4cbce7ef"]]), Kt = /* @_
|
|
|
93
93
|
const ye = /* @__PURE__ */ D(Kt, [["__scopeId", "data-v-1883f6a0"]]), Xt = ["href"], Jt = {
|
|
94
94
|
key: 0,
|
|
95
95
|
"data-component": "icon-label"
|
|
96
|
-
}, Zt = /* @__PURE__ */
|
|
96
|
+
}, Zt = /* @__PURE__ */ F({
|
|
97
97
|
__name: "aeria-icon",
|
|
98
98
|
props: {
|
|
99
99
|
icon: {},
|
|
100
|
-
size: {},
|
|
101
100
|
fill: {},
|
|
102
101
|
medium: { type: Boolean },
|
|
103
102
|
reactive: { type: Boolean },
|
|
@@ -120,7 +119,6 @@ const ye = /* @__PURE__ */ D(Kt, [["__scopeId", "data-v-1883f6a0"]]), Xt = ["hre
|
|
|
120
119
|
I("div", {
|
|
121
120
|
class: W([
|
|
122
121
|
"icon__icon",
|
|
123
|
-
{ "icon__icon--${size}": !!c.size },
|
|
124
122
|
{ "icon__icon--right": c.iconRight }
|
|
125
123
|
])
|
|
126
124
|
}, [
|
|
@@ -143,10 +141,10 @@ const ye = /* @__PURE__ */ D(Kt, [["__scopeId", "data-v-1883f6a0"]]), Xt = ["hre
|
|
|
143
141
|
], 2));
|
|
144
142
|
}
|
|
145
143
|
});
|
|
146
|
-
const Y = /* @__PURE__ */ D(Zt, [["__scopeId", "data-v-
|
|
144
|
+
const Y = /* @__PURE__ */ D(Zt, [["__scopeId", "data-v-263a2782"]]), Pt = { class: "button__content" }, Nt = {
|
|
147
145
|
key: 1,
|
|
148
146
|
class: "button__content"
|
|
149
|
-
}, xt = /* @__PURE__ */
|
|
147
|
+
}, xt = /* @__PURE__ */ F({
|
|
150
148
|
__name: "aeria-button",
|
|
151
149
|
props: {
|
|
152
150
|
size: {},
|
|
@@ -195,7 +193,7 @@ const Y = /* @__PURE__ */ D(Zt, [["__scopeId", "data-v-ab19820c"]]), Pt = { clas
|
|
|
195
193
|
}, 8, ["class", "disabled"]));
|
|
196
194
|
}
|
|
197
195
|
});
|
|
198
|
-
const pe = /* @__PURE__ */ D(xt, [["__scopeId", "data-v-e9f582db"]]), en = { class: "card__picture" }, tn = { class: "card__footer" }, nn = { class: "card__footer-upper" }, on = { class: "card__actions" }, an = { class: "card__badge" }, ln = /* @__PURE__ */
|
|
196
|
+
const pe = /* @__PURE__ */ D(xt, [["__scopeId", "data-v-e9f582db"]]), en = { class: "card__picture" }, tn = { class: "card__footer" }, nn = { class: "card__footer-upper" }, on = { class: "card__actions" }, an = { class: "card__badge" }, ln = /* @__PURE__ */ F({
|
|
199
197
|
__name: "aeria-card",
|
|
200
198
|
props: {
|
|
201
199
|
inactive: { type: Boolean },
|
|
@@ -231,7 +229,7 @@ const pe = /* @__PURE__ */ D(xt, [["__scopeId", "data-v-e9f582db"]]), en = { cla
|
|
|
231
229
|
const sn = /* @__PURE__ */ D(ln, [["__scopeId", "data-v-e7d2c665"]]), rn = { class: "panel__header-left" }, un = { key: 1 }, cn = {
|
|
232
230
|
key: 2,
|
|
233
231
|
style: { "margin-left": "auto" }
|
|
234
|
-
}, dn = /* @__PURE__ */
|
|
232
|
+
}, dn = /* @__PURE__ */ F({
|
|
235
233
|
__name: "aeria-panel",
|
|
236
234
|
props: {
|
|
237
235
|
closeHint: { type: Boolean, default: !1 },
|
|
@@ -365,7 +363,7 @@ const sn = /* @__PURE__ */ D(ln, [["__scopeId", "data-v-e7d2c665"]]), rn = { cla
|
|
|
365
363
|
const Se = /* @__PURE__ */ D(dn, [["__scopeId", "data-v-84cde0d8"]]), pn = { class: "content__body" }, _n = {
|
|
366
364
|
key: 0,
|
|
367
365
|
class: "content__section"
|
|
368
|
-
}, mn = { class: "content__item" }, fn = /* @__PURE__ */
|
|
366
|
+
}, mn = { class: "content__item" }, fn = /* @__PURE__ */ F({
|
|
369
367
|
__name: "aeria-context-menu",
|
|
370
368
|
props: {
|
|
371
369
|
actions: {},
|
|
@@ -506,7 +504,7 @@ const Se = /* @__PURE__ */ D(dn, [["__scopeId", "data-v-84cde0d8"]]), pn = { cla
|
|
|
506
504
|
};
|
|
507
505
|
}
|
|
508
506
|
});
|
|
509
|
-
const Ie = /* @__PURE__ */ D(fn, [["__scopeId", "data-v-34fb8e38"]]), vn = { class: "info__content" }, yn = /* @__PURE__ */
|
|
507
|
+
const Ie = /* @__PURE__ */ D(fn, [["__scopeId", "data-v-34fb8e38"]]), vn = { class: "info__content" }, yn = /* @__PURE__ */ F({
|
|
510
508
|
__name: "aeria-info",
|
|
511
509
|
props: {
|
|
512
510
|
where: { default: "top" }
|
|
@@ -546,7 +544,7 @@ const bn = /* @__PURE__ */ D(yn, [["__scopeId", "data-v-15a38847"]]), hn = { cla
|
|
|
546
544
|
}, kn = ["placeholder", "readonly", "value"], Vn = ["value"], Cn = {
|
|
547
545
|
key: 1,
|
|
548
546
|
class: "input__clipboard"
|
|
549
|
-
}, On = /* @__PURE__ */
|
|
547
|
+
}, On = /* @__PURE__ */ F({
|
|
550
548
|
__name: "aeria-input",
|
|
551
549
|
props: {
|
|
552
550
|
modelValue: {},
|
|
@@ -731,7 +729,7 @@ const bn = /* @__PURE__ */ D(yn, [["__scopeId", "data-v-15a38847"]]), hn = { cla
|
|
|
731
729
|
const Oe = /* @__PURE__ */ D(On, [["__scopeId", "data-v-b4ebd684"]]), An = {
|
|
732
730
|
key: 1,
|
|
733
731
|
value: ""
|
|
734
|
-
}, In = ["value", "data-selected"], Bn = /* @__PURE__ */
|
|
732
|
+
}, In = ["value", "data-selected"], Bn = /* @__PURE__ */ F({
|
|
735
733
|
__name: "aeria-select",
|
|
736
734
|
props: {
|
|
737
735
|
modelValue: {},
|
|
@@ -795,7 +793,7 @@ const Oe = /* @__PURE__ */ D(On, [["__scopeId", "data-v-b4ebd684"]]), An = {
|
|
|
795
793
|
const Xe = /* @__PURE__ */ D(Bn, [["__scopeId", "data-v-50bbcc3b"]]), Sn = { class: "pagination" }, wn = { class: "pagination__arrows" }, Tn = ["value"], jn = {
|
|
796
794
|
key: 0,
|
|
797
795
|
class: "pagination__summary"
|
|
798
|
-
}, Rn = /* @__PURE__ */
|
|
796
|
+
}, Rn = /* @__PURE__ */ F({
|
|
799
797
|
__name: "aeria-pagination",
|
|
800
798
|
props: {
|
|
801
799
|
pagination: {},
|
|
@@ -900,9 +898,9 @@ const Xe = /* @__PURE__ */ D(Bn, [["__scopeId", "data-v-50bbcc3b"]]), Sn = { cla
|
|
|
900
898
|
]));
|
|
901
899
|
}
|
|
902
900
|
});
|
|
903
|
-
const qn = /* @__PURE__ */ D(Rn, [["__scopeId", "data-v-ae7235de"]]), Ln = { class: "checkbox__text" }, Mn = ["innerHTML"],
|
|
901
|
+
const qn = /* @__PURE__ */ D(Rn, [["__scopeId", "data-v-ae7235de"]]), Ln = { class: "checkbox__text" }, Mn = ["innerHTML"], Fn = { class: "checkbox__hint" }, zn = ["innerHTML"], Un = {
|
|
904
902
|
inheritAttrs: !1
|
|
905
|
-
}, En = /* @__PURE__ */
|
|
903
|
+
}, En = /* @__PURE__ */ F({
|
|
906
904
|
...Un,
|
|
907
905
|
__name: "aeria-checkbox",
|
|
908
906
|
props: {
|
|
@@ -988,11 +986,11 @@ const qn = /* @__PURE__ */ D(Rn, [["__scopeId", "data-v-ae7235de"]]), Ln = { cla
|
|
|
988
986
|
innerHTML: (f = e(n)) != null && f.translate ? e(q)(e(_)) : e(_)
|
|
989
987
|
}, null, 8, Mn)) : A(i.$slots, "default", { key: 2 }, void 0, !0)
|
|
990
988
|
]),
|
|
991
|
-
I("div",
|
|
989
|
+
I("div", Fn, [
|
|
992
990
|
i.$slots.hint ? A(i.$slots, "hint", { key: 0 }, void 0, !0) : (B = e(n)) != null && B.hint ? (t(), l("div", {
|
|
993
991
|
key: 1,
|
|
994
992
|
innerHTML: e(n).hint
|
|
995
|
-
}, null, 8,
|
|
993
|
+
}, null, 8, zn)) : b("", !0)
|
|
996
994
|
])
|
|
997
995
|
])
|
|
998
996
|
], 2)), [
|
|
@@ -1003,7 +1001,7 @@ const qn = /* @__PURE__ */ D(Rn, [["__scopeId", "data-v-ae7235de"]]), Ln = { cla
|
|
|
1003
1001
|
});
|
|
1004
1002
|
const Hn = /* @__PURE__ */ D(En, [["__scopeId", "data-v-7e6efc77"]]), Dn = {
|
|
1005
1003
|
inheritAttrs: !1
|
|
1006
|
-
}, Qn = /* @__PURE__ */
|
|
1004
|
+
}, Qn = /* @__PURE__ */ F({
|
|
1007
1005
|
...Dn,
|
|
1008
1006
|
__name: "aeria-options",
|
|
1009
1007
|
props: {
|
|
@@ -1051,7 +1049,7 @@ const Hn = /* @__PURE__ */ D(En, [["__scopeId", "data-v-7e6efc77"]]), Dn = {
|
|
|
1051
1049
|
});
|
|
1052
1050
|
const Gn = /* @__PURE__ */ D(Qn, [["__scopeId", "data-v-bcfc697e"]]), Wn = { class: "switch-wrapper" }, Yn = { key: 1 }, Kn = {
|
|
1053
1051
|
inheritAttrs: !1
|
|
1054
|
-
}, Xn = /* @__PURE__ */
|
|
1052
|
+
}, Xn = /* @__PURE__ */ F({
|
|
1055
1053
|
...Kn,
|
|
1056
1054
|
__name: "aeria-switch",
|
|
1057
1055
|
props: {
|
|
@@ -1100,7 +1098,7 @@ const Gn = /* @__PURE__ */ D(Qn, [["__scopeId", "data-v-bcfc697e"]]), Wn = { cla
|
|
|
1100
1098
|
const Jn = /* @__PURE__ */ D(Xn, [["__scopeId", "data-v-ae45597d"]]), Zn = { class: "picture" }, Pn = { style: { position: "fixed", top: "50%", left: "50%", transform: "translate(-50%, -50%)" } }, Nn = ["src", "alt"], xn = {
|
|
1101
1099
|
key: 0,
|
|
1102
1100
|
class: "picture__meta"
|
|
1103
|
-
}, eo = ["src"], to = { key: 5 }, no = /* @__PURE__ */
|
|
1101
|
+
}, eo = ["src"], to = { key: 5 }, no = /* @__PURE__ */ F({
|
|
1104
1102
|
__name: "aeria-picture",
|
|
1105
1103
|
props: {
|
|
1106
1104
|
url: {},
|
|
@@ -1201,7 +1199,7 @@ const Jn = /* @__PURE__ */ D(Xn, [["__scopeId", "data-v-ae45597d"]]), Zn = { cla
|
|
|
1201
1199
|
const Ue = /* @__PURE__ */ D(no, [["__scopeId", "data-v-9e6a58b0"]]), oo = { class: "item" }, ao = { class: "item__presentation" }, lo = {
|
|
1202
1200
|
key: 1,
|
|
1203
1201
|
class: "item__name"
|
|
1204
|
-
}, so = { class: "item__size" }, io = /* @__PURE__ */
|
|
1202
|
+
}, so = { class: "item__size" }, io = /* @__PURE__ */ F({
|
|
1205
1203
|
__name: "aeria-file-item",
|
|
1206
1204
|
props: {
|
|
1207
1205
|
modelValue: {}
|
|
@@ -1250,7 +1248,7 @@ const Ue = /* @__PURE__ */ D(no, [["__scopeId", "data-v-9e6a58b0"]]), oo = { cla
|
|
|
1250
1248
|
const ro = /* @__PURE__ */ D(io, [["__scopeId", "data-v-85a82246"]]), uo = { class: "file" }, co = ["accept", "multiple"], po = {
|
|
1251
1249
|
key: 1,
|
|
1252
1250
|
class: "file__list"
|
|
1253
|
-
}, _o = /* @__PURE__ */
|
|
1251
|
+
}, _o = /* @__PURE__ */ F({
|
|
1254
1252
|
__name: "aeria-file",
|
|
1255
1253
|
props: {
|
|
1256
1254
|
modelValue: {},
|
|
@@ -1344,7 +1342,7 @@ const ro = /* @__PURE__ */ D(io, [["__scopeId", "data-v-85a82246"]]), uo = { cla
|
|
|
1344
1342
|
const mo = /* @__PURE__ */ D(_o, [["__scopeId", "data-v-9950a715"]]), fo = { class: "container" }, vo = {
|
|
1345
1343
|
key: 1,
|
|
1346
1344
|
class: "container__footer"
|
|
1347
|
-
}, yo = /* @__PURE__ */
|
|
1345
|
+
}, yo = /* @__PURE__ */ F({
|
|
1348
1346
|
__name: "aeria-search-container",
|
|
1349
1347
|
props: {
|
|
1350
1348
|
observeScroll: { type: Boolean }
|
|
@@ -1371,7 +1369,7 @@ const mo = /* @__PURE__ */ D(_o, [["__scopeId", "data-v-9950a715"]]), fo = { cla
|
|
|
1371
1369
|
]));
|
|
1372
1370
|
}
|
|
1373
1371
|
});
|
|
1374
|
-
const dt = /* @__PURE__ */ D(yo, [["__scopeId", "data-v-c86e2d2a"]]), bo = { class: "item__values" }, ho = /* @__PURE__ */
|
|
1372
|
+
const dt = /* @__PURE__ */ D(yo, [["__scopeId", "data-v-c86e2d2a"]]), bo = { class: "item__values" }, ho = /* @__PURE__ */ F({
|
|
1375
1373
|
__name: "aeria-search-item",
|
|
1376
1374
|
props: {
|
|
1377
1375
|
item: {},
|
|
@@ -1441,7 +1439,7 @@ const dt = /* @__PURE__ */ D(yo, [["__scopeId", "data-v-c86e2d2a"]]), bo = { cla
|
|
|
1441
1439
|
const De = /* @__PURE__ */ D(ho, [["__scopeId", "data-v-10ee6b3b"]]), go = { class: "search__panel" }, $o = { key: 1 }, ko = { key: 0 }, Vo = { key: 1 }, Co = { class: "search__summary" }, Oo = {
|
|
1442
1440
|
key: 1,
|
|
1443
1441
|
class: "search"
|
|
1444
|
-
}, Ao = { key: 0 },
|
|
1442
|
+
}, Ao = { key: 0 }, ze = 10, Io = /* @__PURE__ */ F({
|
|
1445
1443
|
__name: "aeria-search",
|
|
1446
1444
|
props: {
|
|
1447
1445
|
modelValue: {},
|
|
@@ -1457,7 +1455,7 @@ const De = /* @__PURE__ */ D(ho, [["__scopeId", "data-v-10ee6b3b"]]), go = { cla
|
|
|
1457
1455
|
emits: ["update:modelValue", "change", "update:panel"],
|
|
1458
1456
|
setup(p, { emit: r }) {
|
|
1459
1457
|
const o = p, n = re("meta"), a = me(o.property), c = o.panel !== void 0 ? K(() => o.panel) : ee(!1), u = r, _ = re(me(o.property).$ref), d = Me(), g = d ? Ee() : null, i = a.indexes;
|
|
1460
|
-
ge(
|
|
1458
|
+
ge(Fe, me(o.property).$ref), ge("innerInputLabel", !0), ge("omitInputLabels", !0);
|
|
1461
1459
|
const v = ee(o.modelValue), $ = ee({
|
|
1462
1460
|
data: [],
|
|
1463
1461
|
pagination: {}
|
|
@@ -1471,12 +1469,12 @@ const De = /* @__PURE__ */ D(ho, [["__scopeId", "data-v-10ee6b3b"]]), go = { cla
|
|
|
1471
1469
|
}, h = () => {
|
|
1472
1470
|
f.value.length < B.value.recordsTotal && (s.value += 1, oe());
|
|
1473
1471
|
}, G = async () => E.value.length === 0 ? _.$actions.custom("getAll", {
|
|
1474
|
-
limit:
|
|
1475
|
-
offset: s.value *
|
|
1472
|
+
limit: ze,
|
|
1473
|
+
offset: s.value * ze,
|
|
1476
1474
|
filters: Z()
|
|
1477
1475
|
}) : _.$actions.custom("getAll", {
|
|
1478
|
-
limit:
|
|
1479
|
-
offset: s.value *
|
|
1476
|
+
limit: ze,
|
|
1477
|
+
offset: s.value * ze,
|
|
1480
1478
|
filters: {
|
|
1481
1479
|
$text: {
|
|
1482
1480
|
$search: `"${E.value}"`,
|
|
@@ -1551,7 +1549,7 @@ const De = /* @__PURE__ */ D(ho, [["__scopeId", "data-v-10ee6b3b"]]), go = { cla
|
|
|
1551
1549
|
I("div", go, [
|
|
1552
1550
|
L(Oe, U({
|
|
1553
1551
|
modelValue: E.value,
|
|
1554
|
-
"onUpdate:modelValue": N[0] || (N[0] = (
|
|
1552
|
+
"onUpdate:modelValue": N[0] || (N[0] = (z) => E.value = z)
|
|
1555
1553
|
}, {
|
|
1556
1554
|
property: {
|
|
1557
1555
|
type: "string",
|
|
@@ -1565,19 +1563,19 @@ const De = /* @__PURE__ */ D(ho, [["__scopeId", "data-v-10ee6b3b"]]), go = { cla
|
|
|
1565
1563
|
onEndReached: h
|
|
1566
1564
|
}, {
|
|
1567
1565
|
default: y(() => [
|
|
1568
|
-
(t(!0), l(P, null, H(f.value, (
|
|
1569
|
-
item:
|
|
1566
|
+
(t(!0), l(P, null, H(f.value, (z) => (t(), V(De, U({ ref_for: !0 }, {
|
|
1567
|
+
item: z,
|
|
1570
1568
|
indexes: e(i),
|
|
1571
1569
|
property: k.property
|
|
1572
1570
|
}, {
|
|
1573
|
-
key: `matching-${
|
|
1571
|
+
key: `matching-${z._id}`,
|
|
1574
1572
|
modelValue: v.value,
|
|
1575
1573
|
"onUpdate:modelValue": N[1] || (N[1] = (X) => v.value = X)
|
|
1576
1574
|
}), null, 16, ["modelValue"]))), 128))
|
|
1577
1575
|
]),
|
|
1578
1576
|
_: 1
|
|
1579
1577
|
})) : (t(), l("div", $o, [
|
|
1580
|
-
M.value ? (t(), l("div", ko, C(e(q)("searching", { capitalize: !0 })) + "... ", 1)) : !e(_).loading.getAll && Object.values(E.value).filter((
|
|
1578
|
+
M.value ? (t(), l("div", ko, C(e(q)("searching", { capitalize: !0 })) + "... ", 1)) : !e(_).loading.getAll && Object.values(E.value).filter((z) => !!z).length > 0 && !("items" in k.property && ((m = k.modelValue) != null && m.length) || !Array.isArray(k.modelValue) && ((T = k.modelValue) != null && T._id)) ? (t(), l("div", Vo, C(e(q)("no_results", { capitalize: !0 })), 1)) : b("", !0)
|
|
1581
1579
|
]))
|
|
1582
1580
|
]),
|
|
1583
1581
|
I("div", Co, C(e(q)("showing", { capitalize: !0 })) + " " + C(f.value.length) + " " + C(e(q)("of")) + " " + C(B.value.recordsTotal), 1)
|
|
@@ -1669,13 +1667,13 @@ const Bo = /* @__PURE__ */ D(Io, [["__scopeId", "data-v-b5466d6b"]]), pt = (p, r
|
|
|
1669
1667
|
const a = re(n.$ref, o), c = Ae(a.$freshItem);
|
|
1670
1668
|
return p.push(c);
|
|
1671
1669
|
}
|
|
1672
|
-
return "properties" in n ? p.push(
|
|
1670
|
+
return "properties" in n ? p.push(zt(n)) : "type" in n && n.type === "boolean" ? p.push({}) : p.push(null);
|
|
1673
1671
|
}, wo = (p, r) => {
|
|
1674
1672
|
p.splice(r, 1);
|
|
1675
1673
|
}, To = {
|
|
1676
1674
|
key: 0,
|
|
1677
1675
|
class: "form__header"
|
|
1678
|
-
}, jo = { class: "form__fieldset" }, Ro = { key: 0 }, qo = ["innerHTML"], Lo = ["onInput"], Mo = { key: 4 },
|
|
1676
|
+
}, jo = { class: "form__fieldset" }, Ro = { key: 0 }, qo = ["innerHTML"], Lo = ["onInput"], Mo = { key: 4 }, Fo = { value: "true" }, zo = { value: "false" }, Uo = {
|
|
1679
1677
|
key: 5,
|
|
1680
1678
|
style: { display: "grid", "row-gap": ".4rem" }
|
|
1681
1679
|
}, Eo = { key: 0 }, Ho = {
|
|
@@ -1687,7 +1685,7 @@ const Bo = /* @__PURE__ */ D(Io, [["__scopeId", "data-v-b5466d6b"]]), pt = (p, r
|
|
|
1687
1685
|
}, Qo = { key: 0 }, Go = { key: 1 }, Wo = {
|
|
1688
1686
|
key: 2,
|
|
1689
1687
|
class: "form__footer"
|
|
1690
|
-
}, Yo = /* @__PURE__ */
|
|
1688
|
+
}, Yo = /* @__PURE__ */ F({
|
|
1691
1689
|
__name: "aeria-form",
|
|
1692
1690
|
props: {
|
|
1693
1691
|
modelValue: {},
|
|
@@ -1731,32 +1729,32 @@ const Bo = /* @__PURE__ */ D(Io, [["__scopeId", "data-v-b5466d6b"]]), pt = (p, r
|
|
|
1731
1729
|
type: "string",
|
|
1732
1730
|
readOnly: !0
|
|
1733
1731
|
}), n.includeTimestamps) {
|
|
1734
|
-
const
|
|
1732
|
+
const z = {
|
|
1735
1733
|
type: "string",
|
|
1736
1734
|
format: "date-time",
|
|
1737
1735
|
readOnly: !0,
|
|
1738
1736
|
isTimestamp: !0
|
|
1739
1737
|
};
|
|
1740
|
-
m.created_at || (T.created_at =
|
|
1738
|
+
m.created_at || (T.created_at = z), m.created_at || (T.updated_at = z);
|
|
1741
1739
|
}
|
|
1742
1740
|
return Object.assign(T, m), T;
|
|
1743
1741
|
}), v = K(() => n.layout || (d == null ? void 0 : d.description.formLayout)), $ = (m) => {
|
|
1744
1742
|
const T = fe(m, n[m]);
|
|
1745
1743
|
return n[m] && ge(m, n[m]), T;
|
|
1746
1744
|
}, f = K(() => n.validationErrors !== null ? n.validationErrors : d == null ? void 0 : d.validationErrors), B = $("formComponents") || {}, s = $("propertyComponents") || {}, M = $("omitFormHeader"), E = $("omitInputLabels"), Z = $("innerInputLabel");
|
|
1747
|
-
u && ge(
|
|
1748
|
-
const h = (m) => i.value ? Object.entries(i.value).filter(([T,
|
|
1745
|
+
u && ge(Fe, u), ge("searchOnly", n.searchOnly);
|
|
1746
|
+
const h = (m) => i.value ? Object.entries(i.value).filter(([T, z]) => !z.noForm && m([
|
|
1749
1747
|
T,
|
|
1750
|
-
|
|
1748
|
+
z
|
|
1751
1749
|
])) : null, G = (m, T) => {
|
|
1752
1750
|
var X;
|
|
1753
1751
|
if (n.searchOnly || !u || n.includeId && m === "_id" || n.includeTimestamps && T.isTimestamp)
|
|
1754
1752
|
return !0;
|
|
1755
|
-
const
|
|
1756
|
-
return !
|
|
1753
|
+
const z = n.property && "properties" in n.property ? n.property.form : (X = d == null ? void 0 : d.description) == null ? void 0 : X.form;
|
|
1754
|
+
return !z || z.includes(m);
|
|
1757
1755
|
}, oe = h(([m, T]) => G(m, T)), w = Le(), te = {}, ke = (m, T) => {
|
|
1758
1756
|
var R, ie, j, se;
|
|
1759
|
-
const
|
|
1757
|
+
const z = [], X = ((ie = (R = v.value) == null ? void 0 : R.fields) == null ? void 0 : ie[m]) || ((se = (j = v.value) == null ? void 0 : j.fields) == null ? void 0 : se.$default);
|
|
1760
1758
|
if (!T)
|
|
1761
1759
|
return;
|
|
1762
1760
|
if (X != null && X.if && !n.searchOnly) {
|
|
@@ -1767,35 +1765,35 @@ const Bo = /* @__PURE__ */ D(Io, [["__scopeId", "data-v-b5466d6b"]]), pt = (p, r
|
|
|
1767
1765
|
ve.satisfied || (te[m] && (d ? n.modelValue[m] = typeof d.$freshItem[m] == "object" ? Ae(d.$freshItem[m]) : d.$freshItem[m] : n.modelValue[m] = [
|
|
1768
1766
|
void 0,
|
|
1769
1767
|
null
|
|
1770
|
-
].includes(n.modelValue[m]) ? null : n.modelValue[m].constructor()),
|
|
1768
|
+
].includes(n.modelValue[m]) ? null : n.modelValue[m].constructor()), z.push("display: none;")), te[m] = ve.satisfied;
|
|
1771
1769
|
}
|
|
1772
1770
|
const S = w.value.md && (X == null ? void 0 : X.span) || 6;
|
|
1773
|
-
return
|
|
1771
|
+
return z.push(`
|
|
1774
1772
|
--field-span: ${S};
|
|
1775
1773
|
grid-column: span var(--field-span) / span var(--field-span);
|
|
1776
|
-
`), X && (X.verticalSpacing &&
|
|
1774
|
+
`), X && (X.verticalSpacing && z.push(`
|
|
1777
1775
|
--vertical-spacing: ${X.verticalSpacing};
|
|
1778
1776
|
padding: var(--vertical-spacing) 0;
|
|
1779
|
-
`), X.separator &&
|
|
1777
|
+
`), X.separator && z.push(`
|
|
1780
1778
|
border-top: 1px solid var(--theme-border-color);
|
|
1781
1779
|
border-width: 1px 0 1px 0;
|
|
1782
1780
|
padding: 1rem 0;
|
|
1783
1781
|
margin: 1rem 0;
|
|
1784
|
-
`)),
|
|
1782
|
+
`)), z.join("");
|
|
1785
1783
|
}, ce = (m) => m === null || m instanceof Object && !Object.keys(m).length, ae = K(() => n.required ? n.required : n.property && "required" in n.property ? n.property.required : d == null ? void 0 : d.description.required), O = K(() => n.form ? Et(
|
|
1786
1784
|
n.modelValue,
|
|
1787
1785
|
n.form,
|
|
1788
1786
|
ae.value,
|
|
1789
1787
|
d == null ? void 0 : d.description
|
|
1790
1788
|
) : !0), k = (m, T) => {
|
|
1791
|
-
var
|
|
1792
|
-
return (
|
|
1789
|
+
var z;
|
|
1790
|
+
return (z = f.value) != null && z[m] && (typeof f.value[m].index != "number" || f.value[m].index === T) ? f.value[m].errors : null;
|
|
1793
1791
|
}, N = (m) => {
|
|
1794
1792
|
if (!(_ || m.readOnly) && !n.parentPropertyName && !n.parentCollection && !g.value)
|
|
1795
1793
|
return g.value = !0, !0;
|
|
1796
1794
|
};
|
|
1797
1795
|
return (m, T) => {
|
|
1798
|
-
const
|
|
1796
|
+
const z = ne("clickable"), X = ne("focus");
|
|
1799
1797
|
return t(), l("form", {
|
|
1800
1798
|
class: "form",
|
|
1801
1799
|
style: $e(`row-gap: ${e(M) ? ".8rem" : "var(--form-internal-gap, 1.6rem);"};`)
|
|
@@ -1885,8 +1883,8 @@ const Bo = /* @__PURE__ */ D(Io, [["__scopeId", "data-v-b5466d6b"]]), pt = (p, r
|
|
|
1885
1883
|
}
|
|
1886
1884
|
}), {
|
|
1887
1885
|
default: y(() => [
|
|
1888
|
-
I("option",
|
|
1889
|
-
I("option",
|
|
1886
|
+
I("option", Fo, C(e(q)("yes")), 1),
|
|
1887
|
+
I("option", zo, C(e(q)("no")), 1)
|
|
1890
1888
|
]),
|
|
1891
1889
|
_: 2
|
|
1892
1890
|
}, 1040, ["model-value", "onUpdate:modelValue"])
|
|
@@ -1925,7 +1923,7 @@ const Bo = /* @__PURE__ */ D(Io, [["__scopeId", "data-v-b5466d6b"]]), pt = (p, r
|
|
|
1925
1923
|
]),
|
|
1926
1924
|
_: 2
|
|
1927
1925
|
}, 1032, ["onClick"])), [
|
|
1928
|
-
[
|
|
1926
|
+
[z]
|
|
1929
1927
|
]),
|
|
1930
1928
|
(t(), V(he(e(pt)(R, e(B))), U({
|
|
1931
1929
|
modelValue: m.modelValue[S][we],
|
|
@@ -1985,11 +1983,11 @@ const Bo = /* @__PURE__ */ D(Io, [["__scopeId", "data-v-b5466d6b"]]), pt = (p, r
|
|
|
1985
1983
|
};
|
|
1986
1984
|
}
|
|
1987
1985
|
});
|
|
1988
|
-
const He = /* @__PURE__ */ D(Yo, [["__scopeId", "data-v-e9376cc1"]]), Ko = /* @__PURE__ */
|
|
1986
|
+
const He = /* @__PURE__ */ D(Yo, [["__scopeId", "data-v-e9376cc1"]]), Ko = /* @__PURE__ */ F({
|
|
1989
1987
|
__name: "aeria-filter-panel",
|
|
1990
1988
|
emits: ["update:modelValue"],
|
|
1991
1989
|
setup(p, { emit: r }) {
|
|
1992
|
-
const o = r, n = Ee(), a = Be(), c = e(fe(
|
|
1990
|
+
const o = r, n = Ee(), a = Be(), c = e(fe(Fe)), u = () => {
|
|
1993
1991
|
if (n.pagination.offset = 0, n.$actions.filter(), o("update:modelValue", !1), "query" in a.currentRoute && a.currentRoute.query && typeof a.currentRoute.query == "object") {
|
|
1994
1992
|
const _ = a.currentRoute.query;
|
|
1995
1993
|
for (const d of Object.keys(_))
|
|
@@ -2050,7 +2048,7 @@ const He = /* @__PURE__ */ D(Yo, [["__scopeId", "data-v-e9376cc1"]]), Ko = /* @_
|
|
|
2050
2048
|
_: 1
|
|
2051
2049
|
}, 8, ["title"]));
|
|
2052
2050
|
}
|
|
2053
|
-
}), Xo = /* @__PURE__ */
|
|
2051
|
+
}), Xo = /* @__PURE__ */ F({
|
|
2054
2052
|
__name: "aeria-insert-panel",
|
|
2055
2053
|
props: {
|
|
2056
2054
|
individualActions: {},
|
|
@@ -2227,7 +2225,7 @@ const He = /* @__PURE__ */ D(Yo, [["__scopeId", "data-v-e9376cc1"]]), Ko = /* @_
|
|
|
2227
2225
|
}, ka = { class: "table__cell-actions" }, Va = {
|
|
2228
2226
|
key: 2,
|
|
2229
2227
|
class: "no-print table__mobile-actions"
|
|
2230
|
-
}, Ca = ["id"], Oa = { key: 1 }, Aa = ["colspan"], Ia = { class: "table__empty" }, Ba = /* @__PURE__ */
|
|
2228
|
+
}, Ca = ["id"], Oa = { key: 1 }, Aa = ["colspan"], Ia = { class: "table__empty" }, Ba = /* @__PURE__ */ F({
|
|
2231
2229
|
__name: "aeria-table",
|
|
2232
2230
|
props: {
|
|
2233
2231
|
columns: {},
|
|
@@ -2486,7 +2484,7 @@ const He = /* @__PURE__ */ D(Yo, [["__scopeId", "data-v-e9376cc1"]]), Ko = /* @_
|
|
|
2486
2484
|
};
|
|
2487
2485
|
}
|
|
2488
2486
|
});
|
|
2489
|
-
const Sa = /* @__PURE__ */ D(Ba, [["__scopeId", "data-v-89303bb6"]]), wa = /* @__PURE__ */
|
|
2487
|
+
const Sa = /* @__PURE__ */ D(Ba, [["__scopeId", "data-v-89303bb6"]]), wa = /* @__PURE__ */ F({
|
|
2490
2488
|
__name: "aeria-tabular",
|
|
2491
2489
|
props: {
|
|
2492
2490
|
individualActions: {},
|
|
@@ -2519,7 +2517,7 @@ const Sa = /* @__PURE__ */ D(Ba, [["__scopeId", "data-v-89303bb6"]]), wa = /* @_
|
|
|
2519
2517
|
]), 1040)) : b("", !0)
|
|
2520
2518
|
]));
|
|
2521
2519
|
}
|
|
2522
|
-
}), Ta = /* @__PURE__ */
|
|
2520
|
+
}), Ta = /* @__PURE__ */ F({
|
|
2523
2521
|
__name: "aeria-grid",
|
|
2524
2522
|
props: {
|
|
2525
2523
|
list: { type: Boolean }
|
|
@@ -2538,7 +2536,7 @@ const Sa = /* @__PURE__ */ D(Ba, [["__scopeId", "data-v-89303bb6"]]), wa = /* @_
|
|
|
2538
2536
|
const ja = /* @__PURE__ */ D(Ta, [["__scopeId", "data-v-4839c834"]]), Ra = { key: 0 }, qa = {
|
|
2539
2537
|
key: 1,
|
|
2540
2538
|
class: "card__information"
|
|
2541
|
-
}, La = /* @__PURE__ */
|
|
2539
|
+
}, La = /* @__PURE__ */ F({
|
|
2542
2540
|
__name: "aeria-grid",
|
|
2543
2541
|
props: {
|
|
2544
2542
|
individualActions: {},
|
|
@@ -2638,16 +2636,16 @@ const _t = /* @__PURE__ */ D(La, [["__scopeId", "data-v-cfdb8783"]]), Ma = (p) =
|
|
|
2638
2636
|
tabular: wa,
|
|
2639
2637
|
grid: _t,
|
|
2640
2638
|
list: _t
|
|
2641
|
-
})[p],
|
|
2639
|
+
})[p], Fa = {
|
|
2642
2640
|
key: 2,
|
|
2643
2641
|
class: "crud__controls"
|
|
2644
|
-
},
|
|
2642
|
+
}, za = {
|
|
2645
2643
|
key: 0,
|
|
2646
2644
|
class: "crud__search"
|
|
2647
2645
|
}, Ua = { class: "crud__actions" }, Ea = { class: "crud__context-badge" }, Ha = { key: 0 }, Da = {
|
|
2648
2646
|
key: 3,
|
|
2649
2647
|
class: "crud__pagination"
|
|
2650
|
-
}, mt = 30, Qa = /* @__PURE__ */
|
|
2648
|
+
}, mt = 30, Qa = /* @__PURE__ */ F({
|
|
2651
2649
|
__name: "aeria-crud",
|
|
2652
2650
|
props: {
|
|
2653
2651
|
collection: {},
|
|
@@ -2751,13 +2749,13 @@ const _t = /* @__PURE__ */ D(La, [["__scopeId", "data-v-cfdb8783"]]), Ma = (p) =
|
|
|
2751
2749
|
s.$actions.setItem(k.params), o.value = "edit";
|
|
2752
2750
|
else if (k.name === "duplicate") {
|
|
2753
2751
|
await N;
|
|
2754
|
-
const m = Object.entries(s.item).reduce((T, [
|
|
2755
|
-
if (!(
|
|
2752
|
+
const m = Object.entries(s.item).reduce((T, [z, X]) => {
|
|
2753
|
+
if (!(z in s.properties))
|
|
2756
2754
|
return {
|
|
2757
2755
|
...T,
|
|
2758
|
-
[
|
|
2756
|
+
[z]: X
|
|
2759
2757
|
};
|
|
2760
|
-
const S = s.properties[
|
|
2758
|
+
const S = s.properties[z];
|
|
2761
2759
|
if (S.readOnly)
|
|
2762
2760
|
return T;
|
|
2763
2761
|
const R = (ie) => {
|
|
@@ -2774,7 +2772,7 @@ const _t = /* @__PURE__ */ D(La, [["__scopeId", "data-v-cfdb8783"]]), Ma = (p) =
|
|
|
2774
2772
|
};
|
|
2775
2773
|
return X = Array.isArray(X) ? X.map(R) : R(X), {
|
|
2776
2774
|
...T,
|
|
2777
|
-
[
|
|
2775
|
+
[z]: X
|
|
2778
2776
|
};
|
|
2779
2777
|
}, {});
|
|
2780
2778
|
s.$actions.setItem(m), delete s.item._id, s.referenceItem = {}, o.value = "duplicate";
|
|
@@ -2792,8 +2790,8 @@ const _t = /* @__PURE__ */ D(La, [["__scopeId", "data-v-cfdb8783"]]), Ma = (p) =
|
|
|
2792
2790
|
...O
|
|
2793
2791
|
}));
|
|
2794
2792
|
}), ae = K(() => s.actions.filter((O) => !O.button));
|
|
2795
|
-
return ge(
|
|
2796
|
-
var m, T,
|
|
2793
|
+
return ge(Fe, K(() => u.collection)), (O, k) => {
|
|
2794
|
+
var m, T, z, X, S, R, ie;
|
|
2797
2795
|
const N = ne("clickable"), le = ne("loading");
|
|
2798
2796
|
return t(), l(P, null, [
|
|
2799
2797
|
n.value ? (t(), V(Ko, {
|
|
@@ -2835,8 +2833,8 @@ const _t = /* @__PURE__ */ D(La, [["__scopeId", "data-v-cfdb8783"]]), Ma = (p) =
|
|
|
2835
2833
|
])
|
|
2836
2834
|
}))
|
|
2837
2835
|
]), 1040, ["visible"])) : b("", !0),
|
|
2838
|
-
!O.noActions && (e(s).description.search || Object.keys(e(s).availableFilters).length > 0 || ((m = e(s)) == null ? void 0 : m.actions.length) > 0 || O.$slots.actions || !O.noLayoutToggle && e(s).description.layout && ((T = e(s).description.layout) == null ? void 0 : T.name) !== "tabular") ? (t(), l("div",
|
|
2839
|
-
e(s).description.search ? (t(), l("div",
|
|
2836
|
+
!O.noActions && (e(s).description.search || Object.keys(e(s).availableFilters).length > 0 || ((m = e(s)) == null ? void 0 : m.actions.length) > 0 || O.$slots.actions || !O.noLayoutToggle && e(s).description.layout && ((T = e(s).description.layout) == null ? void 0 : T.name) !== "tabular") ? (t(), l("div", Fa, [
|
|
2837
|
+
e(s).description.search ? (t(), l("div", za, [
|
|
2840
2838
|
L(Oe, U({
|
|
2841
2839
|
modelValue: e(s).textQuery,
|
|
2842
2840
|
"onUpdate:modelValue": k[3] || (k[3] = (j) => e(s).textQuery = j)
|
|
@@ -2849,7 +2847,7 @@ const _t = /* @__PURE__ */ D(La, [["__scopeId", "data-v-cfdb8783"]]), Ma = (p) =
|
|
|
2849
2847
|
}), null, 16, ["modelValue"])
|
|
2850
2848
|
])) : b("", !0),
|
|
2851
2849
|
I("div", Ua, [
|
|
2852
|
-
ae.value.length > 0 || !O.noLayoutToggle && e(s).description.layout && ((
|
|
2850
|
+
ae.value.length > 0 || !O.noLayoutToggle && e(s).description.layout && ((z = e(s).description.layout) == null ? void 0 : z.name) !== "tabular" ? (t(), V(Ie, { key: 0 }, _e({
|
|
2853
2851
|
default: y(() => [
|
|
2854
2852
|
L(pe, {
|
|
2855
2853
|
variant: "alt",
|
|
@@ -3017,7 +3015,7 @@ const _t = /* @__PURE__ */ D(La, [["__scopeId", "data-v-cfdb8783"]]), Ma = (p) =
|
|
|
3017
3015
|
};
|
|
3018
3016
|
}
|
|
3019
3017
|
});
|
|
3020
|
-
const Al = /* @__PURE__ */ D(Qa, [["__scopeId", "data-v-d64cb42a"]]), Ga = { class: "prompt" }, Wa = /* @__PURE__ */
|
|
3018
|
+
const Al = /* @__PURE__ */ D(Qa, [["__scopeId", "data-v-d64cb42a"]]), Ga = { class: "prompt" }, Wa = /* @__PURE__ */ F({
|
|
3021
3019
|
__name: "aeria-prompt",
|
|
3022
3020
|
props: {
|
|
3023
3021
|
title: {},
|
|
@@ -3063,7 +3061,7 @@ const Al = /* @__PURE__ */ D(Qa, [["__scopeId", "data-v-d64cb42a"]]), Ga = { cla
|
|
|
3063
3061
|
}, 8, ["title"]));
|
|
3064
3062
|
}
|
|
3065
3063
|
});
|
|
3066
|
-
const Ya = /* @__PURE__ */ D(Wa, [["__scopeId", "data-v-4cbfd28f"]]), Ka = { class: "toast__content" }, Xa = { class: "toast__time" }, Ja = /* @__PURE__ */
|
|
3064
|
+
const Ya = /* @__PURE__ */ D(Wa, [["__scopeId", "data-v-4cbfd28f"]]), Ka = { class: "toast__content" }, Xa = { class: "toast__time" }, Ja = /* @__PURE__ */ F({
|
|
3067
3065
|
__name: "aeria-toast",
|
|
3068
3066
|
props: {
|
|
3069
3067
|
idx: {},
|
|
@@ -3097,7 +3095,7 @@ const Ya = /* @__PURE__ */ D(Wa, [["__scopeId", "data-v-4cbfd28f"]]), Ka = { cla
|
|
|
3097
3095
|
};
|
|
3098
3096
|
}
|
|
3099
3097
|
});
|
|
3100
|
-
const Za = /* @__PURE__ */ D(Ja, [["__scopeId", "data-v-606d47bf"]]), Pa = ["innerHTML"], Na = { class: "main__toasts" }, xa = ["innerHTML"], el = /* @__PURE__ */
|
|
3098
|
+
const Za = /* @__PURE__ */ D(Ja, [["__scopeId", "data-v-606d47bf"]]), Pa = ["innerHTML"], Na = { class: "main__toasts" }, xa = ["innerHTML"], el = /* @__PURE__ */ F({
|
|
3101
3099
|
__name: "aeria-main",
|
|
3102
3100
|
setup(p) {
|
|
3103
3101
|
const r = re("meta"), o = K(() => r.themeOverride || r.theme);
|
|
@@ -3192,7 +3190,7 @@ const Bl = /* @__PURE__ */ D(tl, [["render", ol], ["__scopeId", "data-v-3cfef7fb
|
|
|
3192
3190
|
}, il = ["onClick"], rl = {
|
|
3193
3191
|
key: 1,
|
|
3194
3192
|
class: "tabs__context-menu"
|
|
3195
|
-
}, ul = ["onClick"], cl = /* @__PURE__ */
|
|
3193
|
+
}, ul = ["onClick"], cl = /* @__PURE__ */ F({
|
|
3196
3194
|
__name: "aeria-tabs",
|
|
3197
3195
|
props: {
|
|
3198
3196
|
query: {},
|
|
@@ -3275,7 +3273,7 @@ const Bl = /* @__PURE__ */ D(tl, [["render", ol], ["__scopeId", "data-v-3cfef7fb
|
|
|
3275
3273
|
};
|
|
3276
3274
|
}
|
|
3277
3275
|
});
|
|
3278
|
-
const dl = /* @__PURE__ */ D(cl, [["__scopeId", "data-v-a20914ab"]]), pl =
|
|
3276
|
+
const dl = /* @__PURE__ */ D(cl, [["__scopeId", "data-v-a20914ab"]]), pl = F({
|
|
3279
3277
|
props: {
|
|
3280
3278
|
initialValue: String,
|
|
3281
3279
|
promise: Promise
|
|
@@ -3286,7 +3284,7 @@ const dl = /* @__PURE__ */ D(cl, [["__scopeId", "data-v-a20914ab"]]), pl = z({
|
|
|
3286
3284
|
r.value = o;
|
|
3287
3285
|
}), () => It("div", String(r.value));
|
|
3288
3286
|
}
|
|
3289
|
-
}), _l = ["onClick"], ml = { key: 1 }, fl = /* @__PURE__ */
|
|
3287
|
+
}), _l = ["onClick"], ml = { key: 1 }, fl = /* @__PURE__ */ F({
|
|
3290
3288
|
__name: "aeria-crud-topbar",
|
|
3291
3289
|
props: {
|
|
3292
3290
|
collection: {}
|
|
@@ -3337,7 +3335,7 @@ const dl = /* @__PURE__ */ D(cl, [["__scopeId", "data-v-a20914ab"]]), pl = z({
|
|
|
3337
3335
|
const vl = /* @__PURE__ */ D(fl, [["__scopeId", "data-v-f0a45677"]]), yl = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
3338
3336
|
__proto__: null,
|
|
3339
3337
|
default: vl
|
|
3340
|
-
}, Symbol.toStringTag, { value: "Module" })), Sl = /* @__PURE__ */
|
|
3338
|
+
}, Symbol.toStringTag, { value: "Module" })), Sl = /* @__PURE__ */ F({
|
|
3341
3339
|
__name: "aeria-password-form",
|
|
3342
3340
|
props: {
|
|
3343
3341
|
modelValue: {}
|
|
@@ -3345,8 +3343,8 @@ const vl = /* @__PURE__ */ D(fl, [["__scopeId", "data-v-f0a45677"]]), yl = /* @_
|
|
|
3345
3343
|
emits: ["update:modelValue"],
|
|
3346
3344
|
setup(p) {
|
|
3347
3345
|
const r = p;
|
|
3348
|
-
ge(
|
|
3349
|
-
const o =
|
|
3346
|
+
ge(Fe, null);
|
|
3347
|
+
const o = Ft(), n = K(() => o(
|
|
3350
3348
|
r.modelValue.password,
|
|
3351
3349
|
r.modelValue.confirmation
|
|
3352
3350
|
));
|
|
@@ -3391,7 +3389,7 @@ const vl = /* @__PURE__ */ D(fl, [["__scopeId", "data-v-f0a45677"]]), yl = /* @_
|
|
|
3391
3389
|
{
|
|
3392
3390
|
path: "signin",
|
|
3393
3391
|
name: "/user/signin",
|
|
3394
|
-
component: () => import("./signin-
|
|
3392
|
+
component: () => import("./signin-8b3c96f2.js"),
|
|
3395
3393
|
meta: {
|
|
3396
3394
|
title: "Sign in"
|
|
3397
3395
|
}
|
|
@@ -3399,7 +3397,7 @@ const vl = /* @__PURE__ */ D(fl, [["__scopeId", "data-v-f0a45677"]]), yl = /* @_
|
|
|
3399
3397
|
{
|
|
3400
3398
|
path: "signup",
|
|
3401
3399
|
name: "/user/signup",
|
|
3402
|
-
component: () => import("./signup-
|
|
3400
|
+
component: () => import("./signup-f7628f48.js"),
|
|
3403
3401
|
meta: {
|
|
3404
3402
|
title: "Sign up"
|
|
3405
3403
|
}
|
|
@@ -3407,7 +3405,7 @@ const vl = /* @__PURE__ */ D(fl, [["__scopeId", "data-v-f0a45677"]]), yl = /* @_
|
|
|
3407
3405
|
{
|
|
3408
3406
|
path: "redefine-password",
|
|
3409
3407
|
name: "/user/redefine-password",
|
|
3410
|
-
component: () => import("./redefine-password-
|
|
3408
|
+
component: () => import("./redefine-password-dcd5ab19.js"),
|
|
3411
3409
|
meta: {
|
|
3412
3410
|
title: "Redefine password"
|
|
3413
3411
|
}
|
|
@@ -3415,7 +3413,7 @@ const vl = /* @__PURE__ */ D(fl, [["__scopeId", "data-v-f0a45677"]]), yl = /* @_
|
|
|
3415
3413
|
{
|
|
3416
3414
|
path: "activation",
|
|
3417
3415
|
name: "/user/activation",
|
|
3418
|
-
component: () => import("./activation-
|
|
3416
|
+
component: () => import("./activation-6f8407cf.js"),
|
|
3419
3417
|
meta: {
|
|
3420
3418
|
title: "Activate user"
|
|
3421
3419
|
}
|
|
@@ -3437,7 +3435,7 @@ const vl = /* @__PURE__ */ D(fl, [["__scopeId", "data-v-f0a45677"]]), yl = /* @_
|
|
|
3437
3435
|
name: "/dashboard/:collection",
|
|
3438
3436
|
props: !0,
|
|
3439
3437
|
components: {
|
|
3440
|
-
default: () => import("./index-
|
|
3438
|
+
default: () => import("./index-ca9d143d.js"),
|
|
3441
3439
|
topbar: () => Promise.resolve().then(() => yl)
|
|
3442
3440
|
},
|
|
3443
3441
|
meta: {
|
|
@@ -3451,7 +3449,7 @@ const vl = /* @__PURE__ */ D(fl, [["__scopeId", "data-v-f0a45677"]]), yl = /* @_
|
|
|
3451
3449
|
name: "/dashboard/:collection/:id",
|
|
3452
3450
|
props: !0,
|
|
3453
3451
|
components: {
|
|
3454
|
-
default: () => import("./_id_-
|
|
3452
|
+
default: () => import("./_id_-34d00aae.js")
|
|
3455
3453
|
},
|
|
3456
3454
|
meta: {
|
|
3457
3455
|
title: ({ collectionName: o, t: n }) => n(o, {
|
|
@@ -3471,7 +3469,7 @@ const vl = /* @__PURE__ */ D(fl, [["__scopeId", "data-v-f0a45677"]]), yl = /* @_
|
|
|
3471
3469
|
children: [
|
|
3472
3470
|
{
|
|
3473
3471
|
path: "profile",
|
|
3474
|
-
component: () => import("./index-
|
|
3472
|
+
component: () => import("./index-11e4a76f.js"),
|
|
3475
3473
|
meta: {
|
|
3476
3474
|
title: "User profile",
|
|
3477
3475
|
icon: "user-square"
|
|
@@ -3480,7 +3478,7 @@ const vl = /* @__PURE__ */ D(fl, [["__scopeId", "data-v-f0a45677"]]), yl = /* @_
|
|
|
3480
3478
|
{
|
|
3481
3479
|
path: "changepass",
|
|
3482
3480
|
name: "/dashboard/user/changepass",
|
|
3483
|
-
component: () => import("./index-
|
|
3481
|
+
component: () => import("./index-4fe17c52.js"),
|
|
3484
3482
|
meta: {
|
|
3485
3483
|
title: "Change password",
|
|
3486
3484
|
icon: "lock"
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { defineComponent as e, openBlock as t, createBlock as r, createSlots as i, withCtx as n, renderSlot as c, createCommentVNode as l } from "vue";
|
|
2
|
-
import { d as m } from "./index-
|
|
2
|
+
import { d as m } from "./index-99f53a7b.js";
|
|
3
3
|
import "@aeria-ui/i18n";
|
|
4
4
|
import "@aeria-ui/core";
|
|
5
5
|
import "@aeriajs/common";
|
|
@@ -3,7 +3,7 @@ import { INSTANCE_VARS_SYMBOL as U } from "@aeria-ui/core";
|
|
|
3
3
|
import { useStore as $ } from "@aeria-ui/state-management";
|
|
4
4
|
import { useRouter as x } from "vue-router";
|
|
5
5
|
import { t as i } from "@aeria-ui/i18n";
|
|
6
|
-
import { A as E, _ as I, a as g } from "./index-
|
|
6
|
+
import { A as E, _ as I, a as g } from "./index-99f53a7b.js";
|
|
7
7
|
import "@aeriajs/common";
|
|
8
8
|
import "@aeria-ui/utils";
|
|
9
9
|
const N = { key: 0 }, T = {
|
|
@@ -2,7 +2,7 @@ import { defineComponent as v, inject as V, resolveDirective as b, openBlock as
|
|
|
2
2
|
import { INSTANCE_VARS_SYMBOL as E, STORAGE_NAMESPACE as x } from "@aeria-ui/core";
|
|
3
3
|
import { useStore as h } from "@aeria-ui/state-management";
|
|
4
4
|
import { useRouter as N } from "vue-router";
|
|
5
|
-
import { A as B, a as k } from "./index-
|
|
5
|
+
import { A as B, a as k } from "./index-99f53a7b.js";
|
|
6
6
|
import "@aeria-ui/i18n";
|
|
7
7
|
import "@aeriajs/common";
|
|
8
8
|
import "@aeria-ui/utils";
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { defineComponent as h, withAsyncContext as A, ref as p, resolveDirective as C, openBlock as b, createElementBlock as $, Fragment as x, createElementVNode as c, toDisplayString as i, withDirectives as B, createBlock as S, unref as g, withCtx as r, createTextVNode as m, createVNode as n, mergeProps as U, withModifiers as D } from "vue";
|
|
2
2
|
import { useRouter as E } from "vue-router";
|
|
3
3
|
import { useStore as V } from "@aeria-ui/state-management";
|
|
4
|
-
import { b as M, A as N, _ as F, c as P, a as j } from "./index-
|
|
4
|
+
import { b as M, A as N, _ as F, c as P, a as j } from "./index-99f53a7b.js";
|
|
5
5
|
import "@aeria-ui/i18n";
|
|
6
6
|
import "@aeria-ui/core";
|
|
7
7
|
import "@aeriajs/common";
|
package/dist/style.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.accordion[data-v-3ea933d4]{overflow:hidden;border:var(--theme-frame-border);border-radius:var(--theme-radius-large);background:var(--theme-background-color-shade-4);color:var(--theme-foreground-color)}.accordion__slot[data-v-3ea933d4]:not(:last-child){border-bottom:1px solid var(--theme-border-color)}.accordion__header[data-v-3ea933d4]{padding:1rem;background:var(--theme-background-color-shade-2)}.accordion--padded .accordion__content[data-v-3ea933d4]{padding:1rem}.badge[data-v-4cbce7ef]{display:grid;min-width:1rem;height:1rem;box-sizing:content-box;padding:.2rem .35rem;border-radius:20px;background:var(--theme-brand-color-shade-3);color:var(--theme-brand-color-contrast);font-size:8.5pt;font-weight:500;place-items:center}.badge--alt[data-v-4cbce7ef]{background:var(--theme-brand-color-shade-2)}.badge--large[data-v-4cbce7ef]{padding:.35rem .55rem;border-radius:6px}.barebutton[data-v-1883f6a0]{display:flex;border:none;background:transparent;column-gap:.2rem;outline:none;place-items:center;-webkit-user-select:none;user-select:none}.barebutton[data-v-1883f6a0]:active{text-decoration:underline}.barebutton[data-v-1883f6a0]:not(.button){padding:0}@media screen and (width >= 600px){.barebutton--enabled[data-v-1883f6a0]{cursor:pointer}}.barebutton--disabled[data-v-1883f6a0]{cursor:not-allowed;opacity:.5}.icon-active[data-v-ab19820c]{border-color:var(--theme-brand-color)!important}.icon[data-v-ab19820c]{display:flex;align-items:center;fill:var(--icon-color, currentcolor);line-height:100%}.icon svg[data-v-ab19820c]{width:100%;height:100%}.icon--reactive[data-v-ab19820c]{padding:8px;border:1px solid transparent;border-radius:5px}.icon--reactive[data-v-ab19820c]:hover{border-color:var(--theme-border-color)}.icon--reactive[data-v-ab19820c]:active,.icon--reactive .icon--active[data-v-ab19820c],.icon--active[data-v-ab19820c]{border-color:var(--theme-brand-color)!important}.icon--centered[data-v-ab19820c]{align-items:center;gap:calc(var(--icon-size, 1em)/2)}.icon--standalone[data-v-ab19820c]{--icon-size: 18px}.icon__icon[data-v-ab19820c]{display:grid;width:var(--icon-size, 1em);height:var(--icon-size, 1em);place-items:center}.icon__icon--right[data-v-ab19820c]{order:1}@keyframes progress-e9f582db{0%{width:0}to{width:100%;opacity:0}}.button[data-v-e9f582db]{--border-color: var(--button-border-color, var(--theme-border-color));position:relative;border:1px solid transparent;border-radius:var(--theme-radius-medium);color:var(--theme-foreground-color);font-weight:700;letter-spacing:.2pt;outline:none;text-align:center}.button--loading[data-v-e9f582db]:before{position:absolute;left:0;display:block;width:2rem;height:100%;animation:progress-e9f582db 1s forwards;background:#000;content:" ";opacity:.4}.button--transparent[data-v-e9f582db],.button--alt[data-v-e9f582db]{font-weight:300}.button--transparent[data-v-e9f582db]:hover,.button--alt[data-v-e9f582db]:hover{background:var(--theme-background-color-shade-4)}.button--alt[data-v-e9f582db] svg,.button--primary[data-v-e9f582db] svg{fill:currentcolor}.button--alt[data-v-e9f582db]{border:1px solid var(--theme-border-color)}.button--primary[data-v-e9f582db]{border-color:var(--theme-brand-color-shade-2);background:var(--theme-brand-color-shade-2);color:var(--theme-brand-color-contrast)}.button--small[data-v-e9f582db]{padding:.6rem;font-size:9pt}.button--medium[data-v-e9f582db]{height:var(--theme-input-height);padding:var(--theme-input-padding);font-size:10pt}.button--large[data-v-e9f582db]{height:var(--theme-input-height-large);padding:var(--theme-input-padding-large);font-size:11pt}.button__content[data-v-e9f582db]{display:flex;width:100%;align-items:center;justify-content:center;gap:.4rem}.card[data-v-e7d2c665]{position:relative;display:flex;overflow:hidden;flex-direction:column;border:var(--theme-frame-border);border-radius:var(--theme-radius-extra-large);background:var(--theme-background-color-shade-2)}.card--inactive[data-v-e7d2c665]{opacity:.6}.card--horizontal[data-v-e7d2c665]{flex-direction:row}.card--horizontal .card__footer[data-v-e7d2c665]{display:flex;flex-direction:column}.card--horizontal .card__badge[data-v-e7d2c665]{position:relative;margin:auto 0 0}@media screen and (width <= 768px){.card--horizontal .card__footer-upper[data-v-e7d2c665]{flex-direction:column}}.card__picture[data-v-e7d2c665]{overflow:hidden}.card__picture[data-v-e7d2c665] figure{height:100%}.card__footer[data-v-e7d2c665]{height:100%;flex:1;padding:1rem;border-top:var(--theme-frame-border);background:var(--theme-background-color-shade-3);color:var(--theme-foreground-color)}.card__footer-upper[data-v-e7d2c665]{display:flex;height:100%;align-items:flex-start;justify-content:space-between;gap:1rem}.card__actions[data-v-e7d2c665]{display:flex;flex-wrap:wrap;justify-content:flex-end;gap:.4rem}.card__badge[data-v-e7d2c665]{position:absolute;top:0;right:0;display:flex;flex-wrap:wrap;align-items:flex-end;margin:.8rem;gap:.2rem}.padding[data-v-84cde0d8]{padding:1.4rem}@media screen and (width >= 768px){.padding[data-v-84cde0d8]{padding:1.8rem 2.4rem}}.panel[data-v-84cde0d8]{--min-width: var(--panel-min-width, 36rem);--max-width: var(--panel-max-width, unset);--fixed-width: 50rem}.panel--fixed[data-v-84cde0d8]{position:absolute}.panel__content[data-v-84cde0d8]{display:flex;overflow:hidden;flex-direction:column;padding:0}@media screen and (width >= 768px){.panel__content[data-v-84cde0d8]{min-width:var(--min-width);max-width:var(--max-width)}}.panel__content--outer-header[data-v-84cde0d8]{border:none!important;background:transparent!important}.panel__content--outer-header .panel__body[data-v-84cde0d8],.panel__content--outer-header .panel__footer[data-v-84cde0d8]{border-radius:5px;background:var(--theme-background-color)}.panel__content--bordered[data-v-84cde0d8]{border:1px solid var(--theme-border-color);border-radius:var(--theme-radius-large)}.panel__content--float .panel__header[data-v-84cde0d8],.panel__content--fixed-right .panel__header[data-v-84cde0d8]{min-height:var(--theme-panel-header-height);padding:.6rem 1.4rem;border-bottom:var(--theme-frame-border);font-size:14pt;font-weight:600}@media screen and (width >= 768px){.panel__content--float .panel__header[data-v-84cde0d8],.panel__content--fixed-right .panel__header[data-v-84cde0d8]{padding:.6rem 2.4rem}}.panel__content--float[data-v-84cde0d8]{position:fixed;top:50%;min-width:90vw;max-width:90vw;max-height:80vh;border-radius:var(--theme-radius-large);animation:var(--theme-animation-float);transform:translateY(-50%)}@media screen and (width >= 768px){.panel__content--float[data-v-84cde0d8]{min-width:var(--min-width);max-width:var(--max-width)}}.panel__content--fixed-right[data-v-84cde0d8]{position:fixed;top:0;width:100vw;height:100vh;border:0;border-radius:0;margin-right:0;animation:var(--theme-animation-fixed-right)}@media screen and (width >= 768px){.panel__content--fixed-right[data-v-84cde0d8]{width:var(--fixed-width)}}.panel__content--transparent[data-v-84cde0d8]{border:none!important;background:none!important}@media screen and (width <= 768px){.panel__content--transparent-mobile[data-v-84cde0d8]{border:none!important;background:none!important}.panel__content--transparent-mobile .panel__header[data-v-84cde0d8]{margin-bottom:1rem}}.panel__header[data-v-84cde0d8]{display:flex;min-height:3rem;align-items:center;line-height:100%}.panel__header[data-v-84cde0d8] [data-component=icon]{width:1.2rem}.panel__header[data-v-84cde0d8]:not(.panel__header--outer){background:var(--theme-background-color-shade-4)}.panel__header-left[data-v-84cde0d8]{display:flex;flex:1;align-items:center}.panel__body[data-v-84cde0d8]{display:flex;flex-direction:column;overflow-y:auto;overscroll-behavior:contain;row-gap:1.8rem}.panel__body--padded[data-v-84cde0d8]{padding:1.4rem}@media screen and (width >= 768px){.panel__body--padded[data-v-84cde0d8]{padding:1.8rem 2.4rem}}.panel__footer[data-v-84cde0d8]{display:flex;align-items:center;justify-content:flex-end;border-top:1px solid var(--theme-border-color);margin-top:auto;column-gap:1rem;transition:box-shadow .3s}.panel__footer--padded[data-v-84cde0d8]{padding:1rem 1.4rem}@media screen and (width >= 768px){.panel__footer--padded[data-v-84cde0d8]{padding:1rem 2.4rem}}.panel__footer--shadowed[data-v-84cde0d8]{z-index:10;box-shadow:0 4px 20px var(--theme-shadow-color)}.content__body[data-v-34fb8e38]{animation:var(--theme-animation-dropdown)}.content__section[data-v-34fb8e38]:not(:last-child){border-bottom:1px solid var(--theme-border-color)}@media screen and (width >= 600px){.content__section[data-v-34fb8e38]{min-width:12rem}}.content__item[data-v-34fb8e38]{display:flex;width:100%;color:var(--theme-foreground-color);font-weight:400}.content__item[data-v-34fb8e38]>*{display:flex;width:100%;height:100%;align-items:center;padding:1.6rem!important;font-size:11pt;gap:.4rem}@media screen and (width >= 600px){.content__item[data-v-34fb8e38]>*{justify-content:flex-start;padding:1rem!important}}.content__item--reactive[data-v-34fb8e38]:hover{background:var(--theme-background-color-shade-4)}.content__item[data-v-34fb8e38]:not(:last-child){border-bottom:1px solid var(--theme-border-color)}.contextmenu__trigger[data-v-34fb8e38]{display:flex;justify-content:flex-start}.content[data-v-34fb8e38] .panel__content{position:fixed;top:50%;left:50%;transform:translate(-50%,-50%)!important;border-radius:var(--theme-radius-large);width:90vw}@media screen and (min-width: 600px){.content[data-v-34fb8e38] .panel__content{top:0;left:0;transform:translate(min(var(--4393a358),calc(100vw - 100%))) translateY(min(var(--4393a359),calc(100vh - 100%)))!important;width:auto}}.info[data-v-15a38847]{position:relative;display:inline-flex;--height: 2rem;--vertical-offset: calc(var(--height) + .4rem)}.info__content[data-v-15a38847]{height:var(--height);padding:.5rem 1rem;border-radius:5px;background:#000;color:#fff;font-size:10pt;white-space:nowrap}.info__bubble[data-v-15a38847]{position:absolute;z-index:20;overflow:hidden;border-radius:0 5rem 5rem 0!important}.info__bubble--top[data-v-15a38847]{top:calc(var(--vertical-offset) * -1);left:50%;transform:translate(-50%)}.info__bubble--topleft[data-v-15a38847]{top:calc(var(--vertical-offset) * -1);right:100%}.info__bubble--left[data-v-15a38847]{top:50%;right:100%;transform:translateY(-50%)}.info__bubble--bottom[data-v-15a38847]{bottom:calc(var(--vertical-offset) * -1);left:50%;transform:translate(-50%)}.info__bubble--right[data-v-15a38847]{top:50%;left:80%;transform:translateY(-50%)}.focus .input__container[data-v-b4ebd684]{border:1px solid var(--theme-brand-color)}.focus .input__icon[data-v-b4ebd684] [data-component=icon]{fill:var(--theme-brand-color)}.input:focus-within .input__container[data-v-b4ebd684],.textarea:focus-within .input__container[data-v-b4ebd684]{border:1px solid var(--theme-brand-color)}.input:focus-within .input__icon[data-v-b4ebd684] [data-component=icon],.textarea:focus-within .input__icon[data-v-b4ebd684] [data-component=icon]{fill:var(--theme-brand-color)}.input[data-v-b4ebd684]{--background-color: var(--input-background-color, var(--theme-background-color-shade-3));--border: var(--input-border, var(--theme-frame-border));--padding: var(--input-padding, var(--theme-input-padding));--padding-large: var(--input-padding-large, var(--theme-input-padding-large));--height: var(--input-height, var(--theme-input-height));--height-large: var(--input-height-large, var(--theme-input-height-large))}.input__container[data-v-b4ebd684]{position:relative;display:flex;overflow:hidden;width:var(--input-width, 100%);border:var(--border)}.input__container[data-v-b4ebd684]:not(.input__container--textarea){height:var(--height)}.input__container--normal[data-v-b4ebd684],.input__container--bold[data-v-b4ebd684]{border-radius:var(--theme-radius-medium);background:var(--background-color)}.input__container--bold[data-v-b4ebd684]{height:var(--height-large)}.input__container--light[data-v-b4ebd684]{border-bottom:1px solid var(--theme-border-color)}.input__container>.input__input[data-v-b4ebd684],.input__container>.input__textarea[data-v-b4ebd684]{background:var(--background-color)}.input__input[data-v-b4ebd684],.input__textarea[data-v-b4ebd684]{font-family:unset}.input__input[data-v-b4ebd684]{width:100%;height:100%;outline:none}.input__input--normal[data-v-b4ebd684],.input__input--bold[data-v-b4ebd684]{color:var(--theme-foreground-color)}.input__input--normal[data-v-b4ebd684]{padding:var(--padding);font-size:11pt}.input__input--bold[data-v-b4ebd684]{padding:var(--padding-large);font-size:12.5pt}.input__input--light[data-v-b4ebd684]{padding:.6rem;background:transparent}.input__input--icon[data-v-b4ebd684]{padding-left:2.6em!important}.input__input--readOnly[data-v-b4ebd684]{background:#eee}.input__textarea[data-v-b4ebd684]{display:block;width:100%;height:8em;outline:none}.input__icon[data-v-b4ebd684]{position:absolute;top:50%;left:.6em;width:1.1em;transform:translateY(-50%)}.input__icon[data-v-b4ebd684] [data-component=icon]{fill:#bbb}.input__icon--bold[data-v-b4ebd684] [data-component=icon]{width:1.2rem;height:1.2rem}.input__clipboard[data-v-b4ebd684]{display:flex;padding:0 .6em;border:var(--theme-frame-border);border-width:1px 1px 1px 0;background:var(--background-color);place-items:center}.select[data-v-50bbcc3b]{--foreground-color: var(--select-foreground-color, var(--theme-foreground-color));--background-color: var(--select-background-color, var(--theme-background-color-shade-3));--border: var(--select-border, var(--theme-frame-border));--padding: var(--input-padding, var(--theme-input-padding));--height: var(--input-height, var(--theme-input-height));width:var(--input-width, 100%);height:var(--height);padding:var(--padding);border:var(--border);border-radius:var(--theme-radius-medium);background:var(--background-color);color:var(--foreground-color);font-family:unset}.select[data-v-50bbcc3b]:focus{outline:none}.select[data-v-50bbcc3b] option{background:var(--background-color)}.select--outline[data-v-50bbcc3b]:focus-within{border-color:var(--theme-brand-color)}.select--multiple[data-v-50bbcc3b]{padding:0}.select--multiple[data-v-50bbcc3b] option{height:var(--height);padding:var(--padding)}.select--multiple[data-v-50bbcc3b] option[data-selected=true]{background:var(--theme-brand-color);color:var(--theme-brand-color-contrast)}.pagination[data-v-ae7235de]{display:inline-flex;height:2.6rem;align-items:stretch;gap:1rem;--input-width: 4rem;--input-height: 100%;--input-padding: 0 .4rem;--input-border: 1px solid var(--theme-border-color)}.pagination__arrows[data-v-ae7235de]{display:flex;align-items:stretch;border:1px solid var(--theme-border-color);border-radius:var(--theme-radius-large)}.pagination__arrows>button[data-v-ae7235de]:not(:last-child){border-right:1px solid var(--theme-border-color)}.pagination__arrows>button>a[data-v-ae7235de]{padding:.6rem}.pagination__arrows>button>a[data-v-ae7235de]:hover{background:var(--theme-background-color-shade-2)}.pagination__summary[data-v-ae7235de]{display:flex;align-items:center;gap:.4rem}.checkbox[data-v-7e6efc77]{display:flex;align-items:center;-webkit-user-select:none;user-select:none}.checkbox__input[data-v-7e6efc77]{width:1rem;height:1rem}.checkbox__input[data-v-7e6efc77]:hover{background:red}.checkbox__text[data-v-7e6efc77]{display:grid;width:100%;padding:0 .6rem}.options[data-v-bcfc697e]{display:grid;border:1px solid var(--theme-border-color);border-width:1px 1px 1px 0;border-radius:5px}.options__checkbox[data-v-bcfc697e]{padding:.8rem;border-left:1px solid var(--theme-border-color)}.options__checkbox[data-v-bcfc697e]:not(:last-child){border-bottom:1px solid var(--theme-border-color)}.switch-wrapper[data-v-ae45597d]{display:flex;align-items:center;column-gap:.6rem}.switch[data-v-ae45597d]{display:flex;overflow:hidden;width:3rem;justify-content:flex-end;padding:4px;border-radius:1rem;background:#ddd;transition:background .4s}.switch--active[data-v-ae45597d]{background:var(--theme-brand-color-shade-3)}.switch--readOnly[data-v-ae45597d]{opacity:.6}.switch__slider[data-v-ae45597d]{width:1rem;height:1rem;border-radius:50%;background:#fff}.switch__dummy[data-v-ae45597d]{flex:0;transition:flex .35s}.switch__dummy--flex[data-v-ae45597d]{flex:1}.picture[data-v-9e6a58b0]{margin:0}.picture__image--bordered[data-v-9e6a58b0]{border:1px solid var(--theme-border-color)}.picture__image--expandable[data-v-9e6a58b0]{cursor:pointer}.picture__background[data-v-9e6a58b0]{width:100%;height:100%}.picture__background[data-v-9e6a58b0]>*{stroke:var(--theme-border-color)}.picture__meta[data-v-9e6a58b0]{font-size:11pt}.picture>figcaption[data-v-9e6a58b0]{margin-top:.4rem;color:var(--theme-foreground-color)}.item[data-v-85a82246]{display:flex;flex-direction:row;align-items:center;padding:.6rem;gap:1rem}.item__presentation[data-v-85a82246]{margin-right:auto}.item__name[data-v-85a82246]{font-size:.9rem}.item__name--link[data-v-85a82246]{color:var(--theme-blueish);font-weight:600}.item__size[data-v-85a82246]{font-size:.8rem;opacity:.8}.item__picture[data-v-85a82246]{width:3rem;height:3rem}.file[data-v-9950a715]{display:flex;flex-direction:column;row-gap:.8rem}.file__list[data-v-9950a715]{display:flex;flex-direction:column;border:1px solid var(--theme-border-color);border-radius:var(--theme-radius-large)}.file__list[data-v-9950a715]>*:not(:last-child){border-bottom:1px solid var(--theme-border-color)}.container[data-v-c86e2d2a]{border:var(--theme-frame-border);border-radius:var(--theme-radius-medium);background:var(--theme-background-color-shade-3)}.container__content[data-v-c86e2d2a]{overflow:hidden auto;max-height:20rem}.container__footer[data-v-c86e2d2a]{display:flex;height:var(--theme-input-height);flex-direction:column;justify-content:center;padding:var(--theme-input-padding);color:var(--theme-foreground-color);font-size:.8rem}.item[data-v-10ee6b3b]{display:flex;min-height:2.8rem;align-items:center;padding:var(--theme-input-padding);color:var(--theme-foreground-color)}.item--selected[data-v-10ee6b3b]{background:var(--theme-brand-color-shade-1);color:var(--theme-brand-color-contrast)}.item__values[data-v-10ee6b3b]{display:flex;flex-direction:column;margin-right:auto;row-gap:.4rem}.item__value[data-v-10ee6b3b]{display:flex;font-size:10pt}.item__value[data-v-10ee6b3b]:not(:first-child){font-size:8pt}.search[data-v-b5466d6b]{display:flex;flex-direction:column}.search__panel[data-v-b5466d6b]{display:flex;flex-direction:column;gap:1rem}.search__input[data-v-b5466d6b]{display:flex;align-items:stretch;margin-bottom:.8rem;gap:.8rem}.search__summary[data-v-b5466d6b]{font-size:11pt}.form[data-v-e9376cc1]{display:flex;flex-direction:column}.form__footer[data-v-e9376cc1]{display:flex;align-items:center;margin-top:-1rem;column-gap:.6rem}.form__fieldset[data-v-e9376cc1]{display:grid;width:100%;align-items:flex-start;padding:0;border:none;margin:0;gap:1rem;grid-template-columns:repeat(6,1fr)}.form__field--form[data-v-e9376cc1]:not(:last-child):not(:first-child){padding:1rem 0;border:1px solid var(--theme-border-color);border-width:1px 0 1px 0}.form__field--form:not(:last-child):not(:first-child)~.form__field--form[data-v-e9376cc1]{border-width:0 0 1px 0;margin-top:0}.form__field-label[data-v-e9376cc1]{font-size:10.2pt;line-height:1.6rem}.form__field-label--section[data-v-e9376cc1]{font-size:12pt;font-weight:500}.form__field-hint[data-v-e9376cc1]{font-size:.9rem}.form__field-required-hint[data-v-e9376cc1]:after{margin-left:.35rem;color:#e22;content:"*"}.form__search-grid[data-v-e9376cc1]{display:grid;gap:2rem}.form__validation-error[data-v-e9376cc1]{padding:.4rem 0;color:red;font-size:.9rem}.form__array[data-v-e9376cc1]{display:flex;flex-direction:column-reverse;border:1px solid var(--theme-border-color);border-radius:var(--theme-radius-large)}.form__array[data-v-e9376cc1]>*{padding:1rem}.form__array-item[data-v-e9376cc1]{display:flex;flex-direction:column;gap:1rem}.form__array-item[data-v-e9376cc1]:not(:last-child){border-top:1px solid var(--theme-border-color)}.form__array-remove[data-v-e9376cc1]{font-size:.8rem}.cell-padding[data-v-89303bb6]{padding:10px .8rem}.table[data-v-89303bb6]{width:100%;border-radius:var(--theme-radius-large);border-spacing:0}@media screen and (width >= 768px){.table[data-v-89303bb6]{overflow:hidden;border:var(--theme-frame-border)}}.table[data-v-89303bb6] thead>tr{display:none}@media print{.table[data-v-89303bb6] thead>tr{display:table-row}}@media screen and (width >= 768px){.table[data-v-89303bb6] thead>tr{display:table-row;height:3rem;background:var(--theme-background-color-shade-4);text-align:left}}.table[data-v-89303bb6] thead>tr>th{padding:10px .8rem;font-weight:400}.table[data-v-89303bb6] tbody>tr,.table[data-v-89303bb6] tfoot>tr{height:3rem;border:var(--theme-frame-border);background:var(--theme-background-color-shade-2)}@media screen and (width >= 768px){.table[data-v-89303bb6] tbody>tr,.table[data-v-89303bb6] tfoot>tr{border:0}.table[data-v-89303bb6] tbody>tr:hover,.table[data-v-89303bb6] tfoot>tr:hover{background:var(--theme-background-color-shade-2)}}@media screen and (width <= 768px){.table[data-v-89303bb6] tbody>tr,.table[data-v-89303bb6] tfoot>tr{display:flex;overflow:hidden;height:auto;flex-direction:column;border-radius:var(--theme-radius-large)}.table[data-v-89303bb6] tbody>tr:not(:last-child),.table[data-v-89303bb6] tfoot>tr:not(:last-child){margin-bottom:1rem}}@media screen and (width >= 768px){.table[data-v-89303bb6] tbody>tr:not(:last-child)>td,.table[data-v-89303bb6] tfoot>tr:not(:last-child)>td{border-bottom:1px solid var(--theme-border-color)}}.table[data-v-89303bb6] tbody>tr>td,.table[data-v-89303bb6] tfoot>tr>td{padding:10px .8rem;font-size:9.5pt}@media screen and (width >= 768px){.table[data-v-89303bb6] tfoot>tr>td{border-top:1px solid var(--theme-border-color)}}@media screen and (width <= 768px){.table__cell-grid[data-v-89303bb6]{display:flex;flex-direction:column}}.table__cell-mobile-label[data-v-89303bb6]{display:none;font-weight:500}@media screen and (width <= 768px){.table__cell-mobile-label[data-v-89303bb6]{display:inherit}}.table__cell-actions[data-v-89303bb6]{display:flex;align-items:center;justify-content:flex-end;margin-left:auto;column-gap:.8rem}.table__cell-subvalue[data-v-89303bb6]{font-weight:300}.table__mobile-actions[data-v-89303bb6]{position:relative;padding:0!important;background:var(--theme-background-color-shade-4)}.table__mobile-actions-grid[data-v-89303bb6]{display:grid}.table__mobile-actions-button[data-v-89303bb6]{display:grid;width:100%;height:3.2rem;place-items:center}.table__mobile-actions-button[data-v-89303bb6]:not(last-child){border-right:1px solid var(--theme-border-color)}.table__picture[data-v-89303bb6]{overflow:hidden;width:2rem;height:2rem;border:1px solid var(--theme-border-color);border-radius:var(--theme-radius-large)}.table__empty[data-v-89303bb6]{display:grid;padding:1.6rem 0;place-items:center}.grid[data-v-4839c834]{display:grid;gap:1rem}@media screen and (width >= 600px){.grid[data-v-4839c834]:not(.grid--list){gap:1.6rem;grid-template-columns:repeat(2,1fr)}}@media screen and (width >= 1200px){.grid[data-v-4839c834]:not(.grid--list){grid-template-columns:repeat(3,1fr)}}@media screen and (width >= 1400px){.grid[data-v-4839c834]:not(.grid--list){grid-template-columns:repeat(4,1fr)}}.card__upper[data-v-cfdb8783]{display:flex;align-items:center}.card__information[data-v-cfdb8783]{margin-top:.5rem;font-size:9.5pt;opacity:.6}.crud__controls[data-v-d64cb42a]{display:flex;flex-wrap:wrap;align-items:stretch;justify-content:flex-end;gap:1rem}.crud__search[data-v-d64cb42a]{min-width:90vw;flex:1;order:1}.crud__search[data-v-d64cb42a] .input__container{height:100%}@media screen and (width >= 600px){.crud__search[data-v-d64cb42a]{min-width:auto;order:0}}.crud__actions[data-v-d64cb42a]{display:flex;align-items:stretch;gap:.5rem}.crud__pagination[data-v-d64cb42a]{display:flex;align-items:center;justify-content:flex-end}.crud__context-badge[data-v-d64cb42a]{display:flex;justify-content:flex-end}.prompt[data-v-4cbfd28f]{max-width:32rem}.prompt__options[data-v-4cbfd28f]{display:grid;width:100%;height:4rem}.prompt__option[data-v-4cbfd28f]{display:grid;place-items:center}.prompt__option[data-v-4cbfd28f]:not(:last-child){border-right:1px solid var(--theme-border-color)}.prompt__option--primary[data-v-4cbfd28f]{color:var(--theme-blueish)}.prompt__option--danger[data-v-4cbfd28f]{color:var(--theme-redish)}@keyframes blink-606d47bf{0%{opacity:1}to{opacity:.4}}.toast[data-v-606d47bf]{display:flex;width:90vw;padding:1rem;border:1px solid var(--theme-border-color);border-radius:5px;animation:blink-606d47bf .5s forwards;animation-delay:2s;animation-play-state:paused;background:var(--theme-background-color);box-shadow:0 3px 3px var(--theme-shadow-color);color:var(--theme-foreground-color);gap:1rem}@media screen and (width >= 768px){.toast[data-v-606d47bf]{width:24rem}}.toast[data-v-606d47bf]:hover{animation-play-state:paused}.toast--animate[data-v-606d47bf]{animation-play-state:running}.toast__content[data-v-606d47bf]{display:flex;flex-direction:column;gap:.6rem}.toast__time[data-v-606d47bf]{font-size:10pt;opacity:.8}.main[data-v-8f232683]{display:flex;min-height:100vh;flex-direction:column}.main__toasts[data-v-8f232683]{position:fixed;z-index:100;right:1.6rem;bottom:1.6rem;display:flex;flex-direction:column;row-gap:.6rem}*{box-sizing:border-box;-webkit-tap-highlight-color:transparent}html{overflow:hidden scroll;scroll-behavior:smooth}html,body{padding:0;margin:0}body{font-size:15px}a:link,a:visited,a:hover,a:active{color:inherit;text-decoration:none}input[type=number]{-webkit-appearance:textfield;-moz-appearance:textfield;appearance:textfield}@media print{.no-print{display:none!important}}.aeria-surface{background:var(--theme-background-color);color:var(--theme-foreground-color)}.aeria-surface-alt{background:var(--theme-background-color-shade-2);color:var(--theme-foreground-color)}.aeria-body{background:var(--theme-body-background)}.aeria-branded-text{color:var(--theme-brand-color)}.aeria-redish{color:var(--theme-redish);fill:var(--theme-redish)}.aeria-blueish{color:var(--theme-blueish);fill:var(--theme-blueish)}.loading div{border:4px solid var(--theme-brand-color)!important}@keyframes lds-ripple{0%{top:36px;left:36px;width:0;height:0;opacity:0}5%{opacity:1}to{top:0;left:0;width:72px;height:72px;opacity:0}}.loading{position:relative;display:inline-block;width:80px;height:80px}.loading div{position:absolute;border:4px solid #fff;border-radius:50%;animation:lds-ripple 1s cubic-bezier(0,.2,.8,1) infinite;opacity:1}.loading div:nth-child(2){animation-delay:-.5s}.menu[data-v-3cfef7fb]{min-width:90vw;align-self:center;padding:0;border:1px solid var(--theme-border-color);border-radius:var(--theme-radius-large);background:var(--theme-background-color-shade-2);color:var(--theme-foreground-color)}@media screen and (width >= 600px){.menu[data-v-3cfef7fb]{min-width:22rem}}.menu__entry[data-v-3cfef7fb]{padding:1rem;font-size:11pt}.menu__entry[data-v-3cfef7fb]:not(:last-child){border-bottom:1px solid var(--theme-border-color)}.tabs__horizontal[data-v-a20914ab]{display:flex;gap:1.2rem}.tabs__tab[data-v-a20914ab]{display:flex;align-items:center;cursor:pointer;gap:.2rem}.tabs__tab--current[data-v-a20914ab]{font-weight:600}@media screen and (width >= 600px){.tabs__tab--info[data-v-a20914ab]{margin-right:.6rem;font-size:12pt;font-weight:500}}.tabs__context-menu-icon[data-v-a20914ab]{color:var(--theme-brand-color);font-weight:600}.tabs__context-menu-icon[data-v-a20914ab]:first-child{gap:0}.topbar__preset[data-v-f0a45677]{display:flex;width:100%;align-items:center;justify-content:center;gap:.4rem}@media screen and (width >= 600px){.topbar__preset[data-v-f0a45677]{justify-content:flex-start}}.profile__user-name[data-v-368b73ef]{font-size:18pt;font-weight:600}.profile__menu[data-v-368b73ef]{display:flex;overflow:hidden;flex-direction:column;padding:0;border:1px solid var(--theme-border-color);border-radius:10px;margin-top:2rem;background:var(--theme-background-color-shade-2)}.profile__menu[data-v-368b73ef]>*{padding:1.4rem}.profile__menu[data-v-368b73ef]>*:not(:last-child){border-bottom:1px solid var(--theme-border-color)}
|
|
1
|
+
.accordion[data-v-3ea933d4]{overflow:hidden;border:var(--theme-frame-border);border-radius:var(--theme-radius-large);background:var(--theme-background-color-shade-4);color:var(--theme-foreground-color)}.accordion__slot[data-v-3ea933d4]:not(:last-child){border-bottom:1px solid var(--theme-border-color)}.accordion__header[data-v-3ea933d4]{padding:1rem;background:var(--theme-background-color-shade-2)}.accordion--padded .accordion__content[data-v-3ea933d4]{padding:1rem}.badge[data-v-4cbce7ef]{display:grid;min-width:1rem;height:1rem;box-sizing:content-box;padding:.2rem .35rem;border-radius:20px;background:var(--theme-brand-color-shade-3);color:var(--theme-brand-color-contrast);font-size:8.5pt;font-weight:500;place-items:center}.badge--alt[data-v-4cbce7ef]{background:var(--theme-brand-color-shade-2)}.badge--large[data-v-4cbce7ef]{padding:.35rem .55rem;border-radius:6px}.barebutton[data-v-1883f6a0]{display:flex;border:none;background:transparent;column-gap:.2rem;outline:none;place-items:center;-webkit-user-select:none;user-select:none}.barebutton[data-v-1883f6a0]:active{text-decoration:underline}.barebutton[data-v-1883f6a0]:not(.button){padding:0}@media screen and (width >= 600px){.barebutton--enabled[data-v-1883f6a0]{cursor:pointer}}.barebutton--disabled[data-v-1883f6a0]{cursor:not-allowed;opacity:.5}.icon-active[data-v-263a2782]{border-color:var(--theme-brand-color)!important}.icon[data-v-263a2782]{display:flex;align-items:center;fill:var(--icon-color, currentcolor);line-height:100%}.icon svg[data-v-263a2782]{width:100%;height:100%}.icon--reactive[data-v-263a2782]{padding:8px;border:1px solid transparent;border-radius:5px}.icon--reactive[data-v-263a2782]:hover{border-color:var(--theme-border-color)}.icon--reactive[data-v-263a2782]:active,.icon--reactive .icon--active[data-v-263a2782],.icon--active[data-v-263a2782]{border-color:var(--theme-brand-color)!important}.icon--centered[data-v-263a2782]{align-items:center;gap:calc(var(--icon-size, 1em)/2)}.icon--standalone[data-v-263a2782]{--icon-size: 18px}.icon__icon[data-v-263a2782]{display:grid;width:var(--icon-size, 1em);height:var(--icon-size, 1em);place-items:center}.icon__icon--right[data-v-263a2782]{order:1}@keyframes progress-e9f582db{0%{width:0}to{width:100%;opacity:0}}.button[data-v-e9f582db]{--border-color: var(--button-border-color, var(--theme-border-color));position:relative;border:1px solid transparent;border-radius:var(--theme-radius-medium);color:var(--theme-foreground-color);font-weight:700;letter-spacing:.2pt;outline:none;text-align:center}.button--loading[data-v-e9f582db]:before{position:absolute;left:0;display:block;width:2rem;height:100%;animation:progress-e9f582db 1s forwards;background:#000;content:" ";opacity:.4}.button--transparent[data-v-e9f582db],.button--alt[data-v-e9f582db]{font-weight:300}.button--transparent[data-v-e9f582db]:hover,.button--alt[data-v-e9f582db]:hover{background:var(--theme-background-color-shade-4)}.button--alt[data-v-e9f582db] svg,.button--primary[data-v-e9f582db] svg{fill:currentcolor}.button--alt[data-v-e9f582db]{border:1px solid var(--theme-border-color)}.button--primary[data-v-e9f582db]{border-color:var(--theme-brand-color-shade-2);background:var(--theme-brand-color-shade-2);color:var(--theme-brand-color-contrast)}.button--small[data-v-e9f582db]{padding:.6rem;font-size:9pt}.button--medium[data-v-e9f582db]{height:var(--theme-input-height);padding:var(--theme-input-padding);font-size:10pt}.button--large[data-v-e9f582db]{height:var(--theme-input-height-large);padding:var(--theme-input-padding-large);font-size:11pt}.button__content[data-v-e9f582db]{display:flex;width:100%;align-items:center;justify-content:center;gap:.4rem}.card[data-v-e7d2c665]{position:relative;display:flex;overflow:hidden;flex-direction:column;border:var(--theme-frame-border);border-radius:var(--theme-radius-extra-large);background:var(--theme-background-color-shade-2)}.card--inactive[data-v-e7d2c665]{opacity:.6}.card--horizontal[data-v-e7d2c665]{flex-direction:row}.card--horizontal .card__footer[data-v-e7d2c665]{display:flex;flex-direction:column}.card--horizontal .card__badge[data-v-e7d2c665]{position:relative;margin:auto 0 0}@media screen and (width <= 768px){.card--horizontal .card__footer-upper[data-v-e7d2c665]{flex-direction:column}}.card__picture[data-v-e7d2c665]{overflow:hidden}.card__picture[data-v-e7d2c665] figure{height:100%}.card__footer[data-v-e7d2c665]{height:100%;flex:1;padding:1rem;border-top:var(--theme-frame-border);background:var(--theme-background-color-shade-3);color:var(--theme-foreground-color)}.card__footer-upper[data-v-e7d2c665]{display:flex;height:100%;align-items:flex-start;justify-content:space-between;gap:1rem}.card__actions[data-v-e7d2c665]{display:flex;flex-wrap:wrap;justify-content:flex-end;gap:.4rem}.card__badge[data-v-e7d2c665]{position:absolute;top:0;right:0;display:flex;flex-wrap:wrap;align-items:flex-end;margin:.8rem;gap:.2rem}.padding[data-v-84cde0d8]{padding:1.4rem}@media screen and (width >= 768px){.padding[data-v-84cde0d8]{padding:1.8rem 2.4rem}}.panel[data-v-84cde0d8]{--min-width: var(--panel-min-width, 36rem);--max-width: var(--panel-max-width, unset);--fixed-width: 50rem}.panel--fixed[data-v-84cde0d8]{position:absolute}.panel__content[data-v-84cde0d8]{display:flex;overflow:hidden;flex-direction:column;padding:0}@media screen and (width >= 768px){.panel__content[data-v-84cde0d8]{min-width:var(--min-width);max-width:var(--max-width)}}.panel__content--outer-header[data-v-84cde0d8]{border:none!important;background:transparent!important}.panel__content--outer-header .panel__body[data-v-84cde0d8],.panel__content--outer-header .panel__footer[data-v-84cde0d8]{border-radius:5px;background:var(--theme-background-color)}.panel__content--bordered[data-v-84cde0d8]{border:1px solid var(--theme-border-color);border-radius:var(--theme-radius-large)}.panel__content--float .panel__header[data-v-84cde0d8],.panel__content--fixed-right .panel__header[data-v-84cde0d8]{min-height:var(--theme-panel-header-height);padding:.6rem 1.4rem;border-bottom:var(--theme-frame-border);font-size:14pt;font-weight:600}@media screen and (width >= 768px){.panel__content--float .panel__header[data-v-84cde0d8],.panel__content--fixed-right .panel__header[data-v-84cde0d8]{padding:.6rem 2.4rem}}.panel__content--float[data-v-84cde0d8]{position:fixed;top:50%;min-width:90vw;max-width:90vw;max-height:80vh;border-radius:var(--theme-radius-large);animation:var(--theme-animation-float);transform:translateY(-50%)}@media screen and (width >= 768px){.panel__content--float[data-v-84cde0d8]{min-width:var(--min-width);max-width:var(--max-width)}}.panel__content--fixed-right[data-v-84cde0d8]{position:fixed;top:0;width:100vw;height:100vh;border:0;border-radius:0;margin-right:0;animation:var(--theme-animation-fixed-right)}@media screen and (width >= 768px){.panel__content--fixed-right[data-v-84cde0d8]{width:var(--fixed-width)}}.panel__content--transparent[data-v-84cde0d8]{border:none!important;background:none!important}@media screen and (width <= 768px){.panel__content--transparent-mobile[data-v-84cde0d8]{border:none!important;background:none!important}.panel__content--transparent-mobile .panel__header[data-v-84cde0d8]{margin-bottom:1rem}}.panel__header[data-v-84cde0d8]{display:flex;min-height:3rem;align-items:center;line-height:100%}.panel__header[data-v-84cde0d8] [data-component=icon]{width:1.2rem}.panel__header[data-v-84cde0d8]:not(.panel__header--outer){background:var(--theme-background-color-shade-4)}.panel__header-left[data-v-84cde0d8]{display:flex;flex:1;align-items:center}.panel__body[data-v-84cde0d8]{display:flex;flex-direction:column;overflow-y:auto;overscroll-behavior:contain;row-gap:1.8rem}.panel__body--padded[data-v-84cde0d8]{padding:1.4rem}@media screen and (width >= 768px){.panel__body--padded[data-v-84cde0d8]{padding:1.8rem 2.4rem}}.panel__footer[data-v-84cde0d8]{display:flex;align-items:center;justify-content:flex-end;border-top:1px solid var(--theme-border-color);margin-top:auto;column-gap:1rem;transition:box-shadow .3s}.panel__footer--padded[data-v-84cde0d8]{padding:1rem 1.4rem}@media screen and (width >= 768px){.panel__footer--padded[data-v-84cde0d8]{padding:1rem 2.4rem}}.panel__footer--shadowed[data-v-84cde0d8]{z-index:10;box-shadow:0 4px 20px var(--theme-shadow-color)}.content__body[data-v-34fb8e38]{animation:var(--theme-animation-dropdown)}.content__section[data-v-34fb8e38]:not(:last-child){border-bottom:1px solid var(--theme-border-color)}@media screen and (width >= 600px){.content__section[data-v-34fb8e38]{min-width:12rem}}.content__item[data-v-34fb8e38]{display:flex;width:100%;color:var(--theme-foreground-color);font-weight:400}.content__item[data-v-34fb8e38]>*{display:flex;width:100%;height:100%;align-items:center;padding:1.6rem!important;font-size:11pt;gap:.4rem}@media screen and (width >= 600px){.content__item[data-v-34fb8e38]>*{justify-content:flex-start;padding:1rem!important}}.content__item--reactive[data-v-34fb8e38]:hover{background:var(--theme-background-color-shade-4)}.content__item[data-v-34fb8e38]:not(:last-child){border-bottom:1px solid var(--theme-border-color)}.contextmenu__trigger[data-v-34fb8e38]{display:flex;justify-content:flex-start}.content[data-v-34fb8e38] .panel__content{position:fixed;top:50%;left:50%;transform:translate(-50%,-50%)!important;border-radius:var(--theme-radius-large);width:90vw}@media screen and (min-width: 600px){.content[data-v-34fb8e38] .panel__content{top:0;left:0;transform:translate(min(var(--4393a358),calc(100vw - 100%))) translateY(min(var(--4393a359),calc(100vh - 100%)))!important;width:auto}}.info[data-v-15a38847]{position:relative;display:inline-flex;--height: 2rem;--vertical-offset: calc(var(--height) + .4rem)}.info__content[data-v-15a38847]{height:var(--height);padding:.5rem 1rem;border-radius:5px;background:#000;color:#fff;font-size:10pt;white-space:nowrap}.info__bubble[data-v-15a38847]{position:absolute;z-index:20;overflow:hidden;border-radius:0 5rem 5rem 0!important}.info__bubble--top[data-v-15a38847]{top:calc(var(--vertical-offset) * -1);left:50%;transform:translate(-50%)}.info__bubble--topleft[data-v-15a38847]{top:calc(var(--vertical-offset) * -1);right:100%}.info__bubble--left[data-v-15a38847]{top:50%;right:100%;transform:translateY(-50%)}.info__bubble--bottom[data-v-15a38847]{bottom:calc(var(--vertical-offset) * -1);left:50%;transform:translate(-50%)}.info__bubble--right[data-v-15a38847]{top:50%;left:80%;transform:translateY(-50%)}.focus .input__container[data-v-b4ebd684]{border:1px solid var(--theme-brand-color)}.focus .input__icon[data-v-b4ebd684] [data-component=icon]{fill:var(--theme-brand-color)}.input:focus-within .input__container[data-v-b4ebd684],.textarea:focus-within .input__container[data-v-b4ebd684]{border:1px solid var(--theme-brand-color)}.input:focus-within .input__icon[data-v-b4ebd684] [data-component=icon],.textarea:focus-within .input__icon[data-v-b4ebd684] [data-component=icon]{fill:var(--theme-brand-color)}.input[data-v-b4ebd684]{--background-color: var(--input-background-color, var(--theme-background-color-shade-3));--border: var(--input-border, var(--theme-frame-border));--padding: var(--input-padding, var(--theme-input-padding));--padding-large: var(--input-padding-large, var(--theme-input-padding-large));--height: var(--input-height, var(--theme-input-height));--height-large: var(--input-height-large, var(--theme-input-height-large))}.input__container[data-v-b4ebd684]{position:relative;display:flex;overflow:hidden;width:var(--input-width, 100%);border:var(--border)}.input__container[data-v-b4ebd684]:not(.input__container--textarea){height:var(--height)}.input__container--normal[data-v-b4ebd684],.input__container--bold[data-v-b4ebd684]{border-radius:var(--theme-radius-medium);background:var(--background-color)}.input__container--bold[data-v-b4ebd684]{height:var(--height-large)}.input__container--light[data-v-b4ebd684]{border-bottom:1px solid var(--theme-border-color)}.input__container>.input__input[data-v-b4ebd684],.input__container>.input__textarea[data-v-b4ebd684]{background:var(--background-color)}.input__input[data-v-b4ebd684],.input__textarea[data-v-b4ebd684]{font-family:unset}.input__input[data-v-b4ebd684]{width:100%;height:100%;outline:none}.input__input--normal[data-v-b4ebd684],.input__input--bold[data-v-b4ebd684]{color:var(--theme-foreground-color)}.input__input--normal[data-v-b4ebd684]{padding:var(--padding);font-size:11pt}.input__input--bold[data-v-b4ebd684]{padding:var(--padding-large);font-size:12.5pt}.input__input--light[data-v-b4ebd684]{padding:.6rem;background:transparent}.input__input--icon[data-v-b4ebd684]{padding-left:2.6em!important}.input__input--readOnly[data-v-b4ebd684]{background:#eee}.input__textarea[data-v-b4ebd684]{display:block;width:100%;height:8em;outline:none}.input__icon[data-v-b4ebd684]{position:absolute;top:50%;left:.6em;width:1.1em;transform:translateY(-50%)}.input__icon[data-v-b4ebd684] [data-component=icon]{fill:#bbb}.input__icon--bold[data-v-b4ebd684] [data-component=icon]{width:1.2rem;height:1.2rem}.input__clipboard[data-v-b4ebd684]{display:flex;padding:0 .6em;border:var(--theme-frame-border);border-width:1px 1px 1px 0;background:var(--background-color);place-items:center}.select[data-v-50bbcc3b]{--foreground-color: var(--select-foreground-color, var(--theme-foreground-color));--background-color: var(--select-background-color, var(--theme-background-color-shade-3));--border: var(--select-border, var(--theme-frame-border));--padding: var(--input-padding, var(--theme-input-padding));--height: var(--input-height, var(--theme-input-height));width:var(--input-width, 100%);height:var(--height);padding:var(--padding);border:var(--border);border-radius:var(--theme-radius-medium);background:var(--background-color);color:var(--foreground-color);font-family:unset}.select[data-v-50bbcc3b]:focus{outline:none}.select[data-v-50bbcc3b] option{background:var(--background-color)}.select--outline[data-v-50bbcc3b]:focus-within{border-color:var(--theme-brand-color)}.select--multiple[data-v-50bbcc3b]{padding:0}.select--multiple[data-v-50bbcc3b] option{height:var(--height);padding:var(--padding)}.select--multiple[data-v-50bbcc3b] option[data-selected=true]{background:var(--theme-brand-color);color:var(--theme-brand-color-contrast)}.pagination[data-v-ae7235de]{display:inline-flex;height:2.6rem;align-items:stretch;gap:1rem;--input-width: 4rem;--input-height: 100%;--input-padding: 0 .4rem;--input-border: 1px solid var(--theme-border-color)}.pagination__arrows[data-v-ae7235de]{display:flex;align-items:stretch;border:1px solid var(--theme-border-color);border-radius:var(--theme-radius-large)}.pagination__arrows>button[data-v-ae7235de]:not(:last-child){border-right:1px solid var(--theme-border-color)}.pagination__arrows>button>a[data-v-ae7235de]{padding:.6rem}.pagination__arrows>button>a[data-v-ae7235de]:hover{background:var(--theme-background-color-shade-2)}.pagination__summary[data-v-ae7235de]{display:flex;align-items:center;gap:.4rem}.checkbox[data-v-7e6efc77]{display:flex;align-items:center;-webkit-user-select:none;user-select:none}.checkbox__input[data-v-7e6efc77]{width:1rem;height:1rem}.checkbox__input[data-v-7e6efc77]:hover{background:red}.checkbox__text[data-v-7e6efc77]{display:grid;width:100%;padding:0 .6rem}.options[data-v-bcfc697e]{display:grid;border:1px solid var(--theme-border-color);border-width:1px 1px 1px 0;border-radius:5px}.options__checkbox[data-v-bcfc697e]{padding:.8rem;border-left:1px solid var(--theme-border-color)}.options__checkbox[data-v-bcfc697e]:not(:last-child){border-bottom:1px solid var(--theme-border-color)}.switch-wrapper[data-v-ae45597d]{display:flex;align-items:center;column-gap:.6rem}.switch[data-v-ae45597d]{display:flex;overflow:hidden;width:3rem;justify-content:flex-end;padding:4px;border-radius:1rem;background:#ddd;transition:background .4s}.switch--active[data-v-ae45597d]{background:var(--theme-brand-color-shade-3)}.switch--readOnly[data-v-ae45597d]{opacity:.6}.switch__slider[data-v-ae45597d]{width:1rem;height:1rem;border-radius:50%;background:#fff}.switch__dummy[data-v-ae45597d]{flex:0;transition:flex .35s}.switch__dummy--flex[data-v-ae45597d]{flex:1}.picture[data-v-9e6a58b0]{margin:0}.picture__image--bordered[data-v-9e6a58b0]{border:1px solid var(--theme-border-color)}.picture__image--expandable[data-v-9e6a58b0]{cursor:pointer}.picture__background[data-v-9e6a58b0]{width:100%;height:100%}.picture__background[data-v-9e6a58b0]>*{stroke:var(--theme-border-color)}.picture__meta[data-v-9e6a58b0]{font-size:11pt}.picture>figcaption[data-v-9e6a58b0]{margin-top:.4rem;color:var(--theme-foreground-color)}.item[data-v-85a82246]{display:flex;flex-direction:row;align-items:center;padding:.6rem;gap:1rem}.item__presentation[data-v-85a82246]{margin-right:auto}.item__name[data-v-85a82246]{font-size:.9rem}.item__name--link[data-v-85a82246]{color:var(--theme-blueish);font-weight:600}.item__size[data-v-85a82246]{font-size:.8rem;opacity:.8}.item__picture[data-v-85a82246]{width:3rem;height:3rem}.file[data-v-9950a715]{display:flex;flex-direction:column;row-gap:.8rem}.file__list[data-v-9950a715]{display:flex;flex-direction:column;border:1px solid var(--theme-border-color);border-radius:var(--theme-radius-large)}.file__list[data-v-9950a715]>*:not(:last-child){border-bottom:1px solid var(--theme-border-color)}.container[data-v-c86e2d2a]{border:var(--theme-frame-border);border-radius:var(--theme-radius-medium);background:var(--theme-background-color-shade-3)}.container__content[data-v-c86e2d2a]{overflow:hidden auto;max-height:20rem}.container__footer[data-v-c86e2d2a]{display:flex;height:var(--theme-input-height);flex-direction:column;justify-content:center;padding:var(--theme-input-padding);color:var(--theme-foreground-color);font-size:.8rem}.item[data-v-10ee6b3b]{display:flex;min-height:2.8rem;align-items:center;padding:var(--theme-input-padding);color:var(--theme-foreground-color)}.item--selected[data-v-10ee6b3b]{background:var(--theme-brand-color-shade-1);color:var(--theme-brand-color-contrast)}.item__values[data-v-10ee6b3b]{display:flex;flex-direction:column;margin-right:auto;row-gap:.4rem}.item__value[data-v-10ee6b3b]{display:flex;font-size:10pt}.item__value[data-v-10ee6b3b]:not(:first-child){font-size:8pt}.search[data-v-b5466d6b]{display:flex;flex-direction:column}.search__panel[data-v-b5466d6b]{display:flex;flex-direction:column;gap:1rem}.search__input[data-v-b5466d6b]{display:flex;align-items:stretch;margin-bottom:.8rem;gap:.8rem}.search__summary[data-v-b5466d6b]{font-size:11pt}.form[data-v-e9376cc1]{display:flex;flex-direction:column}.form__footer[data-v-e9376cc1]{display:flex;align-items:center;margin-top:-1rem;column-gap:.6rem}.form__fieldset[data-v-e9376cc1]{display:grid;width:100%;align-items:flex-start;padding:0;border:none;margin:0;gap:1rem;grid-template-columns:repeat(6,1fr)}.form__field--form[data-v-e9376cc1]:not(:last-child):not(:first-child){padding:1rem 0;border:1px solid var(--theme-border-color);border-width:1px 0 1px 0}.form__field--form:not(:last-child):not(:first-child)~.form__field--form[data-v-e9376cc1]{border-width:0 0 1px 0;margin-top:0}.form__field-label[data-v-e9376cc1]{font-size:10.2pt;line-height:1.6rem}.form__field-label--section[data-v-e9376cc1]{font-size:12pt;font-weight:500}.form__field-hint[data-v-e9376cc1]{font-size:.9rem}.form__field-required-hint[data-v-e9376cc1]:after{margin-left:.35rem;color:#e22;content:"*"}.form__search-grid[data-v-e9376cc1]{display:grid;gap:2rem}.form__validation-error[data-v-e9376cc1]{padding:.4rem 0;color:red;font-size:.9rem}.form__array[data-v-e9376cc1]{display:flex;flex-direction:column-reverse;border:1px solid var(--theme-border-color);border-radius:var(--theme-radius-large)}.form__array[data-v-e9376cc1]>*{padding:1rem}.form__array-item[data-v-e9376cc1]{display:flex;flex-direction:column;gap:1rem}.form__array-item[data-v-e9376cc1]:not(:last-child){border-top:1px solid var(--theme-border-color)}.form__array-remove[data-v-e9376cc1]{font-size:.8rem}.cell-padding[data-v-89303bb6]{padding:10px .8rem}.table[data-v-89303bb6]{width:100%;border-radius:var(--theme-radius-large);border-spacing:0}@media screen and (width >= 768px){.table[data-v-89303bb6]{overflow:hidden;border:var(--theme-frame-border)}}.table[data-v-89303bb6] thead>tr{display:none}@media print{.table[data-v-89303bb6] thead>tr{display:table-row}}@media screen and (width >= 768px){.table[data-v-89303bb6] thead>tr{display:table-row;height:3rem;background:var(--theme-background-color-shade-4);text-align:left}}.table[data-v-89303bb6] thead>tr>th{padding:10px .8rem;font-weight:400}.table[data-v-89303bb6] tbody>tr,.table[data-v-89303bb6] tfoot>tr{height:3rem;border:var(--theme-frame-border);background:var(--theme-background-color-shade-2)}@media screen and (width >= 768px){.table[data-v-89303bb6] tbody>tr,.table[data-v-89303bb6] tfoot>tr{border:0}.table[data-v-89303bb6] tbody>tr:hover,.table[data-v-89303bb6] tfoot>tr:hover{background:var(--theme-background-color-shade-2)}}@media screen and (width <= 768px){.table[data-v-89303bb6] tbody>tr,.table[data-v-89303bb6] tfoot>tr{display:flex;overflow:hidden;height:auto;flex-direction:column;border-radius:var(--theme-radius-large)}.table[data-v-89303bb6] tbody>tr:not(:last-child),.table[data-v-89303bb6] tfoot>tr:not(:last-child){margin-bottom:1rem}}@media screen and (width >= 768px){.table[data-v-89303bb6] tbody>tr:not(:last-child)>td,.table[data-v-89303bb6] tfoot>tr:not(:last-child)>td{border-bottom:1px solid var(--theme-border-color)}}.table[data-v-89303bb6] tbody>tr>td,.table[data-v-89303bb6] tfoot>tr>td{padding:10px .8rem;font-size:9.5pt}@media screen and (width >= 768px){.table[data-v-89303bb6] tfoot>tr>td{border-top:1px solid var(--theme-border-color)}}@media screen and (width <= 768px){.table__cell-grid[data-v-89303bb6]{display:flex;flex-direction:column}}.table__cell-mobile-label[data-v-89303bb6]{display:none;font-weight:500}@media screen and (width <= 768px){.table__cell-mobile-label[data-v-89303bb6]{display:inherit}}.table__cell-actions[data-v-89303bb6]{display:flex;align-items:center;justify-content:flex-end;margin-left:auto;column-gap:.8rem}.table__cell-subvalue[data-v-89303bb6]{font-weight:300}.table__mobile-actions[data-v-89303bb6]{position:relative;padding:0!important;background:var(--theme-background-color-shade-4)}.table__mobile-actions-grid[data-v-89303bb6]{display:grid}.table__mobile-actions-button[data-v-89303bb6]{display:grid;width:100%;height:3.2rem;place-items:center}.table__mobile-actions-button[data-v-89303bb6]:not(last-child){border-right:1px solid var(--theme-border-color)}.table__picture[data-v-89303bb6]{overflow:hidden;width:2rem;height:2rem;border:1px solid var(--theme-border-color);border-radius:var(--theme-radius-large)}.table__empty[data-v-89303bb6]{display:grid;padding:1.6rem 0;place-items:center}.grid[data-v-4839c834]{display:grid;gap:1rem}@media screen and (width >= 600px){.grid[data-v-4839c834]:not(.grid--list){gap:1.6rem;grid-template-columns:repeat(2,1fr)}}@media screen and (width >= 1200px){.grid[data-v-4839c834]:not(.grid--list){grid-template-columns:repeat(3,1fr)}}@media screen and (width >= 1400px){.grid[data-v-4839c834]:not(.grid--list){grid-template-columns:repeat(4,1fr)}}.card__upper[data-v-cfdb8783]{display:flex;align-items:center}.card__information[data-v-cfdb8783]{margin-top:.5rem;font-size:9.5pt;opacity:.6}.crud__controls[data-v-d64cb42a]{display:flex;flex-wrap:wrap;align-items:stretch;justify-content:flex-end;gap:1rem}.crud__search[data-v-d64cb42a]{min-width:90vw;flex:1;order:1}.crud__search[data-v-d64cb42a] .input__container{height:100%}@media screen and (width >= 600px){.crud__search[data-v-d64cb42a]{min-width:auto;order:0}}.crud__actions[data-v-d64cb42a]{display:flex;align-items:stretch;gap:.5rem}.crud__pagination[data-v-d64cb42a]{display:flex;align-items:center;justify-content:flex-end}.crud__context-badge[data-v-d64cb42a]{display:flex;justify-content:flex-end}.prompt[data-v-4cbfd28f]{max-width:32rem}.prompt__options[data-v-4cbfd28f]{display:grid;width:100%;height:4rem}.prompt__option[data-v-4cbfd28f]{display:grid;place-items:center}.prompt__option[data-v-4cbfd28f]:not(:last-child){border-right:1px solid var(--theme-border-color)}.prompt__option--primary[data-v-4cbfd28f]{color:var(--theme-blueish)}.prompt__option--danger[data-v-4cbfd28f]{color:var(--theme-redish)}@keyframes blink-606d47bf{0%{opacity:1}to{opacity:.4}}.toast[data-v-606d47bf]{display:flex;width:90vw;padding:1rem;border:1px solid var(--theme-border-color);border-radius:5px;animation:blink-606d47bf .5s forwards;animation-delay:2s;animation-play-state:paused;background:var(--theme-background-color);box-shadow:0 3px 3px var(--theme-shadow-color);color:var(--theme-foreground-color);gap:1rem}@media screen and (width >= 768px){.toast[data-v-606d47bf]{width:24rem}}.toast[data-v-606d47bf]:hover{animation-play-state:paused}.toast--animate[data-v-606d47bf]{animation-play-state:running}.toast__content[data-v-606d47bf]{display:flex;flex-direction:column;gap:.6rem}.toast__time[data-v-606d47bf]{font-size:10pt;opacity:.8}.main[data-v-8f232683]{display:flex;min-height:100vh;flex-direction:column}.main__toasts[data-v-8f232683]{position:fixed;z-index:100;right:1.6rem;bottom:1.6rem;display:flex;flex-direction:column;row-gap:.6rem}*{box-sizing:border-box;-webkit-tap-highlight-color:transparent}html{overflow:hidden scroll;scroll-behavior:smooth}html,body{padding:0;margin:0}body{font-size:15px}a:link,a:visited,a:hover,a:active{color:inherit;text-decoration:none}input[type=number]{-webkit-appearance:textfield;-moz-appearance:textfield;appearance:textfield}@media print{.no-print{display:none!important}}.aeria-surface{background:var(--theme-background-color);color:var(--theme-foreground-color)}.aeria-surface-alt{background:var(--theme-background-color-shade-2);color:var(--theme-foreground-color)}.aeria-body{background:var(--theme-body-background)}.aeria-branded-text{color:var(--theme-brand-color)}.aeria-redish{color:var(--theme-redish);fill:var(--theme-redish)}.aeria-blueish{color:var(--theme-blueish);fill:var(--theme-blueish)}.loading div{border:4px solid var(--theme-brand-color)!important}@keyframes lds-ripple{0%{top:36px;left:36px;width:0;height:0;opacity:0}5%{opacity:1}to{top:0;left:0;width:72px;height:72px;opacity:0}}.loading{position:relative;display:inline-block;width:80px;height:80px}.loading div{position:absolute;border:4px solid #fff;border-radius:50%;animation:lds-ripple 1s cubic-bezier(0,.2,.8,1) infinite;opacity:1}.loading div:nth-child(2){animation-delay:-.5s}.menu[data-v-3cfef7fb]{min-width:90vw;align-self:center;padding:0;border:1px solid var(--theme-border-color);border-radius:var(--theme-radius-large);background:var(--theme-background-color-shade-2);color:var(--theme-foreground-color)}@media screen and (width >= 600px){.menu[data-v-3cfef7fb]{min-width:22rem}}.menu__entry[data-v-3cfef7fb]{padding:1rem;font-size:11pt}.menu__entry[data-v-3cfef7fb]:not(:last-child){border-bottom:1px solid var(--theme-border-color)}.tabs__horizontal[data-v-a20914ab]{display:flex;gap:1.2rem}.tabs__tab[data-v-a20914ab]{display:flex;align-items:center;cursor:pointer;gap:.2rem}.tabs__tab--current[data-v-a20914ab]{font-weight:600}@media screen and (width >= 600px){.tabs__tab--info[data-v-a20914ab]{margin-right:.6rem;font-size:12pt;font-weight:500}}.tabs__context-menu-icon[data-v-a20914ab]{color:var(--theme-brand-color);font-weight:600}.tabs__context-menu-icon[data-v-a20914ab]:first-child{gap:0}.topbar__preset[data-v-f0a45677]{display:flex;width:100%;align-items:center;justify-content:center;gap:.4rem}@media screen and (width >= 600px){.topbar__preset[data-v-f0a45677]{justify-content:flex-start}}.profile__user-name[data-v-368b73ef]{font-size:18pt;font-weight:600}.profile__menu[data-v-368b73ef]{display:flex;overflow:hidden;flex-direction:column;padding:0;border:1px solid var(--theme-border-color);border-radius:10px;margin-top:2rem;background:var(--theme-background-color-shade-2)}.profile__menu[data-v-368b73ef]>*{padding:1.4rem}.profile__menu[data-v-368b73ef]>*:not(:last-child){border-bottom:1px solid var(--theme-border-color)}
|
package/dist/ui.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { j as p, C as m, k as u, l as c, a as d, m as l, c as P, n as b, d as C, F as h, v as B, p as F, A as x, o as I, b as T, q as f, w as g, e as w, r as M, g as S, x as k, s as y, h as G, _ as R, f as j, D as q, y as v, z, B as D, t as E, u as H, E as O, H as _, G as J } from "./index-
|
|
1
|
+
import { j as p, C as m, k as u, l as c, a as d, m as l, c as P, n as b, d as C, F as h, v as B, p as F, A as x, o as I, b as T, q as f, w as g, e as w, r as M, g as S, x as k, s as y, h as G, _ as R, f as j, D as q, y as v, z, B as D, t as E, u as H, E as O, H as _, G as J } from "./index-99f53a7b.js";
|
|
2
2
|
import "vue";
|
|
3
3
|
import "@aeria-ui/i18n";
|
|
4
4
|
import "@aeria-ui/core";
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aeria-ui/ui",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.150",
|
|
5
5
|
"description": "",
|
|
6
6
|
"keywords": [],
|
|
7
7
|
"author": "",
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"vue-tsc": "2.1.10"
|
|
47
47
|
},
|
|
48
48
|
"peerDependencies": {
|
|
49
|
-
"@aeria-ui/core": "^0.0.
|
|
49
|
+
"@aeria-ui/core": "^0.0.95",
|
|
50
50
|
"@aeria-ui/i18n": "^0.0.14",
|
|
51
51
|
"@aeria-ui/state-management": "^0.0.16",
|
|
52
52
|
"@aeria-ui/utils": "^0.0.6",
|
package/dist/index-54fc64aa.js
DELETED
|
@@ -1,66 +0,0 @@
|
|
|
1
|
-
import { defineComponent as u, ref as m, openBlock as _, createBlock as f, withCtx as r, createVNode as d, withModifiers as w, createTextVNode as b, toDisplayString as h, unref as v } from "vue";
|
|
2
|
-
import { useRouter as x } from "vue-router";
|
|
3
|
-
import { useI18n as $ } from "@aeria-ui/i18n";
|
|
4
|
-
import { useStore as l } from "@aeria-ui/state-management";
|
|
5
|
-
import { h as y, _ as S, a as V } from "./index-da006cde.js";
|
|
6
|
-
import "@aeria-ui/core";
|
|
7
|
-
import "@aeriajs/common";
|
|
8
|
-
import "@aeria-ui/utils";
|
|
9
|
-
const D = /* @__PURE__ */ u({
|
|
10
|
-
__name: "index",
|
|
11
|
-
setup(k) {
|
|
12
|
-
const c = x(), s = l("user"), i = l("meta"), { t } = $(), o = m({
|
|
13
|
-
password: "",
|
|
14
|
-
confirmation: ""
|
|
15
|
-
}), p = async () => {
|
|
16
|
-
const { error: e } = await s.$actions.custom("editProfile", {
|
|
17
|
-
_id: s.item._id,
|
|
18
|
-
password: o.value.password
|
|
19
|
-
});
|
|
20
|
-
if (e) {
|
|
21
|
-
i.$actions.spawnModal({
|
|
22
|
-
title: `Error! ${e.httpStatus}`,
|
|
23
|
-
body: e.code
|
|
24
|
-
});
|
|
25
|
-
return;
|
|
26
|
-
}
|
|
27
|
-
i.$actions.spawnModal({
|
|
28
|
-
title: `${t("done", {
|
|
29
|
-
capitalize: !0
|
|
30
|
-
})}!`,
|
|
31
|
-
body: t("password_has_been_changed", {
|
|
32
|
-
capitalize: !0
|
|
33
|
-
})
|
|
34
|
-
}), c.back();
|
|
35
|
-
};
|
|
36
|
-
return (e, n) => (_(), f(y, {
|
|
37
|
-
bordered: "",
|
|
38
|
-
style: { "--panel-max-width": "40rem" }
|
|
39
|
-
}, {
|
|
40
|
-
default: r(() => [
|
|
41
|
-
d(S, {
|
|
42
|
-
modelValue: o.value,
|
|
43
|
-
"onUpdate:modelValue": n[0] || (n[0] = (a) => o.value = a)
|
|
44
|
-
}, {
|
|
45
|
-
default: r(({ passwordError: a }) => [
|
|
46
|
-
d(V, {
|
|
47
|
-
class: "passchange__save-button",
|
|
48
|
-
disabled: !!a,
|
|
49
|
-
onClick: w(p, ["prevent"])
|
|
50
|
-
}, {
|
|
51
|
-
default: r(() => [
|
|
52
|
-
b(h(v(t)("action.save", { capitalize: !0 })), 1)
|
|
53
|
-
]),
|
|
54
|
-
_: 2
|
|
55
|
-
}, 1032, ["disabled"])
|
|
56
|
-
]),
|
|
57
|
-
_: 1
|
|
58
|
-
}, 8, ["modelValue"])
|
|
59
|
-
]),
|
|
60
|
-
_: 1
|
|
61
|
-
}));
|
|
62
|
-
}
|
|
63
|
-
});
|
|
64
|
-
export {
|
|
65
|
-
D as default
|
|
66
|
-
};
|