jrs-react 1.2.32 → 1.2.33

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/build/index.es.js CHANGED
@@ -5837,9 +5837,9 @@ class JRFields extends JRWindow {
5837
5837
  const value = name ? parentValue?.[name] : parentValue;
5838
5838
  const gap = column.gap ?? this.props.gap;
5839
5839
  const label = column.label;
5840
- const _style = flexType({
5841
- ...style
5842
- }, this, {}, {});
5840
+ const _style = {
5841
+ ...flexType(style, this, {}, {})
5842
+ };
5843
5843
  const _columnStyle = flexType(columnStyle, this, {}, {});
5844
5844
  if (colSpan) _style.gridColumn = `span ${colSpan}`;
5845
5845
  if (rowSpan) _style.gridRow = `span ${rowSpan}`;
package/build/index.js CHANGED
@@ -5864,9 +5864,9 @@ class JRFields extends JRWindow {
5864
5864
  const value = name ? parentValue?.[name] : parentValue;
5865
5865
  const gap = column.gap ?? this.props.gap;
5866
5866
  const label = column.label;
5867
- const _style = flexType({
5868
- ...style
5869
- }, this, {}, {});
5867
+ const _style = {
5868
+ ...flexType(style, this, {}, {})
5869
+ };
5870
5870
  const _columnStyle = flexType(columnStyle, this, {}, {});
5871
5871
  if (colSpan) _style.gridColumn = `span ${colSpan}`;
5872
5872
  if (rowSpan) _style.gridRow = `span ${rowSpan}`;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jrs-react",
3
- "version": "1.2.32",
3
+ "version": "1.2.33",
4
4
  "description": "",
5
5
  "main": "build/index.js",
6
6
  "module": "build/index.es.js",
@@ -318,7 +318,7 @@ export default class JRFields extends JRWindow {
318
318
  const gap=column.gap??this.props.gap
319
319
  const label=column.label
320
320
 
321
- const _style=flexType({...style},this,{},{})
321
+ const _style={...flexType(style,this,{},{})}
322
322
  const _columnStyle=flexType(columnStyle,this,{},{})
323
323
  if (colSpan) _style.gridColumn = `span ${colSpan}`
324
324
  if (rowSpan) _style.gridRow = `span ${rowSpan}`