revdev-components 0.113.0 → 0.114.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
|
@@ -4973,9 +4973,9 @@ var AutoCompleteField = function (props) {
|
|
|
4973
4973
|
var s$n = {"root":"index-module_root__9GQDU"};
|
|
4974
4974
|
|
|
4975
4975
|
var FormButton = function (_a) {
|
|
4976
|
-
var className = _a.className, _b = _a.children, children = _b === void 0 ? "Save" : _b, loading = _a.loading;
|
|
4976
|
+
var className = _a.className, _b = _a.children, children = _b === void 0 ? "Save" : _b, loading = _a.loading, disabled = _a.disabled;
|
|
4977
4977
|
return (React.createElement("div", { className: classNames(s$n.root, className) },
|
|
4978
|
-
React.createElement(antd.Button, { htmlType: "submit", type: "primary", loading: loading }, children)));
|
|
4978
|
+
React.createElement(antd.Button, { htmlType: "submit", type: "primary", loading: loading, disabled: disabled }, children)));
|
|
4979
4979
|
};
|
|
4980
4980
|
|
|
4981
4981
|
var s$m = {"root":"index-module_root__C05Ty"};
|