vue-data-ui 2.2.8 → 2.2.10

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.
@@ -28,6 +28,7 @@ declare module 'vue-data-ui' {
28
28
  };
29
29
 
30
30
  export type VueUiTreemapConfig = {
31
+ theme?: "" | "hack" | "zen" | "concrete";
31
32
  customPalette?: string[];
32
33
  userOptions?: {
33
34
  show?: boolean;
@@ -100,6 +101,9 @@ declare module 'vue-data-ui' {
100
101
  fontSize?: number;
101
102
  roundingValue?: number;
102
103
  customFormat?: (params: VueUiTooltipParams<VueUiTreemapDatapoint, VueUiTreemapSeriesItem[], VueUiTreemapConfig>) => string;
104
+ borderRadius?: number;
105
+ borderColor?: string;
106
+ borderWidth?: number;
103
107
  };
104
108
  };
105
109
  };
@@ -186,6 +190,7 @@ declare module 'vue-data-ui' {
186
190
  export type VueUiGalaxyDatasetItem = VueUiDonutDatasetItem;
187
191
 
188
192
  export type VueUiGalaxyConfig = {
193
+ theme?: "" | "hack" | "zen" | "concrete";
189
194
  customPalette?: string[];
190
195
  useCssAnimation?: boolean;
191
196
  useBlurOnHover?: boolean;
@@ -248,6 +253,9 @@ declare module 'vue-data-ui' {
248
253
  roundingValue?: number;
249
254
  roundingPercentage?: number;
250
255
  customFormat?: (params: VueUiTooltipParams<VueUiGalaxyDatapoint, VueUiGalaxySeriesItem[], VueUiGalaxyConfig>) => string;
256
+ borderRadius?: number;
257
+ borderColor?: string;
258
+ borderWidth?: number;
251
259
  };
252
260
  };
253
261
  };
@@ -307,6 +315,7 @@ declare module 'vue-data-ui' {
307
315
  }
308
316
 
