@anzusystems/common-admin 0.0.85 → 0.0.86

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.
@@ -694,6 +694,51 @@ export declare const AAnzuUserAvatar: DefineComponent<{
694
694
  user: AnzuUserMinimal | null | undefined;
695
695
  }, {}>;
696
696
 
697
+ export declare const AAssetSelect: DefineComponent<{
698
+ maxCount: {
699
+ type: PropType<number>;
700
+ required: true;
701
+ };
702
+ minCount: {
703
+ type: PropType<number>;
704
+ required: true;
705
+ };
706
+ assetLicenceId: {
707
+ type: PropType<number | undefined>;
708
+ required: false;
709
+ default: undefined;
710
+ };
711
+ assetType: {
712
+ type: PropType<AssetType>;
713
+ required: true;
714
+ };
715
+ }, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("update:modelValue" | "onConfirm" | "onOpen" | "onClose")[], "update:modelValue" | "onConfirm" | "onOpen" | "onClose", VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
716
+ maxCount: {
717
+ type: PropType<number>;
718
+ required: true;
719
+ };
720
+ minCount: {
721
+ type: PropType<number>;
722
+ required: true;
723
+ };
724
+ assetLicenceId: {
725
+ type: PropType<number | undefined>;
726
+ required: false;
727
+ default: undefined;
728
+ };
729
+ assetType: {
730
+ type: PropType<AssetType>;
731
+ required: true;
732
+ };
733
+ }>> & {
734
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
735
+ onOnConfirm?: ((...args: any[]) => any) | undefined;
736
+ onOnOpen?: ((...args: any[]) => any) | undefined;
737
+ onOnClose?: ((...args: any[]) => any) | undefined;
738
+ }, {
739
+ assetLicenceId: number | undefined;
740
+ }, {}>;
741
+
697
742
  export declare const AAvatarColorPicker: DefineComponent<{
698
743
  modelValue: {
699
744
  type: PropType<string>;
@@ -3559,6 +3604,14 @@ export declare const arraysHaveSameElements: <T>(array1: T[], array2: T[]) => bo
3559
3604
 
3560
3605
  export declare const arrayToString: (values: Array<string | number>, separator?: string) => string;
3561
3606
 
3607
+ declare enum AssetType {
3608
+ Image = "image",
3609
+ Audio = "audio",
3610
+ Video = "video",
3611
+ Document = "document",
3612
+ Default = "image"
3613
+ }
3614
+
3562
3615
  export declare const ASystemBar: DefineComponent<{
3563
3616
  currentVersion: {
3564
3617
  type: PropType<string>;
@@ -4555,6 +4608,49 @@ export declare const messagesEn: {
4555
4608
  deleteConfirm: string;
4556
4609
  };
4557
4610
  };
4611
+ assetSelect: {
4612
+ model: {
4613
+ id: string;
4614
+ texts: {
4615
+ displayTitle: string;
4616
+ };
4617
+ mainFile: {
4618
+ fileAttributes: {
4619
+ mimeType: string;
4620
+ size: string;
4621
+ };
4622
+ };
4623
+ };
4624
+ meta: {
4625
+ table: {
4626
+ image: string;
4627
+ };
4628
+ grid: {
4629
+ masonry: string;
4630
+ thumbnail: string;
4631
+ table: string;
4632
+ };
4633
+ filter: {
4634
+ toggle: string;
4635
+ };
4636
+ controls: {
4637
+ loadMore: string;
4638
+ confirm: string;
4639
+ };
4640
+ texts: {
4641
+ title: string;
4642
+ noItemsFound: string;
4643
+ pickExactCount: string;
4644
+ pickRangeCount: string;
4645
+ };
4646
+ };
4647
+ filter: {
4648
+ text: string;
4649
+ described: string;
4650
+ visible: string;
4651
+ generatedBySystem: string;
4652
+ };
4653
+ };
4558
4654
  };
4559
4655
  $vuetify: {
4560
4656
  badge: string;
@@ -4928,6 +5024,49 @@ export declare const messagesSk: {
4928
5024
  deleteConfirm: string;
4929
5025
  };
4930
5026
  };
5027
+ assetSelect: {
5028
+ model: {
5029
+ id: string;
5030
+ texts: {
5031
+ displayTitle: string;
5032
+ };
5033
+ mainFile: {
5034
+ fileAttributes: {
5035
+ mimeType: string;
5036
+ size: string;
5037
+ };
5038
+ };
5039
+ };
5040
+ meta: {
5041
+ table: {
5042
+ image: string;
5043
+ };
5044
+ grid: {
5045
+ masonry: string;
5046
+ thumbnail: string;
5047
+ table: string;
5048
+ };
5049
+ filter: {
5050
+ toggle: string;
5051
+ };
5052
+ controls: {
5053
+ loadMore: string;
5054
+ confirm: string;
5055
+ };
5056
+ texts: {
5057
+ title: string;
5058
+ noItemsFound: string;
5059
+ pickExactCount: string;
5060
+ pickRangeCount: string;
5061
+ };
5062
+ };
5063
+ filter: {
5064
+ text: string;
5065
+ described: string;
5066
+ visible: string;
5067
+ generatedBySystem: string;
5068
+ };
5069
+ };
4931
5070
  };
4932
5071
  $vuetify: {
4933
5072
  badge: string;
@@ -5143,6 +5282,10 @@ export declare type PluginOptions<T extends AclValue = AclValue> = {
5143
5282
  default: LanguageCode;
5144
5283
  };
5145
5284
  customAclResolver?: CustomAclResolver<T>;
5285
+ coreDam?: {
5286
+ client: () => AxiosInstance;
5287
+ defaultLicenceId?: number;
5288
+ };
5146
5289
  };
5147
5290
 
5148
5291
  export declare const prettyBytes: (bytes: number, decimals?: number) => string;
@@ -1,5 +1,5 @@
1
- import { Q as V, R as f, S as w, T as H, U as z, V as v, J as k, d as G, a7 as M, a8 as j, e as x, a2 as J, I as K, _ as W, a as Q, c as q, N as X, F as Y, a9 as Z, C as $, D as aa, B as ea, z as sa, E as ta, K as ra, W as oa, A as ia, x as na, y as Aa, u as ma, Z as ba, v as la, X as pa, t as ua, Y as ca, w as Ta, s as da, r as Sa, l as ga, m as Fa, n as ya, aa as Ea, o as Ca, p as Da, j as Ba, k as Oa, q as Ra, O as Pa, ab as Ua, H as _a, a4 as ha, G as La, a6 as Na, ac as Ia, ad as Va, af as fa, f as wa, h as Ha, b as za, a5 as va, i as ka, $ as Ga, a0 as Ma, a1 as ja, a3 as xa, L as Ja, ae as Ka, P as Wa, M as Qa, c5 as qa, ca as Xa, c7 as Ya, cd as Za, cf as $a, cg as ae, bR as ee, c0 as se, b9 as te, b8 as re, bS as oe, at as ie, av as ne, bW as Ae, bU as me, bY as be, bV as le, bT as pe, bX as ue, bZ as ce, aB as Te, aC as de, ax as Se, b$ as ge, b_ as Fe, bQ as ye, bP as Ee, ap as Ce, bB as De, bC as Be, bD as Oe, bE as Re, bF as Pe, bG as Ue, bH as _e, bv as he, bu as Le, bs as Ne, bt as Ie, bw as Ve, c9 as fe, cc as we, c4 as He, br as ze, by as ve, bx as ke, aH as Ge, am as Me, bn as je, bg as xe, bi as Je, bl as Ke, bb as We, be as Qe, bd as qe, bf as Xe, bc as Ye, bj as Ze, bh as $e, ao as as, bz as es, bA as ss, c2 as ts, c3 as rs, c8 as os, c6 as is, cb as ns, ce as As, aM as ms, aO as bs, aA as ls, aS as ps, aP as us, aI as cs, aL as Ts, aJ as ds, aN as Ss, aT as gs, aQ as Fs, aV as ys, aK as Es, az as Cs, aU as Ds, aR as Bs, bp as Os, ci as Rs, aj as Ps, bN as Us, bO as _s, ar as hs, bq as Ls, a_ as Ns, aZ as Is, aX as Vs, aW as fs, aY as ws, bo as Hs, b5 as zs, b2 as vs, b0 as ks, a$ as Gs, b4 as Ms, b1 as js, b3 as xs, b6 as Js, b7 as Ks, bm as Ws, ba as Qs, bM as qs, ak as Xs, aE as Ys, bI as Zs, aD as $s, ch as at, al as et, ai as st, au as tt, aw as rt, bJ as ot, bK as it, bL as nt, aq as At, ay as mt, as as bt, ag as lt, ah as pt, aF as ut, aG as ct, an as Tt, c1 as dt, bk as St } from "./lib-36dd4e9a.js";
2
- import { useI18n as Ft } from "vue-i18n";
1
+ import { Q as z, R as v, S as j, T as k, U as G, V as M, J as x, d as J, a7 as K, ac as W, a8 as Q, e as q, a2 as X, I as Y, _ as Z, a as $, c as aa, N as ea, F as sa, a9 as ta, C as ra, D as oa, B as ia, z as na, E as Aa, K as ma, W as ba, A as la, x as pa, y as ua, u as ca, Z as Ta, v as da, X as Sa, t as ga, Y as Fa, w as ya, s as Ea, r as Ca, l as Da, m as Ba, n as Oa, aa as Ra, o as Pa, p as Ua, j as _a, k as ha, q as La, O as Na, ab as Ia, H as Va, a4 as fa, G as wa, a6 as Ha, ad as za, ae as va, ag as ja, f as ka, h as Ga, b as Ma, a5 as xa, i as Ja, $ as Ka, a0 as Wa, a1 as Qa, a3 as qa, L as Xa, af as Ya, P as Za, M as $a, c6 as ae, cb as ee, c8 as se, ce as te, cg as re, ch as oe, bS as ie, c1 as ne, ba as Ae, b9 as me, bT as be, au as le, aw as pe, bX as ue, bV as ce, bZ as Te, bW as de, bU as Se, bY as ge, b_ as Fe, aC as ye, aD as Ee, ay as Ce, c0 as De, b$ as Be, bR as Oe, bQ as Re, aq as Pe, bC as Ue, bD as _e, bE as he, bF as Le, bG as Ne, bH as Ie, bI as Ve, bw as fe, bv as we, bt as He, bu as ze, bx as ve, ca as je, cd as ke, c5 as Ge, bs as Me, bz as xe, by as Je, aI as Ke, an as We, bo as Qe, bh as qe, bj as Xe, bm as Ye, bc as Ze, bf as $e, be as as, bg as es, bd as ss, bk as ts, bi as rs, ap as os, bA as is, bB as ns, c3 as As, c4 as ms, c9 as bs, c7 as ls, cc as ps, cf as us, aN as cs, aP as Ts, aB as ds, aT as Ss, aQ as gs, aJ as Fs, aM as ys, aK as Es, aO as Cs, aU as Ds, aR as Bs, aW as Os, aL as Rs, aA as Ps, aV as Us, aS as _s, bq as hs, cj as Ls, ak as Ns, bO as Is, bP as Vs, as as fs, br as ws, a$ as Hs, a_ as zs, aY as vs, aX as js, aZ as ks, bp as Gs, b6 as Ms, b3 as xs, b1 as Js, b0 as Ks, b5 as Ws, b2 as Qs, b4 as qs, b7 as Xs, b8 as Ys, bn as Zs, bb as $s, bN as at, al as et, aF as st, bJ as tt, aE as rt, ci as ot, am as it, aj as nt, av as At, ax as mt, bK as bt, bL as lt, bM as pt, ar as ut, az as ct, at as Tt, ah as dt, ai as St, aG as gt, aH as Ft, ao as yt, c2 as Et, bl as Ct } from "./lib-f4a089fd.js";
2
+ import { useI18n as Bt } 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";
@@ -31,208 +31,213 @@ import "vuetify/lib/components/VDivider/index.mjs";
31
31
  import "vuetify/lib/components/VAvatar/index.mjs";
32
32
  import "vuetify/lib/components/VAppBar/index.mjs";
33
33
  import "vuetify/lib/components/VColorPicker/index.mjs";
34
+ import "vuetify/lib/components/VTable/index.mjs";
35
+ import "pinia";
36
+ import "vuetify/lib/components/VForm/index.mjs";
37
+ import "vuetify/lib/directives/index.mjs";
34
38
  import "vuetify/components";
35
39
  export {
36
- V as AActionCloseButton,
37
- f as AActionCreateButton,
38
- w as AActionDeleteButton,
39
- H as AActionEditButton,
40
- z as AActionSaveAndCloseButton,
41
- v as AActionSaveButton,
42
- k as AAdminSwitcher,
43
- G as AAlerts,
44
- M as AAnzuUserAvatar,
45
- j as AAvatarColorPicker,
46
- x as ABooleanValue,
47
- J as ABtnSplit,
48
- K as ACachedChip,
49
- W as ACard,
50
- Q as ACardLoader,
51
- q as AChipNoLink,
52
- X as ACopyText,
53
- Y as ACreateDialog,
54
- Z as ACurrentUserDropdown,
55
- $ as ADatatableConfigButton,
56
- aa as ADatatableOrdering,
57
- ea as ADatatablePagination,
58
- sa as ADatetime,
59
- ta as ADialogToolbar,
60
- ra as AEmptyRouterView,
61
- oa as AFilterAdvancedButton,
62
- ia as AFilterBooleanGroup,
63
- na as AFilterBooleanSelect,
64
- Aa as AFilterDatetimePicker,
65
- ma as AFilterInteger,
66
- ba as AFilterMixed,
67
- la as AFilterRemoteAutocomplete,
68
- pa as AFilterResetButton,
69
- ua as AFilterString,
70
- ca as AFilterSubmitButton,
71
- Ta as AFilterValueObjectOptionsSelect,
72
- da as AFilterWrapper,
73
- Sa as AFormBooleanToggle,
74
- ga as AFormDatetimePicker,
75
- Fa as AFormFlagDatetimePicker,
76
- ya as AFormRemoteAutocomplete,
77
- Ea as AFormRemoteAutocompleteWithCached,
78
- Ca as AFormRemoteCheckbox,
79
- Da as AFormRemoteSwitch,
80
- Ba as AFormTextField,
81
- Oa as AFormTextarea,
82
- Ra as AFormValueObjectOptionsSelect,
83
- Pa as AIconGroup,
84
- Ua as AJobDetailCommon,
85
- _a as AJobStatusChip,
86
- ha as ALanguageSelect,
87
- La as ALogData,
88
- Na as ALogLevelChip,
89
- Ia as ALoginView,
90
- Va as ALogoutView,
91
- fa as ANotFoundView,
92
- wa as APermissionGrantEditor,
93
- Ha as APermissionValueChip,
94
- za as ARow,
95
- va as ASystemBar,
96
- ka as ASystemEntityScope,
97
- Ga as ATableCopyIdButton,
98
- Ma as ATableDetailButton,
99
- ja as ATableEditButton,
100
- xa as AThemeSelect,
101
- Ja as ATimeTrackingFields,
102
- Ka as AUnauthorizedView,
103
- Wa as AUserAndTimeTrackingFields,
104
- Qa as Acl,
105
- qa as AnzuApiForbiddenError,
106
- Xa as AnzuApiForbiddenOperationError,
107
- Ya as AnzuApiResponseCodeError,
108
- Za as AnzuApiValidationError,
109
- $a as AnzuFatalError,
110
- ae as AnzuSystemsCommonAdmin,
111
- ee as AvailableLanguagesSymbol,
112
- se as COMMON_CONFIG,
113
- te as DATETIME_MAX,
114
- re as DATETIME_MIN,
115
- oe as DefaultLanguageSymbol,
116
- ie as Grant,
117
- ne as GrantOrigin,
118
- Ae as HTTP_STATUS_BAD_REQUEST,
119
- me as HTTP_STATUS_CREATED,
120
- be as HTTP_STATUS_FORBIDDEN,
121
- le as HTTP_STATUS_NO_CONTENT,
122
- pe as HTTP_STATUS_OK,
123
- ue as HTTP_STATUS_UNAUTHORIZED,
124
- ce as HTTP_STATUS_UNPROCESSABLE_ENTITY,
125
- Te as JOB_RESOURCE_USER_DATA_DELETE,
126
- de as JobStatus,
127
- Se as LogLevel,
128
- ge as NEW_LINE_MARK,
129
- Fe as ROLE_SUPER_ADMIN,
130
- ye as SubjectScopeSymbol,
131
- Ee as SystemScopeSymbol,
132
- Ce as Theme,
133
- De as apiAnyRequest,
134
- Be as apiCreateOne,
135
- Oe as apiDeleteOne,
136
- Re as apiFetchByIds,
137
- Pe as apiFetchList,
138
- Ue as apiFetchOne,
139
- _e as apiUpdateOne,
140
- he as arrayFlatten,
141
- Le as arrayFromArgs,
142
- Ne as arrayItemToggle,
143
- Ie as arrayToString,
144
- Ve as arraysHaveSameElements,
145
- fe as axiosErrorResponseHasForbiddenOperationData,
146
- we as axiosErrorResponseHasValidationData,
147
- He as axiosErrorResponseIsForbidden,
148
- ze as booleanToInteger,
149
- ve as browserHistoryReplaceUrlByRouter,
150
- ke as browserHistoryReplaceUrlByString,
151
- Ge as cloneDeep,
152
- Me as createDatatableColumnsConfig,
153
- je as dateDiff,
154
- xe as dateModifyMinutes,
155
- Je as dateNow,
156
- Ke as datePretty,
157
- We as dateTimeEndOfDay,
158
- Qe as dateTimeFriendly,
159
- qe as dateTimeNow,
160
- Xe as dateTimePretty,
161
- Ye as dateTimeStartOfDay,
162
- Ze as dateTimeToDate,
163
- $e as dateToUtc,
164
- as as defineCached,
165
- es as eventClickBlur,
166
- ss as generateUUIDv1,
167
- ts as i18n,
168
- rs as isAnzuApiForbiddenError,
169
- os as isAnzuApiForbiddenOperationError,
170
- is as isAnzuApiResponseCodeError,
171
- ns as isAnzuApiValidationError,
172
- As as isAnzuFatalError,
173
- ms as isArray,
174
- bs as isBoolean,
175
- ls as isCreatedByAware,
176
- ps as isDefined,
177
- us as isDocId,
178
- cs as isEmpty,
179
- Ts as isEmptyArray,
180
- ds as isEmptyObject,
181
- Ss as isFunction,
182
- gs as isInt,
183
- Fs as isNull,
184
- ys as isNumber,
185
- Es as isObject,
186
- Cs as isOwnerAware,
187
- Ds as isString,
188
- Bs as isUndefined,
189
- Os as isValidHTTPStatus,
190
- Rs as loadCommonFonts,
191
- Ps as makeFilterHelper,
192
- Us as messagesEn,
193
- _s as messagesSk,
194
- hs as modifyLanguageSettings,
195
- Ls as numberToString,
196
- Ns as objectDeepFreeze,
197
- Is as objectDeletePropertyByPath,
198
- Vs as objectGetValueByPath,
199
- fs as objectGetValues,
200
- ws as objectSetValueByPath,
201
- Hs as prettyBytes,
202
- zs as stringNormalizeForSlotName,
203
- vs as stringSplitOnFirstOccurrence,
204
- ks as stringToFloat,
205
- Gs as stringToInt,
206
- Ms as stringToKebabCase,
207
- js as stringToSlug,
208
- xs as stringTrimLength,
209
- Js as stringUrlTemplateReplace,
210
- Ks as stringUrlTemplateReplaceVueRouter,
211
- Ws as timePretty,
212
- Qs as timestampCurrent,
213
- qs as useAcl,
214
- Xs as useAlerts,
215
- Ys as useAnzuUserFactory,
216
- Zs as useApiQueryBuilder,
217
- $s as useCommonJobFactory,
218
- at as useCommonVuetifyConfig,
219
- et as useErrors,
220
- st as useFilterHelpers,
221
- tt as useGrant,
222
- rt as useGrantOrigin,
223
- Ft as useI18n,
224
- ot as useJobApi,
225
- it as useJobBaseResource,
226
- nt as useJobStatus,
227
- At as useLanguageSettings,
228
- mt as useLogLevel,
229
- bt as useLoginStatus,
230
- lt as usePagination,
231
- pt as usePaginationAutoHide,
232
- ut as usePermissionConfigFactory,
233
- ct as usePermissionGroupFactory,
234
- Tt as useTheme,
235
- dt as useValidate,
236
- St as yearNow
40
+ z as AActionCloseButton,
41
+ v as AActionCreateButton,
42
+ j as AActionDeleteButton,
43
+ k as AActionEditButton,
44
+ G as AActionSaveAndCloseButton,
45
+ M as AActionSaveButton,
46
+ x as AAdminSwitcher,
47
+ J as AAlerts,
48
+ K as AAnzuUserAvatar,
49
+ W as AAssetSelect,
50
+ Q as AAvatarColorPicker,
51
+ q as ABooleanValue,
52
+ X as ABtnSplit,
53
+ Y as ACachedChip,
54
+ Z as ACard,
55
+ $ as ACardLoader,
56
+ aa as AChipNoLink,
57
+ ea as ACopyText,
58
+ sa as ACreateDialog,
59
+ ta as ACurrentUserDropdown,
60
+ ra as ADatatableConfigButton,
61
+ oa as ADatatableOrdering,
62
+ ia as ADatatablePagination,
63
+ na as ADatetime,
64
+ Aa as ADialogToolbar,
65
+ ma as AEmptyRouterView,
66
+ ba as AFilterAdvancedButton,
67
+ la as AFilterBooleanGroup,
68
+ pa as AFilterBooleanSelect,
69
+ ua as AFilterDatetimePicker,
70
+ ca as AFilterInteger,
71
+ Ta as AFilterMixed,
72
+ da as AFilterRemoteAutocomplete,
73
+ Sa as AFilterResetButton,
74
+ ga as AFilterString,
75
+ Fa as AFilterSubmitButton,
76
+ ya as AFilterValueObjectOptionsSelect,
77
+ Ea as AFilterWrapper,
78
+ Ca as AFormBooleanToggle,
79
+ Da as AFormDatetimePicker,
80
+ Ba as AFormFlagDatetimePicker,
81
+ Oa as AFormRemoteAutocomplete,
82
+ Ra as AFormRemoteAutocompleteWithCached,
83
+ Pa as AFormRemoteCheckbox,
84
+ Ua as AFormRemoteSwitch,
85
+ _a as AFormTextField,
86
+ ha as AFormTextarea,
87
+ La as AFormValueObjectOptionsSelect,
88
+ Na as AIconGroup,
89
+ Ia as AJobDetailCommon,
90
+ Va as AJobStatusChip,
91
+ fa as ALanguageSelect,
92
+ wa as ALogData,
93
+ Ha as ALogLevelChip,
94
+ za as ALoginView,
95
+ va as ALogoutView,
96
+ ja as ANotFoundView,
97
+ ka as APermissionGrantEditor,
98
+ Ga as APermissionValueChip,
99
+ Ma as ARow,
100
+ xa as ASystemBar,
101
+ Ja as ASystemEntityScope,
102
+ Ka as ATableCopyIdButton,
103
+ Wa as ATableDetailButton,
104
+ Qa as ATableEditButton,
105
+ qa as AThemeSelect,
106
+ Xa as ATimeTrackingFields,
107
+ Ya as AUnauthorizedView,
108
+ Za as AUserAndTimeTrackingFields,
109
+ $a as Acl,
110
+ ae as AnzuApiForbiddenError,
111
+ ee as AnzuApiForbiddenOperationError,
112
+ se as AnzuApiResponseCodeError,
113
+ te as AnzuApiValidationError,
114
+ re as AnzuFatalError,
115
+ oe as AnzuSystemsCommonAdmin,
116
+ ie as AvailableLanguagesSymbol,
117
+ ne as COMMON_CONFIG,
118
+ Ae as DATETIME_MAX,
119
+ me as DATETIME_MIN,
120
+ be as DefaultLanguageSymbol,
121
+ le as Grant,
122
+ pe as GrantOrigin,
123
+ ue as HTTP_STATUS_BAD_REQUEST,
124
+ ce as HTTP_STATUS_CREATED,
125
+ Te as HTTP_STATUS_FORBIDDEN,
126
+ de as HTTP_STATUS_NO_CONTENT,
127
+ Se as HTTP_STATUS_OK,
128
+ ge as HTTP_STATUS_UNAUTHORIZED,
129
+ Fe as HTTP_STATUS_UNPROCESSABLE_ENTITY,
130
+ ye as JOB_RESOURCE_USER_DATA_DELETE,
131
+ Ee as JobStatus,
132
+ Ce as LogLevel,
133
+ De as NEW_LINE_MARK,
134
+ Be as ROLE_SUPER_ADMIN,
135
+ Oe as SubjectScopeSymbol,
136
+ Re as SystemScopeSymbol,
137
+ Pe as Theme,
138
+ Ue as apiAnyRequest,
139
+ _e as apiCreateOne,
140
+ he as apiDeleteOne,
141
+ Le as apiFetchByIds,
142
+ Ne as apiFetchList,
143
+ Ie as apiFetchOne,
144
+ Ve as apiUpdateOne,
145
+ fe as arrayFlatten,
146
+ we as arrayFromArgs,
147
+ He as arrayItemToggle,
148
+ ze as arrayToString,
149
+ ve as arraysHaveSameElements,
150
+ je as axiosErrorResponseHasForbiddenOperationData,
151
+ ke as axiosErrorResponseHasValidationData,
152
+ Ge as axiosErrorResponseIsForbidden,
153
+ Me as booleanToInteger,
154
+ xe as browserHistoryReplaceUrlByRouter,
155
+ Je as browserHistoryReplaceUrlByString,
156
+ Ke as cloneDeep,
157
+ We as createDatatableColumnsConfig,
158
+ Qe as dateDiff,
159
+ qe as dateModifyMinutes,
160
+ Xe as dateNow,
161
+ Ye as datePretty,
162
+ Ze as dateTimeEndOfDay,
163
+ $e as dateTimeFriendly,
164
+ as as dateTimeNow,
165
+ es as dateTimePretty,
166
+ ss as dateTimeStartOfDay,
167
+ ts as dateTimeToDate,
168
+ rs as dateToUtc,
169
+ os as defineCached,
170
+ is as eventClickBlur,
171
+ ns as generateUUIDv1,
172
+ As as i18n,
173
+ ms as isAnzuApiForbiddenError,
174
+ bs as isAnzuApiForbiddenOperationError,
175
+ ls as isAnzuApiResponseCodeError,
176
+ ps as isAnzuApiValidationError,
177
+ us as isAnzuFatalError,
178
+ cs as isArray,
179
+ Ts as isBoolean,
180
+ ds as isCreatedByAware,
181
+ Ss as isDefined,
182
+ gs as isDocId,
183
+ Fs as isEmpty,
184
+ ys as isEmptyArray,
185
+ Es as isEmptyObject,
186
+ Cs as isFunction,
187
+ Ds as isInt,
188
+ Bs as isNull,
189
+ Os as isNumber,
190
+ Rs as isObject,
191
+ Ps as isOwnerAware,
192
+ Us as isString,
193
+ _s as isUndefined,
194
+ hs as isValidHTTPStatus,
195
+ Ls as loadCommonFonts,
196
+ Ns as makeFilterHelper,
197
+ Is as messagesEn,
198
+ Vs as messagesSk,
199
+ fs as modifyLanguageSettings,
200
+ ws as numberToString,
201
+ Hs as objectDeepFreeze,
202
+ zs as objectDeletePropertyByPath,
203
+ vs as objectGetValueByPath,
204
+ js as objectGetValues,
205
+ ks as objectSetValueByPath,
206
+ Gs as prettyBytes,
207
+ Ms as stringNormalizeForSlotName,
208
+ xs as stringSplitOnFirstOccurrence,
209
+ Js as stringToFloat,
210
+ Ks as stringToInt,
211
+ Ws as stringToKebabCase,
212
+ Qs as stringToSlug,
213
+ qs as stringTrimLength,
214
+ Xs as stringUrlTemplateReplace,
215
+ Ys as stringUrlTemplateReplaceVueRouter,
216
+ Zs as timePretty,
217
+ $s as timestampCurrent,
218
+ at as useAcl,
219
+ et as useAlerts,
220
+ st as useAnzuUserFactory,
221
+ tt as useApiQueryBuilder,
222
+ rt as useCommonJobFactory,
223
+ ot as useCommonVuetifyConfig,
224
+ it as useErrors,
225
+ nt as useFilterHelpers,
226
+ At as useGrant,
227
+ mt as useGrantOrigin,
228
+ Bt as useI18n,
229
+ bt as useJobApi,
230
+ lt as useJobBaseResource,
231
+ pt as useJobStatus,
232
+ ut as useLanguageSettings,
233
+ ct as useLogLevel,
234
+ Tt as useLoginStatus,
235
+ dt as usePagination,
236
+ St as usePaginationAutoHide,
237
+ gt as usePermissionConfigFactory,
238
+ Ft as usePermissionGroupFactory,
239
+ yt as useTheme,
240
+ Et as useValidate,
241
+ Ct as yearNow
237
242
  };
238
243
  //# sourceMappingURL=common-admin.es.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"common-admin.es.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
1
+ {"version":3,"file":"common-admin.es.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}