yt-uikit 0.8.42 → 0.8.43
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.
|
@@ -242,9 +242,6 @@ type ByobStyle = {
|
|
|
242
242
|
enableProductCategories: boolean;
|
|
243
243
|
productCardCategoryVisibility: string;
|
|
244
244
|
categoryFilterOnPage: string;
|
|
245
|
-
productFiltersDisplay: "none" | "drawer" | "sidebar";
|
|
246
|
-
filtersProvider: "based-on-products-data" | "search-and-discovery-app-sync";
|
|
247
|
-
selectedFilterOptions: string[];
|
|
248
245
|
};
|
|
249
246
|
type FixedStyle = {
|
|
250
247
|
titleFontSize: string;
|
|
@@ -398,7 +395,6 @@ export type BundleProps = {
|
|
|
398
395
|
bundleHeaderBackgroundColor?: string;
|
|
399
396
|
currentProductId?: string;
|
|
400
397
|
dispatchAnalyticsEvent?: (params: AnalyticsEventParams) => void;
|
|
401
|
-
fetchStoreDetails?: () => Promise<any>;
|
|
402
398
|
};
|
|
403
399
|
export declare const currencyPrice: (price: number | string | undefined) => string | undefined;
|
|
404
400
|
export declare const getCurrencySymbol: (genSymbol: string, storeCurrencyCode?: string) => string;
|
|
@@ -12,7 +12,6 @@ export declare function QuantitySelectorForBundle({ quantity, setQuantity, remai
|
|
|
12
12
|
hideAddToBundle?: boolean;
|
|
13
13
|
selectedVariantInventoryQty: number | typeof Infinity;
|
|
14
14
|
}): React.JSX.Element;
|
|
15
|
-
export declare const productMatchesAllFilters: (product: any, applied: Record<string, string[]>, allFilters: any[], getMaxAvailableQty: (product: any, variantId: string) => number) => boolean;
|
|
16
15
|
type BundleBuilderProps = {
|
|
17
16
|
bundle: BundlePayload;
|
|
18
17
|
selectedItems: {
|
|
@@ -37,7 +36,6 @@ type BundleBuilderProps = {
|
|
|
37
36
|
compareAtPrice: number;
|
|
38
37
|
};
|
|
39
38
|
dispatchAnalyticsEvent?: (params: AnalyticsEventParams) => void;
|
|
40
|
-
fetchStoreDetails?: () => Promise<any>;
|
|
41
39
|
};
|
|
42
40
|
declare const BundleBuilder: React.FC<BundleBuilderProps>;
|
|
43
41
|
export default BundleBuilder;
|