fix Settings UI and various plugins (#3608)

Co-authored-by: Vendicated <vendicated@riseup.net>
This commit is contained in:
sadan4 2025-08-14 15:42:58 -04:00 committed by GitHub
parent f356f647ff
commit 204f916b2a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
12 changed files with 39 additions and 19 deletions

View file

@ -43,12 +43,7 @@ export type FormDivider = ComponentType<{
}>;
export type FormText = ComponentType<PropsWithChildren<{
disabled?: boolean;
selectable?: boolean;
/** defaults to FormText.Types.DEFAULT */
type?: string;
}> & TextProps> & { Types: FormTextTypes; };
export type FormText = ComponentType<TextProps>;
export type Tooltip = ComponentType<{
text: ReactNode | ComponentType;