@anzusystems/common-admin 1.44.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];
@@ -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;
@@ -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;
@@ -2915,6 +2957,55 @@ export declare const ACustomDataFormElement: DefineComponent<__VLS_WithDefaults_
2915
2957
  validationScope: string | number | boolean | symbol;
2916
2958
  }, {}>;
2917
2959
 
2960
+ export declare const ADatatable: <TItem = Record<string, unknown>>(__VLS_props: {
2961
+ items: TItem[];
2962
+ "onClick:row"?: ((data: any) => any) | undefined;
2963
+ columns: any;
2964
+ itemKey?: string | undefined;
2965
+ } & VNodeProps & AllowedComponentProps & ComponentCustomProps, __VLS_ctx?: {
2966
+ attrs: any;
2967
+ slots: Partial<Record<string, (_: {
2968
+ item: any;
2969
+ }) => any>> & {
2970
+ bottom?(_: {}): any;
2971
+ };
2972
+ emit: (e: 'click:row', data: any) => void;
2973
+ } | undefined, __VLS_expose?: ((exposed: ShallowUnwrapRef<{}>) => void) | undefined, __VLS_setup?: Promise<{
2974
+ props: {
2975
+ items: TItem[];
2976
+ "onClick:row"?: ((data: any) => any) | undefined;
2977
+ columns: any;
2978
+ itemKey?: string | undefined;
2979
+ } & VNodeProps & AllowedComponentProps & ComponentCustomProps;
2980
+ expose(exposed: ShallowUnwrapRef<{}>): void;
2981
+ attrs: any;
2982
+ slots: Partial<Record<string, (_: {
2983
+ item: any;
2984
+ }) => any>> & {
2985
+ bottom?(_: {}): any;
2986
+ };
2987
+ emit: (e: 'click:row', data: any) => void;
2988
+ }>) => VNode<RendererNode, RendererElement, {
2989
+ [key: string]: any;
2990
+ }> & {
2991
+ __ctx?: {
2992
+ props: {
2993
+ items: TItem[];
2994
+ "onClick:row"?: ((data: any) => any) | undefined;
2995
+ columns: any;
2996
+ itemKey?: string | undefined;
2997
+ } & VNodeProps & AllowedComponentProps & ComponentCustomProps;
2998
+ expose(exposed: ShallowUnwrapRef<{}>): void;
2999
+ attrs: any;
3000
+ slots: Partial<Record<string, (_: {
3001
+ item: any;
3002
+ }) => any>> & {
3003
+ bottom?(_: {}): any;
3004
+ };
3005
+ emit: (e: 'click:row', data: any) => void;
3006
+ } | undefined;
3007
+ };
3008
+
2918
3009
  export declare const ADatatableConfigButton: DefineComponent<__VLS_WithDefaults_28<__VLS_TypePropsToRuntimeProps_30<{
2919
3010
  columnsAll: ColumnInternalValues[];
2920
3011
  columnsHidden: Array<string>;
@@ -3013,21 +3104,18 @@ export declare const ADatetime: DefineComponent<__VLS_WithDefaults_25<__VLS_Type
3013
3104
  }, {}>;
3014
3105
 
3015
3106
  export declare const ADatetimePicker: __VLS_WithTemplateSlots_13<DefineComponent<__VLS_WithDefaults_26<__VLS_TypePropsToRuntimeProps_28<{
3016
- modelValue: DatetimeUTCNullable | undefined;
3017
- type?: "datetime" | "date" | undefined;
3107
+ modelValue: string | null | undefined;
3108
+ type?: "datetime" | undefined;
3018
3109
  label?: string | undefined;
3019
3110
  hideLabel?: boolean | undefined;
3020
3111
  clearable?: boolean | undefined;
3021
3112
  disabled?: boolean | undefined;
3022
3113
  hideDetails?: boolean | undefined;
3023
- minNow?: boolean | undefined;
3024
3114
  required?: boolean | undefined;
3025
3115
  hideSetToNow?: boolean | undefined;
3026
3116
  placeholder?: string | undefined;
3027
- enable?: DateLimit<DateOption>[] | undefined;
3028
- weekNumbers?: false | undefined;
3029
3117
  dataCy?: string | undefined;
3030
- defaultValue?: DatetimeUTCNullable | undefined;
3118
+ defaultValue?: string | null | undefined;
3031
3119
  errorMessages?: string[] | undefined;
3032
3120
  }>, {
3033
3121
  type: string;
@@ -3036,38 +3124,31 @@ export declare const ADatetimePicker: __VLS_WithTemplateSlots_13<DefineComponent
3036
3124
  clearable: boolean;
3037
3125
  disabled: boolean;
3038
3126
  hideDetails: boolean;
3039
- minNow: boolean;
3040
3127
  required: boolean;
3041
3128
  hideSetToNow: boolean;
3042
3129
  placeholder: string;
3043
- enable: undefined;
3044
- weekNumbers: boolean;
3045
3130
  dataCy: string;
3046
3131
  defaultValue: null;
3047
3132
  errorMessages: undefined;
3048
3133
  }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
