@gem-sdk/core 1.33.4 → 1.33.5

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.
@@ -56,7 +56,7 @@ const getBgImageByDevice = (background, device, options)=>{
56
56
  let newBackupFilekey = backupFileKey;
57
57
  const shopifyHandleName = imageByDevice?.match(// eslint-disable-next-line
58
58
  /\/files\/([^\/]+\.(jpg|jpeg|gif|png|webp|svg))$/)?.[1];
59
- if (shopifyHandleName && shopifyHandleName != backupFileKey) {
59
+ if (backupFileKey && shopifyHandleName && shopifyHandleName != backupFileKey) {
60
60
  newBackupFilekey = shopifyHandleName;
61
61
  }
62
62
  if (storage === 'FILE_CONTENT') {
@@ -54,7 +54,7 @@ const getBgImageByDevice = (background, device, options)=>{
54
54
  let newBackupFilekey = backupFileKey;
55
55
  const shopifyHandleName = imageByDevice?.match(// eslint-disable-next-line
56
56
  /\/files\/([^\/]+\.(jpg|jpeg|gif|png|webp|svg))$/)?.[1];
57
- if (shopifyHandleName && shopifyHandleName != backupFileKey) {
57
+ if (backupFileKey && shopifyHandleName && shopifyHandleName != backupFileKey) {
58
58
  newBackupFilekey = shopifyHandleName;
59
59
  }
60
60
  if (storage === 'FILE_CONTENT') {
@@ -1208,6 +1208,7 @@ type ComponentSetting<P extends BaseProps> = {
1208
1208
  flowTag?: string[];
1209
1209
  flowPage?: string;
1210
1210
  notAppendTags?: string[];
1211
+ notAppendLeftRight?: boolean;
1211
1212
  };
1212
1213
  sideBar?: {
1213
1214
  hide?: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gem-sdk/core",
3
- "version": "1.33.4",
3
+ "version": "1.33.5",
4
4
  "license": "MIT",
5
5
  "sideEffects": false,
6
6
  "main": "dist/cjs/index.js",