@anzusystems/common-admin 1.46.0 → 1.47.0-alpha2
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 +316 -72
- package/dist/common-admin.es.js +307 -303
- package/dist/common-admin.es.js.map +1 -1
- package/dist/lib-j7X_ApAh.js +23571 -0
- package/dist/lib-j7X_ApAh.js.map +1 -0
- package/dist/style.css +2 -2
- package/dist/{webfontloader-U2YFdwQC.js → webfontloader-kNngvlJT.js} +2 -2
- package/dist/{webfontloader-U2YFdwQC.js.map → webfontloader-kNngvlJT.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;
|
|
@@ -4236,6 +4261,68 @@ export declare const AIconGroup: DefineComponent<__VLS_WithDefaults_36<__VLS_Typ
|
|
|
4236
4261
|
secondaryText: null | string;
|
|
4237
4262
|
}, {}>;
|
|
4238
4263
|
|
|
4264
|
+
export declare const AImagePublicInput: DefineComponent<{
|
|
4265
|
+
modelValue: {
|
|
4266
|
+
required: true;
|
|
4267
|
+
type: PropType<IntegerIdNullable>;
|
|
4268
|
+
};
|
|
4269
|
+
dataCy: {
|
|
4270
|
+
type: PropType<string>;
|
|
4271
|
+
default: undefined;
|
|
4272
|
+
};
|
|
4273
|
+
image: {
|
|
4274
|
+
type: PropType<ImageAware>;
|
|
4275
|
+
default: undefined;
|
|
4276
|
+
};
|
|
4277
|
+
configName: {
|
|
4278
|
+
type: PropType<string>;
|
|
4279
|
+
default: string;
|
|
4280
|
+
};
|
|
4281
|
+
selectConfig: {
|
|
4282
|
+
type: PropType<ImageWidgetSelectConfig[]>;
|
|
4283
|
+
required: true;
|
|
4284
|
+
};
|
|
4285
|
+
labelT: {
|
|
4286
|
+
type: PropType<string>;
|
|
4287
|
+
default: string;
|
|
4288
|
+
};
|
|
4289
|
+
}, {
|
|
4290
|
+
submit: () => Promise<{
|
|
4291
|
+
asset: AssetDetailItemDto;
|
|
4292
|
+
image: ImageAware;
|
|
4293
|
+
} | undefined>;
|
|
4294
|
+
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<{
|
|
4295
|
+
modelValue: {
|
|
4296
|
+
required: true;
|
|
4297
|
+
type: PropType<IntegerIdNullable>;
|
|
4298
|
+
};
|
|
4299
|
+
dataCy: {
|
|
4300
|
+
type: PropType<string>;
|
|
4301
|
+
default: undefined;
|
|
4302
|
+
};
|
|
4303
|
+
image: {
|
|
4304
|
+
type: PropType<ImageAware>;
|
|
4305
|
+
default: undefined;
|
|
4306
|
+
};
|
|
4307
|
+
configName: {
|
|
4308
|
+
type: PropType<string>;
|
|
4309
|
+
default: string;
|
|
4310
|
+
};
|
|
4311
|
+
selectConfig: {
|
|
4312
|
+
type: PropType<ImageWidgetSelectConfig[]>;
|
|
4313
|
+
required: true;
|
|
4314
|
+
};
|
|
4315
|
+
labelT: {
|
|
4316
|
+
type: PropType<string>;
|
|
4317
|
+
default: string;
|
|
4318
|
+
};
|
|
4319
|
+
}>>, {
|
|
4320
|
+
dataCy: string;
|
|
4321
|
+
image: ImageAware;
|
|
4322
|
+
configName: string;
|
|
4323
|
+
labelT: string;
|
|
4324
|
+
}, {}>;
|
|
4325
|
+
|
|
4239
4326
|
export declare const AImageWidget: DefineComponent<__VLS_WithDefaults_63<__VLS_TypePropsToRuntimeProps_67<{
|
|
4240
4327
|
modelValue: IntegerIdNullable;
|
|
4241
4328
|
queueKey: UploadQueueKey;
|
|
@@ -4246,6 +4333,7 @@ export declare const AImageWidget: DefineComponent<__VLS_WithDefaults_63<__VLS_T
|
|
|
4246
4333
|
collab?: CollabComponentConfig;
|
|
4247
4334
|
label?: string | undefined;
|
|
4248
4335
|
readonly?: boolean | undefined;
|
|
4336
|
+
required?: boolean | undefined;
|
|
4249
4337
|
dataCy?: string | undefined;
|
|
4250
4338
|
expandOptions?: boolean | undefined;
|
|
4251
4339
|
expandMetadata?: boolean | undefined;
|
|
@@ -4258,6 +4346,7 @@ export declare const AImageWidget: DefineComponent<__VLS_WithDefaults_63<__VLS_T
|
|
|
4258
4346
|
label: undefined;
|
|
4259
4347
|
image: undefined;
|
|
4260
4348
|
readonly: boolean;
|
|
4349
|
+
required: boolean;
|
|
4261
4350
|
lockable: boolean;
|
|
4262
4351
|
lockedById: undefined;
|
|
4263
4352
|
dataCy: undefined;
|
|
@@ -4281,6 +4370,7 @@ export declare const AImageWidget: DefineComponent<__VLS_WithDefaults_63<__VLS_T
|
|
|
4281
4370
|
collab?: CollabComponentConfig;
|
|
4282
4371
|
label?: string | undefined;
|
|
4283
4372
|
readonly?: boolean | undefined;
|
|
4373
|
+
required?: boolean | undefined;
|
|
4284
4374
|
dataCy?: string | undefined;
|
|
4285
4375
|
expandOptions?: boolean | undefined;
|
|
4286
4376
|
expandMetadata?: boolean | undefined;
|
|
@@ -4293,6 +4383,7 @@ export declare const AImageWidget: DefineComponent<__VLS_WithDefaults_63<__VLS_T
|
|
|
4293
4383
|
label: undefined;
|
|
4294
4384
|
image: undefined;
|
|
4295
4385
|
readonly: boolean;
|
|
4386
|
+
required: boolean;
|
|
4296
4387
|
lockable: boolean;
|
|
4297
4388
|
lockedById: undefined;
|
|
4298
4389
|
dataCy: undefined;
|
|
@@ -4313,6 +4404,7 @@ export declare const AImageWidget: DefineComponent<__VLS_WithDefaults_63<__VLS_T
|
|
|
4313
4404
|
cachedUsers: CollabCachedUsersMap;
|
|
4314
4405
|
};
|
|
4315
4406
|
image: ImageAware;
|
|
4407
|
+
required: boolean;
|
|
4316
4408
|
label: string;
|
|
4317
4409
|
readonly: boolean;
|
|
4318
4410
|
configName: string;
|
|
@@ -4492,14 +4584,14 @@ export declare const AImageWidgetSimple: __VLS_WithTemplateSlots_24<DefineCompon
|
|
|
4492
4584
|
licenceId: number;
|
|
4493
4585
|
regionPosition: number;
|
|
4494
4586
|
};
|
|
4495
|
-
position
|
|
4587
|
+
position?: number | undefined;
|
|
4496
4588
|
} | {
|
|
4497
4589
|
id?: number | undefined;
|
|
4498
4590
|
texts: {
|
|
4499
4591
|
description: string;
|
|
4500
4592
|
source: string;
|
|
4501
4593
|
};
|
|
4502
|
-
position
|
|
4594
|
+
position?: number | undefined;
|
|
4503
4595
|
dam: {
|
|
4504
4596
|
damId: string;
|
|
4505
4597
|
licenceId: number;
|
|
@@ -4561,7 +4653,7 @@ export declare const ALogData: DefineComponent<__VLS_WithDefaults_30<__VLS_TypeP
|
|
|
4561
4653
|
data: any;
|
|
4562
4654
|
}>, {}>>>, {}, {}>;
|
|
4563
4655
|
|
|
4564
|
-
export declare const ALoginView: DefineComponent<
|
|
4656
|
+
export declare const ALoginView: DefineComponent<__VLS_WithDefaults_72<__VLS_TypePropsToRuntimeProps_76<{
|
|
4565
4657
|
title?: string | undefined;
|
|
4566
4658
|
logoUrl?: string | undefined;
|
|
4567
4659
|
loginUrl?: undefined | (() => string);
|
|
@@ -4571,7 +4663,7 @@ export declare const ALoginView: DefineComponent<__VLS_WithDefaults_71<__VLS_Typ
|
|
|
4571
4663
|
logoUrl: undefined;
|
|
4572
4664
|
loginUrl: undefined;
|
|
4573
4665
|
dataCy: string;
|
|
4574
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
4666
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_72<__VLS_TypePropsToRuntimeProps_76<{
|
|
4575
4667
|
title?: string | undefined;
|
|
4576
4668
|
logoUrl?: string | undefined;
|
|
4577
4669
|
loginUrl?: undefined | (() => string);
|
|
@@ -4594,11 +4686,11 @@ export declare const ALogLevelChip: DefineComponent<__VLS_WithDefaults_53<__VLS_
|
|
|
4594
4686
|
level: LogLevel;
|
|
4595
4687
|
}>, {}>>>, {}, {}>;
|
|
4596
4688
|
|
|
4597
|
-
export declare const ALogoutView: DefineComponent<
|
|
4689
|
+
export declare const ALogoutView: DefineComponent<__VLS_WithDefaults_73<__VLS_TypePropsToRuntimeProps_77<{
|
|
4598
4690
|
logoutUrl?: undefined | (() => string);
|
|
4599
4691
|
}>, {
|
|
4600
4692
|
logoutUrl: undefined;
|
|
4601
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
4693
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_73<__VLS_TypePropsToRuntimeProps_77<{
|
|
4602
4694
|
logoutUrl?: undefined | (() => string);
|
|
4603
4695
|
}>, {
|
|
4604
4696
|
logoutUrl: undefined;
|
|
@@ -4606,9 +4698,9 @@ export declare const ALogoutView: DefineComponent<__VLS_WithDefaults_72<__VLS_Ty
|
|
|
4606
4698
|
logoutUrl: () => string;
|
|
4607
4699
|
}, {}>;
|
|
4608
4700
|
|
|
4609
|
-
export declare const ANotFoundView: DefineComponent<
|
|
4701
|
+
export declare const ANotFoundView: DefineComponent<__VLS_WithDefaults_75<__VLS_TypePropsToRuntimeProps_79<{
|
|
4610
4702
|
returnRouteName: string;
|
|
4611
|
-
}>, {}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
4703
|
+
}>, {}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_75<__VLS_TypePropsToRuntimeProps_79<{
|
|
4612
4704
|
returnRouteName: string;
|
|
4613
4705
|
}>, {}>>>, {}, {}>;
|
|
4614
4706
|
|
|
@@ -5182,9 +5274,9 @@ declare enum AssetSelectReturnType {
|
|
|
5182
5274
|
|
|
5183
5275
|
export declare const ASubjectSelect: <TItem>(__VLS_props: {
|
|
5184
5276
|
pagination: Pagination;
|
|
5277
|
+
loading?: boolean | undefined;
|
|
5185
5278
|
submitFilter: Fn;
|
|
5186
5279
|
resetFilter: Fn;
|
|
5187
|
-
loading?: boolean | undefined;
|
|
5188
5280
|
modelValue?: boolean | undefined;
|
|
5189
5281
|
"onUpdate:modelValue"?: ((data: boolean) => any) | undefined;
|
|
5190
5282
|
onOnOpen?: (() => any) | undefined;
|
|
@@ -5226,9 +5318,9 @@ export declare const ASubjectSelect: <TItem>(__VLS_props: {
|
|
|
5226
5318
|
}>) => void) | undefined, __VLS_setup?: Promise<{
|
|
5227
5319
|
props: {
|
|
5228
5320
|
pagination: Pagination;
|
|
5321
|
+
loading?: boolean | undefined;
|
|
5229
5322
|
submitFilter: Fn;
|
|
5230
5323
|
resetFilter: Fn;
|
|
5231
|
-
loading?: boolean | undefined;
|
|
5232
5324
|
modelValue?: boolean | undefined;
|
|
5233
5325
|
"onUpdate:modelValue"?: ((data: boolean) => any) | undefined;
|
|
5234
5326
|
onOnOpen?: (() => any) | undefined;
|
|
@@ -5274,9 +5366,9 @@ export declare const ASubjectSelect: <TItem>(__VLS_props: {
|
|
|
5274
5366
|
__ctx?: {
|
|
5275
5367
|
props: {
|
|
5276
5368
|
pagination: Pagination;
|
|
5369
|
+
loading?: boolean | undefined;
|
|
5277
5370
|
submitFilter: Fn;
|
|
5278
5371
|
resetFilter: Fn;
|
|
5279
|
-
loading?: boolean | undefined;
|
|
5280
5372
|
modelValue?: boolean | undefined;
|
|
5281
5373
|
"onUpdate:modelValue"?: ((data: boolean) => any) | undefined;
|
|
5282
5374
|
onOnOpen?: (() => any) | undefined;
|
|
@@ -5487,9 +5579,9 @@ declare interface AudioAttributes {
|
|
|
5487
5579
|
bitrate: number;
|
|
5488
5580
|
}
|
|
5489
5581
|
|
|
5490
|
-
export declare const AUnauthorizedView: DefineComponent<
|
|
5582
|
+
export declare const AUnauthorizedView: DefineComponent<__VLS_WithDefaults_74<__VLS_TypePropsToRuntimeProps_78<{
|
|
5491
5583
|
returnRouteName: string;
|
|
5492
|
-
}>, {}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
5584
|
+
}>, {}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_74<__VLS_TypePropsToRuntimeProps_78<{
|
|
5493
5585
|
returnRouteName: string;
|
|
5494
5586
|
}>, {}>>>, {}, {}>;
|
|
5495
5587
|
|
|
@@ -6798,6 +6890,7 @@ export declare const i18n: I18n<{
|
|
|
6798
6890
|
remainingHours: string;
|
|
6799
6891
|
remainingDays: string;
|
|
6800
6892
|
};
|
|
6893
|
+
now: string;
|
|
6801
6894
|
};
|
|
6802
6895
|
sortable: {
|
|
6803
6896
|
addNewAtEnd: string;
|
|
@@ -6932,6 +7025,15 @@ export declare const i18n: I18n<{
|
|
|
6932
7025
|
title: string;
|
|
6933
7026
|
titleDone: string;
|
|
6934
7027
|
stopConfirmQuestion: string;
|
|
7028
|
+
limits: {
|
|
7029
|
+
uploadWarning: string;
|
|
7030
|
+
onUploadLimit: string;
|
|
7031
|
+
addingOverLimit: string;
|
|
7032
|
+
countAlreadyInProgress: string;
|
|
7033
|
+
onlyAllowedAtOnce: string;
|
|
7034
|
+
cancelOrUploadFirst: string;
|
|
7035
|
+
actionAddFirstItems: string;
|
|
7036
|
+
};
|
|
6935
7037
|
};
|
|
6936
7038
|
keyword: {
|
|
6937
7039
|
model: {
|
|
@@ -6972,6 +7074,11 @@ export declare const i18n: I18n<{
|
|
|
6972
7074
|
mimeType: string;
|
|
6973
7075
|
};
|
|
6974
7076
|
notificationsNotConnected: string;
|
|
7077
|
+
public: {
|
|
7078
|
+
idOrUrl: string;
|
|
7079
|
+
inputError: string;
|
|
7080
|
+
imagePreview: string;
|
|
7081
|
+
};
|
|
6975
7082
|
};
|
|
6976
7083
|
collab: {
|
|
6977
7084
|
alert: {
|
|
@@ -7012,6 +7119,10 @@ export declare const i18n: I18n<{
|
|
|
7012
7119
|
badge: string;
|
|
7013
7120
|
open: string;
|
|
7014
7121
|
close: string;
|
|
7122
|
+
confirmEdit: {
|
|
7123
|
+
ok: string;
|
|
7124
|
+
cancel: string;
|
|
7125
|
+
};
|
|
7015
7126
|
dataIterator: {
|
|
7016
7127
|
noResultsText: string;
|
|
7017
7128
|
loadingText: string;
|
|
@@ -7037,12 +7148,20 @@ export declare const i18n: I18n<{
|
|
|
7037
7148
|
lastPage: string;
|
|
7038
7149
|
pageText: string;
|
|
7039
7150
|
};
|
|
7151
|
+
dateRangeInput: {
|
|
7152
|
+
divider: string;
|
|
7153
|
+
};
|
|
7040
7154
|
datePicker: {
|
|
7041
7155
|
itemsSelected: string;
|
|
7042
|
-
|
|
7043
|
-
|
|
7044
|
-
|
|
7045
|
-
|
|
7156
|
+
range: {
|
|
7157
|
+
title: string;
|
|
7158
|
+
header: string;
|
|
7159
|
+
};
|
|
7160
|
+
title: string;
|
|
7161
|
+
header: string;
|
|
7162
|
+
input: {
|
|
7163
|
+
placeholder: string;
|
|
7164
|
+
};
|
|
7046
7165
|
};
|
|
7047
7166
|
noDataText: string;
|
|
7048
7167
|
carousel: {
|
|
@@ -7054,11 +7173,13 @@ export declare const i18n: I18n<{
|
|
|
7054
7173
|
};
|
|
7055
7174
|
calendar: {
|
|
7056
7175
|
moreEvents: string;
|
|
7176
|
+
today: string;
|
|
7057
7177
|
};
|
|
7058
7178
|
input: {
|
|
7059
7179
|
clear: string;
|
|
7060
7180
|
prependAction: string;
|
|
7061
7181
|
appendAction: string;
|
|
7182
|
+
otp: string;
|
|
7062
7183
|
};
|
|
7063
7184
|
fileInput: {
|
|
7064
7185
|
counter: string;
|
|
@@ -7079,11 +7200,20 @@ export declare const i18n: I18n<{
|
|
|
7079
7200
|
last: string;
|
|
7080
7201
|
};
|
|
7081
7202
|
};
|
|
7203
|
+
stepper: {
|
|
7204
|
+
next: string;
|
|
7205
|
+
prev: string;
|
|
7206
|
+
};
|
|
7082
7207
|
rating: {
|
|
7083
7208
|
ariaLabel: {
|
|
7084
7209
|
item: string;
|
|
7085
7210
|
};
|
|
7086
7211
|
};
|
|
7212
|
+
loading: string;
|
|
7213
|
+
infiniteScroll: {
|
|
7214
|
+
loadMore: string;
|
|
7215
|
+
empty: string;
|
|
7216
|
+
};
|
|
7087
7217
|
};
|
|
7088
7218
|
error: {
|
|
7089
7219
|
apiValidation: {
|
|
@@ -7146,7 +7276,7 @@ export declare interface ImageAware {
|
|
|
7146
7276
|
licenceId: IntegerId;
|
|
7147
7277
|
regionPosition: number;
|
|
7148
7278
|
};
|
|
7149
|
-
position
|
|
7279
|
+
position?: number;
|
|
7150
7280
|
}
|
|
7151
7281
|
|
|
7152
7282
|
export declare interface ImageCreateUpdateAware extends Omit<ImageAware, 'id'> {
|
|
@@ -7657,6 +7787,7 @@ export declare const messagesCs: {
|
|
|
7657
7787
|
remainingHours: string;
|
|
7658
7788
|
remainingDays: string;
|
|
7659
7789
|
};
|
|
7790
|
+
now: string;
|
|
7660
7791
|
};
|
|
7661
7792
|
sortable: {
|
|
7662
7793
|
addNewAtEnd: string;
|
|
@@ -7791,6 +7922,15 @@ export declare const messagesCs: {
|
|
|
7791
7922
|
title: string;
|
|
7792
7923
|
titleDone: string;
|
|
7793
7924
|
stopConfirmQuestion: string;
|
|
7925
|
+
limits: {
|
|
7926
|
+
uploadWarning: string;
|
|
7927
|
+
onUploadLimit: string;
|
|
7928
|
+
addingOverLimit: string;
|
|
7929
|
+
countAlreadyInProgress: string;
|
|
7930
|
+
onlyAllowedAtOnce: string;
|
|
7931
|
+
cancelOrUploadFirst: string;
|
|
7932
|
+
actionAddFirstItems: string;
|
|
7933
|
+
};
|
|
7794
7934
|
};
|
|
7795
7935
|
keyword: {
|
|
7796
7936
|
model: {
|
|
@@ -7831,6 +7971,11 @@ export declare const messagesCs: {
|
|
|
7831
7971
|
mimeType: string;
|
|
7832
7972
|
};
|
|
7833
7973
|
notificationsNotConnected: string;
|
|
7974
|
+
public: {
|
|
7975
|
+
idOrUrl: string;
|
|
7976
|
+
inputError: string;
|
|
7977
|
+
imagePreview: string;
|
|
7978
|
+
};
|
|
7834
7979
|
};
|
|
7835
7980
|
collab: {
|
|
7836
7981
|
alert: {
|
|
@@ -7871,6 +8016,10 @@ export declare const messagesCs: {
|
|
|
7871
8016
|
badge: string;
|
|
7872
8017
|
open: string;
|
|
7873
8018
|
close: string;
|
|
8019
|
+
confirmEdit: {
|
|
8020
|
+
ok: string;
|
|
8021
|
+
cancel: string;
|
|
8022
|
+
};
|
|
7874
8023
|
dataIterator: {
|
|
7875
8024
|
noResultsText: string;
|
|
7876
8025
|
loadingText: string;
|
|
@@ -7896,12 +8045,20 @@ export declare const messagesCs: {
|
|
|
7896
8045
|
lastPage: string;
|
|
7897
8046
|
pageText: string;
|
|
7898
8047
|
};
|
|
8048
|
+
dateRangeInput: {
|
|
8049
|
+
divider: string;
|
|
8050
|
+
};
|
|
7899
8051
|
datePicker: {
|
|
7900
8052
|
itemsSelected: string;
|
|
7901
|
-
|
|
7902
|
-
|
|
7903
|
-
|
|
7904
|
-
|
|
8053
|
+
range: {
|
|
8054
|
+
title: string;
|
|
8055
|
+
header: string;
|
|
8056
|
+
};
|
|
8057
|
+
title: string;
|
|
8058
|
+
header: string;
|
|
8059
|
+
input: {
|
|
8060
|
+
placeholder: string;
|
|
8061
|
+
};
|
|
7905
8062
|
};
|
|
7906
8063
|
noDataText: string;
|
|
7907
8064
|
carousel: {
|
|
@@ -7913,11 +8070,13 @@ export declare const messagesCs: {
|
|
|
7913
8070
|
};
|
|
7914
8071
|
calendar: {
|
|
7915
8072
|
moreEvents: string;
|
|
8073
|
+
today: string;
|
|
7916
8074
|
};
|
|
7917
8075
|
input: {
|
|
7918
8076
|
clear: string;
|
|
7919
8077
|
prependAction: string;
|
|
7920
8078
|
appendAction: string;
|
|
8079
|
+
otp: string;
|
|
7921
8080
|
};
|
|
7922
8081
|
fileInput: {
|
|
7923
8082
|
counter: string;
|
|
@@ -7938,11 +8097,20 @@ export declare const messagesCs: {
|
|
|
7938
8097
|
last: string;
|
|
7939
8098
|
};
|
|
7940
8099
|
};
|
|
8100
|
+
stepper: {
|
|
8101
|
+
next: string;
|
|
8102
|
+
prev: string;
|
|
8103
|
+
};
|
|
7941
8104
|
rating: {
|
|
7942
8105
|
ariaLabel: {
|
|
7943
8106
|
item: string;
|
|
7944
8107
|
};
|
|
7945
8108
|
};
|
|
8109
|
+
loading: string;
|
|
8110
|
+
infiniteScroll: {
|
|
8111
|
+
loadMore: string;
|
|
8112
|
+
empty: string;
|
|
8113
|
+
};
|
|
7946
8114
|
};
|
|
7947
8115
|
error: {
|
|
7948
8116
|
apiValidation: {
|
|
@@ -8307,6 +8475,7 @@ export declare const messagesEn: {
|
|
|
8307
8475
|
remainingHours: string;
|
|
8308
8476
|
remainingDays: string;
|
|
8309
8477
|
};
|
|
8478
|
+
now: string;
|
|
8310
8479
|
};
|
|
8311
8480
|
sortable: {
|
|
8312
8481
|
addNewAtEnd: string;
|
|
@@ -8441,6 +8610,15 @@ export declare const messagesEn: {
|
|
|
8441
8610
|
title: string;
|
|
8442
8611
|
titleDone: string;
|
|
8443
8612
|
stopConfirmQuestion: string;
|
|
8613
|
+
limits: {
|
|
8614
|
+
uploadWarning: string;
|
|
8615
|
+
onUploadLimit: string;
|
|
8616
|
+
addingOverLimit: string;
|
|
8617
|
+
countAlreadyInProgress: string;
|
|
8618
|
+
onlyAllowedAtOnce: string;
|
|
8619
|
+
cancelOrUploadFirst: string;
|
|
8620
|
+
actionAddFirstItems: string;
|
|
8621
|
+
};
|
|
8444
8622
|
};
|
|
8445
8623
|
keyword: {
|
|
8446
8624
|
model: {
|
|
@@ -8481,6 +8659,11 @@ export declare const messagesEn: {
|
|
|
8481
8659
|
mimeType: string;
|
|
8482
8660
|
};
|
|
8483
8661
|
notificationsNotConnected: string;
|
|
8662
|
+
public: {
|
|
8663
|
+
idOrUrl: string;
|
|
8664
|
+
inputError: string;
|
|
8665
|
+
imagePreview: string;
|
|
8666
|
+
};
|
|
8484
8667
|
};
|
|
8485
8668
|
collab: {
|
|
8486
8669
|
alert: {
|
|
@@ -8521,6 +8704,10 @@ export declare const messagesEn: {
|
|
|
8521
8704
|
badge: string;
|
|
8522
8705
|
open: string;
|
|
8523
8706
|
close: string;
|
|
8707
|
+
confirmEdit: {
|
|
8708
|
+
ok: string;
|
|
8709
|
+
cancel: string;
|
|
8710
|
+
};
|
|
8524
8711
|
dataIterator: {
|
|
8525
8712
|
noResultsText: string;
|
|
8526
8713
|
loadingText: string;
|
|
@@ -8546,12 +8733,20 @@ export declare const messagesEn: {
|
|
|
8546
8733
|
lastPage: string;
|
|
8547
8734
|
pageText: string;
|
|
8548
8735
|
};
|
|
8736
|
+
dateRangeInput: {
|
|
8737
|
+
divider: string;
|
|
8738
|
+
};
|
|
8549
8739
|
datePicker: {
|
|
8550
8740
|
itemsSelected: string;
|
|
8551
|
-
|
|
8552
|
-
|
|
8553
|
-
|
|
8554
|
-
|
|
8741
|
+
range: {
|
|
8742
|
+
title: string;
|
|
8743
|
+
header: string;
|
|
8744
|
+
};
|
|
8745
|
+
title: string;
|
|
8746
|
+
header: string;
|
|
8747
|
+
input: {
|
|
8748
|
+
placeholder: string;
|
|
8749
|
+
};
|
|
8555
8750
|
};
|
|
8556
8751
|
noDataText: string;
|
|
8557
8752
|
carousel: {
|
|
@@ -8563,11 +8758,13 @@ export declare const messagesEn: {
|
|
|
8563
8758
|
};
|
|
8564
8759
|
calendar: {
|
|
8565
8760
|
moreEvents: string;
|
|
8761
|
+
today: string;
|
|
8566
8762
|
};
|
|
8567
8763
|
input: {
|
|
8568
8764
|
clear: string;
|
|
8569
8765
|
prependAction: string;
|
|
8570
8766
|
appendAction: string;
|
|
8767
|
+
otp: string;
|
|
8571
8768
|
};
|
|
8572
8769
|
fileInput: {
|
|
8573
8770
|
counter: string;
|
|
@@ -8588,11 +8785,20 @@ export declare const messagesEn: {
|
|
|
8588
8785
|
last: string;
|
|
8589
8786
|
};
|
|
8590
8787
|
};
|
|
8788
|
+
stepper: {
|
|
8789
|
+
next: string;
|
|
8790
|
+
prev: string;
|
|
8791
|
+
};
|
|
8591
8792
|
rating: {
|
|
8592
8793
|
ariaLabel: {
|
|
8593
8794
|
item: string;
|
|
8594
8795
|
};
|
|
8595
8796
|
};
|
|
8797
|
+
loading: string;
|
|
8798
|
+
infiniteScroll: {
|
|
8799
|
+
loadMore: string;
|
|
8800
|
+
empty: string;
|
|
8801
|
+
};
|
|
8596
8802
|
};
|
|
8597
8803
|
error: {
|
|
8598
8804
|
apiValidation: {
|
|
@@ -8970,6 +9176,7 @@ export declare const messagesSk: {
|
|
|
8970
9176
|
remainingHours: string;
|
|
8971
9177
|
remainingDays: string;
|
|
8972
9178
|
};
|
|
9179
|
+
now: string;
|
|
8973
9180
|
};
|
|
8974
9181
|
sortable: {
|
|
8975
9182
|
addNewAtEnd: string;
|
|
@@ -9104,6 +9311,15 @@ export declare const messagesSk: {
|
|
|
9104
9311
|
title: string;
|
|
9105
9312
|
titleDone: string;
|
|
9106
9313
|
stopConfirmQuestion: string;
|
|
9314
|
+
limits: {
|
|
9315
|
+
uploadWarning: string;
|
|
9316
|
+
onUploadLimit: string;
|
|
9317
|
+
addingOverLimit: string;
|
|
9318
|
+
countAlreadyInProgress: string;
|
|
9319
|
+
onlyAllowedAtOnce: string;
|
|
9320
|
+
cancelOrUploadFirst: string;
|
|
9321
|
+
actionAddFirstItems: string;
|
|
9322
|
+
};
|
|
9107
9323
|
};
|
|
9108
9324
|
keyword: {
|
|
9109
9325
|
model: {
|
|
@@ -9144,6 +9360,11 @@ export declare const messagesSk: {
|
|
|
9144
9360
|
mimeType: string;
|
|
9145
9361
|
};
|
|
9146
9362
|
notificationsNotConnected: string;
|
|
9363
|
+
public: {
|
|
9364
|
+
idOrUrl: string;
|
|
9365
|
+
inputError: string;
|
|
9366
|
+
imagePreview: string;
|
|
9367
|
+
};
|
|
9147
9368
|
};
|
|
9148
9369
|
collab: {
|
|
9149
9370
|
alert: {
|
|
@@ -9184,6 +9405,10 @@ export declare const messagesSk: {
|
|
|
9184
9405
|
badge: string;
|
|
9185
9406
|
open: string;
|
|
9186
9407
|
close: string;
|
|
9408
|
+
confirmEdit: {
|
|
9409
|
+
ok: string;
|
|
9410
|
+
cancel: string;
|
|
9411
|
+
};
|
|
9187
9412
|
dataIterator: {
|
|
9188
9413
|
noResultsText: string;
|
|
9189
9414
|
loadingText: string;
|
|
@@ -9209,12 +9434,20 @@ export declare const messagesSk: {
|
|
|
9209
9434
|
lastPage: string;
|
|
9210
9435
|
pageText: string;
|
|
9211
9436
|
};
|
|
9437
|
+
dateRangeInput: {
|
|
9438
|
+
divider: string;
|
|
9439
|
+
};
|
|
9212
9440
|
datePicker: {
|
|
9213
9441
|
itemsSelected: string;
|
|
9214
|
-
|
|
9215
|
-
|
|
9216
|
-
|
|
9217
|
-
|
|
9442
|
+
range: {
|
|
9443
|
+
title: string;
|
|
9444
|
+
header: string;
|
|
9445
|
+
};
|
|
9446
|
+
title: string;
|
|
9447
|
+
header: string;
|
|
9448
|
+
input: {
|
|
9449
|
+
placeholder: string;
|
|
9450
|
+
};
|
|
9218
9451
|
};
|
|
9219
9452
|
noDataText: string;
|
|
9220
9453
|
carousel: {
|
|
@@ -9226,11 +9459,13 @@ export declare const messagesSk: {
|
|
|
9226
9459
|
};
|
|
9227
9460
|
calendar: {
|
|
9228
9461
|
moreEvents: string;
|
|
9462
|
+
today: string;
|
|
9229
9463
|
};
|
|
9230
9464
|
input: {
|
|
9231
9465
|
clear: string;
|
|
9232
9466
|
prependAction: string;
|
|
9233
9467
|
appendAction: string;
|
|
9468
|
+
otp: string;
|
|
9234
9469
|
};
|
|
9235
9470
|
fileInput: {
|
|
9236
9471
|
counter: string;
|
|
@@ -9251,11 +9486,20 @@ export declare const messagesSk: {
|
|
|
9251
9486
|
last: string;
|
|
9252
9487
|
};
|
|
9253
9488
|
};
|
|
9489
|
+
stepper: {
|
|
9490
|
+
next: string;
|
|
9491
|
+
prev: string;
|
|
9492
|
+
};
|
|
9254
9493
|
rating: {
|
|
9255
9494
|
ariaLabel: {
|
|
9256
9495
|
item: string;
|
|
9257
9496
|
};
|
|
9258
9497
|
};
|
|
9498
|
+
loading: string;
|
|
9499
|
+
infiniteScroll: {
|
|
9500
|
+
loadMore: string;
|
|
9501
|
+
empty: string;
|
|
9502
|
+
};
|
|
9259
9503
|
};
|
|
9260
9504
|
error: {
|
|
9261
9505
|
apiValidation: {
|