vue-chrts 0.0.102 → 0.0.103
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/dist/Area/AreaChart.vue.d.ts +32 -0
- package/dist/Area/index.d.ts +1 -0
- package/dist/AreaStacked/AreaStackedChart.vue.d.ts +13 -0
- package/dist/AreaStacked/index.d.ts +1 -0
- package/dist/Bar/BarChart.vue.d.ts +25 -0
- package/dist/Bar/index.d.ts +1 -0
- package/dist/Donut/DonutChart.vue.d.ts +11 -0
- package/dist/Donut/index.d.ts +12 -0
- package/dist/charts-CN5mWoq-.js +15851 -0
- package/dist/charts.d.ts +18 -0
- package/dist/index.d.ts +4 -2
- package/dist/index.js +120 -7546
- package/package.json +18 -4
- package/dist/index.cjs +0 -191
package/dist/charts.d.ts
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { AreaChart } from './Area/index';
|
|
2
|
+
import { AreaStackedChart } from './AreaStacked/index';
|
|
3
|
+
import { BarChart } from './Bar/index';
|
|
4
|
+
import { DonutChart, DonutChartProps } from './Donut/index';
|
|
5
|
+
import { LineChart, PaginationPosition, LineChartProps } from './Line/index';
|
|
6
|
+
|
|
7
|
+
export { AreaChart, AreaStackedChart, BarChart, DonutChart, LineChart };
|
|
8
|
+
type ChartModule = {
|
|
9
|
+
AreaChart: typeof AreaChart;
|
|
10
|
+
AreaStackedChart: typeof AreaStackedChart;
|
|
11
|
+
BarChart: typeof BarChart;
|
|
12
|
+
DonutChart: typeof DonutChart;
|
|
13
|
+
LineChart: typeof LineChart;
|
|
14
|
+
DonutChartProps: DonutChartProps;
|
|
15
|
+
LineChartProps: LineChartProps<any>;
|
|
16
|
+
PaginationPosition: typeof PaginationPosition;
|
|
17
|
+
};
|
|
18
|
+
export { type ChartModule, type DonutChartProps, type LineChartProps };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
|
+
import { ChartModule } from './charts.ts';
|
|
1
2
|
import { default as Progress } from './Progress/Progress.vue';
|
|
2
3
|
import { default as Status } from './Status/Status.vue';
|
|
3
4
|
import { default as Tooltip } from './Tooltip/Tooltip.vue';
|
|
4
|
-
|
|
5
|
-
|
|
5
|
+
|
|
6
|
+
declare const loadCharts: () => Promise<ChartModule | {}>;
|
|
7
|
+
export { Progress, Status, Tooltip, loadCharts };
|