@@ -739,6 +739,7 @@ declare module "vue-data-ui" {
739
739
740
740
export type VueUiMoleculeConfig = {
741
741
theme ?: Theme ;
742
+ customPalette ?: string [ ] ;
742
743
style ?: {
743
744
fontFamily ?: string ;
744
745
chart ?: {
@@ -962,6 +963,8 @@ declare module "vue-data-ui" {
962
963
roundingValue ?: number ;
963
964
bold ?: boolean ;
964
965
formatter ?: Formatter ;
966
+ prefix ?: string ;
967
+ suffix ?: string ;
965
968
} ;
966
969
} ;
967
970
title ?: ChartTitle ;
@@ -1247,6 +1250,7 @@ declare module "vue-data-ui" {
1247
1250
1248
1251
export type VueUiTiremarksConfig = {
1249
1252
theme ?: Theme ;
1253
+ userOptions ?: ChartUserOptions ;
1250
1254
style ?: {
1251
1255
fontFamily ?: string ;
1252
1256
chart ?: {
@@ -1597,6 +1601,8 @@ declare module "vue-data-ui" {
1597
1601
fontSize ?: number ;
1598
1602
bold ?: boolean ;
1599
1603
margin ?: string ;
1604
+ paddingLeft ?: number ;
1605
+ paddingRight ?: number ;
1600
1606
subtitle ?: {
1601
1607
color ?: string ;
1602
1608
text ?: string ;
@@ -1669,6 +1675,7 @@ declare module "vue-data-ui" {
1669
1675
prefix ?: string ;
1670
1676
suffix ?: string ;
1671
1677
formatter ?: Formatter ;
1678
+ color ?: string ;
1672
1679
} ;
1673
1680
} ;
1674
1681
title ?: ChartTitle ;
@@ -2214,7 +2221,7 @@ declare module "vue-data-ui" {
2214
2221
export type VueUiScatterDatasetItem = {
2215
2222
name : string ;
2216
2223
values : VueUiScatterDatasetValueItem [ ] ;
2217
- color : string ;
2224
+ color ? : string ;
2218
2225
shape ?: Shape ;
2219
2226
} ;
2220
2227
@@ -3448,6 +3455,7 @@ declare module "vue-data-ui" {
3448
3455
theme ?: Theme ;
3449
3456
useCssAnimation ?: boolean ;
3450
3457
zoomAnimationFrames ?: number ;
3458
+ customPalette ?: string [ ] ;
3451
3459
downsample ?: {
3452
3460
threshold ?: number ;
3453
3461
} ;
@@ -3844,6 +3852,8 @@ declare module "vue-data-ui" {
3844
3852
bold ?: boolean ;
3845
3853
offsetY ?: number ;
3846
3854
textAlign ?: TextAlign ;
3855
+ paddingLeft ?: number ;
3856
+ paddingRight ?: number ;
3847
3857
subtitle ?: {
3848
3858
text ?: string ;
3849
3859
color ?: string ;
@@ -3907,6 +3917,7 @@ declare module "vue-data-ui" {
3907
3917
customPalette ?: string [ ] ;
3908
3918
useCssAnimation ?: boolean ;
3909
3919
useStartAnimation ?: boolean ;
3920
+ useBlurOnHover ?: boolean ;
3910
3921
style ?: {
3911
3922
fontFamily ?: string ;
3912
3923
chart ?: {
@@ -4024,7 +4035,7 @@ declare module "vue-data-ui" {
4024
4035
4025
4036
export type VueUiVerticalBarDatasetChild = {
4026
4037
name : string ;
4027
- value : string ;
4038
+ value : number ;
4028
4039
} ;
4029
4040
4030
4041
export type VueUiVerticalBarDatasetItem = {
@@ -4497,7 +4508,7 @@ declare module "vue-data-ui" {
4497
4508
} ;
4498
4509
image ?: {
4499
4510
src ?: string ;
4500
- inactiveOpacity ?: string ;
4511
+ inactiveOpacity ?: number ;
4501
4512
alt ?: string ;
4502
4513
} ;
4503
4514
title ?: {
@@ -4530,6 +4541,7 @@ declare module "vue-data-ui" {
4530
4541
bold ?: boolean ;
4531
4542
roundingValue ?: number ;
4532
4543
formatter ?: Formatter ;
4544
+ boxShadow ?: string ;
4533
4545
} ;
4534
4546
} ;
4535
4547
} ;
@@ -4561,6 +4573,8 @@ declare module "vue-data-ui" {
4561
4573
bold ?: boolean ;
4562
4574
text ?: string ;
4563
4575
offsetY ?: number ;
4576
+ paddingLeft ?: number ;
4577
+ paddingRight ?: number ;
4564
4578
subtitle ?: {
4565
4579
fontSize ?: number ;
4566
4580
color ?: string ;
@@ -4584,6 +4598,7 @@ declare module "vue-data-ui" {
4584
4598
bold ?: boolean ;
4585
4599
roundingValue ?: number ;
4586
4600
formatter ?: Formatter ;
4601
+ boxShadow ?: string ;
4587
4602
} ;
4588
4603
} ;
4589
4604
} ;
@@ -4695,6 +4710,7 @@ declare module "vue-data-ui" {
4695
4710
backgroundColor ?: string ;
4696
4711
color ?: string ;
4697
4712
animated ?: boolean ;
4713
+ maxHeight ?: number ;
4698
4714
circlePack ?: {
4699
4715
color ?: string ;
4700
4716
} ;
@@ -4725,6 +4741,10 @@ declare module "vue-data-ui" {
4725
4741
bar3d ?: {
4726
4742
color ?: string ;
4727
4743
} ;
4744
+ sparkline ?: {
4745
+ color ?: string ;
4746
+ strokeWidth ?: number ;
4747
+ } ;
4728
4748
sparkHistogram ?: {
4729
4749
color ?: string ;
4730
4750
} ;
@@ -5030,6 +5050,7 @@ declare module "vue-data-ui" {
5030
5050
pdf ?: boolean ;
5031
5051
img ?: boolean ;
5032
5052
fullscreen ?: boolean ;
5053
+ annotator ?: boolean ;
5033
5054
} ;
5034
5055
userOptionsButtonTitles ?: {
5035
5056
open ?: string ;
@@ -5038,6 +5059,7 @@ declare module "vue-data-ui" {
5038
5059
pdf ?: string ;
5039
5060
img ?: string ;
5040
5061
fullscreen ?: string ;
5062
+ annotator ?: string ;
5041
5063
} ;
5042
5064
showUserOptionsOnChartHover ?: boolean ;
5043
5065
keepUserOptionsStateOnChartLeave ?: boolean ;
@@ -5295,7 +5317,7 @@ declare module "vue-data-ui" {
5295
5317
} ;
5296
5318
5297
5319
export type VueUiDumbbellConfig = {
5298
- reponsive ?: boolean ;
5320
+ responsive ?: boolean ;
5299
5321
theme ?: Theme ;
5300
5322
useAnimation ?: boolean ;
5301
5323
animationSpeed ?: number ;
@@ -5520,11 +5542,7 @@ declare module "vue-data-ui" {
5520
5542
dashed ?: boolean ;
5521
5543
showHorizontalSelector ?: boolean ;
5522
5544
} ;
5523
- tooltip ?: {
5524
- show ?: boolean ;
5525
- color ?: string ;
5526
- backgroundColor ?: string ;
5527
- fontSize ?: number ;
5545
+ tooltip ?: ChartTooltip & {
5528
5546
customFormat ?:
5529
5547
| null
5530
5548
| ( (
@@ -5534,9 +5552,6 @@ declare module "vue-data-ui" {
5534
5552
VueUiXyConfig
5535
5553
>
5536
5554
) => string ) ;
5537
- borderRadius ?: number ;
5538
- borderColor ?: string ;
5539
- borderWidth ?: number ;
5540
5555
} ;
5541
5556
legend ?: {
5542
5557
backgroundColor ?: string ;
@@ -5968,7 +5983,11 @@ declare module "vue-data-ui" {
5968
5983
hide ?: boolean ;
5969
5984
} ;
5970
5985
thead ?: {
5986
+ style ?: {
5987
+ verticalAlign ?: string ;
5988
+ } ;
5971
5989
tr ?: {
5990
+ height ?: number ;
5972
5991
style ?: {
5973
5992
backgroundColor ?: string ;
5974
5993
color ?: string ;
@@ -6221,62 +6240,65 @@ declare module "vue-data-ui" {
6221
6240
export type VueUiBulletConfig = {
6222
6241
theme ?: Theme ;
6223
6242
userOptions ?: ChartUserOptions ;
6224
- chart ?: {
6225
- backgroundColor ?: string ;
6226
- color ?: string ;
6227
- height ?: number ;
6228
- width ?: number ;
6229
- padding ?: ChartPadding ;
6230
- animation ?: {
6231
- show ?: boolean ;
6232
- animationFrames ?: number ;
6233
- } ;
6234
- segments ?: {
6235
- baseColor ?: string ;
6236
- dataLabels ?: {
6243
+ style ?: {
6244
+ fontFamily ?: string ;
6245
+ chart ?: {
6246
+ backgroundColor ?: string ;
6247
+ color ?: string ;
6248
+ height ?: number ;
6249
+ width ?: number ;
6250
+ padding ?: ChartPadding ;
6251
+ animation ?: {
6237
6252
show ?: boolean ;
6238
- color ?: string ;
6239
- fontSize ?: number ;
6240
- formatter ?: Formatter ;
6241
- bold ?: boolean ;
6242
- prefix ?: string ;
6243
- suffix ?: string ;
6244
- rounding ?: number ;
6245
- offsetY ?: number ;
6253
+ animationFrames ?: number ;
6246
6254
} ;
6247
- ticks ?: {
6248
- show ?: boolean ;
6249
- divisions ?: number ;
6255
+ segments ?: {
6256
+ baseColor ?: string ;
6257
+ dataLabels ?: {
6258
+ show ?: boolean ;
6259
+ color ?: string ;
6260
+ fontSize ?: number ;
6261
+ formatter ?: Formatter ;
6262
+ bold ?: boolean ;
6263
+ prefix ?: string ;
6264
+ suffix ?: string ;
6265
+ rounding ?: number ;
6266
+ offsetY ?: number ;
6267
+ } ;
6268
+ ticks ?: {
6269
+ show ?: boolean ;
6270
+ divisions ?: number ;
6271
+ stroke ?: string ;
6272
+ } ;
6273
+ } ;
6274
+ target ?: {
6275
+ onTop ?: boolean ;
6276
+ color ?: string ;
6277
+ rounded ?: boolean ;
6278
+ heightRatio ?: number ;
6250
6279
stroke ?: string ;
6280
+ strokeWidth ?: number ;
6281
+ width ?: number ;
6251
6282
} ;
6252
- } ;
6253
- target ?: {
6254
- onTop ?: boolean ;
6255
- color ?: string ;
6256
- rounded ?: boolean ;
6257
- heightRatio ?: number ;
6258
- stroke ?: string ;
6259
- strokeWidth ?: number ;
6260
- width ?: number ;
6261
- } ;
6262
- valueBar ?: {
6263
- color ?: string ;
6264
- heightRatio ?: number ;
6265
- stroke ?: string ;
6266
- strokeWidth ?: number ;
6267
- label ?: {
6268
- show ?: boolean ;
6283
+ valueBar ?: {
6269
6284
color ?: string ;
6270
- fontSize ?: number ;
6271
- bold ?: boolean ;
6272
- offsetY ?: number ;
6285
+ heightRatio ?: number ;
6286
+ stroke ?: string ;
6287
+ strokeWidth ?: number ;
6288
+ label ?: {
6289
+ show ?: boolean ;
6290
+ color ?: string ;
6291
+ fontSize ?: number ;
6292
+ bold ?: boolean ;
6293
+ offsetY ?: number ;
6294
+ } ;
6295
+ } ;
6296
+ title ?: ChartTitle ;
6297
+ legend ?: ChartBaseLegend & {
6298
+ roundingValue ?: number ;
6273
6299
} ;
6274
6300
} ;
6275
- title ?: ChartTitle ;
6276
- legend ?: ChartBaseLegend & {
6277
- roundingValue ?: number ;
6278
- } ;
6279
- } ;
6301
+ }
6280
6302
} ;
6281
6303
6282
6304
export const VueUiBullet : DefineComponent < {
@@ -6392,7 +6414,9 @@ declare module "vue-data-ui" {
6392
6414
show ?: boolean ;
6393
6415
responsiveBreakpoint ?: number ;
6394
6416
th ?: ChartTableCell ;
6395
- td ?: ChartTableCell ;
6417
+ td ?: ChartTableCell & {
6418
+ roundingValue ?: number ;
6419
+ } ;
6396
6420
columnNames ?: {
6397
6421
series ?: string ;
6398
6422
datapoint ?: string ;
0 commit comments