@gem-sdk/core 1.25.5 → 1.25.18

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.
@@ -20,6 +20,7 @@ const ComponentWrapper = ({ children, ...props })=>{
20
20
  advanced: advanced
21
21
  }),
22
22
  /*#__PURE__*/ jsxRuntime.jsx(children.type, {
23
+ className: advanced?.cssClass,
23
24
  ...children.props,
24
25
  style,
25
26
  advanced
@@ -35,7 +36,7 @@ const ComponentWrapper = ({ children, ...props })=>{
35
36
  }),
36
37
  /*#__PURE__*/ jsxRuntime.jsx("div", {
37
38
  style: style,
38
- className: `${props.uid}`,
39
+ className: `${props.uid} ${advanced?.cssClass}`,
39
40
  children: children
40
41
  })
41
42
  ]
@@ -106,6 +106,7 @@ function Spacing(props) {
106
106
  children: props.tag !== 'Section' && /*#__PURE__*/ jsxRuntime.jsx("div", {
107
107
  "data-spacing": true,
108
108
  "data-spacing-theme-section": isThemeSectionEditor,
109
+ className: "absolute w-full bottom-0",
109
110
  children: /*#__PURE__*/ jsxRuntime.jsxs("div", {
110
111
  "data-spacing-margin-bottom": true,
111
112
  children: [
@@ -16,6 +16,7 @@ const ComponentWrapper = ({ children, ...props })=>{
16
16
  advanced: advanced
17
17
  }),
18
18
  /*#__PURE__*/ jsx(children.type, {
19
+ className: advanced?.cssClass,
19
20
  ...children.props,
20
21
  style,
21
22
  advanced
@@ -31,7 +32,7 @@ const ComponentWrapper = ({ children, ...props })=>{
31
32
  }),
32
33
  /*#__PURE__*/ jsx("div", {
33
34
  style: style,
34
- className: `${props.uid}`,
35
+ className: `${props.uid} ${advanced?.cssClass}`,
35
36
  children: children
36
37
  })
37
38
  ]
@@ -102,6 +102,7 @@ function Spacing(props) {
102
102
  children: props.tag !== 'Section' && /*#__PURE__*/ jsx("div", {
103
103
  "data-spacing": true,
104
104
  "data-spacing-theme-section": isThemeSectionEditor,
105
+ className: "absolute w-full bottom-0",
105
106
  children: /*#__PURE__*/ jsxs("div", {
106
107
  "data-spacing-margin-bottom": true,
107
108
  children: [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gem-sdk/core",
3
- "version": "1.25.5",
3
+ "version": "1.25.18",
4
4
  "license": "MIT",
5
5
  "sideEffects": false,
6
6
  "main": "dist/cjs/index.js",