ywana-core8 0.0.657 → 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.cjs
CHANGED
@@ -9696,11 +9696,11 @@ var Wizard = function Wizard(props) {
|
|
9696
9696
|
action: prev
|
9697
9697
|
}), current < steps.length - 1 ? /*#__PURE__*/React__default["default"].createElement(Button, {
|
9698
9698
|
label: "Siguiente",
|
9699
|
-
disabled: stepRef && stepRef.current.isValid(),
|
9699
|
+
disabled: stepRef.current && stepRef.current.isValid(),
|
9700
9700
|
action: next
|
9701
9701
|
}) : /*#__PURE__*/React__default["default"].createElement(Button, {
|
9702
9702
|
label: "Finalizar",
|
9703
|
-
disabled: stepRef && stepRef.current.isValid(),
|
9703
|
+
disabled: stepRef.current && stepRef.current.isValid(),
|
9704
9704
|
action: finish,
|
9705
9705
|
raised: true
|
9706
9706
|
})));
|