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.modern.js
CHANGED
@@ -9670,7 +9670,7 @@ var Wizard = function Wizard(props) {
|
|
9670
9670
|
current = _useState2$ === void 0 ? 0 : _useState2$,
|
9671
9671
|
setCurrent = _useState2[1];
|
9672
9672
|
|
9673
|
-
var _useState3 = useState(
|
9673
|
+
var _useState3 = useState(false),
|
9674
9674
|
valid = _useState3[0],
|
9675
9675
|
setValid = _useState3[1];
|
9676
9676
|
|
@@ -9690,13 +9690,14 @@ var Wizard = function Wizard(props) {
|
|
9690
9690
|
onChange: validate
|
9691
9691
|
});
|
9692
9692
|
var nextButton = current < steps.length - 1 ? /*#__PURE__*/React.createElement(Button, {
|
9693
|
-
label: "
|
9693
|
+
label: "Siguiente",
|
9694
9694
|
action: next,
|
9695
9695
|
raised: true,
|
9696
9696
|
disabled: !valid
|
9697
9697
|
}) : /*#__PURE__*/React.createElement(Button, {
|
9698
9698
|
label: "Finish",
|
9699
|
-
action: finish
|
9699
|
+
action: finish,
|
9700
|
+
disabled: !valid
|
9700
9701
|
});
|
9701
9702
|
var prevButton = current > 0 ? /*#__PURE__*/React.createElement(Button, {
|
9702
9703
|
label: "Atr\xE1s",
|