yt-uikit 0.8.7-size-reduce.0 → 0.8.7-size-reduce.1
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.
- package/dist/esm/components/BundleBlock/Bundle.d.ts +14 -11
- package/dist/esm/components/BundleBlock/BundleBuilder/BundleBuilder.d.ts +2 -0
- package/dist/esm/components/BundleBlock/BundleBuilderTracker/BundleBuilderTracker.d.ts +1 -0
- package/dist/esm/components/BundleBlock/BundleProductDetailsModal/BundleProductDetailsModal.d.ts +10 -0
- package/dist/esm/components/BundleBlock/CollectionBundle/ColllectionBundle.d.ts +12 -1
- package/dist/esm/components/Cart/Cart.d.ts +3 -20
- package/dist/esm/components/Cart/CartProductsList.d.ts +0 -1
- package/dist/esm/components/Cart/FreebieClaimErrorBoundary.d.ts +28 -0
- package/dist/esm/components/Cart/FreebieClaimManager.d.ts +0 -1
- package/dist/esm/components/Cart/FreebieClaimOverlay.d.ts +0 -1
- package/dist/esm/components/Cart/FreebieClaimOverlayCard.d.ts +0 -1
- package/dist/esm/components/Cart/FreebieClaimSection.d.ts +0 -1
- package/dist/esm/components/Cart/FreebieClaimSectionCard.d.ts +0 -1
- package/dist/esm/components/Cart/ProductCard.d.ts +1 -2
- package/dist/esm/components/Cart/VariantSelectionPopup/DesktopVariantPopup.d.ts +0 -1
- package/dist/esm/components/Cart/VariantSelectionPopup/MobileVariantPopover.d.ts +0 -1
- package/dist/esm/components/index.d.ts +0 -1
- package/dist/esm/index.js +404 -408
- package/dist/esm/types/components/BundleBlock/Bundle.d.ts +14 -11
- package/dist/esm/types/components/BundleBlock/BundleBuilder/BundleBuilder.d.ts +2 -0
- package/dist/esm/types/components/BundleBlock/BundleBuilderTracker/BundleBuilderTracker.d.ts +1 -0
- package/dist/esm/types/components/BundleBlock/BundleProductDetailsModal/BundleProductDetailsModal.d.ts +10 -0
- package/dist/esm/types/components/BundleBlock/CollectionBundle/ColllectionBundle.d.ts +12 -1
- package/dist/esm/types/components/Cart/Cart.d.ts +3 -20
- package/dist/esm/types/components/Cart/CartProductsList.d.ts +0 -1
- package/dist/esm/types/components/Cart/FreebieClaimErrorBoundary.d.ts +28 -0
- package/dist/esm/types/components/Cart/FreebieClaimManager.d.ts +0 -1
- package/dist/esm/types/components/Cart/FreebieClaimOverlay.d.ts +0 -1
- package/dist/esm/types/components/Cart/FreebieClaimOverlayCard.d.ts +0 -1
- package/dist/esm/types/components/Cart/FreebieClaimSection.d.ts +0 -1
- package/dist/esm/types/components/Cart/FreebieClaimSectionCard.d.ts +0 -1
- package/dist/esm/types/components/Cart/ProductCard.d.ts +1 -2
- package/dist/esm/types/components/Cart/VariantSelectionPopup/DesktopVariantPopup.d.ts +0 -1
- package/dist/esm/types/components/Cart/VariantSelectionPopup/MobileVariantPopover.d.ts +0 -1
- package/dist/esm/types/components/index.d.ts +0 -1
- package/dist/esm/types/utils/freebieErrorLogger.d.ts +68 -0
- package/dist/esm/types/utils/freebieProductUtils.d.ts +2 -1
- package/dist/esm/types/utils/freebieValidation.d.ts +45 -0
- package/dist/esm/utils/freebieErrorLogger.d.ts +68 -0
- package/dist/esm/utils/freebieProductUtils.d.ts +2 -1
- package/dist/esm/utils/freebieValidation.d.ts +45 -0
- package/dist/index.d.ts +25 -43
- package/package.json +1 -1
- package/dist/esm/components/Cart/MobileMiniCart.d.ts +0 -21
- package/dist/esm/components/Cart/VariantSelectionPopup/MobileVariantPopover.styled.d.ts +0 -49
- package/dist/esm/types/components/Cart/MobileMiniCart.d.ts +0 -21
- package/dist/esm/types/components/Cart/VariantSelectionPopup/MobileVariantPopover.styled.d.ts +0 -49
package/dist/index.d.ts
CHANGED
|
@@ -60,19 +60,6 @@ interface WheelProps {
|
|
|
60
60
|
}
|
|
61
61
|
declare const SpinnerWheel: React.FC<WheelProps>;
|
|
62
62
|
|
|
63
|
-
interface RewardCouponWithIcon extends RewardCoupon {
|
|
64
|
-
icon?: React.ReactElement | null;
|
|
65
|
-
}
|
|
66
|
-
type CouponFrameProps = {
|
|
67
|
-
couponActive: boolean;
|
|
68
|
-
rewardCoupon: RewardCouponWithIcon;
|
|
69
|
-
currency: string;
|
|
70
|
-
handleApply: (templateId?: number) => Promise<any>;
|
|
71
|
-
pointsCoupon?: boolean;
|
|
72
|
-
pointsToBeUsed?: number;
|
|
73
|
-
};
|
|
74
|
-
declare const CouponFrame: React.FC<CouponFrameProps>;
|
|
75
|
-
|
|
76
63
|
interface ShopifyCurrency {
|
|
77
64
|
rate: number;
|
|
78
65
|
active: string;
|
|
@@ -337,6 +324,17 @@ type Customizations = {
|
|
|
337
324
|
createdAt?: string;
|
|
338
325
|
updatedAt?: string;
|
|
339
326
|
};
|
|
327
|
+
type ProductTier = {
|
|
328
|
+
tier: number;
|
|
329
|
+
title: string;
|
|
330
|
+
minimumQuantity: number;
|
|
331
|
+
isFixed?: boolean;
|
|
332
|
+
isFreebieTier?: boolean;
|
|
333
|
+
products: {
|
|
334
|
+
productId: string;
|
|
335
|
+
variantIds: string[];
|
|
336
|
+
}[];
|
|
337
|
+
};
|
|
340
338
|
type BundlePayload = {
|
|
341
339
|
showIndividualProductSelector: boolean;
|
|
342
340
|
title?: string;
|
|
@@ -378,16 +376,7 @@ type BundlePayload = {
|
|
|
378
376
|
minimumQuantity: number;
|
|
379
377
|
discountValue: number;
|
|
380
378
|
}[];
|
|
381
|
-
productTier?:
|
|
382
|
-
tier: number;
|
|
383
|
-
title: string;
|
|
384
|
-
minimumQuantity: number;
|
|
385
|
-
isFixed?: boolean;
|
|
386
|
-
products: {
|
|
387
|
-
productId: string;
|
|
388
|
-
variantIds: string[];
|
|
389
|
-
}[];
|
|
390
|
-
}[];
|
|
379
|
+
productTier?: ProductTier[];
|
|
391
380
|
};
|
|
392
381
|
volumeTiers?: {
|
|
393
382
|
isDefault: unknown;
|
|
@@ -519,15 +508,16 @@ interface GSTSectionCustomizationProps {
|
|
|
519
508
|
textColor?: string;
|
|
520
509
|
}
|
|
521
510
|
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
}
|
|
511
|
+
type FloatingCartDataProps = {
|
|
512
|
+
enableFloatingCart: boolean;
|
|
513
|
+
backgroundColor: string;
|
|
514
|
+
bannerBackgroundColor: string;
|
|
515
|
+
textColor: string;
|
|
516
|
+
buttonColor: string;
|
|
517
|
+
bannerFooterText: string;
|
|
518
|
+
showOnPages: string[];
|
|
519
|
+
};
|
|
520
|
+
|
|
531
521
|
interface Checkpoint {
|
|
532
522
|
couponTemplateId: number;
|
|
533
523
|
couponType: string;
|
|
@@ -588,7 +578,6 @@ interface CartProps {
|
|
|
588
578
|
handleDecrement: (productId: number, newQuantity?: number) => Promise<any>;
|
|
589
579
|
bundleProducts?: any;
|
|
590
580
|
showBundle?: boolean;
|
|
591
|
-
showCouponOptions?: boolean;
|
|
592
581
|
isUserSignedIn?: boolean;
|
|
593
582
|
loyaltyIcon?: string;
|
|
594
583
|
discountAmountOff?: number;
|
|
@@ -598,8 +587,6 @@ interface CartProps {
|
|
|
598
587
|
removeDiscount?: () => Promise<any>;
|
|
599
588
|
applyDiscount?: () => Promise<any>;
|
|
600
589
|
discountApplied?: boolean;
|
|
601
|
-
rewardCoupons?: RewardCoupon[];
|
|
602
|
-
userTotalPoints?: number;
|
|
603
590
|
joinNowFunction?: () => void;
|
|
604
591
|
checkoutFunction: (templateId?: number) => Promise<any>;
|
|
605
592
|
guestLoyaltyPercentage?: number;
|
|
@@ -611,16 +598,11 @@ interface CartProps {
|
|
|
611
598
|
showCartLevelAltPay?: boolean;
|
|
612
599
|
redemptionRate: number;
|
|
613
600
|
pointsRewardRate: number;
|
|
614
|
-
showGuestDiscountCoupon?: boolean;
|
|
615
|
-
guestRewardCoupon?: RewardCouponWithIcon;
|
|
616
|
-
applyTemplateDiscount?: (templateId?: number) => Promise<any>;
|
|
617
601
|
exploreCtaRedirectLink?: string;
|
|
618
602
|
discountAmountApplied?: number;
|
|
619
603
|
minimumCartValue?: number;
|
|
620
604
|
discountInCheckoutButton?: boolean | string;
|
|
621
605
|
isStickyCheckout?: boolean;
|
|
622
|
-
showDiscountsListToGuestUsers?: boolean;
|
|
623
|
-
showApplyCouponsButtonToGuestUsers?: boolean;
|
|
624
606
|
handleCheckpointCrossed?: (checkpoint: Checkpoint, cartAmount: number) => Promise<any>;
|
|
625
607
|
customCartProgressBarCriteria?: string;
|
|
626
608
|
primaryTextColor?: string;
|
|
@@ -665,7 +647,6 @@ interface CartProps {
|
|
|
665
647
|
productPercentageOffMapping: {
|
|
666
648
|
[variantId: string]: number;
|
|
667
649
|
};
|
|
668
|
-
productTagsMapping?: Map<string, string[]>;
|
|
669
650
|
removeFreebieFromCart?: (lineItemKey: string) => Promise<void>;
|
|
670
651
|
postalCodeList?: number[];
|
|
671
652
|
enableGeoLocationDeliveryRestriction?: boolean;
|
|
@@ -693,6 +674,8 @@ interface CartProps {
|
|
|
693
674
|
productRecsCardListVariant: "scroll" | "carousel" | "vertical";
|
|
694
675
|
showCartTimer?: boolean;
|
|
695
676
|
showFreebieMilestone?: boolean;
|
|
677
|
+
showFloatingCart?: boolean;
|
|
678
|
+
floatingCartData?: FloatingCartDataProps;
|
|
696
679
|
cartTimerInMinutes?: number;
|
|
697
680
|
cartTimerCustomText?: string;
|
|
698
681
|
imageAspectSelector?: "square" | "portrait";
|
|
@@ -725,7 +708,6 @@ interface CartProps {
|
|
|
725
708
|
showApplyCoupon?: boolean;
|
|
726
709
|
enableConfetti?: boolean;
|
|
727
710
|
showCheckoutButtonPaymentIcons?: boolean;
|
|
728
|
-
shouldCheckInventoryQuantity?: boolean;
|
|
729
711
|
comboBundleData?: BundlePayload;
|
|
730
712
|
comboBundleAddToCartFunction?: (selectedItemsSubtotal: number, variantIds?: string[], finalBundlePrice?: number, variantIdPriceMap?: {
|
|
731
713
|
variantId: string;
|
|
@@ -763,4 +745,4 @@ declare const ProductsOffers: ({ offersConfig, offers, }: {
|
|
|
763
745
|
offers: CartCheckpoint[];
|
|
764
746
|
}) => React.JSX.Element;
|
|
765
747
|
|
|
766
|
-
export { Bundle, BundleLoader, Cart, CartCheckpoint,
|
|
748
|
+
export { Bundle, BundleLoader, Cart, CartCheckpoint, Nudge, ProductsOffers as ProductOffers, ProductsOffersConfigType, SpinnerWheel };
|
package/package.json
CHANGED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
import React from "react";
|
|
2
|
-
import { Checkpoint } from "./Cart";
|
|
3
|
-
export interface MobileMiniCartProps {
|
|
4
|
-
setIsCartOpen: (isOpen: boolean) => void;
|
|
5
|
-
isCartOpen?: boolean;
|
|
6
|
-
cartCheckpoints?: Checkpoint[];
|
|
7
|
-
customCartProgressBarCriteria?: string;
|
|
8
|
-
checkoutSectionMessage?: string;
|
|
9
|
-
effectiveQuantityForProgressBar?: number;
|
|
10
|
-
themeColor?: string;
|
|
11
|
-
themeTextColor?: string;
|
|
12
|
-
primaryTextColor?: string;
|
|
13
|
-
ctaButtonBackgroundColor?: string;
|
|
14
|
-
ctaButtonTextColor?: string;
|
|
15
|
-
cartComponentsCornerType?: "rounded" | "sharp";
|
|
16
|
-
cartComponentsCornerRadius?: number;
|
|
17
|
-
enable?: boolean;
|
|
18
|
-
forceShowOnNonHome?: boolean;
|
|
19
|
-
}
|
|
20
|
-
declare const MobileMiniCart: React.FC<MobileMiniCartProps>;
|
|
21
|
-
export default MobileMiniCart;
|
|
@@ -1,49 +0,0 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
|
-
export declare const VariantSelectionPopupContainer: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
3
|
-
export declare const ModalContent: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {
|
|
4
|
-
$themeColor?: string | undefined;
|
|
5
|
-
$cornerRadius?: number | undefined;
|
|
6
|
-
$backgroundColor?: string | undefined;
|
|
7
|
-
}>> & string;
|
|
8
|
-
export declare const CloseButton: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
9
|
-
export declare const ProductDetails: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
10
|
-
export declare const ProductImage: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement>, never>> & string;
|
|
11
|
-
export declare const ProductInfo: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
12
|
-
export declare const ProductTitle: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>, {
|
|
13
|
-
$themeColor?: string | undefined;
|
|
14
|
-
}>> & string;
|
|
15
|
-
export declare const ProductPrice: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {
|
|
16
|
-
primaryTextColor?: string | undefined;
|
|
17
|
-
}>> & string;
|
|
18
|
-
export declare const OriginalPrice: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, never>> & string;
|
|
19
|
-
export declare const ViewDetailsLink: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>, never>> & string;
|
|
20
|
-
export declare const OptionContainer: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
21
|
-
export declare const OptionTitle: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
22
|
-
export declare const OptionsWrapper: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
23
|
-
export declare const VariantOption: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, {
|
|
24
|
-
$isSelected?: boolean | undefined;
|
|
25
|
-
$isDisabled?: boolean | undefined;
|
|
26
|
-
$themeColor?: string | undefined;
|
|
27
|
-
backgroundColor?: string | undefined;
|
|
28
|
-
}>> & string;
|
|
29
|
-
export declare const CartButton: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, {
|
|
30
|
-
$themeColor: string;
|
|
31
|
-
}>> & string;
|
|
32
|
-
export declare const LoaderContainer: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
33
|
-
export declare const QuantitySelectorContainer: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
34
|
-
export declare const MainSelectorContainer: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {
|
|
35
|
-
$backgroundColor: string;
|
|
36
|
-
}>> & string;
|
|
37
|
-
export declare const FlexContainer: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
38
|
-
export declare const DetailsSection: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
39
|
-
export declare const PriceSection: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
40
|
-
export declare const LinkSection: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
41
|
-
export declare const ActionsSection: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
42
|
-
export declare const ReplaceButtonContainer: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
43
|
-
export declare const ReplaceButton: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, {
|
|
44
|
-
$themeColor?: string | undefined;
|
|
45
|
-
$cornerRadius?: number | undefined;
|
|
46
|
-
$cornerType?: string | undefined;
|
|
47
|
-
$disabled?: boolean | undefined;
|
|
48
|
-
}>> & string;
|
|
49
|
-
export declare const ReplaceButtonContent: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
import React from "react";
|
|
2
|
-
import { Checkpoint } from "./Cart";
|
|
3
|
-
export interface MobileMiniCartProps {
|
|
4
|
-
setIsCartOpen: (isOpen: boolean) => void;
|
|
5
|
-
isCartOpen?: boolean;
|
|
6
|
-
cartCheckpoints?: Checkpoint[];
|
|
7
|
-
customCartProgressBarCriteria?: string;
|
|
8
|
-
checkoutSectionMessage?: string;
|
|
9
|
-
effectiveQuantityForProgressBar?: number;
|
|
10
|
-
themeColor?: string;
|
|
11
|
-
themeTextColor?: string;
|
|
12
|
-
primaryTextColor?: string;
|
|
13
|
-
ctaButtonBackgroundColor?: string;
|
|
14
|
-
ctaButtonTextColor?: string;
|
|
15
|
-
cartComponentsCornerType?: "rounded" | "sharp";
|
|
16
|
-
cartComponentsCornerRadius?: number;
|
|
17
|
-
enable?: boolean;
|
|
18
|
-
forceShowOnNonHome?: boolean;
|
|
19
|
-
}
|
|
20
|
-
declare const MobileMiniCart: React.FC<MobileMiniCartProps>;
|
|
21
|
-
export default MobileMiniCart;
|
package/dist/esm/types/components/Cart/VariantSelectionPopup/MobileVariantPopover.styled.d.ts
DELETED
|
@@ -1,49 +0,0 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
|
-
export declare const VariantSelectionPopupContainer: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
3
|
-
export declare const ModalContent: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {
|
|
4
|
-
$themeColor?: string | undefined;
|
|
5
|
-
$cornerRadius?: number | undefined;
|
|
6
|
-
$backgroundColor?: string | undefined;
|
|
7
|
-
}>> & string;
|
|
8
|
-
export declare const CloseButton: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
9
|
-
export declare const ProductDetails: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
10
|
-
export declare const ProductImage: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement>, never>> & string;
|
|
11
|
-
export declare const ProductInfo: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
12
|
-
export declare const ProductTitle: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>, {
|
|
13
|
-
$themeColor?: string | undefined;
|
|
14
|
-
}>> & string;
|
|
15
|
-
export declare const ProductPrice: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {
|
|
16
|
-
primaryTextColor?: string | undefined;
|
|
17
|
-
}>> & string;
|
|
18
|
-
export declare const OriginalPrice: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, never>> & string;
|
|
19
|
-
export declare const ViewDetailsLink: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>, never>> & string;
|
|
20
|
-
export declare const OptionContainer: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
21
|
-
export declare const OptionTitle: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
22
|
-
export declare const OptionsWrapper: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
23
|
-
export declare const VariantOption: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, {
|
|
24
|
-
$isSelected?: boolean | undefined;
|
|
25
|
-
$isDisabled?: boolean | undefined;
|
|
26
|
-
$themeColor?: string | undefined;
|
|
27
|
-
backgroundColor?: string | undefined;
|
|
28
|
-
}>> & string;
|
|
29
|
-
export declare const CartButton: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, {
|
|
30
|
-
$themeColor: string;
|
|
31
|
-
}>> & string;
|
|
32
|
-
export declare const LoaderContainer: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
33
|
-
export declare const QuantitySelectorContainer: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
34
|
-
export declare const MainSelectorContainer: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {
|
|
35
|
-
$backgroundColor: string;
|
|
36
|
-
}>> & string;
|
|
37
|
-
export declare const FlexContainer: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
38
|
-
export declare const DetailsSection: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
39
|
-
export declare const PriceSection: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
40
|
-
export declare const LinkSection: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
41
|
-
export declare const ActionsSection: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
42
|
-
export declare const ReplaceButtonContainer: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
43
|
-
export declare const ReplaceButton: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, {
|
|
44
|
-
$themeColor?: string | undefined;
|
|
45
|
-
$cornerRadius?: number | undefined;
|
|
46
|
-
$cornerType?: string | undefined;
|
|
47
|
-
$disabled?: boolean | undefined;
|
|
48
|
-
}>> & string;
|
|
49
|
-
export declare const ReplaceButtonContent: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|