@undp/carbon-library 1.0.292-CARBON-287.0 → 1.0.292-CARBON-425.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/dist/esm/index.js CHANGED
@@ -6828,7 +6828,9 @@ var AddNewCompanyComponent = function (props) {
6828
6828
  }); },
6829
6829
  },
6830
6830
  ] },
6831
- React.createElement(InputNumber, { style: { width: "100%" }, size: "large", min: 1, max: 99, formatter: function (value) { return "".concat(Math.round(value), "%"); }, parser: function (value) { return value.replace("%", ""); } })))))))),
6831
+ React.createElement(InputNumber, { style: { width: "100%" }, size: "large", min: 0, max: 99, formatter: function (value) {
6832
+ return "".concat(value ? Math.round(value) : "", "%");
6833
+ }, parser: function (value) { return value.replace("%", ""); } })))))))),
6832
6834
  React.createElement("div", { className: "steps-actions" }, isUpdate ? (React.createElement(Row, null,
6833
6835
  React.createElement(Button, { loading: loading, onClick: onCancel }, t("addCompany:cancel")),
6834
6836
  React.createElement(Button, { loading: loading, className: "mg-left-1", type: "primary", htmlType: "submit" }, t("addCompany:submit")))) : (current === 0 && (React.createElement(Button, { type: "primary", htmlType: "submit" }, t("addCompany:next")))))))));