Merge pull request #6226 from damoxc/fix-step-panel

fix(Stepper): include panel value in activateCallback signature
pull/6161/head^2
Tuğçe Küçükoğlu 2024-08-20 22:50:28 +03:00 committed by GitHub
commit 99d0529e80
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
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[];
}