@gem-sdk/core 1.41.0-dev.20 → 1.41.0-dev.26

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.
Files changed (52) hide show
  1. package/dist/cjs/components/ComponentToolbarPreview.js +10 -0
  2. package/dist/cjs/components/ComponentWrapperPreview.js +1 -0
  3. package/dist/cjs/components/Render.liquid.js +2 -0
  4. package/dist/cjs/components/RenderCustomCode.js +2 -0
  5. package/dist/cjs/components/ai-generator/AIContentGenerator.js +189 -0
  6. package/dist/cjs/components/ai-generator/AIGenContentLoading.js +57 -0
  7. package/dist/cjs/components/ai-generator/components/PickProduct.js +218 -0
  8. package/dist/cjs/components/ai-generator/components/ToneAndVoice.js +77 -0
  9. package/dist/cjs/components/ai-generator/hooks/useCheckingProductInside.js +47 -0
  10. package/dist/cjs/components/ai-generator/hooks/useFlipPopup.js +70 -0
  11. package/dist/cjs/components/ai-generator/hooks/useGettingGenerateRequest.js +37 -0
  12. package/dist/cjs/components/ai-generator/hooks/useListenEventGenerate.js +63 -0
  13. package/dist/cjs/components/ai-generator/icons/AIIcon.js +67 -0
  14. package/dist/cjs/components/ai-generator/icons/CloseIcon.js +19 -0
  15. package/dist/cjs/components/ai-generator/icons/DropdownIcon.js +37 -0
  16. package/dist/cjs/components/ai-generator/icons/SearchIcon.js +21 -0
  17. package/dist/cjs/components/ai-generator/icons/ShowMoreIcon.js +21 -0
  18. package/dist/cjs/components/constant.js +13 -0
  19. package/dist/cjs/components/resize/Spacing.js +2 -0
  20. package/dist/cjs/components/theme-section/CreateThemeSection.js +2 -0
  21. package/dist/cjs/helpers/queries/get-products.js +60 -2
  22. package/dist/cjs/hooks/shop/use-products-query.js +29 -0
  23. package/dist/cjs/hooks/useAnimations.js +2 -0
  24. package/dist/cjs/hooks/useInitialSwatchesOptions.js +2 -0
  25. package/dist/cjs/hooks/useProduct.js +2 -0
  26. package/dist/esm/components/ComponentToolbarPreview.js +10 -0
  27. package/dist/esm/components/ComponentWrapperPreview.js +1 -0
  28. package/dist/esm/components/Render.liquid.js +2 -0
  29. package/dist/esm/components/RenderCustomCode.js +2 -0
  30. package/dist/esm/components/ai-generator/AIContentGenerator.js +187 -0
  31. package/dist/esm/components/ai-generator/AIGenContentLoading.js +55 -0
  32. package/dist/esm/components/ai-generator/components/PickProduct.js +216 -0
  33. package/dist/esm/components/ai-generator/components/ToneAndVoice.js +75 -0
  34. package/dist/esm/components/ai-generator/hooks/useCheckingProductInside.js +45 -0
  35. package/dist/esm/components/ai-generator/hooks/useFlipPopup.js +68 -0
  36. package/dist/esm/components/ai-generator/hooks/useGettingGenerateRequest.js +35 -0
  37. package/dist/esm/components/ai-generator/hooks/useListenEventGenerate.js +61 -0
  38. package/dist/esm/components/ai-generator/icons/AIIcon.js +65 -0
  39. package/dist/esm/components/ai-generator/icons/CloseIcon.js +17 -0
  40. package/dist/esm/components/ai-generator/icons/DropdownIcon.js +34 -0
  41. package/dist/esm/components/ai-generator/icons/SearchIcon.js +19 -0
  42. package/dist/esm/components/ai-generator/icons/ShowMoreIcon.js +19 -0
  43. package/dist/esm/components/constant.js +13 -1
  44. package/dist/esm/components/resize/Spacing.js +2 -0
  45. package/dist/esm/components/theme-section/CreateThemeSection.js +2 -0
  46. package/dist/esm/helpers/queries/get-products.js +60 -3
  47. package/dist/esm/hooks/shop/use-products-query.js +30 -2
  48. package/dist/esm/hooks/useAnimations.js +2 -0
  49. package/dist/esm/hooks/useInitialSwatchesOptions.js +2 -0
  50. package/dist/esm/hooks/useProduct.js +2 -0
  51. package/dist/types/index.d.ts +2 -1
  52. package/package.json +3 -3
