chore(frontend): migrate SqlLab and explore JS/JSX files to TypeScript (#36760)

Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Evan Rusackas
2026-01-06 10:52:58 -08:00
committed by GitHub
parent aaa174f820
commit 9aff89c1b4
69 changed files with 3272 additions and 1482 deletions

View File

@@ -25,7 +25,9 @@ import { Constants, Input } from '@superset-ui/core/components';
type InputValueType = string | number;
export interface TextControlProps<T extends InputValueType = InputValueType> {
name?: string;
label?: string;
description?: string;
disabled?: boolean;
isFloat?: boolean;
isInt?: boolean;
@@ -36,6 +38,8 @@ export interface TextControlProps<T extends InputValueType = InputValueType> {
controlId?: string;
renderTrigger?: boolean;
validationErrors?: string[];
hovered?: boolean;
showHeader?: boolean;
}
export interface TextControlState {