next-helios-fe 1.7.27 → 1.7.28
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/package.json
CHANGED
@@ -17,7 +17,7 @@ interface WizardProps {
|
|
17
17
|
};
|
18
18
|
onPreviousClick?: () => void;
|
19
19
|
onNextClick?: () => void;
|
20
|
-
onChangeTab?: (
|
20
|
+
onChangeTab?: (tab: any) => void;
|
21
21
|
}
|
22
22
|
|
23
23
|
interface WizardComponent extends React.FC<WizardProps> {
|
@@ -108,7 +108,7 @@ export const Wizard: WizardComponent = ({
|
|
108
108
|
setActiveTab(index);
|
109
109
|
}}
|
110
110
|
>
|
111
|
-
<Icon icon={tab.icon} className="text-2xl" />
|
111
|
+
<Icon icon={tab.icon} className="text-2xl pointer-events-none" />
|
112
112
|
</button>
|
113
113
|
</div>
|
114
114
|
<div className="flex flex-col items-center text-center">
|