formica-ui-lib 1.0.311 → 1.0.313
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/componentProps/molecules/productinformation/colourmatchingchart/ColourMatchingChartProps.d.ts +1 -0
- package/dist/componentProps/organisms/cart/purchasepanel/PurchasePanelLeftPanelProps.d.ts +1 -0
- package/dist/componentProps/organisms/cart/purchasepanel/PurchasePanelProps.d.ts +1 -0
- package/dist/componentProps/organisms/sections/productinformationsection/ProductInformationSectionProps.d.ts +1 -0
- package/dist/componentProps/templates/cart/salesforce/shipping/SalesforceCartShippingTemplateProps.d.ts +3 -0
- package/dist/componentProps/templates/categorypagetemplate/CategoryPageTemplateProps.d.ts +1 -0
- package/dist/componentProps/templates/productdetailpagetemplate/ProductDetailPageTemplateProps.d.ts +2 -0
- package/dist/index.cjs +3 -3
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1326 -1308
- package/package.json +1 -1
|
@@ -22,6 +22,7 @@ export type PurchasePanelLeftPanelProps = {
|
|
|
22
22
|
decor?: string;
|
|
23
23
|
description?: string;
|
|
24
24
|
colourMatching?: ColourMatchingChartData;
|
|
25
|
+
colourMatchingLabel?: string;
|
|
25
26
|
patternRepeat?: string;
|
|
26
27
|
onDownloadSwatch?: () => void;
|
|
27
28
|
onDownloadFullSheet?: () => void;
|
|
@@ -14,6 +14,9 @@ export interface SalesforceCartShippingTemplateProps {
|
|
|
14
14
|
privacyConsentChecked?: boolean;
|
|
15
15
|
privacyConsentErrorMessage?: string;
|
|
16
16
|
submitLabel?: string;
|
|
17
|
+
/** Frontend-controlled request state. Set before sending and clear when processing finishes. */
|
|
18
|
+
isSubmitting?: boolean;
|
|
19
|
+
submittingLabel?: string;
|
|
17
20
|
onPrivacyConsentChange?: (checked: boolean) => void;
|
|
18
21
|
onPrivacyPolicyClick?: () => void;
|
|
19
22
|
onSubmitSampleOrder?: () => void;
|
package/dist/componentProps/templates/productdetailpagetemplate/ProductDetailPageTemplateProps.d.ts
CHANGED
|
@@ -34,6 +34,7 @@ export type ProductDetailProduct = {
|
|
|
34
34
|
brand?: string;
|
|
35
35
|
description?: string;
|
|
36
36
|
colourMatching?: ColourMatchingChartData;
|
|
37
|
+
colourMatchingLabel?: string;
|
|
37
38
|
sku?: string;
|
|
38
39
|
patternRepeat?: string;
|
|
39
40
|
currency?: string;
|
|
@@ -83,6 +84,7 @@ export type ProductDetailRange = {
|
|
|
83
84
|
summary?: string;
|
|
84
85
|
content?: string;
|
|
85
86
|
colourMatching?: ColourMatchingChartData;
|
|
87
|
+
colourMatchingLabel?: string;
|
|
86
88
|
};
|
|
87
89
|
texture?: {
|
|
88
90
|
groups?: ProductDetailTextureGroup[];
|