@anzusystems/common-admin 1.46.0 → 1.47.0-alpha10
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 +329 -72
- package/dist/common-admin.es.js +307 -303
- package/dist/common-admin.es.js.map +1 -1
- package/dist/lib-UviqqINM.js +23578 -0
- package/dist/lib-UviqqINM.js.map +1 -0
- package/dist/style.css +2 -2
- package/dist/{webfontloader-U2YFdwQC.js → webfontloader--hzLfiBf.js} +2 -2
- package/dist/{webfontloader-U2YFdwQC.js.map → webfontloader--hzLfiBf.js.map} +1 -1
- package/package.json +31 -33
- 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
|
|
|
@@ -4797,6 +4889,7 @@ export declare const ASortable: __VLS_WithTemplateSlots_21<DefineComponent<__VLS
|
|
|
4797
4889
|
disableDefaultSort?: boolean | undefined;
|
|
4798
4890
|
updatePosition?: boolean | undefined;
|
|
4799
4891
|
positionField?: string | undefined;
|
|
4892
|
+
positionMultiplier?: number | undefined;
|
|
4800
4893
|
showAddAfterButton?: boolean | undefined;
|
|
4801
4894
|
showAddLastButton?: boolean | undefined;
|
|
4802
4895
|
showDeleteButton?: boolean | undefined;
|
|
@@ -4811,6 +4904,7 @@ export declare const ASortable: __VLS_WithTemplateSlots_21<DefineComponent<__VLS
|
|
|
4811
4904
|
disableDefaultSort: boolean;
|
|
4812
4905
|
updatePosition: boolean;
|
|
4813
4906
|
positionField: string;
|
|
4907
|
+
positionMultiplier: number;
|
|
4814
4908
|
showAddAfterButton: boolean;
|
|
4815
4909
|
showAddLastButton: boolean;
|
|
4816
4910
|
showDeleteButton: boolean;
|
|
@@ -4842,6 +4936,7 @@ export declare const ASortable: __VLS_WithTemplateSlots_21<DefineComponent<__VLS
|
|
|
4842
4936
|
disableDefaultSort?: boolean | undefined;
|
|
4843
4937
|
updatePosition?: boolean | undefined;
|
|
4844
4938
|
positionField?: string | undefined;
|
|
4939
|
+
positionMultiplier?: number | undefined;
|
|
4845
4940
|
showAddAfterButton?: boolean | undefined;
|
|
4846
4941
|
showAddLastButton?: boolean | undefined;
|
|
4847
4942
|
showDeleteButton?: boolean | undefined;
|
|
@@ -4856,6 +4951,7 @@ export declare const ASortable: __VLS_WithTemplateSlots_21<DefineComponent<__VLS
|
|
|
4856
4951
|
disableDefaultSort: boolean;
|
|
4857
4952
|
updatePosition: boolean;
|
|
4858
4953
|
positionField: string;
|
|
4954
|
+
positionMultiplier: number;
|
|
4859
4955
|
showAddAfterButton: boolean;
|
|
4860
4956
|
showAddLastButton: boolean;
|
|
4861
4957
|
showDeleteButton: boolean;
|
|
@@ -4878,6 +4974,7 @@ export declare const ASortable: __VLS_WithTemplateSlots_21<DefineComponent<__VLS
|
|
|
4878
4974
|
disableDefaultSort: boolean;
|
|
4879
4975
|
updatePosition: boolean;
|
|
4880
4976
|
positionField: string;
|
|
4977
|
+
positionMultiplier: number;
|
|
4881
4978
|
showAddAfterButton: boolean;
|
|
4882
4979
|
showAddLastButton: boolean;
|
|
4883
4980
|
showDeleteButton: boolean;
|
|
@@ -5182,9 +5279,9 @@ declare enum AssetSelectReturnType {
|
|
|
5182
5279
|
|
|
5183
5280
|
export declare const ASubjectSelect: <TItem>(__VLS_props: {
|
|
5184
5281
|
pagination: Pagination;
|
|
5282
|
+
loading?: boolean | undefined;
|
|
5185
5283
|
submitFilter: Fn;
|
|
5186
5284
|
resetFilter: Fn;
|
|
5187
|
-
loading?: boolean | undefined;
|
|
5188
5285
|
modelValue?: boolean | undefined;
|
|
5189
5286
|
"onUpdate:modelValue"?: ((data: boolean) => any) | undefined;
|
|
5190
5287
|
onOnOpen?: (() => any) | undefined;
|
|
@@ -5226,9 +5323,9 @@ export declare const ASubjectSelect: <TItem>(__VLS_props: {
|
|
|
5226
5323
|
}>) => void) | undefined, __VLS_setup?: Promise<{
|
|
5227
5324
|
props: {
|
|
5228
5325
|
pagination: Pagination;
|
|
5326
|
+
loading?: boolean | undefined;
|
|
5229
5327
|
submitFilter: Fn;
|
|
5230
5328
|
resetFilter: Fn;
|
|
5231
|
-
loading?: boolean | undefined;
|
|
5232
5329
|
modelValue?: boolean | undefined;
|
|
5233
5330
|
"onUpdate:modelValue"?: ((data: boolean) => any) | undefined;
|
|
5234
5331
|
onOnOpen?: (() => any) | undefined;
|
|
@@ -5274,9 +5371,9 @@ export declare const ASubjectSelect: <TItem>(__VLS_props: {
|
|
|
5274
5371
|
__ctx?: {
|
|
5275
5372
|
props: {
|
|
5276
5373
|
pagination: Pagination;
|
|
5374
|
+
loading?: boolean | undefined;
|
|
5277
5375
|
submitFilter: Fn;
|
|
5278
5376
|
resetFilter: Fn;
|
|
5279
|
-
loading?: boolean | undefined;
|
|
5280
5377
|
modelValue?: boolean | undefined;
|
|
5281
5378
|
"onUpdate:modelValue"?: ((data: boolean) => any) | undefined;
|
|
5282
5379
|
onOnOpen?: (() => any) | undefined;
|
|
@@ -5487,9 +5584,9 @@ declare interface AudioAttributes {
|
|
|
5487
5584
|
bitrate: number;
|
|
5488
5585
|
}
|
|
5489
5586
|
|
|
5490
|
-
export declare const AUnauthorizedView: DefineComponent<
|
|
5587
|
+
export declare const AUnauthorizedView: DefineComponent<__VLS_WithDefaults_74<__VLS_TypePropsToRuntimeProps_78<{
|
|
5491
5588
|
returnRouteName: string;
|
|
5492
|
-
}>, {}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<
|
|
5589
|
+
}>, {}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_74<__VLS_TypePropsToRuntimeProps_78<{
|
|
5493
5590
|
returnRouteName: string;
|
|
5494
5591
|
}>, {}>>>, {}, {}>;
|
|
5495
5592
|
|
|
@@ -6513,6 +6610,8 @@ export declare const i18n: I18n<{
|
|
|
6513
6610
|
refresh: string;
|
|
6514
6611
|
forwards: string;
|
|
6515
6612
|
backwards: string;
|
|
6613
|
+
next: string;
|
|
6614
|
+
prev: string;
|
|
6516
6615
|
loadMore: string;
|
|
6517
6616
|
};
|
|
6518
6617
|
model: {
|
|
@@ -6798,6 +6897,7 @@ export declare const i18n: I18n<{
|
|
|
6798
6897
|
remainingHours: string;
|
|
6799
6898
|
remainingDays: string;
|
|
6800
6899
|
};
|
|
6900
|
+
now: string;
|
|
6801
6901
|
};
|
|
6802
6902
|
sortable: {
|
|
6803
6903
|
addNewAtEnd: string;
|
|
@@ -6932,6 +7032,15 @@ export declare const i18n: I18n<{
|
|
|
6932
7032
|
title: string;
|
|
6933
7033
|
titleDone: string;
|
|
6934
7034
|
stopConfirmQuestion: string;
|
|
7035
|
+
limits: {
|
|
7036
|
+
uploadWarning: string;
|
|
7037
|
+
onUploadLimit: string;
|
|
7038
|
+
addingOverLimit: string;
|
|
7039
|
+
countAlreadyInProgress: string;
|
|
7040
|
+
onlyAllowedAtOnce: string;
|
|
7041
|
+
cancelOrUploadFirst: string;
|
|
7042
|
+
actionAddFirstItems: string;
|
|
7043
|
+
};
|
|
6935
7044
|
};
|
|
6936
7045
|
keyword: {
|
|
6937
7046
|
model: {
|
|
@@ -6972,6 +7081,11 @@ export declare const i18n: I18n<{
|
|
|
6972
7081
|
mimeType: string;
|
|
6973
7082
|
};
|
|
6974
7083
|
notificationsNotConnected: string;
|
|
7084
|
+
public: {
|
|
7085
|
+
idOrUrl: string;
|
|
7086
|
+
inputError: string;
|
|
7087
|
+
imagePreview: string;
|
|
7088
|
+
};
|
|
6975
7089
|
};
|
|
6976
7090
|
collab: {
|
|
6977
7091
|
alert: {
|
|
@@ -7012,6 +7126,10 @@ export declare const i18n: I18n<{
|
|
|
7012
7126
|
badge: string;
|
|
7013
7127
|
open: string;
|
|
7014
7128
|
close: string;
|
|
7129
|
+
confirmEdit: {
|
|
7130
|
+
ok: string;
|
|
7131
|
+
cancel: string;
|
|
7132
|
+
};
|
|
7015
7133
|
dataIterator: {
|
|
7016
7134
|
noResultsText: string;
|
|
7017
7135
|
loadingText: string;
|
|
@@ -7037,12 +7155,20 @@ export declare const i18n: I18n<{
|
|
|
7037
7155
|
lastPage: string;
|
|
7038
7156
|
pageText: string;
|
|
7039
7157
|
};
|
|
7158
|
+
dateRangeInput: {
|
|
7159
|
+
divider: string;
|
|
7160
|
+
};
|
|
7040
7161
|
datePicker: {
|
|
7041
7162
|
itemsSelected: string;
|
|
7042
|
-
|
|
7043
|
-
|
|
7044
|
-
|
|
7045
|
-
|
|
7163
|
+
range: {
|
|
7164
|
+
title: string;
|
|
7165
|
+
header: string;
|
|
7166
|
+
};
|
|
7167
|
+
title: string;
|
|
7168
|
+
header: string;
|
|
7169
|
+
input: {
|
|
7170
|
+
placeholder: string;
|
|
7171
|
+
};
|
|
7046
7172
|
};
|
|
7047
7173
|
noDataText: string;
|
|
7048
7174
|
carousel: {
|
|
@@ -7054,11 +7180,13 @@ export declare const i18n: I18n<{
|
|
|
7054
7180
|
};
|
|
7055
7181
|
calendar: {
|
|
7056
7182
|
moreEvents: string;
|
|
7183
|
+
today: string;
|
|
7057
7184
|
};
|
|
7058
7185
|
input: {
|
|
7059
7186
|
clear: string;
|
|
7060
7187
|
prependAction: string;
|
|
7061
7188
|
appendAction: string;
|
|
7189
|
+
otp: string;
|
|
7062
7190
|
};
|
|
7063
7191
|
fileInput: {
|
|
7064
7192
|
counter: string;
|
|
@@ -7079,11 +7207,20 @@ export declare const i18n: I18n<{
|
|
|
7079
7207
|
last: string;
|
|
7080
7208
|
};
|
|
7081
7209
|
};
|
|
7210
|
+
stepper: {
|
|
7211
|
+
next: string;
|
|
7212
|
+
prev: string;
|
|
7213
|
+
};
|
|
7082
7214
|
rating: {
|
|
7083
7215
|
ariaLabel: {
|
|
7084
7216
|
item: string;
|
|
7085
7217
|
};
|
|
7086
7218
|
};
|
|
7219
|
+
loading: string;
|
|
7220
|
+
infiniteScroll: {
|
|
7221
|
+
loadMore: string;
|
|
7222
|
+
empty: string;
|
|
7223
|
+
};
|
|
7087
7224
|
};
|
|
7088
7225
|
error: {
|
|
7089
7226
|
apiValidation: {
|
|
@@ -7146,7 +7283,7 @@ export declare interface ImageAware {
|
|
|
7146
7283
|
licenceId: IntegerId;
|
|
7147
7284
|
regionPosition: number;
|
|
7148
7285
|
};
|
|
7149
|
-
position
|
|
7286
|
+
position?: number;
|
|
7150
7287
|
}
|
|
7151
7288
|
|
|
7152
7289
|
export declare interface ImageCreateUpdateAware extends Omit<ImageAware, 'id'> {
|
|
@@ -7372,6 +7509,8 @@ export declare const messagesCs: {
|
|
|
7372
7509
|
refresh: string;
|
|
7373
7510
|
forwards: string;
|
|
7374
7511
|
backwards: string;
|
|
7512
|
+
next: string;
|
|
7513
|
+
prev: string;
|
|
7375
7514
|
loadMore: string;
|
|
7376
7515
|
};
|
|
7377
7516
|
model: {
|
|
@@ -7657,6 +7796,7 @@ export declare const messagesCs: {
|
|
|
7657
7796
|
remainingHours: string;
|
|
7658
7797
|
remainingDays: string;
|
|
7659
7798
|
};
|
|
7799
|
+
now: string;
|
|
7660
7800
|
};
|
|
7661
7801
|
sortable: {
|
|
7662
7802
|
addNewAtEnd: string;
|
|
@@ -7791,6 +7931,15 @@ export declare const messagesCs: {
|
|
|
7791
7931
|
title: string;
|
|
7792
7932
|
titleDone: string;
|
|
7793
7933
|
stopConfirmQuestion: string;
|
|
7934
|
+
limits: {
|
|
7935
|
+
uploadWarning: string;
|
|
7936
|
+
onUploadLimit: string;
|
|
7937
|
+
addingOverLimit: string;
|
|
7938
|
+
countAlreadyInProgress: string;
|
|
7939
|
+
onlyAllowedAtOnce: string;
|
|
7940
|
+
cancelOrUploadFirst: string;
|
|
7941
|
+
actionAddFirstItems: string;
|
|
7942
|
+
};
|
|
7794
7943
|
};
|
|
7795
7944
|
keyword: {
|
|
7796
7945
|
model: {
|
|
@@ -7831,6 +7980,11 @@ export declare const messagesCs: {
|
|
|
7831
7980
|
mimeType: string;
|
|
7832
7981
|
};
|
|
7833
7982
|
notificationsNotConnected: string;
|
|
7983
|
+
public: {
|
|
7984
|
+
idOrUrl: string;
|
|
7985
|
+
inputError: string;
|
|
7986
|
+
imagePreview: string;
|
|
7987
|
+
};
|
|
7834
7988
|
};
|
|
7835
7989
|
collab: {
|
|
7836
7990
|
alert: {
|
|
@@ -7871,6 +8025,10 @@ export declare const messagesCs: {
|
|
|
7871
8025
|
badge: string;
|
|
7872
8026
|
open: string;
|
|
7873
8027
|
close: string;
|
|
8028
|
+
confirmEdit: {
|
|
8029
|
+
ok: string;
|
|
8030
|
+
cancel: string;
|
|
8031
|
+
};
|
|
7874
8032
|
dataIterator: {
|
|
7875
8033
|
noResultsText: string;
|
|
7876
8034
|
loadingText: string;
|
|
@@ -7896,12 +8054,20 @@ export declare const messagesCs: {
|
|
|
7896
8054
|
lastPage: string;
|
|
7897
8055
|
pageText: string;
|
|
7898
8056
|
};
|
|
8057
|
+
dateRangeInput: {
|
|
8058
|
+
divider: string;
|
|
8059
|
+
};
|
|
7899
8060
|
datePicker: {
|
|
7900
8061
|
itemsSelected: string;
|
|
7901
|
-
|
|
7902
|
-
|
|
7903
|
-
|
|
7904
|
-
|
|
8062
|
+
range: {
|
|
8063
|
+
title: string;
|
|
8064
|
+
header: string;
|
|
8065
|
+
};
|
|
8066
|
+
title: string;
|
|
8067
|
+
header: string;
|
|
8068
|
+
input: {
|
|
8069
|
+
placeholder: string;
|
|
8070
|
+
};
|
|
7905
8071
|
};
|
|
7906
8072
|
noDataText: string;
|
|
7907
8073
|
carousel: {
|
|
@@ -7913,11 +8079,13 @@ export declare const messagesCs: {
|
|
|
7913
8079
|
};
|
|
7914
8080
|
calendar: {
|
|
7915
8081
|
moreEvents: string;
|
|
8082
|
+
today: string;
|
|
7916
8083
|
};
|
|
7917
8084
|
input: {
|
|
7918
8085
|
clear: string;
|
|
7919
8086
|
prependAction: string;
|
|
7920
8087
|
appendAction: string;
|
|
8088
|
+
otp: string;
|
|
7921
8089
|
};
|
|
7922
8090
|
fileInput: {
|
|
7923
8091
|
counter: string;
|
|
@@ -7938,11 +8106,20 @@ export declare const messagesCs: {
|
|
|
7938
8106
|
last: string;
|
|
7939
8107
|
};
|
|
7940
8108
|
};
|
|
8109
|
+
stepper: {
|
|
8110
|
+
next: string;
|
|
8111
|
+
prev: string;
|
|
8112
|
+
};
|
|
7941
8113
|
rating: {
|
|
7942
8114
|
ariaLabel: {
|
|
7943
8115
|
item: string;
|
|
7944
8116
|
};
|
|
7945
8117
|
};
|
|
8118
|
+
loading: string;
|
|
8119
|
+
infiniteScroll: {
|
|
8120
|
+
loadMore: string;
|
|
8121
|
+
empty: string;
|
|
8122
|
+
};
|
|
7946
8123
|
};
|
|
7947
8124
|
error: {
|
|
7948
8125
|
apiValidation: {
|
|
@@ -8022,6 +8199,8 @@ export declare const messagesEn: {
|
|
|
8022
8199
|
refresh: string;
|
|
8023
8200
|
forwards: string;
|
|
8024
8201
|
backwards: string;
|
|
8202
|
+
next: string;
|
|
8203
|
+
prev: string;
|
|
8025
8204
|
loadMore: string;
|
|
8026
8205
|
};
|
|
8027
8206
|
model: {
|
|
@@ -8307,6 +8486,7 @@ export declare const messagesEn: {
|
|
|
8307
8486
|
remainingHours: string;
|
|
8308
8487
|
remainingDays: string;
|
|
8309
8488
|
};
|
|
8489
|
+
now: string;
|
|
8310
8490
|
};
|
|
8311
8491
|
sortable: {
|
|
8312
8492
|
addNewAtEnd: string;
|
|
@@ -8441,6 +8621,15 @@ export declare const messagesEn: {
|
|
|
8441
8621
|
title: string;
|
|
8442
8622
|
titleDone: string;
|
|
8443
8623
|
stopConfirmQuestion: string;
|
|
8624
|
+
limits: {
|
|
8625
|
+
uploadWarning: string;
|
|
8626
|
+
onUploadLimit: string;
|
|
8627
|
+
addingOverLimit: string;
|
|
8628
|
+
countAlreadyInProgress: string;
|
|
8629
|
+
onlyAllowedAtOnce: string;
|
|
8630
|
+
cancelOrUploadFirst: string;
|
|
8631
|
+
actionAddFirstItems: string;
|
|
8632
|
+
};
|
|
8444
8633
|
};
|
|
8445
8634
|
keyword: {
|
|
8446
8635
|
model: {
|
|
@@ -8481,6 +8670,11 @@ export declare const messagesEn: {
|
|
|
8481
8670
|
mimeType: string;
|
|
8482
8671
|
};
|
|
8483
8672
|
notificationsNotConnected: string;
|
|
8673
|
+
public: {
|
|
8674
|
+
idOrUrl: string;
|
|
8675
|
+
inputError: string;
|
|
8676
|
+
imagePreview: string;
|
|
8677
|
+
};
|
|
8484
8678
|
};
|
|
8485
8679
|
collab: {
|
|
8486
8680
|
alert: {
|
|
@@ -8521,6 +8715,10 @@ export declare const messagesEn: {
|
|
|
8521
8715
|
badge: string;
|
|
8522
8716
|
open: string;
|
|
8523
8717
|
close: string;
|
|
8718
|
+
confirmEdit: {
|
|
8719
|
+
ok: string;
|
|
8720
|
+
cancel: string;
|
|
8721
|
+
};
|
|
8524
8722
|
dataIterator: {
|
|
8525
8723
|
noResultsText: string;
|
|
8526
8724
|
loadingText: string;
|
|
@@ -8546,12 +8744,20 @@ export declare const messagesEn: {
|
|
|
8546
8744
|
lastPage: string;
|
|
8547
8745
|
pageText: string;
|
|
8548
8746
|
};
|
|
8747
|
+
dateRangeInput: {
|
|
8748
|
+
divider: string;
|
|
8749
|
+
};
|
|
8549
8750
|
datePicker: {
|
|
8550
8751
|
itemsSelected: string;
|
|
8551
|
-
|
|
8552
|
-
|
|
8553
|
-
|
|
8554
|
-
|
|
8752
|
+
range: {
|
|
8753
|
+
title: string;
|
|
8754
|
+
header: string;
|
|
8755
|
+
};
|
|
8756
|
+
title: string;
|
|
8757
|
+
header: string;
|
|
8758
|
+
input: {
|
|
8759
|
+
placeholder: string;
|
|
8760
|
+
};
|
|
8555
8761
|
};
|
|
8556
8762
|
noDataText: string;
|
|
8557
8763
|
carousel: {
|
|
@@ -8563,11 +8769,13 @@ export declare const messagesEn: {
|
|
|
8563
8769
|
};
|
|
8564
8770
|
calendar: {
|
|
8565
8771
|
moreEvents: string;
|
|
8772
|
+
today: string;
|
|
8566
8773
|
};
|
|
8567
8774
|
input: {
|
|
8568
8775
|
clear: string;
|
|
8569
8776
|
prependAction: string;
|
|
8570
8777
|
appendAction: string;
|
|
8778
|
+
otp: string;
|
|
8571
8779
|
};
|
|
8572
8780
|
fileInput: {
|
|
8573
8781
|
counter: string;
|
|
@@ -8588,11 +8796,20 @@ export declare const messagesEn: {
|
|
|
8588
8796
|
last: string;
|
|
8589
8797
|
};
|
|
8590
8798
|
};
|
|
8799
|
+
stepper: {
|
|
8800
|
+
next: string;
|
|
8801
|
+
prev: string;
|
|
8802
|
+
};
|
|
8591
8803
|
rating: {
|
|
8592
8804
|
ariaLabel: {
|
|
8593
8805
|
item: string;
|
|
8594
8806
|
};
|
|
8595
8807
|
};
|
|
8808
|
+
loading: string;
|
|
8809
|
+
infiniteScroll: {
|
|
8810
|
+
loadMore: string;
|
|
8811
|
+
empty: string;
|
|
8812
|
+
};
|
|
8596
8813
|
};
|
|
8597
8814
|
error: {
|
|
8598
8815
|
apiValidation: {
|
|
@@ -8672,6 +8889,8 @@ export declare const messagesSk: {
|
|
|
8672
8889
|
refresh: string;
|
|
8673
8890
|
forwards: string;
|
|
8674
8891
|
backwards: string;
|
|
8892
|
+
next: string;
|
|
8893
|
+
prev: string;
|
|
8675
8894
|
loadMore: string;
|
|
8676
8895
|
};
|
|
8677
8896
|
model: {
|
|
@@ -8970,6 +9189,7 @@ export declare const messagesSk: {
|
|
|
8970
9189
|
remainingHours: string;
|
|
8971
9190
|
remainingDays: string;
|
|
8972
9191
|
};
|
|
9192
|
+
now: string;
|
|
8973
9193
|
};
|
|
8974
9194
|
sortable: {
|
|
8975
9195
|
addNewAtEnd: string;
|
|
@@ -9104,6 +9324,15 @@ export declare const messagesSk: {
|
|
|
9104
9324
|
title: string;
|
|
9105
9325
|
titleDone: string;
|
|
9106
9326
|
stopConfirmQuestion: string;
|
|
9327
|
+
limits: {
|
|
9328
|
+
uploadWarning: string;
|
|
9329
|
+
onUploadLimit: string;
|
|
9330
|
+
addingOverLimit: string;
|
|
9331
|
+
countAlreadyInProgress: string;
|
|
9332
|
+
onlyAllowedAtOnce: string;
|
|
9333
|
+
cancelOrUploadFirst: string;
|
|
9334
|
+
actionAddFirstItems: string;
|
|
9335
|
+
};
|
|
9107
9336
|
};
|
|
9108
9337
|
keyword: {
|
|
9109
9338
|
model: {
|
|
@@ -9144,6 +9373,11 @@ export declare const messagesSk: {
|
|
|
9144
9373
|
mimeType: string;
|
|
9145
9374
|
};
|
|
9146
9375
|
notificationsNotConnected: string;
|
|
9376
|
+
public: {
|
|
9377
|
+
idOrUrl: string;
|
|
9378
|
+
inputError: string;
|
|
9379
|
+
imagePreview: string;
|
|
9380
|
+
};
|
|
9147
9381
|
};
|
|
9148
9382
|
collab: {
|
|
9149
9383
|
alert: {
|
|
@@ -9184,6 +9418,10 @@ export declare const messagesSk: {
|
|
|
9184
9418
|
badge: string;
|
|
9185
9419
|
open: string;
|
|
9186
9420
|
close: string;
|
|
9421
|
+
confirmEdit: {
|
|
9422
|
+
ok: string;
|
|
9423
|
+
cancel: string;
|
|
9424
|
+
};
|
|
9187
9425
|
dataIterator: {
|
|
9188
9426
|
noResultsText: string;
|
|
9189
9427
|
loadingText: string;
|
|
@@ -9209,12 +9447,20 @@ export declare const messagesSk: {
|
|
|
9209
9447
|
lastPage: string;
|
|
9210
9448
|
pageText: string;
|
|
9211
9449
|
};
|
|
9450
|
+
dateRangeInput: {
|
|
9451
|
+
divider: string;
|
|
9452
|
+
};
|
|
9212
9453
|
datePicker: {
|
|
9213
9454
|
itemsSelected: string;
|
|
9214
|
-
|
|
9215
|
-
|
|
9216
|
-
|
|
9217
|
-
|
|
9455
|
+
range: {
|
|
9456
|
+
title: string;
|
|
9457
|
+
header: string;
|
|
9458
|
+
};
|
|
9459
|
+
title: string;
|
|
9460
|
+
header: string;
|
|
9461
|
+
input: {
|
|
9462
|
+
placeholder: string;
|
|
9463
|
+
};
|
|
9218
9464
|
};
|
|
9219
9465
|
noDataText: string;
|
|
9220
9466
|
carousel: {
|
|
@@ -9226,11 +9472,13 @@ export declare const messagesSk: {
|
|
|
9226
9472
|
};
|
|
9227
9473
|
calendar: {
|
|
9228
9474
|
moreEvents: string;
|
|
9475
|
+
today: string;
|
|
9229
9476
|
};
|
|
9230
9477
|
input: {
|
|
9231
9478
|
clear: string;
|
|
9232
9479
|
prependAction: string;
|
|
9233
9480
|
appendAction: string;
|
|
9481
|
+
otp: string;
|
|
9234
9482
|
};
|
|
9235
9483
|
fileInput: {
|
|
9236
9484
|
counter: string;
|
|
@@ -9251,11 +9499,20 @@ export declare const messagesSk: {
|
|
|
9251
9499
|
last: string;
|
|
9252
9500
|
};
|
|
9253
9501
|
};
|
|
9502
|
+
stepper: {
|
|
9503
|
+
next: string;
|
|
9504
|
+
prev: string;
|
|
9505
|
+
};
|
|
9254
9506
|
rating: {
|
|
9255
9507
|
ariaLabel: {
|
|
9256
9508
|
item: string;
|
|
9257
9509
|
};
|
|
9258
9510
|
};
|
|
9511
|
+
loading: string;
|
|
9512
|
+
infiniteScroll: {
|
|
9513
|
+
loadMore: string;
|
|
9514
|
+
empty: string;
|
|
9515
|
+
};
|
|
9259
9516
|
};
|
|
9260
9517
|
error: {
|
|
9261
9518
|
apiValidation: {
|