@club-employes/utopia 4.229.0 → 4.230.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.
@@ -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
  }