@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.
- package/dist/common-admin.es.d.ts +151 -6
- package/dist/common-admin.es.js +155 -150
- package/dist/{lib-e12oMlVh.js → lib-bdhk0KGn.js} +5230 -5138
- package/dist/lib-bdhk0KGn.js.map +1 -0
- package/dist/{shortcut-buttons-flatpickr-j-Fc-jNj.js → shortcut-buttons-flatpickr-y4YhSABk.js} +2 -2
- package/dist/{shortcut-buttons-flatpickr-j-Fc-jNj.js.map → shortcut-buttons-flatpickr-y4YhSABk.js.map} +1 -1
- package/dist/{webfontloader-FldsULAm.js → webfontloader-LEvNBsHc.js} +2 -2
- package/dist/{webfontloader-FldsULAm.js.map → webfontloader-LEvNBsHc.js.map} +1 -1
- package/package.json +3 -3
- package/dist/lib-e12oMlVh.js.map +0 -1
|
@@ -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
|
-
|
|
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
|
-
|
|
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
|
};
|
package/dist/common-admin.es.js
CHANGED
|
@@ -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
|
|
2
|
-
import { useI18n as
|
|
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
|
-
|
|
62
|
-
|
|
61
|
+
ra as ACopyText,
|
|
62
|
+
oa as ACreateDialog,
|
|
63
63
|
na as ACropperjs,
|
|
64
64
|
ma as ACurrentUserDropdown,
|
|
65
65
|
Aa as ACustomDataForm,
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
66
|
+
ua as ACustomDataFormElement,
|
|
67
|
+
ca as ADatatableConfigButton,
|
|
68
|
+
la as ADatatableOrdering,
|
|
69
69
|
pa as ADatatablePagination,
|
|
70
70
|
ba as ADatetime,
|
|
71
|
-
|
|
72
|
-
|
|
71
|
+
da as ADialogToolbar,
|
|
72
|
+
Ta as AEmptyRouterView,
|
|
73
73
|
Sa as AFilterAdvancedButton,
|
|
74
74
|
ga as AFilterBooleanGroup,
|
|
75
75
|
Fa as AFilterBooleanSelect,
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
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
|
-
|
|
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
|
-
|
|
116
|
-
|
|
115
|
+
re as ATableCopyIdButton,
|
|
116
|
+
oe as ATableDetailButton,
|
|
117
117
|
ne as ATableEditButton,
|
|
118
118
|
me as AThemeSelect,
|
|
119
119
|
Ae as ATimeTrackingFields,
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
120
|
+
ue as AUnauthorizedView,
|
|
121
|
+
ce as AUserAndTimeTrackingFields,
|
|
122
|
+
le as Acl,
|
|
123
123
|
pe as AnzuApiForbiddenError,
|
|
124
124
|
be as AnzuApiForbiddenOperationError,
|
|
125
|
-
|
|
126
|
-
|
|
125
|
+
de as AnzuApiResponseCodeError,
|
|
126
|
+
Te as AnzuApiValidationError,
|
|
127
127
|
Se as AnzuFatalError,
|
|
128
128
|
ge as AnzuSystemsCommonAdmin,
|
|
129
129
|
Fe as AssetFileFailReason,
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
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
|
-
|
|
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
|
-
|
|
170
|
-
|
|
169
|
+
rs as apiFetchByIds,
|
|
170
|
+
os as apiFetchList,
|
|
171
171
|
ns as apiFetchListBatch,
|
|
172
172
|
ms as apiFetchOne,
|
|
173
173
|
As as apiUpdateOne,
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
174
|
+
us as arrayFlatten,
|
|
175
|
+
cs as arrayFromArgs,
|
|
176
|
+
ls as arrayItemToggle,
|
|
177
177
|
ps as arrayToString,
|
|
178
178
|
bs as arraysHaveSameElements,
|
|
179
|
-
|
|
180
|
-
|
|
179
|
+
ds as assetFileIsAudioFile,
|
|
180
|
+
Ts as assetFileIsDocumentFile,
|
|
181
181
|
Ss as assetFileIsImageFile,
|
|
182
182
|
gs as assetFileIsVideoFile,
|
|
183
183
|
Fs as axiosErrorResponseHasForbiddenOperationData,
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
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
|
-
|
|
192
|
-
Os as
|
|
193
|
-
hs as
|
|
194
|
-
Ps as
|
|
195
|
-
_s as
|
|
196
|
-
Ns as
|
|
197
|
-
Ls as
|
|
198
|
-
fs as
|
|
199
|
-
Vs as
|
|
200
|
-
zs as
|
|
201
|
-
ws as
|
|
202
|
-
Hs as
|
|
203
|
-
Ms as
|
|
204
|
-
vs as
|
|
205
|
-
js as
|
|
206
|
-
ks as
|
|
207
|
-
xs as
|
|
208
|
-
Gs as
|
|
209
|
-
Js as
|
|
210
|
-
Ws as
|
|
211
|
-
Qs as
|
|
212
|
-
Ks 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
|
-
it as
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
nt as
|
|
226
|
-
mt as
|
|
227
|
-
At as
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
pt as
|
|
232
|
-
bt as
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
St as
|
|
236
|
-
gt as
|
|
237
|
-
Ft as
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
It as
|
|
245
|
-
|
|
246
|
-
Ot as
|
|
247
|
-
ht as
|
|
248
|
-
Pt as
|
|
249
|
-
_t as
|
|
250
|
-
Nt as
|
|
251
|
-
Lt as
|
|
252
|
-
ft as
|
|
253
|
-
Vt as
|
|
254
|
-
zt as
|
|
255
|
-
wt as
|
|
256
|
-
Ht as
|
|
257
|
-
Mt as
|
|
258
|
-
vt as
|
|
259
|
-
jt as
|
|
260
|
-
kt as
|
|
261
|
-
xt as
|
|
262
|
-
Gt as
|
|
263
|
-
Jt as
|
|
264
|
-
Wt as
|
|
265
|
-
Qt as
|
|
266
|
-
Kt as
|
|
267
|
-
qt as
|
|
268
|
-
Xt as
|
|
269
|
-
Yt as
|
|
270
|
-
Zt as
|
|
271
|
-
$t as
|
|
272
|
-
ai as
|
|
273
|
-
ei as
|
|
274
|
-
si as
|
|
275
|
-
ti as
|
|
276
|
-
ii as
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
ni as
|
|
280
|
-
mi as
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
ci as
|
|
284
|
-
li as
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
bi as
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
Si as
|
|
291
|
-
gi as
|
|
292
|
-
Fi as
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
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
|