mirror of
https://github.com/apache/superset.git
synced 2026-04-20 08:34:37 +00:00
chore(deps-dev): bump prettier from 3.6.2 to 3.7.4 in /superset-frontend (#36487)
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Evan Rusackas <evan@rusackas.com> Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
@@ -53,8 +53,7 @@ export type BigNumberWithTrendlineFormData = BigNumberTotalFormData & {
|
||||
showYAxisMinMaxLabels?: boolean;
|
||||
};
|
||||
|
||||
export interface BigNumberTotalChartDataResponseResult
|
||||
extends ChartDataResponseResult {
|
||||
export interface BigNumberTotalChartDataResponseResult extends ChartDataResponseResult {
|
||||
data: BigNumberDatum[];
|
||||
}
|
||||
|
||||
|
||||
@@ -52,8 +52,7 @@ export const DEFAULT_FORM_DATA: BoxPlotQueryFormData = {
|
||||
...DEFAULT_TITLE_FORM_DATA,
|
||||
};
|
||||
|
||||
export interface EchartsBoxPlotChartProps
|
||||
extends BaseChartProps<BoxPlotQueryFormData> {
|
||||
export interface EchartsBoxPlotChartProps extends BaseChartProps<BoxPlotQueryFormData> {
|
||||
formData: BoxPlotQueryFormData;
|
||||
}
|
||||
|
||||
|
||||
@@ -47,8 +47,7 @@ export type EchartsBubbleFormData = QueryFormData &
|
||||
y: string;
|
||||
};
|
||||
|
||||
export interface EchartsBubbleChartProps
|
||||
extends ChartProps<EchartsBubbleFormData> {
|
||||
export interface EchartsBubbleChartProps extends ChartProps<EchartsBubbleFormData> {
|
||||
formData: EchartsBubbleFormData;
|
||||
queriesData: ChartDataResponseResult[];
|
||||
}
|
||||
|
||||
@@ -55,8 +55,7 @@ export enum EchartsFunnelLabelTypeType {
|
||||
ValuePercent,
|
||||
}
|
||||
|
||||
export interface EchartsFunnelChartProps
|
||||
extends BaseChartProps<EchartsFunnelFormData> {
|
||||
export interface EchartsFunnelChartProps extends BaseChartProps<EchartsFunnelFormData> {
|
||||
formData: EchartsFunnelFormData;
|
||||
}
|
||||
|
||||
|
||||
@@ -56,8 +56,7 @@ export type EchartsGanttFormData = QueryFormData &
|
||||
showExtraControls?: boolean;
|
||||
};
|
||||
|
||||
export interface EchartsGanttChartProps
|
||||
extends ChartProps<EchartsGanttFormData> {
|
||||
export interface EchartsGanttChartProps extends ChartProps<EchartsGanttFormData> {
|
||||
formData: EchartsGanttFormData;
|
||||
queriesData: ChartDataResponseResult[];
|
||||
}
|
||||
|
||||
@@ -77,8 +77,7 @@ export const DEFAULT_FORM_DATA: Partial<EchartsGaugeFormData> = {
|
||||
valueFormatter: '{value}',
|
||||
};
|
||||
|
||||
export interface EchartsGaugeChartProps
|
||||
extends BaseChartProps<EchartsGaugeFormData> {
|
||||
export interface EchartsGaugeChartProps extends BaseChartProps<EchartsGaugeFormData> {
|
||||
formData: EchartsGaugeFormData;
|
||||
}
|
||||
|
||||
|
||||
@@ -84,8 +84,7 @@ export type tooltipFormatParams = {
|
||||
data: { [name: string]: string };
|
||||
};
|
||||
|
||||
export interface EchartsGraphChartProps
|
||||
extends BaseChartProps<EchartsGraphFormData> {
|
||||
export interface EchartsGraphChartProps extends BaseChartProps<EchartsGraphFormData> {
|
||||
formData: EchartsGraphFormData;
|
||||
}
|
||||
|
||||
|
||||
@@ -141,8 +141,7 @@ export const DEFAULT_FORM_DATA: EchartsMixedTimeseriesFormData = {
|
||||
...DEFAULT_TITLE_FORM_DATA,
|
||||
};
|
||||
|
||||
export interface EchartsMixedTimeseriesProps
|
||||
extends BaseChartProps<EchartsMixedTimeseriesFormData> {
|
||||
export interface EchartsMixedTimeseriesProps extends BaseChartProps<EchartsMixedTimeseriesFormData> {
|
||||
formData: EchartsMixedTimeseriesFormData;
|
||||
}
|
||||
|
||||
|
||||
@@ -61,8 +61,7 @@ export enum EchartsPieLabelType {
|
||||
Template = 'template',
|
||||
}
|
||||
|
||||
export interface EchartsPieChartProps
|
||||
extends BaseChartProps<EchartsPieFormData> {
|
||||
export interface EchartsPieChartProps extends BaseChartProps<EchartsPieFormData> {
|
||||
formData: EchartsPieFormData;
|
||||
}
|
||||
|
||||
|
||||
@@ -61,8 +61,7 @@ export enum EchartsRadarLabelType {
|
||||
KeyValue = 'key_value',
|
||||
}
|
||||
|
||||
export interface EchartsRadarChartProps
|
||||
extends BaseChartProps<EchartsRadarFormData> {
|
||||
export interface EchartsRadarChartProps extends BaseChartProps<EchartsRadarFormData> {
|
||||
formData: EchartsRadarFormData;
|
||||
}
|
||||
|
||||
|
||||
@@ -163,7 +163,7 @@ const config: ControlPanelConfig = {
|
||||
visibility: ({ controls }: ControlPanelsContainerProps) =>
|
||||
Boolean(
|
||||
!controls?.secondary_metric?.value ||
|
||||
controls?.secondary_metric?.value === controls?.metric.value,
|
||||
controls?.secondary_metric?.value === controls?.metric.value,
|
||||
),
|
||||
},
|
||||
linear_color_scheme: {
|
||||
@@ -173,7 +173,7 @@ const config: ControlPanelConfig = {
|
||||
visibility: ({ controls }: ControlPanelsContainerProps) =>
|
||||
Boolean(
|
||||
controls?.secondary_metric?.value &&
|
||||
controls?.secondary_metric?.value !== controls?.metric.value,
|
||||
controls?.secondary_metric?.value !== controls?.metric.value,
|
||||
),
|
||||
},
|
||||
columns: {
|
||||
|
||||
@@ -54,8 +54,7 @@ export const DEFAULT_FORM_DATA: Partial<EchartsSunburstFormData> = {
|
||||
dateFormat: 'smart_date',
|
||||
};
|
||||
|
||||
export interface EchartsSunburstChartProps
|
||||
extends ChartProps<EchartsSunburstFormData> {
|
||||
export interface EchartsSunburstChartProps extends ChartProps<EchartsSunburstFormData> {
|
||||
formData: EchartsSunburstFormData;
|
||||
queriesData: ChartDataResponseResult[];
|
||||
}
|
||||
|
||||
@@ -101,8 +101,7 @@ export type EchartsTimeseriesFormData = QueryFormData & {
|
||||
} & LegendFormData &
|
||||
TitleFormData;
|
||||
|
||||
export interface EchartsTimeseriesChartProps
|
||||
extends BaseChartProps<EchartsTimeseriesFormData> {
|
||||
export interface EchartsTimeseriesChartProps extends BaseChartProps<EchartsTimeseriesFormData> {
|
||||
formData: EchartsTimeseriesFormData;
|
||||
}
|
||||
|
||||
|
||||
@@ -43,8 +43,7 @@ export interface TreeChartDataResponseResult extends ChartDataResponseResult {
|
||||
data: TreeDataRecord[];
|
||||
}
|
||||
|
||||
export interface EchartsTreeChartProps
|
||||
extends BaseChartProps<EchartsTreeFormData> {
|
||||
export interface EchartsTreeChartProps extends BaseChartProps<EchartsTreeFormData> {
|
||||
formData: EchartsTreeFormData;
|
||||
queriesData: TreeChartDataResponseResult[];
|
||||
}
|
||||
|
||||
@@ -51,8 +51,7 @@ export enum EchartsTreemapLabelType {
|
||||
KeyValue = 'key_value',
|
||||
}
|
||||
|
||||
export interface EchartsTreemapChartProps
|
||||
extends ChartProps<EchartsTreemapFormData> {
|
||||
export interface EchartsTreemapChartProps extends ChartProps<EchartsTreemapFormData> {
|
||||
formData: EchartsTreemapFormData;
|
||||
queriesData: ChartDataResponseResult[];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user