@gem-sdk/pages 1.12.0-next.34 → 1.12.0-next.37
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.
|
@@ -29,11 +29,10 @@ const ImageToLayout = ({ editorImageToLayout })=>{
|
|
|
29
29
|
return /*#__PURE__*/ jsxRuntime.jsx(jsxRuntime.Fragment, {
|
|
30
30
|
children: /*#__PURE__*/ jsxRuntime.jsxs("div", {
|
|
31
31
|
id: "gp-img-to-layout-wrapper",
|
|
32
|
-
className: core.cls(`sf-add-section-placeholder tablet:!px-0 gps-base-font-family hidden flex-1 flex-col items-center justify-center bg-[#F4F4F4] p-[16px]
|
|
33
|
-
hidden: !editorImageToLayout
|
|
34
|
-
}),
|
|
32
|
+
className: core.cls(`sf-add-section-placeholder tablet:!px-0 gps-base-font-family hidden flex-1 flex-col items-center justify-center bg-[#F4F4F4] p-[16px]`),
|
|
35
33
|
style: {
|
|
36
|
-
height: `calc(100vh - ${offset}px)
|
|
34
|
+
height: `calc(100vh - ${offset}px)`,
|
|
35
|
+
display: editorImageToLayout ? 'flex' : 'none'
|
|
37
36
|
},
|
|
38
37
|
children: [
|
|
39
38
|
/*#__PURE__*/ jsxRuntime.jsxs("div", {
|
|
@@ -25,11 +25,10 @@ const ImageToLayout = ({ editorImageToLayout })=>{
|
|
|
25
25
|
return /*#__PURE__*/ jsx(Fragment, {
|
|
26
26
|
children: /*#__PURE__*/ jsxs("div", {
|
|
27
27
|
id: "gp-img-to-layout-wrapper",
|
|
28
|
-
className: cls(`sf-add-section-placeholder tablet:!px-0 gps-base-font-family hidden flex-1 flex-col items-center justify-center bg-[#F4F4F4] p-[16px]
|
|
29
|
-
hidden: !editorImageToLayout
|
|
30
|
-
}),
|
|
28
|
+
className: cls(`sf-add-section-placeholder tablet:!px-0 gps-base-font-family hidden flex-1 flex-col items-center justify-center bg-[#F4F4F4] p-[16px]`),
|
|
31
29
|
style: {
|
|
32
|
-
height: `calc(100vh - ${offset}px)
|
|
30
|
+
height: `calc(100vh - ${offset}px)`,
|
|
31
|
+
display: editorImageToLayout ? 'flex' : 'none'
|
|
33
32
|
},
|
|
34
33
|
children: [
|
|
35
34
|
/*#__PURE__*/ jsxs("div", {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gem-sdk/pages",
|
|
3
|
-
"version": "1.12.0-next.
|
|
3
|
+
"version": "1.12.0-next.37",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"main": "dist/cjs/index.js",
|
|
@@ -25,14 +25,13 @@
|
|
|
25
25
|
"next-seo": "^6.0.0"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
|
-
"@gem-sdk/core": "1.12.0-next.
|
|
28
|
+
"@gem-sdk/core": "1.12.0-next.36",
|
|
29
29
|
"@gem-sdk/plugin-cookie-bar": "*",
|
|
30
30
|
"@gem-sdk/plugin-quick-view": "*",
|
|
31
31
|
"@gem-sdk/plugin-sticky-add-to-cart": "*"
|
|
32
32
|
},
|
|
33
33
|
"peerDependencies": {
|
|
34
|
-
"next": ">=13"
|
|
35
|
-
"next-lazy-hydrate": ">=1.1.0"
|
|
34
|
+
"next": ">=13"
|
|
36
35
|
},
|
|
37
36
|
"module": "dist/esm/index.js",
|
|
38
37
|
"types": "dist/types/index.d.ts",
|