ywana-core8 0.0.664 → 0.0.665
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.cjs +4 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.modern.js +4 -3
- package/dist/index.modern.js.map +1 -1
- package/dist/index.umd.js +4 -3
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/incubator/wizard.js +2 -2
package/dist/index.umd.js
CHANGED
@@ -9672,7 +9672,7 @@
|
|
9672
9672
|
current = _useState2$ === void 0 ? 0 : _useState2$,
|
9673
9673
|
setCurrent = _useState2[1];
|
9674
9674
|
|
9675
|
-
var _useState3 = React.useState(
|
9675
|
+
var _useState3 = React.useState(false),
|
9676
9676
|
valid = _useState3[0],
|
9677
9677
|
setValid = _useState3[1];
|
9678
9678
|
|
@@ -9692,13 +9692,14 @@
|
|
9692
9692
|
onChange: validate
|
9693
9693
|
});
|
9694
9694
|
var nextButton = current < steps.length - 1 ? /*#__PURE__*/React__default["default"].createElement(Button, {
|
9695
|
-
label: "
|
9695
|
+
label: "Siguiente",
|
9696
9696
|
action: next,
|
9697
9697
|
raised: true,
|
9698
9698
|
disabled: !valid
|
9699
9699
|
}) : /*#__PURE__*/React__default["default"].createElement(Button, {
|
9700
9700
|
label: "Finish",
|
9701
|
-
action: finish
|
9701
|
+
action: finish,
|
9702
|
+
disabled: !valid
|
9702
9703
|
});
|
9703
9704
|
var prevButton = current > 0 ? /*#__PURE__*/React__default["default"].createElement(Button, {
|
9704
9705
|
label: "Atr\xE1s",
|