ywana-core8 0.0.656 → 0.0.657
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.umd.js
CHANGED
@@ -9690,11 +9690,11 @@
|
|
9690
9690
|
action: prev
|
9691
9691
|
}), current < steps.length - 1 ? /*#__PURE__*/React__default["default"].createElement(Button, {
|
9692
9692
|
label: "Siguiente",
|
9693
|
-
disabled: stepRef.current.isValid(),
|
9693
|
+
disabled: stepRef && stepRef.current.isValid(),
|
9694
9694
|
action: next
|
9695
9695
|
}) : /*#__PURE__*/React__default["default"].createElement(Button, {
|
9696
9696
|
label: "Finalizar",
|
9697
|
-
disabled: stepRef.current.isValid(),
|
9697
|
+
disabled: stepRef && stepRef.current.isValid(),
|
9698
9698
|
action: finish,
|
9699
9699
|
raised: true
|
9700
9700
|
})));
|