formica-ui-lib 1.0.303 → 1.0.304

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.
@@ -5,5 +5,6 @@ export type ClickableCardProps = {
5
5
  ariaLabel: string;
6
6
  ariaControls?: string;
7
7
  ariaExpanded?: boolean;
8
+ ariaPressed?: boolean;
8
9
  className?: string;
9
10
  };
@@ -0,0 +1,15 @@
1
+ export interface MarketReadinessSampleCardClickPayload {
2
+ sampleId: string;
3
+ sku: string;
4
+ }
5
+ export interface MarketReadinessSampleCardProps {
6
+ sampleId: string;
7
+ sku: string;
8
+ isSampleable: boolean;
9
+ bigCommerceReady?: boolean;
10
+ selected?: boolean;
11
+ selectionMode?: boolean;
12
+ selectLabel?: string;
13
+ deselectLabel?: string;
14
+ onSampleClick: (payload: MarketReadinessSampleCardClickPayload) => void;
15
+ }
@@ -0,0 +1,21 @@
1
+ export interface MarketReadinessSkuCardClickPayload {
2
+ skuId: string;
3
+ sku: string;
4
+ }
5
+ export interface MarketReadinessSkuCardProps {
6
+ skuId: string;
7
+ sku: string;
8
+ lxReady: boolean;
9
+ bigCommerceReady?: boolean;
10
+ isForSale: boolean;
11
+ grade: string;
12
+ finish: string;
13
+ size: string;
14
+ selected?: boolean;
15
+ selectionMode?: boolean;
16
+ forSaleLabel?: string;
17
+ notForSaleLabel?: string;
18
+ selectLabel?: string;
19
+ deselectLabel?: string;
20
+ onSkuClick: (payload: MarketReadinessSkuCardClickPayload) => void;
21
+ }
@@ -0,0 +1,11 @@
1
+ export interface MarketReadinessStatusDot {
2
+ id: string;
3
+ shortLabel: string;
4
+ label: string;
5
+ ready: boolean;
6
+ }
7
+ export interface MarketReadinessStatusDotsProps {
8
+ statuses: MarketReadinessStatusDot[];
9
+ readyLabel?: string;
10
+ notReadyLabel?: string;
11
+ }
@@ -75,6 +75,8 @@ export interface MarketReadinessVariantOptionsProps {
75
75
  export interface MarketReadinessSkuListItem {
76
76
  id: string;
77
77
  sku: string;
78
+ lxReady: boolean;
79
+ bigCommerceReady?: boolean;
78
80
  isForSale: boolean;
79
81
  partNumber?: string;
80
82
  grade: string;
@@ -88,6 +90,7 @@ export interface MarketReadinessSkuIntegration {
88
90
  bigCommerceStatusLabel?: string;
89
91
  availableForOnlineCheckout?: boolean;
90
92
  availabilityLabel?: string;
93
+ priceLabel?: string;
91
94
  lastSynchronizedLabel?: string;
92
95
  }
93
96
  export interface MarketReadinessSkuGuideSegment {
@@ -144,6 +147,7 @@ export interface MarketReadinessSampleListItem {
144
147
  id: string;
145
148
  sku: string;
146
149
  isSampleable: boolean;
150
+ bigCommerceReady?: boolean;
147
151
  sourceIdentifier?: string;
148
152
  finish: string;
149
153
  size: string;