vue-data-ui 2.2.50 → 2.2.51
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/README.md +92 -0
- package/dist/{index-7012246c.js → index-a2bbeb61.js} +24789 -23321
- package/dist/{index.es-373c8e6d.js → index.es-0f5afa6b.js} +1 -1
- package/dist/style.css +1 -1
- package/dist/types/vue-data-ui.d.ts +13 -9
- package/dist/vue-data-ui.js +1 -1
- package/package.json +1 -1
|
@@ -39,6 +39,16 @@ declare module 'vue-data-ui' {
|
|
|
39
39
|
|
|
40
40
|
export type ChartUserOptions = {
|
|
41
41
|
show?: boolean;
|
|
42
|
+
buttons?: {
|
|
43
|
+
pdf?: boolean;
|
|
44
|
+
csv?: boolean;
|
|
45
|
+
img?: boolean;
|
|
46
|
+
table?: boolean;
|
|
47
|
+
labels?: boolean;
|
|
48
|
+
fullscreen?: boolean;
|
|
49
|
+
stack?: boolean;
|
|
50
|
+
sort?: boolean;
|
|
51
|
+
}
|
|
42
52
|
}
|
|
43
53
|
|
|
44
54
|
export type ChartTableCell = {
|
|
@@ -4616,9 +4626,7 @@ declare module 'vue-data-ui' {
|
|
|
4616
4626
|
export type VueUiXyCanvasConfig = {
|
|
4617
4627
|
theme?: Theme;
|
|
4618
4628
|
customPalette?: string[];
|
|
4619
|
-
userOptions?:
|
|
4620
|
-
show?: boolean
|
|
4621
|
-
};
|
|
4629
|
+
userOptions?: ChartUserOptions;
|
|
4622
4630
|
style?: {
|
|
4623
4631
|
fontFamily?: string;
|
|
4624
4632
|
chart?: {
|
|
@@ -4773,9 +4781,7 @@ declare module 'vue-data-ui' {
|
|
|
4773
4781
|
export type VueUiFlowConfig = {
|
|
4774
4782
|
theme?: Theme;
|
|
4775
4783
|
customPalette?: string[];
|
|
4776
|
-
userOptions?:
|
|
4777
|
-
show?: boolean;
|
|
4778
|
-
};
|
|
4784
|
+
userOptions?: ChartUserOptions;
|
|
4779
4785
|
style?: {
|
|
4780
4786
|
fontFamily?: string;
|
|
4781
4787
|
chart?: {
|
|
@@ -4855,9 +4861,7 @@ declare module 'vue-data-ui' {
|
|
|
4855
4861
|
useCssAnimation?: boolean;
|
|
4856
4862
|
customPalette?: string[];
|
|
4857
4863
|
variables?: string[];
|
|
4858
|
-
userOptions?:
|
|
4859
|
-
show?: boolean;
|
|
4860
|
-
};
|
|
4864
|
+
userOptions?: ChartUserOptions;
|
|
4861
4865
|
style?: {
|
|
4862
4866
|
fontFamily?: string;
|
|
4863
4867
|
chart?: {
|
package/dist/vue-data-ui.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { I as s, Q as u, F as V, X as U, p as r, s as t, o, g as l, Z as n, r as d, G as m, b as p, C as g, a1 as S, a4 as c, R as k, f as C, m as D, D as T, U as b, J as h, H as P, E as f, O as y, h as R, a5 as A, e as W, Y as x, d as H, k as M, u as v, z as w, n as B, j as F, S as G, t as Q, y as X, x as E, $ as I, q as K, P as L, l as N, a0 as O, a as j, W as q, T as z, w as J, B as Y, V as Z, i as $, c as _, A as aa, a2 as ea, v as ia, a3 as sa, N as ua, K as Va, M as Ua, L as ra } from "./index-
|
|
1
|
+
import { I as s, Q as u, F as V, X as U, p as r, s as t, o, g as l, Z as n, r as d, G as m, b as p, C as g, a1 as S, a4 as c, R as k, f as C, m as D, D as T, U as b, J as h, H as P, E as f, O as y, h as R, a5 as A, e as W, Y as x, d as H, k as M, u as v, z as w, n as B, j as F, S as G, t as Q, y as X, x as E, $ as I, q as K, P as L, l as N, a0 as O, a as j, W as q, T as z, w as J, B as Y, V as Z, i as $, c as _, A as aa, a2 as ea, v as ia, a3 as sa, N as ua, K as Va, M as Ua, L as ra } from "./index-a2bbeb61.js";
|
|
2
2
|
import "vue";
|
|
3
3
|
export {
|
|
4
4
|
s as Arrow,
|
package/package.json
CHANGED