Make RadioInput accept optional selected_index

This commit is contained in:
Keavon Chambers
2023-09-11 15:40:05 -07:00
parent b29acbd784
commit 88bdf9580f
12 changed files with 23 additions and 23 deletions
+1 -1
View File
@@ -999,7 +999,7 @@ export class RadioInput extends WidgetProps {
disabled!: boolean;
selectedIndex!: number;
selectedIndex!: number | undefined;
}
export type SeparatorDirection = "Horizontal" | "Vertical";