@gem-sdk/core 8.0.0-dev.41 → 8.0.0-dev.45
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.
- package/dist/types/index.d.ts +6 -0
- package/package.json +3 -3
package/dist/types/index.d.ts
CHANGED
|
@@ -36540,6 +36540,11 @@ type Background = {
|
|
|
36540
36540
|
videoType?: 'youtube' | 'html5';
|
|
36541
36541
|
loop?: boolean;
|
|
36542
36542
|
lazyLoad?: boolean;
|
|
36543
|
+
ratio?: string;
|
|
36544
|
+
videoCustomRatio?: {
|
|
36545
|
+
width?: string | number;
|
|
36546
|
+
height?: string | number;
|
|
36547
|
+
};
|
|
36543
36548
|
};
|
|
36544
36549
|
type BgSize = 'cover' | 'contain' | '100% 100%';
|
|
36545
36550
|
type BgRepeat$2 = 'repeat' | 'repeat-x' | 'repeat-y' | 'no-repeat';
|
|
@@ -37308,6 +37313,7 @@ type BackgroundMediaControlType<T> = SharedControlType<T> & {
|
|
|
37308
37313
|
type: 'background-media';
|
|
37309
37314
|
value?: BackgroundMedia;
|
|
37310
37315
|
showVideo?: boolean;
|
|
37316
|
+
showRatioVideo?: boolean;
|
|
37311
37317
|
showDeviceControl?: boolean;
|
|
37312
37318
|
hideImage?: boolean;
|
|
37313
37319
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gem-sdk/core",
|
|
3
|
-
"version": "8.0.0-dev.
|
|
3
|
+
"version": "8.0.0-dev.45",
|
|
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": "
|
|
31
|
-
"@gem-sdk/styles": "
|
|
30
|
+
"@gem-sdk/adapter-shopify": "8.0.0-dev.43",
|
|
31
|
+
"@gem-sdk/styles": "8.0.0-dev.43",
|
|
32
32
|
"@types/classnames": "^2.3.1"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|