@anzusystems/common-admin 1.45.0 → 1.46.0-alpha1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -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;
@@ -4295,7 +4320,6 @@ export declare const AImageWidget: DefineComponent<__VLS_WithDefaults_63<__VLS_T
4295
4320
  onAfterMetadataSaveSuccess?: (() => any) | undefined;
4296
4321
  }, {
4297
4322
  width: number;
4298
- dataCy: string;
4299
4323
  collab: {
4300
4324
  room: string;
4301
4325
  field: string;
@@ -4303,6 +4327,7 @@ export declare const AImageWidget: DefineComponent<__VLS_WithDefaults_63<__VLS_T
4303
4327
  };
4304
4328
  image: ImageAware;
4305
4329
  label: string;
4330
+ dataCy: string;
4306
4331
  readonly: boolean;
4307
4332
  configName: string;
4308
4333
  expandOptions: boolean;
@@ -4363,8 +4388,8 @@ export declare const AImageWidgetMultiple: DefineComponent<__VLS_WithDefaults_65
4363
4388
  "onUpdate:modelValue"?: ((data: number[]) => any) | undefined;
4364
4389
  }, {
4365
4390
  width: number;
4366
- dataCy: string;
4367
4391
  label: string;
4392
+ dataCy: string;
4368
4393
  readonly: boolean;
4369
4394
  configName: string;
4370
4395
  callDeleteApiOnRemove: boolean;
@@ -4532,7 +4557,7 @@ export declare const ALogData: DefineComponent<__VLS_WithDefaults_30<__VLS_TypeP
4532
4557
  data: any;
4533
4558
  }>, {}>>>, {}, {}>;
4534
4559
 
