yt-uikit 0.7.413-tracks-inventory.1 → 0.7.413-tracks-inventory-p.2
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 +3 -1
- package/dist/esm/components/BundleBlock/BundleBuilder/BundleBuilder.d.ts +2 -3
- package/dist/esm/components/BundleBlock/CollectionBundle/ColllectionBundle.d.ts +5 -3
- package/dist/esm/components/Cart/MultiStepProgressBar/MultiStepUtils.d.ts +1 -0
- package/dist/esm/components/ProductOffersBlock/ProductOffersCoupon.d.ts +12 -0
- package/dist/esm/components/ProductOffersBlock/ProductOffersList.d.ts +12 -0
- package/dist/esm/components/ProductOffersBlock/ProductOffersTermsMobilePopover.d.ts +10 -0
- package/dist/esm/components/ProductOffersBlock/ProductOffersTermsPopup.d.ts +10 -0
- package/dist/esm/components/ProductOffersBlock/ProductsOffers.d.ts +32 -0
- package/dist/esm/index.js +155 -157
- package/dist/esm/types/components/BundleBlock/Bundle.d.ts +3 -1
- package/dist/esm/types/components/BundleBlock/BundleBuilder/BundleBuilder.d.ts +2 -3
- package/dist/esm/types/components/BundleBlock/CollectionBundle/ColllectionBundle.d.ts +5 -3
- package/dist/esm/types/components/Cart/MultiStepProgressBar/MultiStepUtils.d.ts +1 -0
- package/dist/esm/types/components/ProductOffersBlock/ProductOffersCoupon.d.ts +12 -0
- package/dist/esm/types/components/ProductOffersBlock/ProductOffersList.d.ts +12 -0
- package/dist/esm/types/components/ProductOffersBlock/ProductOffersTermsMobilePopover.d.ts +10 -0
- package/dist/esm/types/components/ProductOffersBlock/ProductOffersTermsPopup.d.ts +10 -0
- package/dist/esm/types/components/ProductOffersBlock/ProductsOffers.d.ts +32 -0
- package/dist/index.d.ts +2 -0
- package/package.json +1 -1
|
@@ -53,6 +53,7 @@ export type VariantNode = {
|
|
|
53
53
|
inventoryItem?: {
|
|
54
54
|
tracked?: boolean;
|
|
55
55
|
};
|
|
56
|
+
inventoryPolicy?: "deny" | "continue";
|
|
56
57
|
};
|
|
57
58
|
};
|
|
58
59
|
type SelectedVariantDetails = {
|
|
@@ -339,6 +340,7 @@ export type BundlePayload = {
|
|
|
339
340
|
customStoreDetails?: {
|
|
340
341
|
[key: string]: any;
|
|
341
342
|
};
|
|
343
|
+
customProductsQuantity?: number | null;
|
|
342
344
|
reviewRatingType?: "none" | "ratingOnly" | "ratingAndReviewCount";
|
|
343
345
|
appName?: string;
|
|
344
346
|
pageHeader?: {
|
|
@@ -377,7 +379,7 @@ export type BundleProps = {
|
|
|
377
379
|
};
|
|
378
380
|
export declare const currencyPrice: (price: number | string | undefined) => string | undefined;
|
|
379
381
|
export declare const getCurrencySymbol: (genSymbol: string, storeCurrencyCode?: string) => string;
|
|
380
|
-
export declare const optimiseImage: (url: string) => string;
|
|
382
|
+
export declare const optimiseImage: (url: string, width?: number) => string;
|
|
381
383
|
export declare const handleAddToBundle: (variantId: string, product: ProductDetails, quantity: number, selectedItems: {
|
|
382
384
|
variantId: string;
|
|
383
385
|
product: ProductDetails;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import "../bundle.scss";
|
|
2
2
|
import React from "react";
|
|
3
3
|
import { BundlePayload, ProductDetails } from "../Bundle";
|
|
4
|
-
export declare function QuantitySelectorForBundle({ quantity, setQuantity, remainingQuantity, handleAddToBundle, variantId, product, handleRemoveItem, hideAddToBundle, selectedVariantInventoryQty,
|
|
4
|
+
export declare function QuantitySelectorForBundle({ quantity, setQuantity, remainingQuantity, handleAddToBundle, variantId, product, handleRemoveItem, hideAddToBundle, selectedVariantInventoryQty, }: {
|
|
5
5
|
quantity: number;
|
|
6
6
|
setQuantity: React.Dispatch<React.SetStateAction<number>>;
|
|
7
7
|
remainingQuantity: number;
|
|
@@ -10,8 +10,7 @@ export declare function QuantitySelectorForBundle({ quantity, setQuantity, remai
|
|
|
10
10
|
product?: ProductDetails;
|
|
11
11
|
handleRemoveItem?: (variantId: string, quantity: number) => void;
|
|
12
12
|
hideAddToBundle?: boolean;
|
|
13
|
-
selectedVariantInventoryQty: number;
|
|
14
|
-
variantInventoryTrack: boolean;
|
|
13
|
+
selectedVariantInventoryQty: number | typeof Infinity;
|
|
15
14
|
}): React.JSX.Element;
|
|
16
15
|
type BundleBuilderProps = {
|
|
17
16
|
bundle: BundlePayload;
|
|
@@ -65,9 +65,9 @@ export type BundleConfig = {
|
|
|
65
65
|
products: Product[];
|
|
66
66
|
}[];
|
|
67
67
|
};
|
|
68
|
-
form
|
|
69
|
-
title
|
|
70
|
-
sections
|
|
68
|
+
form?: {
|
|
69
|
+
title?: string;
|
|
70
|
+
sections?: {
|
|
71
71
|
title: string;
|
|
72
72
|
type: "text" | "image";
|
|
73
73
|
fields: {
|
|
@@ -92,6 +92,8 @@ export type BundleConfig = {
|
|
|
92
92
|
hideSelectedProducts: boolean;
|
|
93
93
|
allowMultipleQty: boolean;
|
|
94
94
|
hideOutOfStockProducts: boolean;
|
|
95
|
+
bundleRedirection: "cart-drawer" | "checkout";
|
|
96
|
+
checkoutPartner: "shopify" | "razorpay" | "shiprocket" | "gokwik" | "breeze" | "zecpay" | "shopflo";
|
|
95
97
|
};
|
|
96
98
|
};
|
|
97
99
|
interface CollectionBundleProps {
|
|
@@ -3,3 +3,4 @@ import { Checkpoint } from "../Cart";
|
|
|
3
3
|
import { MultiStepProgressBarProps } from "./types";
|
|
4
4
|
export declare const criteriaCheckpointFieldMap: (customCartProgressBarCriteria: string) => "minimumOrderValue" | "quantityThreshold";
|
|
5
5
|
export declare function processCheckpoint(checkpoint: Checkpoint, index: number, sortedCheckpoints: Checkpoint[], itemCount: number, props: MultiStepProgressBarProps): CheckpointWithProgress;
|
|
6
|
+
export declare function hasAnyProgress(checkpoints: Checkpoint[] | undefined, currentCartAmount: number, effectiveQuantityForProgressBar: number | undefined, customCartProgressBarCriteria: string, itemCount: number): boolean;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { CartCheckpoint } from "./ProductsOffers";
|
|
3
|
+
import { ProductsOffersConfigType } from "./ProductsOffers";
|
|
4
|
+
interface ProductOffersCouponProps {
|
|
5
|
+
offersToShow: CartCheckpoint[];
|
|
6
|
+
offersConfig?: ProductsOffersConfigType | null;
|
|
7
|
+
getOfferCardMessage: (offer: CartCheckpoint) => string;
|
|
8
|
+
setSelectedOffer: (offer: CartCheckpoint | null) => void;
|
|
9
|
+
setShowPopup: (show: boolean) => void;
|
|
10
|
+
}
|
|
11
|
+
export declare const ProductOffersCoupon: ({ offersToShow, offersConfig, getOfferCardMessage, setSelectedOffer, setShowPopup, }: ProductOffersCouponProps) => React.JSX.Element;
|
|
12
|
+
export {};
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { CartCheckpoint } from "./ProductsOffers";
|
|
3
|
+
import { ProductsOffersConfigType } from "./ProductsOffers";
|
|
4
|
+
interface ProductOffersListProps {
|
|
5
|
+
offersToShow: CartCheckpoint[];
|
|
6
|
+
offersConfig: ProductsOffersConfigType;
|
|
7
|
+
getOfferCardMessage: (offer: CartCheckpoint) => string;
|
|
8
|
+
setSelectedOffer: (offer: CartCheckpoint | null) => void;
|
|
9
|
+
setShowPopup: (show: boolean) => void;
|
|
10
|
+
}
|
|
11
|
+
export declare const ProductOffersList: ({ offersToShow, offersConfig, getOfferCardMessage, setSelectedOffer, setShowPopup, }: ProductOffersListProps) => React.JSX.Element;
|
|
12
|
+
export {};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { CartCheckpoint, OfferTermsAndConditions } from "./ProductsOffers";
|
|
3
|
+
import { ProductsOffersConfigType } from "./ProductsOffers";
|
|
4
|
+
export declare const ProductOffersTermsMobilePopover: ({ showPopup, selectedOffer, selectedOfferTerms, onClose, offersConfig, }: {
|
|
5
|
+
showPopup: boolean;
|
|
6
|
+
selectedOffer: CartCheckpoint | null;
|
|
7
|
+
selectedOfferTerms: OfferTermsAndConditions | null;
|
|
8
|
+
onClose: () => void;
|
|
9
|
+
offersConfig?: ProductsOffersConfigType | null | undefined;
|
|
10
|
+
}) => React.ReactPortal | null;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { CartCheckpoint, OfferTermsAndConditions } from "./ProductsOffers";
|
|
3
|
+
import { ProductsOffersConfigType } from "./ProductsOffers";
|
|
4
|
+
export declare const ProductOffersTermsPopup: ({ showPopup, selectedOffer, selectedOfferTerms, onClose, offersConfig, }: {
|
|
5
|
+
showPopup: boolean;
|
|
6
|
+
selectedOffer: CartCheckpoint | null;
|
|
7
|
+
selectedOfferTerms: OfferTermsAndConditions | null;
|
|
8
|
+
onClose: () => void;
|
|
9
|
+
offersConfig?: ProductsOffersConfigType | null | undefined;
|
|
10
|
+
}) => React.ReactPortal | null;
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { Checkpoint } from "../Cart/Cart";
|
|
3
|
+
export interface ProductsOffersConfigType {
|
|
4
|
+
sectionType?: "coupon" | "list";
|
|
5
|
+
sectionTitle?: string;
|
|
6
|
+
sectionBackgroundColor?: string;
|
|
7
|
+
sectionBgContrastColor?: string;
|
|
8
|
+
cardBackgroundColor?: string;
|
|
9
|
+
cardBackgroundTransparent?: boolean;
|
|
10
|
+
textColor?: string;
|
|
11
|
+
accentColor?: string;
|
|
12
|
+
roundness?: number;
|
|
13
|
+
cardPadding?: number;
|
|
14
|
+
viewDetailsTitle?: string;
|
|
15
|
+
alignment?: "left" | "middle" | "right";
|
|
16
|
+
iconVisibility?: boolean;
|
|
17
|
+
popupIsolationStrategy?: "revert" | "revert-layer" | "unset" | "initial" | "inherit" | "none";
|
|
18
|
+
}
|
|
19
|
+
export interface CartCheckpoint extends Checkpoint {
|
|
20
|
+
customCartProgressBarCriteria?: string | null;
|
|
21
|
+
discountPercentage?: number | null;
|
|
22
|
+
discountId?: number | null;
|
|
23
|
+
}
|
|
24
|
+
export interface OfferTermsAndConditions {
|
|
25
|
+
offerMessage: string;
|
|
26
|
+
terms: string[];
|
|
27
|
+
}
|
|
28
|
+
declare const ProductsOffers: ({ offersConfig, offers, }: {
|
|
29
|
+
offersConfig?: ProductsOffersConfigType | null | undefined;
|
|
30
|
+
offers: CartCheckpoint[];
|
|
31
|
+
}) => React.JSX.Element;
|
|
32
|
+
export default ProductsOffers;
|