@anzusystems/common-admin 1.40.0-alpha7 → 1.40.0-alpha8

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.
@@ -178,6 +178,8 @@ declare type __VLS_NonUndefinedable_71<T> = T extends undefined ? never : T;
178
178
 
179
179
  declare type __VLS_NonUndefinedable_72<T> = T extends undefined ? never : T;
180
180
 
181
+ declare type __VLS_NonUndefinedable_73<T> = T extends undefined ? never : T;
182
+
181
183
  declare type __VLS_NonUndefinedable_8<T> = T extends undefined ? never : T;
182
184
 
183
185
  declare type __VLS_NonUndefinedable_9<T> = T extends undefined ? never : T;
@@ -450,6 +452,10 @@ declare type __VLS_Prettify_7<T> = {
450
452
  [K in keyof T]: T[K];
451
453
  } & {};
452
454
 
455
+ declare type __VLS_Prettify_70<T> = {
456
+ [K in keyof T]: T[K];
457
+ } & {};
458
+
453
459
  declare type __VLS_Prettify_8<T> = {
454
460
  [K in keyof T]: T[K];
455
461
  } & {};
@@ -1088,6 +1094,15 @@ declare type __VLS_TypePropsToRuntimeProps_72<T> = {
1088
1094
  };
1089
1095
  };
1090
1096
 
