-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
31 additions
and
30 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,5 @@ | ||
--- | ||
'@antv/gpt-vis': minor | ||
--- | ||
|
||
lite component for GPTVis |
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 |
---|---|---|
@@ -1,9 +1,14 @@ | ||
/********** export chart **********/ | ||
export * from './export'; | ||
export { default as version } from './version'; | ||
|
||
/********** export types **********/ | ||
export * from './types'; | ||
|
||
/********** export GPTVis **********/ | ||
export { withChartCode, withDefaultChartCode } from './ChartCodeRender'; | ||
export type { CodeBlockComponent, WithChartCodeOptions } from './ChartCodeRender/type'; | ||
export { default as ConfigProvider, type ConfigProviderProps } from './ConfigProvider'; | ||
export { default as GPTVis, type GPTVisProps } from './GPTVis'; | ||
export { default as GPTVisLite, type GPTVisLiteProps } from './GPTVis/Lite'; | ||
|
||
export * from './types'; | ||
export { default as version } from './version'; |