@anzusystems/common-admin 1.45.0 → 1.46.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.
@@ -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';
@@ -195,6 +193,8 @@ declare type __VLS_NonUndefinedable_76<T> = T extends undefined ? never : T;
195
193
 
196
194
  declare type __VLS_NonUndefinedable_77<T> = T extends undefined ? never : T;
197
195
 
196
+ declare type __VLS_NonUndefinedable_78<T> = T extends undefined ? never : T;
197
+
198
198
  declare type __VLS_NonUndefinedable_8<T> = T extends undefined ? never : T;
199
199
 
200
200
  declare type __VLS_NonUndefinedable_9<T> = T extends undefined ? never : T;
@@ -487,6 +487,10 @@ declare type __VLS_Prettify_74<T> = {
487
487
  [K in keyof T]: T[K];
488
488
  } & {};
489
489
 
490
+ declare type __VLS_Prettify_75<T> = {
491
+ [K in keyof T]: T[K];
492
+ } & {};
493
+
490
494
  declare type __VLS_Prettify_8<T> = {
491
495
  [K in keyof T]: T[K];
492
496
  } & {};
@@ -1170,6 +1174,15 @@ declare type __VLS_TypePropsToRuntimeProps_77<T> = {
1170
1174
  };
1171
1175
  };
1172
1176
 
