@gem-sdk/core 2.0.0-dev.157 → 2.0.0-dev.160

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.
@@ -32,6 +32,7 @@ const disableWrap = [
32
32
  'FormTextarea',
33
33
  'ProductPrice',
34
34
  'Product',
35
+ 'ProductList',
35
36
  'ProductImages',
36
37
  'ProductImagesV2',
37
38
  'PostPurchaseProductImages',
@@ -136,7 +136,8 @@ function composeAdvanceStyle(data, tag, pageType) {
136
136
  'ProductBadge',
137
137
  'ProductViewMore',
138
138
  'ProductButton',
139
- 'DynamicCheckout'
139
+ 'DynamicCheckout',
140
+ 'ProductList'
140
141
  ];
141
142
  const boostElements = [
142
143
  'Icon',
@@ -30,6 +30,7 @@ const disableWrap = [
30
30
  'FormTextarea',
31
31
  'ProductPrice',
32
32
  'Product',
33
+ 'ProductList',
33
34
  'ProductImages',
34
35
  'ProductImagesV2',
35
36
  'PostPurchaseProductImages',
@@ -134,7 +134,8 @@ function composeAdvanceStyle(data, tag, pageType) {
134
134
  'ProductBadge',
135
135
  'ProductViewMore',
136
136
  'ProductButton',
137
- 'DynamicCheckout'
137
+ 'DynamicCheckout',
138
+ 'ProductList'
138
139
  ];
139
140
  const boostElements = [
140
141
  'Icon',
@@ -8017,7 +8017,7 @@ type BackgroundControlType<T> = SharedControlType<T> & {
8017
8017
  value?: Background;
8018
8018
  };
8019
8019
  type Background = {
8020
- type: 'color' | 'image' | 'video';
8020
+ type?: 'color' | 'image' | 'video';
8021
8021
  color?: string;
8022
8022
  image?: {
8023
8023
  src?: string;
@@ -8037,7 +8037,7 @@ type Background = {
8037
8037
  loop?: boolean;
8038
8038
  lazyLoad?: boolean;
8039
8039
  };
8040
- type BgSize$2 = 'cover' | 'contain';
8040
+ type BgSize$2 = 'cover' | 'contain' | '100% 100%';
8041
8041
  type BgRepeat$2 = 'repeat' | 'repeat-x' | 'repeat-y' | 'no-repeat';
8042
8042
  type BgPosition$2 = {
8043
8043
  x: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gem-sdk/core",
3
- "version": "2.0.0-dev.157",
3
+ "version": "2.0.0-dev.160",
4
4
  "license": "MIT",
5
5
  "sideEffects": false,
6
6
  "main": "dist/cjs/index.js",