3049
- change: () => void;
3050
3134
  blur: () => void;
3051
3135
  focus: () => void;
3052
- "update:modelValue": (data: string | null) => void;
3136
+ "update:modelValue": (data: string | null | undefined) => void;
3053
3137
  onOpen: () => void;
3054
3138
  onClose: () => void;
3055
3139
  }, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_26<__VLS_TypePropsToRuntimeProps_28<{
3056
- modelValue: DatetimeUTCNullable | undefined;
3057
- type?: "datetime" | "date" | undefined;
3140
+ modelValue: string | null | undefined;
3141
+ type?: "datetime" | undefined;
3058
3142
  label?: string | undefined;
3059
3143
  hideLabel?: boolean | undefined;
3060
3144
  clearable?: boolean | undefined;
3061
3145
  disabled?: boolean | undefined;
3062
3146
  hideDetails?: boolean | undefined;
3063
- minNow?: boolean | undefined;
3064
3147
  required?: boolean | undefined;
3065
3148
  hideSetToNow?: boolean | undefined;
3066
3149
  placeholder?: string | undefined;
3067
- enable?: DateLimit<DateOption>[] | undefined;
3068
- weekNumbers?: false | undefined;
3069
3150
  dataCy?: string | undefined;
3070
- defaultValue?: DatetimeUTCNullable | undefined;
3151
+ defaultValue?: string | null | undefined;
3071
3152
  errorMessages?: string[] | undefined;
3072
3153
  }>, {
3073
3154
  type: string;
@@ -3076,37 +3157,30 @@ export declare const ADatetimePicker: __VLS_WithTemplateSlots_13<DefineComponent
3076
3157
  clearable: boolean;
3077
3158
  disabled: boolean;
3078
3159
  hideDetails: boolean;
3079
- minNow: boolean;
3080
3160
  required: boolean;
3081
3161
  hideSetToNow: boolean;
3082
3162
  placeholder: string;
3083
- enable: undefined;
3084
- weekNumbers: boolean;
3085
3163
  dataCy: string;
3086
3164
  defaultValue: null;
3087
3165
  errorMessages: undefined;
3088
3166
  }>>> & {
3089
- "onUpdate:modelValue"?: ((data: string | null) => any) | undefined;
3167
+ "onUpdate:modelValue"?: ((data: string | null | undefined) => any) | undefined;
3090
3168
  onFocus?: (() => any) | undefined;
3091
3169
  onBlur?: (() => any) | undefined;
3092
- onChange?: (() => any) | undefined;
3093
3170
  onOnOpen?: (() => any) | undefined;
3094
3171
  onOnClose?: (() => any) | undefined;
3095
3172
  }, {
3096
- enable: DateLimit<DateOption>[];
3097
3173
  disabled: boolean;
3098
- type: "datetime" | "date";
3174
+ type: "datetime";
3175
+ placeholder: string;
3099
3176
  required: boolean;
3100
3177
  label: string;
3101
3178
  dataCy: string;
3102
3179
  hideLabel: boolean;
3103
3180
  clearable: boolean;
3104
3181
  hideDetails: boolean;
3105
- minNow: boolean;
3106
3182
  hideSetToNow: boolean;
3107
- placeholder: string;
3108
- weekNumbers: false;
3109
- defaultValue: DatetimeUTCNullable;
3183
+ defaultValue: string | null;
3110
3184
  errorMessages: string[];
3111
3185
  }, {}>, {
3112
3186
  "append-inner"?(_: {}): any;
@@ -3260,8 +3334,8 @@ export declare const AFilterMixed: DefineComponent<__VLS_WithDefaults_47<__VLS_T
3260
3334
  placeholder: undefined;
3261
3335
  dataCy: string;
3262
3336
  }>>>, {
3263
- dataCy: string;
3264
3337
  placeholder: string;
3338
+ dataCy: string;
3265
3339
  filterId: Filter<any>;
3266
3340
  filterDocId: Filter<any>;
3267
3341
  filterText: Filter<any>;
@@ -3353,8 +3427,8 @@ export declare const AFilterString: DefineComponent<__VLS_WithDefaults_18<__VLS_
3353
3427
  }>>> & {
3354
3428
  "onUpdate:modelValue"?: ((data: Filter<any>) => any) | undefined;
3355
3429
  }, {
3356
- dataCy: string;
3357
3430
  placeholder: string;
3431
+ dataCy: string;
3358
3432
  }, {}>;