1177
+ declare type __VLS_TypePropsToRuntimeProps_78<T> = {
1178
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
1179
+ type: PropType<__VLS_NonUndefinedable_78<T[K]>>;
1180
+ } : {
1181
+ type: PropType<T[K]>;
1182
+ required: true;
1183
+ };
1184
+ };
1185
+
1173
1186
  declare type __VLS_TypePropsToRuntimeProps_8<T> = {
1174
1187
  [K in keyof T]-?: {} extends Pick<T, K> ? {
1175
1188
  type: PropType<__VLS_NonUndefinedable_8<T[K]>>;
@@ -1620,6 +1633,12 @@ declare type __VLS_WithDefaults_74<P, D> = {
1620
1633
  }> : P[K];
1621
1634
  };
1622
1635
 
1636
+ declare type __VLS_WithDefaults_75<P, D> = {
1637
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify_75<P[K] & {
1638
+ default: D[K];
1639
+ }> : P[K];
1640
+ };
1641
+
1623
1642
  declare type __VLS_WithDefaults_8<P, D> = {
1624
1643
  [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify_8<P[K] & {
1625
1644
  default: D[K];
@@ -1983,8 +2002,8 @@ export declare const AActionEditButton: DefineComponent<__VLS_WithDefaults_41<__
1983
2002
  }, {
1984
2003
  size: number;
1985
2004
  variant: ButtonVariant;
1986
- dataCy: string;
1987
2005
  loading: boolean;
2006
+ dataCy: string;
1988
2007
  buttonClass: string;
1989
2008
  buttonT: string;
1990
2009
  routeParams: any | undefined;
@@ -2021,8 +2040,8 @@ export declare const AActionSaveAndCloseButton: DefineComponent<__VLS_WithDefaul
2021
2040
  onSaveRecordAndClose?: (() => any) | undefined;
2022
2041
  }, {
2023
2042
  disabled: boolean;
2024
- dataCy: string;
2025
2043
  loading: boolean;
2044
+ dataCy: string;
2026
2045
  buttonClass: string;
2027
2046
  buttonT: string;
2028
2047
  }, {}>;
@@ -2067,8 +2086,8 @@ export declare const AActionSaveButton: DefineComponent<__VLS_WithDefaults_43<__
2067
2086
  size: number;
2068
2087
  variant: ButtonVariant;
2069
2088
  disabled: boolean;
2070
- dataCy: string;
2071
2089
  loading: boolean;
2090
+ dataCy: string;
2072
2091
  buttonClass: string;
2073
2092
  buttonT: string;
2074
2093
  }, {}>;
@@ -2225,14 +2244,37 @@ export declare const AAvatarColorPicker: DefineComponent<__VLS_WithDefaults_55<_
2225
2244
  }>>> & {
2226
2245
  "onUpdate:modelValue"?: ((data: string) => any) | undefined;
2227
2246
  }, {
2228
- required: boolean;
2229
2247
  loading: boolean;
2248
+ required: boolean;
2230
2249
  label: string;
2231
2250
  hideLabel: boolean;
2232
2251
  readonly: boolean;
2233
2252
  randomColor: boolean;
2234
2253
  }, {}>;
2235
2254
 
2255
+ export declare const ABooleanSelect: DefineComponent<__VLS_WithDefaults_71<__VLS_TypePropsToRuntimeProps_74<{
2256
+ modelValue: boolean | null;
2257
+ dataCy?: string | undefined;
2258
+ label?: string | undefined;
2259
+ }>, {
2260
+ dataCy: string;
2261
+ label: undefined;
2262
+ }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
2263
+ "update:modelValue": (data: boolean | null) => void;
2264
+ }, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_71<__VLS_TypePropsToRuntimeProps_74<{
2265
+ modelValue: boolean | null;
2266
+ dataCy?: string | undefined;
2267
+ label?: string | undefined;
2268
+ }>, {
2269
+ dataCy: string;
2270
+ label: undefined;
2271
+ }>>> & {
2272
+ "onUpdate:modelValue"?: ((data: boolean | null) => any) | undefined;
2273
+ }, {
2274
+ label: string;
2275
+ dataCy: string;
2276
+ }, {}>;
2277
+
2236
2278
  export declare const ABooleanValue: DefineComponent<__VLS_WithDefaults_6<__VLS_TypePropsToRuntimeProps_6<{
2237
2279
  value: number | string | boolean;
2238
2280
  chip?: boolean | undefined;
@@ -2306,8 +2348,8 @@ export declare const ABtnSplit: __VLS_WithTemplateSlots_19<DefineComponent<__VLS
2306
2348
  variant: ButtonVariantText;
2307
2349
  rounded: "pill";
2308
2350
  disabled: boolean;
2309
- dataCy: string;
2310
2351
  loading: boolean;
2352
+ dataCy: string;
2311
2353
  buttonClass: string;
2312
2354
  buttonT: string;
2313
2355
  disableMore: boolean;
@@ -2648,6 +2690,7 @@ export declare const ACropperjs: <T extends EventTarget = EventTarget>(__VLS_pro
2648
2690
  src?: string | undefined;
2649
2691
  alt?: string | undefined;
2650
2692
  background?: boolean | undefined;
2693
+ viewMode?: Cropper_2.ViewMode | undefined;
2651
2694
  aspectRatio?: number | undefined;
2652
2695
  containerStyle?: {
2653
2696
  [key: string]: string;
@@ -2666,13 +2709,12 @@ export declare const ACropperjs: <T extends EventTarget = EventTarget>(__VLS_pro
2666
2709
  highlight?: boolean | undefined;
2667
2710
  initialAspectRatio?: number | undefined;
2668
2711
  movable?: boolean | undefined;
2669
- preview?: string | HTMLElement | HTMLElement[] | NodeListOf<HTMLElement> | undefined;
2712
+ preview?: string | HTMLElement | NodeListOf<HTMLElement> | HTMLElement[] | undefined;
2670
2713
  responsive?: boolean | undefined;
2671
2714
  restore?: boolean | undefined;
2672
2715
  rotatable?: boolean | undefined;
2673
2716
  scalable?: boolean | undefined;
2674
2717
  toggleDragModeOnDblclick?: boolean | undefined;
2675
- viewMode?: Cropper_2.ViewMode | undefined;
2676
2718
  wheelZoomRatio?: number | undefined;
2677
2719
  zoomOnTouch?: boolean | undefined;
2678
2720
  zoomOnWheel?: boolean | undefined;
@@ -2708,6 +2750,7 @@ export declare const ACropperjs: <T extends EventTarget = EventTarget>(__VLS_pro
2708
2750
  src?: string | undefined;
2709
2751
  alt?: string | undefined;
2710
2752
  background?: boolean | undefined;
2753
+ viewMode?: Cropper_2.ViewMode | undefined;
2711
2754
  aspectRatio?: number | undefined;
2712
2755
  containerStyle?: {
2713
2756
  [key: string]: string;
@@ -2726,13 +2769,12 @@ export declare const ACropperjs: <T extends EventTarget = EventTarget>(__VLS_pro
2726
2769
  highlight?: boolean | undefined;
2727
2770
  initialAspectRatio?: number | undefined;
2728
2771
  movable?: boolean | undefined;
2729
- preview?: string | HTMLElement | HTMLElement[] | NodeListOf<HTMLElement> | undefined;
2772
+ preview?: string | HTMLElement | NodeListOf<HTMLElement> | HTMLElement[] | undefined;
2730
2773
  responsive?: boolean | undefined;
2731
2774
  restore?: boolean | undefined;
2732
2775
  rotatable?: boolean | undefined;
2733
2776
  scalable?: boolean | undefined;
2734
2777
  toggleDragModeOnDblclick?: boolean | undefined;
2735
- viewMode?: Cropper_2.ViewMode | undefined;
2736
2778
  wheelZoomRatio?: number | undefined;
2737
2779
  zoomOnTouch?: boolean | undefined;
2738
2780
  zoomOnWheel?: boolean | undefined;
@@ -2772,6 +2814,7 @@ export declare const ACropperjs: <T extends EventTarget = EventTarget>(__VLS_pro
2772
2814
  src?: string | undefined;
2773
2815
  alt?: string | undefined;
2774
2816
  background?: boolean | undefined;
2817
+ viewMode?: Cropper_2.ViewMode | undefined;
2775
2818
  aspectRatio?: number | undefined;
2776
2819
  containerStyle?: {
2777
2820
  [key: string]: string;
@@ -2790,13 +2833,12 @@ export declare const ACropperjs: <T extends EventTarget = EventTarget>(__VLS_pro
2790
2833
  highlight?: boolean | undefined;
2791
2834
  initialAspectRatio?: number | undefined;
2792
2835
  movable?: boolean | undefined;
2793
- preview?: string | HTMLElement | HTMLElement[] | NodeListOf<HTMLElement> | undefined;
2836
+ preview?: string | HTMLElement | NodeListOf<HTMLElement> | HTMLElement[] | undefined;
2794
2837
  responsive?: boolean | undefined;
2795
2838
  restore?: boolean | undefined;
2796
2839
  rotatable?: boolean | undefined;
2797
2840
  scalable?: boolean | undefined;
2798
2841
  toggleDragModeOnDblclick?: boolean | undefined;
2799
- viewMode?: Cropper_2.ViewMode | undefined;
2800
2842
  wheelZoomRatio?: number | undefined;
2801
2843
  zoomOnTouch?: boolean | undefined;
2802
2844
  zoomOnWheel?: boolean | undefined;
@@ -3062,21 +3104,18 @@ export declare const ADatetime: DefineComponent<__VLS_WithDefaults_25<__VLS_Type
3062
3104
  }, {}>;
3063
3105
 
3064
3106
  export declare const ADatetimePicker: __VLS_WithTemplateSlots_13<DefineComponent<__VLS_WithDefaults_26<__VLS_TypePropsToRuntimeProps_28<{
3065
- modelValue: DatetimeUTCNullable | undefined;
3066
- type?: "datetime" | "date" | undefined;
3107
+ modelValue: string | null | undefined;
3108
+ type?: "datetime" | undefined;
3067
3109
  label?: string | undefined;
3068
3110
  hideLabel?: boolean | undefined;
3069
3111
  clearable?: boolean | undefined;
3070
3112
  disabled?: boolean | undefined;
3071
3113
  hideDetails?: boolean | undefined;
3072
- minNow?: boolean | undefined;
3073
3114
  required?: boolean | undefined;
3074
3115
  hideSetToNow?: boolean | undefined;
3075
3116
  placeholder?: string | undefined;
3076
- enable?: DateLimit<DateOption>[] | undefined;
3077
- weekNumbers?: false | undefined;
3078
3117
  dataCy?: string | undefined;
3079
- defaultValue?: DatetimeUTCNullable | undefined;
3118
+ defaultValue?: string | null | undefined;
3080
3119
  errorMessages?: string[] | undefined;
3081
3120
  }>, {
3082
3121
  type: string;
@@ -3085,38 +3124,31 @@ export declare const ADatetimePicker: __VLS_WithTemplateSlots_13<DefineComponent
3085
3124
  clearable: boolean;
3086
3125
  disabled: boolean;
3087
3126
  hideDetails: boolean;
3088
- minNow: boolean;
3089
3127
  required: boolean;
3090
3128
  hideSetToNow: boolean;
3091
3129
  placeholder: string;
3092
- enable: undefined;
3093
- weekNumbers: boolean;
3094
3130
  dataCy: string;
3095
3131
  defaultValue: null;
3096
3132
  errorMessages: undefined;
3097
3133
  }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
3098
- change: () => void;
3099
3134
  blur: () => void;
3100
3135
  focus: () => void;
3101
- "update:modelValue": (data: string | null) => void;
3136
+ "update:modelValue": (data: string | null | undefined) => void;
3102
3137
  onOpen: () => void;
3103
3138
  onClose: () => void;
3104
3139
  }, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_26<__VLS_TypePropsToRuntimeProps_28<{
3105
- modelValue: DatetimeUTCNullable | undefined;
3106
- type?: "datetime" | "date" | undefined;
3140
+ modelValue: string | null | undefined;
3141
+ type?: "datetime" | undefined;
3107
3142
  label?: string | undefined;
3108
3143
  hideLabel?: boolean | undefined;
3109
3144
  clearable?: boolean | undefined;
3110
3145
  disabled?: boolean | undefined;
3111
3146
  hideDetails?: boolean | undefined;
3112
- minNow?: boolean | undefined;
3113
3147
  required?: boolean | undefined;
3114
3148
  hideSetToNow?: boolean | undefined;
3115
3149
  placeholder?: string | undefined;
3116
- enable?: DateLimit<DateOption>[] | undefined;
3117
- weekNumbers?: false | undefined;
3118
3150
  dataCy?: string | undefined;
3119
- defaultValue?: DatetimeUTCNullable | undefined;
3151
+ defaultValue?: string | null | undefined;
3120
3152
  errorMessages?: string[] | undefined;
3121
3153
  }>, {
3122
3154
  type: string;
@@ -3125,37 +3157,30 @@ export declare const ADatetimePicker: __VLS_WithTemplateSlots_13<DefineComponent
3125
3157
  clearable: boolean;
3126
3158
  disabled: boolean;
3127
3159
  hideDetails: boolean;
3128
- minNow: boolean;
3129
3160
  required: boolean;
3130
3161
  hideSetToNow: boolean;
3131
3162
  placeholder: string;
3132
- enable: undefined;
3133
- weekNumbers: boolean;
3134
3163
  dataCy: string;
3135
3164
  defaultValue: null;
3136
3165
  errorMessages: undefined;
3137
3166
  }>>> & {
3138
- "onUpdate:modelValue"?: ((data: string | null) => any) | undefined;
3167
+ "onUpdate:modelValue"?: ((data: string | null | undefined) => any) | undefined;
3139
3168
  onFocus?: (() => any) | undefined;
3140
3169
  onBlur?: (() => any) | undefined;
3141
- onChange?: (() => any) | undefined;
3142
3170
  onOnOpen?: (() => any) | undefined;
3143
3171
  onOnClose?: (() => any) | undefined;
3144
3172
  }, {
3145
- enable: DateLimit<DateOption>[];
3146
3173
  disabled: boolean;
3147
- type: "datetime" | "date";
3148
- dataCy: string;
3174
+ type: "datetime";
3175
+ placeholder: string;
3149
3176
  required: boolean;
3150
3177
  label: string;
3178
+ dataCy: string;
3151
3179
  hideLabel: boolean;
3152
3180
  clearable: boolean;
3153
3181
  hideDetails: boolean;
3154
- minNow: boolean;
3155
3182
  hideSetToNow: boolean;
3156
- placeholder: string;
3157
- weekNumbers: false;
3158
- defaultValue: DatetimeUTCNullable;
3183
+ defaultValue: string | null;
3159
3184
  errorMessages: string[];
3160
3185
  }, {}>, {
3161
3186
  "append-inner"?(_: {}): any;
@@ -3309,8 +3334,8 @@ export declare const AFilterMixed: DefineComponent<__VLS_WithDefaults_47<__VLS_T
3309
3334
  placeholder: undefined;
3310
3335
  dataCy: string;
3311
3336
  }>>>, {
3312
- dataCy: string;
3313
3337
  placeholder: string;
3338
+ dataCy: string;
3314
3339
  filterId: Filter<any>;
3315
3340
  filterDocId: Filter<any>;
3316
3341
  filterText: Filter<any>;
@@ -3402,8 +3427,8 @@ export declare const AFilterString: DefineComponent<__VLS_WithDefaults_18<__VLS_
3402
3427
  }>>> & {
3403
3428
  "onUpdate:modelValue"?: ((data: Filter<any>) => any) | undefined;
3404
3429
  }, {
3405
- dataCy: string;
3406
3430
  placeholder: string;
3431
+ dataCy: string;
3407
3432
  }, {}>;
3408
3433
 
3409
3434
  export declare const AFilterSubmitButton: DefineComponent<__VLS_WithDefaults_46<__VLS_TypePropsToRuntimeProps_49<{
@@ -3537,7 +3562,6 @@ export declare const AFormDatetimePicker: __VLS_WithTemplateSlots_7<DefineCompon
3537
3562
  "onClick:append"?: ((data: string | number | null | undefined) => any) | undefined;
3538
3563
  }, {
3539
3564
  disabled: boolean;
3540
- dataCy: string;
3541
3565
  collab: {
3542
3566
  room: string;
3543
3567
  field: string;
@@ -3545,6 +3569,7 @@ export declare const AFormDatetimePicker: __VLS_WithTemplateSlots_7<DefineCompon
3545
3569
  };
3546
3570
  required: boolean;
3547
3571
  label: string;
3572
+ dataCy: string;
3548
3573
  clearable: boolean;
3549
3574
  errorMessage: string;
3550
3575
  v: any;
@@ -3602,13 +3627,13 @@ export declare const AFormFlagDatetimePicker: __VLS_WithTemplateSlots_8<DefineCo
3602
3627
  "onClick:append"?: ((data: string | number | null) => any) | undefined;
3603
3628
  }, {
3604
3629
  disabled: boolean;
3605
- dataCy: string;
3606
3630
  collab: {
3607
3631
  room: string;
3608
3632
  field: string;
3609
3633
  cachedUsers: CollabCachedUsersMap;
3610
3634
  };
3611
3635
  label: string;
3636
+ dataCy: string;
3612
3637
  clearable: boolean;
3613
3638
  errorMessage: string;
3614
3639
  v: any;
@@ -3707,8 +3732,8 @@ export declare const AFormRemoteAutocomplete: __VLS_WithTemplateSlots_9<DefineCo
3707
3732
  field: string;
3708
3733
  cachedUsers: CollabCachedUsersMap;
3709
3734
  };
3710
- required: boolean;
3711
3735
  loading: boolean;
3736
+ required: boolean;
3712
3737
  label: string;
3713
3738
  hideLabel: boolean;
3714
3739
  clearable: boolean;
@@ -3800,8 +3825,8 @@ export declare const AFormRemoteAutocompleteWithCached: DefineComponent<__VLS_Wi
3800
3825
  itemTitle: string;
3801
3826
  itemValue: string;
3802
3827
  multiple: boolean;
3803
- required: boolean;
3804
3828
  loading: boolean;
3829
+ required: boolean;
3805
3830
  label: string;
3806
3831
  hideLabel: boolean;
3807
3832
  clearable: boolean;
@@ -3921,13 +3946,13 @@ export declare const AFormSwitch: __VLS_WithTemplateSlots_10<DefineComponent<__V
3921
3946
  onBlur?: ((data: boolean) => any) | undefined;
3922
3947
  }, {
3923
3948
  disabled: boolean;
3924
- dataCy: string;
3925
3949
  collab: {
3926
3950
  room: string;
3927
3951
  field: string;
3928
3952
  cachedUsers: CollabCachedUsersMap;
3929
3953
  };
3930
3954
  label: string;
3955
+ dataCy: string;
3931
3956
  hideLabel: boolean;
3932
3957
  }, {}>, {
3933
3958
  locked?(_: {
@@ -3999,7 +4024,6 @@ export declare const AFormTextarea: __VLS_WithTemplateSlots_6<DefineComponent<__
3999
4024
  appendIcon: string;
4000
4025
  disabled: boolean;
4001
4026
  prependIcon: string;
4002
- dataCy: string;
4003
4027
  collab: {
4004
4028
  room: string;
4005
4029
  field: string;
@@ -4007,6 +4031,7 @@ export declare const AFormTextarea: __VLS_WithTemplateSlots_6<DefineComponent<__
4007
4031
  };
4008
4032
  required: boolean;
4009
4033
  label: string;
4034
+ dataCy: string;
4010
4035
  hideLabel: boolean;
4011
4036
  errorMessage: string;
4012
4037
  v: any;
@@ -4098,21 +4123,21 @@ export declare const AFormTextField: __VLS_WithTemplateSlots_5<DefineComponent<_
4098
4123
  disabled: boolean;
4099
4124
  prependIcon: string;
4100
4125
  type: string;
4101
- dataCy: string;
4102
4126
  collab: {
4103
4127
  room: string;
4104
4128
  field: string;
4105
4129
  cachedUsers: CollabCachedUsersMap;
4106
4130
  };
4131
+ placeholder: string;
4107
4132
  required: boolean;
4108
4133
  label: string;
4134
+ dataCy: string;
4135
+ step: number;
4136
+ maxlength: number;
4109
4137
  hideLabel: boolean;
4110
- placeholder: string;
4111
4138
  persistentPlaceholder: boolean;
4112
- step: number;
4113
4139
  errorMessage: string;
4114
4140
  v: any;
4115
- maxlength: number;
4116
4141
  }, {}>, {
4117
4142
  locked?(_: {
4118
4143
  userId: number;
@@ -4181,7 +4206,6 @@ export declare const AFormValueObjectOptionsSelect: __VLS_WithTemplateSlots_11<D
4181
4206
  onBlur?: ((data: any) => any) | undefined;
4182
4207
  }, {
4183
4208
  disabled: boolean;
4184
- dataCy: string;
4185
4209
  multiple: boolean;
4186
4210
  collab: {
4187
4211
  room: string;
@@ -4190,6 +4214,7 @@ export declare const AFormValueObjectOptionsSelect: __VLS_WithTemplateSlots_11<D
4190
4214
  };
4191
4215
  required: boolean;
4192
4216
  label: string;
4217
+ dataCy: string;
4193
4218
  hideLabel: boolean;
4194
4219
  clearable: boolean;
4195
4220
  hideDetails: boolean;
@@ -4235,6 +4260,7 @@ export declare const AImageWidget: DefineComponent<__VLS_WithDefaults_63<__VLS_T
4235
4260
  collab?: CollabComponentConfig;
4236
4261
  label?: string | undefined;
4237
4262
  readonly?: boolean | undefined;
4263
+ required?: boolean | undefined;
4238
4264
  dataCy?: string | undefined;
4239
4265
  expandOptions?: boolean | undefined;
4240
4266
  expandMetadata?: boolean | undefined;
@@ -4247,6 +4273,7 @@ export declare const AImageWidget: DefineComponent<__VLS_WithDefaults_63<__VLS_T
4247
4273
  label: undefined;
4248
4274
  image: undefined;
4249
4275
  readonly: boolean;
4276
+ required: boolean;
4250
4277
  lockable: boolean;
4251
4278
  lockedById: undefined;
4252
4279
  dataCy: undefined;
@@ -4270,6 +4297,7 @@ export declare const AImageWidget: DefineComponent<__VLS_WithDefaults_63<__VLS_T
4270
4297
  collab?: CollabComponentConfig;
4271
4298
  label?: string | undefined;
4272
4299
  readonly?: boolean | undefined;
4300
+ required?: boolean | undefined;
4273
4301
  dataCy?: string | undefined;
4274
4302
  expandOptions?: boolean | undefined;
4275
4303
  expandMetadata?: boolean | undefined;
@@ -4282,6 +4310,7 @@ export declare const AImageWidget: DefineComponent<__VLS_WithDefaults_63<__VLS_T
4282
4310
  label: undefined;
4283
4311
  image: undefined;
4284
4312
  readonly: boolean;
4313
+ required: boolean;
4285
4314
  lockable: boolean;
4286
4315
  lockedById: undefined;
4287
4316
  dataCy: undefined;
@@ -4295,14 +4324,15 @@ export declare const AImageWidget: DefineComponent<__VLS_WithDefaults_63<__VLS_T
4295
4324
  onAfterMetadataSaveSuccess?: (() => any) | undefined;
4296
4325
  }, {
4297
4326
  width: number;
4298
- dataCy: string;
4299
4327
  collab: {
4300
4328
  room: string;
4301
4329
  field: string;
4302
4330
  cachedUsers: CollabCachedUsersMap;
4303
4331
  };
4304
4332
  image: ImageAware;
4333
+ required: boolean;
4305
4334
  label: string;
4335
+ dataCy: string;
4306
4336
  readonly: boolean;
4307
4337
  configName: string;
4308
4338
  expandOptions: boolean;
@@ -4363,8 +4393,8 @@ export declare const AImageWidgetMultiple: DefineComponent<__VLS_WithDefaults_65
4363
4393
  "onUpdate:modelValue"?: ((data: number[]) => any) | undefined;
4364
4394
  }, {
4365
4395
  width: number;
4366
- dataCy: string;
4367
4396
  label: string;
4397
+ dataCy: string;
4368
4398
  readonly: boolean;
4369
4399
  configName: string;
4370
4400
  callDeleteApiOnRemove: boolean;
@@ -4481,14 +4511,14 @@ export declare const AImageWidgetSimple: __VLS_WithTemplateSlots_24<DefineCompon
4481
4511
  licenceId: number;
4482
4512
  regionPosition: number;
4483
4513
  };
4484
- position: number;
4514
+ position?: number | undefined;
4485
4515
  } | {
4486
4516
  id?: number | undefined;
4487
4517
  texts: {
4488
4518
  description: string;
4489
4519
  source: string;
4490
4520
  };
4491
- position: number;
4521
+ position?: number | undefined;
4492
4522
  dam: {
4493
4523
  damId: string;
4494
4524
  licenceId: number;
@@ -4532,7 +4562,7 @@ export declare const ALogData: DefineComponent<__VLS_WithDefaults_30<__VLS_TypeP
4532
4562
  data: any;
4533
4563
  }>, {}>>>, {}, {}>;
4534
4564
 
4535
- export declare const ALoginView: DefineComponent<__VLS_WithDefaults_71<__VLS_TypePropsToRuntimeProps_74<{
4565
+ export declare const ALoginView: DefineComponent<__VLS_WithDefaults_72<__VLS_TypePropsToRuntimeProps_75<{
4536
4566
  title?: string | undefined;
4537
4567
  logoUrl?: string | undefined;
4538
4568
  loginUrl?: undefined | (() => string);
@@ -4542,7 +4572,7 @@ export declare const ALoginView: DefineComponent<__VLS_WithDefaults_71<__VLS_Typ
4542
4572
  logoUrl: undefined;
4543
4573
  loginUrl: undefined;
4544
4574
  dataCy: string;
4545
- }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_71<__VLS_TypePropsToRuntimeProps_74<{
4575
+ }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_72<__VLS_TypePropsToRuntimeProps_75<{
4546
4576
  title?: string | undefined;
4547
4577
  logoUrl?: string | undefined;
4548
4578
  loginUrl?: undefined | (() => string);
@@ -4565,11 +4595,11 @@ export declare const ALogLevelChip: DefineComponent<__VLS_WithDefaults_53<__VLS_
4565
4595
  level: LogLevel;
4566
4596
  }>, {}>>>, {}, {}>;
4567
4597
 
4568
- export declare const ALogoutView: DefineComponent<__VLS_WithDefaults_72<__VLS_TypePropsToRuntimeProps_75<{
4598
+ export declare const ALogoutView: DefineComponent<__VLS_WithDefaults_73<__VLS_TypePropsToRuntimeProps_76<{
4569
4599
  logoutUrl?: undefined | (() => string);
4570
4600
  }>, {
4571
4601
  logoutUrl: undefined;
4572
- }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_72<__VLS_TypePropsToRuntimeProps_75<{
4602
+ }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_73<__VLS_TypePropsToRuntimeProps_76<{
4573
4603
  logoutUrl?: undefined | (() => string);
4574
4604
  }>, {
4575
4605
  logoutUrl: undefined;
@@ -4577,9 +4607,9 @@ export declare const ALogoutView: DefineComponent<__VLS_WithDefaults_72<__VLS_Ty
4577
4607
  logoutUrl: () => string;
4578
4608
  }, {}>;
4579
4609
 
4580
- export declare const ANotFoundView: DefineComponent<__VLS_WithDefaults_74<__VLS_TypePropsToRuntimeProps_77<{
4610
+ export declare const ANotFoundView: DefineComponent<__VLS_WithDefaults_75<__VLS_TypePropsToRuntimeProps_78<{
4581
4611
  returnRouteName: string;
4582
- }>, {}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_74<__VLS_TypePropsToRuntimeProps_77<{
4612
+ }>, {}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_75<__VLS_TypePropsToRuntimeProps_78<{
4583
4613
  returnRouteName: string;
4584
4614
  }>, {}>>>, {}, {}>;
4585
4615
 
@@ -5152,9 +5182,9 @@ declare enum AssetSelectReturnType {
5152
5182
  }
5153
5183
 
5154
5184
  export declare const ASubjectSelect: <TItem>(__VLS_props: {
5155
- pagination: Pagination;
5156
5185
  submitFilter: Fn;
5157
5186
  resetFilter: Fn;
5187
+ pagination: Pagination;
5158
5188
  loading?: boolean | undefined;
5159
5189
  modelValue?: boolean | undefined;
5160
5190
  "onUpdate:modelValue"?: ((data: boolean) => any) | undefined;
@@ -5196,9 +5226,9 @@ export declare const ASubjectSelect: <TItem>(__VLS_props: {
5196
5226
  open: () => void;
5197
5227
  }>) => void) | undefined, __VLS_setup?: Promise<{
5198
5228
  props: {
5199
- pagination: Pagination;
5200
5229
  submitFilter: Fn;
5201
5230
  resetFilter: Fn;
5231
+ pagination: Pagination;
5202
5232
  loading?: boolean | undefined;
5203
5233
  modelValue?: boolean | undefined;
5204
5234
  "onUpdate:modelValue"?: ((data: boolean) => any) | undefined;
@@ -5244,9 +5274,9 @@ export declare const ASubjectSelect: <TItem>(__VLS_props: {
5244
5274
  }> & {
5245
5275
  __ctx?: {
5246
5276
  props: {
5247
- pagination: Pagination;
5248
5277
  submitFilter: Fn;
5249
5278
  resetFilter: Fn;
5279
+ pagination: Pagination;
5250
5280
  loading?: boolean | undefined;
5251
5281
  modelValue?: boolean | undefined;
5252
5282
  "onUpdate:modelValue"?: ((data: boolean) => any) | undefined;
@@ -5458,9 +5488,9 @@ declare interface AudioAttributes {
5458
5488
  bitrate: number;
5459
5489
  }
5460
5490
 
5461
- export declare const AUnauthorizedView: DefineComponent<__VLS_WithDefaults_73<__VLS_TypePropsToRuntimeProps_76<{
5491
+ export declare const AUnauthorizedView: DefineComponent<__VLS_WithDefaults_74<__VLS_TypePropsToRuntimeProps_77<{
5462
5492
  returnRouteName: string;
5463
- }>, {}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_73<__VLS_TypePropsToRuntimeProps_76<{
5493
+ }>, {}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_74<__VLS_TypePropsToRuntimeProps_77<{
5464
5494
  returnRouteName: string;
5465
5495
  }>, {}>>>, {}, {}>;
5466
5496
 
@@ -6769,6 +6799,7 @@ export declare const i18n: I18n<{
6769
6799
  remainingHours: string;
6770
6800
  remainingDays: string;
6771
6801
  };
6802
+ now: string;
6772
6803
  };
6773
6804
  sortable: {
6774
6805
  addNewAtEnd: string;
@@ -6903,6 +6934,15 @@ export declare const i18n: I18n<{
6903
6934
  title: string;
6904
6935
  titleDone: string;
6905
6936
  stopConfirmQuestion: string;
6937
+ limits: {
6938
+ uploadWarning: string;
6939
+ onUploadLimit: string;
6940
+ addingOverLimit: string;
6941
+ countAlreadyInProgress: string;
6942
+ onlyAllowedAtOnce: string;
6943
+ cancelOrUploadFirst: string;
6944
+ actionAddFirstItems: string;
6945
+ };
6906
6946
  };
6907
6947
  keyword: {
6908
6948
  model: {
@@ -6983,6 +7023,10 @@ export declare const i18n: I18n<{
6983
7023
  badge: string;
6984
7024
  open: string;
6985
7025
  close: string;
7026
+ confirmEdit: {
7027
+ ok: string;
7028
+ cancel: string;
7029
+ };
6986
7030
  dataIterator: {
6987
7031
  noResultsText: string;
6988
7032
  loadingText: string;
@@ -7008,12 +7052,20 @@ export declare const i18n: I18n<{
7008
7052
  lastPage: string;
7009
7053
  pageText: string;
7010
7054
  };
7055
+ dateRangeInput: {
7056
+ divider: string;
7057
+ };
7011
7058
  datePicker: {
7012
7059
  itemsSelected: string;
7013
- nextMonthAriaLabel: string;
7014
- nextYearAriaLabel: string;
7015
- prevMonthAriaLabel: string;
7016
- prevYearAriaLabel: string;
7060
+ range: {
7061
+ title: string;
7062
+ header: string;
7063
+ };
7064
+ title: string;
7065
+ header: string;
7066
+ input: {
7067
+ placeholder: string;
7068
+ };
7017
7069
  };
7018
7070
  noDataText: string;
7019
7071
  carousel: {
@@ -7025,11 +7077,13 @@ export declare const i18n: I18n<{
7025
7077
  };
7026
7078
  calendar: {
7027
7079
  moreEvents: string;
7080
+ today: string;
7028
7081
  };
7029
7082
  input: {
7030
7083
  clear: string;
7031
7084
  prependAction: string;
7032
7085
  appendAction: string;
7086
+ otp: string;
7033
7087
  };
7034
7088
  fileInput: {
7035
7089
  counter: string;
@@ -7050,11 +7104,20 @@ export declare const i18n: I18n<{
7050
7104
  last: string;
7051
7105
  };
7052
7106
  };
7107
+ stepper: {
7108
+ next: string;
7109
+ prev: string;
7110
+ };
7053
7111
  rating: {
7054
7112
  ariaLabel: {
7055
7113
  item: string;
7056
7114
  };
7057
7115
  };
7116
+ loading: string;
7117
+ infiniteScroll: {
7118
+ loadMore: string;
7119
+ empty: string;
7120
+ };
7058
7121
  };
7059
7122
  error: {
7060
7123
  apiValidation: {
@@ -7117,7 +7180,7 @@ export declare interface ImageAware {
7117
7180
  licenceId: IntegerId;
7118
7181
  regionPosition: number;
7119
7182
  };
7120
- position: number;
7183
+ position?: number;
7121
7184
  }
7122
7185
 
7123
7186
  export declare interface ImageCreateUpdateAware extends Omit<ImageAware, 'id'> {
@@ -7626,6 +7689,7 @@ export declare const messagesCs: {
7626
7689
  remainingHours: string;
7627
7690
  remainingDays: string;
7628
7691
  };
7692
+ now: string;
7629
7693
  };
7630
7694
  sortable: {
7631
7695
  addNewAtEnd: string;
@@ -7760,6 +7824,15 @@ export declare const messagesCs: {
7760
7824
  title: string;
7761
7825
  titleDone: string;
7762
7826
  stopConfirmQuestion: string;
7827
+ limits: {
7828
+ uploadWarning: string;
7829
+ onUploadLimit: string;
7830
+ addingOverLimit: string;
7831
+ countAlreadyInProgress: string;
7832
+ onlyAllowedAtOnce: string;
7833
+ cancelOrUploadFirst: string;
7834
+ actionAddFirstItems: string;
7835
+ };
7763
7836
  };
7764
7837
  keyword: {
7765
7838
  model: {
@@ -7840,6 +7913,10 @@ export declare const messagesCs: {
7840
7913
  badge: string;
7841
7914
  open: string;
7842
7915
  close: string;
7916
+ confirmEdit: {
7917
+ ok: string;
7918
+ cancel: string;
7919
+ };
7843
7920
  dataIterator: {
7844
7921
  noResultsText: string;
7845
7922
  loadingText: string;
@@ -7865,12 +7942,20 @@ export declare const messagesCs: {
7865
7942
  lastPage: string;
7866
7943
  pageText: string;
7867
7944
  };
7945
+ dateRangeInput: {
7946
+ divider: string;
7947
+ };
7868
7948
  datePicker: {
7869
7949
  itemsSelected: string;
7870
- nextMonthAriaLabel: string;
7871
- nextYearAriaLabel: string;
7872
- prevMonthAriaLabel: string;
7873
- prevYearAriaLabel: string;
7950
+ range: {
7951
+ title: string;
7952
+ header: string;
7953
+ };
7954
+ title: string;
7955
+ header: string;
7956
+ input: {
7957
+ placeholder: string;
7958
+ };
7874
7959
  };
7875
7960
  noDataText: string;
7876
7961
  carousel: {
@@ -7882,11 +7967,13 @@ export declare const messagesCs: {
7882
7967
  };
7883
7968
  calendar: {
7884
7969
  moreEvents: string;
7970
+ today: string;
7885
7971
  };
7886
7972
  input: {
7887
7973
  clear: string;
7888
7974
  prependAction: string;
7889
7975
  appendAction: string;
7976
+ otp: string;
7890
7977
  };
7891
7978
  fileInput: {
7892
7979
  counter: string;
@@ -7907,11 +7994,20 @@ export declare const messagesCs: {
7907
7994
  last: string;
7908
7995
  };
7909
7996
  };
7997
+ stepper: {
7998
+ next: string;
7999
+ prev: string;
8000
+ };
7910
8001
  rating: {
7911
8002
  ariaLabel: {
7912
8003
  item: string;
7913
8004
  };
7914
8005
  };
8006
+ loading: string;
8007
+ infiniteScroll: {
8008
+ loadMore: string;
8009
+ empty: string;
8010
+ };
7915
8011
  };
7916
8012
  error: {
7917
8013
  apiValidation: {
@@ -8276,6 +8372,7 @@ export declare const messagesEn: {
8276
8372
  remainingHours: string;
8277
8373
  remainingDays: string;
8278
8374
  };
8375
+ now: string;
8279
8376
  };
8280
8377
  sortable: {
8281
8378
  addNewAtEnd: string;
@@ -8410,6 +8507,15 @@ export declare const messagesEn: {
8410
8507
  title: string;
8411
8508
  titleDone: string;
8412
8509
  stopConfirmQuestion: string;
8510
+ limits: {
8511
+ uploadWarning: string;
8512
+ onUploadLimit: string;
8513
+ addingOverLimit: string;
8514
+ countAlreadyInProgress: string;
8515
+ onlyAllowedAtOnce: string;
8516
+ cancelOrUploadFirst: string;
8517
+ actionAddFirstItems: string;
8518
+ };
8413
8519
  };
8414
8520
  keyword: {
8415
8521
  model: {
@@ -8490,6 +8596,10 @@ export declare const messagesEn: {
8490
8596
  badge: string;
8491
8597
  open: string;
8492
8598
  close: string;
8599
+ confirmEdit: {
8600
+ ok: string;
8601
+ cancel: string;
8602
+ };
8493
8603
  dataIterator: {
8494
8604
  noResultsText: string;
8495
8605
  loadingText: string;
@@ -8515,12 +8625,20 @@ export declare const messagesEn: {
8515
8625
  lastPage: string;
8516
8626
  pageText: string;
8517
8627
  };
8628
+ dateRangeInput: {
8629
+ divider: string;
8630
+ };
8518
8631
  datePicker: {
8519
8632
  itemsSelected: string;
8520
- nextMonthAriaLabel: string;
8521
- nextYearAriaLabel: string;
8522
- prevMonthAriaLabel: string;
8523
- prevYearAriaLabel: string;
8633
+ range: {
8634
+ title: string;
8635
+ header: string;
8636
+ };
8637
+ title: string;
8638
+ header: string;
8639
+ input: {
8640
+ placeholder: string;
8641
+ };
8524
8642
  };
8525
8643
  noDataText: string;
8526
8644
  carousel: {
@@ -8532,11 +8650,13 @@ export declare const messagesEn: {
8532
8650
  };
8533
8651
  calendar: {
8534
8652
  moreEvents: string;
8653
+ today: string;
8535
8654
  };
8536
8655
  input: {
8537
8656
  clear: string;
8538
8657
  prependAction: string;
8539
8658
  appendAction: string;
8659
+ otp: string;
8540
8660
  };
8541
8661
  fileInput: {
8542
8662
  counter: string;
@@ -8557,11 +8677,20 @@ export declare const messagesEn: {
8557
8677
  last: string;
8558
8678
  };
8559
8679
  };
8680
+ stepper: {
8681
+ next: string;
8682
+ prev: string;
8683
+ };
8560
8684
  rating: {
8561
8685
  ariaLabel: {
8562
8686
  item: string;
8563
8687
  };
8564
8688
  };
8689
+ loading: string;
8690
+ infiniteScroll: {
8691
+ loadMore: string;
8692
+ empty: string;
8693
+ };
8565
8694
  };
8566
8695
  error: {
8567
8696
  apiValidation: {
@@ -8930,6 +9059,7 @@ export declare const messagesSk: {
8930
9059
  remainingHours: string;
8931
9060
  remainingDays: string;
8932
9061
  };
9062
+ now: string;
8933
9063
  };
8934
9064
  sortable: {
8935
9065
  addNewAtEnd: string;
@@ -9064,6 +9194,15 @@ export declare const messagesSk: {
9064
9194
  title: string;
9065
9195
  titleDone: string;
9066
9196
  stopConfirmQuestion: string;
9197
+ limits: {
9198
+ uploadWarning: string;
9199
+ onUploadLimit: string;
9200
+ addingOverLimit: string;
9201
+ countAlreadyInProgress: string;
9202
+ onlyAllowedAtOnce: string;
9203
+ cancelOrUploadFirst: string;
9204
+ actionAddFirstItems: string;
9205
+ };
9067
9206
  };
9068
9207
  keyword: {
9069
9208
  model: {
@@ -9144,6 +9283,10 @@ export declare const messagesSk: {
9144
9283
  badge: string;
9145
9284
  open: string;
9146
9285
  close: string;
9286
+ confirmEdit: {
9287
+ ok: string;
9288
+ cancel: string;
9289
+ };
9147
9290
  dataIterator: {
9148
9291
  noResultsText: string;
9149
9292
  loadingText: string;
@@ -9169,12 +9312,20 @@ export declare const messagesSk: {
9169
9312
  lastPage: string;
9170
9313
  pageText: string;
9171
9314
  };
9315
+ dateRangeInput: {
9316
+ divider: string;
9317
+ };
9172
9318
  datePicker: {
9173
9319
  itemsSelected: string;
9174
- nextMonthAriaLabel: string;
9175
- nextYearAriaLabel: string;
9176
- prevMonthAriaLabel: string;
9177
- prevYearAriaLabel: string;
9320
+ range: {
9321
+ title: string;
9322
+ header: string;
9323
+ };
9324
+ title: string;
9325
+ header: string;
9326
+ input: {
9327
+ placeholder: string;
9328
+ };
9178
9329
  };
9179
9330
  noDataText: string;
9180
9331
  carousel: {
@@ -9186,11 +9337,13 @@ export declare const messagesSk: {
9186
9337
  };
9187
9338
  calendar: {
9188
9339
  moreEvents: string;
9340
+ today: string;
9189
9341
  };
9190
9342
  input: {
9191
9343
  clear: string;
9192
9344
  prependAction: string;
9193
9345
  appendAction: string;
9346
+ otp: string;
9194
9347
  };
9195
9348
  fileInput: {
9196
9349
  counter: string;
@@ -9211,11 +9364,20 @@ export declare const messagesSk: {
9211
9364
  last: string;
9212
9365
  };
9213
9366
  };
9367
+ stepper: {
9368
+ next: string;
9369
+ prev: string;
9370
+ };
9214
9371
  rating: {
9215
9372
  ariaLabel: {
9216
9373
  item: string;
9217
9374
  };
9218
9375
  };
9376
+ loading: string;
9377
+ infiniteScroll: {
9378
+ loadMore: string;
9379
+ empty: string;
9380
+ };
9219
9381
  };
9220
9382
  error: {
9221
9383
  apiValidation: {