vue-chrts 0.0.90 → 0.0.92
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/index.cjs +88 -88
- package/dist/index.d.ts +1 -1
- package/dist/index.js +4 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -5,6 +5,6 @@ export { AreaChart } from './Area/index';
|
|
|
5
5
|
export { AreaStackedChart } from './AreaStacked/index';
|
|
6
6
|
export { BarChart } from './Bar/index';
|
|
7
7
|
export { DonutChart } from './Donut/index';
|
|
8
|
-
export
|
|
8
|
+
export { LineChart, CurveType, PaginationPosition, type LineChartProps } from './Line/index';
|
|
9
9
|
export { Progress, Status, Tooltip };
|
|
10
10
|
export * from './Button/index';
|
package/dist/index.js
CHANGED
|
@@ -9327,7 +9327,10 @@ const C_ = {
|
|
|
9327
9327
|
const o = co(Ko, {
|
|
9328
9328
|
data: r,
|
|
9329
9329
|
categories: e.categories
|
|
9330
|
-
})
|
|
9330
|
+
});
|
|
9331
|
+
if (!document)
|
|
9332
|
+
return;
|
|
9333
|
+
const s = document.createElement("div");
|
|
9331
9334
|
o.mount(s);
|
|
9332
9335
|
const a = s.innerHTML;
|
|
9333
9336
|
return o.unmount(), a;
|
|
@@ -9517,7 +9520,6 @@ export {
|
|
|
9517
9520
|
cy as DonutChart,
|
|
9518
9521
|
uy as LineChart,
|
|
9519
9522
|
B_ as PaginationPosition,
|
|
9520
|
-
A as Position,
|
|
9521
9523
|
hy as Progress,
|
|
9522
9524
|
fy as Status,
|
|
9523
9525
|
Ko as Tooltip
|