yt-uikit 0.7.388 → 0.7.390

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.
@@ -165,6 +165,7 @@ type GeneralStyle = {
165
165
  titleLength: string;
166
166
  };
167
167
  type VolumeStyle = {
168
+ addtoCartMethod: string;
168
169
  titleFontSize: string;
169
170
  subtitleFontSize: string;
170
171
  titleBackgroundColor: string;
@@ -115,6 +115,7 @@ export interface CartProps {
115
115
  applyTemplateDiscount?: (templateId?: number) => Promise<any>;
116
116
  exploreCtaRedirectLink?: string;
117
117
  discountAmountApplied?: number;
118
+ minimumCartValue?: number;
118
119
  discountInCheckoutButton?: boolean | string;
119
120
  isStickyCheckout?: boolean;
120
121
  showDiscountsListToGuestUsers?: boolean;
@@ -9,6 +9,7 @@ interface CheckoutSectionProps {
9
9
  discountInCheckoutButton?: boolean | string;
10
10
  isStickyCheckout?: boolean;
11
11
  discountAmountApplied?: number;
12
+ minimumCartValue?: number;
12
13
  themeTextColor?: string;
13
14
  applyGSTToCart?: (gstNumber: string, companyName: string) => Promise<any>;
14
15
  showGSTOption?: boolean;
@@ -33,5 +34,5 @@ interface CheckoutSectionProps {
33
34
  showCheckoutButtonPaymentIcons?: boolean;
34
35
  primaryTextColor?: string;
35
36
  }
36
- declare function CheckoutSection({ checkoutButtonColor, checkoutFontSize, checkoutFunction, discountApplied, discountInCheckoutButton, discountAmountApplied, themeTextColor, applyGSTToCart, showGSTOption, applyNoteToCart, showNoteOption, enableGeoLocationDeliveryRestriction, applyPostalCodeAndDeliverySlotToCart, enableSlotPicker, isStickyCheckout, cartComponentsCornerType, cartComponentsCornerRadius, checkoutSectionMessage, checkoutSectionMessageDisplay, checkoutSectionMessageRedirectLink, showDiscountOnMRP, tertiaryColor, tertiaryTextColor, cartCheckpoints, toggleDecimal, disableCheckoutButton, checkoutButtonBottomSpacing, showPoweredByBadge, showCheckoutButtonPaymentIcons, primaryTextColor, }: CheckoutSectionProps): React.JSX.Element;
37
+ declare function CheckoutSection({ checkoutButtonColor, checkoutFontSize, checkoutFunction, discountApplied, discountInCheckoutButton, discountAmountApplied, minimumCartValue, themeTextColor, applyGSTToCart, showGSTOption, applyNoteToCart, showNoteOption, enableGeoLocationDeliveryRestriction, applyPostalCodeAndDeliverySlotToCart, enableSlotPicker, isStickyCheckout, cartComponentsCornerType, cartComponentsCornerRadius, checkoutSectionMessage, checkoutSectionMessageDisplay, checkoutSectionMessageRedirectLink, showDiscountOnMRP, tertiaryColor, tertiaryTextColor, cartCheckpoints, toggleDecimal, disableCheckoutButton, checkoutButtonBottomSpacing, showPoweredByBadge, showCheckoutButtonPaymentIcons, primaryTextColor, }: CheckoutSectionProps): React.JSX.Element;
37
38
  export default CheckoutSection;