mirror of
https://github.com/apache/superset.git
synced 2026-05-30 20:59:23 +00:00
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:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user