1097
+ declare type __VLS_TypePropsToRuntimeProps_73<T> = {
1098
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
1099
+ type: PropType<__VLS_NonUndefinedable_73<T[K]>>;
1100
+ } : {
1101
+ type: PropType<T[K]>;
1102
+ required: true;
1103
+ };
1104
+ };
1105
+
1091
1106
  declare type __VLS_TypePropsToRuntimeProps_8<T> = {
1092
1107
  [K in keyof T]-?: {} extends Pick<T, K> ? {
1093
1108
  type: PropType<__VLS_NonUndefinedable_8<T[K]>>;
@@ -1508,6 +1523,12 @@ declare type __VLS_WithDefaults_7<P, D> = {
1508
1523
  }> : P[K];
1509
1524
  };
1510
1525
 
1526
+ declare type __VLS_WithDefaults_70<P, D> = {
1527
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify_70<P[K] & {
1528
+ default: D[K];
1529
+ }> : P[K];
1530
+ };
1531
+
1511
1532
  declare type __VLS_WithDefaults_8<P, D> = {
1512
1533
  [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify_8<P[K] & {
1513
1534
  default: D[K];
@@ -1973,7 +1994,7 @@ export declare const AAnzuUserAvatar: DefineComponent<__VLS_WithDefaults_53<__VL
1973
1994
  containerClass: string;
1974
1995
  }, {}>;
1975
1996
 
1976
- export declare const AAssetSelect: __VLS_WithTemplateSlots_16<DefineComponent<__VLS_WithDefaults_65<__VLS_TypePropsToRuntimeProps_68<{
1997
+ export declare const AAssetSelect: __VLS_WithTemplateSlots_16<DefineComponent<__VLS_WithDefaults_66<__VLS_TypePropsToRuntimeProps_69<{
1977
1998
  modelValue?: boolean | undefined;
1978
1999
  assetType: "image" | "audio" | "video" | DamAssetType | "document";
1979
2000
  minCount: number;
@@ -1991,7 +2012,7 @@ export declare const AAssetSelect: __VLS_WithTemplateSlots_16<DefineComponent<__
1991
2012
  }, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
1992
2013
  "update:modelValue": (data: boolean) => void;
1993
2014
  onConfirm: (data: AssetSelectReturnData) => void;
1994
- }, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_65<__VLS_TypePropsToRuntimeProps_68<{
2015
+ }, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_66<__VLS_TypePropsToRuntimeProps_69<{
1995
2016
  modelValue?: boolean | undefined;
1996
2017
  assetType: "image" | "audio" | "video" | DamAssetType | "document";
1997
2018
  minCount: number;
@@ -3760,14 +3781,67 @@ export declare const AImageWidgetMultiple: DefineComponent<__VLS_WithDefaults_64
3760
3781
  callDeleteApiOnRemove: boolean;
3761
3782
  }, {}>;
3762
3783
 
3784
+ export declare const AImageWidgetMultipleSimple: DefineComponent<__VLS_WithDefaults_65<__VLS_TypePropsToRuntimeProps_68<{
3785
+ modelValue: IntegerId[];
3786
+ images?: ImageAware[] | undefined;
3787
+ configName?: string | undefined;
3788
+ label?: string | undefined;
3789
+ width?: number | undefined;
3790
+ disableAspectRatio?: boolean | undefined;
3791
+ aspectRatio?: string | number | undefined;
3792
+ showDescription?: boolean | undefined;
3793
+ showSource?: boolean | undefined;
3794
+ }>, {
3795
+ images: () => never[];
3796
+ configName: string;
3797
+ label: undefined;
3798
+ image: undefined;
3799
+ width: undefined;
3800
+ disableAspectRatio: boolean;
3801
+ aspectRatio: number;
3802
+ showDescription: boolean;
3803
+ showSource: boolean;
3804
+ }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_65<__VLS_TypePropsToRuntimeProps_68<{
3805
+ modelValue: IntegerId[];
3806
+ images?: ImageAware[] | undefined;
3807
+ configName?: string | undefined;
3808
+ label?: string | undefined;
3809
+ width?: number | undefined;
3810
+ disableAspectRatio?: boolean | undefined;
3811
+ aspectRatio?: string | number | undefined;
3812
+ showDescription?: boolean | undefined;
3813
+ showSource?: boolean | undefined;
3814
+ }>, {
3815
+ images: () => never[];
3816
+ configName: string;
3817
+ label: undefined;
3818
+ image: undefined;
3819
+ width: undefined;
3820
+ disableAspectRatio: boolean;
3821
+ aspectRatio: number;
3822
+ showDescription: boolean;
3823
+ showSource: boolean;
3824
+ }>>>, {
3825
+ width: number;
3826
+ label: string;
3827
+ configName: string;
3828
+ disableAspectRatio: boolean;
3829
+ aspectRatio: number | string;
3830
+ showDescription: boolean;
3831
+ showSource: boolean;
3832
+ images: ImageAware[];
3833
+ }, {}>;
3834
+
3763
3835
  export declare const AImageWidgetSimple: __VLS_WithTemplateSlots_15<DefineComponent<__VLS_WithDefaults_63<__VLS_TypePropsToRuntimeProps_66<{
3764
3836
  modelValue: IntegerIdNullable | undefined;
3765
- image?: ImageAware | ImageCreateUpdateAware | undefined;
3837
+ image?: ImageAware | ImageCreateUpdateAware | null | undefined;
3766
3838
  configName?: string | undefined;
3767
3839
  label?: string | undefined;
3768
3840
  width?: number | undefined;
3769
3841
  disableAspectRatio?: boolean | undefined;
3770
3842
  aspectRatio?: string | number | undefined;
3843
+ showDescription?: boolean | undefined;
3844
+ showSource?: boolean | undefined;
3771
3845
  }>, {
3772
3846
  configName: string;
3773
3847
  label: undefined;
@@ -3775,14 +3849,18 @@ export declare const AImageWidgetSimple: __VLS_WithTemplateSlots_15<DefineCompon
3775
3849
  width: undefined;
3776
3850
  disableAspectRatio: boolean;
3777
3851
  aspectRatio: number;
3852
+ showDescription: boolean;
3853
+ showSource: boolean;
3778
3854
  }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_63<__VLS_TypePropsToRuntimeProps_66<{
3779
3855
  modelValue: IntegerIdNullable | undefined;
3780
- image?: ImageAware | ImageCreateUpdateAware | undefined;
3856
+ image?: ImageAware | ImageCreateUpdateAware | null | undefined;
3781
3857
  configName?: string | undefined;
3782
3858
  label?: string | undefined;
3783
3859
  width?: number | undefined;
3784
3860
  disableAspectRatio?: boolean | undefined;
3785
3861
  aspectRatio?: string | number | undefined;
3862
+ showDescription?: boolean | undefined;
3863
+ showSource?: boolean | undefined;
3786
3864
  }>, {
3787
3865
  configName: string;
3788
3866
  label: undefined;
@@ -3790,13 +3868,17 @@ export declare const AImageWidgetSimple: __VLS_WithTemplateSlots_15<DefineCompon
3790
3868
  width: undefined;
3791
3869
  disableAspectRatio: boolean;
3792
3870
  aspectRatio: number;
3871
+ showDescription: boolean;
3872
+ showSource: boolean;
3793
3873
  }>>>, {
3794
3874
  width: number;
3795
- image: ImageAware | ImageCreateUpdateAware;
3875
+ image: ImageAware | ImageCreateUpdateAware | null;
3796
3876
  label: string;
3797
3877
  configName: string;
3798
3878
  disableAspectRatio: boolean;
3799
3879
  aspectRatio: string | number;
3880
+ showDescription: boolean;
3881
+ showSource: boolean;
3800
3882
  }, {}>, {
3801
3883
  append?(_: {
3802
3884
  image: {
@@ -3859,7 +3941,7 @@ export declare const ALogData: DefineComponent<__VLS_WithDefaults_29<__VLS_TypeP
3859
3941
  data: any;
3860
3942
  }>, {}>>>, {}, {}>;
3861
3943
 
3862
- export declare const ALoginView: DefineComponent<__VLS_WithDefaults_66<__VLS_TypePropsToRuntimeProps_69<{
3944
+ export declare const ALoginView: DefineComponent<__VLS_WithDefaults_67<__VLS_TypePropsToRuntimeProps_70<{
3863
3945
  title?: string | undefined;
3864
3946
  logoUrl?: string | undefined;
3865
3947
  loginUrl?: undefined | (() => string);
@@ -3869,7 +3951,7 @@ export declare const ALoginView: DefineComponent<__VLS_WithDefaults_66<__VLS_Typ
3869
3951
  logoUrl: undefined;
3870
3952
  loginUrl: undefined;
3871
3953
  dataCy: string;
3872
- }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_66<__VLS_TypePropsToRuntimeProps_69<{
3954
+ }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_67<__VLS_TypePropsToRuntimeProps_70<{
3873
3955
  title?: string | undefined;
3874
3956
  logoUrl?: string | undefined;
3875
3957
  loginUrl?: undefined | (() => string);
@@ -3892,11 +3974,11 @@ export declare const ALogLevelChip: DefineComponent<__VLS_WithDefaults_52<__VLS_
3892
3974
  level: LogLevel;
3893
3975
  }>, {}>>>, {}, {}>;
3894
3976
 
3895
- export declare const ALogoutView: DefineComponent<__VLS_WithDefaults_67<__VLS_TypePropsToRuntimeProps_70<{
3977
+ export declare const ALogoutView: DefineComponent<__VLS_WithDefaults_68<__VLS_TypePropsToRuntimeProps_71<{
3896
3978
  logoutUrl?: undefined | (() => string);
3897
3979
  }>, {
3898
3980
  logoutUrl: undefined;
3899
- }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_67<__VLS_TypePropsToRuntimeProps_70<{
3981
+ }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_68<__VLS_TypePropsToRuntimeProps_71<{
3900
3982
  logoutUrl?: undefined | (() => string);
3901
3983
  }>, {
3902
3984
  logoutUrl: undefined;
@@ -3904,9 +3986,9 @@ export declare const ALogoutView: DefineComponent<__VLS_WithDefaults_67<__VLS_Ty
3904
3986
  logoutUrl: () => string;
3905
3987
  }, {}>;
3906
3988
 
3907
- export declare const ANotFoundView: DefineComponent<__VLS_WithDefaults_69<__VLS_TypePropsToRuntimeProps_72<{
3989
+ export declare const ANotFoundView: DefineComponent<__VLS_WithDefaults_70<__VLS_TypePropsToRuntimeProps_73<{
3908
3990
  returnRouteName: string;
3909
- }>, {}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_69<__VLS_TypePropsToRuntimeProps_72<{
3991
+ }>, {}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_70<__VLS_TypePropsToRuntimeProps_73<{
3910
3992
  returnRouteName: string;
3911
3993
  }>, {}>>>, {}, {}>;
3912
3994
 
@@ -4768,9 +4850,9 @@ declare interface AudioAttributes {
4768
4850
  bitrate: number;
4769
4851
  }
4770
4852
 
4771
- export declare const AUnauthorizedView: DefineComponent<__VLS_WithDefaults_68<__VLS_TypePropsToRuntimeProps_71<{
4853
+ export declare const AUnauthorizedView: DefineComponent<__VLS_WithDefaults_69<__VLS_TypePropsToRuntimeProps_72<{
4772
4854
  returnRouteName: string;
4773
- }>, {}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_68<__VLS_TypePropsToRuntimeProps_71<{
4855
+ }>, {}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_69<__VLS_TypePropsToRuntimeProps_72<{
4774
4856
  returnRouteName: string;
4775
4857
  }>, {}>>>, {}, {}>;
4776
4858
 
@@ -5797,7 +5879,7 @@ declare interface ImageAttributes {
5797
5879
  animated: boolean;
5798
5880
  }
5799
5881
 
5800
- declare interface ImageAware {
5882
+ export declare interface ImageAware {
5801
5883
  id: IntegerId;
5802
5884
  texts: {
5803
5885
  description: string;
@@ -5810,10 +5892,14 @@ declare interface ImageAware {
5810
5892
  position: number;
5811
5893
  }
5812
5894
 
5813
- declare interface ImageCreateUpdateAware extends Omit<ImageAware, 'id'> {
5895
+ export declare interface ImageCreateUpdateAware extends Omit<ImageAware, 'id'> {
5814
5896
  id?: IntegerId;
5815
5897
  }
5816
5898
 
5899
+ export declare interface ImageCreateUpdateAwareKeyed extends ImageCreateUpdateAware {
5900
+ key: string;
5901
+ }
5902
+
5817
5903
  export declare type Immutable<T> = {
5818
5904
  readonly [K in keyof T]: Immutable<T[K]>;
5819
5905
  };