@anzusystems/common-admin 1.40.0-alpha18 → 1.40.0-alpha19

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.
@@ -1999,14 +1999,15 @@ export declare const AAssetSelect: __VLS_WithTemplateSlots_16<DefineComponent<__
1999
1999
  assetType: "image" | "audio" | "video" | "document" | DamAssetType;
2000
2000
  minCount: number;
2001
2001
  maxCount: number;
2002
- assetLicenceId?: number | undefined;
2002
+ selectConfig: ImageWidgetSelectConfig[];
2003
2003
  returnType?: "asset" | "mainFileId" | "assetId" | AssetSelectReturnType | undefined;
2004
2004
  configName?: string | undefined;
2005
+ skipCurrentUserCheck?: boolean | undefined;
2005
2006
  }>, {
2006
2007
  modelValue: undefined;
2007
- assetLicenceId: undefined;
2008
2008
  returnType: string;
2009
2009
  configName: string;
2010
+ skipCurrentUserCheck: boolean;
2010
2011
  }>, {
2011
2012
  open: () => void;
2012
2013
  }, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
@@ -2017,22 +2018,23 @@ export declare const AAssetSelect: __VLS_WithTemplateSlots_16<DefineComponent<__
2017
2018
  assetType: "image" | "audio" | "video" | "document" | DamAssetType;
2018
2019
  minCount: number;
2019
2020
  maxCount: number;
2020
- assetLicenceId?: number | undefined;
2021
+ selectConfig: ImageWidgetSelectConfig[];
2021
2022
  returnType?: "asset" | "mainFileId" | "assetId" | AssetSelectReturnType | undefined;
2022
2023
  configName?: string | undefined;