3359
3433
 
3360
3434
  export declare const AFilterSubmitButton: DefineComponent<__VLS_WithDefaults_46<__VLS_TypePropsToRuntimeProps_49<{
@@ -3658,8 +3732,8 @@ export declare const AFormRemoteAutocomplete: __VLS_WithTemplateSlots_9<DefineCo
3658
3732
  field: string;
3659
3733
  cachedUsers: CollabCachedUsersMap;
3660
3734
  };
3661
- required: boolean;
3662
3735
  loading: boolean;
3736
+ required: boolean;
3663
3737
  label: string;
3664
3738
  hideLabel: boolean;
3665
3739
  clearable: boolean;
@@ -3751,8 +3825,8 @@ export declare const AFormRemoteAutocompleteWithCached: DefineComponent<__VLS_Wi
3751
3825
  itemTitle: string;
3752
3826
  itemValue: string;
3753
3827
  multiple: boolean;
3754
- required: boolean;
3755
3828
  loading: boolean;
3829
+ required: boolean;
3756
3830
  label: string;
3757
3831
  hideLabel: boolean;
3758
3832
  clearable: boolean;
@@ -4054,16 +4128,16 @@ export declare const AFormTextField: __VLS_WithTemplateSlots_5<DefineComponent<_
4054
4128
  field: string;
4055
4129
  cachedUsers: CollabCachedUsersMap;
4056
4130
  };
4131
+ placeholder: string;
4057
4132
  required: boolean;
4058
4133
  label: string;
4059
4134
  dataCy: string;
4135
+ step: number;
4136
+ maxlength: number;
4060
4137
  hideLabel: boolean;
4061
- placeholder: string;
4062
4138
  persistentPlaceholder: boolean;
4063
- step: number;
4064
4139
  errorMessage: string;
4065
4140
  v: any;
