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.
@@ -3,6 +3,7 @@ interface Props {
3
3
  className?: string;
4
4
  children?: React.ReactNode;
5
5
  loading?: boolean;
6
+ disabled?: boolean;
6
7
  }
7
8
  export declare const FormButton: React.FC<Props>;
8
9
  export {};
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"};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "revdev-components",
3
- "version": "0.113.0",
3
+ "version": "0.114.0",
4
4
  "main": "build/index.js",
5
5
  "module": "build/index.esm.js",
6
6
  "scripts": {