@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.
- package/dist/components/organisms/DropFile/DropFile.d.ts +1 -0
- package/dist/components/organisms/DropFile/types.d.ts +1 -0
- package/dist/components/organisms/ProductSummary/ProductSummary.d.ts +3 -0
- package/dist/components/organisms/ProductSummary/types.d.ts +3 -2
- package/dist/index.js +2858 -2824
- package/dist/utopia.css +1 -1
- package/package.json +1 -1
|
@@ -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<{
|
|
@@ -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
|
}
|