Skip to content

Commit

Permalink
Add undefined types to resolve collisions during imd generation
Browse files Browse the repository at this point in the history
  • Loading branch information
alexslavr committed Nov 6, 2024
1 parent 7324281 commit c352de3
Show file tree
Hide file tree
Showing 8 changed files with 58 additions and 58 deletions.
4 changes: 2 additions & 2 deletions packages/devextreme/js/common/charts.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -634,12 +634,12 @@ export interface SeriesLabel {
* @docid dxChartSeriesTypes.CommonSeries.label.border.color
* @default '#d3d3d3'
*/
color?: string;
color?: string | undefined;
/**
* @docid dxChartSeriesTypes.CommonSeries.label.border.dashStyle
* @default 'solid'
*/
dashStyle?: DashStyle;
dashStyle?: DashStyle | undefined;
/**
* @docid dxChartSeriesTypes.CommonSeries.label.border.visible
* @default false
Expand Down
4 changes: 2 additions & 2 deletions packages/devextreme/js/viz/chart.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3749,7 +3749,7 @@ export interface dxChartSeriesTypesCommonSeriesHoverStyleBorder {
* @default 'solid'
* @public
*/
dashStyle?: DashStyle;
dashStyle?: DashStyle | undefined;
/**
* @docid dxChartSeriesTypes.CommonSeries.hoverStyle.border.visible
* @default false
Expand Down Expand Up @@ -3847,7 +3847,7 @@ export interface dxChartSeriesTypesCommonSeriesSelectionStyleBorder {
* @default 'solid'
* @public
*/
dashStyle?: DashStyle;
dashStyle?: DashStyle | undefined;
/**
* @docid dxChartSeriesTypes.CommonSeries.selectionStyle.border.visible
* @default false
Expand Down
6 changes: 3 additions & 3 deletions packages/devextreme/js/viz/funnel.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -276,17 +276,17 @@ export interface dxFunnelOptions extends BaseWidgetOptions<dxFunnel> {
* @docid
* @default #ffffff
*/
color?: string;
color?: string | undefined;
/**
* @docid
* @default false
*/
visible?: boolean;
visible?: boolean | undefined;
/**
* @docid
* @default 2
*/
width?: number;
width?: number | undefined;
};
/**
* @docid
Expand Down
4 changes: 2 additions & 2 deletions packages/devextreme/js/viz/pie_chart.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -707,12 +707,12 @@ export interface dxPieChartSeriesTypesCommonPieChartSeries {
* @docid dxPieChartSeriesTypes.CommonPieChartSeries.label.border.color
* @default '#d3d3d3'
*/
color?: string;
color?: string | undefined;
/**
* @docid dxPieChartSeriesTypes.CommonPieChartSeries.label.border.dashStyle
* @default 'solid'
*/
dashStyle?: DashStyle;
dashStyle?: DashStyle | undefined;
/**
* @docid dxPieChartSeriesTypes.CommonPieChartSeries.label.border.visible
* @default false
Expand Down
8 changes: 4 additions & 4 deletions packages/devextreme/js/viz/polar_chart.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1731,7 +1731,7 @@ export interface dxPolarChartSeriesTypesCommonPolarChartSeries {
* @docid dxPolarChartSeriesTypes.CommonPolarChartSeries.hoverStyle.border.dashStyle
* @default 'solid'
*/
dashStyle?: DashStyle;
dashStyle?: DashStyle | undefined;
/**
* @docid dxPolarChartSeriesTypes.CommonPolarChartSeries.hoverStyle.border.visible
* @default false
Expand Down Expand Up @@ -1858,7 +1858,7 @@ export interface dxPolarChartSeriesTypesCommonPolarChartSeries {
* @docid dxPolarChartSeriesTypes.CommonPolarChartSeries.selectionStyle.border.dashStyle
* @default 'solid'
*/
dashStyle?: DashStyle;
dashStyle?: DashStyle | undefined;
/**
* @docid dxPolarChartSeriesTypes.CommonPolarChartSeries.selectionStyle.border.visible
* @default false
Expand Down Expand Up @@ -2036,12 +2036,12 @@ export interface dxPolarChartSeriesTypesCommonPolarChartSeriesLabel {
* @docid dxPolarChartSeriesTypes.CommonPolarChartSeries.label.border.color
* @default '#d3d3d3'
*/
color?: string;
color?: string | undefined;
/**
* @docid dxPolarChartSeriesTypes.CommonPolarChartSeries.label.border.dashStyle
* @default 'solid'
*/
dashStyle?: DashStyle;
dashStyle?: DashStyle | undefined;
/**
* @docid dxPolarChartSeriesTypes.CommonPolarChartSeries.label.border.visible
* @default false
Expand Down
20 changes: 10 additions & 10 deletions packages/devextreme/js/viz/sankey.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -210,17 +210,17 @@ export interface dxSankeyOptions extends BaseWidgetOptions<dxSankey> {
* @docid
* @default '#000000'
*/
color?: string;
color?: string | undefined;
/**
* @docid
* @default false
*/
visible?: boolean;
visible?: boolean | undefined;
/**
* @docid
* @default 2
*/
width?: number;
width?: number | undefined;
};
/**
* @docid
Expand Down Expand Up @@ -301,17 +301,17 @@ export interface dxSankeyOptions extends BaseWidgetOptions<dxSankey> {
* @docid
* @default '#000000'
*/
color?: string;
color?: string | undefined;
/**
* @docid
* @default false
*/
visible?: boolean;
visible?: boolean | undefined;
/**
* @docid
* @default 2
*/
width?: number;
width?: number | undefined;
};
/**
* @docid
Expand Down Expand Up @@ -381,7 +381,7 @@ export interface dxSankeyOptions extends BaseWidgetOptions<dxSankey> {
* @docid
* @default 0.5
*/
opacity?: number;
opacity?: number | undefined;
};
/**
* @docid
Expand All @@ -402,17 +402,17 @@ export interface dxSankeyOptions extends BaseWidgetOptions<dxSankey> {
* @docid
* @default '#000000'
*/
color?: string;
color?: string | undefined;
/**
* @docid
* @default false
*/
visible?: boolean;
visible?: boolean | undefined;
/**
* @docid
* @default 1
*/
width?: number;
width?: number | undefined;
};
/**
* @docid
Expand Down
12 changes: 6 additions & 6 deletions packages/devextreme/js/viz/tree_map.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -258,12 +258,12 @@ export interface dxTreeMapOptions extends BaseWidgetOptions<dxTreeMap> {
* @docid
* @default "#d3d3d3"
*/
color?: string;
color?: string | undefined;
/**
* @docid
* @default 1
*/
width?: number;
width?: number | undefined;
};
/**
* @docid
Expand Down Expand Up @@ -343,7 +343,7 @@ export interface dxTreeMapOptions extends BaseWidgetOptions<dxTreeMap> {
* @docid
* @default "#232323"
*/
color?: string;
color?: string | undefined;
/**
* @docid
* @default undefined
Expand Down Expand Up @@ -487,12 +487,12 @@ export interface dxTreeMapOptions extends BaseWidgetOptions<dxTreeMap> {
* @docid
* @default "#000000"
*/
color?: string;
color?: string | undefined;
/**
* @docid
* @default 1
*/
width?: number;
width?: number | undefined;
};
/**
* @docid
Expand Down Expand Up @@ -562,7 +562,7 @@ export interface dxTreeMapOptions extends BaseWidgetOptions<dxTreeMap> {
* @docid
* @default "#232323"
*/
color?: string;
color?: string | undefined;
/**
* @docid
* @default undefined
Expand Down
Loading

0 comments on commit c352de3

Please sign in to comment.