@descope/flow-components 2.0.65 → 2.0.66

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/index.cjs.js CHANGED
@@ -128,7 +128,7 @@ const Container = React__default.default.forwardRef(({ background, justify, padd
128
128
  'st-justify-content': justifyContent[justify],
129
129
  'st-background-color': background,
130
130
  'st-host-width': width,
131
- 'st-gap': spaceBetween && `${Number.parseInt(spaceBetween, 10) / 4}rem`
131
+ 'st-gap': spaceBetween && `${Number.parseFloat(spaceBetween) / 4}rem`
132
132
  };
133
133
  // eslint-disable-next-line react/jsx-props-no-spreading
134
134
  return React__default.default.createElement("descope-container", { ...mergedProps, ref: ref });
package/dist/index.esm.js CHANGED
@@ -122,7 +122,7 @@ const Container = React.forwardRef(({ background, justify, paddingX = '0', paddi
122
122
  'st-justify-content': justifyContent[justify],
123
123
  'st-background-color': background,
124
124
  'st-host-width': width,
125
- 'st-gap': spaceBetween && `${Number.parseInt(spaceBetween, 10) / 4}rem`
125
+ 'st-gap': spaceBetween && `${Number.parseFloat(spaceBetween) / 4}rem`
126
126
  };
127
127
  // eslint-disable-next-line react/jsx-props-no-spreading
128
128
  return React.createElement("descope-container", { ...mergedProps, ref: ref });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@descope/flow-components",
3
- "version": "2.0.65",
3
+ "version": "2.0.66",
4
4
  "description": "",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/index.esm.js",