gifted-charts-core 0.0.47 → 0.0.48
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/index.d.ts +1 -0
- package/src/index.js +1 -0
- package/src/index.ts +1 -0
package/package.json
CHANGED
package/src/index.d.ts
CHANGED
|
@@ -15,6 +15,7 @@ export { type LineChartPropsType, type lineDataItem, type bicolorLineDataItem, t
|
|
|
15
15
|
/***************************************** Pie Chart *****************************************
|
|
16
16
|
/***********************************************************************************************************************/
|
|
17
17
|
export { usePieChart } from './PieChart';
|
|
18
|
+
export { usePiePro } from './PieChart/pro';
|
|
18
19
|
export { getPieChartMainProps } from './PieChart/main';
|
|
19
20
|
export { type PieChartPropsType, type pieDataItem, type PieChartMainProps } from './PieChart/types';
|
|
20
21
|
/***********************************************************************************************************************
|
package/src/index.js
CHANGED
|
@@ -13,6 +13,7 @@ export { useLineChartBiColor } from './LineChart/LineChartBiColor';
|
|
|
13
13
|
/***************************************** Pie Chart *****************************************
|
|
14
14
|
/***********************************************************************************************************************/
|
|
15
15
|
export { usePieChart } from './PieChart';
|
|
16
|
+
export { usePiePro } from './PieChart/pro';
|
|
16
17
|
export { getPieChartMainProps } from './PieChart/main';
|
|
17
18
|
/***********************************************************************************************************************
|
|
18
19
|
/************************************ Population Pyramid Chart ************************************
|
package/src/index.ts
CHANGED
|
@@ -37,6 +37,7 @@ export {
|
|
|
37
37
|
/***********************************************************************************************************************/
|
|
38
38
|
|
|
39
39
|
export { usePieChart } from './PieChart'
|
|
40
|
+
export { usePiePro } from './PieChart/pro'
|
|
40
41
|
export { getPieChartMainProps } from './PieChart/main'
|
|
41
42
|
export {
|
|
42
43
|
type PieChartPropsType,
|