@anzusystems/common-admin 1.4.1 → 1.5.0

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.
@@ -698,29 +698,50 @@ export declare const AAnzuUserAvatar: DefineComponent<{
698
698
  }, {}>;
699
699
 
700
700
  export declare const AAssetSelect: DefineComponent<{
701
- maxCount: {
702
- type: PropType<number>;
701
+ modelValue: {
702
+ type: PropType<boolean | undefined>;
703
+ required: false;
704
+ skipCheck: boolean;
705
+ default: undefined;
706
+ };
707
+ assetType: {
708
+ type: PropType<DamAssetType | "image" | "audio" | "video" | "document">;
703
709
  required: true;
704
710
  };
705
711
  minCount: {
706
712
  type: PropType<number>;
707
713
  required: true;
708
714
  };
715
+ maxCount: {
716
+ type: PropType<number>;
717
+ required: true;
718
+ };
709
719
  assetLicenceId: {
710
720
  type: PropType<number | undefined>;
711
721
  required: false;
712
722
  default: undefined;
713
723
  };
724
+ returnType: {
725
+ type: PropType<AssetSelectReturnType | "mainFileId" | "assetId" | "asset" | undefined>;
726
+ required: false;
727
+ default: string;
728
+ };
729
+ }, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("update:modelValue" | "onConfirm")[], "update:modelValue" | "onConfirm", VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
730
+ modelValue: {
731
+ type: PropType<boolean | undefined>;
732
+ required: false;
733
+ skipCheck: boolean;
734
+ default: undefined;
735
+ };
714
736
  assetType: {
715
- type: PropType<DamAssetType>;
737
+ type: PropType<DamAssetType | "image" | "audio" | "video" | "document">;
716
738
  required: true;
717
739
  };
718
- }, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("update:modelValue" | "onConfirm" | "onOpen" | "onClose")[], "update:modelValue" | "onConfirm" | "onOpen" | "onClose", VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
719
- maxCount: {
740
+ minCount: {
720
741
  type: PropType<number>;
721
742
  required: true;
722
743
  };
723
- minCount: {
744
+ maxCount: {
724
745
  type: PropType<number>;
725
746
  required: true;
726
747
  };
@@ -729,17 +750,18 @@ export declare const AAssetSelect: DefineComponent<{
729
750
  required: false;
730
751
  default: undefined;
731
752
  };
732
- assetType: {
733
- type: PropType<DamAssetType>;
734
- required: true;
753
+ returnType: {
754
+ type: PropType<AssetSelectReturnType | "mainFileId" | "assetId" | "asset" | undefined>;
755
+ required: false;
756
+ default: string;
735
757
  };
736
758
  }>> & {
737
759
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
738
760
  onOnConfirm?: ((...args: any[]) => any) | undefined;
739
- onOnOpen?: ((...args: any[]) => any) | undefined;
740
- onOnClose?: ((...args: any[]) => any) | undefined;
741
761
  }, {
762
+ modelValue: boolean | undefined;
742
763
  assetLicenceId: number | undefined;
764
+ returnType: AssetSelectReturnType | "mainFileId" | "assetId" | "asset" | undefined;
743
765
  }, {}>;
744
766
 
745
767
  export declare const AAvatarColorPicker: DefineComponent<{
@@ -3556,6 +3578,70 @@ export declare const arraysHaveSameElements: <T>(array1: T[], array2: T[]) => bo
3556
3578
 
3557
3579
  export declare const arrayToString: (values: Array<string | number>, separator?: string) => string;
3558
3580
 
3581
+ declare type AssetFile = ImageFile | AudioFile | VideoFile | DocumentFile;
3582
+
3583
+ declare enum AssetFileFailReason {
3584
+ None = "none",
3585
+ Unknown = "unknown",
3586
+ InvalidChecksum = "invalid_checksum",
3587
+ InvalidMimeType = "invalid_mime_type",
3588
+ DownloadFailed = "download_failed",
3589
+ InvalidSize = "invalid_size",
3590
+ Default = "none"
3591
+ }
3592
+
3593
+ declare enum AssetFileProcessStatus {
3594
+ Uploading = "uploading",
3595
+ Uploaded = "uploaded",
3596
+ Stored = "stored",
3597
+ Duplicate = "duplicate",
3598
+ Processed = "processed",
3599
+ Failed = "failed"
3600
+ }
3601
+
3602
+ declare interface AssetFileProperties {
3603
+ distributesInServices: DistributionServiceName[];
3604
+ slotNames: string[];
3605
+ fromRss: boolean;
3606
+ width: number;
3607
+ height: number;
3608
+ }
3609
+
3610
+ declare interface AssetSearchListItemDto extends AnzuUserAndTimeTrackingAware, ResourceNameSystemAware {
3611
+ id: DocId;
3612
+ texts: Texts;
3613
+ attributes: Attributes;
3614
+ licence: IntegerId;
3615
+ mainFile: null | AssetFile;
3616
+ keywords: DocId[];
3617
+ authors: DocId[];
3618
+ podcasts: DocId[];
3619
+ assetFileProperties: AssetFileProperties;
3620
+ }
3621
+
3622
+ declare interface AssetSelectReturnAsset {
3623
+ type: 'asset';
3624
+ value: Array<AssetSearchListItemDto>;
3625
+ }
3626
+
3627
+ declare interface AssetSelectReturnAssetId {
3628
+ type: 'assetId';
3629
+ value: Array<DocId>;
3630
+ }
3631
+
3632
+ export declare type AssetSelectReturnData = AssetSelectReturnMainFileId | AssetSelectReturnAssetId | AssetSelectReturnAsset;
3633
+
3634
+ declare interface AssetSelectReturnMainFileId {
3635
+ type: 'mainFileId';
3636
+ value: Array<DocId>;
3637
+ }
3638
+
3639
+ declare enum AssetSelectReturnType {
3640
+ MainFileId = "mainFileId",
3641
+ AssetId = "assetId",
3642
+ Asset = "asset"
3643
+ }
3644
+
3559
3645
  export declare const ASystemBar: DefineComponent<{
3560
3646
  currentVersion: {
3561
3647
  type: PropType<string>;
@@ -3863,6 +3949,20 @@ export declare const ATimeTrackingFields: DefineComponent<{
3863
3949
  hideModifiedAt: boolean | undefined;
3864
3950
  }, {}>;
3865
3951
 
3952
+ declare interface Attributes {
3953
+ assetType: DamAssetType;
3954
+ assetStatus: DamAssetStatus;
3955
+ }
3956
+
3957
+ declare interface AudioFile extends AnzuUserAndTimeTrackingAware {
3958
+ id: DocId;
3959
+ asset: DocId;
3960
+ fileAttributes: FileAttributes;
3961
+ originAssetFile: DocIdNullable;
3962
+ links?: Links;
3963
+ _resourceName: 'audioFile';
3964
+ }
3965
+
3866
3966
  export declare const AUnauthorizedView: DefineComponent<{
3867
3967
  returnRouteName: {
3868
3968
  type: PropType<string>;
@@ -4091,10 +4191,21 @@ export declare function defineCached<I extends DocId | IntegerId, T extends Reco
4091
4191
  isLoaded: (id: I | null | undefined) => boolean;
4092
4192
  };
4093
4193
 
4194
+ declare type DistributionServiceName = string;
4195
+
4094
4196
  export declare type DocId = string;
4095
4197
 
4096
4198
  export declare type DocIdNullable = string | null;
4097
4199
 
4200
+ declare interface DocumentFile extends AnzuUserAndTimeTrackingAware {
4201
+ id: DocId;
4202
+ asset: DocId;
4203
+ fileAttributes: FileAttributes;
4204
+ originAssetFile: DocIdNullable;
4205
+ links?: Links;
4206
+ _resourceName: 'documentFile';
4207
+ }
4208
+
4098
4209
  export declare type EnableDisable = 'enable' | 'disable';
4099
4210
 
4100
4211
  export declare const eventClickBlur: (event?: Event) => void;
@@ -4105,6 +4216,15 @@ declare type fetchItemsByIdsType_2 = ((ids: IntegerId[]) => Promise<ValueObjectO
4105
4216
 
4106
4217
  declare type FetchItemsMinimalType = (pagination: Pagination, filterBag: FilterBag) => Promise<any[]>;
4107
4218
 
4219
+ declare interface FileAttributes {
4220
+ status: AssetFileProcessStatus;
4221
+ mimeType: string;
4222
+ size: number;
4223
+ originFileName: string;
4224
+ originUrl: string;
4225
+ failReason: AssetFileFailReason;
4226
+ }
4227
+
4108
4228
  export declare interface Filter<T = any> {
4109
4229
  field: string;
4110
4230
  multiple: boolean;
@@ -4156,6 +4276,15 @@ export declare const HTTP_STATUS_UNPROCESSABLE_ENTITY = 422;
4156
4276
 
4157
4277
  export declare const i18n: I18n<{}, {}, {}, string, true>;
4158
4278
 
4279
+ declare interface ImageFile extends AnzuUserAndTimeTrackingAware {
4280
+ id: DocId;
4281
+ asset: DocId;
4282
+ fileAttributes: FileAttributes;
4283
+ originAssetFile: DocIdNullable;
4284
+ links?: Links;
4285
+ _resourceName: 'imageFile';
4286
+ }
4287
+
4159
4288
  export declare type Immutable<T> = {
4160
4289
  readonly [K in keyof T]: Immutable<T[K]>;
4161
4290
  };
@@ -4255,6 +4384,24 @@ declare interface Language {
4255
4384
 
4256
4385
  export declare type LanguageCode = 'en' | 'sk' | 'cs' | 'xx';
4257
4386
 
4387
+ declare interface Link {
4388
+ width: number;
4389
+ height: number;
4390
+ requestedWidth: number;
4391
+ requestedHeight: number;
4392
+ url: string;
4393
+ title: string;
4394
+ type: LinkType;
4395
+ }
4396
+
4397
+ declare type Links = Record<'image_list' | 'image_table' | 'image_detail' | 'audio', Link> | Record<string, never>;
4398
+
4399
+ declare enum LinkType {
4400
+ Image = "image",
4401
+ Audio = "audio",
4402
+ Default = "image"
4403
+ }
4404
+
4258
4405
  export declare function loadCommonFonts(): Promise<void>;
4259
4406
 
4260
4407
  export declare interface Log {
@@ -5328,6 +5475,10 @@ export declare const SubjectScopeSymbol: InjectionKey<string>;
5328
5475
 
5329
5476
  export declare const SystemScopeSymbol: InjectionKey<string>;
5330
5477
 
5478
+ declare interface Texts {
5479
+ displayTitle: string;
5480
+ }
5481
+
5331
5482
  export declare enum Theme {
5332
5483
  Light = "light",
5333
5484
  Dark = "dark"
@@ -5693,6 +5844,15 @@ export declare interface ValueObjectOption<T> {
5693
5844
  active?: false;
5694
5845
  }
5695
5846
 
5847
+ declare interface VideoFile extends AnzuUserAndTimeTrackingAware {
5848
+ id: DocId;
5849
+ asset: DocId;
5850
+ fileAttributes: FileAttributes;
5851
+ originAssetFile: DocIdNullable;
5852
+ links?: Links;
5853
+ _resourceName: 'videoFile';
5854
+ }
5855
+
5696
5856
  export declare type VuetifyIconValue = string;
5697
5857
 
5698
5858
  export declare const yearNow: () => string;
@@ -1,5 +1,5 @@
1
- import { P as z, Q as v, R as j, S as k, T as G, U as M, I as x, d as J, a6 as K, ab as W, a7 as Q, e as q, a1 as X, H as Y, _ as Z, a as $, c as aa, M as ea, E as sa, a8 as ta, B as ra, C as oa, z as ia, y as na, D as Aa, J as ma, V as ba, A as la, w as pa, x as ua, t as ca, Y as Ta, u as da, W as Sa, s as ga, X as Fa, v as ya, r as Ea, l as Ca, m as Da, n as Ba, a9 as Oa, o as Ra, p as Pa, j as Ua, k as _a, q as ha, N as La, aa as Na, G as Ia, a3 as Va, F as fa, a5 as wa, ac as Ha, ad as za, af as va, f as ja, h as ka, b as Ga, a4 as Ma, i as xa, Z as Ja, $ as Ka, a0 as Wa, a2 as Qa, K as qa, ae as Xa, O as Ya, L as Za, c6 as $a, cb as ae, c8 as ee, ce as se, cg as te, ch as re, bS as oe, c1 as ie, ba as ne, b9 as Ae, bT as me, au as be, aw as le, bX as pe, bV as ue, bZ as ce, bW as Te, bU as de, bY as Se, b_ as ge, aC as Fe, aD as ye, ay as Ee, c0 as Ce, b$ as De, bR as Be, bQ as Oe, aq as Re, bC as Pe, bD as Ue, bE as _e, bF as he, bG as Le, bH as Ne, bI as Ie, bw as Ve, bv as fe, bt as we, bu as He, bx as ze, ca as ve, cd as je, c5 as ke, bs as Ge, bz as Me, by as xe, aI as Je, an as Ke, bo as We, bh as Qe, bj as qe, bm as Xe, bc as Ye, bf as Ze, be as $e, bg as as, bd as es, bk as ss, bi as ts, ap as rs, bA as os, bB as is, c3 as ns, c4 as As, c9 as ms, c7 as bs, cc as ls, cf as ps, aN as us, aP as cs, aB as Ts, aT as ds, aQ as Ss, aJ as gs, aM as Fs, aK as ys, aO as Es, aU as Cs, aR as Ds, aW as Bs, aL as Os, aA as Rs, aV as Ps, aS as Us, bq as _s, cj as hs, aj as Ls, bO as Ns, bP as Is, as as Vs, br as fs, a$ as ws, a_ as Hs, aY as zs, aX as vs, aZ as js, bp as ks, b6 as Gs, b3 as Ms, b1 as xs, b0 as Js, b5 as Ks, b2 as Ws, b4 as Qs, b7 as qs, b8 as Xs, bn as Ys, bb as Zs, bN as $s, al as at, aF as et, bJ as st, aE as tt, ci as rt, am as ot, ai as it, av as nt, ax as At, bK as mt, bL as bt, bM as lt, ar as pt, az as ut, at as ct, ag as Tt, ah as dt, aG as St, aH as gt, ak as Ft, ao as yt, c2 as Et, bl as Ct } from "./lib-70f500c8.js";
2
- import { useI18n as Bt } from "vue-i18n";
1
+ import { P as z, Q as k, R as v, S as j, T as G, U as M, I as x, d as J, a6 as K, ab as W, a7 as Q, e as q, a1 as X, H as Y, _ as Z, a as $, c as aa, M as ea, E as sa, a8 as ta, B as ra, C as oa, z as ia, y as na, D as Aa, J as ma, V as ba, A as la, w as pa, x as ua, t as ca, Y as Ta, u as da, W as Sa, s as ga, X as Fa, v as ya, r as Ea, l as Ca, m as Da, n as Ba, a9 as Oa, o as Ra, p as Pa, j as Ua, k as _a, q as ha, N as La, aa as Na, G as Ia, a3 as Va, F as fa, a5 as wa, ac as Ha, ad as za, af as ka, f as va, h as ja, b as Ga, a4 as Ma, i as xa, Z as Ja, $ as Ka, a0 as Wa, a2 as Qa, K as qa, ae as Xa, O as Ya, L as Za, c8 as $a, cd as ae, ca as ee, cg as se, ci as te, cj as re, bU as oe, c3 as ie, bc as ne, bb as Ae, aG as me, aF as be, bV as le, au as pe, aw as ue, bZ as ce, bX as Te, b$ as de, bY as Se, bW as ge, b_ as Fe, c0 as ye, aC as Ee, aD as Ce, ay as De, c2 as Be, c1 as Oe, bT as Re, bS as Pe, aq as Ue, bE as _e, bF as he, bG as Le, bH as Ne, bI as Ie, bJ as Ve, bK as fe, by as we, bx as He, bv as ze, bw as ke, bz as ve, cc as je, cf as Ge, c7 as Me, bu as xe, bB as Je, bA as Ke, aK as We, an as Qe, bq as qe, bj as Xe, bl as Ye, bo as Ze, be as $e, bh as as, bg as es, bi as ss, bf as ts, bm as rs, bk as os, ap as is, bC as ns, bD as As, c5 as ms, c6 as bs, cb as ls, c9 as ps, ce as us, ch as cs, aP as Ts, aR as ds, aB as Ss, aV as gs, aS as Fs, aL as ys, aO as Es, aM as Cs, aQ as Ds, aW as Bs, aT as Os, aY as Rs, aN as Ps, aA as Us, aX as _s, aU as hs, bs as Ls, cl as Ns, aj as Is, bQ as Vs, bR as fs, as as ws, bt as Hs, b1 as zs, b0 as ks, a_ as vs, aZ as js, a$ as Gs, br as Ms, b8 as xs, b5 as Js, b3 as Ks, b2 as Ws, b7 as Qs, b4 as qs, b6 as Xs, b9 as Ys, ba as Zs, bp as $s, bd as at, bP as et, al as st, aH as tt, bL as rt, aE as ot, ck as it, am as nt, ai as At, av as mt, ax as bt, bM as lt, bN as pt, bO as ut, ar as ct, az as Tt, at as dt, ag as St, ah as gt, aI as Ft, aJ as yt, ak as Et, ao as Ct, c4 as Dt, bn as Bt } from "./lib-5eec944e.js";
2
+ import { useI18n as Rt } 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";
@@ -38,9 +38,9 @@ import "vuetify/lib/directives/index.mjs";
38
38
  import "vuetify/components";
39
39
  export {
40
40
  z as AActionCloseButton,
41
- v as AActionCreateButton,
42
- j as AActionDeleteButton,
43
- k as AActionEditButton,
41
+ k as AActionCreateButton,
42
+ v as AActionDeleteButton,
43
+ j as AActionEditButton,
44
44
  G as AActionSaveAndCloseButton,
45
45
  M as AActionSaveButton,
46
46
  x as AAdminSwitcher,
@@ -92,9 +92,9 @@ export {
92
92
  wa as ALogLevelChip,
93
93
  Ha as ALoginView,
94
94
  za as ALogoutView,
95
- va as ANotFoundView,
96
- ja as APermissionGrantEditor,
97
- ka as APermissionValueChip,
95
+ ka as ANotFoundView,
96
+ va as APermissionGrantEditor,
97
+ ja as APermissionValueChip,
98
98
  Ga as ARow,
99
99
  Ma as ASystemBar,
100
100
  xa as ASystemEntityScope,
@@ -116,128 +116,130 @@ export {
116
116
  ie as COMMON_CONFIG,
117
117
  ne as DATETIME_MAX,
118
118
  Ae as DATETIME_MIN,
119
- me as DefaultLanguageSymbol,
120
- be as Grant,
121
- le as GrantOrigin,
122
- pe as HTTP_STATUS_BAD_REQUEST,
123
- ue as HTTP_STATUS_CREATED,
124
- ce as HTTP_STATUS_FORBIDDEN,
125
- Te as HTTP_STATUS_NO_CONTENT,
126
- de as HTTP_STATUS_OK,
127
- Se as HTTP_STATUS_UNAUTHORIZED,
128
- ge as HTTP_STATUS_UNPROCESSABLE_ENTITY,
129
- Fe as JOB_RESOURCE_USER_DATA_DELETE,
130
- ye as JobStatus,
131
- Ee as LogLevel,
132
- Ce as NEW_LINE_MARK,
133
- De as ROLE_SUPER_ADMIN,
134
- Be as SubjectScopeSymbol,
135
- Oe as SystemScopeSymbol,
136
- Re as Theme,
137
- Pe as apiAnyRequest,
138
- Ue as apiCreateOne,
139
- _e as apiDeleteOne,
140
- he as apiFetchByIds,
141
- Le as apiFetchList,
142
- Ne as apiFetchOne,
143
- Ie as apiUpdateOne,
144
- Ve as arrayFlatten,
145
- fe as arrayFromArgs,
146
- we as arrayItemToggle,
147
- He as arrayToString,
148
- ze as arraysHaveSameElements,
149
- ve as axiosErrorResponseHasForbiddenOperationData,
150
- je as axiosErrorResponseHasValidationData,
151
- ke as axiosErrorResponseIsForbidden,
152
- Ge as booleanToInteger,
153
- Me as browserHistoryReplaceUrlByRouter,
154
- xe as browserHistoryReplaceUrlByString,
155
- Je as cloneDeep,
156
- Ke as createDatatableColumnsConfig,
157
- We as dateDiff,
158
- Qe as dateModifyMinutes,
159
- qe as dateNow,
160
- Xe as datePretty,
161
- Ye as dateTimeEndOfDay,
162
- Ze as dateTimeFriendly,
163
- $e as dateTimeNow,
164
- as as dateTimePretty,
165
- es as dateTimeStartOfDay,
166
- ss as dateTimeToDate,
167
- ts as dateToUtc,
168
- rs as defineCached,
169
- os as eventClickBlur,
170
- is as generateUUIDv1,
171
- ns as i18n,
172
- As as isAnzuApiForbiddenError,
173
- ms as isAnzuApiForbiddenOperationError,
174
- bs as isAnzuApiResponseCodeError,
175
- ls as isAnzuApiValidationError,
176
- ps as isAnzuFatalError,
177
- us as isArray,
178
- cs as isBoolean,
179
- Ts as isCreatedByAware,
180
- ds as isDefined,
181
- Ss as isDocId,
182
- gs as isEmpty,
183
- Fs as isEmptyArray,
184
- ys as isEmptyObject,
185
- Es as isFunction,
186
- Cs as isInt,
187
- Ds as isNull,
188
- Bs as isNumber,
189
- Os as isObject,
190
- Rs as isOwnerAware,
191
- Ps as isString,
192
- Us as isUndefined,
193
- _s as isValidHTTPStatus,
194
- hs as loadCommonFonts,
195
- Ls as makeFilterHelper,
196
- Ns as messagesEn,
197
- Is as messagesSk,
198
- Vs as modifyLanguageSettings,
199
- fs as numberToString,
200
- ws as objectDeepFreeze,
201
- Hs as objectDeletePropertyByPath,
202
- zs as objectGetValueByPath,
203
- vs as objectGetValues,
204
- js as objectSetValueByPath,
205
- ks as prettyBytes,
206
- Gs as stringNormalizeForSlotName,
207
- Ms as stringSplitOnFirstOccurrence,
208
- xs as stringToFloat,
209
- Js as stringToInt,
210
- Ks as stringToKebabCase,
211
- Ws as stringToSlug,
212
- Qs as stringTrimLength,
213
- qs as stringUrlTemplateReplace,
214
- Xs as stringUrlTemplateReplaceVueRouter,
215
- Ys as timePretty,
216
- Zs as timestampCurrent,
217
- $s as useAcl,
218
- at as useAlerts,
219
- et as useAnzuUserFactory,
220
- st as useApiQueryBuilder,
221
- tt as useCommonJobFactory,
222
- rt as useCommonVuetifyConfig,
223
- ot as useErrors,
224
- it as useFilterHelpers,
225
- nt as useGrant,
226
- At as useGrantOrigin,
227
- Bt as useI18n,
228
- mt as useJobApi,
229
- bt as useJobBaseResource,
230
- lt as useJobStatus,
231
- pt as useLanguageSettings,
232
- ut as useLogLevel,
233
- ct as useLoginStatus,
234
- Tt as usePagination,
235
- dt as usePaginationAutoHide,
236
- St as usePermissionConfigFactory,
237
- gt as usePermissionGroupFactory,
238
- Ft as useRemainingTime,
239
- yt as useTheme,
240
- Et as useValidate,
241
- Ct as yearNow
119
+ me as DamAssetStatus,
120
+ be as DamAssetType,
121
+ le as DefaultLanguageSymbol,
122
+ pe as Grant,
123
+ ue as GrantOrigin,
124
+ ce as HTTP_STATUS_BAD_REQUEST,
125
+ Te as HTTP_STATUS_CREATED,
126
+ de as HTTP_STATUS_FORBIDDEN,
127
+ Se as HTTP_STATUS_NO_CONTENT,
128
+ ge as HTTP_STATUS_OK,
129
+ Fe as HTTP_STATUS_UNAUTHORIZED,
130
+ ye as HTTP_STATUS_UNPROCESSABLE_ENTITY,
131
+ Ee as JOB_RESOURCE_USER_DATA_DELETE,
132
+ Ce as JobStatus,
133
+ De as LogLevel,
134
+ Be as NEW_LINE_MARK,
135
+ Oe as ROLE_SUPER_ADMIN,
136
+ Re as SubjectScopeSymbol,
137
+ Pe as SystemScopeSymbol,
138
+ Ue as Theme,
139
+ _e as apiAnyRequest,
140
+ he as apiCreateOne,
141
+ Le as apiDeleteOne,
142
+ Ne as apiFetchByIds,
143
+ Ie as apiFetchList,
144
+ Ve as apiFetchOne,
145
+ fe as apiUpdateOne,
146
+ we as arrayFlatten,
147
+ He as arrayFromArgs,
148
+ ze as arrayItemToggle,
149
+ ke as arrayToString,
150
+ ve as arraysHaveSameElements,
151
+ je as axiosErrorResponseHasForbiddenOperationData,
152
+ Ge as axiosErrorResponseHasValidationData,
153
+ Me as axiosErrorResponseIsForbidden,
154
+ xe as booleanToInteger,
155
+ Je as browserHistoryReplaceUrlByRouter,
156
+ Ke as browserHistoryReplaceUrlByString,
157
+ We as cloneDeep,
158
+ Qe as createDatatableColumnsConfig,
159
+ qe as dateDiff,
160
+ Xe as dateModifyMinutes,
161
+ Ye as dateNow,
162
+ Ze as datePretty,
163
+ $e as dateTimeEndOfDay,
164
+ as as dateTimeFriendly,
165
+ es as dateTimeNow,
166
+ ss as dateTimePretty,
167
+ ts as dateTimeStartOfDay,
168
+ rs as dateTimeToDate,
169
+ os as dateToUtc,
170
+ is as defineCached,
171
+ ns as eventClickBlur,
172
+ As as generateUUIDv1,
173
+ ms as i18n,
174
+ bs as isAnzuApiForbiddenError,
175
+ ls as isAnzuApiForbiddenOperationError,
176
+ ps as isAnzuApiResponseCodeError,
177
+ us as isAnzuApiValidationError,
178
+ cs as isAnzuFatalError,
179
+ Ts as isArray,
180
+ ds as isBoolean,
181
+ Ss as isCreatedByAware,
182
+ gs as isDefined,
183
+ Fs as isDocId,
184
+ ys as isEmpty,
185
+ Es as isEmptyArray,
186
+ Cs as isEmptyObject,
187
+ Ds as isFunction,
188
+ Bs as isInt,
189
+ Os as isNull,
190
+ Rs as isNumber,
191
+ Ps as isObject,
192
+ Us as isOwnerAware,
193
+ _s as isString,
194
+ hs as isUndefined,
195
+ Ls as isValidHTTPStatus,
196
+ Ns as loadCommonFonts,
197
+ Is as makeFilterHelper,
198
+ Vs as messagesEn,
199
+ fs as messagesSk,
200
+ ws as modifyLanguageSettings,
201
+ Hs as numberToString,
202
+ zs as objectDeepFreeze,
203
+ ks as objectDeletePropertyByPath,
204
+ vs as objectGetValueByPath,
205
+ js as objectGetValues,
206
+ Gs as objectSetValueByPath,
207
+ Ms as prettyBytes,
208
+ xs as stringNormalizeForSlotName,
209
+ Js as stringSplitOnFirstOccurrence,
210
+ Ks as stringToFloat,
211
+ Ws as stringToInt,
212
+ Qs as stringToKebabCase,
213
+ qs as stringToSlug,
214
+ Xs as stringTrimLength,
215
+ Ys as stringUrlTemplateReplace,
216
+ Zs as stringUrlTemplateReplaceVueRouter,
217
+ $s as timePretty,
218
+ at as timestampCurrent,
219
+ et as useAcl,
220
+ st as useAlerts,
221
+ tt as useAnzuUserFactory,
222
+ rt as useApiQueryBuilder,
223
+ ot as useCommonJobFactory,
224
+ it as useCommonVuetifyConfig,
225
+ nt as useErrors,
226
+ At as useFilterHelpers,
227
+ mt as useGrant,
228
+ bt as useGrantOrigin,
229
+ Rt as useI18n,
230
+ lt as useJobApi,
231
+ pt as useJobBaseResource,
232
+ ut as useJobStatus,
233
+ ct as useLanguageSettings,
234
+ Tt as useLogLevel,
235
+ dt as useLoginStatus,
236
+ St as usePagination,
237
+ gt as usePaginationAutoHide,
238
+ Ft as usePermissionConfigFactory,
239
+ yt as usePermissionGroupFactory,
240
+ Et as useRemainingTime,
241
+ Ct as useTheme,
242
+ Dt as useValidate,
243
+ Bt as yearNow
242
244
  };
243
245
  //# sourceMappingURL=common-admin.es.js.map