yt-uikit 0.7.374 → 0.7.375

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.
@@ -222,6 +222,7 @@ export interface CartProps {
222
222
  showApplyCoupon?: boolean;
223
223
  enableConfetti?: boolean;
224
224
  showCheckoutButtonPaymentIcons?: boolean;
225
+ shouldCheckInventoryQuantity?: boolean;
225
226
  }
226
227
  declare const Cart: React.FC<CartProps>;
227
228
  export default Cart;
@@ -12,6 +12,7 @@ interface FreebieClaimManagerProps {
12
12
  imageAspectSelector?: "square" | "portrait";
13
13
  freebieCouponTemplates?: Checkpoint[];
14
14
  isCartDrawerOpen?: boolean;
15
+ shouldCheckInventoryQuantity?: boolean;
15
16
  }
16
17
  declare const FreebieClaimManager: React.FC<FreebieClaimManagerProps>;
17
18
  export default FreebieClaimManager;
@@ -12,6 +12,7 @@ interface FreebieClaimOverlayProps {
12
12
  freebieCouponTemplates?: Checkpoint[];
13
13
  freebieClaimData?: any;
14
14
  isCartDrawerOpen?: boolean;
15
+ shouldCheckInventoryQuantity?: boolean;
15
16
  }
16
17
  declare const FreebieClaimOverlay: React.FC<FreebieClaimOverlayProps>;
17
18
  export default FreebieClaimOverlay;
@@ -4,6 +4,7 @@ interface FreebieClaimOverlayCardProps {
4
4
  imageAspectSelector?: "square" | "portrait";
5
5
  freebieCouponTemplates?: any[];
6
6
  accentColor?: string;
7
+ shouldCheckInventoryQuantity?: boolean;
7
8
  }
8
9
  declare const FreebieClaimOverlayCard: React.FC<FreebieClaimOverlayCardProps>;
9
10
  export default FreebieClaimOverlayCard;
@@ -12,6 +12,7 @@ interface FreebieClaimSectionProps {
12
12
  maxFreebiesInTier?: number;
13
13
  tierName?: string;
14
14
  freebieClaimData?: any;
15
+ shouldCheckInventoryQuantity?: boolean;
15
16
  }
16
17
  declare const FreebieClaimSection: React.FC<FreebieClaimSectionProps>;
17
18
  export default FreebieClaimSection;
@@ -11,6 +11,7 @@ interface FreebieClaimSectionCardProps {
11
11
  isSelected?: boolean;
12
12
  isDisabled?: boolean;
13
13
  onToggleSelection?: (productId: string) => void;
14
+ shouldCheckInventoryQuantity?: boolean;
14
15
  }
15
16
  declare const FreebieClaimSectionCard: React.FC<FreebieClaimSectionCardProps>;
16
17
  export default FreebieClaimSectionCard;
@@ -13,6 +13,7 @@ type DesktopVariantPopupProps = {
13
13
  productClaimCtaButtonText?: string;
14
14
  backgroundSubdued?: string;
15
15
  primaryTextColor?: string;
16
+ shouldCheckInventoryQuantity?: boolean;
16
17
  };
17
18
  declare const DesktopVariantPopup: React.ForwardRefExoticComponent<DesktopVariantPopupProps & React.RefAttributes<HTMLDivElement>>;
18
19
  export default DesktopVariantPopup;
@@ -13,6 +13,7 @@ type MobileVariantPopupProps = {
13
13
  productClaimCtaButtonText?: string;
14
14
  backgroundSubdued?: string;
15
15
  primaryTextColor?: string;
16
+ shouldCheckInventoryQuantity?: boolean;
16
17
  };
17
18
  declare const MobileVariantPopup: React.ForwardRefExoticComponent<MobileVariantPopupProps & React.RefAttributes<HTMLDivElement>>;
18
19
  export default MobileVariantPopup;