wargerm 0.7.70 → 0.7.71
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.esm.js +3 -3
- package/dist/index.js +3 -3
- package/package.json +1 -1
package/dist/index.esm.js
CHANGED
@@ -4096,10 +4096,10 @@ var WForm = function WForm(props, ref) {
|
|
4096
4096
|
};
|
4097
4097
|
}, []);
|
4098
4098
|
return /*#__PURE__*/React.createElement(Form, _objectSpread2({
|
4099
|
-
style: {
|
4099
|
+
style: _objectSpread2({
|
4100
4100
|
width: '100%'
|
4101
|
-
},
|
4102
|
-
className: "mt10",
|
4101
|
+
}, style || {}),
|
4102
|
+
className: "mt10 ".concat(className || ''),
|
4103
4103
|
onFinish: function onFinish(value) {
|
4104
4104
|
return handleSearch();
|
4105
4105
|
},
|
package/dist/index.js
CHANGED
@@ -4140,10 +4140,10 @@ var WForm = function WForm(props, ref) {
|
|
4140
4140
|
};
|
4141
4141
|
}, []);
|
4142
4142
|
return /*#__PURE__*/React__default['default'].createElement(antd.Form, _objectSpread2({
|
4143
|
-
style: {
|
4143
|
+
style: _objectSpread2({
|
4144
4144
|
width: '100%'
|
4145
|
-
},
|
4146
|
-
className: "mt10",
|
4145
|
+
}, style || {}),
|
4146
|
+
className: "mt10 ".concat(className || ''),
|
4147
4147
|
onFinish: function onFinish(value) {
|
4148
4148
|
return handleSearch();
|
4149
4149
|
},
|