palantir/blueprint

[Multistep Dialog] Expose a function to proceed to the next step in the dialog

オープン

#5,040 opened on 2021/11/29

 (1 件のコメント) (1 件のリアクション) (0 人の担当者)TypeScript (2,167 件のフォーク)batch import
P3Package: coreType: feature requesthelp wanted

Repository metrics

Stars
 (20,263 個のスター)
PR merge metrics
 (PR metrics pending)

説明

Feature request

It would be useful if the Multistep Dialog exposes a method to proceed to the next step in the dialog.

Use Case

The dialog can progress through steps when the user presses on the enter key

Examples

const r = React.Ref<MultiStepDialog> = createRef();
const onEnter = () => r.current.nextStep();

return <MultiStepDialog ... ref={r} />

コントリビューターガイド