2024
+ skipCurrentUserCheck?: boolean | undefined;
2023
2025
  }>, {
2024
2026
  modelValue: undefined;
2025
- assetLicenceId: undefined;
2026
2027
  returnType: string;
2027
2028
  configName: string;
2029
+ skipCurrentUserCheck: boolean;
2028
2030
  }>>> & {
2029
2031
  "onUpdate:modelValue"?: ((data: boolean) => any) | undefined;
2030
2032
  onOnConfirm?: ((data: AssetSelectReturnData) => any) | undefined;
2031
2033
  }, {
2032
2034
  modelValue: boolean;
2033
2035
  configName: string;
2034
- assetLicenceId: number;
2035
2036
  returnType: "asset" | "mainFileId" | "assetId" | AssetSelectReturnType;
2037
+ skipCurrentUserCheck: boolean;
2036
2038
  }, {}>, {
2037
2039
  activator?(_: {
2038
2040
  props: {
@@ -4968,7 +4970,6 @@ export declare const COMMON_CONFIG: Immutable<typeof commonConfig>;
4968
4970
 
4969
4971
  declare interface CommonAdminCoreDamConfig {
4970
4972
  damClient: () => AxiosInstance;
4971
- defaultLicenceId?: IntegerId;
4972
4973
  }
4973
4974
 
4974
4975
  declare type CommonAdminCoreDamOptions = undefined | {
@@ -5105,6 +5106,82 @@ export declare enum DamAuthorType {
5105
5106
  Default = "none"
5106
5107
  }
5107
5108
 
5109
+ export declare const damCurrentUser: Ref<{
5110
+ selectedLicence: {
5111
+ id: number;
5112
+ name: string;
5113
+ extSystem: number;
5114
+ } | null;
5115
+ adminToExtSystems: {
5116
+ id: number;
5117
+ name: string;
5118
+ }[];
5119
+ userToExtSystems: {
5120
+ id: number;
5121
+ name: string;
5122
+ }[];
5123
+ assetLicences: {
5124
+ id: number;
5125
+ name: string;
5126
+ extSystem: number;
5127
+ }[];
5128
+ person: {
5129
+ firstName: string;
5130
+ lastName: string;
5131
+ fullName: string;
5132
+ };
5133
+ avatar: {
5134
+ color: string;
5135
+ text: string;
5136
+ };
5137
+ allowedAssetExternalProviders: string[];
5138
+ allowedDistributionServices: string[];
5139
+ enabled: boolean;
5140
+ roles: string[];
5141
+ permissionGroups: number[];
5142
+ permissions: Permissions_2;
5143
+ resolvedPermissions: Permissions_2;
5144
+ _resourceName: string;
5145
+ _system: string;
5146
+ createdAt: string;
5147
+ modifiedAt: string;
5148
+ modifiedBy: IntegerIdNullable;
5149
+ createdBy: IntegerIdNullable;
5150
+ id: number;
5151
+ email: string;
5152
+ } | undefined>;
5153
+
5154
+ declare interface DamCurrentUserAssetLicence {
5155
+ id: IntegerId;
5156
+ name: string;
5157
+ extSystem: IntegerId;
5158
+ }
5159
+
5160
+ export declare interface DamCurrentUserDto extends AnzuUser {
5161
+ selectedLicence: DamCurrentUserAssetLicence | null;
5162
+ adminToExtSystems: DamCurrentUserExtSystem[];
5163
+ userToExtSystems: DamCurrentUserExtSystem[];
5164
+ assetLicences: DamCurrentUserAssetLicence[];
5165
+ person: {
5166
+ firstName: string;
5167
+ lastName: string;
5168
+ fullName: string;
5169
+ };
5170
+ avatar: {
5171
+ color: string;
5172
+ text: string;
5173
+ };
5174
+ allowedAssetExternalProviders: string[];
5175
+ allowedDistributionServices: string[];
5176
+ }
5177
+
5178
+ declare interface DamCurrentUserExtSystem {
5179
+ id: IntegerId;
5180
+ name: string;
5181
+ }
5182
+
5183
+ export declare const damCurrentUserIsSuperAdmin: Ref<boolean>;
5184
+
5108
5185
  export declare interface DamDistributionConfig {
5109
5186
  distributionServices: Array<DamDistributionServiceName>;
5110
5187
  distributionRequirements: Record<DamDistributionServiceName, DamDistributionRequirementsConfig>;
@@ -5419,6 +5496,8 @@ export declare type EnableDisable = 'enable' | 'disable';
5419
5496
 
5420
5497
  export declare const eventClickBlur: (event?: Event) => void;
5421
5498
 
5499
+ export declare const fetchDamCurrentUser: (client: () => AxiosInstance) => Promise<DamCurrentUserDto>;
5500
+
5422
5501
  declare type fetchItemsByIdsType = ((ids: IntegerId[]) => Promise<ValueObjectOption<IntegerId>[]>) | ((ids: DocId[]) => Promise<ValueObjectOption<DocId>[]>);
5423
5502
 
5424
5503
  declare type fetchItemsByIdsType_2 = ((ids: IntegerId[]) => Promise<ValueObjectOption<IntegerId>[]>) | ((ids: DocId[]) => Promise<ValueObjectOption<DocId>[]>);
@@ -5798,11 +5877,15 @@ export declare const i18n: I18n<{
5798
5877
  };
5799
5878
  };
5800
5879
  filter: {
5880
+ licence: string;
5801
5881
  text: string;
5802
5882
  described: string;
5803
5883
  visible: string;
5804
5884
  generatedBySystem: string;
5805
5885
  };
5886
+ error: {
5887
+ unallowedLicence: string;
5888
+ };
5806
5889
  };
5807
5890
  subjectSelect: {
5808
5891
  filter: {
@@ -6613,11 +6696,15 @@ export declare const messagesCs: {
6613
6696
  };
6614
6697
  };
6615
6698
  filter: {
6699
+ licence: string;
6616
6700
  text: string;
6617
6701
  described: string;
6618
6702
  visible: string;
6619
6703
  generatedBySystem: string;
6620
6704
  };
6705
+ error: {
6706
+ unallowedLicence: string;
6707
+ };
6621
6708
  };
6622
6709
  subjectSelect: {
6623
6710
  filter: {
@@ -7225,11 +7312,15 @@ export declare const messagesEn: {
7225
7312
  };
7226
7313
  };
7227
7314
  filter: {
7315
+ licence: string;
7228
7316
  text: string;
7229
7317
  described: string;
7230
7318
  visible: string;
7231
7319
  generatedBySystem: string;
7232
7320
  };
7321
+ error: {
7322
+ unallowedLicence: string;
7323
+ };
7233
7324
  };
7234
7325
  subjectSelect: {
7235
7326
  filter: {
@@ -7841,11 +7932,15 @@ export declare const messagesSk: {
7841
7932
  };
7842
7933
  };
7843
7934
  filter: {
7935
+ licence: string;
7844
7936
  text: string;
7845
7937
  described: string;
7846
7938
  visible: string;
7847
7939
  generatedBySystem: string;
7848
7940
  };
7941
+ error: {
7942
+ unallowedLicence: string;
7943
+ };
7849
7944
  };
7850
7945
  subjectSelect: {
7851
7946
  filter: {
@@ -8423,6 +8518,8 @@ export declare const timePretty: (isoDate: DatetimeUTC | DatetimeUTCNullable | s
8423
8518
 
8424
8519
  export declare const timestampCurrent: () => number;
8425
8520
 
8521
+ export declare function updateDamCurrentUser(client: () => AxiosInstance): Promise<unknown>;
8522
+
8426
8523
  export declare interface UploadQueue {
8427
8524
  items: UploadQueueItem[];
8428
8525
  totalCount: number;
@@ -8751,6 +8848,54 @@ export declare function useDamConfigState(client?: undefined | (() => AxiosInsta
8751
8848
  } | undefined;
8752
8849
  };
8753
8850
 
8851
+ export declare function useDamCurrentUser(): {
8852
+ damCurrentUser: Ref<{
8853
+ selectedLicence: {
8854
+ id: number;
8855
+ name: string;
8856
+ extSystem: number;
8857
+ } | null;
8858
+ adminToExtSystems: {
8859
+ id: number;
8860
+ name: string;
8861
+ }[];
8862
+ userToExtSystems: {
8863
+ id: number;
8864
+ name: string;
8865
+ }[];
8866
+ assetLicences: {
8867
+ id: number;
8868
+ name: string;
8869
+ extSystem: number;
8870
+ }[];
8871
+ person: {
8872
+ firstName: string;
8873
+ lastName: string;
8874
+ fullName: string;
8875
+ };
8876
+ avatar: {
8877
+ color: string;
8878
+ text: string;
8879
+ };
8880
+ allowedAssetExternalProviders: string[];
8881
+ allowedDistributionServices: string[];
8882
+ enabled: boolean;
8883
+ roles: string[];
8884
+ permissionGroups: number[];
8885
+ permissions: Permissions_2;
8886
+ resolvedPermissions: Permissions_2;
8887
+ _resourceName: string;
8888
+ _system: string;
8889
+ createdAt: string;
8890
+ modifiedAt: string;
8891
+ modifiedBy: IntegerIdNullable;
8892
+ createdBy: IntegerIdNullable;
8893
+ id: number;
8894
+ email: string;
8895
+ } | undefined>;
8896
+ damCurrentUserIsSuperAdmin: Ref<boolean>;
8897
+ };
8898
+
8754
8899
  export declare function useDamKeywordFactory(): {
8755
8900
  createDefault: (extSystemId: number, reviewed?: boolean) => DamKeyword;
8756
8901
  };
@@ -1,5 +1,5 @@
1
- import { P as k, Q as x, R as G, S as J, T as W, U as Q, I as K, d as q, a6 as X, al as Y, a7 as Z, e as $, a1 as aa, H as ea, _ as sa, a as ta, c as ia, M as oa, E as ra, ak as na, a8 as ma, ae as Aa, af as ca, B as la, C as ua, z as pa, y as ba, D as Ta, J as da, V as Sa, A as ga, w as Fa, x as ya, t as Da, Y as Ea, u as Ca, W as Ba, s as Ra, X as Ia, v as Ua, r as Oa, l as ha, m as Pa, n as _a, a9 as Na, o as La, p as fa, j as Va, k as za, q as wa, N as Ha, ag as Ma, ai as va, aj as ja, ah as ka, aa as xa, G as Ga, a3 as Ja, F as Wa, a5 as Qa, am as Ka, an as qa, ap as Xa, f as Ya, h as Za, b as $a, ab as ae, ac as ee, ad as se, a4 as te, i as ie, Z as oe, $ as re, a0 as ne, a2 as me, K as Ae, ao as ce, O as le, L as ue, cU as pe, cZ as be, cW as Te, d0 as de, d2 as Se, d3 as ge, b2 as Fe, b4 as ye, b3 as De, cE as Ee, cP as Ce, bb as Be, bc as Re, bT as Ie, bS as Ue, be as Oe, bd as he, bk as Pe, bf as _e, bg as Ne, bh as Le, bj as fe, cF as Ve, aT as ze, aV as we, cJ as He, cH as Me, cL as ve, cI as je, cG as ke, cK as xe, cM as Ge, a$ as Je, b0 as We, aX as Qe, cO as Ke, cN as qe, cD as Xe, cC as Ye, aA as Ze, b9 as $e, ba as as, bi as es, ck as ss, cl as ts, cm as is, cn as os, co as rs, cp as ns, cq as ms, cr as As, cd as cs, cc as ls, ca as us, cb as ps, ce as bs, b7 as Ts, b8 as ds, b5 as Ss, b6 as gs, cY as Fs, c$ as ys, cT as Ds, c9 as Es, cg as Cs, cf as Bs, bo as Rs, ax as Is, cy as Us, d7 as Os, c5 as hs, b_ as Ps, c0 as _s, c3 as Ns, bV as Ls, bY as fs, bX as Vs, bZ as zs, bW as ws, c1 as Hs, b$ as Ms, az as vs, ch as js, aF as ks, ci as xs, cj as Gs, d6 as Js, cR as Ws, aN as Qs, cS as Ks, cX as qs, cV as Xs, c_ as Ys, d1 as Zs, bt as $s, bv as at, a_ as et, bz as st, bw as tt, bp as it, bs as ot, bq as rt, bu as nt, bA as mt, bx as At, bC as ct, br as lt, aZ as ut, bB as pt, by as bt, c7 as Tt, d5 as dt, at as St, cz as gt, cA as Ft, cB as yt, aC as Dt, c8 as Et, bH as Ct, bG as Bt, bE as Rt, bD as It, bF as Ut, c6 as Ot, cx as ht, bP as Pt, bO as _t, bL as Nt, bJ as Lt, bI as ft, bN as Vt, bK as zt, bM as wt, bQ as Ht, bR as Mt, c4 as vt, bU as jt, cw as kt, av as xt, bl as Gt, cs as Jt, aM as Wt, b1 as Qt, d4 as Kt, aG as qt, aH as Xt, aL as Yt, aR as Zt, aS as $t, aI as ai, aQ as ei, aO as si, aK as ti, aP as ii, aw as oi, as as ri, aU as ni, aW as mi, ct as Ai, cu as ci, cv as li, aB as ui, aY as pi, aD as bi, aq as Ti, ar as di, bm as Si, bn as gi, au as Fi, aE as yi, ay as Di, aJ as Ei, cQ as Ci, c2 as Bi } from "./lib-e12oMlVh.js";
2
- import { useI18n as Ii } from "vue-i18n";
1
+ import { P as k, Q as x, R as G, S as J, T as W, U as Q, I as K, d as q, a6 as X, al as Y, a7 as Z, e as $, a1 as aa, H as ea, _ as sa, a as ta, c as ia, M as ra, E as oa, ak as na, a8 as ma, ae as Aa, af as ua, B as ca, C as la, z as pa, y as ba, D as da, J as Ta, V as Sa, A as ga, w as Fa, x as Da, t as ya, Y as Ca, u as Ea, W as Ua, s as Ba, X as Ia, v as Ra, r as Oa, l as ha, m as Pa, n as _a, a9 as Na, o as La, p as fa, j as Va, k as za, q as wa, N as Ha, ag as Ma, ai as va, aj as ja, ah as ka, aa as xa, G as Ga, a3 as Ja, F as Wa, a5 as Qa, am as Ka, an as qa, ap as Xa, f as Ya, h as Za, b as $a, ab as ae, ac as ee, ad as se, a4 as te, i as ie, Z as re, $ as oe, a0 as ne, a2 as me, K as Ae, ao as ue, O as ce, L as le, cW as pe, c$ as be, cY as de, d2 as Te, d4 as Se, d5 as ge, b4 as Fe, b6 as De, b5 as ye, cG as Ce, cR as Ee, bd as Ue, be as Be, bV as Ie, bU as Re, bg as Oe, bf as he, bm as Pe, bh as _e, bi as Ne, bj as Le, bl as fe, cH as Ve, aV as ze, aX as we, cL as He, cJ as Me, cN as ve, cK as je, cI as ke, cM as xe, cO as Ge, b1 as Je, b2 as We, aZ as Qe, cQ as Ke, cP as qe, cF as Xe, cE as Ye, aA as Ze, bb as $e, bc as as, bk as es, cm as ss, cn as ts, co as is, cp as rs, cq as os, cr as ns, cs as ms, ct as As, cf as us, ce as cs, cc as ls, cd as ps, cg as bs, b9 as ds, ba as Ts, b7 as Ss, b8 as gs, c_ as Fs, d1 as Ds, cV as ys, cb as Cs, ci as Es, ch as Us, bq as Bs, ax as Is, cA as Rs, db as Os, dc as hs, d9 as Ps, c7 as _s, c0 as Ns, c2 as Ls, c5 as fs, bX as Vs, b_ as zs, bZ as ws, b$ as Hs, bY as Ms, c3 as vs, c1 as js, az as ks, cj as xs, da as Gs, aF as Js, ck as Ws, cl as Qs, d8 as Ks, cT as qs, aN as Xs, cU as Ys, cZ as Zs, cX as $s, d0 as at, d3 as et, bv as st, bx as tt, b0 as it, bB as rt, by as ot, br as nt, bu as mt, bs as At, bw as ut, bC as ct, bz as lt, bE as pt, bt, a$ as dt, bD as Tt, bA as St, c9 as gt, d7 as Ft, at as Dt, cB as yt, cC as Ct, cD as Et, aC as Ut, ca as Bt, bJ as It, bI as Rt, bG as Ot, bF as ht, bH as Pt, c8 as _t, cz as Nt, bR as Lt, bQ as ft, bN as Vt, bL as zt, bK as wt, bP as Ht, bM as Mt, bO as vt, bS as jt, bT as kt, c6 as xt, bW as Gt, aU as Jt, cy as Wt, av as Qt, bn as Kt, cu as qt, aM as Xt, b3 as Yt, d6 as Zt, aG as $t, aH as ai, aL as ei, aR as si, aS as ti, aI as ii, aT as ri, aQ as oi, aO as ni, aK as mi, aP as Ai, aw as ui, as as ci, aW as li, aY as pi, cv as bi, cw as di, cx as Ti, aB as Si, a_ as gi, aD as Fi, aq as Di, ar as yi, bo as Ci, bp as Ei, au as Ui, aE as Bi, ay as Ii, aJ as Ri, cS as Oi, c4 as hi } from "./lib-bdhk0KGn.js";
2
+ import { useI18n as _i } from "vue-i18n";
3
3
  import "vue";
4
4
  import "vuetify/lib/components/VChip/index.mjs";
5
5
  import "vuetify/lib/components/VGrid/index.mjs";
@@ -58,29 +58,29 @@ export {
58
58
  sa as ACard,
59
59
  ta as ACardLoader,
60
60
  ia as AChipNoLink,
61
- oa as ACopyText,
62
- ra as ACreateDialog,
61
+ ra as ACopyText,
62
+ oa as ACreateDialog,
63
63
  na as ACropperjs,
64
64
  ma as ACurrentUserDropdown,
65
65
  Aa as ACustomDataForm,
66
- ca as ACustomDataFormElement,
67
- la as ADatatableConfigButton,
68
- ua as ADatatableOrdering,
66
+ ua as ACustomDataFormElement,
67
+ ca as ADatatableConfigButton,
68
+ la as ADatatableOrdering,
69
69
  pa as ADatatablePagination,
70
70
  ba as ADatetime,
71
- Ta as ADialogToolbar,
72
- da as AEmptyRouterView,
71
+ da as ADialogToolbar,
72
+ Ta as AEmptyRouterView,
73
73
  Sa as AFilterAdvancedButton,
74
74
  ga as AFilterBooleanGroup,
75
75
  Fa as AFilterBooleanSelect,
76
- ya as AFilterDatetimePicker,
77
- Da as AFilterInteger,
78
- Ea as AFilterMixed,
79
- Ca as AFilterRemoteAutocomplete,
80
- Ba as AFilterResetButton,
81
- Ra as AFilterString,
76
+ Da as AFilterDatetimePicker,
77
+ ya as AFilterInteger,
78
+ Ca as AFilterMixed,
79
+ Ea as AFilterRemoteAutocomplete,
80
+ Ua as AFilterResetButton,
81
+ Ba as AFilterString,
82
82
  Ia as AFilterSubmitButton,
83
- Ua as AFilterValueObjectOptionsSelect,
83
+ Ra as AFilterValueObjectOptionsSelect,
84
84
  Oa as AFilterWrapper,
85
85
  ha as AFormDatetimePicker,
86
86
  Pa as AFormFlagDatetimePicker,
@@ -112,29 +112,29 @@ export {
112
112
  se as ASubjectSelect,
113
113
  te as ASystemBar,
114
114
  ie as ASystemEntityScope,
115
- oe as ATableCopyIdButton,
116
- re as ATableDetailButton,
115
+ re as ATableCopyIdButton,
116
+ oe as ATableDetailButton,
117
117
  ne as ATableEditButton,
118
118
  me as AThemeSelect,
119
119
  Ae as ATimeTrackingFields,
120
- ce as AUnauthorizedView,
121
- le as AUserAndTimeTrackingFields,
122
- ue as Acl,
120
+ ue as AUnauthorizedView,
121
+ ce as AUserAndTimeTrackingFields,
122
+ le as Acl,
123
123
  pe as AnzuApiForbiddenError,
124
124
  be as AnzuApiForbiddenOperationError,
125
- Te as AnzuApiResponseCodeError,
126
- de as AnzuApiValidationError,
125
+ de as AnzuApiResponseCodeError,
126
+ Te as AnzuApiValidationError,
127
127
  Se as AnzuFatalError,
128
128
  ge as AnzuSystemsCommonAdmin,
129
129
  Fe as AssetFileFailReason,
130
- ye as AssetFileLinkType,
131
- De as AssetFileProcessStatus,
132
- Ee as AvailableLanguagesSymbol,
133
- Ce as COMMON_CONFIG,
134
- Be as CustomDataFormElementType,
135
- Re as CustomDataFormElementTypeDefault,
130
+ De as AssetFileLinkType,
131
+ ye as AssetFileProcessStatus,
132
+ Ce as AvailableLanguagesSymbol,
133
+ Ee as COMMON_CONFIG,
134
+ Ue as CustomDataFormElementType,
135
+ Be as CustomDataFormElementTypeDefault,
136
136
  Ie as DATETIME_MAX,
137
- Ue as DATETIME_MIN,
137
+ Re as DATETIME_MIN,
138
138
  Oe as DamAssetStatus,
139
139
  he as DamAssetType,
140
140
  Pe as DamAuthorType,
@@ -166,134 +166,139 @@ export {
166
166
  ss as apiAnyRequest,
167
167
  ts as apiCreateOne,
168
168
  is as apiDeleteOne,
169
- os as apiFetchByIds,
170
- rs as apiFetchList,
169
+ rs as apiFetchByIds,
170
+ os as apiFetchList,
171
171
  ns as apiFetchListBatch,
172
172
  ms as apiFetchOne,
173
173
  As as apiUpdateOne,
174
- cs as arrayFlatten,
175
- ls as arrayFromArgs,
176
- us as arrayItemToggle,
174
+ us as arrayFlatten,
175
+ cs as arrayFromArgs,
176
+ ls as arrayItemToggle,
177
177
  ps as arrayToString,
178
178
  bs as arraysHaveSameElements,
179
- Ts as assetFileIsAudioFile,
180
- ds as assetFileIsDocumentFile,
179
+ ds as assetFileIsAudioFile,
180
+ Ts as assetFileIsDocumentFile,
181
181
  Ss as assetFileIsImageFile,
182
182
  gs as assetFileIsVideoFile,
183
183
  Fs as axiosErrorResponseHasForbiddenOperationData,
184
- ys as axiosErrorResponseHasValidationData,
185
- Ds as axiosErrorResponseIsForbidden,
186
- Es as booleanToInteger,
187
- Cs as browserHistoryReplaceUrlByRouter,
188
- Bs as browserHistoryReplaceUrlByString,
189
- Rs as cloneDeep,
184
+ Ds as axiosErrorResponseHasValidationData,
185
+ ys as axiosErrorResponseIsForbidden,
186
+ Cs as booleanToInteger,
187
+ Es as browserHistoryReplaceUrlByRouter,
188
+ Us as browserHistoryReplaceUrlByString,
189
+ Bs as cloneDeep,
190
190
  Is as createDatatableColumnsConfig,
191
- Us as cropToRegion,
192
- Os as damFileTypeFix,
193
- hs as dateDiff,
194
- Ps as dateModifyMinutes,
195
- _s as dateNow,
196
- Ns as datePretty,
197
- Ls as dateTimeEndOfDay,
198
- fs as dateTimeFriendly,
199
- Vs as dateTimeNow,
200
- zs as dateTimePretty,
201
- ws as dateTimeStartOfDay,
202
- Hs as dateTimeToDate,
203
- Ms as dateToUtc,
204
- vs as defineCached,
205
- js as eventClickBlur,
206
- ks as generateDatatableMinMaxSelectStrategy,
207
- xs as generateUUIDv1,
208
- Gs as generateUUIDv4,
209
- Js as getAssetTypeByMimeType,
210
- Ws as i18n,
211
- Qs as initDamNotifications,
212
- Ks as isAnzuApiForbiddenError,
213
- qs as isAnzuApiForbiddenOperationError,
214
- Xs as isAnzuApiResponseCodeError,
215
- Ys as isAnzuApiValidationError,
216
- Zs as isAnzuFatalError,
217
- $s as isArray,
218
- at as isBoolean,
219
- et as isCreatedByAware,
220
- st as isDefined,
221
- tt as isDocId,
222
- it as isEmpty,
223
- ot as isEmptyArray,
224
- rt as isEmptyObject,
225
- nt as isFunction,
226
- mt as isInt,
227
- At as isNull,
228
- ct as isNumber,
229
- lt as isObject,
230
- ut as isOwnerAware,
231
- pt as isString,
232
- bt as isUndefined,
233
- Tt as isValidHTTPStatus,
234
- dt as loadCommonFonts,
235
- St as makeFilterHelper,
236
- gt as messagesCs,
237
- Ft as messagesEn,
238
- yt as messagesSk,
239
- Dt as modifyLanguageSettings,
240
- Et as numberToString,
241
- Ct as objectDeepFreeze,
242
- Bt as objectDeletePropertyByPath,
243
- Rt as objectGetValueByPath,
244
- It as objectGetValues,
245
- Ut as objectSetValueByPath,
246
- Ot as prettyBytes,
247
- ht as regionToCrop,
248
- Pt as stringIsValidEmail,
249
- _t as stringNormalizeForSlotName,
250
- Nt as stringSplitOnFirstOccurrence,
251
- Lt as stringToFloat,
252
- ft as stringToInt,
253
- Vt as stringToKebabCase,
254
- zt as stringToSlug,
255
- wt as stringTrimLength,
256
- Ht as stringUrlTemplateReplace,
257
- Mt as stringUrlTemplateReplaceVueRouter,
258
- vt as timePretty,
259
- jt as timestampCurrent,
260
- kt as useAcl,
261
- xt as useAlerts,
262
- Gt as useAnzuUserFactory,
263
- Jt as useApiQueryBuilder,
264
- Wt as useAssetSuggestions,
265
- Qt as useCommonJobFactory,
266
- Kt as useCommonVuetifyConfig,
267
- qt as useCustomDataForm,
268
- Xt as useCustomDataFormElementType,
269
- Yt as useDamAcceptTypeAndSizeHelper,
270
- Zt as useDamAuthorFactory,
271
- $t as useDamAuthorType,
272
- ai as useDamConfigState,
273
- ei as useDamKeywordFactory,
274
- si as useDamNotifications,
275
- ti as useDamUploadChunkSize,
276
- ii as useDropzoneGlobalDragState,
277
- oi as useErrors,
278
- ri as useFilterHelpers,
279
- ni as useGrant,
280
- mi as useGrantOrigin,
281
- Ii as useI18n,
282
- Ai as useJobApi,
283
- ci as useJobBaseResource,
284
- li as useJobStatus,
285
- ui as useLanguageSettings,
286
- pi as useLogLevel,
287
- bi as useLoginStatus,
288
- Ti as usePagination,
289
- di as usePaginationAutoHide,
290
- Si as usePermissionConfigFactory,
291
- gi as usePermissionGroupFactory,
292
- Fi as useRemainingTime,
293
- yi as useSubjectSelect,
294
- Di as useTheme,
295
- Ei as useUploadQueueItemFactory,
296
- Ci as useValidate,
297
- Bi as yearNow
191
+ Rs as cropToRegion,
192
+ Os as damCurrentUser,
193
+ hs as damCurrentUserIsSuperAdmin,
194
+ Ps as damFileTypeFix,
195
+ _s as dateDiff,
196
+ Ns as dateModifyMinutes,
197
+ Ls as dateNow,
198
+ fs as datePretty,
199
+ Vs as dateTimeEndOfDay,
200
+ zs as dateTimeFriendly,
201
+ ws as dateTimeNow,
202
+ Hs as dateTimePretty,
203
+ Ms as dateTimeStartOfDay,
204
+ vs as dateTimeToDate,
205
+ js as dateToUtc,
206
+ ks as defineCached,
207
+ xs as eventClickBlur,
208
+ Gs as fetchDamCurrentUser,
209
+ Js as generateDatatableMinMaxSelectStrategy,
210
+ Ws as generateUUIDv1,
211
+ Qs as generateUUIDv4,
212
+ Ks as getAssetTypeByMimeType,
213
+ qs as i18n,
214
+ Xs as initDamNotifications,
215
+ Ys as isAnzuApiForbiddenError,
216
+ Zs as isAnzuApiForbiddenOperationError,
217
+ $s as isAnzuApiResponseCodeError,
218
+ at as isAnzuApiValidationError,
219
+ et as isAnzuFatalError,
220
+ st as isArray,
221
+ tt as isBoolean,
222
+ it as isCreatedByAware,
223
+ rt as isDefined,
224
+ ot as isDocId,
225
+ nt as isEmpty,
226
+ mt as isEmptyArray,
227
+ At as isEmptyObject,
228
+ ut as isFunction,
229
+ ct as isInt,
230
+ lt as isNull,
231
+ pt as isNumber,
232
+ bt as isObject,
233
+ dt as isOwnerAware,
234
+ Tt as isString,
235
+ St as isUndefined,
236
+ gt as isValidHTTPStatus,
237
+ Ft as loadCommonFonts,
238
+ Dt as makeFilterHelper,
239
+ yt as messagesCs,
240
+ Ct as messagesEn,
241
+ Et as messagesSk,
242
+ Ut as modifyLanguageSettings,
243
+ Bt as numberToString,
244
+ It as objectDeepFreeze,
245
+ Rt as objectDeletePropertyByPath,
246
+ Ot as objectGetValueByPath,
247
+ ht as objectGetValues,
248
+ Pt as objectSetValueByPath,
249
+ _t as prettyBytes,
250
+ Nt as regionToCrop,
251
+ Lt as stringIsValidEmail,
252
+ ft as stringNormalizeForSlotName,
253
+ Vt as stringSplitOnFirstOccurrence,
254
+ zt as stringToFloat,
255
+ wt as stringToInt,
256
+ Ht as stringToKebabCase,
257
+ Mt as stringToSlug,
258
+ vt as stringTrimLength,
259
+ jt as stringUrlTemplateReplace,
260
+ kt as stringUrlTemplateReplaceVueRouter,
261
+ xt as timePretty,
262
+ Gt as timestampCurrent,
263
+ Jt as updateDamCurrentUser,
264
+ Wt as useAcl,
265
+ Qt as useAlerts,
266
+ Kt as useAnzuUserFactory,
267
+ qt as useApiQueryBuilder,
268
+ Xt as useAssetSuggestions,
269
+ Yt as useCommonJobFactory,
270
+ Zt as useCommonVuetifyConfig,
271
+ $t as useCustomDataForm,
272
+ ai as useCustomDataFormElementType,
273
+ ei as useDamAcceptTypeAndSizeHelper,
274
+ si as useDamAuthorFactory,
275
+ ti as useDamAuthorType,
276
+ ii as useDamConfigState,
277
+ ri as useDamCurrentUser,
278
+ oi as useDamKeywordFactory,
279
+ ni as useDamNotifications,
280
+ mi as useDamUploadChunkSize,
281
+ Ai as useDropzoneGlobalDragState,
282
+ ui as useErrors,
283
+ ci as useFilterHelpers,
284
+ li as useGrant,
285
+ pi as useGrantOrigin,
286
+ _i as useI18n,
287
+ bi as useJobApi,
288
+ di as useJobBaseResource,
289
+ Ti as useJobStatus,
290
+ Si as useLanguageSettings,
291
+ gi as useLogLevel,
292
+ Fi as useLoginStatus,
293
+ Di as usePagination,
294
+ yi as usePaginationAutoHide,
295
+ Ci as usePermissionConfigFactory,
296
+ Ei as usePermissionGroupFactory,
297
+ Ui as useRemainingTime,
298
+ Bi as useSubjectSelect,
299
+ Ii as useTheme,
300
+ Ri as useUploadQueueItemFactory,
301
+ Oi as useValidate,
302
+ hi as yearNow
298
303
  };
299
304
  //# sourceMappingURL=common-admin.es.js.map