@aeria-ui/ui 0.0.166 → 0.0.167

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.
Files changed (57) hide show
  1. package/dist/{_id_-CzbubN0B.js → _id_-BfAy95FM.js} +1 -1
  2. package/dist/{activation-CO01YO4G.js → activation-DX6bZU4X.js} +1 -1
  3. package/dist/components/aeria-accordion/aeria-accordion.vue.d.ts +9 -12
  4. package/dist/components/aeria-badge/aeria-badge.vue.d.ts +9 -12
  5. package/dist/components/aeria-bare-button/aeria-bare-button.vue.d.ts +12 -15
  6. package/dist/components/aeria-button/aeria-button.vue.d.ts +11 -14
  7. package/dist/components/aeria-card/aeria-card.vue.d.ts +12 -15
  8. package/dist/components/aeria-context-menu/aeria-context-menu.vue.d.ts +16 -22
  9. package/dist/components/aeria-crud/_internals/helpers.d.ts +2 -3
  10. package/dist/components/aeria-crud/_internals/layouts/aeria-grid/aeria-grid.vue.d.ts +2 -12
  11. package/dist/components/aeria-crud/_internals/layouts/aeria-tabular/aeria-tabular.vue.d.ts +9 -15
  12. package/dist/components/aeria-crud/_internals/layouts/index.d.ts +41 -85
  13. package/dist/components/aeria-crud/aeria-crud.vue.d.ts +13 -26
  14. package/dist/components/aeria-filter-panel/aeria-filter-panel.vue.d.ts +2 -2
  15. package/dist/components/aeria-grid/aeria-grid.vue.d.ts +9 -12
  16. package/dist/components/aeria-icon/aeria-icon.vue.d.ts +10 -14
  17. package/dist/components/aeria-info/aeria-info.vue.d.ts +12 -26
  18. package/dist/components/aeria-insert-panel/aeria-insert-panel.vue.d.ts +15 -33
  19. package/dist/components/aeria-main/aeria-main.vue.d.ts +8 -4
  20. package/dist/components/aeria-menu/aeria-menu.vue.d.ts +9 -3
  21. package/dist/components/aeria-pagination/aeria-pagination.vue.d.ts +5 -15
  22. package/dist/components/aeria-panel/aeria-panel.vue.d.ts +18 -33
  23. package/dist/components/aeria-picture/aeria-picture.vue.d.ts +11 -14
  24. package/dist/components/aeria-table/aeria-table.vue.d.ts +22 -26
  25. package/dist/components/aeria-tabs/aeria-tabs.vue.d.ts +4 -14
  26. package/dist/components/dashboard/aeria-crud-topbar/aeria-crud-topbar.vue.d.ts +1 -10
  27. package/dist/components/dashboard/aeria-password-form/aeria-password-form.vue.d.ts +14 -17
  28. package/dist/components/dashboard/aeria-prompt/aeria-prompt.vue.d.ts +10 -14
  29. package/dist/components/dashboard/aeria-toast/aeria-toast.vue.d.ts +10 -14
  30. package/dist/components/form/aeria-checkbox/aeria-checkbox.vue.d.ts +16 -26
  31. package/dist/components/form/aeria-file/_internals/components/aeria-file-item.vue.d.ts +9 -13
  32. package/dist/components/form/aeria-file/aeria-file.vue.d.ts +14 -22
  33. package/dist/components/form/aeria-form/_internals/helpers.d.ts +2 -3
  34. package/dist/components/form/aeria-form/aeria-form.vue.d.ts +27 -47
  35. package/dist/components/form/aeria-input/aeria-input.vue.d.ts +18 -22
  36. package/dist/components/form/aeria-options/aeria-options.vue.d.ts +7 -29
  37. package/dist/components/form/aeria-search/_internals/components/aeria-search-container/aeria-search-container.vue.d.ts +17 -16
  38. package/dist/components/form/aeria-search/_internals/components/aeria-search-item/aeria-search-item.vue.d.ts +14 -18
  39. package/dist/components/form/aeria-search/aeria-search.vue.d.ts +3 -25
  40. package/dist/components/form/aeria-select/aeria-select.vue.d.ts +18 -18
  41. package/dist/components/form/aeria-switch/aeria-switch.vue.d.ts +8 -18
  42. package/dist/components/form/types.d.ts +1 -2
  43. package/dist/components/index.d.ts +0 -1
  44. package/dist/{index-C5JXT35d.js → index-665GkH7U.js} +1 -1
  45. package/dist/{index-B9GRVH8R.js → index-B-JkWyqC.js} +1 -1
  46. package/dist/{index-BjelY_IF.js → index-CDZJZN6Y.js} +13 -13
  47. package/dist/{index-CJw4j919.js → index-DSnK-CVK.js} +1 -1
  48. package/dist/{redefine-password-_VbVuJWw.js → redefine-password-BIjWzwY2.js} +1 -1
  49. package/dist/routes.d.ts +1 -2
  50. package/dist/{signin-DUaxIMsk.js → signin-D_X69D2H.js} +1 -1
  51. package/dist/{signup-B1j_nuN6.js → signup-L39DCd6m.js} +1 -1
  52. package/dist/ui.css +1 -1
  53. package/dist/ui.js +1 -1
  54. package/dist/views/dashboard/[collection]/[id].vue.d.ts +1 -10
  55. package/dist/views/dashboard/[collection]/index.vue.d.ts +9 -12
  56. package/dist/views/dashboard/user/profile/index.vue.d.ts +8 -2
  57. package/package.json +8 -8
@@ -1,32 +1,32 @@
1
- import { Property, EnumProperty, BooleanProperty } from '@aeriajs/types';
1
+ import { Property, EnumProperty, BooleanProperty } from '../../../../../../node_modules/@aeriajs/types';
2
2
  import { FormFieldProps } from '../types.js';
3
-
4
3
  type Props = FormFieldProps<any, Property & (EnumProperty | BooleanProperty)> & {
5
4
  booleanRef?: boolean;
6
5
  multiple?: boolean | number;
7
6
  noOutline?: boolean;
8
7
  };
9
8
  declare function __VLS_template(): {
10
- default?(_: {}): any;
9
+ attrs: Partial<{}>;
10
+ slots: {
11
+ default?(_: {}): any;
12
+ };
13
+ refs: {
14
+ select: HTMLSelectElement;
15
+ };
16
+ rootEl: any;
11
17
  };
12
- declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
13
- change: (value: unknown) => void;
14
- "update:modelValue": (value: unknown) => void;
15
- }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>> & Readonly<{
18
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
19
+ declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
20
+ change: (value: unknown) => any;
21
+ "update:modelValue": (value: unknown) => any;
22
+ }, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
16
23
  onChange?: ((value: unknown) => any) | undefined;
