randmarcomps 1.375.0 → 1.376.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.
@@ -522,7 +522,8 @@ export declare interface InputProps extends Omit<React_2.ComponentProps<"input">
522
522
 
523
523
  declare interface IProps {
524
524
  applicationId: string;
525
- sku: string;
525
+ sku?: string;
526
+ product?: Product;
526
527
  productDefaultOpportunityNumber?: string;
527
528
  productOnAddToCart?: (state: {
528
529
  quantity: number;
@@ -737,7 +738,7 @@ declare interface ProductInventoryGridProps {
737
738
  className?: string;
738
739
  }
739
740
 
740
- export declare function ProductOverviewPage({ applicationId, sku, productDefaultOpportunityNumber, productOnAddToCart, productAddingToCart, productShopifyHostname, productCustomAction }: IProps): JSX.Element;
741
+ export declare function ProductOverviewPage({ applicationId, sku, product: givenProduct, productDefaultOpportunityNumber, productOnAddToCart, productAddingToCart, productShopifyHostname, productCustomAction }: IProps): JSX.Element;
741
742
 
742
743
  export declare const Progress: React_2.ForwardRefExoticComponent<Omit<ProgressPrimitive.ProgressProps & React_2.RefAttributes<HTMLDivElement>, "ref"> & React_2.RefAttributes<HTMLDivElement>>;
743
744