@anzusystems/common-admin 1.47.0-alpha20 → 1.47.0-alpha22

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.
@@ -203,8 +203,6 @@ declare type __VLS_NonUndefinedable_80<T> = T extends undefined ? never : T;
203
203
 
204
204
  declare type __VLS_NonUndefinedable_81<T> = T extends undefined ? never : T;
205
205
 
206
- declare type __VLS_NonUndefinedable_82<T> = T extends undefined ? never : T;
207
-
208
206
  declare type __VLS_NonUndefinedable_9<T> = T extends undefined ? never : T;
209
207
 
210
208
  declare type __VLS_Prettify<T> = {
@@ -507,10 +505,6 @@ declare type __VLS_Prettify_77<T> = {
507
505
  [K in keyof T]: T[K];
508
506
  } & {};
509
507
 
510
- declare type __VLS_Prettify_78<T> = {
511
- [K in keyof T]: T[K];
512
- } & {};
513
-
514
508
  declare type __VLS_Prettify_8<T> = {
515
509
  [K in keyof T]: T[K];
516
510
  } & {};
@@ -1239,15 +1233,6 @@ declare type __VLS_TypePropsToRuntimeProps_81<T> = {
1239
1233
  };
1240
1234
  };
1241
1235
 
1242
- declare type __VLS_TypePropsToRuntimeProps_82<T> = {
1243
- [K in keyof T]-?: {} extends Pick<T, K> ? {
1244
- type: PropType<__VLS_NonUndefinedable_82<T[K]>>;
1245
- } : {
1246
- type: PropType<T[K]>;
1247
- required: true;
1248
- };
1249
- };
1250
-
1251
1236
  declare type __VLS_TypePropsToRuntimeProps_9<T> = {
1252
1237
  [K in keyof T]-?: {} extends Pick<T, K> ? {
1253
1238
  type: PropType<__VLS_NonUndefinedable_9<T[K]>>;
@@ -1707,12 +1692,6 @@ declare type __VLS_WithDefaults_77<P, D> = {
1707
1692
  }> : P[K];
1708
1693
  };
1709
1694
 
1710
- declare type __VLS_WithDefaults_78<P, D> = {
1711
- [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify_78<P[K] & {
1712
- default: D[K];
1713
- }> : P[K];
1714
- };
1715
-
1716
1695
  declare type __VLS_WithDefaults_8<P, D> = {
1717
1696
  [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify_8<P[K] & {
1718
1697
  default: D[K];
@@ -2446,6 +2425,7 @@ export declare const ACachedChip: __VLS_WithTemplateSlots_16<DefineComponent<__V
2446
2425
  textOnly?: boolean | undefined;
2447
2426
  fallbackIdText?: boolean | undefined;
2448
2427
  wrapText?: boolean | undefined;
2428
+ closable?: boolean | undefined;
2449
2429
  }>, {
2450
2430
  id: null;
2451
2431
  title: string;
@@ -2457,7 +2437,10 @@ export declare const ACachedChip: __VLS_WithTemplateSlots_16<DefineComponent<__V
2457
2437
  textOnly: boolean;
2458
2438
  fallbackIdText: boolean;
2459
2439
  wrapText: boolean;
2460
- }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_30<__VLS_TypePropsToRuntimeProps_33<{
2440
+ closable: boolean;
2441
+ }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
2442
+ onClose: (id: string | number | null | undefined) => void;
2443
+ }, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_30<__VLS_TypePropsToRuntimeProps_33<{
2461
2444
  id?: string | number | null | undefined;
2462
2445
  title?: string | undefined;
2463
2446
  containerClass?: string | undefined;
@@ -2471,6 +2454,7 @@ export declare const ACachedChip: __VLS_WithTemplateSlots_16<DefineComponent<__V
2471
2454
  textOnly?: boolean | undefined;
2472
2455
  fallbackIdText?: boolean | undefined;
2473
2456
  wrapText?: boolean | undefined;
2457
+ closable?: boolean | undefined;
2474
2458
  }>, {
2475
2459
  id: null;
2476
2460
  title: string;
@@ -2482,11 +2466,15 @@ export declare const ACachedChip: __VLS_WithTemplateSlots_16<DefineComponent<__V
2482
2466
  textOnly: boolean;
2483
2467
  fallbackIdText: boolean;
2484
2468
  wrapText: boolean;
2485
- }>>>, {
2469
+ closable: boolean;
2470
+ }>>> & {
2471
+ onOnClose?: ((id: string | number | null | undefined) => any) | undefined;
2472
+ }, {
2486
2473
  size: string;
2487
2474
  title: string;
2488
2475
  id: string | number | null;
2489
2476
  containerClass: string;
2477
+ closable: boolean;
2490
2478
  disableClick: boolean;
2491
2479
  openInNew: boolean;
2492
2480
  forceRounded: boolean;
@@ -4811,7 +4799,7 @@ export declare const ALogData: DefineComponent<__VLS_WithDefaults_29<__VLS_TypeP
4811
4799
  data: any;
4812
4800
  }>, {}>>>, {}, {}>;
4813
4801
 
4814
- export declare const ALoginView: DefineComponent<__VLS_WithDefaults_75<__VLS_TypePropsToRuntimeProps_79<{
4802
+ export declare const ALoginView: DefineComponent<__VLS_WithDefaults_74<__VLS_TypePropsToRuntimeProps_78<{
4815
4803
  title?: string | undefined;
4816
4804
  logoUrl?: string | undefined;
4817
4805
  loginUrl?: undefined | (() => string);
@@ -4821,7 +4809,7 @@ export declare const ALoginView: DefineComponent<__VLS_WithDefaults_75<__VLS_Typ
4821
4809
  logoUrl: undefined;
4822
4810
  loginUrl: undefined;
4823
4811
  dataCy: string;
4824
- }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_75<__VLS_TypePropsToRuntimeProps_79<{
4812
+ }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_74<__VLS_TypePropsToRuntimeProps_78<{
4825
4813
  title?: string | undefined;
4826
4814
  logoUrl?: string | undefined;
4827
4815
  loginUrl?: undefined | (() => string);
@@ -4844,11 +4832,11 @@ export declare const ALogLevelChip: DefineComponent<__VLS_WithDefaults_52<__VLS_
4844
4832
  level: LogLevel;
4845
4833
  }>, {}>>>, {}, {}>;
4846
4834
 
4847
- export declare const ALogoutView: DefineComponent<__VLS_WithDefaults_76<__VLS_TypePropsToRuntimeProps_80<{
4835
+ export declare const ALogoutView: DefineComponent<__VLS_WithDefaults_75<__VLS_TypePropsToRuntimeProps_79<{
4848
4836
  logoutUrl?: undefined | (() => string);
4849
4837
  }>, {
4850
4838
  logoutUrl: undefined;
4851
- }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_76<__VLS_TypePropsToRuntimeProps_80<{
4839
+ }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_75<__VLS_TypePropsToRuntimeProps_79<{
4852
4840
  logoutUrl?: undefined | (() => string);
4853
4841
  }>, {
4854
4842
  logoutUrl: undefined;
@@ -4856,9 +4844,9 @@ export declare const ALogoutView: DefineComponent<__VLS_WithDefaults_76<__VLS_Ty
4856
4844
  logoutUrl: () => string;
4857
4845
  }, {}>;
4858
4846
 
4859
- export declare const ANotFoundView: DefineComponent<__VLS_WithDefaults_78<__VLS_TypePropsToRuntimeProps_82<{
4847
+ export declare const ANotFoundView: DefineComponent<__VLS_WithDefaults_77<__VLS_TypePropsToRuntimeProps_81<{
4860
4848
  returnRouteName: string;
4861
- }>, {}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_78<__VLS_TypePropsToRuntimeProps_82<{
4849
+ }>, {}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_77<__VLS_TypePropsToRuntimeProps_81<{
4862
4850
  returnRouteName: string;
4863
4851
  }>, {}>>>, {}, {}>;
4864
4852
 
@@ -5751,9 +5739,9 @@ declare interface AudioAttributes {
5751
5739
  bitrate: number;
5752
5740
  }
5753
5741
 
5754
- export declare const AUnauthorizedView: DefineComponent<__VLS_WithDefaults_77<__VLS_TypePropsToRuntimeProps_81<{
5742
+ export declare const AUnauthorizedView: DefineComponent<__VLS_WithDefaults_76<__VLS_TypePropsToRuntimeProps_80<{
5755
5743
  returnRouteName: string;
5756
- }>, {}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_77<__VLS_TypePropsToRuntimeProps_81<{
5744
+ }>, {}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_76<__VLS_TypePropsToRuntimeProps_80<{
5757
5745
  returnRouteName: string;
5758
5746
  }>, {}>>>, {}, {}>;
5759
5747
 
@@ -6223,49 +6211,93 @@ export declare interface DamAssetLicenceMinimal {
6223
6211
  name: string;
6224
6212
  }
6225
6213
 
6226
- export declare const DamAssetLicenceRemoteAutocomplete: DefineComponent<__VLS_WithDefaults_74<__VLS_TypePropsToRuntimeProps_78<{
6227
- modelValue: IntegerId | null | IntegerId[] | any;
6228
- client: () => AxiosInstance;
6229
- label?: string | undefined;
6230
- required?: boolean | undefined;
6231
- multiple?: boolean | undefined;
6232
- clearable?: boolean | undefined;
6233
- dataCy?: string | undefined;
6234
- extSystemId?: number | null | undefined;
6235
- hideDetails?: boolean | undefined;
6236
- disableInitFetch?: boolean | undefined;
6237
- }>, {
6238
- label: undefined;
6239
- required: undefined;
6240
- multiple: boolean;
6241
- clearable: boolean;
6242
- dataCy: string;
6243
- extSystemId: null;
6244
- hideDetails: undefined;
6245
- disableInitFetch: boolean;
6246
- }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
6214
+ export declare const DamAssetLicenceRemoteAutocomplete: DefineComponent<{
6215
+ selected: PropType<ValueObjectOption<number>[]>;
6216
+ multiple: {
6217
+ type: PropType<boolean>;
6218
+ default: boolean;
6219
+ };
6220
+ required: {
6221
+ type: PropType<boolean>;
6222
+ default: undefined;
6223
+ };
6224
+ modelValue: {
6225
+ type: PropType<any>;
6226
+ required: true;
6227
+ };
6228
+ label: {
6229
+ type: PropType<string>;
6230
+ default: undefined;
6231
+ };
6232
+ dataCy: {
6233
+ type: PropType<string>;
6234
+ default: string;
6235
+ };
6236
+ clearable: {
6237
+ type: PropType<boolean>;
6238
+ default: boolean;
6239
+ };
6240
+ hideDetails: {
6241
+ type: PropType<boolean>;
6242
+ default: undefined;
6243
+ };
6244
+ disableInitFetch: {
6245
+ type: PropType<boolean>;
6246
+ default: boolean;
6247
+ };
6248
+ extSystemId: {
6249
+ type: PropType<number | null>;
6250
+ default: null;
6251
+ };
6252
+ client: {
6253
+ type: PropType<() => AxiosInstance>;
6254
+ required: true;
6255
+ };
6256
+ }, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
6247
6257
  "update:modelValue": (data: any) => void;
6248
- }, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_74<__VLS_TypePropsToRuntimeProps_78<{
6249
- modelValue: IntegerId | null | IntegerId[] | any;
6250
- client: () => AxiosInstance;
6251
- label?: string | undefined;
6252
- required?: boolean | undefined;
6253
- multiple?: boolean | undefined;
6254
- clearable?: boolean | undefined;
6255
- dataCy?: string | undefined;
6256
- extSystemId?: number | null | undefined;
6257
- hideDetails?: boolean | undefined;
6258
- disableInitFetch?: boolean | undefined;
6259
- }>, {
6260
- label: undefined;
6261
- required: undefined;
6262
- multiple: boolean;
6263
- clearable: boolean;
6264
- dataCy: string;
6265
- extSystemId: null;
6266
- hideDetails: undefined;
6267
- disableInitFetch: boolean;
6268
- }>>> & {
6258
+ }, string, PublicProps, Readonly<ExtractPropTypes<{
6259
+ selected: PropType<ValueObjectOption<number>[]>;
6260
+ multiple: {
6261
+ type: PropType<boolean>;
6262
+ default: boolean;
6263
+ };
6264
+ required: {
6265
+ type: PropType<boolean>;
6266
+ default: undefined;
6267
+ };
6268
+ modelValue: {
6269
+ type: PropType<any>;
6270
+ required: true;
6271
+ };
6272
+ label: {
6273
+ type: PropType<string>;
6274
+ default: undefined;
6275
+ };
6276
+ dataCy: {
6277
+ type: PropType<string>;
6278
+ default: string;
6279
+ };
6280
+ clearable: {
6281
+ type: PropType<boolean>;
6282
+ default: boolean;
6283
+ };
6284
+ hideDetails: {
6285
+ type: PropType<boolean>;
6286
+ default: undefined;
6287
+ };
6288
+ disableInitFetch: {
6289
+ type: PropType<boolean>;
6290
+ default: boolean;
6291
+ };
6292
+ extSystemId: {
6293
+ type: PropType<number | null>;
6294
+ default: null;
6295
+ };
6296
+ client: {
6297
+ type: PropType<() => AxiosInstance>;
6298
+ required: true;
6299
+ };
6300
+ }>> & {
6269
6301
  "onUpdate:modelValue"?: ((data: any) => any) | undefined;
6270
6302
  }, {
6271
6303
  multiple: boolean;
@@ -1,4 +1,4 @@
1
- import { R as s, S as t, T as o, U as i, V as r, W as n, K as l, d as u, a8 as c, at as A, a9 as m, av as d, e as b, a3 as p, J as C, _ as S, a as T, c as D, ar as g, aq as F, as as y, O as E, G as R, ap as B, aa as I, ai as L, aj as h, au as U, D as O, E as P, C as _, z as f, B as v, F as k, L as N, X as M, A as V, x as w, y as z, u as H, $ as x, v as j, Y as J, t as G, Z as q, w as W, s as K, l as Q, m as X, n as Y, ab as Z, o as $, p as aa, q as ea, j as sa, k as ta, r as oa, P as ia, ao as ra, ak as na, am as la, an as ua, al as ca, ae as Aa, ac as ma, ad as da, I as ba, a5 as pa, H as Ca, a7 as Sa, aA as Ta, aB as Da, aD as ga, f as Fa, h as ya, b as Ea, af as Ra, ag as Ba, ah as Ia, a6 as La, i as ha, a0 as Ua, a1 as Oa, a2 as Pa, a4 as _a, M as fa, aC as va, Q as ka, N as Na, dS as Ma, dX as Va, dU as wa, d_ as za, e0 as Ha, e1 as xa, bm as ja, bo as Ja, bn as Ga, d4 as qa, dO as Wa, dN as Ka, df as Qa, dG as Xa, dH as Ya, dC as Za, dB as $a, dM as ae, dL as ee, dK as se, dF as te, bv as oe, bw as ie, cb as re, ca as ne, az as le, by as ue, bx as ce, bE as Ae, bz as me, ay as de, bA as be, bB as pe, aw as Ce, ax as Se, bD as Te, d5 as De, bb as ge, bd as Fe, d9 as ye, d7 as Ee, db as Re, d8 as Be, d6 as Ie, da as Le, dc as he, bj as Ue, bk as Oe, bf as Pe, de as _e, dd as fe, d3 as ve, d2 as ke, aO as Ne, bt as Me, bu as Ve, bC as we, cE as ze, cF as He, cG as xe, cH as je, cI as Je, cJ as Ge, cK as qe, cL as We, cx as Ke, cw as Qe, cu as Xe, cv as Ye, cy as Ze, br as $e, bs as as, bp as es, bq as ss, dW as ts, dZ as os, dR as is, ct as rs, cA as ns, cz as ls, bI as us, aL as cs, dD as As, cS as ms, e7 as ds, e8 as bs, e5 as ps, cp as Cs, ci as Ss, ck as Ts, cn as Ds, cd as gs, cg as Fs, cf as ys, ch as Es, ce as Rs, cl as Bs, cj as Is, aN as Ls, cB as hs, cU as Us, cT as Os, e6 as Ps, cW as _s, cV as fs, c_ as vs, cY as ks, cX as Ns, aT as Ms, cC as Vs, cD as ws, e4 as zs, dP as Hs, a$ as xs, dQ as js, dV as Js, dT as Gs, dY as qs, d$ as Ws, bN as Ks, bP as Qs, dJ as Xs, dI as Ys, bi as Zs, bT as $s, bQ as at, bJ as et, bM as st, bK as tt, bO as ot, bU as it, bR as rt, bW as nt, bL as lt, bh as ut, bV as ct, bS as At, cr as mt, e3 as dt, aH as bt, c$ as pt, d0 as Ct, d1 as St, aQ as Tt, cs as Dt, b$ as gt, b_ as Ft, bY as yt, bX as Et, bZ as Rt, cq as Bt, cR as It, c7 as Lt, c6 as ht, c3 as Ut, c1 as Ot, c0 as Pt, c5 as _t, c2 as ft, c4 as vt, c8 as kt, c9 as Nt, co as Mt, cc as Vt, b6 as wt, cZ as zt, cQ as Ht, aJ as xt, bF as jt, cM as Jt, a_ as Gt, dp as qt, du as Wt, dx as Kt, dj as Qt, dl as Xt, dE as Yt, dt as Zt, dn as $t, dh as ao, dw as eo, dA as so, dr as to, dv as oo, dy as io, dz as ro, dm as no, dq as lo, ds as uo, dk as co, di as Ao, ba as mo, bl as bo, e2 as po, aU as Co, aV as So, aZ as To, b8 as Do, b3 as go, b4 as Fo, aW as yo, b5 as Eo, b7 as Ro, b2 as Bo, b0 as Io, aY as Lo, b1 as ho, aK as Uo, aG as Oo, bc as Po, be as _o, b9 as fo, cN as vo, cO as ko, cP as No, aP as Mo, bg as Vo, aR as wo, aE as zo, aF as Ho, bG as xo, bH as jo, aI as Jo, aS as Go, aM as qo, aX as Wo, dg as Ko, cm as Qo } from "./lib-yCohaF7L.js";
1
+ import { R as s, S as t, T as o, U as i, V as r, W as n, K as l, d as u, a8 as c, at as A, a9 as m, av as d, e as b, a3 as p, J as C, _ as S, a as T, c as D, ar as g, aq as F, as as y, O as E, G as R, ap as B, aa as I, ai as L, aj as h, au as U, D as O, E as P, C as _, z as f, B as v, F as k, L as N, X as M, A as V, x as w, y as z, u as H, $ as x, v as j, Y as J, t as G, Z as q, w as W, s as K, l as Q, m as X, n as Y, ab as Z, o as $, p as aa, q as ea, j as sa, k as ta, r as oa, P as ia, ao as ra, ak as na, am as la, an as ua, al as ca, ae as Aa, ac as ma, ad as da, I as ba, a5 as pa, H as Ca, a7 as Sa, aA as Ta, aB as Da, aD as ga, f as Fa, h as ya, b as Ea, af as Ra, ag as Ba, ah as Ia, a6 as La, i as ha, a0 as Ua, a1 as Oa, a2 as Pa, a4 as _a, M as fa, aC as va, Q as ka, N as Na, dS as Ma, dX as Va, dU as wa, d_ as za, e0 as Ha, e1 as xa, bm as ja, bo as Ja, bn as Ga, d4 as qa, dO as Wa, dN as Ka, df as Qa, dG as Xa, dH as Ya, dC as Za, dB as $a, dM as ae, dL as ee, dK as se, dF as te, bv as oe, bw as ie, cb as re, ca as ne, az as le, by as ue, bx as ce, bE as Ae, bz as me, ay as de, bA as be, bB as pe, aw as Ce, ax as Se, bD as Te, d5 as De, bb as ge, bd as Fe, d9 as ye, d7 as Ee, db as Re, d8 as Be, d6 as Ie, da as Le, dc as he, bj as Ue, bk as Oe, bf as Pe, de as _e, dd as fe, d3 as ve, d2 as ke, aO as Ne, bt as Me, bu as Ve, bC as we, cE as ze, cF as He, cG as xe, cH as je, cI as Je, cJ as Ge, cK as qe, cL as We, cx as Ke, cw as Qe, cu as Xe, cv as Ye, cy as Ze, br as $e, bs as as, bp as es, bq as ss, dW as ts, dZ as os, dR as is, ct as rs, cA as ns, cz as ls, bI as us, aL as cs, dD as As, cS as ms, e7 as ds, e8 as bs, e5 as ps, cp as Cs, ci as Ss, ck as Ts, cn as Ds, cd as gs, cg as Fs, cf as ys, ch as Es, ce as Rs, cl as Bs, cj as Is, aN as Ls, cB as hs, cU as Us, cT as Os, e6 as Ps, cW as _s, cV as fs, c_ as vs, cY as ks, cX as Ns, aT as Ms, cC as Vs, cD as ws, e4 as zs, dP as Hs, a$ as xs, dQ as js, dV as Js, dT as Gs, dY as qs, d$ as Ws, bN as Ks, bP as Qs, dJ as Xs, dI as Ys, bi as Zs, bT as $s, bQ as at, bJ as et, bM as st, bK as tt, bO as ot, bU as it, bR as rt, bW as nt, bL as lt, bh as ut, bV as ct, bS as At, cr as mt, e3 as dt, aH as bt, c$ as pt, d0 as Ct, d1 as St, aQ as Tt, cs as Dt, b$ as gt, b_ as Ft, bY as yt, bX as Et, bZ as Rt, cq as Bt, cR as It, c7 as Lt, c6 as ht, c3 as Ut, c1 as Ot, c0 as Pt, c5 as _t, c2 as ft, c4 as vt, c8 as kt, c9 as Nt, co as Mt, cc as Vt, b6 as wt, cZ as zt, cQ as Ht, aJ as xt, bF as jt, cM as Jt, a_ as Gt, dp as qt, du as Wt, dx as Kt, dj as Qt, dl as Xt, dE as Yt, dt as Zt, dn as $t, dh as ao, dw as eo, dA as so, dr as to, dv as oo, dy as io, dz as ro, dm as no, dq as lo, ds as uo, dk as co, di as Ao, ba as mo, bl as bo, e2 as po, aU as Co, aV as So, aZ as To, b8 as Do, b3 as go, b4 as Fo, aW as yo, b5 as Eo, b7 as Ro, b2 as Bo, b0 as Io, aY as Lo, b1 as ho, aK as Uo, aG as Oo, bc as Po, be as _o, b9 as fo, cN as vo, cO as ko, cP as No, aP as Mo, bg as Vo, aR as wo, aE as zo, aF as Ho, bG as xo, bH as jo, aI as Jo, aS as Go, aM as qo, aX as Wo, dg as Ko, cm as Qo } from "./lib-uPjKTSyb.js";
2
2
  import { useI18n as Yo } from "vue-i18n";
3
3
  export {
4
4
  s as AActionCloseButton,