@anzusystems/common-admin 1.46.0 → 1.47.0-alpha1
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 +234 -72
- package/dist/common-admin.es.js +306 -303
- package/dist/common-admin.es.js.map +1 -1
- package/dist/lib-HNYCbdqV.js +23397 -0
- package/dist/lib-HNYCbdqV.js.map +1 -0
- package/dist/style.css +2 -2
- package/dist/{webfontloader-U2YFdwQC.js → webfontloader-bgvy4EBs.js} +2 -2
- package/dist/{webfontloader-U2YFdwQC.js.map → webfontloader-bgvy4EBs.js.map} +1 -1
- package/package.json +26 -28
- package/dist/lib-O1PWmJyA.js +0 -26778
- package/dist/lib-O1PWmJyA.js.map +0 -1
- package/dist/shortcut-buttons-flatpickr-TZxy8YYt.js +0 -168
- package/dist/shortcut-buttons-flatpickr-TZxy8YYt.js.map +0 -1
|
@@ -8,8 +8,6 @@ import { ComponentCustomProps } from 'vue';
|
|
|
8
8
|
import { ComponentOptionsMixin } from 'vue';
|
|
9
9
|
import { ComputedRef } from 'vue';
|
|
10
10
|
import { default as Cropper_2 } from 'cropperjs';
|
|
11
|
-
import type { DateLimit } from 'flatpickr/dist/types/options';
|
|
12
|
-
import type { DateOption } from 'flatpickr/dist/types/options';
|
|
13
11
|
import dayjs from 'dayjs';
|
|
14
12
|
import type { DeepReadonly } from 'vue';
|
|
15
13
|
import { DefineComponent } from 'vue';
|
|
@@ -197,6 +195,8 @@ declare type __VLS_NonUndefinedable_77<T> = T extends undefined ? never : T;
|
|
|
197
195
|
|
|
198
196
|
declare type __VLS_NonUndefinedable_78<T> = T extends undefined ? never : T;
|
|
199
197
|
|
|
198
|
+
declare type __VLS_NonUndefinedable_79<T> = T extends undefined ? never : T;
|
|
199
|
+
|
|
200
200
|
declare type __VLS_NonUndefinedable_8<T> = T extends undefined ? never : T;
|
|
201
201
|
|
|
202
202
|
declare type __VLS_NonUndefinedable_9<T> = T extends undefined ? never : T;
|
|
@@ -489,6 +489,10 @@ declare type __VLS_Prettify_74<T> = {
|
|
|
489
489
|
[K in keyof T]: T[K];
|
|
490
490
|
} & {};
|
|
491
491
|
|
|
492
|
+
declare type __VLS_Prettify_75<T> = {
|
|
493
|
+
[K in keyof T]: T[K];
|
|
494
|
+
} & {};
|
|
495
|
+
|
|
492
496
|
declare type __VLS_Prettify_8<T> = {
|
|
493
497
|
[K in keyof T]: T[K];
|
|
494
498
|
} & {};
|
|
@@ -1181,6 +1185,15 @@ declare type __VLS_TypePropsToRuntimeProps_78<T> = {
|
|
|
1181
1185
|
};
|
|
1182
1186
|
};
|
|
1183
1187
|
|
|
1188
|
+
declare type __VLS_TypePropsToRuntimeProps_79<T> = {
|
|
1189
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
1190
|
+
type: PropType<__VLS_NonUndefinedable_79<T[K]>>;
|
|
1191
|
+
} : {
|
|
1192
|
+
type: PropType<T[K]>;
|
|
1193
|
+
required: true;
|
|
1194
|
+
};
|
|
1195
|
+
};
|
|
1196
|
+
|
|
1184
1197
|
declare type __VLS_TypePropsToRuntimeProps_8<T> = {
|
|
1185
1198
|
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
1186
1199
|
type: PropType<__VLS_NonUndefinedable_8<T[K]>>;
|
|
@@ -1631,6 +1644,12 @@ declare type __VLS_WithDefaults_74<P, D> = {
|
|
|
1631
1644
|
}> : P[K];
|
|
1632
1645
|
};
|
|
1633
1646
|
|
|
1647
|
+
declare type __VLS_WithDefaults_75<P, D> = {
|
|
1648
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify_75<P[K] & {
|
|
1649
|
+
default: D[K];
|
|
1650
|
+
}> : P[K];
|
|
1651
|
+
};
|
|
1652
|
+
|
|
1634
1653
|
declare type __VLS_WithDefaults_8<P, D> = {
|
|
1635
1654
|
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify_8<P[K] & {
|
|
1636
1655
|
default: D[K];
|
|
@@ -2236,14 +2255,37 @@ export declare const AAvatarColorPicker: DefineComponent<__VLS_WithDefaults_55<_
|
|
|
2236
2255
|
}>>> & {
|
|
2237
2256
|
"onUpdate:modelValue"?: ((data: string) => any) | undefined;
|
|
2238
2257
|
}, {
|
|
2239
|
-
required: boolean;
|
|
2240
2258
|
loading: boolean;
|
|
2259
|
+
required: boolean;
|
|
2241
2260
|
label: string;
|
|
2242
2261
|
hideLabel: boolean;
|
|
2243
2262
|
readonly: boolean;
|
|
2244
2263
|
randomColor: boolean;
|
|
2245
2264
|
}, {}>;
|
|
2246
2265
|
|
|
2266
|
+
export declare const ABooleanSelect: DefineComponent<__VLS_WithDefaults_71<__VLS_TypePropsToRuntimeProps_75<{
|
|
2267
|
+
modelValue: boolean | null;
|
|
2268
|
+
dataCy?: string | undefined;
|
|
2269
|
+
label?: string | undefined;
|
|
2270
|
+
}>, {
|
|
2271
|
+
dataCy: string;
|
|
2272
|
+
label: undefined;
|
|
2273
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
2274
|
+
"update:modelValue": (data: boolean | null) => void;
|
|
2275
|
+
}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_71<__VLS_TypePropsToRuntimeProps_75<{
|
|
2276
|
+
modelValue: boolean | null;
|
|
2277
|
+
dataCy?: string | undefined;
|
|
2278
|
+
label?: string | undefined;
|
|
2279
|
+
}>, {
|
|
2280
|
+
dataCy: string;
|
|
2281
|
+
label: undefined;
|
|
2282
|
+
}>>> & {
|
|
2283
|
+
"onUpdate:modelValue"?: ((data: boolean | null) => any) | undefined;
|
|
2284
|
+
}, {
|
|
2285
|
+
dataCy: string;
|
|
2286
|
+
label: string;
|
|
2287
|
+
}, {}>;
|
|
2288
|
+
|
|
2247
2289
|
export declare const ABooleanValue: DefineComponent<__VLS_WithDefaults_6<__VLS_TypePropsToRuntimeProps_6<{
|
|
2248
2290
|
value: number | string | boolean;
|
|
2249
2291
|
chip?: boolean | undefined;
|
|
@@ -2659,6 +2701,7 @@ export declare const ACropperjs: <T extends EventTarget = EventTarget>(__VLS_pro
|
|
|
2659
2701
|
src?: string | undefined;
|
|
2660
2702
|
alt?: string | undefined;
|
|
2661
2703
|
background?: boolean | undefined;
|
|
2704
|
+
viewMode?: Cropper_2.ViewMode | undefined;
|
|
2662
2705
|
aspectRatio?: number | undefined;
|
|
2663
2706
|
containerStyle?: {
|
|
2664
2707
|
[key: string]: string;
|
|
@@ -2677,13 +2720,12 @@ export declare const ACropperjs: <T extends EventTarget = EventTarget>(__VLS_pro
|
|
|
2677
2720
|
highlight?: boolean | undefined;
|
|
2678
2721
|
initialAspectRatio?: number | undefined;
|
|
2679
2722
|
movable?: boolean | undefined;
|
|
2680
|
-
preview?: string | HTMLElement | HTMLElement
|
|
2723
|
+
preview?: string | HTMLElement | NodeListOf<HTMLElement> | HTMLElement[] | undefined;
|
|
2681
2724
|
responsive?: boolean | undefined;
|
|
2682
2725
|
restore?: boolean | undefined;
|
|
2683
2726
|
rotatable?: boolean | undefined;
|
|
2684
2727
|
scalable?: boolean | undefined;
|
|
2685
2728
|
toggleDragModeOnDblclick?: boolean | undefined;
|
|
2686
|
-
viewMode?: Cropper_2.ViewMode | undefined;
|
|
2687
2729
|
wheelZoomRatio?: number | undefined;
|
|
2688
2730
|
zoomOnTouch?: boolean | undefined;
|
|
2689
2731
|
zoomOnWheel?: boolean | undefined;
|
|
@@ -2719,6 +2761,7 @@ export declare const ACropperjs: <T extends EventTarget = EventTarget>(__VLS_pro
|
|
|
2719
2761
|
src?: string | undefined;
|
|
2720
2762
|
alt?: string | undefined;
|
|
2721
2763
|
background?: boolean | undefined;
|
|
2764
|
+
viewMode?: Cropper_2.ViewMode | undefined;
|
|
2722
2765
|
aspectRatio?: number | undefined;
|
|
2723
2766
|
containerStyle?: {
|
|
2724
2767
|
[key: string]: string;
|
|
@@ -2737,13 +2780,12 @@ export declare const ACropperjs: <T extends EventTarget = EventTarget>(__VLS_pro
|
|
|
2737
2780
|
highlight?: boolean | undefined;
|
|
2738
2781
|
initialAspectRatio?: number | undefined;
|
|
2739
2782
|
movable?: boolean | undefined;
|
|
2740
|
-
preview?: string | HTMLElement | HTMLElement
|
|
2783
|
+
preview?: string | HTMLElement | NodeListOf<HTMLElement> | HTMLElement[] | undefined;
|
|
2741
2784
|
responsive?: boolean | undefined;
|
|
2742
2785
|
restore?: boolean | undefined;
|
|
2743
2786
|
rotatable?: boolean | undefined;
|
|
2744
2787
|
scalable?: boolean | undefined;
|
|
2745
2788
|
toggleDragModeOnDblclick?: boolean | undefined;
|
|
2746
|
-
viewMode?: Cropper_2.ViewMode | undefined;
|
|
2747
2789
|
wheelZoomRatio?: number | undefined;
|
|
2748
2790
|
zoomOnTouch?: boolean | undefined;
|
|
2749
2791
|
zoomOnWheel?: boolean | undefined;
|
|
@@ -2783,6 +2825,7 @@ export declare const ACropperjs: <T extends EventTarget = EventTarget>(__VLS_pro
|
|
|
2783
2825
|
src?: string | undefined;
|
|
2784
2826
|
alt?: string | undefined;
|
|
2785
2827
|
background?: boolean | undefined;
|
|
2828
|
+
viewMode?: Cropper_2.ViewMode | undefined;
|
|
2786
2829
|
aspectRatio?: number | undefined;
|
|
2787
2830
|
containerStyle?: {
|
|
2788
2831
|
[key: string]: string;
|
|
@@ -2801,13 +2844,12 @@ export declare const ACropperjs: <T extends EventTarget = EventTarget>(__VLS_pro
|
|
|
2801
2844
|
highlight?: boolean | undefined;
|
|
2802
2845
|
initialAspectRatio?: number | undefined;
|
|
2803
2846
|
movable?: boolean | undefined;
|
|
2804
|
-
preview?: string | HTMLElement | HTMLElement
|
|
2847
|
+
preview?: string | HTMLElement | NodeListOf<HTMLElement> | HTMLElement[] | undefined;
|
|
2805
2848
|
responsive?: boolean | undefined;
|
|
2806
2849
|
restore?: boolean | undefined;
|
|
2807
2850
|
rotatable?: boolean | undefined;
|
|
2808
2851
|
scalable?: boolean | undefined;
|
|
2809
2852
|
toggleDragModeOnDblclick?: boolean | undefined;
|
|
2810
|
-
viewMode?: Cropper_2.ViewMode | undefined;
|
|
2811
2853
|
wheelZoomRatio?: number | undefined;
|
|
2812
2854
|
zoomOnTouch?: boolean | undefined;
|
|
2813
2855
|
zoomOnWheel?: boolean | undefined;
|
|
@@ -3073,21 +3115,18 @@ export declare const ADatetime: DefineComponent<__VLS_WithDefaults_25<__VLS_Type
|
|
|
3073
3115
|
}, {}>;
|
|
3074
3116
|
|
|
3075
3117
|
export declare const ADatetimePicker: __VLS_WithTemplateSlots_13<DefineComponent<__VLS_WithDefaults_26<__VLS_TypePropsToRuntimeProps_28<{
|
|
3076
|
-
modelValue:
|
|
3077
|
-
type?: "datetime" |
|
|
3118
|
+
modelValue: string | null | undefined;
|
|
3119
|
+
type?: "datetime" | undefined;
|
|
3078
3120
|
label?: string | undefined;
|
|
3079
3121
|
hideLabel?: boolean | undefined;
|
|
3080
3122
|
clearable?: boolean | undefined;
|
|
3081
3123
|
disabled?: boolean | undefined;
|
|
3082
3124
|
hideDetails?: boolean | undefined;
|
|
3083
|
-
minNow?: boolean | undefined;
|
|
3084
3125
|
required?: boolean | undefined;
|
|
3085
3126
|
hideSetToNow?: boolean | undefined;
|
|
3086
3127
|
placeholder?: string | undefined;
|
|
3087
|
-
enable?: DateLimit<DateOption>[] | undefined;
|
|
3088
|
-
weekNumbers?: false | undefined;
|
|
3089
3128
|
dataCy?: string | undefined;
|
|
3090
|
-
defaultValue?:
|
|
3129
|
+
defaultValue?: string | null | undefined;
|
|
3091
3130
|
errorMessages?: string[] | undefined;
|
|
3092
3131
|
}>, {
|
|
3093
3132
|
type: string;
|
|
@@ -3096,38 +3135,31 @@ export declare const ADatetimePicker: __VLS_WithTemplateSlots_13<DefineComponent
|
|
|
3096
3135
|
clearable: boolean;
|
|
3097
3136
|
disabled: boolean;
|
|
3098
3137
|
hideDetails: boolean;
|
|
3099
|
-
minNow: boolean;
|
|
3100
3138
|
required: boolean;
|
|
3101
3139
|
hideSetToNow: boolean;
|
|
3102
3140
|
placeholder: string;
|
|
3103
|
-
enable: undefined;
|
|
3104
|
-
weekNumbers: boolean;
|
|
3105
3141
|
dataCy: string;
|
|
3106
3142
|
defaultValue: null;
|
|
3107
3143
|
errorMessages: undefined;
|
|
3108
3144
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
3109
|
-
change: () => void;
|
|
3110
3145
|
blur: () => void;
|
|
3111
3146
|
focus: () => void;
|
|
3112
|
-
"update:modelValue": (data: string | null) => void;
|
|
3147
|
+
"update:modelValue": (data: string | null | undefined) => void;
|
|
3113
3148
|
onOpen: () => void;
|
|
3114
3149
|
onClose: () => void;
|
|
3115
3150
|
}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_26<__VLS_TypePropsToRuntimeProps_28<{
|
|
3116
|
-
modelValue:
|
|
3117
|
-
type?: "datetime" |
|
|
3151
|
+
modelValue: string | null | undefined;
|
|
3152
|
+
type?: "datetime" | undefined;
|
|
3118
3153
|
label?: string | undefined;
|
|
3119
3154
|
hideLabel?: boolean | undefined;
|
|
3120
3155
|
clearable?: boolean | undefined;
|
|
3121
3156
|
disabled?: boolean | undefined;
|
|
3122
3157
|
hideDetails?: boolean | undefined;
|
|
3123
|
-
minNow?: boolean | undefined;
|
|
3124
3158
|
required?: boolean | undefined;
|
|
3125
3159
|
hideSetToNow?: boolean | undefined;
|
|
3126
3160
|
placeholder?: string | undefined;
|
|
3127
|
-
enable?: DateLimit<DateOption>[] | undefined;
|
|
3128
|
-
weekNumbers?: false | undefined;
|
|
3129
3161
|
dataCy?: string | undefined;
|
|
3130
|
-
defaultValue?:
|
|
3162
|
+
defaultValue?: string | null | undefined;
|
|
3131
3163
|
errorMessages?: string[] | undefined;
|
|
3132
3164
|
}>, {
|
|
3133
3165
|
type: string;
|
|
@@ -3136,37 +3168,30 @@ export declare const ADatetimePicker: __VLS_WithTemplateSlots_13<DefineComponent
|
|
|
3136
3168
|
clearable: boolean;
|
|
3137
3169
|
disabled: boolean;
|
|
3138
3170
|
hideDetails: boolean;
|
|
3139
|
-
minNow: boolean;
|
|
3140
3171
|
required: boolean;
|
|
3141
3172
|
hideSetToNow: boolean;
|
|
3142
3173
|
placeholder: string;
|
|
3143
|
-
enable: undefined;
|
|
3144
|
-
weekNumbers: boolean;
|
|
3145
3174
|
dataCy: string;
|
|
3146
3175
|
defaultValue: null;
|
|
3147
3176
|
errorMessages: undefined;
|
|
3148
3177
|
}>>> & {
|
|
3149
|
-
"onUpdate:modelValue"?: ((data: string | null) => any) | undefined;
|
|
3178
|
+
"onUpdate:modelValue"?: ((data: string | null | undefined) => any) | undefined;
|
|
3150
3179
|
onFocus?: (() => any) | undefined;
|
|
3151
3180
|
onBlur?: (() => any) | undefined;
|
|
3152
|
-
onChange?: (() => any) | undefined;
|
|
3153
3181
|
onOnOpen?: (() => any) | undefined;
|
|
3154
3182
|
onOnClose?: (() => any) | undefined;
|
|
3155
3183
|
}, {
|
|
3156
|
-
enable: DateLimit<DateOption>[];
|
|
3157
3184
|
disabled: boolean;
|
|
3158
|
-
type: "datetime"
|
|
3185
|
+
type: "datetime";
|
|
3159
3186
|
dataCy: string;
|
|
3187
|
+
placeholder: string;
|
|
3160
3188
|
required: boolean;
|
|
3161
3189
|
label: string;
|
|
3162
3190
|
hideLabel: boolean;
|
|
3163
3191
|
clearable: boolean;
|
|
3164
3192
|
hideDetails: boolean;
|
|
3165
|
-
minNow: boolean;
|
|
3166
3193
|
hideSetToNow: boolean;
|
|
3167
|
-
|
|
3168
|
-
weekNumbers: false;
|
|
3169
|
-
defaultValue: DatetimeUTCNullable;
|
|
3194
|
+
defaultValue: string | null;
|
|
3170
3195
|
errorMessages: string[];
|
|
3171
3196
|
}, {}>, {
|
|
3172
3197
|
"append-inner"?(_: {}): any;
|
|
@@ -3713,13 +3738,13 @@ export declare const AFormRemoteAutocomplete: __VLS_WithTemplateSlots_9<DefineCo
|
|
|
3713
3738
|
}, {
|
|
3714
3739
|
disabled: boolean;
|
|
3715
3740
|
multiple: boolean;
|
|
3741
|
+
loading: boolean;
|
|
3716
3742
|
collab: {
|
|
3717
3743
|
room: string;
|
|
3718
3744
|
field: string;
|
|
3719
3745
|
cachedUsers: CollabCachedUsersMap;
|
|
3720
3746
|
};
|
|
3721
3747
|
required: boolean;
|
|
3722
|
-
loading: boolean;
|
|
3723
3748
|
label: string;
|
|
3724
3749
|
hideLabel: boolean;
|
|
3725
3750
|
clearable: boolean;
|
|
@@ -3811,8 +3836,8 @@ export declare const AFormRemoteAutocompleteWithCached: DefineComponent<__VLS_Wi
|
|
|
3811
3836
|
itemTitle: string;
|
|
3812
3837
|
itemValue: string;
|
|
3813
3838
|
multiple: boolean;
|
|
3814
|
-
required: boolean;
|
|
3815
3839
|
loading: boolean;
|
|
3840
|
+
required: boolean;
|
|
3816
3841
|
label: string;
|
|
3817
3842
|
hideLabel: boolean;
|
|
3818
3843
|
clearable: boolean;
|
|
@@ -4110,6 +4135,7 @@ export declare const AFormTextField: __VLS_WithTemplateSlots_5<DefineComponent<_
|
|
|
4110
4135
|
prependIcon: string;
|
|
4111
4136
|
type: string;
|
|
4112
4137
|
dataCy: string;
|
|
4138
|
+
placeholder: string;
|
|
4113
4139
|
collab: {
|
|
4114
4140
|
room: string;
|
|
4115
4141
|
field: string;
|
|
@@ -4117,13 +4143,12 @@ export declare const AFormTextField: __VLS_WithTemplateSlots_5<DefineComponent<_
|
|
|
4117
4143
|
};
|
|
4118
4144
|
required: boolean;
|
|
4119
4145
|
label: string;
|
|
4146
|
+
step: number;
|
|
4147
|
+
maxlength: number;
|
|
4120
4148
|
hideLabel: boolean;
|
|
4121
|
-
placeholder: string;
|
|
4122
4149
|
persistentPlaceholder: boolean;
|
|
4123
|
-
step: number;
|
|
4124
4150
|
errorMessage: string;
|
|
4125
4151
|
v: any;
|
|
4126
|
-
maxlength: number;
|
|
4127
4152
|
}, {}>, {
|
|
4128
4153
|
locked?(_: {
|
|
4129
4154
|
userId: number;
|
|
@@ -4246,6 +4271,7 @@ export declare const AImageWidget: DefineComponent<__VLS_WithDefaults_63<__VLS_T
|
|
|
4246
4271
|
collab?: CollabComponentConfig;
|
|
4247
4272
|
label?: string | undefined;
|
|
4248
4273
|
readonly?: boolean | undefined;
|
|
4274
|
+
required?: boolean | undefined;
|
|
4249
4275
|
dataCy?: string | undefined;
|
|
4250
4276
|
expandOptions?: boolean | undefined;
|
|
4251
4277
|
expandMetadata?: boolean | undefined;
|
|
@@ -4258,6 +4284,7 @@ export declare const AImageWidget: DefineComponent<__VLS_WithDefaults_63<__VLS_T
|
|
|
4258
4284
|
label: undefined;
|
|
4259
4285
|
image: undefined;
|
|
4260
4286
|
readonly: boolean;
|
|
4287
|
+
required: boolean;
|
|
4261
4288
|
lockable: boolean;
|
|
4262
4289
|
lockedById: undefined;
|
|
4263
4290
|
dataCy: undefined;
|
|
@@ -4281,6 +4308,7 @@ export declare const AImageWidget: DefineComponent<__VLS_WithDefaults_63<__VLS_T
|
|
|
4281
4308
|
collab?: CollabComponentConfig;
|
|
4282
4309
|
label?: string | undefined;
|
|
4283
4310
|
readonly?: boolean | undefined;
|
|
4311
|
+
required?: boolean | undefined;
|
|
4284
4312
|
dataCy?: string | undefined;
|
|
4285
4313
|
expandOptions?: boolean | undefined;
|
|
4286
4314
|
expandMetadata?: boolean | undefined;
|
|
@@ -4293,6 +4321,7 @@ export declare const AImageWidget: DefineComponent<__VLS_WithDefaults_63<__VLS_T
|
|
|
4293
4321
|
label: undefined;
|
|
4294
4322
|
image: undefined;
|
|
4295
4323
|
readonly: boolean;
|
|
4324
|
+
required: boolean;
|
|
4296
4325
|
lockable: boolean;
|
|
4297
4326
|
lockedById: undefined;
|
|
4298
4327
|
dataCy: undefined;
|
|
@@ -4313,6 +4342,7 @@ export declare const AImageWidget: DefineComponent<__VLS_WithDefaults_63<__VLS_T
|
|
|
4313
4342
|
cachedUsers: CollabCachedUsersMap;
|
|
4314
4343
|
};
|
|
4315
4344
|
image: ImageAware;
|
|
4345
|
+
required: boolean;
|
|
4316
4346
|
label: string;
|
|
4317
4347
|
readonly: boolean;
|
|
4318
4348
|
configName: string;
|
|
@@ -4492,14 +4522,14 @@ export declare const AImageWidgetSimple: __VLS_WithTemplateSlots_24<DefineCompon
|
|
|
4492
4522
|
licenceId: number;
|
|
4493
4523
|
regionPosition: number;
|
|
4494
4524
|
};
|
|
4495
|
-
position
|
|
4525
|
+
position?: number | undefined;
|
|
4496
4526
|
} | {
|
|
4497
4527
|
id?: number | undefined;
|
|
4498
4528
|
texts: {
|
|
4499
4529
|
description: string;
|
|
4500
4530
|
source: string;
|
|
4501
4531
|
};
|
|
4502
|
-
position
|
|
4532
|
+
position?: number | undefined;
|
|
4503
4533
|
dam: {
|
|
4504
4534
|
damId: string;
|
|
4505
4535
|
licenceId: number;
|
|
@@ -4561,7 +4591,7 @@ export declare const ALogData: DefineComponent<__VLS_WithDefaults_30<__VLS_TypeP
|
|
|
4561
4591
|
data: any;
|
|
4562
4592
|
}>, {}>>>, {}, {}>;
|
|
4563
4593
|
|
|
4564
|
-
export declare const ALoginView: DefineComponent<
|
|
4594
|
+
export declare const ALoginView: DefineComponent<__VLS_WithDefaults_72<__VLS_TypePropsToRuntimeProps_76<{
|
|
4565
4595
|
title?: string | undefined;
|
|
4566
4596
|
logoUrl?: string | undefined;
|
|
4567
4597
|
loginUrl?: undefined | (() => string);
|
|
@@ -4571,7 +4601,7 @@ export declare const ALoginView: DefineComponent<__VLS_WithDefaults_71<__VLS_Typ
|
|
|
4571
4601
|
logoUrl: undefined;
|
|
4572
4602
|
loginUrl: undefined;
|
|
4573
4603
|
dataCy: string;
|
|
4574
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
4604
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_72<__VLS_TypePropsToRuntimeProps_76<{
|
|
4575
4605
|
title?: string | undefined;
|
|
4576
4606
|
logoUrl?: string | undefined;
|
|
4577
4607
|
loginUrl?: undefined | (() => string);
|
|
@@ -4594,11 +4624,11 @@ export declare const ALogLevelChip: DefineComponent<__VLS_WithDefaults_53<__VLS_
|
|
|
4594
4624
|
level: LogLevel;
|
|
4595
4625
|
}>, {}>>>, {}, {}>;
|
|
4596
4626
|
|
|
4597
|
-
export declare const ALogoutView: DefineComponent<
|
|
4627
|
+
export declare const ALogoutView: DefineComponent<__VLS_WithDefaults_73<__VLS_TypePropsToRuntimeProps_77<{
|
|
4598
4628
|
logoutUrl?: undefined | (() => string);
|
|
4599
4629
|
}>, {
|
|
4600
4630
|
logoutUrl: undefined;
|
|
4601
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
4631
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_73<__VLS_TypePropsToRuntimeProps_77<{
|
|
4602
4632
|
logoutUrl?: undefined | (() => string);
|
|
4603
4633
|
}>, {
|
|
4604
4634
|
logoutUrl: undefined;
|
|
@@ -4606,9 +4636,9 @@ export declare const ALogoutView: DefineComponent<__VLS_WithDefaults_72<__VLS_Ty
|
|
|
4606
4636
|
logoutUrl: () => string;
|
|
4607
4637
|
}, {}>;
|
|
4608
4638
|
|
|
4609
|
-
export declare const ANotFoundView: DefineComponent<
|
|
4639
|
+
export declare const ANotFoundView: DefineComponent<__VLS_WithDefaults_75<__VLS_TypePropsToRuntimeProps_79<{
|
|
4610
4640
|
returnRouteName: string;
|
|
4611
|
-
}>, {}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
4641
|
+
}>, {}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_75<__VLS_TypePropsToRuntimeProps_79<{
|
|
4612
4642
|
returnRouteName: string;
|
|
4613
4643
|
}>, {}>>>, {}, {}>;
|
|
4614
4644
|
|
|
@@ -5182,9 +5212,9 @@ declare enum AssetSelectReturnType {
|
|
|
5182
5212
|
|
|
5183
5213
|
export declare const ASubjectSelect: <TItem>(__VLS_props: {
|
|
5184
5214
|
pagination: Pagination;
|
|
5215
|
+
loading?: boolean | undefined;
|
|
5185
5216
|
submitFilter: Fn;
|
|
5186
5217
|
resetFilter: Fn;
|
|
5187
|
-
loading?: boolean | undefined;
|
|
5188
5218
|
modelValue?: boolean | undefined;
|
|
5189
5219
|
"onUpdate:modelValue"?: ((data: boolean) => any) | undefined;
|
|
5190
5220
|
onOnOpen?: (() => any) | undefined;
|
|
@@ -5226,9 +5256,9 @@ export declare const ASubjectSelect: <TItem>(__VLS_props: {
|
|
|
5226
5256
|
}>) => void) | undefined, __VLS_setup?: Promise<{
|
|
5227
5257
|
props: {
|
|
5228
5258
|
pagination: Pagination;
|
|
5259
|
+
loading?: boolean | undefined;
|
|
5229
5260
|
submitFilter: Fn;
|
|
5230
5261
|
resetFilter: Fn;
|
|
5231
|
-
loading?: boolean | undefined;
|
|
5232
5262
|
modelValue?: boolean | undefined;
|
|
5233
5263
|
"onUpdate:modelValue"?: ((data: boolean) => any) | undefined;
|
|
5234
5264
|
onOnOpen?: (() => any) | undefined;
|
|
@@ -5274,9 +5304,9 @@ export declare const ASubjectSelect: <TItem>(__VLS_props: {
|
|
|
5274
5304
|
__ctx?: {
|
|
5275
5305
|
props: {
|
|
5276
5306
|
pagination: Pagination;
|
|
5307
|
+
loading?: boolean | undefined;
|
|
5277
5308
|
submitFilter: Fn;
|
|
5278
5309
|
resetFilter: Fn;
|
|
5279
|
-
loading?: boolean | undefined;
|
|
5280
5310
|
modelValue?: boolean | undefined;
|
|
5281
5311
|
"onUpdate:modelValue"?: ((data: boolean) => any) | undefined;
|
|
5282
5312
|
onOnOpen?: (() => any) | undefined;
|
|
@@ -5487,9 +5517,9 @@ declare interface AudioAttributes {
|
|
|
5487
5517
|
bitrate: number;
|
|
5488
5518
|
}
|
|
5489
5519
|
|
|
5490
|
-
export declare const AUnauthorizedView: DefineComponent<
|
|
5520
|
+
export declare const AUnauthorizedView: DefineComponent<__VLS_WithDefaults_74<__VLS_TypePropsToRuntimeProps_78<{
|
|
5491
5521
|
returnRouteName: string;
|
|
5492
|
-
}>, {}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
5522
|
+
}>, {}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_74<__VLS_TypePropsToRuntimeProps_78<{
|
|
5493
5523
|
returnRouteName: string;
|
|
5494
5524
|
}>, {}>>>, {}, {}>;
|
|
5495
5525
|
|
|
@@ -6798,6 +6828,7 @@ export declare const i18n: I18n<{
|
|
|
6798
6828
|
remainingHours: string;
|
|
6799
6829
|
remainingDays: string;
|
|
6800
6830
|
};
|
|
6831
|
+
now: string;
|
|
6801
6832
|
};
|
|
6802
6833
|
sortable: {
|
|
6803
6834
|
addNewAtEnd: string;
|
|
@@ -6932,6 +6963,15 @@ export declare const i18n: I18n<{
|
|
|
6932
6963
|
title: string;
|
|
6933
6964
|
titleDone: string;
|
|
6934
6965
|
stopConfirmQuestion: string;
|
|
6966
|
+
limits: {
|
|
6967
|
+
uploadWarning: string;
|
|
6968
|
+
onUploadLimit: string;
|
|
6969
|
+
addingOverLimit: string;
|
|
6970
|
+
countAlreadyInProgress: string;
|
|
6971
|
+
onlyAllowedAtOnce: string;
|
|
6972
|
+
cancelOrUploadFirst: string;
|
|
6973
|
+
actionAddFirstItems: string;
|
|
6974
|
+
};
|
|
6935
6975
|
};
|
|
6936
6976
|
keyword: {
|
|
6937
6977
|
model: {
|
|
@@ -7012,6 +7052,10 @@ export declare const i18n: I18n<{
|
|
|
7012
7052
|
badge: string;
|
|
7013
7053
|
open: string;
|
|
7014
7054
|
close: string;
|
|
7055
|
+
confirmEdit: {
|
|
7056
|
+
ok: string;
|
|
7057
|
+
cancel: string;
|
|
7058
|
+
};
|
|
7015
7059
|
dataIterator: {
|
|
7016
7060
|
noResultsText: string;
|
|
7017
7061
|
loadingText: string;
|
|
@@ -7037,12 +7081,20 @@ export declare const i18n: I18n<{
|
|
|
7037
7081
|
lastPage: string;
|
|
7038
7082
|
pageText: string;
|
|
7039
7083
|
};
|
|
7084
|
+
dateRangeInput: {
|
|
7085
|
+
divider: string;
|
|
7086
|
+
};
|
|
7040
7087
|
datePicker: {
|
|
7041
7088
|
itemsSelected: string;
|
|
7042
|
-
|
|
7043
|
-
|
|
7044
|
-
|
|
7045
|
-
|
|
7089
|
+
range: {
|
|
7090
|
+
title: string;
|
|
7091
|
+
header: string;
|
|
7092
|
+
};
|
|
7093
|
+
title: string;
|
|
7094
|
+
header: string;
|
|
7095
|
+
input: {
|
|
7096
|
+
placeholder: string;
|
|
7097
|
+
};
|
|
7046
7098
|
};
|
|
7047
7099
|
noDataText: string;
|
|
7048
7100
|
carousel: {
|
|
@@ -7054,11 +7106,13 @@ export declare const i18n: I18n<{
|
|
|
7054
7106
|
};
|
|
7055
7107
|
calendar: {
|
|
7056
7108
|
moreEvents: string;
|
|
7109
|
+
today: string;
|
|
7057
7110
|
};
|
|
7058
7111
|
input: {
|
|
7059
7112
|
clear: string;
|
|
7060
7113
|
prependAction: string;
|
|
7061
7114
|
appendAction: string;
|
|
7115
|
+
otp: string;
|
|
7062
7116
|
};
|
|
7063
7117
|
fileInput: {
|
|
7064
7118
|
counter: string;
|
|
@@ -7079,11 +7133,20 @@ export declare const i18n: I18n<{
|
|
|
7079
7133
|
last: string;
|
|
7080
7134
|
};
|
|
7081
7135
|
};
|
|
7136
|
+
stepper: {
|
|
7137
|
+
next: string;
|
|
7138
|
+
prev: string;
|
|
7139
|
+
};
|
|
7082
7140
|
rating: {
|
|
7083
7141
|
ariaLabel: {
|
|
7084
7142
|
item: string;
|
|
7085
7143
|
};
|
|
7086
7144
|
};
|
|
7145
|
+
loading: string;
|
|
7146
|
+
infiniteScroll: {
|
|
7147
|
+
loadMore: string;
|
|
7148
|
+
empty: string;
|
|
7149
|
+
};
|
|
7087
7150
|
};
|
|
7088
7151
|
error: {
|
|
7089
7152
|
apiValidation: {
|
|
@@ -7146,7 +7209,7 @@ export declare interface ImageAware {
|
|
|
7146
7209
|
licenceId: IntegerId;
|
|
7147
7210
|
regionPosition: number;
|
|
7148
7211
|
};
|
|
7149
|
-
position
|
|
7212
|
+
position?: number;
|
|
7150
7213
|
}
|
|
7151
7214
|
|
|
7152
7215
|
export declare interface ImageCreateUpdateAware extends Omit<ImageAware, 'id'> {
|
|
@@ -7657,6 +7720,7 @@ export declare const messagesCs: {
|
|
|
7657
7720
|
remainingHours: string;
|
|
7658
7721
|
remainingDays: string;
|
|
7659
7722
|
};
|
|
7723
|
+
now: string;
|
|
7660
7724
|
};
|
|
7661
7725
|
sortable: {
|
|
7662
7726
|
addNewAtEnd: string;
|
|
@@ -7791,6 +7855,15 @@ export declare const messagesCs: {
|
|
|
7791
7855
|
title: string;
|
|
7792
7856
|
titleDone: string;
|
|
7793
7857
|
stopConfirmQuestion: string;
|
|
7858
|
+
limits: {
|
|
7859
|
+
uploadWarning: string;
|
|
7860
|
+
onUploadLimit: string;
|
|
7861
|
+
addingOverLimit: string;
|
|
7862
|
+
countAlreadyInProgress: string;
|
|
7863
|
+
onlyAllowedAtOnce: string;
|
|
7864
|
+
cancelOrUploadFirst: string;
|
|
7865
|
+
actionAddFirstItems: string;
|
|
7866
|
+
};
|
|
7794
7867
|
};
|
|
7795
7868
|
keyword: {
|
|
7796
7869
|
model: {
|
|
@@ -7871,6 +7944,10 @@ export declare const messagesCs: {
|
|
|
7871
7944
|
badge: string;
|
|
7872
7945
|
open: string;
|
|
7873
7946
|
close: string;
|
|
7947
|
+
confirmEdit: {
|
|
7948
|
+
ok: string;
|
|
7949
|
+
cancel: string;
|
|
7950
|
+
};
|
|
7874
7951
|
dataIterator: {
|
|
7875
7952
|
noResultsText: string;
|
|
7876
7953
|
loadingText: string;
|
|
@@ -7896,12 +7973,20 @@ export declare const messagesCs: {
|
|
|
7896
7973
|
lastPage: string;
|
|
7897
7974
|
pageText: string;
|
|
7898
7975
|
};
|
|
7976
|
+
dateRangeInput: {
|
|
7977
|
+
divider: string;
|
|
7978
|
+
};
|
|
7899
7979
|
datePicker: {
|
|
7900
7980
|
itemsSelected: string;
|
|
7901
|
-
|
|
7902
|
-
|
|
7903
|
-
|
|
7904
|
-
|
|
7981
|
+
range: {
|
|
7982
|
+
title: string;
|
|
7983
|
+
header: string;
|
|
7984
|
+
};
|
|
7985
|
+
title: string;
|
|
7986
|
+
header: string;
|
|
7987
|
+
input: {
|
|
7988
|
+
placeholder: string;
|
|
7989
|
+
};
|
|
7905
7990
|
};
|
|
7906
7991
|
noDataText: string;
|
|
7907
7992
|
carousel: {
|
|
@@ -7913,11 +7998,13 @@ export declare const messagesCs: {
|
|
|
7913
7998
|
};
|
|
7914
7999
|
calendar: {
|
|
7915
8000
|
moreEvents: string;
|
|
8001
|
+
today: string;
|
|
7916
8002
|
};
|
|
7917
8003
|
input: {
|
|
7918
8004
|
clear: string;
|
|
7919
8005
|
prependAction: string;
|
|
7920
8006
|
appendAction: string;
|
|
8007
|
+
otp: string;
|
|
7921
8008
|
};
|
|
7922
8009
|
fileInput: {
|
|
7923
8010
|
counter: string;
|
|
@@ -7938,11 +8025,20 @@ export declare const messagesCs: {
|
|
|
7938
8025
|
last: string;
|
|
7939
8026
|
};
|
|
7940
8027
|
};
|
|
8028
|
+
stepper: {
|
|
8029
|
+
next: string;
|
|
8030
|
+
prev: string;
|
|
8031
|
+
};
|
|
7941
8032
|
rating: {
|
|
7942
8033
|
ariaLabel: {
|
|
7943
8034
|
item: string;
|
|
7944
8035
|
};
|
|
7945
8036
|
};
|
|
8037
|
+
loading: string;
|
|
8038
|
+
infiniteScroll: {
|
|
8039
|
+
loadMore: string;
|
|
8040
|
+
empty: string;
|
|
8041
|
+
};
|
|
7946
8042
|
};
|
|
7947
8043
|
error: {
|
|
7948
8044
|
apiValidation: {
|
|
@@ -8307,6 +8403,7 @@ export declare const messagesEn: {
|
|
|
8307
8403
|
remainingHours: string;
|
|
8308
8404
|
remainingDays: string;
|
|
8309
8405
|
};
|
|
8406
|
+
now: string;
|
|
8310
8407
|
};
|
|
8311
8408
|
sortable: {
|
|
8312
8409
|
addNewAtEnd: string;
|
|
@@ -8441,6 +8538,15 @@ export declare const messagesEn: {
|
|
|
8441
8538
|
title: string;
|
|
8442
8539
|
titleDone: string;
|
|
8443
8540
|
stopConfirmQuestion: string;
|
|
8541
|
+
limits: {
|
|
8542
|
+
uploadWarning: string;
|
|
8543
|
+
onUploadLimit: string;
|
|
8544
|
+
addingOverLimit: string;
|
|
8545
|
+
countAlreadyInProgress: string;
|
|
8546
|
+
onlyAllowedAtOnce: string;
|
|
8547
|
+
cancelOrUploadFirst: string;
|
|
8548
|
+
actionAddFirstItems: string;
|
|
8549
|
+
};
|
|
8444
8550
|
};
|
|
8445
8551
|
keyword: {
|
|
8446
8552
|
model: {
|
|
@@ -8521,6 +8627,10 @@ export declare const messagesEn: {
|
|
|
8521
8627
|
badge: string;
|
|
8522
8628
|
open: string;
|
|
8523
8629
|
close: string;
|
|
8630
|
+
confirmEdit: {
|
|
8631
|
+
ok: string;
|
|
8632
|
+
cancel: string;
|
|
8633
|
+
};
|
|
8524
8634
|
dataIterator: {
|
|
8525
8635
|
noResultsText: string;
|
|
8526
8636
|
loadingText: string;
|
|
@@ -8546,12 +8656,20 @@ export declare const messagesEn: {
|
|
|
8546
8656
|
lastPage: string;
|
|
8547
8657
|
pageText: string;
|
|
8548
8658
|
};
|
|
8659
|
+
dateRangeInput: {
|
|
8660
|
+
divider: string;
|
|
8661
|
+
};
|
|
8549
8662
|
datePicker: {
|
|
8550
8663
|
itemsSelected: string;
|
|
8551
|
-
|
|
8552
|
-
|
|
8553
|
-
|
|
8554
|
-
|
|
8664
|
+
range: {
|
|
8665
|
+
title: string;
|
|
8666
|
+
header: string;
|
|
8667
|
+
};
|
|
8668
|
+
title: string;
|
|
8669
|
+
header: string;
|
|
8670
|
+
input: {
|
|
8671
|
+
placeholder: string;
|
|
8672
|
+
};
|
|
8555
8673
|
};
|
|
8556
8674
|
noDataText: string;
|
|
8557
8675
|
carousel: {
|
|
@@ -8563,11 +8681,13 @@ export declare const messagesEn: {
|
|
|
8563
8681
|
};
|
|
8564
8682
|
calendar: {
|
|
8565
8683
|
moreEvents: string;
|
|
8684
|
+
today: string;
|
|
8566
8685
|
};
|
|
8567
8686
|
input: {
|
|
8568
8687
|
clear: string;
|
|
8569
8688
|
prependAction: string;
|
|
8570
8689
|
appendAction: string;
|
|
8690
|
+
otp: string;
|
|
8571
8691
|
};
|
|
8572
8692
|
fileInput: {
|
|
8573
8693
|
counter: string;
|
|
@@ -8588,11 +8708,20 @@ export declare const messagesEn: {
|
|
|
8588
8708
|
last: string;
|
|
8589
8709
|
};
|
|
8590
8710
|
};
|
|
8711
|
+
stepper: {
|
|
8712
|
+
next: string;
|
|
8713
|
+
prev: string;
|
|
8714
|
+
};
|
|
8591
8715
|
rating: {
|
|
8592
8716
|
ariaLabel: {
|
|
8593
8717
|
item: string;
|
|
8594
8718
|
};
|
|
8595
8719
|
};
|
|
8720
|
+
loading: string;
|
|
8721
|
+
infiniteScroll: {
|
|
8722
|
+
loadMore: string;
|
|
8723
|
+
empty: string;
|
|
8724
|
+
};
|
|
8596
8725
|
};
|
|
8597
8726
|
error: {
|
|
8598
8727
|
apiValidation: {
|
|
@@ -8970,6 +9099,7 @@ export declare const messagesSk: {
|
|
|
8970
9099
|
remainingHours: string;
|
|
8971
9100
|
remainingDays: string;
|
|
8972
9101
|
};
|
|
9102
|
+
now: string;
|
|
8973
9103
|
};
|
|
8974
9104
|
sortable: {
|
|
8975
9105
|
addNewAtEnd: string;
|
|
@@ -9104,6 +9234,15 @@ export declare const messagesSk: {
|
|
|
9104
9234
|
title: string;
|
|
9105
9235
|
titleDone: string;
|
|
9106
9236
|
stopConfirmQuestion: string;
|
|
9237
|
+
limits: {
|
|
9238
|
+
uploadWarning: string;
|
|
9239
|
+
onUploadLimit: string;
|
|
9240
|
+
addingOverLimit: string;
|
|
9241
|
+
countAlreadyInProgress: string;
|
|
9242
|
+
onlyAllowedAtOnce: string;
|
|
9243
|
+
cancelOrUploadFirst: string;
|
|
9244
|
+
actionAddFirstItems: string;
|
|
9245
|
+
};
|
|
9107
9246
|
};
|
|
9108
9247
|
keyword: {
|
|
9109
9248
|
model: {
|
|
@@ -9184,6 +9323,10 @@ export declare const messagesSk: {
|
|
|
9184
9323
|
badge: string;
|
|
9185
9324
|
open: string;
|
|
9186
9325
|
close: string;
|
|
9326
|
+
confirmEdit: {
|
|
9327
|
+
ok: string;
|
|
9328
|
+
cancel: string;
|
|
9329
|
+
};
|
|
9187
9330
|
dataIterator: {
|
|
9188
9331
|
noResultsText: string;
|
|
9189
9332
|
loadingText: string;
|
|
@@ -9209,12 +9352,20 @@ export declare const messagesSk: {
|
|
|
9209
9352
|
lastPage: string;
|
|
9210
9353
|
pageText: string;
|
|
9211
9354
|
};
|
|
9355
|
+
dateRangeInput: {
|
|
9356
|
+
divider: string;
|
|
9357
|
+
};
|
|
9212
9358
|
datePicker: {
|
|
9213
9359
|
itemsSelected: string;
|
|
9214
|
-
|
|
9215
|
-
|
|
9216
|
-
|
|
9217
|
-
|
|
9360
|
+
range: {
|
|
9361
|
+
title: string;
|
|
9362
|
+
header: string;
|
|
9363
|
+
};
|
|
9364
|
+
title: string;
|
|
9365
|
+
header: string;
|
|
9366
|
+
input: {
|
|
9367
|
+
placeholder: string;
|
|
9368
|
+
};
|
|
9218
9369
|
};
|
|
9219
9370
|
noDataText: string;
|
|
9220
9371
|
carousel: {
|
|
@@ -9226,11 +9377,13 @@ export declare const messagesSk: {
|
|
|
9226
9377
|
};
|
|
9227
9378
|
calendar: {
|
|
9228
9379
|
moreEvents: string;
|
|
9380
|
+
today: string;
|
|
9229
9381
|
};
|
|
9230
9382
|
input: {
|
|
9231
9383
|
clear: string;
|
|
9232
9384
|
prependAction: string;
|
|
9233
9385
|
appendAction: string;
|
|
9386
|
+
otp: string;
|
|
9234
9387
|
};
|
|
9235
9388
|
fileInput: {
|
|
9236
9389
|
counter: string;
|
|
@@ -9251,11 +9404,20 @@ export declare const messagesSk: {
|
|
|
9251
9404
|
last: string;
|
|
9252
9405
|
};
|
|
9253
9406
|
};
|
|
9407
|
+
stepper: {
|
|
9408
|
+
next: string;
|
|
9409
|
+
prev: string;
|
|
9410
|
+
};
|
|
9254
9411
|
rating: {
|
|
9255
9412
|
ariaLabel: {
|
|
9256
9413
|
item: string;
|
|
9257
9414
|
};
|
|
9258
9415
|
};
|
|
9416
|
+
loading: string;
|
|
9417
|
+
infiniteScroll: {
|
|
9418
|
+
loadMore: string;
|
|
9419
|
+
empty: string;
|
|
9420
|
+
};
|
|
9259
9421
|
};
|
|
9260
9422
|
error: {
|
|
9261
9423
|
apiValidation: {
|