feat: Add reusable EnumSelector UI component (split from #6832) (#7774)

Co-authored-by: hoteye <hoteye@users.noreply.github.com>
Co-authored-by: cornmander <shikhman@google.com>
This commit is contained in:
Dylan liu
2025-09-10 05:45:12 +08:00
committed by GitHub
parent 8b40e000d6
commit da58b93026
4 changed files with 249 additions and 1 deletions

View File

@@ -43,7 +43,7 @@ export const TOGGLE_TYPES: ReadonlySet<SettingsType | undefined> = new Set([
'enum',
]);
interface SettingEnumOption {
export interface SettingEnumOption {
value: string | number;
label: string;
}