@@ -0,0 +1,61 @@
1
+ import { useState, useCallback, useEffect } from 'react';
2
+
3
+ const useListenEventGenerate = (componentInfo)=>{
4
+ const { uid: componentUid, tag: componentTag } = componentInfo;
5
+ const [isGenerating, setIsGenerating] = useState(false);
6
+ const onGenerate = (body)=>{
7
+ const eventCreate = new CustomEvent('editor:toolbar:ai-generate-content', {
8
+ bubbles: true,
9
+ detail: {
10
+ componentUid: componentUid,
11
+ componentTag: componentTag,
12
+ genRequest: body
13
+ }
14
+ });
15
+ window.dispatchEvent(eventCreate);
16
+ setIsGenerating(true);
17
+ onNotifyStatus('loading');
18
+ };
19
+ const onNotifyStatus = (status)=>{
20
+ const eventNotifyStatus = new CustomEvent('editor:ai-generate-content-status', {
21
+ bubbles: true,
22
+ detail: {
23
+ status: status,
24
+ generatingUid: componentUid
25
+ }
26
+ });
27
+ window.dispatchEvent(eventNotifyStatus);
28
+ };
29
+ const onGenerateContentStatus = useCallback((e)=>{
30
+ const detail = e.detail;
31
+ if (detail?.generatingUid === componentUid && detail.status === 'success') {
32
+ setIsGenerating(false);
33
+ }
34
+ }, [
35
+ componentUid
36
+ ]);
37
+ const onOpenProductElementSettings = (productElementUid)=>{
38
+ const eventCreate = new CustomEvent('editor:toolbar:open-product-element', {
39
+ bubbles: true,
40
+ detail: {
41
+ productElementUid: productElementUid
42
+ }
43
+ });
44
+ window.dispatchEvent(eventCreate);
45
+ };
46
+ useEffect(()=>{
47
+ window.addEventListener('editor:ai-generate-content-status', onGenerateContentStatus);
48
+ return ()=>{
49
+ window.removeEventListener('editor:ai-generate-content-status', onGenerateContentStatus);
50
+ };
51
+ }, [
52
+ onGenerateContentStatus
53
+ ]);
54
+ return {
55
+ isGenerating,
56
+ onGenerate,
57
+ onOpenProductElementSettings
58
+ };
59
+ };
60
+
61
+ export { useListenEventGenerate };
@@ -0,0 +1,65 @@
1
+ import { jsxs, jsx } from 'react/jsx-runtime';
2
+
3
+ const AIIcon = ()=>{
4
+ const getRandomId = ()=>{
5
+ return Math.random().toString(36).substring(7);
6
+ };
7
+ const linearGradientId = getRandomId();
8
+ return /*#__PURE__*/ jsxs("svg", {
9
+ width: "16",
10
+ height: "16",
11
+ viewBox: "0 0 16 16",
12
+ fill: "none",
13
+ xmlns: "http://www.w3.org/2000/svg",
14
+ children: [
15
+ /*#__PURE__*/ jsx("path", {
16
+ d: "M11.6363 2.67137C11.5886 2.52361 11.3795 2.52361 11.3318 2.67137L11.1133 3.34797C11.0352 3.58971 10.8469 3.78 10.606 3.86067L9.93715 4.08465C9.79156 4.1334 9.79156 4.33933 9.93715 4.38809L10.606 4.61207C10.8469 4.69273 11.0352 4.88302 11.1133 5.12477L11.3318 5.80137C11.3795 5.94913 11.5886 5.94913 11.6363 5.80137L11.8549 5.12477C11.933 4.88302 12.1212 4.69273 12.3621 4.61207L13.031 4.38809C13.1766 4.33933 13.1766 4.1334 13.031 4.08465L12.3621 3.86067C12.1212 3.78 11.933 3.58971 11.8549 3.34797L11.6363 2.67137Z",
17
+ fill: `url(#${linearGradientId}_0)`
18
+ }),
19
+ /*#__PURE__*/ jsx("path", {
20
+ d: "M7.61245 3.30705C7.54086 3.08541 7.22728 3.08541 7.15569 3.30705L6.39541 5.6608C6.16115 6.38604 5.59636 6.9569 4.87367 7.19891L2.56369 7.97242C2.3453 8.04555 2.34531 8.35445 2.5637 8.42758L4.87367 9.2011C5.59636 9.4431 6.16115 10.014 6.39541 10.7392L7.15569 13.093C7.22728 13.3146 7.54086 13.3146 7.61245 13.093L8.37273 10.7392C8.60699 10.014 9.17178 9.4431 9.89447 9.2011L12.2044 8.42758C12.4228 8.35445 12.4228 8.04555 12.2044 7.97242L9.89447 7.1989C9.17178 6.9569 8.60699 6.38604 8.37273 5.6608L7.61245 3.30705Z",
21
+ fill: `url(#${linearGradientId}_1)`
22
+ }),
23
+ /*#__PURE__*/ jsxs("defs", {
24
+ children: [
25
+ /*#__PURE__*/ jsxs("linearGradient", {
26
+ id: `${linearGradientId}_0`,
27
+ x1: "15.3433",
28
+ y1: "2.56054",
29
+ x2: "4.24885",
30
+ y2: "1.00838",
31
+ gradientUnits: "userSpaceOnUse",
32
+ children: [
33
+ /*#__PURE__*/ jsx("stop", {
34
+ stopColor: "#D8E1FF"
35
+ }),
36
+ /*#__PURE__*/ jsx("stop", {
37
+ offset: "1",
38
+ stopColor: "#C8ACFF"
39
+ })
40
+ ]
41
+ }),
42
+ /*#__PURE__*/ jsxs("linearGradient", {
43
+ id: `${linearGradientId}_1`,
44
+ x1: "15.3433",
45
+ y1: "2.56054",
46
+ x2: "4.24885",
47
+ y2: "1.00838",
48
+ gradientUnits: "userSpaceOnUse",
49
+ children: [
50
+ /*#__PURE__*/ jsx("stop", {
51
+ stopColor: "#D8E1FF"
52
+ }),
53
+ /*#__PURE__*/ jsx("stop", {
54
+ offset: "1",
55
+ stopColor: "#C8ACFF"
56
+ })
57
+ ]
58
+ })
59
+ ]
60
+ })
61
+ ]
62
+ });
63
+ };
64
+
65
+ export { AIIcon };
@@ -0,0 +1,17 @@
1
+ import { jsx } from 'react/jsx-runtime';
2
+
3
+ const CloseIcon = ()=>{
4
+ return /*#__PURE__*/ jsx("svg", {
5
+ width: "16",
6
+ height: "16",
7
+ viewBox: "0 0 16 16",
8
+ fill: "none",
9
+ xmlns: "http://www.w3.org/2000/svg",
10
+ children: /*#__PURE__*/ jsx("path", {
11
+ d: "M11.1755 12.0243C11.4099 12.2586 11.7898 12.2586 12.0241 12.0243C12.2584 11.79 12.2584 11.4101 12.0241 11.1757L8.84833 8L12.0241 4.82427C12.2584 4.58995 12.2584 4.21005 12.0241 3.97574C11.7898 3.74142 11.4099 3.74142 11.1755 3.97574L7.9998 7.15148L4.82407 3.97574C4.58975 3.74142 4.20986 3.74142 3.97554 3.97574C3.74123 4.21005 3.74123 4.58995 3.97554 4.82427L7.15128 8L3.97554 11.1757C3.74123 11.4101 3.74123 11.79 3.97554 12.0243C4.20986 12.2586 4.58975 12.2586 4.82407 12.0243L7.9998 8.84853L11.1755 12.0243Z",
12
+ fill: "#F9F9F9"
13
+ })
14
+ });
15
+ };
16
+
17
+ export { CloseIcon };
@@ -0,0 +1,34 @@
1
+ import { jsx } from 'react/jsx-runtime';
2
+
3
+ const DropdownIcon = ()=>{
4
+ return /*#__PURE__*/ jsx("svg", {
5
+ width: "20",
6
+ height: "20",
7
+ viewBox: "0 0 20 20",
8
+ fill: "none",
9
+ xmlns: "http://www.w3.org/2000/svg",
10
+ children: /*#__PURE__*/ jsx("path", {
11
+ fillRule: "evenodd",
12
+ clipRule: "evenodd",
13
+ d: "M5.13313 7.62204C5.31064 7.45932 5.59845 7.45932 5.77596 7.62204L10 11.4941L14.224 7.62204C14.4016 7.45932 14.6894 7.45932 14.8669 7.62204C15.0444 7.78476 15.0444 8.04858 14.8669 8.21129L10.3214 12.378C10.1439 12.5407 9.8561 12.5407 9.67859 12.378L5.13313 8.21129C4.95562 8.04858 4.95562 7.78476 5.13313 7.62204Z",
14
+ fill: "#F9F9F9"
15
+ })
16
+ });
17
+ };
18
+ const TickIcon = ()=>{
19
+ return /*#__PURE__*/ jsx("svg", {
20
+ width: "20",
21
+ height: "20",
22
+ viewBox: "0 0 20 20",
23
+ fill: "none",
24
+ xmlns: "http://www.w3.org/2000/svg",
25
+ children: /*#__PURE__*/ jsx("path", {
26
+ fillRule: "evenodd",
27
+ clipRule: "evenodd",
28
+ d: "M15.8415 5.1766C16.0528 5.41207 16.0528 5.79383 15.8415 6.0293L7.95016 14.8234C7.84869 14.9365 7.71107 15 7.56757 15C7.42408 15 7.28645 14.9365 7.18499 14.8234L4.15846 11.4505C3.94717 11.215 3.94718 10.8333 4.15848 10.5978C4.36978 10.3623 4.71236 10.3623 4.92365 10.5978L7.56759 13.5443L15.0764 5.1766C15.2877 4.94113 15.6302 4.94113 15.8415 5.1766Z",
29
+ fill: "#00C853"
30
+ })
31
+ });
32
+ };
33
+
34
+ export { DropdownIcon, TickIcon };
@@ -0,0 +1,19 @@
1
+ import { jsx } from 'react/jsx-runtime';
2
+
3
+ const SearchIcon = ()=>{
4
+ return /*#__PURE__*/ jsx("svg", {
5
+ width: "20",
6
+ height: "20",
7
+ viewBox: "0 0 20 20",
8
+ fill: "none",
9
+ xmlns: "http://www.w3.org/2000/svg",
10
+ children: /*#__PURE__*/ jsx("path", {
11
+ fillRule: "evenodd",
12
+ clipRule: "evenodd",
13
+ d: "M8.75 2.5C5.29822 2.5 2.5 5.29822 2.5 8.75C2.5 12.2018 5.29822 15 8.75 15C10.2508 15 11.628 14.471 12.7055 13.5893L16.4775 17.3614C16.7216 17.6054 17.1173 17.6054 17.3614 17.3614C17.6054 17.1173 17.6054 16.7216 17.3614 16.4775L13.5893 12.7055C14.471 11.628 15 10.2508 15 8.75C15 5.29822 12.2018 2.5 8.75 2.5ZM3.75 8.75C3.75 5.98858 5.98858 3.75 8.75 3.75C11.5114 3.75 13.75 5.98858 13.75 8.75C13.75 11.5114 11.5114 13.75 8.75 13.75C5.98858 13.75 3.75 11.5114 3.75 8.75Z",
14
+ fill: "#AAAAAA"
15
+ })
16
+ });
17
+ };
18
+
19
+ export { SearchIcon };
@@ -0,0 +1,19 @@
1
+ import { jsx } from 'react/jsx-runtime';
2
+
3
+ const ShowMoreIcon = ()=>{
4
+ return /*#__PURE__*/ jsx("svg", {
5
+ width: "17",
6
+ height: "16",
7
+ viewBox: "0 0 17 16",
8
+ fill: "none",
9
+ xmlns: "http://www.w3.org/2000/svg",
10
+ children: /*#__PURE__*/ jsx("path", {
11
+ fillRule: "evenodd",
12
+ clipRule: "evenodd",
13
+ d: "M4.60651 6.09763C4.74852 5.96746 4.97876 5.96746 5.12077 6.09763L8.5 9.19526L11.8792 6.09763C12.0212 5.96746 12.2515 5.96746 12.3935 6.09763C12.5355 6.22781 12.5355 6.43886 12.3935 6.56904L8.75713 9.90237C8.61512 10.0325 8.38488 10.0325 8.24287 9.90237L4.60651 6.56904C4.4645 6.43886 4.4645 6.22781 4.60651 6.09763Z",
14
+ fill: "#F9F9F9"
15
+ })
16
+ });
17
+ };
18
+
19
+ export { ShowMoreIcon };
@@ -67,5 +67,17 @@ const postPurchaseWrapElements = [
67
67
  'PostPurchaseCalloutBox',
68
68
  'PostPurchaseProductOffer'
69
69
  ];
70
+ const ableGenerateContentElements = [
71
+ 'Section',
72
+ 'Row',
73
+ 'Text',
74
+ 'Heading',
75
+ 'Accordion',
76
+ 'Product',
77
+ 'HeroBanner',
78
+ 'IconList',
79
+ 'IconListV2',
80
+ 'AdvancedList'
81
+ ];
70
82
 
71
- export { customRenderChildren, disableWrap, excludeApplyStyle, postPurchaseRequiredElements, postPurchaseWrapElements };
83
+ export { ableGenerateContentElements, customRenderChildren, disableWrap, excludeApplyStyle, postPurchaseRequiredElements, postPurchaseWrapElements };
@@ -6,10 +6,12 @@ import 'swr';
6
6
  import '@gem-sdk/adapter-shopify';
7
7
  import 'swr/mutation';
8
8
  import { usePageType } from '../../hooks/shop.js';
9
+ import 'swr/infinite';
9
10
  import 'vanilla-lazyload';
10
11
  import '../../hooks/useCartUI.js';
11
12
  import 'react-transition-group';
12
13
  import '@gem-sdk/core';
14
+ import 'classnames';
13
15
  import '../../helpers/convert.js';
14
16
 
15
17
  function Spacing(props) {
@@ -6,8 +6,10 @@ import { useShopStore } from '../../contexts/ShopContext.js';
6
6
  import '@gem-sdk/adapter-shopify';
7
7
  import 'swr';
8
8
  import 'swr/mutation';
9
+ import 'swr/infinite';
9
10
  import 'vanilla-lazyload';
10
11
  import '../../hooks/useCartUI.js';
12
+ import 'classnames';
11
13
  import '../../helpers/convert.js';
12
14
 
13
15
  const SHOW_TOOLTIP_TIMEOUT = 600;
@@ -72,9 +72,48 @@ const getProductQueryAll = async (fetcher, arg)=>{
72
72
  },
73
73
  where: {
74
74
  status: 'ACTIVE',
75
- ...arg
75
+ ...arg,
76
+ or: [
77
+ {
78
+ hasProductTags: false
79
+ },
80
+ {
81
+ hasProductTagsWith: [
82
+ {
83
+ hasTagsWith: [
84
+ {
85
+ nameNotIn: [
86
+ 'bogos-gift'
87
+ ]
88
+ }
89
+ ]
90
+ }
91
+ ]
92
+ }
93
+ ]
76
94
  }
77
95
  };
96
+ return fetchProducts(fetcher, variables);
97
+ };
98
+ const getListProductByVariables = async (fetcher, arg)=>{
99
+ const variables = {
100
+ first: arg.first || 8,
101
+ firstMedia: 1,
102
+ firstVariant: 1,
103
+ orderBy: {
104
+ field: 'PLATFORM_CREATED_AT',
105
+ direction: 'DESC'
106
+ },
107
+ orderByMedia: {
108
+ field: 'POSITION',
109
+ direction: 'ASC'
110
+ },
111
+ where: {
112
+ status: 'ACTIVE',
113
+ ...arg.where
114
+ },
115
+ after: arg.after
116
+ };
78
117
  const pageData = await fetchProducts(fetcher, variables);
79
118
  return pageData;
80
119
  };
@@ -120,7 +159,25 @@ const loopFetchProducts = async (fetcher, { ids, isSample, isStorefront, default
120
159
  },
121
160
  ...ids?.length ? {
122
161
  baseIDIn: ids
123
- } : {}
162
+ } : {},
163
+ or: [
164
+ {
165
+ hasProductTags: false
166
+ },
167
+ {
168
+ hasProductTagsWith: [
169
+ {
170
+ hasTagsWith: [
171
+ {
172
+ nameNotIn: [
173
+ 'bogos-gift'
174
+ ]
175
+ }
176
+ ]
177
+ }
178
+ ]
179
+ }
180
+ ]
124
181
  },
125
182
  after: productAfterFetcher
126
183
  };
@@ -185,4 +242,4 @@ const mergeMediasToProducts = async ({ fetcher, products, isSample, isStorefront
185
242
  // );
186
243
  // };
187
244
 
188
- export { getProductQueryAll, getProducts };
245
+ export { getListProductByVariables, getProductQueryAll, getProducts };
@@ -1,5 +1,6 @@
1
1
  import useSWR from 'swr';
2
- import { getProducts, getProductQueryAll } from '../../helpers/queries/get-products.js';
2
+ import useSWRInfinite from 'swr/infinite';
3
+ import { getProducts, getProductQueryAll, getListProductByVariables } from '../../helpers/queries/get-products.js';
3
4
  import { generateProductsQueryKey } from '../../helpers/query.js';
4
5
  import { useIsSampleProduct, useIsStorefrontProduct } from '../shop.js';
5
6
  import { useFetchHandle } from '../useFetchHandle.js';
@@ -18,6 +19,33 @@ const useProductsQuery = (ids, options, params)=>{
18
19
  return getProducts(params?.fetcher || fetcher, arg);
19
20
  }, options);
20
21
  };
22
+ const getKey = (variable)=>{
23
+ return (pageIndex, previousPageData)=>{
24
+ if (!variable || previousPageData && !previousPageData.products?.pageInfo?.hasNextPage) {
25
+ return null;
26
+ }
27
+ if (pageIndex === 0) {
28
+ return [
29
+ 'query/products',
30
+ variable
31
+ ];
32
+ }
33
+ return [
34
+ 'query/products',
35
+ {
36
+ ...variable,
37
+ after: previousPageData.products?.pageInfo?.endCursor
38
+ }
39
+ ];
40
+ };
41
+ };
42
+ const useListProductQuery = (variable, options)=>{
43
+ const fetcher = useFetchHandle();
44
+ const data = useSWRInfinite(getKey(variable), async ([, arg])=>{
45
+ return getListProductByVariables(fetcher, arg);
46
+ }, options);
47
+ return data;
48
+ };
21
49
  const useProductsQueryAll = (variable, options)=>{
22
50
  const fetcher = useFetchHandle();
23
51
  return useSWR(variable ? [
@@ -28,4 +56,4 @@ const useProductsQueryAll = (variable, options)=>{
28
56
  }, options);
29
57
  };
30
58
 
31
- export { useProductsQuery, useProductsQueryAll };
59
+ export { useListProductQuery, useProductsQuery, useProductsQueryAll };
@@ -5,10 +5,12 @@ import 'zustand';
5
5
  import 'swr';
6
6
  import '@gem-sdk/adapter-shopify';
7
7
  import 'swr/mutation';
8
+ import 'swr/infinite';
8
9
  import 'vanilla-lazyload';
9
10
  import './useCartUI.js';
10
11
  import 'react-transition-group';
11
12
  import '@gem-sdk/core';
13
+ import 'classnames';
12
14
  import '../helpers/convert.js';
13
15
 
14
16
  const useAnimations = ()=>{
@@ -9,10 +9,12 @@ import 'react/jsx-runtime';
9
9
  import 'zustand';
10
10
  import '@gem-sdk/adapter-shopify';
11
11
  import 'swr/mutation';
12
+ import 'swr/infinite';
12
13
  import 'vanilla-lazyload';
13
14
  import './useCartUI.js';
14
15
  import 'react-transition-group';
15
16
  import '@gem-sdk/core';
17
+ import 'classnames';
16
18
  import isBrowser from '../helpers/is-browser.js';
17
19
  import '../helpers/convert.js';
18
20
 
@@ -6,11 +6,13 @@ import 'swr';
6
6
  import { usePageStore } from '../contexts/PageContext.js';
7
7
  import '@gem-sdk/adapter-shopify';
8
8
  import 'swr/mutation';
9
+ import 'swr/infinite';
9
10
  import 'vanilla-lazyload';
10
11
  import './useCartUI.js';
11
12
  import { checkInStock } from '../helpers/variant.js';
12
13
  import 'react-transition-group';
13
14
  import '@gem-sdk/core';
15
+ import 'classnames';
14
16
  import { flattenConnection } from '../helpers/flatten-connection.js';
15
17
  import '../helpers/convert.js';
16
18
  import { getSelectedVariant } from '../helpers/product.js';
@@ -7787,6 +7787,7 @@ type ComponentSetting<P extends BaseProps> = {
7787
7787
  flowPage?: string;
7788
7788
  notAppendTags?: string[];
7789
7789
  notAppendLeftRight?: boolean;
7790
+ allowAppendTags?: string[];
7790
7791
  };
7791
7792
  sideBar?: {
7792
7793
  hide?: boolean;
@@ -27059,7 +27060,7 @@ type RGBAColorType = `rgba(${number}, ${number}, ${number}, ${number})`;
27059
27060
  type RGBColorType = `rgb(${number}, ${number}, ${number})`;
27060
27061
  type HSLColorType = `hsl(${number}, ${number}%, ${number}%)`;
27061
27062
  type HSLAColorType = `hsla(${number}, ${number}%, ${number}%, ${number})`;
27062
- type ColorValueType = ColorType$1 | HexColorType | RGBAColorType | RGBColorType | HSLColorType | HSLAColorType | ColorKey;
27063
+ type ColorValueType = ColorType$1 | HexColorType | RGBAColorType | RGBColorType | HSLColorType | HSLAColorType | ColorKey | string;
27063
27064
  type BrandColorObject = {
27064
27065
  brand: string;
27065
27066
  highlight: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gem-sdk/core",
3
- "version": "1.41.0-dev.20",
3
+ "version": "1.41.0-dev.26",
4
4
  "license": "MIT",
5
5
  "sideEffects": false,
6
6
  "main": "dist/cjs/index.js",
@@ -27,8 +27,8 @@
27
27
  "type-check": "yarn tsc --noEmit"
28
28
  },
29
29
  "devDependencies": {
30
- "@gem-sdk/adapter-shopify": "1.41.0-staging.13",
31
- "@gem-sdk/styles": "1.41.0-dev.16"
30
+ "@gem-sdk/adapter-shopify": "1.41.0-dev.23",
31
+ "@gem-sdk/styles": "1.41.0-dev.26"
32
32
  },
33
33
  "dependencies": {
34
34
  "react-error-boundary": "4.0.10",