jrs-react 1.2.38 → 1.2.39
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
|
@@ -5705,8 +5705,6 @@ styled.div`
|
|
|
5705
5705
|
`;
|
|
5706
5706
|
|
|
5707
5707
|
const StyleJRFields = styled.main`
|
|
5708
|
-
|
|
5709
|
-
|
|
5710
5708
|
--column-bd-color:#cccccc;
|
|
5711
5709
|
--column-b-color:unset;
|
|
5712
5710
|
--column-b-hover-color:#ffffff;
|
|
@@ -6139,7 +6137,10 @@ class JRFields extends JRWindow {
|
|
|
6139
6137
|
renderMe() {
|
|
6140
6138
|
return /*#__PURE__*/React__default.createElement(StyleJRFields, {
|
|
6141
6139
|
className: `jr-fields`,
|
|
6142
|
-
style:
|
|
6140
|
+
style: {
|
|
6141
|
+
...this.props.typeStyle,
|
|
6142
|
+
...this.props.fieldsStyle
|
|
6143
|
+
}
|
|
6143
6144
|
}, /*#__PURE__*/React__default.createElement(StyledGrid, {
|
|
6144
6145
|
cols: this.props.cols,
|
|
6145
6146
|
style: this.props.gridStyle,
|
package/build/index.js
CHANGED
|
@@ -5732,8 +5732,6 @@ styled__default["default"].div`
|
|
|
5732
5732
|
`;
|
|
5733
5733
|
|
|
5734
5734
|
const StyleJRFields = styled__default["default"].main`
|
|
5735
|
-
|
|
5736
|
-
|
|
5737
5735
|
--column-bd-color:#cccccc;
|
|
5738
5736
|
--column-b-color:unset;
|
|
5739
5737
|
--column-b-hover-color:#ffffff;
|
|
@@ -6166,7 +6164,10 @@ class JRFields extends JRWindow {
|
|
|
6166
6164
|
renderMe() {
|
|
6167
6165
|
return /*#__PURE__*/React__default["default"].createElement(StyleJRFields, {
|
|
6168
6166
|
className: `jr-fields`,
|
|
6169
|
-
style:
|
|
6167
|
+
style: {
|
|
6168
|
+
...this.props.typeStyle,
|
|
6169
|
+
...this.props.fieldsStyle
|
|
6170
|
+
}
|
|
6170
6171
|
}, /*#__PURE__*/React__default["default"].createElement(StyledGrid, {
|
|
6171
6172
|
cols: this.props.cols,
|
|
6172
6173
|
style: this.props.gridStyle,
|
package/package.json
CHANGED
|
@@ -450,7 +450,7 @@ export default class JRFields extends JRWindow {
|
|
|
450
450
|
}
|
|
451
451
|
|
|
452
452
|
renderMe(){
|
|
453
|
-
return <StyleJRFields className={`jr-fields`} style={this.props.typeStyle}>
|
|
453
|
+
return <StyleJRFields className={`jr-fields`} style={{...this.props.typeStyle,...this.props.fieldsStyle}}>
|
|
454
454
|
<StyledGrid cols={this.props.cols} style={this.props.gridStyle} className={'jr-grid'} $gap={this.props.gap}>
|
|
455
455
|
{
|
|
456
456
|
this.createColumns(
|