@club-employes/utopia 4.229.0 → 4.231.0

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.
@@ -251,6 +251,7 @@ declare const __VLS_component: DefineComponent<__VLS_Props, {}, {}, {}, {}, Comp
251
251
  allowAnyFileType: boolean;
252
252
  existingFiles: DropFileExistingFile[];
253
253
  existingFilesClickable: boolean;
254
+ showFileTitle: boolean;
254
255
  enableImageEditor: boolean;
255
256
  }, {}, {}, {}, string, ComponentProvideOptions, false, {
256
257
  fileNameInputRef: CreateComponentPublicInstanceWithMixins<Readonly< InputTextProps> & Readonly<{
@@ -33,6 +33,7 @@ export interface DropFileProps {
33
33
  existingFiles?: DropFileExistingFile[];
34
34
  existingFilesClickable?: boolean;
35
35
  label?: string;
36
+ showFileTitle?: boolean;
36
37
  }
37
38
  export interface DropFileDropEvent {
38
39
  files: File[] | null;
@@ -24,7 +24,10 @@ declare const _default: DefineComponent<ProductSummaryProps, {}, {}, {}, {}, Com
24
24
  additionalInfo: ProductSummaryAdditionalInfo[];
25
25
  shippingLabel: string;
26
26
  shippingOptions: ProductSummaryShipping[];
27
+ seeMoreLabel: string;
28
+ seeLessLabel: string;
27
29
  }, {}, {}, {}, string, ComponentProvideOptions, false, {
28
30
  tipsContentRef: HTMLDivElement;
31
+ shortDescriptionContentRef: HTMLDivElement;
29
32
  }, HTMLDivElement>;
30
33
  export default _default;
@@ -45,8 +45,6 @@ export interface ProductSummarySubvention {
45
45
  export interface ProductSummaryTips {
46
46
  title: string;
47
47
  content: string;
48
- seeMoreLabel: string;
49
- seeLessLabel: string;
50
48
  }
51
49
  export interface ProductSummaryValidity {
52
50
  label: string;
@@ -84,6 +82,7 @@ export interface ProductSummaryProps {
84
82
  options?: OptionSelectProps[];
85
83
  code?: string;
86
84
  codeLabel?: string;
85
+ shortDescription?: string;
87
86
  codeTooltipLabel?: string;
88
87
  subvention?: ProductSummarySubvention;
89
88
  price?: ProductSummaryPrice;
@@ -95,4 +94,6 @@ export interface ProductSummaryProps {
95
94
  additionalInfo?: ProductSummaryAdditionalInfo[];
96
95
  shippingLabel?: string;
97
96
  shippingOptions?: ProductSummaryShipping[];
97
+ seeMoreLabel?: string;
98
+ seeLessLabel?: string;
98
99
  }