fix(Stepper): include panel value in activateCallback signature

This removes the need to add a wrapper function that changes the type
of activateCallback to any before calling it.
pull/6226/head
Damien Churchill 2024-08-13 09:01:48 +01:00
parent ea5a98daba
commit e04ff53326
1 changed files with 1 additions and 1 deletions

View File

@ -117,7 +117,7 @@ export interface StepPanelSlots {
/**
* Click function.
*/
activateCallback: () => void;
activateCallback: (value?: string | number) => void;
}): VNode[];
}