vue-data-ui 2.2.5 → 2.2.7
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 +32 -0
- package/dist/documentation/installation.md +32 -0
- package/dist/{index-7d5a8b6f.js → index-9dc37ca3.js} +18692 -18655
- package/dist/{index.es-7b74ecb2.js → index.es-a5c4b7d9.js} +1 -1
- package/dist/style.css +1 -1
- package/dist/types/vue-data-ui.d.ts +26 -0
- package/dist/vue-data-ui.js +1 -1
- package/package.json +1 -1
|
@@ -28,6 +28,7 @@ declare module 'vue-data-ui' {
|
|
|
28
28
|
};
|
|
29
29
|
|
|
30
30
|
export type VueUiTreemapConfig = {
|
|
31
|
+
customPalette?: string[];
|
|
31
32
|
userOptions?: {
|
|
32
33
|
show?: boolean;
|
|
33
34
|
};
|
|
@@ -185,6 +186,7 @@ declare module 'vue-data-ui' {
|
|
|
185
186
|
export type VueUiGalaxyDatasetItem = VueUiDonutDatasetItem;
|
|
186
187
|
|
|
187
188
|
export type VueUiGalaxyConfig = {
|
|
189
|
+
customPalette?: string[];
|
|
188
190
|
useCssAnimation?: boolean;
|
|
189
191
|
useBlurOnHover?: boolean;
|
|
190
192
|
style?: {
|
|
@@ -407,6 +409,7 @@ declare module 'vue-data-ui' {
|
|
|
407
409
|
}
|
|
408
410
|
|
|
409
411
|
export type VueUiTableSparklineConfig = {
|
|
412
|
+
customPalette?: string[];
|
|
410
413
|
responsiveBreakpoint?: number;
|
|
411
414
|
showAverage?: boolean;
|
|
412
415
|
showMedian?: boolean;
|
|
@@ -589,6 +592,7 @@ declare module 'vue-data-ui' {
|
|
|
589
592
|
};
|
|
590
593
|
|
|
591
594
|
export type VueUi3dBarConfig = {
|
|
595
|
+
customPalette?: string[];
|
|
592
596
|
style?: {
|
|
593
597
|
fontFamily?: string;
|
|
594
598
|
shape?: "bar" | "tube";
|
|
@@ -800,6 +804,7 @@ declare module 'vue-data-ui' {
|
|
|
800
804
|
}>;
|
|
801
805
|
|
|
802
806
|
export type VueUiDonutEvolutionConfig = {
|
|
807
|
+
customPalette?: string[];
|
|
803
808
|
style?: {
|
|
804
809
|
fontFamily?: string;
|
|
805
810
|
chart?: {
|
|
@@ -1054,6 +1059,7 @@ declare module 'vue-data-ui' {
|
|
|
1054
1059
|
}>;
|
|
1055
1060
|
|
|
1056
1061
|
export type VueUiRingsConfig = {
|
|
1062
|
+
customPalette?: string[];
|
|
1057
1063
|
useCssAnimation?: boolean;
|
|
1058
1064
|
useBlurOnHover?: boolean;
|
|
1059
1065
|
style?: {
|
|
@@ -1263,6 +1269,7 @@ declare module 'vue-data-ui' {
|
|
|
1263
1269
|
}>;
|
|
1264
1270
|
|
|
1265
1271
|
export type VueUiSparkStackBarConfig = {
|
|
1272
|
+
customPalette?: string[];
|
|
1266
1273
|
style?: {
|
|
1267
1274
|
backgroundColor?: string;
|
|
1268
1275
|
fontFamily?: string;
|
|
@@ -1334,6 +1341,7 @@ declare module 'vue-data-ui' {
|
|
|
1334
1341
|
}>;
|
|
1335
1342
|
|
|
1336
1343
|
export type VueUiThermometerConfig = {
|
|
1344
|
+
customPalette?: string[];
|
|
1337
1345
|
style?: {
|
|
1338
1346
|
fontFamily?: string;
|
|
1339
1347
|
chart?: {
|
|
@@ -1413,6 +1421,7 @@ declare module 'vue-data-ui' {
|
|
|
1413
1421
|
}>;
|
|
1414
1422
|
|
|
1415
1423
|
export type VueUiRelationCircleConfig = {
|
|
1424
|
+
customPalette?: string[];
|
|
1416
1425
|
style?: {
|
|
1417
1426
|
color?: string;
|
|
1418
1427
|
backgroundColor?: string;
|
|
@@ -1603,6 +1612,7 @@ declare module 'vue-data-ui' {
|
|
|
1603
1612
|
}
|
|
1604
1613
|
|
|
1605
1614
|
export type VueUiSparkbarConfig = {
|
|
1615
|
+
customPalette?: string[];
|
|
1606
1616
|
style?: {
|
|
1607
1617
|
backgroundColor?: string;
|
|
1608
1618
|
fontFamily?: string;
|
|
@@ -1969,6 +1979,7 @@ declare module 'vue-data-ui' {
|
|
|
1969
1979
|
}
|
|
1970
1980
|
|
|
1971
1981
|
export type VueUiScatterConfig = {
|
|
1982
|
+
customPalette?: string[];
|
|
1972
1983
|
useCssAnimation?: boolean;
|
|
1973
1984
|
style?: {
|
|
1974
1985
|
backgroundColor?: string;
|
|
@@ -2328,6 +2339,7 @@ declare module 'vue-data-ui' {
|
|
|
2328
2339
|
}>;
|
|
2329
2340
|
|
|
2330
2341
|
export type VueUiXyConfig = {
|
|
2342
|
+
customPalette?: string[];
|
|
2331
2343
|
useCssAnimation?: boolean;
|
|
2332
2344
|
chart?: {
|
|
2333
2345
|
fontFamily?: string;
|
|
@@ -2396,12 +2408,16 @@ declare module 'vue-data-ui' {
|
|
|
2396
2408
|
xLabelOffsetY?: number;
|
|
2397
2409
|
fontSize?: number;
|
|
2398
2410
|
};
|
|
2411
|
+
zeroLine?: {
|
|
2412
|
+
show?: boolean;
|
|
2413
|
+
};
|
|
2399
2414
|
yAxis?: {
|
|
2400
2415
|
commonScaleSteps?: number;
|
|
2401
2416
|
useIndividualScale?: boolean;
|
|
2402
2417
|
stacked?: boolean;
|
|
2403
2418
|
gap?: number;
|
|
2404
2419
|
labelWidth?: number;
|
|
2420
|
+
showBaseline?: boolean;
|
|
2405
2421
|
};
|
|
2406
2422
|
xAxis?: {
|
|
2407
2423
|
showBaseline?: boolean;
|
|
@@ -2613,6 +2629,7 @@ declare module 'vue-data-ui' {
|
|
|
2613
2629
|
}>
|
|
2614
2630
|
|
|
2615
2631
|
export type VueUiDonutConfig = {
|
|
2632
|
+
customPalette?: string[];
|
|
2616
2633
|
useCssAnimation?: boolean;
|
|
2617
2634
|
useBlurOnHover?: boolean;
|
|
2618
2635
|
style?: {
|
|
@@ -2799,6 +2816,7 @@ declare module 'vue-data-ui' {
|
|
|
2799
2816
|
}
|
|
2800
2817
|
|
|
2801
2818
|
export type VueUiNestedDonutsConfig = {
|
|
2819
|
+
customPalette?: string[];
|
|
2802
2820
|
useCssAnimation?: boolean;
|
|
2803
2821
|
useBlurOnHover?: boolean;
|
|
2804
2822
|
userOptions?: {
|
|
@@ -2949,6 +2967,7 @@ declare module 'vue-data-ui' {
|
|
|
2949
2967
|
}>;
|
|
2950
2968
|
|
|
2951
2969
|
export type VueUiWaffleConfig = {
|
|
2970
|
+
customPalette?: string[];
|
|
2952
2971
|
useBlurOnHover?: boolean;
|
|
2953
2972
|
useCustomCells?: boolean;
|
|
2954
2973
|
useAnimation?: boolean;
|
|
@@ -3091,6 +3110,7 @@ declare module 'vue-data-ui' {
|
|
|
3091
3110
|
}>;
|
|
3092
3111
|
|
|
3093
3112
|
export type VueUiRadarConfig = {
|
|
3113
|
+
customPalette?: string[];
|
|
3094
3114
|
useCssAnimation?: boolean;
|
|
3095
3115
|
style?: {
|
|
3096
3116
|
fontFamily?: string;
|
|
@@ -3459,6 +3479,7 @@ declare module 'vue-data-ui' {
|
|
|
3459
3479
|
}
|
|
3460
3480
|
|
|
3461
3481
|
export type VueUiGaugeConfig = {
|
|
3482
|
+
customPalette?: string[];
|
|
3462
3483
|
style?: {
|
|
3463
3484
|
fontFamily?: string;
|
|
3464
3485
|
chart?: {
|
|
@@ -3562,6 +3583,7 @@ declare module 'vue-data-ui' {
|
|
|
3562
3583
|
};
|
|
3563
3584
|
|
|
3564
3585
|
export type VueUiChestnutConfig = {
|
|
3586
|
+
customPalette?: string[];
|
|
3565
3587
|
style?: {
|
|
3566
3588
|
fontFamily?: string;
|
|
3567
3589
|
chart?: {
|
|
@@ -3752,6 +3774,7 @@ declare module 'vue-data-ui' {
|
|
|
3752
3774
|
};
|
|
3753
3775
|
|
|
3754
3776
|
export type VueUiOnionConfig = {
|
|
3777
|
+
customPalette?: string[];
|
|
3755
3778
|
useCssAnimation?: boolean;
|
|
3756
3779
|
style?: {
|
|
3757
3780
|
fontFamily?: string;
|
|
@@ -3905,6 +3928,7 @@ declare module 'vue-data-ui' {
|
|
|
3905
3928
|
};
|
|
3906
3929
|
|
|
3907
3930
|
export type VueUiVerticalBarConfig = {
|
|
3931
|
+
customPalette?: string[];
|
|
3908
3932
|
useCssAnimation?: boolean;
|
|
3909
3933
|
style?: {
|
|
3910
3934
|
fontFamily?: string;
|
|
@@ -4784,6 +4808,7 @@ declare module 'vue-data-ui' {
|
|
|
4784
4808
|
blurOnHover?: boolean;
|
|
4785
4809
|
chartIsBarUnderDatasetLength?: number;
|
|
4786
4810
|
color?: string;
|
|
4811
|
+
customPalette?: string[];
|
|
4787
4812
|
dataLabelFontSize?: number;
|
|
4788
4813
|
dataLabelRoundingPercentage?: number;
|
|
4789
4814
|
dataLabelRoundingValue?: number;
|
|
@@ -4947,6 +4972,7 @@ declare module 'vue-data-ui' {
|
|
|
4947
4972
|
}>
|
|
4948
4973
|
|
|
4949
4974
|
export type VueUiStripPlotConfig = {
|
|
4975
|
+
customPalette?: string[];
|
|
4950
4976
|
useCssAnimation?: boolean;
|
|
4951
4977
|
userOptions?: {
|
|
4952
4978
|
show?: boolean;
|
package/dist/vue-data-ui.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { I as s, O as u, F as V, V as U, p as r, s as t, o, g as n, X as l, r as p, G as S, b as d, C as k, $ as m, P as c, f as g, m as b, D, Q as T, J as h, H as C, E as R, M as f, h as y, e as A, W as H, d as M, k as P, u as x, z as B, n as G, j as Q, S as W, t as v, y as w, x as E, Y as I, q as K, N as L, l as N, Z as O, a as X, U as j, T as q, w as z, B as F, R as J, i as Y, c as Z, A as $, v as _, K as aa, L as ea } from "./index-
|
|
1
|
+
import { I as s, O as u, F as V, V as U, p as r, s as t, o, g as n, X as l, r as p, G as S, b as d, C as k, $ as m, P as c, f as g, m as b, D, Q as T, J as h, H as C, E as R, M as f, h as y, e as A, W as H, d as M, k as P, u as x, z as B, n as G, j as Q, S as W, t as v, y as w, x as E, Y as I, q as K, N as L, l as N, Z as O, a as X, U as j, T as q, w as z, B as F, R as J, i as Y, c as Z, A as $, v as _, K as aa, L as ea } from "./index-9dc37ca3.js";
|
|
2
2
|
import "vue";
|
|
3
3
|
export {
|
|
4
4
|
s as Arrow,
|
package/package.json
CHANGED