ywana-core8 0.0.656 → 0.0.658
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 +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.modern.js +2 -2
- package/dist/index.modern.js.map +1 -1
- package/dist/index.umd.js +2 -2
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/incubator/wizard.js +1 -1
package/dist/index.modern.js
CHANGED
@@ -9688,11 +9688,11 @@ var Wizard = function Wizard(props) {
|
|
9688
9688
|
action: prev
|
9689
9689
|
}), current < steps.length - 1 ? /*#__PURE__*/React.createElement(Button, {
|
9690
9690
|
label: "Siguiente",
|
9691
|
-
disabled: stepRef.current.isValid(),
|
9691
|
+
disabled: stepRef.current && stepRef.current.isValid(),
|
9692
9692
|
action: next
|
9693
9693
|
}) : /*#__PURE__*/React.createElement(Button, {
|
9694
9694
|
label: "Finalizar",
|
9695
|
-
disabled: stepRef.current.isValid(),
|
9695
|
+
disabled: stepRef.current && stepRef.current.isValid(),
|
9696
9696
|
action: finish,
|
9697
9697
|
raised: true
|
9698
9698
|
})));
|