@anzusystems/common-admin 0.0.22 → 0.0.25
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 +114 -158
- package/dist/common-admin.es.js +3360 -4495
- package/dist/common-admin.es.js.map +1 -1
- package/dist/style.css +1 -1
- package/package.json +4 -4
|
@@ -1217,36 +1217,16 @@ export declare const AFormDatetimePicker: DefineComponent<{
|
|
|
1217
1217
|
required: false;
|
|
1218
1218
|
default: null;
|
|
1219
1219
|
};
|
|
1220
|
-
prependIcon: {
|
|
1221
|
-
type: PropType<string | undefined>;
|
|
1222
|
-
required: false;
|
|
1223
|
-
default: undefined;
|
|
1224
|
-
};
|
|
1225
|
-
appendIcon: {
|
|
1226
|
-
type: PropType<string | undefined>;
|
|
1227
|
-
required: false;
|
|
1228
|
-
default: undefined;
|
|
1229
|
-
};
|
|
1230
1220
|
dataCy: {
|
|
1231
1221
|
type: PropType<string | undefined>;
|
|
1232
1222
|
required: false;
|
|
1233
1223
|
default: undefined;
|
|
1234
1224
|
};
|
|
1235
|
-
|
|
1225
|
+
clearable: {
|
|
1236
1226
|
type: PropType<boolean | undefined>;
|
|
1237
1227
|
required: false;
|
|
1238
1228
|
default: boolean;
|
|
1239
1229
|
};
|
|
1240
|
-
type: {
|
|
1241
|
-
type: PropType<string | undefined>;
|
|
1242
|
-
required: false;
|
|
1243
|
-
default: string;
|
|
1244
|
-
};
|
|
1245
|
-
step: {
|
|
1246
|
-
type: PropType<number | undefined>;
|
|
1247
|
-
required: false;
|
|
1248
|
-
default: undefined;
|
|
1249
|
-
};
|
|
1250
1230
|
}, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("update:modelValue" | "click:append" | "blur")[], "update:modelValue" | "click:append" | "blur", VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
|
|
1251
1231
|
modelValue: {
|
|
1252
1232
|
type: PropType<DatetimeUTCNullable | undefined>;
|
|
@@ -1272,51 +1252,27 @@ export declare const AFormDatetimePicker: DefineComponent<{
|
|
|
1272
1252
|
required: false;
|
|
1273
1253
|
default: null;
|
|
1274
1254
|
};
|
|
1275
|
-
prependIcon: {
|
|
1276
|
-
type: PropType<string | undefined>;
|
|
1277
|
-
required: false;
|
|
1278
|
-
default: undefined;
|
|
1279
|
-
};
|
|
1280
|
-
appendIcon: {
|
|
1281
|
-
type: PropType<string | undefined>;
|
|
1282
|
-
required: false;
|
|
1283
|
-
default: undefined;
|
|
1284
|
-
};
|
|
1285
1255
|
dataCy: {
|
|
1286
1256
|
type: PropType<string | undefined>;
|
|
1287
1257
|
required: false;
|
|
1288
1258
|
default: undefined;
|
|
1289
1259
|
};
|
|
1290
|
-
|
|
1260
|
+
clearable: {
|
|
1291
1261
|
type: PropType<boolean | undefined>;
|
|
1292
1262
|
required: false;
|
|
1293
1263
|
default: boolean;
|
|
1294
1264
|
};
|
|
1295
|
-
type: {
|
|
1296
|
-
type: PropType<string | undefined>;
|
|
1297
|
-
required: false;
|
|
1298
|
-
default: string;
|
|
1299
|
-
};
|
|
1300
|
-
step: {
|
|
1301
|
-
type: PropType<number | undefined>;
|
|
1302
|
-
required: false;
|
|
1303
|
-
default: undefined;
|
|
1304
|
-
};
|
|
1305
1265
|
}>> & {
|
|
1306
1266
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
1307
1267
|
"onClick:append"?: ((...args: any[]) => any) | undefined;
|
|
1308
1268
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
1309
1269
|
}, {
|
|
1310
1270
|
required: boolean | undefined;
|
|
1311
|
-
type: string | undefined;
|
|
1312
1271
|
dataCy: string | undefined;
|
|
1313
1272
|
label: string | undefined;
|
|
1314
1273
|
errorMessage: string | undefined;
|
|
1315
1274
|
v: any;
|
|
1316
|
-
|
|
1317
|
-
appendIcon: string | undefined;
|
|
1318
|
-
hideLabel: boolean | undefined;
|
|
1319
|
-
step: number | undefined;
|
|
1275
|
+
clearable: boolean | undefined;
|
|
1320
1276
|
}>;
|
|
1321
1277
|
|
|
1322
1278
|
export declare const AFormRemoteAutocomplete: DefineComponent<{
|
|
@@ -1496,8 +1452,8 @@ export declare const AFormRemoteAutocomplete: DefineComponent<{
|
|
|
1496
1452
|
errorMessage: string | undefined;
|
|
1497
1453
|
v: any;
|
|
1498
1454
|
hideLabel: boolean | undefined;
|
|
1499
|
-
multiple: boolean | undefined;
|
|
1500
1455
|
clearable: boolean | undefined;
|
|
1456
|
+
multiple: boolean | undefined;
|
|
1501
1457
|
hideDetails: boolean | undefined;
|
|
1502
1458
|
filterByField: string | undefined;
|
|
1503
1459
|
disableInitFetch: boolean | undefined;
|
|
@@ -1866,8 +1822,8 @@ export declare const AFormValueObjectOptionsSelect: DefineComponent<{
|
|
|
1866
1822
|
errorMessage: string | undefined;
|
|
1867
1823
|
v: any;
|
|
1868
1824
|
hideLabel: boolean | undefined;
|
|
1869
|
-
multiple: boolean | undefined;
|
|
1870
1825
|
clearable: boolean | undefined;
|
|
1826
|
+
multiple: boolean | undefined;
|
|
1871
1827
|
hideDetails: boolean | undefined;
|
|
1872
1828
|
}>;
|
|
1873
1829
|
|
|
@@ -2749,97 +2705,6 @@ export declare interface MakeFilterOptions<T = any> {
|
|
|
2749
2705
|
}
|
|
2750
2706
|
|
|
2751
2707
|
export declare const messagesEn: {
|
|
2752
|
-
validations: {
|
|
2753
|
-
api: {
|
|
2754
|
-
error_field_length_min: string;
|
|
2755
|
-
error_field_length_max: string;
|
|
2756
|
-
error_field_not_unique: string;
|
|
2757
|
-
error_compromised_password: string;
|
|
2758
|
-
};
|
|
2759
|
-
js: {
|
|
2760
|
-
required: string;
|
|
2761
|
-
minLength: string;
|
|
2762
|
-
maxLength: string;
|
|
2763
|
-
email: string;
|
|
2764
|
-
stringArrayItemLength: string;
|
|
2765
|
-
};
|
|
2766
|
-
};
|
|
2767
|
-
$vuetify: {
|
|
2768
|
-
badge: string;
|
|
2769
|
-
close: string;
|
|
2770
|
-
dataIterator: {
|
|
2771
|
-
noResultsText: string;
|
|
2772
|
-
loadingText: string;
|
|
2773
|
-
};
|
|
2774
|
-
dataTable: {
|
|
2775
|
-
itemsPerPageText: string;
|
|
2776
|
-
ariaLabel: {
|
|
2777
|
-
sortDescending: string;
|
|
2778
|
-
sortAscending: string;
|
|
2779
|
-
sortNone: string;
|
|
2780
|
-
activateNone: string;
|
|
2781
|
-
activateDescending: string;
|
|
2782
|
-
activateAscending: string;
|
|
2783
|
-
};
|
|
2784
|
-
sortBy: string;
|
|
2785
|
-
};
|
|
2786
|
-
dataFooter: {
|
|
2787
|
-
itemsPerPageText: string;
|
|
2788
|
-
itemsPerPageAll: string;
|
|
2789
|
-
nextPage: string;
|
|
2790
|
-
prevPage: string;
|
|
2791
|
-
firstPage: string;
|
|
2792
|
-
lastPage: string;
|
|
2793
|
-
pageText: string;
|
|
2794
|
-
};
|
|
2795
|
-
datePicker: {
|
|
2796
|
-
itemsSelected: string;
|
|
2797
|
-
nextMonthAriaLabel: string;
|
|
2798
|
-
nextYearAriaLabel: string;
|
|
2799
|
-
prevMonthAriaLabel: string;
|
|
2800
|
-
prevYearAriaLabel: string;
|
|
2801
|
-
};
|
|
2802
|
-
noDataText: string;
|
|
2803
|
-
carousel: {
|
|
2804
|
-
prev: string;
|
|
2805
|
-
next: string;
|
|
2806
|
-
ariaLabel: {
|
|
2807
|
-
delimiter: string;
|
|
2808
|
-
};
|
|
2809
|
-
};
|
|
2810
|
-
calendar: {
|
|
2811
|
-
moreEvents: string;
|
|
2812
|
-
};
|
|
2813
|
-
input: {
|
|
2814
|
-
clear: string;
|
|
2815
|
-
prependAction: string;
|
|
2816
|
-
appendAction: string;
|
|
2817
|
-
};
|
|
2818
|
-
fileInput: {
|
|
2819
|
-
counter: string;
|
|
2820
|
-
counterSize: string;
|
|
2821
|
-
};
|
|
2822
|
-
timePicker: {
|
|
2823
|
-
am: string;
|
|
2824
|
-
pm: string;
|
|
2825
|
-
};
|
|
2826
|
-
pagination: {
|
|
2827
|
-
ariaLabel: {
|
|
2828
|
-
root: string;
|
|
2829
|
-
next: string;
|
|
2830
|
-
previous: string;
|
|
2831
|
-
page: string;
|
|
2832
|
-
currentPage: string;
|
|
2833
|
-
first: string;
|
|
2834
|
-
last: string;
|
|
2835
|
-
};
|
|
2836
|
-
};
|
|
2837
|
-
rating: {
|
|
2838
|
-
ariaLabel: {
|
|
2839
|
-
item: string;
|
|
2840
|
-
};
|
|
2841
|
-
};
|
|
2842
|
-
};
|
|
2843
2708
|
common: {
|
|
2844
2709
|
alert: {
|
|
2845
2710
|
unknownError: string;
|
|
@@ -3050,24 +2915,6 @@ export declare const messagesEn: {
|
|
|
3050
2915
|
};
|
|
3051
2916
|
};
|
|
3052
2917
|
};
|
|
3053
|
-
};
|
|
3054
|
-
|
|
3055
|
-
export declare const messagesSk: {
|
|
3056
|
-
validations: {
|
|
3057
|
-
api: {
|
|
3058
|
-
error_field_length_min: string;
|
|
3059
|
-
error_field_length_max: string;
|
|
3060
|
-
error_field_not_unique: string;
|
|
3061
|
-
error_compromised_password: string;
|
|
3062
|
-
};
|
|
3063
|
-
js: {
|
|
3064
|
-
required: string;
|
|
3065
|
-
minLength: string;
|
|
3066
|
-
maxLength: string;
|
|
3067
|
-
email: string;
|
|
3068
|
-
stringArrayItemLength: string;
|
|
3069
|
-
};
|
|
3070
|
-
};
|
|
3071
2918
|
$vuetify: {
|
|
3072
2919
|
badge: string;
|
|
3073
2920
|
close: string;
|
|
@@ -3144,6 +2991,24 @@ export declare const messagesSk: {
|
|
|
3144
2991
|
};
|
|
3145
2992
|
};
|
|
3146
2993
|
};
|
|
2994
|
+
validations: {
|
|
2995
|
+
api: {
|
|
2996
|
+
error_field_length_min: string;
|
|
2997
|
+
error_field_length_max: string;
|
|
2998
|
+
error_field_not_unique: string;
|
|
2999
|
+
error_compromised_password: string;
|
|
3000
|
+
};
|
|
3001
|
+
js: {
|
|
3002
|
+
required: string;
|
|
3003
|
+
minLength: string;
|
|
3004
|
+
maxLength: string;
|
|
3005
|
+
email: string;
|
|
3006
|
+
stringArrayItemLength: string;
|
|
3007
|
+
};
|
|
3008
|
+
};
|
|
3009
|
+
};
|
|
3010
|
+
|
|
3011
|
+
export declare const messagesSk: {
|
|
3147
3012
|
common: {
|
|
3148
3013
|
alert: {
|
|
3149
3014
|
unknownError: string;
|
|
@@ -3354,6 +3219,97 @@ export declare const messagesSk: {
|
|
|
3354
3219
|
};
|
|
3355
3220
|
};
|
|
3356
3221
|
};
|
|
3222
|
+
$vuetify: {
|
|
3223
|
+
badge: string;
|
|
3224
|
+
close: string;
|
|
3225
|
+
dataIterator: {
|
|
3226
|
+
noResultsText: string;
|
|
3227
|
+
loadingText: string;
|
|
3228
|
+
};
|
|
3229
|
+
dataTable: {
|
|
3230
|
+
itemsPerPageText: string;
|
|
3231
|
+
ariaLabel: {
|
|
3232
|
+
sortDescending: string;
|
|
3233
|
+
sortAscending: string;
|
|
3234
|
+
sortNone: string;
|
|
3235
|
+
activateNone: string;
|
|
3236
|
+
activateDescending: string;
|
|
3237
|
+
activateAscending: string;
|
|
3238
|
+
};
|
|
3239
|
+
sortBy: string;
|
|
3240
|
+
};
|
|
3241
|
+
dataFooter: {
|
|
3242
|
+
itemsPerPageText: string;
|
|
3243
|
+
itemsPerPageAll: string;
|
|
3244
|
+
nextPage: string;
|
|
3245
|
+
prevPage: string;
|
|
3246
|
+
firstPage: string;
|
|
3247
|
+
lastPage: string;
|
|
3248
|
+
pageText: string;
|
|
3249
|
+
};
|
|
3250
|
+
datePicker: {
|
|
3251
|
+
itemsSelected: string;
|
|
3252
|
+
nextMonthAriaLabel: string;
|
|
3253
|
+
nextYearAriaLabel: string;
|
|
3254
|
+
prevMonthAriaLabel: string;
|
|
3255
|
+
prevYearAriaLabel: string;
|
|
3256
|
+
};
|
|
3257
|
+
noDataText: string;
|
|
3258
|
+
carousel: {
|
|
3259
|
+
prev: string;
|
|
3260
|
+
next: string;
|
|
3261
|
+
ariaLabel: {
|
|
3262
|
+
delimiter: string;
|
|
3263
|
+
};
|
|
3264
|
+
};
|
|
3265
|
+
calendar: {
|
|
3266
|
+
moreEvents: string;
|
|
3267
|
+
};
|
|
3268
|
+
input: {
|
|
3269
|
+
clear: string;
|
|
3270
|
+
prependAction: string;
|
|
3271
|
+
appendAction: string;
|
|
3272
|
+
};
|
|
3273
|
+
fileInput: {
|
|
3274
|
+
counter: string;
|
|
3275
|
+
counterSize: string;
|
|
3276
|
+
};
|
|
3277
|
+
timePicker: {
|
|
3278
|
+
am: string;
|
|
3279
|
+
pm: string;
|
|
3280
|
+
};
|
|
3281
|
+
pagination: {
|
|
3282
|
+
ariaLabel: {
|
|
3283
|
+
root: string;
|
|
3284
|
+
next: string;
|
|
3285
|
+
previous: string;
|
|
3286
|
+
page: string;
|
|
3287
|
+
currentPage: string;
|
|
3288
|
+
first: string;
|
|
3289
|
+
last: string;
|
|
3290
|
+
};
|
|
3291
|
+
};
|
|
3292
|
+
rating: {
|
|
3293
|
+
ariaLabel: {
|
|
3294
|
+
item: string;
|
|
3295
|
+
};
|
|
3296
|
+
};
|
|
3297
|
+
};
|
|
3298
|
+
validations: {
|
|
3299
|
+
api: {
|
|
3300
|
+
error_field_length_min: string;
|
|
3301
|
+
error_field_length_max: string;
|
|
3302
|
+
error_field_not_unique: string;
|
|
3303
|
+
error_compromised_password: string;
|
|
3304
|
+
};
|
|
3305
|
+
js: {
|
|
3306
|
+
required: string;
|
|
3307
|
+
minLength: string;
|
|
3308
|
+
maxLength: string;
|
|
3309
|
+
email: string;
|
|
3310
|
+
stringArrayItemLength: string;
|
|
3311
|
+
};
|
|
3312
|
+
};
|
|
3357
3313
|
};
|
|
3358
3314
|
|
|
3359
3315
|
export declare function modifyLanguageSettings(configAvailableLanguages: LanguageCode[], configDefaultLanguage: LanguageCode): {
|