@anzusystems/common-admin 0.0.86 → 1.1.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/README.md CHANGED
@@ -8,7 +8,7 @@ yarn install
8
8
 
9
9
  ## Build library
10
10
 
11
- Build dist files.
11
+ Build lib files.
12
12
 
13
13
  ```shell
14
14
  yarn build
@@ -28,8 +28,9 @@ import type { VNodeProps } from 'vue';
28
28
 
29
29
  export declare const AActionCloseButton: DefineComponent<{
30
30
  routeName: {
31
- type: PropType<string>;
32
- required: true;
31
+ type: PropType<string | undefined>;
32
+ required: false;
33
+ default: undefined;
33
34
  };
34
35
  routeParams: {
35
36
  type: PropType<any>;
@@ -58,8 +59,9 @@ export declare const AActionCloseButton: DefineComponent<{
58
59
  };
59
60
  }, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
60
61
  routeName: {
61
- type: PropType<string>;
62
- required: true;
62
+ type: PropType<string | undefined>;
63
+ required: false;
64
+ default: undefined;
63
65
  };
64
66
  routeParams: {
65
67
  type: PropType<any>;
@@ -91,6 +93,7 @@ export declare const AActionCloseButton: DefineComponent<{
91
93
  size: number | undefined;
92
94
  buttonT: string | undefined;
93
95
  buttonClass: string | undefined;
96
+ routeName: string | undefined;
94
97
  routeParams: any;
95
98
  }, {}>;
96
99
 
@@ -2084,68 +2087,6 @@ export declare const AFilterWrapper: DefineComponent<{
2084
2087
  touched: boolean | undefined;
2085
2088
  }, {}>;
2086
2089
 
2087
- export declare const AFormBooleanToggle: DefineComponent<{
2088
- modelValue: {
2089
- type: PropType<any>;
2090
- required: false;
2091
- default: null;
2092
- };
2093
- required: {
2094
- type: PropType<boolean | undefined>;
2095
- required: false;
2096
- default: undefined;
2097
- };
2098
- label: {
2099
- type: PropType<string | undefined>;
2100
- required: false;
2101
- default: undefined;
2102
- };
2103
- dataCy: {
2104
- type: PropType<string | undefined>;
2105
- required: false;
2106
- default: undefined;
2107
- };
2108
- v: {
2109
- type: PropType<any>;
2110
- required: false;
2111
- default: null;
2112
- };
2113
- }, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
2114
- modelValue: {
2115
- type: PropType<any>;
2116
- required: false;
2117
- default: null;
2118
- };
2119
- required: {
2120
- type: PropType<boolean | undefined>;
2121
- required: false;
2122
- default: undefined;
2123
- };
2124
- label: {
2125
- type: PropType<string | undefined>;
2126
- required: false;
2127
- default: undefined;
2128
- };
2129
- dataCy: {
2130
- type: PropType<string | undefined>;
2131
- required: false;
2132
- default: undefined;
2133
- };
2134
- v: {
2135
- type: PropType<any>;
2136
- required: false;
2137
- default: null;
2138
- };
2139
- }>> & {
2140
- "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
2141
- }, {
2142
- required: boolean | undefined;
2143
- dataCy: string | undefined;
2144
- modelValue: any;
2145
- label: string | undefined;
2146
- v: any;
2147
- }, {}>;
2148
-
2149
2090
  export declare const AFormDatetimePicker: DefineComponent<{
2150
2091
  modelValue: {
2151
2092
  type: PropType<DatetimeUTCNullable | undefined>;
@@ -4044,7 +3985,7 @@ declare const commonConfig: {
4044
3985
  };
4045
3986
  };
4046
3987
 
4047
- export declare function createDatatableColumnsConfig(config: ColumnConfig[], columnsHidden: Ref<Array<string>>, system?: string | undefined, subject?: string | undefined, disableActions?: boolean, customPagination?: Pagination | undefined): {
3988
+ export declare function createDatatableColumnsConfig(config: ColumnConfig[], columnsHidden: Ref<Array<string>>, system?: string | undefined, subject?: string | undefined, disableActions?: boolean, customPagination?: Pagination | undefined, customI18n?: undefined | any): {
4048
3989
  columnsAll: {
4049
3990
  key: string;
4050
3991
  title?: string | undefined;
@@ -4651,6 +4592,20 @@ export declare const messagesEn: {
4651
4592
  generatedBySystem: string;
4652
4593
  };
4653
4594
  };
4595
+ time: {
4596
+ long: {
4597
+ remainingSeconds: string;
4598
+ remainingMinutes: string;
4599
+ remainingHours: string;
4600
+ remainingDays: string;
4601
+ };
4602
+ short: {
4603
+ remainingSeconds: string;
4604
+ remainingMinutes: string;
4605
+ remainingHours: string;
4606
+ remainingDays: string;
4607
+ };
4608
+ };
4654
4609
  };
4655
4610
  $vuetify: {
4656
4611
  badge: string;
@@ -5067,6 +5022,20 @@ export declare const messagesSk: {
5067
5022
  generatedBySystem: string;
5068
5023
  };
5069
5024
  };
5025
+ time: {
5026
+ long: {
5027
+ remainingSeconds: string;
5028
+ remainingMinutes: string;
5029
+ remainingHours: string;
5030
+ remainingDays: string;
5031
+ };
5032
+ short: {
5033
+ remainingSeconds: string;
5034
+ remainingMinutes: string;
5035
+ remainingHours: string;
5036
+ remainingDays: string;
5037
+ };
5038
+ };
5070
5039
  };
5071
5040
  $vuetify: {
5072
5041
  badge: string;
@@ -5640,6 +5609,11 @@ export declare function usePermissionGroupFactory(): {
5640
5609
  createPermissionGroup: () => PermissionGroup;
5641
5610
  };
5642
5611
 
5612
+ export declare function useRemainingTime(): {
5613
+ remainingTimeShort: (seconds: number) => string;
5614
+ remainingTimeLong: (seconds: number) => string;
5615
+ };
5616
+
5643
5617
  export declare function useTheme(): {
5644
5618
  settings: Readonly<Ref<ThemeSettings>>;
5645
5619
  theme: Readonly<Ref<Theme>>;
@@ -1,4 +1,4 @@
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";
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-ed78587a.js";
2
2
  import { useI18n as Bt } from "vue-i18n";
3
3
  import "vue";
4
4
  import "vuetify/lib/components/VChip/index.mjs";
@@ -10,7 +10,6 @@ import "vuetify/lib/components/VTextField/index.mjs";
10
10
  import "vuetify/lib/components/VTextarea/index.mjs";
11
11
  import "vuetify/lib/components/VBtn/index.mjs";
12
12
  import "vuetify/lib/components/VBtnToggle/index.mjs";
13
- import "vuetify/lib/components/VLabel/index.mjs";
14
13
  import "vuetify/lib/components/VList/index.mjs";
15
14
  import "vuetify/lib/components/VMenu/index.mjs";
16
15
  import "vuetify/lib/components/VTooltip/index.mjs";
@@ -25,6 +24,7 @@ import "@vuelidate/validators";
25
24
  import "vuetify/lib/components/VCheckbox/index.mjs";
26
25
  import "vuetify/lib/components/VAutocomplete/index.mjs";
27
26
  import "vuetify/lib/components/VSwitch/index.mjs";
27
+ import "vuetify/lib/components/VLabel/index.mjs";
28
28
  import "vuetify/lib/components/VSelect/index.mjs";
29
29
  import "vuetify/lib/components/VProgressCircular/index.mjs";
30
30
  import "vuetify/lib/components/VDivider/index.mjs";
@@ -75,167 +75,167 @@ export {
75
75
  Fa as AFilterSubmitButton,
76
76
  ya as AFilterValueObjectOptionsSelect,
77
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,
78
+ Ca as AFormDatetimePicker,
79
+ Da as AFormFlagDatetimePicker,
80
+ Ba as AFormRemoteAutocomplete,
81
+ Oa as AFormRemoteAutocompleteWithCached,
82
+ Ra as AFormRemoteCheckbox,
83
+ Pa as AFormRemoteSwitch,
84
+ Ua as AFormTextField,
85
+ _a as AFormTextarea,
86
+ ha as AFormValueObjectOptionsSelect,
87
+ La as AIconGroup,
88
+ Na as AJobDetailCommon,
89
+ Ia as AJobStatusChip,
90
+ Va as ALanguageSelect,
91
+ fa as ALogData,
92
+ wa as ALogLevelChip,
93
+ Ha as ALoginView,
94
+ za as ALogoutView,
95
+ va as ANotFoundView,
96
+ ja as APermissionGrantEditor,
97
+ ka as APermissionValueChip,
98
+ Ga as ARow,
99
+ Ma as ASystemBar,
100
+ xa as ASystemEntityScope,
101
+ Ja as ATableCopyIdButton,
102
+ Ka as ATableDetailButton,
103
+ Wa as ATableEditButton,
104
+ Qa as AThemeSelect,
105
+ qa as ATimeTrackingFields,
106
+ Xa as AUnauthorizedView,
107
+ Ya as AUserAndTimeTrackingFields,
108
+ Za as Acl,
109
+ $a as AnzuApiForbiddenError,
110
+ ae as AnzuApiForbiddenOperationError,
111
+ ee as AnzuApiResponseCodeError,
112
+ se as AnzuApiValidationError,
113
+ te as AnzuFatalError,
114
+ re as AnzuSystemsCommonAdmin,
115
+ oe as AvailableLanguagesSymbol,
116
+ ie as COMMON_CONFIG,
117
+ ne as DATETIME_MAX,
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,
228
227
  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,
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
239
  yt as useTheme,
240
240
  Et as useValidate,
241
241
  Ct as yearNow