vue-chrts 0.0.109 → 0.0.110
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/charts.d.ts +14 -3
- package/dist/index.d.ts +3 -1
- package/package.json +1 -1
package/dist/charts.d.ts
CHANGED
|
@@ -1,7 +1,18 @@
|
|
|
1
1
|
import { AreaChart } from './Area/index';
|
|
2
2
|
import { AreaStackedChart } from './AreaStacked/index';
|
|
3
3
|
import { BarChart } from './Bar/index';
|
|
4
|
-
import { DonutChart } from './Donut/index';
|
|
5
|
-
import { LineChart, PaginationPosition } from './Line/index';
|
|
4
|
+
import { DonutChart, DonutChartProps } from './Donut/index';
|
|
5
|
+
import { LineChart, PaginationPosition, LineChartProps } from './Line/index';
|
|
6
6
|
|
|
7
|
-
export { AreaChart, AreaStackedChart, BarChart, DonutChart, LineChart
|
|
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, PaginationPosition };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
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
|
export { Progress, Status, Tooltip };
|
|
6
|
-
export declare const loadCharts: () => Promise<{}>;
|
|
7
|
+
export declare const loadCharts: () => Promise<ChartModule | {}>;
|
|
8
|
+
export type LoadCharts = typeof loadCharts;
|