@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.
- package/dist/common-admin.es.d.ts +171 -11
- package/dist/common-admin.es.js +133 -131
- package/dist/{lib-70f500c8.js → lib-5eec944e.js} +3608 -3533
- package/dist/lib-5eec944e.js.map +1 -0
- package/dist/{shortcut-buttons-flatpickr-1ae718f4.js → shortcut-buttons-flatpickr-a692f434.js} +2 -2
- package/dist/{shortcut-buttons-flatpickr-1ae718f4.js.map → shortcut-buttons-flatpickr-a692f434.js.map} +1 -1
- package/dist/style.css +2 -2
- package/dist/{webfontloader-86fe031b.js → webfontloader-af641a25.js} +2 -2
- package/dist/{webfontloader-86fe031b.js.map → webfontloader-af641a25.js.map} +1 -1
- package/package.json +12 -10
- package/dist/lib-70f500c8.js.map +0 -1
|
@@ -698,29 +698,50 @@ export declare const AAnzuUserAvatar: DefineComponent<{
|
|
|
698
698
|
}, {}>;
|
|
699
699
|
|
|
700
700
|
export declare const AAssetSelect: DefineComponent<{
|
|
701
|
-
|
|
702
|
-
type: PropType<
|
|
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
|
-
|
|
719
|
-
maxCount: {
|
|
740
|
+
minCount: {
|
|
720
741
|
type: PropType<number>;
|
|
721
742
|
required: true;
|
|
722
743
|
};
|
|
723
|
-
|
|
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
|
-
|
|
733
|
-
type: PropType<
|
|
734
|
-
required:
|
|
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;
|
package/dist/common-admin.es.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { P as z, Q as
|
|
2
|
-
import { useI18n as
|
|
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
|
-
|
|
42
|
-
|
|
43
|
-
|
|
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
|
-
|
|
96
|
-
|
|
97
|
-
|
|
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
|
|
120
|
-
be as
|
|
121
|
-
le as
|
|
122
|
-
pe as
|
|
123
|
-
ue as
|
|
124
|
-
ce as
|
|
125
|
-
Te as
|
|
126
|
-
de as
|
|
127
|
-
Se as
|
|
128
|
-
ge as
|
|
129
|
-
Fe as
|
|
130
|
-
ye as
|
|
131
|
-
Ee as
|
|
132
|
-
Ce as
|
|
133
|
-
De as
|
|
134
|
-
Be as
|
|
135
|
-
Oe as
|
|
136
|
-
Re as
|
|
137
|
-
Pe as
|
|
138
|
-
Ue as
|
|
139
|
-
_e as
|
|
140
|
-
he as
|
|
141
|
-
Le as
|
|
142
|
-
Ne as
|
|
143
|
-
Ie as
|
|
144
|
-
Ve as
|
|
145
|
-
fe as
|
|
146
|
-
we as
|
|
147
|
-
He as
|
|
148
|
-
ze as
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
Ge as
|
|
153
|
-
Me as
|
|
154
|
-
xe as
|
|
155
|
-
Je as
|
|
156
|
-
Ke as
|
|
157
|
-
We as
|
|
158
|
-
Qe as
|
|
159
|
-
qe as
|
|
160
|
-
Xe as
|
|
161
|
-
Ye as
|
|
162
|
-
Ze as
|
|
163
|
-
$e as
|
|
164
|
-
as as
|
|
165
|
-
es as
|
|
166
|
-
ss as
|
|
167
|
-
ts as
|
|
168
|
-
rs as
|
|
169
|
-
os as
|
|
170
|
-
is as
|
|
171
|
-
ns as
|
|
172
|
-
As as
|
|
173
|
-
ms as
|
|
174
|
-
bs as
|
|
175
|
-
ls as
|
|
176
|
-
ps as
|
|
177
|
-
us as
|
|
178
|
-
cs as
|
|
179
|
-
Ts as
|
|
180
|
-
ds as
|
|
181
|
-
Ss as
|
|
182
|
-
gs as
|
|
183
|
-
Fs as
|
|
184
|
-
ys as
|
|
185
|
-
Es as
|
|
186
|
-
Cs as
|
|
187
|
-
Ds as
|
|
188
|
-
Bs as
|
|
189
|
-
Os as
|
|
190
|
-
Rs as
|
|
191
|
-
Ps as
|
|
192
|
-
Us as
|
|
193
|
-
_s as
|
|
194
|
-
hs as
|
|
195
|
-
Ls as
|
|
196
|
-
Ns as
|
|
197
|
-
Is as
|
|
198
|
-
Vs as
|
|
199
|
-
fs as
|
|
200
|
-
ws as
|
|
201
|
-
Hs as
|
|
202
|
-
zs as
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
Gs as
|
|
207
|
-
Ms as
|
|
208
|
-
xs as
|
|
209
|
-
Js as
|
|
210
|
-
Ks as
|
|
211
|
-
Ws as
|
|
212
|
-
Qs as
|
|
213
|
-
qs as
|
|
214
|
-
Xs as
|
|
215
|
-
Ys as
|
|
216
|
-
Zs as
|
|
217
|
-
$s as
|
|
218
|
-
at as
|
|
219
|
-
et as
|
|
220
|
-
st as
|
|
221
|
-
tt as
|
|
222
|
-
rt as
|
|
223
|
-
ot as
|
|
224
|
-
it as
|
|
225
|
-
nt as
|
|
226
|
-
At as
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
lt as
|
|
231
|
-
pt as
|
|
232
|
-
ut as
|
|
233
|
-
ct as
|
|
234
|
-
Tt as
|
|
235
|
-
dt as
|
|
236
|
-
St as
|
|
237
|
-
gt as
|
|
238
|
-
Ft as
|
|
239
|
-
yt as
|
|
240
|
-
Et as
|
|
241
|
-
Ct as
|
|
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
|