309
317
  export type VueUiSparkgaugeConfig = {
318
+ theme?: "" | "hack" | "zen" | "concrete";
310
319
  style?: {
311
320
  fontFamily?: string;
312
321
  background?: string;
@@ -409,6 +418,7 @@ declare module 'vue-data-ui' {
409
418
  }
410
419
 
411
420
  export type VueUiTableSparklineConfig = {
421
+ theme?: "" | "hack" | "zen" | "concrete";
412
422
  customPalette?: string[];
413
423
  responsiveBreakpoint?: number;
414
424
  showAverage?: boolean;
@@ -486,6 +496,7 @@ declare module 'vue-data-ui' {
486
496
  };
487
497
 
488
498
  export type VueUiMoleculeConfig = {
499
+ theme?: "" | "hack" | "zen" | "concrete";
489
500
  style?: {
490
501
  fontFamily?: string;
491
502
  chart?: {
@@ -516,6 +527,9 @@ declare module 'vue-data-ui' {
516
527
  backgroundColor?: string;
517
528
  fontSize?: number;
518
529
  customFormat?: (params: VueUiTooltipParams<VueUiMoleculeDatapoint, VueUiMoleculeDatapoint[], VueUiMoleculeConfig>) => string;
530
+ borderRadius?: number;
531
+ borderColor?: string;
532
+ borderWidth?: number;
519
533
  };
520
534
  zoom?: {
521
535
  speed?: number;
@@ -592,6 +606,7 @@ declare module 'vue-data-ui' {
592
606
  };
593
607
 
594
608
  export type VueUi3dBarConfig = {
609
+ theme?: "" | "hack" | "zen" | "concrete";
595
610
  customPalette?: string[];
596
611
  style?: {
597
612
  fontFamily?: string;
@@ -697,6 +712,7 @@ declare module 'vue-data-ui' {
697
712
  }
698
713
 
699
714
  export type VueUiMoodRadarConfig = {
715
+ theme?: "" | "hack" | "zen" | "concrete";
700
716
  style?: {
701
717
  fontFamily?: string;
702
718
  chart?: {
@@ -804,6 +820,7 @@ declare module 'vue-data-ui' {
804
820
  }>;
805
821
 
806
822
  export type VueUiDonutEvolutionConfig = {
823
+ theme?: "" | "hack" | "zen" | "concrete";
807
824
  customPalette?: string[];
808
825
  style?: {
809
826
  fontFamily?: string;
@@ -934,6 +951,7 @@ declare module 'vue-data-ui' {
934
951
  }>;
935
952
 
936
953
  export type VueUiTiremarksConfig = {
954
+ theme?: "" | "hack" | "zen" | "concrete";
937
955
  style?: {
938
956
  fontFamily?: string;
939
957
  chart?: {
@@ -995,6 +1013,7 @@ declare module 'vue-data-ui' {
995
1013
  }>;
996
1014
 
997
1015
  export type VueUiWheelConfig = {
1016
+ theme?: "" | "hack" | "zen" | "concrete";
998
1017
  style?: {
999
1018
  fontFamily?: string;
1000
1019
  chart?: {
@@ -1059,6 +1078,7 @@ declare module 'vue-data-ui' {
1059
1078
  }>;
1060
1079
 
1061
1080
  export type VueUiRingsConfig = {
1081
+ theme?: "" | "hack" | "zen" | "concrete";
1062
1082
  customPalette?: string[];
1063
1083
  useCssAnimation?: boolean;
1064
1084
  useBlurOnHover?: boolean;
@@ -1116,6 +1136,9 @@ declare module 'vue-data-ui' {
1116
1136
  roundingValue?: number;
1117
1137
  roundingPercentage?: number;
1118
1138
  customFormat?: (params: VueUiTooltipParams<VueUiRingsDatapoint, VueUiRingsDatapoint[], VueUiRingsConfig>) => string;
1139
+ borderRadius?: number;
1140
+ borderColor?: string;
1141
+ borderWidth?: number;
1119
1142
  };
1120
1143
  };
1121
1144
  };
@@ -1171,6 +1194,7 @@ declare module 'vue-data-ui' {
1171
1194
  }>
1172
1195
 
1173
1196
  export type VueUiSparkHistogramConfig = {
1197
+ theme?: "" | "hack" | "zen" | "concrete";
1174
1198
  style?: {
1175
1199
  backgroundColor?: string;
1176
1200
  fontFamily?: string;
@@ -1269,6 +1293,7 @@ declare module 'vue-data-ui' {
1269
1293
  }>;
1270
1294
 
1271
1295
  export type VueUiSparkStackBarConfig = {
1296
+ theme?: "" | "hack" | "zen" | "concrete";
1272
1297
  customPalette?: string[];
1273
1298
  style?: {
1274
1299
  backgroundColor?: string;
@@ -1341,6 +1366,7 @@ declare module 'vue-data-ui' {
1341
1366
  }>;
1342
1367
 
1343
1368
  export type VueUiThermometerConfig = {
1369
+ theme?: "" | "hack" | "zen" | "concrete";
1344
1370
  customPalette?: string[];
1345
1371
  style?: {
1346
1372
  fontFamily?: string;
@@ -1421,6 +1447,7 @@ declare module 'vue-data-ui' {
1421
1447
  }>;
1422
1448
 
1423
1449
  export type VueUiRelationCircleConfig = {
1450
+ theme?: "" | "hack" | "zen" | "concrete";
1424
1451
  customPalette?: string[];
1425
1452
  style?: {
1426
1453
  color?: string;
@@ -1612,6 +1639,7 @@ declare module 'vue-data-ui' {
1612
1639
  }
1613
1640
 
1614
1641
  export type VueUiSparkbarConfig = {
1642
+ theme?: "" | "hack" | "zen" | "concrete";
1615
1643
  customPalette?: string[];
1616
1644
  style?: {
1617
1645
  backgroundColor?: string;
@@ -1661,6 +1689,7 @@ declare module 'vue-data-ui' {
1661
1689
  export type VueUiAgePyramidDataset = Array<Array<string | number>>;
1662
1690
 
1663
1691
  export type VueUiAgePyramidConfig = {
1692
+ theme?: "" | "hack" | "zen" | "concrete";
1664
1693
  style?: {
1665
1694
  backgroundColor?: string;
1666
1695
  color?: string;
@@ -1749,6 +1778,9 @@ declare module 'vue-data-ui' {
1749
1778
  fontSize?: number;
1750
1779
  roundingValue?: number;
1751
1780
  customFormat?: (params: VueUiTooltipParams<VueUiAgePyramidDatapoint, VueUiAgePyramidSeries[], VueUiAgePyramidConfig>) => string;
1781
+ borderRadius?: number;
1782
+ borderColor?: string;
1783
+ borderWidth?: number;
1752
1784
  };
1753
1785
  };
1754
1786
  translations?: {
@@ -1811,6 +1843,7 @@ declare module 'vue-data-ui' {
1811
1843
  }>;
1812
1844
 
1813
1845
  export type VueUiCandlestickConfig = {
1846
+ theme?: "" | "hack" | "zen" | "concrete";
1814
1847
  useCssAnimation?: boolean;
1815
1848
  style?: {
1816
1849
  backgroundColor?: string;
@@ -1911,6 +1944,9 @@ declare module 'vue-data-ui' {
1911
1944
  prefix?: string;
1912
1945
  suffix?: string;
1913
1946
  customFormat?: (params: VueUiTooltipParams<VueUiCandlestickDatapoint, VueUiCandlestickDatapoint[], VueUiCandlestickConfig>) => string;
1947
+ borderRadius?: number;
1948
+ borderColor?: string;
1949
+ borderWidth?: number;
1914
1950
  };
1915
1951
  };
1916
1952
  translations?: {
@@ -1979,6 +2015,7 @@ declare module 'vue-data-ui' {
1979
2015
  }
1980
2016
 
1981
2017
  export type VueUiScatterConfig = {
2018
+ theme?: "" | "hack" | "zen" | "concrete";
1982
2019
  customPalette?: string[];
1983
2020
  useCssAnimation?: boolean;
1984
2021
  style?: {
@@ -2121,7 +2158,10 @@ declare module 'vue-data-ui' {
2121
2158
  showShape?: boolean;
2122
2159
  prefix?: string;
2123
2160
  suffix?: string;
2124
- customFormat?: (params: VueUiTooltipParams<VueUiScatterDatapoint, VueUiScatterSeries[], VueUiScatterConfig>) => string
2161
+ customFormat?: (params: VueUiTooltipParams<VueUiScatterDatapoint, VueUiScatterSeries[], VueUiScatterConfig>) => string;
2162
+ borderRadius?: number;
2163
+ borderColor?: string;
2164
+ borderWidth?: number;
2125
2165
  };
2126
2166
  };
2127
2167
  userOptions?: {
@@ -2197,6 +2237,7 @@ declare module 'vue-data-ui' {
2197
2237
  }>;
2198
2238
 
2199
2239
  export type VueUiHeatmapConfig = {
2240
+ theme?: "" | "hack" | "zen" | "concrete";
2200
2241
  style?: {
2201
2242
  backgroundColor?: string;
2202
2243
  color?: string;
@@ -2281,6 +2322,9 @@ declare module 'vue-data-ui' {
2281
2322
  fontSize?: number;
2282
2323
  roundingValue?: number;
2283
2324
  customFormat?: (params: VueUiTooltipParams<VueUiHeatmapDatapoint, VueUiHeatmapRow[], VueUiHeatmapConfig>) => string;
2325
+ borderRadius?: number;
2326
+ borderColor?: string;
2327
+ borderWidth?: number;
2284
2328
  };
2285
2329
  };
2286
2330
  userOptions?: {
@@ -2339,6 +2383,7 @@ declare module 'vue-data-ui' {
2339
2383
  }>;
2340
2384
 
2341
2385
  export type VueUiXyConfig = {
2386
+ theme?: "" | "hack" | "zen" | "concrete";
2342
2387
  customPalette?: string[];
2343
2388
  useCssAnimation?: boolean;
2344
2389
  chart?: {
@@ -2469,6 +2514,9 @@ declare module 'vue-data-ui' {
2469
2514
  roundingPercentage?: number;
2470
2515
  fontSize?: number;
2471
2516
  customFormat?: (params: VueUiTooltipParams<VueUiXyDatapointItem[], VueUiXySeries, VueUiXyConfig, VueUiXyDatasetBarItem[], VueUiXyDatasetLineItem[], VueUiXyDatasetPlotItem[]>) => string;
2517
+ borderRadius?: number;
2518
+ borderColor?: string;
2519
+ borderWidth?: number;
2472
2520
  };
2473
2521
  userOptions?: {
2474
2522
  show?: boolean;
@@ -2629,6 +2677,7 @@ declare module 'vue-data-ui' {
2629
2677
  }>
2630
2678
 
2631
2679
  export type VueUiDonutConfig = {
2680
+ theme?: "" | "hack" | "zen" | "concrete";
2632
2681
  customPalette?: string[];
2633
2682
  useCssAnimation?: boolean;
2634
2683
  useBlurOnHover?: boolean;
@@ -2737,6 +2786,9 @@ declare module 'vue-data-ui' {
2737
2786
  roundingValue?: number;
2738
2787
  roundingPercentage?: number;
2739
2788
  customFormat?: (params: VueUiTooltipParams<VueUiDonutDatapoint, VueUiDonutSeriesItem[], VueUiDonutConfig>) => string;
2789
+ borderRadius?: number;
2790
+ borderColor?: string;
2791
+ borderWidth?: number;
2740
2792
  };
2741
2793
  };
2742
2794
  };
@@ -2816,6 +2868,7 @@ declare module 'vue-data-ui' {
2816
2868
  }
2817
2869
 
2818
2870
  export type VueUiNestedDonutsConfig = {
2871
+ theme?: "" | "hack" | "zen" | "concrete";
2819
2872
  customPalette?: string[];
2820
2873
  useCssAnimation?: boolean;
2821
2874
  useBlurOnHover?: boolean;
@@ -2892,6 +2945,9 @@ declare module 'vue-data-ui' {
2892
2945
  roundingValue?: number;
2893
2946
  roundingPercentage?: number;
2894
2947
  customFormat?: (params: VueUiTooltipParams<VueUiNestedDonutsDatapoint, VueUiNestedDonutsSeriesItem[], VueUiNestedDonutsConfig>) => string;
2948
+ borderRadius?: number;
2949
+ borderColor?: string;
2950
+ borderWidth?: number;
2895
2951
  };
2896
2952
  };
2897
2953
  };
@@ -2967,6 +3023,7 @@ declare module 'vue-data-ui' {
2967
3023
  }>;
2968
3024
 
2969
3025
  export type VueUiWaffleConfig = {
3026
+ theme?: "" | "hack" | "zen" | "concrete";
2970
3027
  customPalette?: string[];
2971
3028
  useBlurOnHover?: boolean;
2972
3029
  useCustomCells?: boolean;
@@ -3033,6 +3090,9 @@ declare module 'vue-data-ui' {
3033
3090
  roundingValue?: number;
3034
3091
  roundingPercentage?: number;
3035
3092
  customFormat?: (params: VueUiTooltipParams<VueUiWaffleDatapoint, VueUiWaffleSerieItem[], VueUiWaffleConfig>) => string;
3093
+ borderRadius?: number;
3094
+ borderColor?: string;
3095
+ borderWidth?: number;
3036
3096
  };
3037
3097
  legend?: {
3038
3098
  show?: boolean;
@@ -3110,6 +3170,7 @@ declare module 'vue-data-ui' {
3110
3170
  }>;
3111
3171
 
3112
3172
  export type VueUiRadarConfig = {
3173
+ theme?: "" | "hack" | "zen" | "concrete";
3113
3174
  customPalette?: string[];
3114
3175
  useCssAnimation?: boolean;
3115
3176
  style?: {
@@ -3173,6 +3234,9 @@ declare module 'vue-data-ui' {
3173
3234
  animationFrames?: number;
3174
3235
  };
3175
3236
  customFormat?: (params: VueUiTooltipParams<VueUiRadarDatapoint, VueUiRadarSeries, VueUiRadarConfig>) => string;
3237
+ borderRadius?: number;
3238
+ borderColor?: string;
3239
+ borderWidth?: number;
3176
3240
  };
3177
3241
  legend?: {
3178
3242
  show?: boolean;
@@ -3286,6 +3350,7 @@ declare module 'vue-data-ui' {
3286
3350
  };
3287
3351
 
3288
3352
  export type VueUiQuadrantConfig = {
3353
+ theme?: "" | "hack" | "zen" | "concrete";
3289
3354
  useCssAnimation?: boolean;
3290
3355
  zoomAnimationFrames?: number;
3291
3356
  style?: {
@@ -3399,6 +3464,9 @@ declare module 'vue-data-ui' {
3399
3464
  roundingValue?: number;
3400
3465
  customFormat?: (params: VueUiTooltipParams<VueUiQuadrantDatapoint, VueUiQuadrantSerie[], VueUiQuadrantConfig>) => string;
3401
3466
  showShape?: boolean;
3467
+ borderRadius?: number;
3468
+ borderColor?: string;
3469
+ borderWidth?: number;
3402
3470
  };
3403
3471
  legend?: {
3404
3472
  show?: boolean;
@@ -3479,6 +3547,7 @@ declare module 'vue-data-ui' {
3479
3547
  }
3480
3548
 
3481
3549
  export type VueUiGaugeConfig = {
3550
+ theme?: "" | "hack" | "zen" | "concrete";
3482
3551
  customPalette?: string[];
3483
3552
  style?: {
3484
3553
  fontFamily?: string;
@@ -3583,6 +3652,7 @@ declare module 'vue-data-ui' {
3583
3652
  };
3584
3653
 
3585
3654
  export type VueUiChestnutConfig = {
3655
+ theme?: "" | "hack" | "zen" | "concrete";
3586
3656
  customPalette?: string[];
3587
3657
  style?: {
3588
3658
  fontFamily?: string;
@@ -3774,6 +3844,7 @@ declare module 'vue-data-ui' {
3774
3844
  };
3775
3845
 
3776
3846
  export type VueUiOnionConfig = {
3847
+ theme?: "" | "hack" | "zen" | "concrete";
3777
3848
  customPalette?: string[];
3778
3849
  useCssAnimation?: boolean;
3779
3850
  style?: {
@@ -3840,6 +3911,9 @@ declare module 'vue-data-ui' {
3840
3911
  roundingValue?: number;
3841
3912
  roundingPercentage?: number;
3842
3913
  customFormat?: (params: VueUiTooltipParams<VueUiOnionDatapoint, VueUiOnionSeriesItem[], VueUiOnionConfig>) => string;
3914
+ borderRadius?: number;
3915
+ borderColor?: string;
3916
+ borderWidth?: number;
3843
3917
  };
3844
3918
  };
3845
3919
  };
@@ -3928,6 +4002,7 @@ declare module 'vue-data-ui' {
3928
4002
  };
3929
4003
 
3930
4004
  export type VueUiVerticalBarConfig = {
4005
+ theme?: "" | "hack" | "zen" | "concrete";
3931
4006
  customPalette?: string[];
3932
4007
  useCssAnimation?: boolean;
3933
4008
  style?: {
@@ -4027,6 +4102,9 @@ declare module 'vue-data-ui' {
4027
4102
  prefix?: string;
4028
4103
  suffix?: string;
4029
4104
  customFormat?: (params: VueUiTooltipParams<VueUiVerticalBarDatapoint, VueUiVerticalBarSerie[], VueUiVerticalBarConfig>) => string;
4105
+ borderRadius?: number;
4106
+ borderColor?: string;
4107
+ borderWidth?: number
4030
4108
  };
4031
4109
  };
4032
4110
  };
@@ -4112,6 +4190,7 @@ declare module 'vue-data-ui' {
4112
4190
  };
4113
4191
 
4114
4192
  export type VueUiSparklineConfig = {
4193
+ theme?: "" | "hack" | "zen" | "concrete";
4115
4194
  type?: "line" | "bar";
4116
4195
  style?: {
4117
4196
  backgroundColor?: string;
@@ -4748,6 +4827,7 @@ declare module 'vue-data-ui' {
4748
4827
  };
4749
4828
 
4750
4829
  export type VueUiTableHeatmapConfig = {
4830
+ theme?: "" | "hack" | "zen" | "concrete";
4751
4831
  style?: {
4752
4832
  backgroundColor?: string;
4753
4833
  color?: string;
@@ -4767,6 +4847,7 @@ declare module 'vue-data-ui' {
4767
4847
  showMedian?: boolean;
4768
4848
  head?: {
4769
4849
  backgroundColor?: string;
4850
+ color?: string;
4770
4851
  values?: string[];
4771
4852
  };
4772
4853
  };
@@ -4801,6 +4882,7 @@ declare module 'vue-data-ui' {
4801
4882
  }>
4802
4883
 
4803
4884
  export type VueUiQuickChartConfig = {
4885
+ theme?: "" | "hack" | "zen" | "concrete";
4804
4886
  axisLabelsFontSize?: number;
4805
4887
  backgroundColor?: string;
4806
4888
  barGap?: number;
@@ -4838,6 +4920,9 @@ declare module 'vue-data-ui' {
4838
4920
  titleFontSize?: number;
4839
4921
  titleTextAlign?: "center" | "left" | "right",
4840
4922
  tooltipCustomFormat?: any;
4923
+ tooltipBorderRadius?: number;
4924
+ tooltipBorderColor?: string;
4925
+ tooltipBorderWidth?: number;
4841
4926
  useCustomLegend?: boolean;
4842
4927
  valuePrefix?: string;
4843
4928
  valueSuffix?: string;
@@ -4912,6 +4997,7 @@ declare module 'vue-data-ui' {
4912
4997
  }>;
4913
4998
 
4914
4999
  export type VueUiSparkTrendConfig = {
5000
+ theme?: "" | "hack" | "zen" | "concrete";
4915
5001
  style?: {
4916
5002
  backgroundColor?: string;
4917
5003
  fontFamily?: string;
@@ -4972,6 +5058,7 @@ declare module 'vue-data-ui' {
4972
5058
  }>
4973
5059
 
4974
5060
  export type VueUiStripPlotConfig = {
5061
+ theme?: "" | "hack" | "zen" | "concrete";
4975
5062
  customPalette?: string[];
4976
5063
  useCssAnimation?: boolean;
4977
5064
  userOptions?: {
@@ -5090,6 +5177,9 @@ declare module 'vue-data-ui' {
5090
5177
  fontSize?: number;
5091
5178
  roundingValue?: number;
5092
5179
  customFormat?: (params: VueUiTooltipParams<VueUiStripPlotDatapoint, VueUiStripPlotSeriesItem[], VueUiStripPlotConfig>) => string;
5180
+ borderRadius?: number;
5181
+ borderColor?: string;
5182
+ borderWidth?: number;
5093
5183
  };
5094
5184
  };
5095
5185
  };
@@ -5128,6 +5218,7 @@ declare module 'vue-data-ui' {
5128
5218
  }>
5129
5219
 
5130
5220
  export type VueUiDumbbellConfig = {
5221
+ theme?: "" | "hack" | "zen" | "concrete";
5131
5222
  useAnimation?: boolean;
5132
5223
  animationSpeed?: number;
5133
5224
  userOptions?: {
@@ -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-acd1f5f1.js";
1
+ import { I as s, P as u, F as V, W as U, p as r, s as t, o, g as n, Y as l, r as p, G as g, b as m, C as S, a0 as d, Q as k, f as c, m as b, D, R as T, J as h, H as C, E as f, N as R, h as y, e as A, X 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, Z as I, q as K, O as L, l as N, $ as O, a as X, V as j, T as q, w as z, B as F, U as J, i as Y, c as Z, A as $, v as _, K as aa, M as ea, L as ia } from "./index-df2c6b48.js";
2
2
  import "vue";
3
3
  export {
4
4
  s as Arrow,
@@ -11,19 +11,19 @@ export {
11
11
  n as VueUiChestnut,
12
12
  l as VueUiCursor,
13
13
  p as VueUiDashboard,
14
- S as VueUiDigits,
15
- d as VueUiDonut,
16
- k as VueUiDonutEvolution,
17
- m as VueUiDumbbell,
18
- c as VueUiGalaxy,
19
- g as VueUiGauge,
14
+ g as VueUiDigits,
15
+ m as VueUiDonut,
16
+ S as VueUiDonutEvolution,
17
+ d as VueUiDumbbell,
18
+ k as VueUiGalaxy,
19
+ c as VueUiGauge,
20
20
  b as VueUiHeatmap,
21
21
  D as VueUiIcon,
22
22
  T as VueUiKpi,
23
23
  h as VueUiMiniLoader,
24
24
  C as VueUiMolecule,
25
- R as VueUiMoodRadar,
26
- f as VueUiNestedDonuts,
25
+ f as VueUiMoodRadar,
26
+ R as VueUiNestedDonuts,
27
27
  y as VueUiOnion,
28
28
  A as VueUiQuadrant,
29
29
  H as VueUiQuickChart,
@@ -53,5 +53,6 @@ export {
53
53
  $ as VueUiWheel,
54
54
  _ as VueUiXy,
55
55
  aa as getPalette,
56
- ea as getVueDataUiConfig
56
+ ea as getThemeConfig,
57
+ ia as getVueDataUiConfig
57
58
  };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "vue-data-ui",
3
3
  "private": false,
4
- "version": "2.2.8",
4
+ "version": "2.2.10",
5
5
  "type": "module",
6
6
  "description": "A user-empowering data visualization Vue 3 components library for eloquent data storytelling",
7
7
  "keywords": [