このコミットが含まれているのは:
2026-07-15 23:42:05 +09:00
コミット 34f81325d2
3個のファイルの変更52行の追加24行の削除
+5 -4
ファイルの表示
@@ -24,10 +24,11 @@ type ChoiceOptions<T extends string> = { title: string
cancelText?: string }
type DialogueFormAction = {
label: string
variant?: DialogueVariant
disabled?: boolean
onSelect: () => Promise<boolean | void> | boolean | void }
label: string
placement?: 'start' | 'end'
variant?: DialogueVariant
disabled?: boolean
onSelect: () => Promise<boolean | void> | boolean | void }
type DialogueFormControls = {
close: () => void