-
Notifications
You must be signed in to change notification settings - Fork 800
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Charts: Adding build option (#40676)
* Charts: Adding build option * changelog
- Loading branch information
1 parent
c023479
commit 95609ee
Showing
9 changed files
with
40 additions
and
6 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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
Significance: patch | ||
Type: added | ||
|
||
Adding build option for Charts. |
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,19 @@ | ||
// Charts | ||
export { BarChart } from './src/components/bar-chart'; | ||
export { LineChart } from './src/components/line-chart'; | ||
export { PieChart } from './src/components/pie-chart'; | ||
export { PieSemiCircleChart } from './src/components/pie-semi-circle-chart'; | ||
|
||
// Chart components | ||
export { BaseTooltip } from './src/components/tooltip'; | ||
export { Legend } from './src/components/legend'; | ||
|
||
// Providers | ||
export { ThemeProvider } from './src/providers/theme'; | ||
|
||
// Hooks | ||
export { default as useChartMouseHandler } from './src/hooks/use-chart-mouse-handler'; | ||
|
||
// Types | ||
export type * from './src/components/shared/types'; | ||
export type { BaseTooltipProps } from './src/components/tooltip'; |
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 |
---|---|---|
@@ -1 +1 @@ | ||
export { default } from './bar-chart'; | ||
export { default as BarChart } from './bar-chart'; |
2 changes: 1 addition & 1 deletion
2
projects/js-packages/charts/src/components/bar-chart/stories/index.stories.tsx
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
2 changes: 1 addition & 1 deletion
2
projects/js-packages/charts/src/providers/theme/stories/index.stories.tsx
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