@gem-sdk/components 2.1.1 → 2.1.4

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.
@@ -18,11 +18,11 @@ const ArticleDate = ({ setting, builderProps, styles })=>{
18
18
  }));
19
19
  };
20
20
  const formattedDate = React.useMemo(()=>{
21
- const date = convertTZ(new Date(article.platformUpdatedAt), timezone ?? '');
21
+ const date = convertTZ(new Date(article.publishedAt), timezone ?? '');
22
22
  const { locales, options } = JSON.parse(dateFormat ?? '{"locales":"en-US","options":{"month":"short","day":"2-digit","year":"numeric"}}');
23
23
  return date.toLocaleDateString(locales, options);
24
24
  }, [
25
- article.platformUpdatedAt,
25
+ article.publishedAt,
26
26
  timezone,
27
27
  dateFormat
28
28
  ]);
@@ -20,7 +20,7 @@ const ArticleDate = ({ setting, styles, advanced, builderProps })=>{
20
20
  styles: styles,
21
21
  setting: {
22
22
  ...setting,
23
- text: `{{ article.updated_at | date: '${FORMAT_MAP[dateFormat ?? '{"locales":"en-US","options":{"month":"short","day":"2-digit","year":"numeric"}}']}' }}`,
23
+ text: `{{ article.published_at | date: '${FORMAT_MAP[dateFormat ?? '{"locales":"en-US","options":{"month":"short","day":"2-digit","year":"numeric"}}']}' }}`,
24
24
  excludeFlex: true
25
25
  },
26
26
  advanced: advanced,
@@ -22,7 +22,7 @@ const ArticleList = ({ styles, setting, className, children, builderProps })=>{
22
22
  },
23
23
  orderBy: {
24
24
  direction: 'DESC',
25
- field: 'PLATFORM_UPDATED_AT'
25
+ field: 'PUBLISHED_AT'
26
26
  }
27
27
  };
28
28
  const blogsQuery = {
@@ -9,6 +9,7 @@ var React = require('react');
9
9
  var carousel = require('./common/carousel.js');
10
10
 
11
11
  const CarouselItem = ({ children, builderAttrs, styles, advanced, setting, builderProps, parentStyle, parentSettings, background, contentType = 'normalItem', onClickItem, ...passProps })=>{
12
+ const itemPadding = core.makeGlobalSize(parentStyle?.itemPadding);
12
13
  const styleByContentType = React.useMemo(()=>{
13
14
  const delList = [
14
15
  '--radius'
@@ -27,11 +28,6 @@ const CarouselItem = ({ children, builderAttrs, styles, advanced, setting, build
27
28
  bw: parentStyle?.borderContent?.width,
28
29
  bc: core.getSingleColorVariable(parentStyle?.borderContent?.color)
29
30
  }),
30
- ...core.getStyleShadow({
31
- value: parentStyle?.carouselShadow,
32
- styleAppliedFor: 'box-shadow',
33
- isEnableShadow: parentStyle?.hasActiveShadow
34
- }),
35
31
  ...core.getRadiusStyleActiveState({
36
32
  ...parentStyle?.roundedContent,
37
33
  active: {
@@ -69,7 +65,8 @@ const CarouselItem = ({ children, builderAttrs, styles, advanced, setting, build
69
65
  ignoreBackgroundImage: true,
70
66
  ignoreBackgroundImageProperties: true,
71
67
  ignoreBgAttachment: true
72
- })
68
+ }),
69
+ ...itemPadding && itemPadding.padding
73
70
  },
74
71
  onClick: onClickItem,
75
72
  "aria-hidden": true,
@@ -6,6 +6,7 @@ var core = require('@gem-sdk/core');
6
6
  var carousel = require('./common/carousel.js');
7
7
 
8
8
  const CarouselItem = ({ children, builderAttrs, styles, advanced, setting, builderProps, style, className, parentId, parentStyle, parentSettings, background, index, customStyle, parentUid, contentType = 'normalItem', ...passProps })=>{
9
+ const itemPadding = core.makeGlobalSize(parentStyle?.itemPadding);
9
10
  const styleByContentType = ()=>{
10
11
  const delList = [
11
12
  '--radius'
@@ -21,11 +22,6 @@ const CarouselItem = ({ children, builderAttrs, styles, advanced, setting, build
21
22
  bw: parentStyle?.borderContent?.width,
22
23
  bc: core.getSingleColorVariable(parentStyle?.borderContent?.color)
23
24
  }),
24
- ...core.getStyleShadow({
25
- value: parentStyle?.carouselShadow,
26
- styleAppliedFor: 'box-shadow',
27
- isEnableShadow: parentStyle?.hasActiveShadow
28
- }),
29
25
  ...core.getRadiusStyleActiveState({
30
26
  ...parentStyle?.roundedContent,
31
27
  active: {
@@ -79,7 +75,8 @@ const CarouselItem = ({ children, builderAttrs, styles, advanced, setting, build
79
75
  sneakPeakType: parentSettings?.sneakPeakType,
80
76
  sneakPeakOffsetCenter: parentSettings?.sneakPeakOffsetCenter,
81
77
  sneakPeakOffsetForward: parentSettings?.sneakPeakOffsetForward
82
- }))
78
+ })),
79
+ ...itemPadding && itemPadding.padding
83
80
  }}"
84
81
  class="${core.cls(`gem-slider-item gp-w-full gem-slider-item-${parentId || ''} gp-child-item-${parentUid}`, builderProps?.uid, className)}"
85
82
  data-index="${index}"
@@ -732,6 +732,30 @@ const config = {
732
732
  default: 16
733
733
  }
734
734
  }
735
+ },
736
+ {
737
+ id: 'itemPadding',
738
+ type: 'size-setting',
739
+ devices: {
740
+ desktop: {
741
+ default: {
742
+ padding: {
743
+ type: 'custom',
744
+ top: '0px',
745
+ left: '0px',
746
+ bottom: '0px',
747
+ right: '0px'
748
+ }
749
+ }
750
+ }
751
+ },
752
+ hiddenSettings: [
753
+ 'shape',
754
+ 'gap',
755
+ 'width',
756
+ 'height'
757
+ ],
758
+ hiddenShowMore: true
735
759
  }
736
760
  ]
737
761
  }
@@ -1078,6 +1102,16 @@ const config = {
1078
1102
  id: 'sizeSetting'
1079
1103
  },
1080
1104
  layout: 'vertical'
1105
+ },
1106
+ {
1107
+ type: 'control',
1108
+ setting: {
1109
+ id: 'itemPadding'
1110
+ },
1111
+ isMoreSetting: true,
1112
+ options: {
1113
+ noGap: true
1114
+ }
1081
1115
  }
1082
1116
  ]
1083
1117
  },
@@ -120,7 +120,7 @@ const StockCounter = ({ setting, styles, style, advanced, builderProps })=>{
120
120
  class="${appendTypoClass} gp-stock-counter-mark"
121
121
  style="${appendTypoStyle}"
122
122
  >
123
- {% if inventory_management == null or inventory_management != "shopify" and inventory_quantity <= 0 %}
123
+ {% if inventory_management == null and inventory_quantity <= 0 %}
124
124
  ${helpers.transformHighlighTag(unlimitedQuantityMessage ?? helpers$1.getStaticLocale('StockCounter', 'let_buy_now'), mainColor)}
125
125
  {% elsif available == false %}
126
126
  ${helpers.transformHighlighTag(outOfStockMessage || '', mainColor)}
@@ -19,7 +19,7 @@ const BoldSubscriptions = ({ setting, advanced })=>{
19
19
  {% else %}
20
20
  {% assign app_blocks = section.blocks | where: "type", "@app" %}
21
21
  {% for block in app_blocks %}
22
- {% if block.type == '@app' and block.id == '${appBlockId}' %}
22
+ {% if block.type == '@app' and block.id contains '${appBlockId}' %}
23
23
  {% render block %}
24
24
  {% endif %}
25
25
  {% endfor %}
@@ -43,7 +43,7 @@ const getLiquidForAppBlock = (appBlockId, align, cssClass)=>{
43
43
  }}"
44
44
  >
45
45
  {% for block in app_blocks %}
46
- {% if block.type == '@app' and block.id == '${appBlockId}' %}
46
+ {% if block.type == '@app' and block.id contains '${appBlockId}' %}
47
47
  {% render block %}
48
48
  {% endif %}
49
49
  {% endfor %}
@@ -14,11 +14,11 @@ const ArticleDate = ({ setting, builderProps, styles })=>{
14
14
  }));
15
15
  };
16
16
  const formattedDate = useMemo(()=>{
17
- const date = convertTZ(new Date(article.platformUpdatedAt), timezone ?? '');
17
+ const date = convertTZ(new Date(article.publishedAt), timezone ?? '');
18
18
  const { locales, options } = JSON.parse(dateFormat ?? '{"locales":"en-US","options":{"month":"short","day":"2-digit","year":"numeric"}}');
19
19
  return date.toLocaleDateString(locales, options);
20
20
  }, [
21
- article.platformUpdatedAt,
21
+ article.publishedAt,
22
22
  timezone,
23
23
  dateFormat
24
24
  ]);
@@ -16,7 +16,7 @@ const ArticleDate = ({ setting, styles, advanced, builderProps })=>{
16
16
  styles: styles,
17
17
  setting: {
18
18
  ...setting,
19
- text: `{{ article.updated_at | date: '${FORMAT_MAP[dateFormat ?? '{"locales":"en-US","options":{"month":"short","day":"2-digit","year":"numeric"}}']}' }}`,
19
+ text: `{{ article.published_at | date: '${FORMAT_MAP[dateFormat ?? '{"locales":"en-US","options":{"month":"short","day":"2-digit","year":"numeric"}}']}' }}`,
20
20
  excludeFlex: true
21
21
  },
22
22
  advanced: advanced,
@@ -18,7 +18,7 @@ const ArticleList = ({ styles, setting, className, children, builderProps })=>{
18
18
  },
19
19
  orderBy: {
20
20
  direction: 'DESC',
21
- field: 'PLATFORM_UPDATED_AT'
21
+ field: 'PUBLISHED_AT'
22
22
  }
23
23
  };
24
24
  const blogsQuery = {
@@ -1,10 +1,11 @@
1
1
  import { jsx } from 'react/jsx-runtime';
2
- import { makeStyle, getSingleColorVariable, getStyleShadow, getRadiusStyleActiveState, cls, getStyleBackgroundByDevice, isEmptyChildren } from '@gem-sdk/core';
2
+ import { makeGlobalSize, makeStyle, getSingleColorVariable, getRadiusStyleActiveState, getStyleShadow, cls, getStyleBackgroundByDevice, isEmptyChildren } from '@gem-sdk/core';
3
3
  import ChildrenDroppable from '../../grid/components/ChildrenDroppable.js';
4
4
  import { useMemo } from 'react';
5
5
  import { getInitialWidthForCarouselItem } from './common/carousel.js';
6
6
 
7
7
  const CarouselItem = ({ children, builderAttrs, styles, advanced, setting, builderProps, parentStyle, parentSettings, background, contentType = 'normalItem', onClickItem, ...passProps })=>{
8
+ const itemPadding = makeGlobalSize(parentStyle?.itemPadding);
8
9
  const styleByContentType = useMemo(()=>{
9
10
  const delList = [
10
11
  '--radius'
@@ -23,11 +24,6 @@ const CarouselItem = ({ children, builderAttrs, styles, advanced, setting, build
23
24
  bw: parentStyle?.borderContent?.width,
24
25
  bc: getSingleColorVariable(parentStyle?.borderContent?.color)
25
26
  }),
26
- ...getStyleShadow({
27
- value: parentStyle?.carouselShadow,
28
- styleAppliedFor: 'box-shadow',
29
- isEnableShadow: parentStyle?.hasActiveShadow
30
- }),
31
27
  ...getRadiusStyleActiveState({
32
28
  ...parentStyle?.roundedContent,
33
29
  active: {
@@ -65,7 +61,8 @@ const CarouselItem = ({ children, builderAttrs, styles, advanced, setting, build
65
61
  ignoreBackgroundImage: true,
66
62
  ignoreBackgroundImageProperties: true,
67
63
  ignoreBgAttachment: true
68
- })
64
+ }),
65
+ ...itemPadding && itemPadding.padding
69
66
  },
70
67
  onClick: onClickItem,
71
68
  "aria-hidden": true,
@@ -1,7 +1,8 @@
1
- import { getStyleShadow, template, getStyleBackgroundByDevice, makeStyleResponsive, cls, makeStyle, getSingleColorVariable, getRadiusStyleActiveState } from '@gem-sdk/core';
1
+ import { makeGlobalSize, getStyleShadow, template, getStyleBackgroundByDevice, makeStyleResponsive, cls, makeStyle, getSingleColorVariable, getRadiusStyleActiveState } from '@gem-sdk/core';
2
2
  import { getInitialWidthForCarouselItem, getCarouselSneakPeakTranslate } from './common/carousel.js';
3
3
 
4
4
  const CarouselItem = ({ children, builderAttrs, styles, advanced, setting, builderProps, style, className, parentId, parentStyle, parentSettings, background, index, customStyle, parentUid, contentType = 'normalItem', ...passProps })=>{
5
+ const itemPadding = makeGlobalSize(parentStyle?.itemPadding);
5
6
  const styleByContentType = ()=>{
6
7
  const delList = [
7
8
  '--radius'
@@ -17,11 +18,6 @@ const CarouselItem = ({ children, builderAttrs, styles, advanced, setting, build
17
18
  bw: parentStyle?.borderContent?.width,
18
19
  bc: getSingleColorVariable(parentStyle?.borderContent?.color)
19
20
  }),
20
- ...getStyleShadow({
21
- value: parentStyle?.carouselShadow,
22
- styleAppliedFor: 'box-shadow',
23
- isEnableShadow: parentStyle?.hasActiveShadow
24
- }),
25
21
  ...getRadiusStyleActiveState({
26
22
  ...parentStyle?.roundedContent,
27
23
  active: {
@@ -75,7 +71,8 @@ const CarouselItem = ({ children, builderAttrs, styles, advanced, setting, build
75
71
  sneakPeakType: parentSettings?.sneakPeakType,
76
72
  sneakPeakOffsetCenter: parentSettings?.sneakPeakOffsetCenter,
77
73
  sneakPeakOffsetForward: parentSettings?.sneakPeakOffsetForward
78
- }))
74
+ })),
75
+ ...itemPadding && itemPadding.padding
79
76
  }}"
80
77
  class="${cls(`gem-slider-item gp-w-full gem-slider-item-${parentId || ''} gp-child-item-${parentUid}`, builderProps?.uid, className)}"
81
78
  data-index="${index}"
@@ -728,6 +728,30 @@ const config = {
728
728
  default: 16
729
729
  }
730
730
  }
731
+ },
732
+ {
733
+ id: 'itemPadding',
734
+ type: 'size-setting',
735
+ devices: {
736
+ desktop: {
737
+ default: {
738
+ padding: {
739
+ type: 'custom',
740
+ top: '0px',
741
+ left: '0px',
742
+ bottom: '0px',
743
+ right: '0px'
744
+ }
745
+ }
746
+ }
747
+ },
748
+ hiddenSettings: [
749
+ 'shape',
750
+ 'gap',
751
+ 'width',
752
+ 'height'
753
+ ],
754
+ hiddenShowMore: true
731
755
  }
732
756
  ]
733
757
  }
@@ -1074,6 +1098,16 @@ const config = {
1074
1098
  id: 'sizeSetting'
1075
1099
  },
1076
1100
  layout: 'vertical'
1101
+ },
1102
+ {
1103
+ type: 'control',
1104
+ setting: {
1105
+ id: 'itemPadding'
1106
+ },
1107
+ isMoreSetting: true,
1108
+ options: {
1109
+ noGap: true
1110
+ }
1077
1111
  }
1078
1112
  ]
1079
1113
  },
@@ -116,7 +116,7 @@ const StockCounter = ({ setting, styles, style, advanced, builderProps })=>{
116
116
  class="${appendTypoClass} gp-stock-counter-mark"
117
117
  style="${appendTypoStyle}"
118
118
  >
119
- {% if inventory_management == null or inventory_management != "shopify" and inventory_quantity <= 0 %}
119
+ {% if inventory_management == null and inventory_quantity <= 0 %}
120
120
  ${transformHighlighTag(unlimitedQuantityMessage ?? getStaticLocale('StockCounter', 'let_buy_now'), mainColor)}
121
121
  {% elsif available == false %}
122
122
  ${transformHighlighTag(outOfStockMessage || '', mainColor)}
@@ -15,7 +15,7 @@ const BoldSubscriptions = ({ setting, advanced })=>{
15
15
  {% else %}
16
16
  {% assign app_blocks = section.blocks | where: "type", "@app" %}
17
17
  {% for block in app_blocks %}
18
- {% if block.type == '@app' and block.id == '${appBlockId}' %}
18
+ {% if block.type == '@app' and block.id contains '${appBlockId}' %}
19
19
  {% render block %}
20
20
  {% endif %}
21
21
  {% endfor %}
@@ -41,7 +41,7 @@ const getLiquidForAppBlock = (appBlockId, align, cssClass)=>{
41
41
  }}"
42
42
  >
43
43
  {% for block in app_blocks %}
44
- {% if block.type == '@app' and block.id == '${appBlockId}' %}
44
+ {% if block.type == '@app' and block.id contains '${appBlockId}' %}
45
45
  {% render block %}
46
46
  {% endif %}
47
47
  {% endfor %}
@@ -288,6 +288,7 @@ type CarouselStyles = {
288
288
  align?: ObjectDevices<AlignProp | Property.AlignItems>;
289
289
  sizeSetting?: ObjectDevices<SizeSettingGlobal>;
290
290
  playSpeed?: number;
291
+ itemPadding?: ObjectDevices<SizeSettingGlobal>;
291
292
  };
292
293
  type CarouselProps = BasePropsWrap<CarouselSettings, CarouselStyles> & {
293
294
  children?: React.ReactNode;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gem-sdk/components",
3
- "version": "2.1.1",
3
+ "version": "2.1.4",
4
4
  "license": "MIT",
5
5
  "sideEffects": false,
6
6
  "main": "dist/cjs/index.js",
@@ -21,7 +21,7 @@
21
21
  "format": "prettier --write \"./src/**/*.{ts,tsx}\""
22
22
  },
23
23
  "devDependencies": {
24
- "@gem-sdk/core": "2.1.0",
24
+ "@gem-sdk/core": "2.1.4",
25
25
  "@gem-sdk/styles": "2.1.0",
26
26
  "@types/react-transition-group": "^4.4.5"
27
27
  },