revdev-components 0.26.0 → 0.27.0
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.js
CHANGED
|
@@ -4764,9 +4764,9 @@ var DivisionRow = function (_a) {
|
|
|
4764
4764
|
var s$c = {"root":"index-module_root__xH-TN"};
|
|
4765
4765
|
|
|
4766
4766
|
var FormButton = function (_a) {
|
|
4767
|
-
var className = _a.className, _b = _a.submitText, submitText = _b === void 0 ? "Save" : _b;
|
|
4767
|
+
var className = _a.className, _b = _a.submitText, submitText = _b === void 0 ? "Save" : _b, loading = _a.loading;
|
|
4768
4768
|
return (React.createElement("div", { className: classNames(s$c.root, className) },
|
|
4769
|
-
React.createElement(antd.Button, { htmlType: "submit", type: "primary" }, submitText)));
|
|
4769
|
+
React.createElement(antd.Button, { htmlType: "submit", type: "primary", loading: loading }, submitText)));
|
|
4770
4770
|
};
|
|
4771
4771
|
|
|
4772
4772
|
var s$b = {"root":"index-module_root__Xj8zb"};
|