yt-uikit 0.7.406 → 0.7.407

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.
@@ -267,7 +267,7 @@ export type BundlePayload = {
267
267
  percentageOff?: number;
268
268
  dealAmount?: number;
269
269
  amountOff?: number;
270
- type: "fixed" | "builder" | "volume" | "mixAndMatch" | "" | "combo";
270
+ type: "fixed" | "builder" | "volume" | "mixAndMatch" | "" | "combo" | "collection";
271
271
  minimumQuantity: number;
272
272
  showProductDetailsInTracker: boolean;
273
273
  coverImageUrl?: string;
@@ -0,0 +1,103 @@
1
+ import React from "react";
2
+ export type Product = {
3
+ id: number;
4
+ title: string;
5
+ handle: string;
6
+ description: string | null;
7
+ published_at: string;
8
+ created_at: string;
9
+ vendor: string;
10
+ type: string;
11
+ tags: string[];
12
+ price: number;
13
+ price_min: number;
14
+ price_max: number;
15
+ available: boolean;
16
+ price_varies: boolean;
17
+ compare_at_price: number | null;
18
+ compare_at_price_min: number;
19
+ compare_at_price_max: number;
20
+ compare_at_price_varies: boolean;
21
+ variants: Array<{
22
+ id: number;
23
+ title: string;
24
+ option1: string | null;
25
+ option2: string | null;
26
+ option3: string | null;
27
+ sku: string;
28
+ requires_shipping: boolean;
29
+ taxable: boolean;
30
+ featured_image: any | null;
31
+ available: boolean;
32
+ name: string;
33
+ public_title: string;
34
+ options: string[];
35
+ price: number;
36
+ weight: number;
37
+ compare_at_price: number | null;
38
+ inventory_management: string;
39
+ barcode: string;
40
+ requires_selling_plan: boolean;
41
+ selling_plan_allocations: any[];
42
+ quantity_rule: {
43
+ min: number;
44
+ max: number | null;
45
+ increment: number;
46
+ };
47
+ }>;
48
+ images: string[];
49
+ image?: string;
50
+ options?: string[];
51
+ };
52
+ export type BundleConfig = {
53
+ config: {
54
+ shop: string;
55
+ collectionIds: string[];
56
+ type: "collection";
57
+ builderTiers: {
58
+ type: "collectionTier";
59
+ collectionTier: {
60
+ title: string;
61
+ tier: number;
62
+ minimumQuantity: number;
63
+ collectionId: string;
64
+ handle: string;
65
+ products: Product[];
66
+ }[];
67
+ };
68
+ form: {
69
+ title: string;
70
+ sections: {
71
+ title: string;
72
+ type: "text" | "image";
73
+ fields: {
74
+ title: string;
75
+ }[];
76
+ }[];
77
+ };
78
+ };
79
+ customizations: {
80
+ borderRadius: string;
81
+ atcBg: string;
82
+ atcText: string;
83
+ productImageRatio: string;
84
+ bundleBg: string;
85
+ bundleText: string;
86
+ bundleBorder: string;
87
+ btnPrimaryBg: string;
88
+ btnPrimaryText: string;
89
+ productCardBorder: string;
90
+ productCardBg: string;
91
+ productCardShadow: string;
92
+ hideSelectedProducts: boolean;
93
+ allowMultipleQty: boolean;
94
+ hideOutOfStockProducts: boolean;
95
+ };
96
+ };
97
+ interface CollectionBundleProps {
98
+ config: BundleConfig;
99
+ addCustomBundleToCart: (items: any) => void;
100
+ bundleAddToCartLoading: boolean;
101
+ }
102
+ declare const CollectionBundle: ({ config, bundleAddToCartLoading, addCustomBundleToCart, }: CollectionBundleProps) => React.JSX.Element;
103
+ export default CollectionBundle;
@@ -0,0 +1,15 @@
1
+ import React from "react";
2
+ interface UploadFieldProps {
3
+ title: string;
4
+ uploadState?: {
5
+ url?: string;
6
+ name?: string;
7
+ loading?: boolean;
8
+ error?: boolean;
9
+ } | string;
10
+ onUpload: () => void;
11
+ onRemove: () => void;
12
+ onRetry: () => void;
13
+ }
14
+ export declare const UploadField: ({ title, uploadState, onUpload, onRemove, onRetry, }: UploadFieldProps) => React.JSX.Element;
15
+ export {};
@@ -0,0 +1,2 @@
1
+ import React from "react";
2
+ export declare const LoaderSpinner: () => React.JSX.Element;
@@ -0,0 +1,15 @@
1
+ import React from "react";
2
+ import { Product, BundleConfig } from "./ColllectionBundle";
3
+ type ProductDetailsModalProps = {
4
+ product: Product;
5
+ tierIdx: number;
6
+ isOpen: boolean;
7
+ onClose: () => void;
8
+ onAddToBundle: (product: Product, tierIdx: number) => void;
9
+ canAdd: boolean;
10
+ isSelected: boolean;
11
+ customizations: BundleConfig["customizations"];
12
+ isMobile: boolean;
13
+ };
14
+ export declare const ProductDetailsModal: ({ product, tierIdx, isOpen, onClose, onAddToBundle, canAdd, isSelected, customizations, isMobile, }: ProductDetailsModalProps) => React.ReactPortal | null;
15
+ export {};