17
24
  "onUpdate:modelValue"?: ((value: unknown) => any) | undefined;
18
- }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
19
- declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
25
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
26
+ select: HTMLSelectElement;
27
+ }, any>;
28
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
20
29
  export default _default;
21
- type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
22
- type __VLS_TypePropsToRuntimeProps<T> = {
23
- [K in keyof T]-?: {} extends Pick<T, K> ? {
24
- type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
25
- } : {
26
- type: import('vue').PropType<T[K]>;
27
- required: true;
28
- };
29
- };
30
30
  type __VLS_WithTemplateSlots<T, S> = T & {
31
31
  new (): {
32
32
  $slots: S;
@@ -1,33 +1,23 @@
1
- import { BooleanProperty } from '@aeriajs/types';
1
+ import { BooleanProperty } from '../../../../../../node_modules/@aeriajs/types';
2
2
  import { FormFieldProps } from '../types.js';
3
-
4
- declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<FormFieldProps<any, (import('@aeriajs/types').PropertyBase & BooleanProperty) | (import('@aeriajs/types').PropertyBase & import('@aeriajs/types').RefProperty & BooleanProperty) | (import('@aeriajs/types').PropertyBase & Omit<import('@aeriajs/types').RefProperty, "$ref"> & {
3
+ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<FormFieldProps<any, (import('../../../../../../node_modules/@aeriajs/types').PropertyBase & BooleanProperty) | (import('../../../../../../node_modules/@aeriajs/types').PropertyBase & import('../../../../../../node_modules/@aeriajs/types').RefProperty & BooleanProperty) | (import('../../../../../../node_modules/@aeriajs/types').PropertyBase & Omit<import('../../../../../../node_modules/@aeriajs/types').RefProperty, "$ref"> & {
5
4
  $ref: "file";
6
5
  accept?: readonly string[];
7
6
  extensions?: readonly string[];
8
- } & BooleanProperty) | (import('@aeriajs/types').PropertyBase & import('@aeriajs/types').EnumProperty & BooleanProperty) | (import('@aeriajs/types').PropertyBase & import('@aeriajs/types').GetterProperty & BooleanProperty) | (import('@aeriajs/types').PropertyBase & import('@aeriajs/types').ConstProperty & BooleanProperty)>>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
9
- change: (value: boolean) => void;
10
- "update:modelValue": (value: boolean) => void;
11
- }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<FormFieldProps<any, (import('@aeriajs/types').PropertyBase & BooleanProperty) | (import('@aeriajs/types').PropertyBase & import('@aeriajs/types').RefProperty & BooleanProperty) | (import('@aeriajs/types').PropertyBase & Omit<import('@aeriajs/types').RefProperty, "$ref"> & {
7
+ } & BooleanProperty) | (import('../../../../../../node_modules/@aeriajs/types').PropertyBase & import('../../../../../../node_modules/@aeriajs/types').EnumProperty & BooleanProperty) | (import('../../../../../../node_modules/@aeriajs/types').PropertyBase & import('../../../../../../node_modules/@aeriajs/types').GetterProperty & BooleanProperty) | (import('../../../../../../node_modules/@aeriajs/types').PropertyBase & import('../../../../../../node_modules/@aeriajs/types').ConstProperty & BooleanProperty)>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
8
+ change: (value: boolean) => any;
9
+ "update:modelValue": (value: boolean) => any;
10
+ }, string, import('vue').PublicProps, Readonly<FormFieldProps<any, (import('../../../../../../node_modules/@aeriajs/types').PropertyBase & BooleanProperty) | (import('../../../../../../node_modules/@aeriajs/types').PropertyBase & import('../../../../../../node_modules/@aeriajs/types').RefProperty & BooleanProperty) | (import('../../../../../../node_modules/@aeriajs/types').PropertyBase & Omit<import('../../../../../../node_modules/@aeriajs/types').RefProperty, "$ref"> & {
12
11
  $ref: "file";
13
12
  accept?: readonly string[];
14
13
  extensions?: readonly string[];
15
- } & BooleanProperty) | (import('@aeriajs/types').PropertyBase & import('@aeriajs/types').EnumProperty & BooleanProperty) | (import('@aeriajs/types').PropertyBase & import('@aeriajs/types').GetterProperty & BooleanProperty) | (import('@aeriajs/types').PropertyBase & import('@aeriajs/types').ConstProperty & BooleanProperty)>>>> & Readonly<{
14
+ } & BooleanProperty) | (import('../../../../../../node_modules/@aeriajs/types').PropertyBase & import('../../../../../../node_modules/@aeriajs/types').EnumProperty & BooleanProperty) | (import('../../../../../../node_modules/@aeriajs/types').PropertyBase & import('../../../../../../node_modules/@aeriajs/types').GetterProperty & BooleanProperty) | (import('../../../../../../node_modules/@aeriajs/types').PropertyBase & import('../../../../../../node_modules/@aeriajs/types').ConstProperty & BooleanProperty)>> & Readonly<{
16
15
  onChange?: ((value: boolean) => any) | undefined;
17
16
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
18
- }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>, {
17
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>, {
19
18
  default?(_: {}): any;
20
19
  }>;
21
20
  export default _default;
22
- type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
23
- type __VLS_TypePropsToRuntimeProps<T> = {
24
- [K in keyof T]-?: {} extends Pick<T, K> ? {
25
- type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
26
- } : {
27
- type: import('vue').PropType<T[K]>;
28
- required: true;
29
- };
30
- };
31
21
  type __VLS_WithTemplateSlots<T, S> = T & {
32
22
  new (): {
33
23
  $slots: S;
@@ -1,5 +1,4 @@
1
- import { Property, RefProperty, ArrayProperty } from '@aeriajs/types';
2
-
1
+ import { Property, RefProperty, ArrayProperty } from '../../../../../node_modules/@aeriajs/types';
3
2
  export type FormFieldProps<TModelValue, TProperty = Property> = {
4
3
  modelValue?: TModelValue;
5
4
  property?: TProperty;
@@ -17,7 +17,6 @@ import { default as AeriaPanel } from './aeria-panel/aeria-panel.vue';
17
17
  import { default as AeriaPicture } from './aeria-picture/aeria-picture.vue';
18
18
  import { default as AeriaTable } from './aeria-table/aeria-table.vue';
19
19
  import { default as AeriaTabs } from './aeria-tabs/aeria-tabs.vue';
20
-
21
20
  export { AeriaAccordion, AeriaBadge, AeriaBareButton, AeriaButton, AeriaCard, AeriaContextMenu, AeriaCrud, AeriaGrid, AeriaFilterPanel, AeriaIcon, AeriaInfo, AeriaInsertPanel, AeriaMain, AeriaMenu, AeriaPagination, AeriaPanel, AeriaPicture, AeriaTable, AeriaTabs, };
22
21
  export * from './form/index.js';
23
22
  export * from './utils/index.js';
@@ -2,7 +2,7 @@ import { defineComponent as k, ref as h, resolveDirective as A, createElementBlo
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 S } from "@aeria-ui/core";
5
- import { g as E, h as z, b as p, i as O, A as B, a as M, _ as U } from "./index-BjelY_IF.js";
5
+ import { g as E, h as z, b as p, i as O, A as B, a as M, _ as U } from "./index-CDZJZN6Y.js";
6
6
  const D = { class: "profile__user-name" }, F = /* @__PURE__ */ k({
7
7
  __name: "index",
8
8
  setup(j) {
@@ -1,5 +1,5 @@
1
1
  import { defineComponent as o, createBlock as t, createCommentVNode as r, openBlock as n, createSlots as c, withCtx as l, renderSlot as i } from "vue";
2
- import { e as m } from "./index-BjelY_IF.js";
2
+ import { e as m } from "./index-CDZJZN6Y.js";
3
3
  const u = /* @__PURE__ */ o({
4
4
  __name: "index",
5
5
  props: {
@@ -1,10 +1,10 @@
1
1
  import { defineComponent as z, ref as ee, resolveDirective as te, createElementBlock as l, openBlock as t, normalizeClass as Y, Fragment as P, renderList as D, withDirectives as N, createCommentVNode as $, createTextVNode as W, toDisplayString as C, unref as e, renderSlot as A, withModifiers as Re, inject as ye, computed as J, createElementVNode as I, mergeProps as M, createBlock as V, withCtx as h, resolveDynamicComponent as $e, useCssVars as $t, normalizeProps as ce, guardReactiveProps as Ce, Teleport as We, createVNode as q, onMounted as Ye, watch as de, vModelDynamic as gt, onBeforeMount as yt, normalizeStyle as ke, provide as ge, createSlots as me, 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 L, useI18n as Bt } from "@aeria-ui/i18n";
3
3
  import { INSTANCE_VARS_SYMBOL as St, useScrollObserver as Ke, useBreakpoints as qe, useMask as wt, PAGINATION_PER_PAGE_DEFAULTS as Tt, API_URL as _t, request as jt, useDebounce as ht, convertToSearchQuery as Rt, useParentCollectionStore as je, useCollectionStore as Lt, useAction as qt, convertFromSearchQuery as Mt, usePasswordPolicy as zt } from "@aeria-ui/core";
4
- import { arraysIntersect as Ge, deepClone as Ae, getReferenceProperty as fe, freshItem as Et, isRequired as ct, evaluateCondition as Fe, deepMerge as Le } from "@aeriajs/common";
4
+ import { arraysIntersect as Ge, deepClone as Ae, getReferenceProperty as fe, convertConditionToQuery as Et, freshItem as Ft, isRequired as ct, evaluateCondition as Fe, deepMerge as Le } from "@aeriajs/common";
5
5
  import { useStore as se, getStoreId as Me, useParentStore as He, STORE_ID as ze, getGlobalStateManager as Xe } from "@aeria-ui/state-management";
6
6
  import { useRouter as Be } from "vue-router";
7
- import { convertConditionToQuery as Ft, isDocumentComplete as Ut, getObjectKey as Ht } from "@aeria-ui/utils";
7
+ import { isDocumentComplete as Ut, 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"
@@ -1443,7 +1443,7 @@ const Dt = ["onClick"], Qt = { key: 0 }, Gt = {
1443
1443
  const Q = e(c);
1444
1444
  k[Q] = _;
1445
1445
  }
1446
- return a.constraints ? Ft(a.constraints, k) : {};
1446
+ return a.constraints ? Et(a.constraints, k) : {};
1447
1447
  }, b = () => {
1448
1448
  y.value.length < B.value.recordsTotal && (s.value += 1, oe());
1449
1449
  }, H = async () => E.value.length === 0 ? m.$actions.custom("getAll", {
@@ -1611,7 +1611,7 @@ const Dt = ["onClick"], Qt = { key: 0 }, Gt = {
1611
1611
  ]);
1612
1612
  };
1613
1613
  }
1614
- }), Bo = /* @__PURE__ */ G(Io, [["__scopeId", "data-v-b5466d6b"]]), mt = (p, r) => {
1614
+ }), Bo = /* @__PURE__ */ G(Io, [["__scopeId", "data-v-7a35daa0"]]), mt = (p, r) => {
1615
1615
  const n = "items" in p ? p.items : p, o = {
1616
1616
  options: Gn,
1617
1617
  select: Je,
@@ -1644,7 +1644,7 @@ const Dt = ["onClick"], Qt = { key: 0 }, Gt = {
1644
1644
  const a = se(o.$ref, n), d = Ae(a.$freshItem);
1645
1645
  return p.push(d);
1646
1646
  }
1647
- return "properties" in o ? p.push(Et(o)) : "type" in o && o.type === "boolean" ? p.push({}) : p.push(null);
1647
+ return "properties" in o ? p.push(Ft(o)) : "type" in o && o.type === "boolean" ? p.push({}) : p.push(null);
1648
1648
  }, wo = (p, r) => {
1649
1649
  p.splice(r, 1);
1650
1650
  }, To = {
@@ -3396,7 +3396,7 @@ const wl = /* @__PURE__ */ G(ol, [["render", ll], ["__scopeId", "data-v-3cfef7fb
3396
3396
  {
3397
3397
  path: "signin",
3398
3398
  name: "/user/signin",
3399
- component: () => import("./signin-DUaxIMsk.js"),
3399
+ component: () => import("./signin-D_X69D2H.js"),
3400
3400
  meta: {
3401
3401
  title: "Sign in"
3402
3402
  }
@@ -3404,7 +3404,7 @@ const wl = /* @__PURE__ */ G(ol, [["render", ll], ["__scopeId", "data-v-3cfef7fb
3404
3404
  {
3405
3405
  path: "signup",
3406
3406
  name: "/user/signup",
3407
- component: () => import("./signup-B1j_nuN6.js"),
3407
+ component: () => import("./signup-L39DCd6m.js"),
3408
3408
  meta: {
3409
3409
  title: "Sign up"
3410
3410
  }
@@ -3412,7 +3412,7 @@ const wl = /* @__PURE__ */ G(ol, [["render", ll], ["__scopeId", "data-v-3cfef7fb
3412
3412
  {
3413
3413
  path: "redefine-password",
3414
3414
  name: "/user/redefine-password",
3415
- component: () => import("./redefine-password-_VbVuJWw.js"),
3415
+ component: () => import("./redefine-password-BIjWzwY2.js"),
3416
3416
  meta: {
3417
3417
  title: "Redefine password"
3418
3418
  }
@@ -3420,7 +3420,7 @@ const wl = /* @__PURE__ */ G(ol, [["render", ll], ["__scopeId", "data-v-3cfef7fb
3420
3420
  {
3421
3421
  path: "activation",
3422
3422
  name: "/user/activation",
3423
- component: () => import("./activation-CO01YO4G.js"),
3423
+ component: () => import("./activation-DX6bZU4X.js"),
3424
3424
  meta: {
3425
3425
  title: "Activate user"
3426
3426
  }
@@ -3442,7 +3442,7 @@ const wl = /* @__PURE__ */ G(ol, [["render", ll], ["__scopeId", "data-v-3cfef7fb
3442
3442
  name: "/dashboard/:collection",
3443
3443
  props: !0,
3444
3444
  components: {
3445
- default: () => import("./index-B9GRVH8R.js"),
3445
+ default: () => import("./index-B-JkWyqC.js"),
3446
3446
  topbar: () => Promise.resolve().then(() => bl)
3447
3447
  },
3448
3448
  meta: {
@@ -3456,7 +3456,7 @@ const wl = /* @__PURE__ */ G(ol, [["render", ll], ["__scopeId", "data-v-3cfef7fb
3456
3456
  name: "/dashboard/:collection/:id",
3457
3457
  props: !0,
3458
3458
  components: {
3459
- default: () => import("./_id_-CzbubN0B.js")
3459
+ default: () => import("./_id_-BfAy95FM.js")
3460
3460
  },
3461
3461
  meta: {
3462
3462
  title: ({ collectionName: n, t: o }) => o(n, {
@@ -3476,7 +3476,7 @@ const wl = /* @__PURE__ */ G(ol, [["render", ll], ["__scopeId", "data-v-3cfef7fb
3476
3476
  children: [
3477
3477
  {
3478
3478
  path: "profile",
3479
- component: () => import("./index-C5JXT35d.js"),
3479
+ component: () => import("./index-665GkH7U.js"),
3480
3480
  meta: {
3481
3481
  title: "User profile",
3482
3482
  icon: "user-square"
@@ -3485,7 +3485,7 @@ const wl = /* @__PURE__ */ G(ol, [["render", ll], ["__scopeId", "data-v-3cfef7fb
3485
3485
  {
3486
3486
  path: "changepass",
3487
3487
  name: "/dashboard/user/changepass",
3488
- component: () => import("./index-CJw4j919.js"),
3488
+ component: () => import("./index-DSnK-CVK.js"),
3489
3489
  meta: {
3490
3490
  title: "Change password",
3491
3491
  icon: "lock"
@@ -2,7 +2,7 @@ import { defineComponent as p, ref as m, createBlock as _, openBlock as f, withC
2
2
  import { useRouter as v } from "vue-router";
3
3
  import { useI18n as x } from "@aeria-ui/i18n";
4
4
  import { useStore as c } from "@aeria-ui/state-management";
5
- import { i as y, c as S, a as V } from "./index-BjelY_IF.js";
5
+ import { i as y, c as S, a as V } from "./index-CDZJZN6Y.js";
6
6
  const A = /* @__PURE__ */ p({
7
7
  __name: "index",
8
8
  setup(k) {
@@ -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, c as I, a as _ } from "./index-BjelY_IF.js";
6
+ import { A as E, c as I, a as _ } from "./index-CDZJZN6Y.js";
7
7
  const N = { key: 0 }, T = {
8
8
  key: 0,
9
9
  style: { display: "grid", gap: "1rem" }
package/dist/routes.d.ts CHANGED
@@ -1,7 +1,6 @@
1
1
  import { Component } from 'vue';
2
2
  import { RouteRecordRaw } from 'vue-router';
3
- import { RouteTitleConfig } from '@aeria-ui/core';
4
-
3
+ import { RouteTitleConfig } from '../../core/dist';
5
4
  type RouteConfig = {
6
5
  meta?: {
7
6
  title: RouteTitleConfig;
@@ -2,7 +2,7 @@ import { defineComponent as V, inject as A, resolveComponent as C, createElement
2
2
  import { INSTANCE_VARS_SYMBOL as b, STORAGE_NAMESPACE as v } from "@aeria-ui/core";
3
3
  import { useStore as h } from "@aeria-ui/state-management";
4
4
  import { useRouter as w } from "vue-router";
5
- import { A as x, a as y, _ as B } from "./index-BjelY_IF.js";
5
+ import { A as x, a as y, _ as B } from "./index-CDZJZN6Y.js";
6
6
  const L = { class: "signin" }, I = ["innerHTML"], M = { key: 1 }, R = { class: "signin__buttons" }, F = /* @__PURE__ */ V({
7
7
  __name: "signin",
8
8
  setup(H) {
@@ -1,7 +1,7 @@
1
1
  import { defineComponent as h, withAsyncContext as A, ref as c, resolveDirective as C, createElementBlock as $, openBlock as b, Fragment as x, createElementVNode as p, createVNode as n, withDirectives as B, toDisplayString as i, createBlock as S, unref as g, withCtx as s, createTextVNode as m, 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, c as F, d as P, a as j } from "./index-BjelY_IF.js";
4
+ import { b as M, A as N, c as F, d as P, a as j } from "./index-CDZJZN6Y.js";
5
5
  const q = { style: { display: "flex", "flex-direction": "column", "align-items": "start", gap: "2rem" } }, H = /* @__PURE__ */ h({
6
6
  __name: "signup",
7
7
  async setup(I) {
package/dist/ui.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-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-3075829a]{padding:1.4rem}@media screen and (width >= 768px){.padding[data-v-3075829a]{padding:1.8rem 2.4rem}}.panel[data-v-3075829a]{--min-width: var(--panel-min-width, 36rem);--max-width: var(--panel-max-width, unset);--fixed-width: 50rem}.panel--fixed[data-v-3075829a]{position:absolute}.panel__content[data-v-3075829a]{display:flex;overflow:hidden;flex-direction:column;padding:0}@media screen and (width >= 768px){.panel__content[data-v-3075829a]{min-width:var(--min-width);max-width:var(--max-width)}}.panel__content--outer-header[data-v-3075829a]{border:none!important;background:transparent!important}.panel__content--outer-header .panel__body[data-v-3075829a],.panel__content--outer-header .panel__footer[data-v-3075829a]{border-radius:5px;background:var(--theme-background-color)}.panel__content--bordered[data-v-3075829a]{border:1px solid var(--theme-border-color);border-radius:var(--theme-radius-large)}.panel__content--float .panel__header[data-v-3075829a],.panel__content--fixed-right .panel__header[data-v-3075829a]{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-3075829a],.panel__content--fixed-right .panel__header[data-v-3075829a]{padding:.6rem 2.4rem}}.panel__content--float[data-v-3075829a]{position:fixed;top:50%;min-width:90vw;max-width:90vw;max-height:80vh;border-radius:var(--theme-radius-large);margin:auto;animation:var(--theme-animation-float);transform:translateY(-50%)}@media screen and (width >= 768px){.panel__content--float[data-v-3075829a]{min-width:var(--min-width);max-width:var(--max-width)}}.panel__content--fixed-right[data-v-3075829a]{position:fixed;top:0;width:100vw;height:100vh;border:0;border-radius:0;margin:auto 0 auto auto;animation:var(--theme-animation-fixed-right)}@media screen and (width >= 768px){.panel__content--fixed-right[data-v-3075829a]{width:var(--fixed-width)}}.panel__content--transparent[data-v-3075829a]{border:none!important;background:none!important}@media screen and (width <= 768px){.panel__content--transparent-mobile[data-v-3075829a]{border:none!important;background:none!important}.panel__content--transparent-mobile .panel__header[data-v-3075829a]{margin-bottom:1rem}}.panel__header[data-v-3075829a]{display:flex;min-height:3rem;align-items:center;line-height:100%}.panel__header[data-v-3075829a] [data-component=icon]{width:1.2rem}.panel__header[data-v-3075829a]:not(.panel__header--outer){background:var(--theme-background-color-shade-4)}.panel__header-left[data-v-3075829a]{display:flex;flex:1;align-items:center}.panel__body[data-v-3075829a]{display:flex;flex-direction:column;overflow-y:auto;overscroll-behavior:contain;row-gap:1.8rem}.panel__body--padded[data-v-3075829a]{padding:1.4rem}@media screen and (width >= 768px){.panel__body--padded[data-v-3075829a]{padding:1.8rem 2.4rem}}.panel__footer[data-v-3075829a]{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-3075829a]{padding:1rem 1.4rem}@media screen and (width >= 768px){.panel__footer--padded[data-v-3075829a]{padding:1rem 2.4rem}}.panel__footer--shadowed[data-v-3075829a]{z-index:10;box-shadow:0 4px 20px var(--theme-shadow-color)}.content__body[data-v-ee3ea72f]{animation:var(--theme-animation-dropdown)}.content__section[data-v-ee3ea72f]:not(:last-child){border-bottom:1px solid var(--theme-border-color)}@media screen and (width >= 600px){.content__section[data-v-ee3ea72f]{min-width:12rem}}.content__item[data-v-ee3ea72f]{display:flex;width:100%;color:var(--theme-foreground-color);font-weight:400}.content__item[data-v-ee3ea72f]>*{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-ee3ea72f]>*{justify-content:flex-start;padding:1rem!important}}.content__item--reactive[data-v-ee3ea72f]:hover{background:var(--theme-background-color-shade-4)}.content__item[data-v-ee3ea72f]:not(:last-child){border-bottom:1px solid var(--theme-border-color)}.contextmenu__trigger[data-v-ee3ea72f]{display:flex;justify-content:flex-start}.content[data-v-ee3ea72f] .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-ee3ea72f] .panel__content{top:0;left:0;transform:translate(min(var(--4078ef85),calc(100vw - 100%))) translateY(min(var(--4078ef86),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-36753c7c]{border:1px solid var(--theme-brand-color)}.focus .input__icon[data-v-36753c7c] [data-component=icon]{fill:var(--theme-brand-color)}.input:focus-within .input__container[data-v-36753c7c],.textarea:focus-within .input__container[data-v-36753c7c]{border:1px solid var(--theme-brand-color)}.input:focus-within .input__icon[data-v-36753c7c] [data-component=icon],.textarea:focus-within .input__icon[data-v-36753c7c] [data-component=icon]{fill:var(--theme-brand-color)}.input[data-v-36753c7c]{--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-36753c7c]{position:relative;display:flex;overflow:hidden;width:var(--input-width, 100%);border:var(--border)}.input__container[data-v-36753c7c]:not(.input__container--textarea){height:var(--height)}.input__container--normal[data-v-36753c7c],.input__container--bold[data-v-36753c7c]{border-radius:var(--theme-radius-medium);background:var(--background-color)}.input__container--bold[data-v-36753c7c]{height:var(--height-large)}.input__container--light[data-v-36753c7c]{border-bottom:1px solid var(--theme-border-color)}.input__container>.input__input[data-v-36753c7c],.input__container>.input__textarea[data-v-36753c7c]{background:var(--background-color)}.input__input[data-v-36753c7c],.input__textarea[data-v-36753c7c]{font-family:unset}.input__input[data-v-36753c7c]{width:100%;height:100%;outline:none}.input__input--normal[data-v-36753c7c],.input__input--bold[data-v-36753c7c]{color:var(--theme-foreground-color)}.input__input--normal[data-v-36753c7c]{padding:var(--padding);font-size:11pt}.input__input--bold[data-v-36753c7c]{padding:var(--padding-large);font-size:12.5pt}.input__input--light[data-v-36753c7c]{padding:.6rem;background:transparent}.input__input--icon[data-v-36753c7c]{padding-left:2.6em!important}.input__input--readOnly[data-v-36753c7c]{background:#eee}.input__textarea[data-v-36753c7c]{display:block;width:100%;height:8em;outline:none}.input__icon[data-v-36753c7c]{position:absolute;top:50%;left:.6em;width:1.1em;transform:translateY(-50%)}.input__icon[data-v-36753c7c] [data-component=icon]{fill:#bbb}.input__icon--bold[data-v-36753c7c] [data-component=icon]{width:1.2rem;height:1.2rem}.input__clipboard[data-v-36753c7c]{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]{--input-width: 4rem;--input-height: 100%;--input-padding: 0 .4rem;--input-border: 1px solid var(--theme-border-color);display:inline-flex;height:2.6rem;align-items:stretch;gap:1rem}.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;color:var(--theme-foreground-color)}.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-e01a149a]{padding:10px .8rem}.table[data-v-e01a149a]{width:100%;border-radius:var(--theme-radius-large);border-spacing:0}@media screen and (width >= 768px){.table[data-v-e01a149a]{overflow:hidden;border:var(--theme-frame-border)}}.table[data-v-e01a149a] thead>tr{display:none}@media print{.table[data-v-e01a149a] thead>tr{display:table-row}}@media screen and (width >= 768px){.table[data-v-e01a149a] thead>tr{display:table-row;height:3rem;background:var(--theme-background-color-shade-4);text-align:left}}.table[data-v-e01a149a] thead>tr>th{padding:10px .8rem;font-weight:400}.table[data-v-e01a149a] tbody>tr,.table[data-v-e01a149a] tfoot>tr{height:3rem;border:var(--theme-frame-border);background:var(--theme-background-color-shade-2)}@media screen and (width >= 768px){.table[data-v-e01a149a] tbody>tr,.table[data-v-e01a149a] tfoot>tr{border:0}.table[data-v-e01a149a] tbody>tr:hover,.table[data-v-e01a149a] tfoot>tr:hover{background:var(--theme-background-color-shade-2)}}@media screen and (width <= 768px){.table[data-v-e01a149a] tbody>tr,.table[data-v-e01a149a] tfoot>tr{display:flex;overflow:hidden;height:auto;flex-direction:column;border-radius:var(--theme-radius-large)}.table[data-v-e01a149a] tbody>tr:not(:last-child),.table[data-v-e01a149a] tfoot>tr:not(:last-child){margin-bottom:1rem}}@media screen and (width >= 768px){.table[data-v-e01a149a] tbody>tr:not(:last-child)>td,.table[data-v-e01a149a] tfoot>tr:not(:last-child)>td{border-bottom:1px solid var(--theme-border-color)}}.table[data-v-e01a149a] tbody>tr>td,.table[data-v-e01a149a] tfoot>tr>td{padding:10px .8rem;font-size:9.5pt}@media screen and (width >= 768px){.table[data-v-e01a149a] tfoot>tr>td{border-top:1px solid var(--theme-border-color)}}@media screen and (width <= 768px){.table__cell-grid[data-v-e01a149a]{display:flex;flex-direction:column}}.table__cell-mobile-label[data-v-e01a149a]{display:none;font-weight:500}@media screen and (width <= 768px){.table__cell-mobile-label[data-v-e01a149a]{display:inherit}}.table__cell-actions[data-v-e01a149a]{display:flex;align-items:center;justify-content:flex-end;margin-left:auto;column-gap:.8rem}.table__cell-subvalue[data-v-e01a149a]{font-weight:300}.table__mobile-actions[data-v-e01a149a]{position:relative;padding:0!important;background:var(--theme-background-color-shade-4)}.table__mobile-actions-grid[data-v-e01a149a]{display:grid}.table__mobile-actions-button[data-v-e01a149a]{display:grid;width:100%;height:3.2rem;place-items:center}.table__mobile-actions-button[data-v-e01a149a]:not(last-child){border-right:1px solid var(--theme-border-color)}.table__picture[data-v-e01a149a]{overflow:hidden;width:2rem;height:2rem;border:1px solid var(--theme-border-color);border-radius:var(--theme-radius-large)}.table__empty[data-v-e01a149a]{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-b4b8f1e7]{display:flex;align-items:center}.card__information[data-v-b4b8f1e7]{display:flex;flex-wrap:wrap;margin-top:.5rem;font-size:9.5pt;gap:.4rem;opacity:.6}.card__information div[data-v-b4b8f1e7]:not(:first-child){padding-left:.4rem;border-left:1px solid var(--theme-border-color)}.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-8de8a4eb]{display:flex;min-height:100vh;flex-direction:column}.main__toasts[data-v-8de8a4eb]{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}}.signin[data-v-0a6df93d]{text-align:center}.signin__header[data-v-0a6df93d]{margin-bottom:.8rem;font-size:2.4rem}.signin__buttons[data-v-0a6df93d]{display:flex;width:100%;flex-direction:column;gap:1rem}.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-3075829a]{padding:1.4rem}@media screen and (width >= 768px){.padding[data-v-3075829a]{padding:1.8rem 2.4rem}}.panel[data-v-3075829a]{--min-width: var(--panel-min-width, 36rem);--max-width: var(--panel-max-width, unset);--fixed-width: 50rem}.panel--fixed[data-v-3075829a]{position:absolute}.panel__content[data-v-3075829a]{display:flex;overflow:hidden;flex-direction:column;padding:0}@media screen and (width >= 768px){.panel__content[data-v-3075829a]{min-width:var(--min-width);max-width:var(--max-width)}}.panel__content--outer-header[data-v-3075829a]{border:none!important;background:transparent!important}.panel__content--outer-header .panel__body[data-v-3075829a],.panel__content--outer-header .panel__footer[data-v-3075829a]{border-radius:5px;background:var(--theme-background-color)}.panel__content--bordered[data-v-3075829a]{border:1px solid var(--theme-border-color);border-radius:var(--theme-radius-large)}.panel__content--float .panel__header[data-v-3075829a],.panel__content--fixed-right .panel__header[data-v-3075829a]{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-3075829a],.panel__content--fixed-right .panel__header[data-v-3075829a]{padding:.6rem 2.4rem}}.panel__content--float[data-v-3075829a]{position:fixed;top:50%;min-width:90vw;max-width:90vw;max-height:80vh;border-radius:var(--theme-radius-large);margin:auto;animation:var(--theme-animation-float);transform:translateY(-50%)}@media screen and (width >= 768px){.panel__content--float[data-v-3075829a]{min-width:var(--min-width);max-width:var(--max-width)}}.panel__content--fixed-right[data-v-3075829a]{position:fixed;top:0;width:100vw;height:100vh;border:0;border-radius:0;margin:auto 0 auto auto;animation:var(--theme-animation-fixed-right)}@media screen and (width >= 768px){.panel__content--fixed-right[data-v-3075829a]{width:var(--fixed-width)}}.panel__content--transparent[data-v-3075829a]{border:none!important;background:none!important}@media screen and (width <= 768px){.panel__content--transparent-mobile[data-v-3075829a]{border:none!important;background:none!important}.panel__content--transparent-mobile .panel__header[data-v-3075829a]{margin-bottom:1rem}}.panel__header[data-v-3075829a]{display:flex;min-height:3rem;align-items:center;line-height:100%}.panel__header[data-v-3075829a] [data-component=icon]{width:1.2rem}.panel__header[data-v-3075829a]:not(.panel__header--outer){background:var(--theme-background-color-shade-4)}.panel__header-left[data-v-3075829a]{display:flex;flex:1;align-items:center}.panel__body[data-v-3075829a]{display:flex;flex-direction:column;overflow-y:auto;overscroll-behavior:contain;row-gap:1.8rem}.panel__body--padded[data-v-3075829a]{padding:1.4rem}@media screen and (width >= 768px){.panel__body--padded[data-v-3075829a]{padding:1.8rem 2.4rem}}.panel__footer[data-v-3075829a]{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-3075829a]{padding:1rem 1.4rem}@media screen and (width >= 768px){.panel__footer--padded[data-v-3075829a]{padding:1rem 2.4rem}}.panel__footer--shadowed[data-v-3075829a]{z-index:10;box-shadow:0 4px 20px var(--theme-shadow-color)}.content__body[data-v-ee3ea72f]{animation:var(--theme-animation-dropdown)}.content__section[data-v-ee3ea72f]:not(:last-child){border-bottom:1px solid var(--theme-border-color)}@media screen and (width >= 600px){.content__section[data-v-ee3ea72f]{min-width:12rem}}.content__item[data-v-ee3ea72f]{display:flex;width:100%;color:var(--theme-foreground-color);font-weight:400}.content__item[data-v-ee3ea72f]>*{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-ee3ea72f]>*{justify-content:flex-start;padding:1rem!important}}.content__item--reactive[data-v-ee3ea72f]:hover{background:var(--theme-background-color-shade-4)}.content__item[data-v-ee3ea72f]:not(:last-child){border-bottom:1px solid var(--theme-border-color)}.contextmenu__trigger[data-v-ee3ea72f]{display:flex;justify-content:flex-start}.content[data-v-ee3ea72f] .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-ee3ea72f] .panel__content{top:0;left:0;transform:translate(min(var(--4078ef85),calc(100vw - 100%))) translateY(min(var(--4078ef86),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-36753c7c]{border:1px solid var(--theme-brand-color)}.focus .input__icon[data-v-36753c7c] [data-component=icon]{fill:var(--theme-brand-color)}.input:focus-within .input__container[data-v-36753c7c],.textarea:focus-within .input__container[data-v-36753c7c]{border:1px solid var(--theme-brand-color)}.input:focus-within .input__icon[data-v-36753c7c] [data-component=icon],.textarea:focus-within .input__icon[data-v-36753c7c] [data-component=icon]{fill:var(--theme-brand-color)}.input[data-v-36753c7c]{--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-36753c7c]{position:relative;display:flex;overflow:hidden;width:var(--input-width, 100%);border:var(--border)}.input__container[data-v-36753c7c]:not(.input__container--textarea){height:var(--height)}.input__container--normal[data-v-36753c7c],.input__container--bold[data-v-36753c7c]{border-radius:var(--theme-radius-medium);background:var(--background-color)}.input__container--bold[data-v-36753c7c]{height:var(--height-large)}.input__container--light[data-v-36753c7c]{border-bottom:1px solid var(--theme-border-color)}.input__container>.input__input[data-v-36753c7c],.input__container>.input__textarea[data-v-36753c7c]{background:var(--background-color)}.input__input[data-v-36753c7c],.input__textarea[data-v-36753c7c]{font-family:unset}.input__input[data-v-36753c7c]{width:100%;height:100%;outline:none}.input__input--normal[data-v-36753c7c],.input__input--bold[data-v-36753c7c]{color:var(--theme-foreground-color)}.input__input--normal[data-v-36753c7c]{padding:var(--padding);font-size:11pt}.input__input--bold[data-v-36753c7c]{padding:var(--padding-large);font-size:12.5pt}.input__input--light[data-v-36753c7c]{padding:.6rem;background:transparent}.input__input--icon[data-v-36753c7c]{padding-left:2.6em!important}.input__input--readOnly[data-v-36753c7c]{background:#eee}.input__textarea[data-v-36753c7c]{display:block;width:100%;height:8em;outline:none}.input__icon[data-v-36753c7c]{position:absolute;top:50%;left:.6em;width:1.1em;transform:translateY(-50%)}.input__icon[data-v-36753c7c] [data-component=icon]{fill:#bbb}.input__icon--bold[data-v-36753c7c] [data-component=icon]{width:1.2rem;height:1.2rem}.input__clipboard[data-v-36753c7c]{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]{--input-width: 4rem;--input-height: 100%;--input-padding: 0 .4rem;--input-border: 1px solid var(--theme-border-color);display:inline-flex;height:2.6rem;align-items:stretch;gap:1rem}.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;color:var(--theme-foreground-color)}.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-7a35daa0]{display:flex;flex-direction:column}.search__panel[data-v-7a35daa0]{display:flex;flex-direction:column;gap:1rem}.search__input[data-v-7a35daa0]{display:flex;align-items:stretch;margin-bottom:.8rem;gap:.8rem}.search__summary[data-v-7a35daa0]{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-e01a149a]{padding:10px .8rem}.table[data-v-e01a149a]{width:100%;border-radius:var(--theme-radius-large);border-spacing:0}@media screen and (width >= 768px){.table[data-v-e01a149a]{overflow:hidden;border:var(--theme-frame-border)}}.table[data-v-e01a149a] thead>tr{display:none}@media print{.table[data-v-e01a149a] thead>tr{display:table-row}}@media screen and (width >= 768px){.table[data-v-e01a149a] thead>tr{display:table-row;height:3rem;background:var(--theme-background-color-shade-4);text-align:left}}.table[data-v-e01a149a] thead>tr>th{padding:10px .8rem;font-weight:400}.table[data-v-e01a149a] tbody>tr,.table[data-v-e01a149a] tfoot>tr{height:3rem;border:var(--theme-frame-border);background:var(--theme-background-color-shade-2)}@media screen and (width >= 768px){.table[data-v-e01a149a] tbody>tr,.table[data-v-e01a149a] tfoot>tr{border:0}.table[data-v-e01a149a] tbody>tr:hover,.table[data-v-e01a149a] tfoot>tr:hover{background:var(--theme-background-color-shade-2)}}@media screen and (width <= 768px){.table[data-v-e01a149a] tbody>tr,.table[data-v-e01a149a] tfoot>tr{display:flex;overflow:hidden;height:auto;flex-direction:column;border-radius:var(--theme-radius-large)}.table[data-v-e01a149a] tbody>tr:not(:last-child),.table[data-v-e01a149a] tfoot>tr:not(:last-child){margin-bottom:1rem}}@media screen and (width >= 768px){.table[data-v-e01a149a] tbody>tr:not(:last-child)>td,.table[data-v-e01a149a] tfoot>tr:not(:last-child)>td{border-bottom:1px solid var(--theme-border-color)}}.table[data-v-e01a149a] tbody>tr>td,.table[data-v-e01a149a] tfoot>tr>td{padding:10px .8rem;font-size:9.5pt}@media screen and (width >= 768px){.table[data-v-e01a149a] tfoot>tr>td{border-top:1px solid var(--theme-border-color)}}@media screen and (width <= 768px){.table__cell-grid[data-v-e01a149a]{display:flex;flex-direction:column}}.table__cell-mobile-label[data-v-e01a149a]{display:none;font-weight:500}@media screen and (width <= 768px){.table__cell-mobile-label[data-v-e01a149a]{display:inherit}}.table__cell-actions[data-v-e01a149a]{display:flex;align-items:center;justify-content:flex-end;margin-left:auto;column-gap:.8rem}.table__cell-subvalue[data-v-e01a149a]{font-weight:300}.table__mobile-actions[data-v-e01a149a]{position:relative;padding:0!important;background:var(--theme-background-color-shade-4)}.table__mobile-actions-grid[data-v-e01a149a]{display:grid}.table__mobile-actions-button[data-v-e01a149a]{display:grid;width:100%;height:3.2rem;place-items:center}.table__mobile-actions-button[data-v-e01a149a]:not(last-child){border-right:1px solid var(--theme-border-color)}.table__picture[data-v-e01a149a]{overflow:hidden;width:2rem;height:2rem;border:1px solid var(--theme-border-color);border-radius:var(--theme-radius-large)}.table__empty[data-v-e01a149a]{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-b4b8f1e7]{display:flex;align-items:center}.card__information[data-v-b4b8f1e7]{display:flex;flex-wrap:wrap;margin-top:.5rem;font-size:9.5pt;gap:.4rem;opacity:.6}.card__information div[data-v-b4b8f1e7]:not(:first-child){padding-left:.4rem;border-left:1px solid var(--theme-border-color)}.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-8de8a4eb]{display:flex;min-height:100vh;flex-direction:column}.main__toasts[data-v-8de8a4eb]{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}}.signin[data-v-0a6df93d]{text-align:center}.signin__header[data-v-0a6df93d]{margin-bottom:.8rem;font-size:2.4rem}.signin__buttons[data-v-0a6df93d]{display:flex;width:100%;flex-direction:column;gap:1rem}.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 r, C as s, k as i, l as A, a as o, m as t, d as n, n as u, e as c, F as d, v as l, p as P, A as b, o as p, b as C, q as h, w as m, f as B, r as F, h as x, x as I, s as T, i as f, c as g, g as w, D as M, y as S, z as k, B as y, t as G, u as R, E as j, H as q, G as v } from "./index-BjelY_IF.js";
1
+ import { j as r, C as s, k as i, l as A, a as o, m as t, d as n, n as u, e as c, F as d, v as l, p as P, A as b, o as p, b as C, q as h, w as m, f as B, r as F, h as x, x as I, s as T, i as f, c as g, g as w, D as M, y as S, z as k, B as y, t as G, u as R, E as j, H as q, G as v } from "./index-CDZJZN6Y.js";
2
2
  export {
3
3
  r as AeriaAccordion,
4
4
  s as AeriaAsync,
@@ -3,14 +3,5 @@ type Props = {
3
3
  id: string;
4
4
  section?: 'edit';
5
5
  };
6
- declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
6
+ declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
7
7
  export default _default;
8
- type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
9
- type __VLS_TypePropsToRuntimeProps<T> = {
10
- [K in keyof T]-?: {} extends Pick<T, K> ? {
11
- type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
12
- } : {
13
- type: import('vue').PropType<T[K]>;
14
- required: true;
15
- };
16
- };
@@ -2,20 +2,17 @@ type Props = {
2
2
  collection: string;
3
3
  };
4
4
  declare function __VLS_template(): {
5
- "crud-empty"?(_: {}): any;
6
- };
7
- declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
8
- declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
9
- export default _default;
10
- type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
11
- type __VLS_TypePropsToRuntimeProps<T> = {
12
- [K in keyof T]-?: {} extends Pick<T, K> ? {
13
- type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
14
- } : {
15
- type: import('vue').PropType<T[K]>;
16
- required: true;
5
+ attrs: Partial<{}>;
6
+ slots: {
7
+ 'crud-empty'?(_: {}): any;
17
8
  };
9
+ refs: {};
10
+ rootEl: any;
18
11
  };
12
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
13
+ declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
14
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
15
+ export default _default;
19
16
  type __VLS_WithTemplateSlots<T, S> = T & {
20
17
  new (): {
21
18
  $slots: S;
@@ -1,8 +1,14 @@
1
1
  declare function __VLS_template(): {
2
- "user-profile"?(_: {}): any;
2
+ attrs: Partial<{}>;
3
+ slots: {
4
+ 'user-profile'?(_: {}): any;
5
+ };
6
+ refs: {};
7
+ rootEl: any;
3
8
  };
9
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
4
10
  declare const __VLS_component: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
5
- declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
11
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
6
12
  export default _default;
7
13
  type __VLS_WithTemplateSlots<T, S> = T & {
8
14
  new (): {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aeria-ui/ui",
3
3
  "type": "module",
4
- "version": "0.0.166",
4
+ "version": "0.0.167",
5
5
  "description": "",
6
6
  "keywords": [],
7
7
  "author": "",
@@ -34,20 +34,20 @@
34
34
  "@aeria-ui/i18n": "link:../i18n",
35
35
  "@aeria-ui/state-management": "link:../state-management",
36
36
  "@aeria-ui/utils": "link:../utils",
37
- "@aeriajs/common": "~0.0.141",
38
- "@aeriajs/types": "~0.0.109",
39
- "@vitejs/plugin-vue": "^4.2.3",
37
+ "@aeriajs/common": "~0.0.145",
38
+ "@aeriajs/types": "~0.0.127",
39
+ "@vitejs/plugin-vue": "^5.2.4",
40
40
  "@vue/test-utils": "^2.4.6",
41
- "jsdom": "^25.0.1",
41
+ "jsdom": "^26.1.0",
42
42
  "vite": "^6.3.5",
43
- "vite-plugin-dts": "^3.3.0",
43
+ "vite-plugin-dts": "^4.5.4",
44
44
  "vite-plugin-static-copy": "^3.0.0"
45
45
  },
46
46
  "peerDependencies": {
47
- "@aeria-ui/core": "^0.0.102",
47
+ "@aeria-ui/core": "^0.0.103",
48
48
  "@aeria-ui/i18n": "^0.0.16",
49
49
  "@aeria-ui/state-management": "^0.0.19",
50
- "@aeria-ui/utils": "^0.0.7",
50
+ "@aeria-ui/utils": "^0.0.8",
51
51
  "@aeriajs/common": "0.0"
52
52
  },
53
53
  "dependencies": {