4535
- export declare const ALoginView: DefineComponent<__VLS_WithDefaults_71<__VLS_TypePropsToRuntimeProps_74<{
4560
+ export declare const ALoginView: DefineComponent<__VLS_WithDefaults_72<__VLS_TypePropsToRuntimeProps_75<{
4536
4561
  title?: string | undefined;
4537
4562
  logoUrl?: string | undefined;
4538
4563
  loginUrl?: undefined | (() => string);
@@ -4542,7 +4567,7 @@ export declare const ALoginView: DefineComponent<__VLS_WithDefaults_71<__VLS_Typ
4542
4567
  logoUrl: undefined;
4543
4568
  loginUrl: undefined;
4544
4569
  dataCy: string;
4545
- }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_71<__VLS_TypePropsToRuntimeProps_74<{
4570
+ }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_72<__VLS_TypePropsToRuntimeProps_75<{
4546
4571
  title?: string | undefined;
4547
4572
  logoUrl?: string | undefined;
4548
4573
  loginUrl?: undefined | (() => string);
@@ -4565,11 +4590,11 @@ export declare const ALogLevelChip: DefineComponent<__VLS_WithDefaults_53<__VLS_
4565
4590
  level: LogLevel;
4566
4591
  }>, {}>>>, {}, {}>;
4567
4592
 
4568
- export declare const ALogoutView: DefineComponent<__VLS_WithDefaults_72<__VLS_TypePropsToRuntimeProps_75<{
4593
+ export declare const ALogoutView: DefineComponent<__VLS_WithDefaults_73<__VLS_TypePropsToRuntimeProps_76<{
4569
4594
  logoutUrl?: undefined | (() => string);
4570
4595
  }>, {
4571
4596
  logoutUrl: undefined;
4572
- }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_72<__VLS_TypePropsToRuntimeProps_75<{
4597
+ }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_73<__VLS_TypePropsToRuntimeProps_76<{
4573
4598
  logoutUrl?: undefined | (() => string);
4574
4599
  }>, {
4575
4600
  logoutUrl: undefined;
@@ -4577,9 +4602,9 @@ export declare const ALogoutView: DefineComponent<__VLS_WithDefaults_72<__VLS_Ty
4577
4602
  logoutUrl: () => string;
4578
4603
  }, {}>;
4579
4604
 
4580
- export declare const ANotFoundView: DefineComponent<__VLS_WithDefaults_74<__VLS_TypePropsToRuntimeProps_77<{
4605
+ export declare const ANotFoundView: DefineComponent<__VLS_WithDefaults_75<__VLS_TypePropsToRuntimeProps_78<{
4581
4606
  returnRouteName: string;
4582
- }>, {}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_74<__VLS_TypePropsToRuntimeProps_77<{
4607
+ }>, {}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_75<__VLS_TypePropsToRuntimeProps_78<{
4583
4608
  returnRouteName: string;
4584
4609
  }>, {}>>>, {}, {}>;
4585
4610
 
@@ -5152,9 +5177,9 @@ declare enum AssetSelectReturnType {
5152
5177
  }
5153
5178
 
5154
5179
  export declare const ASubjectSelect: <TItem>(__VLS_props: {
5155
- pagination: Pagination;
5156
5180
  submitFilter: Fn;
5157
5181
  resetFilter: Fn;
5182
+ pagination: Pagination;
5158
5183
  loading?: boolean | undefined;
5159
5184
  modelValue?: boolean | undefined;
5160
5185
  "onUpdate:modelValue"?: ((data: boolean) => any) | undefined;
@@ -5196,9 +5221,9 @@ export declare const ASubjectSelect: <TItem>(__VLS_props: {
5196
5221
  open: () => void;
5197
5222
  }>) => void) | undefined, __VLS_setup?: Promise<{
5198
5223
  props: {
5199
- pagination: Pagination;
5200
5224
  submitFilter: Fn;
5201
5225
  resetFilter: Fn;
5226
+ pagination: Pagination;
5202
5227
  loading?: boolean | undefined;
5203
5228
  modelValue?: boolean | undefined;
5204
5229
  "onUpdate:modelValue"?: ((data: boolean) => any) | undefined;
@@ -5244,9 +5269,9 @@ export declare const ASubjectSelect: <TItem>(__VLS_props: {
5244
5269
  }> & {
5245
5270
  __ctx?: {
5246
5271
  props: {
5247
- pagination: Pagination;
5248
5272
  submitFilter: Fn;
5249
5273
  resetFilter: Fn;
5274
+ pagination: Pagination;
5250
5275
  loading?: boolean | undefined;
5251
5276
  modelValue?: boolean | undefined;
5252
5277
  "onUpdate:modelValue"?: ((data: boolean) => any) | undefined;
@@ -5458,9 +5483,9 @@ declare interface AudioAttributes {
5458
5483
  bitrate: number;
5459
5484
  }
5460
5485
 
5461
- export declare const AUnauthorizedView: DefineComponent<__VLS_WithDefaults_73<__VLS_TypePropsToRuntimeProps_76<{
5486
+ export declare const AUnauthorizedView: DefineComponent<__VLS_WithDefaults_74<__VLS_TypePropsToRuntimeProps_77<{
5462
5487
  returnRouteName: string;
5463
- }>, {}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_73<__VLS_TypePropsToRuntimeProps_76<{
5488
+ }>, {}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_74<__VLS_TypePropsToRuntimeProps_77<{
5464
5489
  returnRouteName: string;
5465
5490
  }>, {}>>>, {}, {}>;
5466
5491
 
@@ -6769,6 +6794,7 @@ export declare const i18n: I18n<{
6769
6794
  remainingHours: string;
6770
6795
  remainingDays: string;
6771
6796
  };
6797
+ now: string;
6772
6798
  };
6773
6799
  sortable: {
6774
6800
  addNewAtEnd: string;
@@ -6983,6 +7009,10 @@ export declare const i18n: I18n<{
6983
7009
  badge: string;
6984
7010
  open: string;
6985
7011
  close: string;
7012
+ confirmEdit: {
7013
+ ok: string;
7014
+ cancel: string;
7015
+ };
6986
7016
  dataIterator: {
6987
7017
  noResultsText: string;
6988
7018
  loadingText: string;
@@ -7008,12 +7038,20 @@ export declare const i18n: I18n<{
7008
7038
  lastPage: string;
7009
7039
  pageText: string;
7010
7040
  };
7041
+ dateRangeInput: {
7042
+ divider: string;
7043
+ };
7011
7044
  datePicker: {
7012
7045
  itemsSelected: string;
7013
- nextMonthAriaLabel: string;
7014
- nextYearAriaLabel: string;
7015
- prevMonthAriaLabel: string;
7016
- prevYearAriaLabel: string;
7046
+ range: {
7047
+ title: string;
7048
+ header: string;
7049
+ };
7050
+ title: string;
7051
+ header: string;
7052
+ input: {
7053
+ placeholder: string;
7054
+ };
7017
7055
  };
7018
7056
  noDataText: string;
7019
7057
  carousel: {
@@ -7025,11 +7063,13 @@ export declare const i18n: I18n<{
7025
7063
  };
7026
7064
  calendar: {
7027
7065
  moreEvents: string;
7066
+ today: string;
7028
7067
  };
7029
7068
  input: {
7030
7069
  clear: string;
7031
7070
  prependAction: string;
7032
7071
  appendAction: string;
7072
+ otp: string;
7033
7073
  };
7034
7074
  fileInput: {
7035
7075
  counter: string;
@@ -7050,11 +7090,20 @@ export declare const i18n: I18n<{
7050
7090
  last: string;
7051
7091
  };
7052
7092
  };
7093
+ stepper: {
7094
+ next: string;
7095
+ prev: string;
7096
+ };
7053
7097
  rating: {
7054
7098
  ariaLabel: {
7055
7099
  item: string;
7056
7100
  };
7057
7101
  };
7102
+ loading: string;
7103
+ infiniteScroll: {
7104
+ loadMore: string;
7105
+ empty: string;
7106
+ };
7058
7107
  };
7059
7108
  error: {
7060
7109
  apiValidation: {
@@ -7626,6 +7675,7 @@ export declare const messagesCs: {
7626
7675
  remainingHours: string;
7627
7676
  remainingDays: string;
7628
7677
  };
7678
+ now: string;
7629
7679
  };
7630
7680
  sortable: {
7631
7681
  addNewAtEnd: string;
@@ -7840,6 +7890,10 @@ export declare const messagesCs: {
7840
7890
  badge: string;
7841
7891
  open: string;
7842
7892
  close: string;
7893
+ confirmEdit: {
7894
+ ok: string;
7895
+ cancel: string;
7896
+ };
7843
7897
  dataIterator: {
7844
7898
  noResultsText: string;
7845
7899
  loadingText: string;
@@ -7865,12 +7919,20 @@ export declare const messagesCs: {
7865
7919
  lastPage: string;
7866
7920
  pageText: string;
7867
7921
  };
7922
+ dateRangeInput: {
7923
+ divider: string;
7924
+ };
7868
7925
  datePicker: {
7869
7926
  itemsSelected: string;
7870
- nextMonthAriaLabel: string;
7871
- nextYearAriaLabel: string;
7872
- prevMonthAriaLabel: string;
7873
- prevYearAriaLabel: string;
7927
+ range: {
7928
+ title: string;
7929
+ header: string;
7930
+ };
7931
+ title: string;
7932
+ header: string;
7933
+ input: {
7934
+ placeholder: string;
7935
+ };
7874
7936
  };
7875
7937
  noDataText: string;
7876
7938
  carousel: {
@@ -7882,11 +7944,13 @@ export declare const messagesCs: {
7882
7944
  };
7883
7945
  calendar: {
7884
7946
  moreEvents: string;
7947
+ today: string;
7885
7948
  };
7886
7949
  input: {
7887
7950
  clear: string;
7888
7951
  prependAction: string;
7889
7952
  appendAction: string;
7953
+ otp: string;
7890
7954
  };
7891
7955
  fileInput: {
7892
7956
  counter: string;
@@ -7907,11 +7971,20 @@ export declare const messagesCs: {
7907
7971
  last: string;
7908
7972
  };
7909
7973
  };
7974
+ stepper: {
7975
+ next: string;
7976
+ prev: string;
7977
+ };
7910
7978
  rating: {
7911
7979
  ariaLabel: {
7912
7980
  item: string;
7913
7981
  };
7914
7982
  };
7983
+ loading: string;
7984
+ infiniteScroll: {
7985
+ loadMore: string;
7986
+ empty: string;
7987
+ };
7915
7988
  };
7916
7989
  error: {
7917
7990
  apiValidation: {
@@ -8276,6 +8349,7 @@ export declare const messagesEn: {
8276
8349
  remainingHours: string;
8277
8350
  remainingDays: string;
8278
8351
  };
8352
+ now: string;
8279
8353
  };
8280
8354
  sortable: {
8281
8355
  addNewAtEnd: string;
@@ -8490,6 +8564,10 @@ export declare const messagesEn: {
8490
8564
  badge: string;
8491
8565
  open: string;
8492
8566
  close: string;
8567
+ confirmEdit: {
8568
+ ok: string;
8569
+ cancel: string;
8570
+ };
8493
8571
  dataIterator: {
8494
8572
  noResultsText: string;
8495
8573
  loadingText: string;
@@ -8515,12 +8593,20 @@ export declare const messagesEn: {
8515
8593
  lastPage: string;
8516
8594
  pageText: string;
8517
8595
  };
8596
+ dateRangeInput: {
8597
+ divider: string;
8598
+ };
8518
8599
  datePicker: {
8519
8600
  itemsSelected: string;
8520
- nextMonthAriaLabel: string;
8521
- nextYearAriaLabel: string;
8522
- prevMonthAriaLabel: string;
8523
- prevYearAriaLabel: string;
8601
+ range: {
8602
+ title: string;
8603
+ header: string;
8604
+ };
8605
+ title: string;
8606
+ header: string;
8607
+ input: {
8608
+ placeholder: string;
8609
+ };
8524
8610
  };
8525
8611
  noDataText: string;
8526
8612
  carousel: {
@@ -8532,11 +8618,13 @@ export declare const messagesEn: {
8532
8618
  };
8533
8619
  calendar: {
8534
8620
  moreEvents: string;
8621
+ today: string;
8535
8622
  };
8536
8623
  input: {
8537
8624
  clear: string;
8538
8625
  prependAction: string;
8539
8626
  appendAction: string;
8627
+ otp: string;
8540
8628
  };
8541
8629
  fileInput: {
8542
8630
  counter: string;
@@ -8557,11 +8645,20 @@ export declare const messagesEn: {
8557
8645
  last: string;
8558
8646
  };
8559
8647
  };
8648
+ stepper: {
8649
+ next: string;
8650
+ prev: string;
8651
+ };
8560
8652
  rating: {
8561
8653
  ariaLabel: {
8562
8654
  item: string;
8563
8655
  };
8564
8656
  };
8657
+ loading: string;
8658
+ infiniteScroll: {
8659
+ loadMore: string;
8660
+ empty: string;
8661
+ };
8565
8662
  };
8566
8663
  error: {
8567
8664
  apiValidation: {
@@ -8930,6 +9027,7 @@ export declare const messagesSk: {
8930
9027
  remainingHours: string;
8931
9028
  remainingDays: string;
8932
9029
  };
9030
+ now: string;
8933
9031
  };
8934
9032
  sortable: {
8935
9033
  addNewAtEnd: string;
@@ -9144,6 +9242,10 @@ export declare const messagesSk: {
9144
9242
  badge: string;
9145
9243
  open: string;
9146
9244
  close: string;
9245
+ confirmEdit: {
9246
+ ok: string;
9247
+ cancel: string;
9248
+ };
9147
9249
  dataIterator: {
9148
9250
  noResultsText: string;
9149
9251
  loadingText: string;
@@ -9169,12 +9271,20 @@ export declare const messagesSk: {
9169
9271
  lastPage: string;
9170
9272
  pageText: string;
9171
9273
  };
9274
+ dateRangeInput: {
9275
+ divider: string;
9276
+ };
9172
9277
  datePicker: {
9173
9278
  itemsSelected: string;
9174
- nextMonthAriaLabel: string;
9175
- nextYearAriaLabel: string;
9176
- prevMonthAriaLabel: string;
9177
- prevYearAriaLabel: string;
9279
+ range: {
9280
+ title: string;
9281
+ header: string;
9282
+ };
9283
+ title: string;
9284
+ header: string;
9285
+ input: {
9286
+ placeholder: string;
9287
+ };
9178
9288
  };
9179
9289
  noDataText: string;
9180
9290
  carousel: {
@@ -9186,11 +9296,13 @@ export declare const messagesSk: {
9186
9296
  };
9187
9297
  calendar: {
9188
9298
  moreEvents: string;
9299
+ today: string;
9189
9300
  };
9190
9301
  input: {
9191
9302
  clear: string;
9192
9303
  prependAction: string;
9193
9304
  appendAction: string;
9305
+ otp: string;
9194
9306
  };
9195
9307
  fileInput: {
9196
9308
  counter: string;
@@ -9211,11 +9323,20 @@ export declare const messagesSk: {
9211
9323
  last: string;
9212
9324
  };
9213
9325
  };
9326
+ stepper: {
9327
+ next: string;
9328
+ prev: string;
9329
+ };
9214
9330
  rating: {
9215
9331
  ariaLabel: {
9216
9332
  item: string;
9217
9333
  };
9218
9334
  };
9335
+ loading: string;
9336
+ infiniteScroll: {
9337
+ loadMore: string;
9338
+ empty: string;
9339
+ };
9219
9340
  };
9220
9341
  error: {
9221
9342
  apiValidation: {