formica-ui-lib 1.0.311 → 1.0.312

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.
@@ -7,4 +7,5 @@ export type ColourMatchingChartData = {
7
7
  };
8
8
  export type ColourMatchingChartProps = {
9
9
  colourMatching?: ColourMatchingChartData;
10
+ label?: string;
10
11
  };
@@ -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;
@@ -88,6 +88,7 @@ export type PurchasePanelProps = {
88
88
  title: string;
89
89
  description?: string;
90
90
  colourMatching?: ColourMatchingChartData;
91
+ colourMatchingLabel?: string;
91
92
  patternRepeat?: string;
92
93
  onDownloadSwatch?: () => void;
93
94
  onDownloadFullSheet?: () => void;
@@ -6,6 +6,7 @@ export type ProductDetailsData = {
6
6
  summary?: string;
7
7
  content?: React.ReactNode;
8
8
  colourMatching?: ColourMatchingChartData;
9
+ colourMatchingLabel?: string;
9
10
  };
10
11
  export type TextureItem = {
11
12
  key: string;
@@ -35,6 +35,7 @@ export type CategoryPageFilterLabels = {
35
35
  appliedOptionsHeader?: string;
36
36
  clearAllLabel?: string;
37
37
  applyFiltersLabel?: string;
38
+ emptyStateLabel?: string;
38
39
  };
39
40
  export type CategoryPageData = {
40
41
  hero: StandardCopyHeroProps;
@@ -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[];