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
parent
ea5a98daba
commit
e04ff53326
|
@ -117,7 +117,7 @@ export interface StepPanelSlots {
|
|||
/**
|
||||
* Click function.
|
||||
*/
|
||||
activateCallback: () => void;
|
||||
activateCallback: (value?: string | number) => void;
|
||||
}): VNode[];
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue