vue-chrts 0.0.151 → 0.0.153
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 +1 -1
- package/dist/index.d.ts +0 -1
- package/dist/index.js +12 -17
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/dist/utils.cjs +0 -2
- package/dist/utils.cjs.map +0 -1
- package/dist/utils.d.ts +0 -4
- package/dist/utils.js +0 -10
- package/dist/utils.js.map +0 -1
package/dist/index.cjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("./
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("./components/Area/AreaChart.cjs"),t=require("./components/AreaStacked/AreaStackedChart.cjs"),r=require("./components/Line/LineChart.cjs"),_=require("./components/Bar/BarChart.cjs"),u=require("./components/Donut/DonutChart.cjs"),a=require("./components/Crosshair/Crosshair.cjs");exports.AreaChart=e.default;exports.AreaStackedChart=t.default;exports.LineChart=r.default;exports.BarChart=_.default;exports.DonutChart=u.default;exports.Crosshair=a.default;
|
|
2
2
|
//# sourceMappingURL=index.cjs.map
|
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -1,20 +1,15 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { default as
|
|
3
|
-
import { default as
|
|
4
|
-
import { default as
|
|
5
|
-
import { default as
|
|
6
|
-
import { default as
|
|
7
|
-
import { default as c } from "./components/Crosshair/Crosshair.js";
|
|
1
|
+
import { default as t } from "./components/Area/AreaChart.js";
|
|
2
|
+
import { default as o } from "./components/AreaStacked/AreaStackedChart.js";
|
|
3
|
+
import { default as s } from "./components/Line/LineChart.js";
|
|
4
|
+
import { default as u } from "./components/Bar/BarChart.js";
|
|
5
|
+
import { default as l } from "./components/Donut/DonutChart.js";
|
|
6
|
+
import { default as p } from "./components/Crosshair/Crosshair.js";
|
|
8
7
|
export {
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
t as hasAutoOrScrollCss,
|
|
16
|
-
e as isBrowser,
|
|
17
|
-
o as isIE,
|
|
18
|
-
s as isVerticalOrientation
|
|
8
|
+
t as AreaChart,
|
|
9
|
+
o as AreaStackedChart,
|
|
10
|
+
u as BarChart,
|
|
11
|
+
p as Crosshair,
|
|
12
|
+
l as DonutChart,
|
|
13
|
+
s as LineChart
|
|
19
14
|
};
|
|
20
15
|
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;"}
|
package/package.json
CHANGED
package/dist/utils.cjs
DELETED
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const t=typeof window<"u"&&typeof document<"u",e=t&&/msie|trident/i.test(typeof navigator<"u"&&(navigator==null?void 0:navigator.userAgent)||""),i=/auto|scroll/,o=/^tb|vertical/;exports.hasAutoOrScrollCss=i;exports.isBrowser=t;exports.isIE=e;exports.isVerticalOrientation=o;
|
|
2
|
-
//# sourceMappingURL=utils.cjs.map
|
package/dist/utils.cjs.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"utils.cjs","sources":["../src/utils.ts"],"sourcesContent":["// Browser environment detection utilities\n\nexport const isBrowser = typeof window !== 'undefined' && typeof document !== 'undefined';\n\nexport const isIE = isBrowser && /msie|trident/i.test(\n typeof navigator !== 'undefined' && navigator?.userAgent || ''\n);\n\nexport const hasAutoOrScrollCss = /auto|scroll/;\nexport const isVerticalOrientation = /^tb|vertical/;"],"names":["isBrowser","isIE","hasAutoOrScrollCss","isVerticalOrientation"],"mappings":"gFAEO,MAAMA,EAAY,OAAO,OAAW,KAAe,OAAO,SAAa,IAEjEC,EAAOD,GAAa,gBAAgB,KAC/C,OAAO,UAAc,MAAe,iCAAW,YAAa,EAC9D,EAEaE,EAAqB,cACrBC,EAAwB"}
|
package/dist/utils.d.ts
DELETED
package/dist/utils.js
DELETED
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
const t = typeof window < "u" && typeof document < "u", e = t && /msie|trident/i.test(
|
|
2
|
-
typeof navigator < "u" && (navigator == null ? void 0 : navigator.userAgent) || ""
|
|
3
|
-
), n = /auto|scroll/, o = /^tb|vertical/;
|
|
4
|
-
export {
|
|
5
|
-
n as hasAutoOrScrollCss,
|
|
6
|
-
t as isBrowser,
|
|
7
|
-
e as isIE,
|
|
8
|
-
o as isVerticalOrientation
|
|
9
|
-
};
|
|
10
|
-
//# sourceMappingURL=utils.js.map
|
package/dist/utils.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"utils.js","sources":["../src/utils.ts"],"sourcesContent":["// Browser environment detection utilities\n\nexport const isBrowser = typeof window !== 'undefined' && typeof document !== 'undefined';\n\nexport const isIE = isBrowser && /msie|trident/i.test(\n typeof navigator !== 'undefined' && navigator?.userAgent || ''\n);\n\nexport const hasAutoOrScrollCss = /auto|scroll/;\nexport const isVerticalOrientation = /^tb|vertical/;"],"names":["isBrowser","isIE","hasAutoOrScrollCss","isVerticalOrientation"],"mappings":"AAEO,MAAMA,IAAY,OAAO,SAAW,OAAe,OAAO,WAAa,KAEjEC,IAAOD,KAAa,gBAAgB;AAAA,EAC/C,OAAO,YAAc,QAAe,uCAAW,cAAa;AAC9D,GAEaE,IAAqB,eACrBC,IAAwB;"}
|