-
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(chart): move components to widgets folder, change export type
- Loading branch information
1 parent
001781e
commit fecc3f6
Showing
14 changed files
with
44 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,2 @@ | ||
export * from './utils' | ||
export * from './baseChart' | ||
export * from './chartData.vue' | ||
export { default as ChartData } from './chartData.vue' | ||
export * from './chartDataset.vue' | ||
export { default as ChartDataset } from './chartDataset.vue' | ||
export * from './barChart.vue' | ||
export { default as BarChart } from './barChart.vue' | ||
export * from './lineChart.vue' | ||
export { default as LineChart } from './lineChart.vue' | ||
export * from './scatterChart.vue' | ||
export { default as ScatterChart } from './scatterChart.vue' | ||
export * from './bubbleChart.vue' | ||
export { default as BubbleChart } from './bubbleChart.vue' | ||
export * from './mixedChart.vue' | ||
export { default as MixedChart } from './mixedChart.vue' | ||
export * from './widgets' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,3 @@ | ||
export * as ChartUtil from './chartUtil' | ||
import * as ChartUtil from './chartUtil' | ||
|
||
export { ChartUtil } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 4 additions & 4 deletions
8
extensions/chart/src/barChart.vue → extensions/chart/src/widgets/barChart.vue
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
extensions/chart/src/bubbleChart.vue → extensions/chart/src/widgets/bubbleChart.vue
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
export * from './baseChart.ts' | ||
export type { ChartDataOptions, DateTimeWithDuration } from './chartData.vue' | ||
Check failure on line 2 in extensions/chart/src/widgets/index.ts GitHub Actions / type-check
|
||
export { default as ChartData } from './chartData.vue' | ||
export type { ChartDatasetOptions, BaseChartDataSet } from './chartDataset.vue' | ||
export { default as ChartDataset } from './chartDataset.vue' | ||
export type { BarChartStyle, BarChartOptions } from './barChart.vue' | ||
export { default as BarChart } from './barChart.vue' | ||
export type { LineChartStyle, LineChartOptions } from './lineChart.vue' | ||
export { default as LineChart } from './lineChart.vue' | ||
export type { ScatterChartOptions } from './scatterChart.vue' | ||
export { default as ScatterChart } from './scatterChart.vue' | ||
export type { BubbleChartOptions } from './bubbleChart.vue' | ||
export { default as BubbleChart } from './bubbleChart.vue' | ||
export type { MixedChartData, MixedChartOptions } from './mixedChart.vue' | ||
export { default as MixedChart } from './mixedChart.vue' |
10 changes: 5 additions & 5 deletions
10
extensions/chart/src/lineChart.vue → extensions/chart/src/widgets/lineChart.vue
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
6 changes: 3 additions & 3 deletions
6
extensions/chart/src/scatterChart.vue → ...nsions/chart/src/widgets/scatterChart.vue
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters