@gem-sdk/pages 1.56.0-staging.17 → 1.56.0-staging.24
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/cjs/components/builder/InteractionSelectOnPageHeader.js +1 -1
- package/dist/cjs/components/image-to-layout/DropElement.js +2 -0
- package/dist/esm/components/builder/InteractionSelectOnPageHeader.js +1 -1
- package/dist/esm/components/image-to-layout/DropElement.js +2 -0
- package/package.json +2 -2
|
@@ -19,7 +19,7 @@ const InteractionSelectOnPageHeader = ()=>{
|
|
|
19
19
|
return /*#__PURE__*/ jsxRuntime.jsxs(jsxRuntime.Fragment, {
|
|
20
20
|
children: [
|
|
21
21
|
/*#__PURE__*/ jsxRuntime.jsxs("header", {
|
|
22
|
-
className: "gp-flex gp-justify-between gp-items-center gp-h-10 gp-fixed gp-top-0 gp-left-0 gp-w-full gp-z-100 gp-bg-black gp-text-white",
|
|
22
|
+
className: "gp-flex gp-justify-between gp-items-center gp-h-10 gp-fixed gp-top-0 gp-left-0 gp-w-full gp-z-100 gp-bg-black gp-text-white interaction-select-mode-header",
|
|
23
23
|
children: [
|
|
24
24
|
/*#__PURE__*/ jsxRuntime.jsx("div", {
|
|
25
25
|
className: "gp-ml-4 gp-text-xs gp-mt-1",
|
|
@@ -106,11 +106,13 @@ const DropElement = ()=>{
|
|
|
106
106
|
className: "gp-flex gp-w-[291px] gp-justify-between",
|
|
107
107
|
children: [
|
|
108
108
|
/*#__PURE__*/ jsxRuntime.jsx("button", {
|
|
109
|
+
"data-button-add-section": true,
|
|
109
110
|
onClick: ()=>dispatchEventBuildWithSectionActiveTab(true),
|
|
110
111
|
className: "gp-flex gp-h-[40px] gp-w-[136px] gp-items-center gp-font-medium gp-justify-center gp-rounded-[8px] gp-bg-[#1C1C1C] gp-text-[14px] gp-text-white hover:gp-bg-[#3B3B3B]",
|
|
111
112
|
children: "Add sections"
|
|
112
113
|
}),
|
|
113
114
|
/*#__PURE__*/ jsxRuntime.jsx("button", {
|
|
115
|
+
"data-button-add-elements": true,
|
|
114
116
|
onClick: ()=>dispatchEventBuildWithSectionActiveTab(false),
|
|
115
117
|
className: "gp-flex gp-h-[40px] gp-w-[136px] gp-items-center gp-font-medium gp-justify-center gp-rounded-[8px] gp-bg-[#f4f4f4] gp-text-[14px] gp-text-[#212121] hover:gp-bg-[#E2E2E2]",
|
|
116
118
|
children: "Add elements"
|
|
@@ -15,7 +15,7 @@ const InteractionSelectOnPageHeader = ()=>{
|
|
|
15
15
|
return /*#__PURE__*/ jsxs(Fragment, {
|
|
16
16
|
children: [
|
|
17
17
|
/*#__PURE__*/ jsxs("header", {
|
|
18
|
-
className: "gp-flex gp-justify-between gp-items-center gp-h-10 gp-fixed gp-top-0 gp-left-0 gp-w-full gp-z-100 gp-bg-black gp-text-white",
|
|
18
|
+
className: "gp-flex gp-justify-between gp-items-center gp-h-10 gp-fixed gp-top-0 gp-left-0 gp-w-full gp-z-100 gp-bg-black gp-text-white interaction-select-mode-header",
|
|
19
19
|
children: [
|
|
20
20
|
/*#__PURE__*/ jsx("div", {
|
|
21
21
|
className: "gp-ml-4 gp-text-xs gp-mt-1",
|
|
@@ -104,11 +104,13 @@ const DropElement = ()=>{
|
|
|
104
104
|
className: "gp-flex gp-w-[291px] gp-justify-between",
|
|
105
105
|
children: [
|
|
106
106
|
/*#__PURE__*/ jsx("button", {
|
|
107
|
+
"data-button-add-section": true,
|
|
107
108
|
onClick: ()=>dispatchEventBuildWithSectionActiveTab(true),
|
|
108
109
|
className: "gp-flex gp-h-[40px] gp-w-[136px] gp-items-center gp-font-medium gp-justify-center gp-rounded-[8px] gp-bg-[#1C1C1C] gp-text-[14px] gp-text-white hover:gp-bg-[#3B3B3B]",
|
|
109
110
|
children: "Add sections"
|
|
110
111
|
}),
|
|
111
112
|
/*#__PURE__*/ jsx("button", {
|
|
113
|
+
"data-button-add-elements": true,
|
|
112
114
|
onClick: ()=>dispatchEventBuildWithSectionActiveTab(false),
|
|
113
115
|
className: "gp-flex gp-h-[40px] gp-w-[136px] gp-items-center gp-font-medium gp-justify-center gp-rounded-[8px] gp-bg-[#f4f4f4] gp-text-[14px] gp-text-[#212121] hover:gp-bg-[#E2E2E2]",
|
|
114
116
|
children: "Add elements"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gem-sdk/pages",
|
|
3
|
-
"version": "1.56.0-staging.
|
|
3
|
+
"version": "1.56.0-staging.24",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"main": "dist/cjs/index.js",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"next": "latest"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
|
-
"@gem-sdk/core": "1.56.0-staging.
|
|
29
|
+
"@gem-sdk/core": "1.56.0-staging.24",
|
|
30
30
|
"@gem-sdk/plugin-cookie-bar": "1.56.0-staging.0",
|
|
31
31
|
"@gem-sdk/plugin-quick-view": "1.56.0-staging.0",
|
|
32
32
|
"@gem-sdk/plugin-sticky-add-to-cart": "1.56.0-staging.0"
|