4066
- maxlength: number;
4067
4141
  }, {}>, {
4068
4142
  locked?(_: {
4069
4143
  userId: number;
@@ -4483,7 +4557,7 @@ export declare const ALogData: DefineComponent<__VLS_WithDefaults_30<__VLS_TypeP
4483
4557
  data: any;
4484
4558
  }>, {}>>>, {}, {}>;
4485
4559
 
4486
- export declare const ALoginView: DefineComponent<__VLS_WithDefaults_71<__VLS_TypePropsToRuntimeProps_74<{
4560
+ export declare const ALoginView: DefineComponent<__VLS_WithDefaults_72<__VLS_TypePropsToRuntimeProps_75<{
4487
4561
  title?: string | undefined;
4488
4562
  logoUrl?: string | undefined;
4489
4563
  loginUrl?: undefined | (() => string);
@@ -4493,7 +4567,7 @@ export declare const ALoginView: DefineComponent<__VLS_WithDefaults_71<__VLS_Typ
4493
4567
  logoUrl: undefined;
4494
4568
  loginUrl: undefined;
4495
4569
  dataCy: string;
4496
- }>, {}, 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<{
4497
4571
  title?: string | undefined;
4498
4572
  logoUrl?: string | undefined;
4499
4573
  loginUrl?: undefined | (() => string);
@@ -4516,11 +4590,11 @@ export declare const ALogLevelChip: DefineComponent<__VLS_WithDefaults_53<__VLS_
4516
4590
  level: LogLevel;
4517
4591
  }>, {}>>>, {}, {}>;
4518
4592
 
4519
- export declare const ALogoutView: DefineComponent<__VLS_WithDefaults_72<__VLS_TypePropsToRuntimeProps_75<{
4593
+ export declare const ALogoutView: DefineComponent<__VLS_WithDefaults_73<__VLS_TypePropsToRuntimeProps_76<{
4520
4594
  logoutUrl?: undefined | (() => string);
4521
4595
  }>, {
4522
4596
  logoutUrl: undefined;
4523
- }>, {}, 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<{
4524
4598
  logoutUrl?: undefined | (() => string);
4525
4599
  }>, {
4526
4600
  logoutUrl: undefined;
@@ -4528,9 +4602,9 @@ export declare const ALogoutView: DefineComponent<__VLS_WithDefaults_72<__VLS_Ty
4528
4602
  logoutUrl: () => string;
4529
4603
  }, {}>;
4530
4604
 
4531
- export declare const ANotFoundView: DefineComponent<__VLS_WithDefaults_74<__VLS_TypePropsToRuntimeProps_77<{
4605
+ export declare const ANotFoundView: DefineComponent<__VLS_WithDefaults_75<__VLS_TypePropsToRuntimeProps_78<{
4532
4606
  returnRouteName: string;
4533
- }>, {}>, {}, 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<{
4534
4608
  returnRouteName: string;
4535
4609
  }>, {}>>>, {}, {}>;
4536
4610
 
@@ -5409,9 +5483,9 @@ declare interface AudioAttributes {
5409
5483
  bitrate: number;
5410
5484
  }
5411
5485
 
5412
- export declare const AUnauthorizedView: DefineComponent<__VLS_WithDefaults_73<__VLS_TypePropsToRuntimeProps_76<{
5486
+ export declare const AUnauthorizedView: DefineComponent<__VLS_WithDefaults_74<__VLS_TypePropsToRuntimeProps_77<{
5413
5487
  returnRouteName: string;
5414
- }>, {}>, {}, 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<{
5415
5489
  returnRouteName: string;
5416
5490
  }>, {}>>>, {}, {}>;
5417
5491
 
@@ -6720,6 +6794,7 @@ export declare const i18n: I18n<{
6720
6794
  remainingHours: string;
6721
6795
  remainingDays: string;
6722
6796
  };
6797
+ now: string;
6723
6798
  };
6724
6799
  sortable: {
6725
6800
  addNewAtEnd: string;
@@ -6934,6 +7009,10 @@ export declare const i18n: I18n<{
6934
7009
  badge: string;
6935
7010
  open: string;
6936
7011
  close: string;
7012
+ confirmEdit: {
7013
+ ok: string;
7014
+ cancel: string;
7015
+ };
6937
7016
  dataIterator: {
6938
7017
  noResultsText: string;
6939
7018
  loadingText: string;
@@ -6959,12 +7038,20 @@ export declare const i18n: I18n<{
6959
7038
  lastPage: string;
6960
7039
  pageText: string;
6961
7040
  };
7041
+ dateRangeInput: {
7042
+ divider: string;
7043
+ };
6962
7044
  datePicker: {
6963
7045
  itemsSelected: string;
6964
- nextMonthAriaLabel: string;
6965
- nextYearAriaLabel: string;
6966
- prevMonthAriaLabel: string;
6967
- prevYearAriaLabel: string;
7046
+ range: {
7047
+ title: string;
7048
+ header: string;
7049
+ };
7050
+ title: string;
7051
+ header: string;
7052
+ input: {
7053
+ placeholder: string;
7054
+ };
6968
7055
  };
6969
7056
  noDataText: string;
6970
7057
  carousel: {
@@ -6976,11 +7063,13 @@ export declare const i18n: I18n<{
6976
7063
  };
6977
7064
  calendar: {
6978
7065
  moreEvents: string;
7066
+ today: string;
6979
7067
  };
6980
7068
  input: {
6981
7069
  clear: string;
6982
7070
  prependAction: string;
6983
7071
  appendAction: string;
7072
+ otp: string;
6984
7073
  };
6985
7074
  fileInput: {
6986
7075
  counter: string;
@@ -7001,11 +7090,20 @@ export declare const i18n: I18n<{
7001
7090
  last: string;
7002
7091
  };
7003
7092
  };
7093
+ stepper: {
7094
+ next: string;
7095
+ prev: string;
7096
+ };
7004
7097
  rating: {
7005
7098
  ariaLabel: {
7006
7099
  item: string;
7007
7100
  };
7008
7101
  };
7102
+ loading: string;
7103
+ infiniteScroll: {
7104
+ loadMore: string;
7105
+ empty: string;
7106
+ };
7009
7107
  };
7010
7108
  error: {
7011
7109
  apiValidation: {
@@ -7577,6 +7675,7 @@ export declare const messagesCs: {
7577
7675
  remainingHours: string;
7578
7676
  remainingDays: string;
7579
7677
  };
7678
+ now: string;
7580
7679
  };
7581
7680
  sortable: {
7582
7681
  addNewAtEnd: string;
@@ -7791,6 +7890,10 @@ export declare const messagesCs: {
7791
7890
  badge: string;
7792
7891
  open: string;
7793
7892
  close: string;
7893
+ confirmEdit: {
7894
+ ok: string;
7895
+ cancel: string;
7896
+ };
7794
7897
  dataIterator: {
7795
7898
  noResultsText: string;
7796
7899
  loadingText: string;
@@ -7816,12 +7919,20 @@ export declare const messagesCs: {
7816
7919
  lastPage: string;
7817
7920
  pageText: string;
7818
7921
  };
7922
+ dateRangeInput: {
7923
+ divider: string;
7924
+ };
7819
7925
  datePicker: {
7820
7926
  itemsSelected: string;
7821
- nextMonthAriaLabel: string;
7822
- nextYearAriaLabel: string;
7823
- prevMonthAriaLabel: string;
7824
- prevYearAriaLabel: string;
7927
+ range: {
7928
+ title: string;
7929
+ header: string;
7930
+ };
7931
+ title: string;
7932
+ header: string;
7933
+ input: {
7934
+ placeholder: string;
7935
+ };
7825
7936
  };
7826
7937
  noDataText: string;
7827
7938
  carousel: {
@@ -7833,11 +7944,13 @@ export declare const messagesCs: {
7833
7944
  };
7834
7945
  calendar: {
7835
7946
  moreEvents: string;
7947
+ today: string;
7836
7948
  };
7837
7949
  input: {
7838
7950
  clear: string;
7839
7951
  prependAction: string;
7840
7952
  appendAction: string;
7953
+ otp: string;
7841
7954
  };
7842
7955
  fileInput: {
7843
7956
  counter: string;
@@ -7858,11 +7971,20 @@ export declare const messagesCs: {
7858
7971
  last: string;
7859
7972
  };
7860
7973
  };
7974
+ stepper: {
7975
+ next: string;
7976
+ prev: string;
7977
+ };
7861
7978
  rating: {
7862
7979
  ariaLabel: {
7863
7980
  item: string;
7864
7981
  };
7865
7982
  };
7983
+ loading: string;
7984
+ infiniteScroll: {
7985
+ loadMore: string;
7986
+ empty: string;
7987
+ };
7866
7988
  };
7867
7989
  error: {
7868
7990
  apiValidation: {
@@ -8227,6 +8349,7 @@ export declare const messagesEn: {
8227
8349
  remainingHours: string;
8228
8350
  remainingDays: string;
8229
8351
  };
8352
+ now: string;
8230
8353
  };
8231
8354
  sortable: {
8232
8355
  addNewAtEnd: string;
@@ -8441,6 +8564,10 @@ export declare const messagesEn: {
8441
8564
  badge: string;
8442
8565
  open: string;
8443
8566
  close: string;
8567
+ confirmEdit: {
8568
+ ok: string;
8569
+ cancel: string;
8570
+ };
8444
8571
  dataIterator: {
8445
8572
  noResultsText: string;
8446
8573
  loadingText: string;
@@ -8466,12 +8593,20 @@ export declare const messagesEn: {
8466
8593
  lastPage: string;
8467
8594
  pageText: string;
8468
8595
  };
8596
+ dateRangeInput: {
8597
+ divider: string;
8598
+ };
8469
8599
  datePicker: {
8470
8600
  itemsSelected: string;
8471
- nextMonthAriaLabel: string;
8472
- nextYearAriaLabel: string;
8473
- prevMonthAriaLabel: string;
8474
- prevYearAriaLabel: string;
8601
+ range: {
8602
+ title: string;
8603
+ header: string;
8604
+ };
8605
+ title: string;
8606
+ header: string;
8607
+ input: {
8608
+ placeholder: string;
8609
+ };
8475
8610
  };
8476
8611
  noDataText: string;
8477
8612
  carousel: {
@@ -8483,11 +8618,13 @@ export declare const messagesEn: {
8483
8618
  };
8484
8619
  calendar: {
8485
8620
  moreEvents: string;
8621
+ today: string;
8486
8622
  };
8487
8623
  input: {
8488
8624
  clear: string;
8489
8625
  prependAction: string;
8490
8626
  appendAction: string;
8627
+ otp: string;
8491
8628
  };
8492
8629
  fileInput: {
8493
8630
  counter: string;
@@ -8508,11 +8645,20 @@ export declare const messagesEn: {
8508
8645
  last: string;
8509
8646
  };
8510
8647
  };
8648
+ stepper: {
8649
+ next: string;
8650
+ prev: string;
8651
+ };
8511
8652
  rating: {
8512
8653
  ariaLabel: {
8513
8654
  item: string;
8514
8655
  };
8515
8656
  };
8657
+ loading: string;
8658
+ infiniteScroll: {
8659
+ loadMore: string;
8660
+ empty: string;
8661
+ };
8516
8662
  };
8517
8663
  error: {
8518
8664
  apiValidation: {
@@ -8881,6 +9027,7 @@ export declare const messagesSk: {
8881
9027
  remainingHours: string;
8882
9028
  remainingDays: string;
8883
9029
  };
9030
+ now: string;
8884
9031
  };
8885
9032
  sortable: {
8886
9033
  addNewAtEnd: string;
@@ -9095,6 +9242,10 @@ export declare const messagesSk: {
9095
9242
  badge: string;
9096
9243
  open: string;
9097
9244
  close: string;
9245
+ confirmEdit: {
9246
+ ok: string;
9247
+ cancel: string;
9248
+ };
9098
9249
  dataIterator: {
9099
9250
  noResultsText: string;
9100
9251
  loadingText: string;
@@ -9120,12 +9271,20 @@ export declare const messagesSk: {
9120
9271
  lastPage: string;
9121
9272
  pageText: string;
9122
9273
  };
9274
+ dateRangeInput: {
9275
+ divider: string;
9276
+ };
9123
9277
  datePicker: {
9124
9278
  itemsSelected: string;
9125
- nextMonthAriaLabel: string;
9126
- nextYearAriaLabel: string;
9127
- prevMonthAriaLabel: string;
9128
- prevYearAriaLabel: string;
9279
+ range: {
9280
+ title: string;
9281
+ header: string;
9282
+ };
9283
+ title: string;
9284
+ header: string;
9285
+ input: {
9286
+ placeholder: string;
9287
+ };
9129
9288
  };
9130
9289
  noDataText: string;
9131
9290
  carousel: {
@@ -9137,11 +9296,13 @@ export declare const messagesSk: {
9137
9296
  };
9138
9297
  calendar: {
9139
9298
  moreEvents: string;
9299
+ today: string;
9140
9300
  };
9141
9301
  input: {
9142
9302
  clear: string;
9143
9303
  prependAction: string;
9144
9304
  appendAction: string;
9305
+ otp: string;
9145
9306
  };
9146
9307
  fileInput: {
9147
9308
  counter: string;
@@ -9162,11 +9323,20 @@ export declare const messagesSk: {
9162
9323
  last: string;
9163
9324
  };
9164
9325
  };
9326
+ stepper: {
9327
+ next: string;
9328
+ prev: string;
9329
+ };
9165
9330
  rating: {
9166
9331
  ariaLabel: {
9167
9332
  item: string;
9168
9333
  };
9169
9334
  };
9335
+ loading: string;
9336
+ infiniteScroll: {
9337
+ loadMore: string;
9338
+ empty: string;
9339
+ };
9170
9340
  };
9171
9341
  error: {
9172
9342
  apiValidation: {