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.cjs
CHANGED
@@ -9678,7 +9678,7 @@ var Wizard = function Wizard(props) {
|
|
9678
9678
|
current = _useState2$ === void 0 ? 0 : _useState2$,
|
9679
9679
|
setCurrent = _useState2[1];
|
9680
9680
|
|
9681
|
-
var _useState3 = React.useState(
|
9681
|
+
var _useState3 = React.useState(false),
|
9682
9682
|
valid = _useState3[0],
|
9683
9683
|
setValid = _useState3[1];
|
9684
9684
|
|
@@ -9698,13 +9698,14 @@ var Wizard = function Wizard(props) {
|
|
9698
9698
|
onChange: validate
|
9699
9699
|
});
|
9700
9700
|
var nextButton = current < steps.length - 1 ? /*#__PURE__*/React__default["default"].createElement(Button, {
|
9701
|
-
label: "
|
9701
|
+
label: "Siguiente",
|
9702
9702
|
action: next,
|
9703
9703
|
raised: true,
|
9704
9704
|
disabled: !valid
|
9705
9705
|
}) : /*#__PURE__*/React__default["default"].createElement(Button, {
|
9706
9706
|
label: "Finish",
|
9707
|
-
action: finish
|
9707
|
+
action: finish,
|
9708
|
+
disabled: !valid
|
9708
9709
|
});
|
9709
9710
|
var prevButton = current > 0 ? /*#__PURE__*/React__default["default"].createElement(Button, {
|
9710
9711
|
label: "Atr\xE1s",
|