@luzmo/dashboard-contents-types 1.0.5 → 1.0.6

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.
Files changed (88) hide show
  1. package/CHANGELOG.md +41 -0
  2. package/README.md +132 -0
  3. package/assets/json-schemas/area-chart-options.schema.json.d.ts +23 -42
  4. package/assets/json-schemas/bar-chart-options.schema.json.d.ts +23 -42
  5. package/assets/json-schemas/box-plot-options.schema.json.d.ts +20 -39
  6. package/assets/json-schemas/bubble-chart-options.schema.json.d.ts +23 -42
  7. package/assets/json-schemas/bullet-chart-options.schema.json.d.ts +13 -35
  8. package/assets/json-schemas/choropleth-map-options.schema.json.d.ts +16 -38
  9. package/assets/json-schemas/circular-gauge-options.schema.json.d.ts +20 -39
  10. package/assets/json-schemas/column-chart-options.schema.json.d.ts +23 -42
  11. package/assets/json-schemas/combination-chart-options.schema.json.d.ts +23 -42
  12. package/assets/json-schemas/date-filter-options.schema.json.d.ts +10 -23
  13. package/assets/json-schemas/donut-chart-options.schema.json.d.ts +23 -42
  14. package/assets/json-schemas/dropdown-filter-options.schema.json.d.ts +10 -23
  15. package/assets/json-schemas/evolution-number-options.schema.json.d.ts +19 -38
  16. package/assets/json-schemas/funnel-chart-options.schema.json.d.ts +23 -42
  17. package/assets/json-schemas/heat-map-options.schema.json.d.ts +13 -35
  18. package/assets/json-schemas/heat-table-options.schema.json.d.ts +1514 -0
  19. package/assets/json-schemas/heat-table-slots.schema.json.d.ts +514 -0
  20. package/assets/json-schemas/heat-table.schema.json.d.ts +23 -0
  21. package/assets/json-schemas/hexbin-map-options.schema.json.d.ts +20 -39
  22. package/assets/json-schemas/image-options.schema.json.d.ts +7 -7
  23. package/assets/json-schemas/line-chart-options.schema.json.d.ts +23 -42
  24. package/assets/json-schemas/marker-map-options.schema.json.d.ts +13 -35
  25. package/assets/json-schemas/ohlc-chart-options.schema.json.d.ts +1568 -0
  26. package/assets/json-schemas/ohlc-chart-slots.schema.json.d.ts +578 -0
  27. package/assets/json-schemas/ohlc-chart.schema.json.d.ts +23 -0
  28. package/assets/json-schemas/options.schema.json.d.ts +9 -0
  29. package/assets/json-schemas/pivot-table-options.schema.json.d.ts +13 -35
  30. package/assets/json-schemas/regular-table-options.schema.json.d.ts +13 -35
  31. package/assets/json-schemas/route-map-options.schema.json.d.ts +13 -35
  32. package/assets/json-schemas/sankey-diagram-options.schema.json.d.ts +20 -39
  33. package/assets/json-schemas/scatter-plot-options.schema.json.d.ts +23 -42
  34. package/assets/json-schemas/search-filter-options.schema.json.d.ts +10 -23
  35. package/assets/json-schemas/slicer-filter-options.schema.json.d.ts +10 -23
  36. package/assets/json-schemas/slider-filter-options.schema.json.d.ts +10 -23
  37. package/assets/json-schemas/slots.schema.json.d.ts +9 -0
  38. package/assets/json-schemas/speedometer-chart-options.schema.json.d.ts +10 -23
  39. package/assets/json-schemas/spike-map-options.schema.json.d.ts +20 -39
  40. package/assets/json-schemas/sunburst-chart-options.schema.json.d.ts +1419 -0
  41. package/assets/json-schemas/sunburst-chart-slots.schema.json.d.ts +481 -0
  42. package/assets/json-schemas/sunburst-chart.schema.json.d.ts +23 -0
  43. package/assets/json-schemas/symbol-map-options.schema.json.d.ts +20 -39
  44. package/assets/json-schemas/text-options.schema.json.d.ts +8 -21
  45. package/assets/json-schemas/treemap-chart-options.schema.json.d.ts +23 -42
  46. package/assets/json-schemas/video-options.schema.json.d.ts +7 -20
  47. package/assets/json-schemas/wordcloud-chart-options.schema.json.d.ts +22 -41
  48. package/index.js +95 -65
  49. package/index.mjs +12875 -7305
  50. package/json-schemas.d.ts +8181 -4062
  51. package/json-schemas.d.ts.map +1 -1
  52. package/package.json +1 -1
  53. package/src/index.d.ts +1 -1
  54. package/src/index.d.ts.map +1 -1
  55. package/src/lib/heat-table/heat-table-options.d.ts +186 -0
  56. package/src/lib/heat-table/heat-table-options.d.ts.map +1 -0
  57. package/src/lib/heat-table/heat-table-slots.d.ts +41 -0
  58. package/src/lib/heat-table/heat-table-slots.d.ts.map +1 -0
  59. package/src/lib/heat-table/heat-table.d.ts +24 -0
  60. package/src/lib/heat-table/heat-table.d.ts.map +1 -0
  61. package/src/lib/heat-table/index.d.ts +3 -0
  62. package/src/lib/heat-table/index.d.ts.map +1 -1
  63. package/src/lib/ohlc-chart/index.d.ts +3 -0
  64. package/src/lib/ohlc-chart/index.d.ts.map +1 -1
  65. package/src/lib/ohlc-chart/ohlc-chart-options.d.ts +201 -0
  66. package/src/lib/ohlc-chart/ohlc-chart-options.d.ts.map +1 -0
  67. package/src/lib/ohlc-chart/ohlc-chart-slots.d.ts +63 -0
  68. package/src/lib/ohlc-chart/ohlc-chart-slots.d.ts.map +1 -0
  69. package/src/lib/ohlc-chart/ohlc-chart.d.ts +24 -0
  70. package/src/lib/ohlc-chart/ohlc-chart.d.ts.map +1 -0
  71. package/src/lib/shared/legend.d.ts +1 -1
  72. package/src/lib/shared/slots.d.ts +1 -0
  73. package/src/lib/shared/slots.d.ts.map +1 -1
  74. package/src/lib/shared/theme.d.ts +21 -19
  75. package/src/lib/shared/theme.d.ts.map +1 -1
  76. package/src/lib/shared/title.d.ts +1 -1
  77. package/src/lib/sunburst-chart/index.d.ts +3 -0
  78. package/src/lib/sunburst-chart/index.d.ts.map +1 -1
  79. package/src/lib/sunburst-chart/sunburst-chart-options.d.ts +88 -0
  80. package/src/lib/sunburst-chart/sunburst-chart-options.d.ts.map +1 -0
  81. package/src/lib/sunburst-chart/sunburst-chart-slots.d.ts +29 -0
  82. package/src/lib/sunburst-chart/sunburst-chart-slots.d.ts.map +1 -0
  83. package/src/lib/sunburst-chart/sunburst-chart.d.ts +24 -0
  84. package/src/lib/sunburst-chart/sunburst-chart.d.ts.map +1 -0
  85. package/src/options.d.ts +4 -1
  86. package/src/options.d.ts.map +1 -1
  87. package/src/slots.d.ts +0 -35
  88. package/src/slots.d.ts.map +0 -1
@@ -1009,7 +1009,7 @@ declare const _default: {
1009
1009
  "description": "Custom border styling",
1010
1010
  "properties": {
1011
1011
  "border-bottom-width": {
1012
- "description": "Border bottom width",
1012
+ "description": "Border bottom width, it is visible when a border style and color are set",
1013
1013
  "examples": [
1014
1014
  "0px",
1015
1015
  "1px",
@@ -1018,7 +1018,7 @@ declare const _default: {
1018
1018
  "type": "string"
1019
1019
  },
1020
1020
  "border-color": {
1021
- "description": "Border color",
1021
+ "description": "Border color, it is visible when a border style and width are set",
1022
1022
  "examples": [
1023
1023
  "rgba(216, 216, 216, 1)",
1024
1024
  "rgb(147, 146, 148)"
@@ -1026,7 +1026,7 @@ declare const _default: {
1026
1026
  "type": "string"
1027
1027
  },
1028
1028
  "border-left-width": {
1029
- "description": "Border left width",
1029
+ "description": "Border left width, it is visible when a border style and color are set",
1030
1030
  "examples": [
1031
1031
  "0px",
1032
1032
  "1px",
@@ -1044,7 +1044,7 @@ declare const _default: {
1044
1044
  "type": "string"
1045
1045
  },
1046
1046
  "border-right-width": {
1047
- "description": "Border right width",
1047
+ "description": "Border right width, it is visible when a border style and color are set",
1048
1048
  "examples": [
1049
1049
  "0px",
1050
1050
  "1px",
@@ -1053,7 +1053,7 @@ declare const _default: {
1053
1053
  "type": "string"
1054
1054
  },
1055
1055
  "border-style": {
1056
- "description": "Border style",
1056
+ "description": "Border style, it is visible when a border color and width are set",
1057
1057
  "examples": [
1058
1058
  "none",
1059
1059
  "solid",
@@ -1063,7 +1063,7 @@ declare const _default: {
1063
1063
  "type": "string"
1064
1064
  },
1065
1065
  "border-top-width": {
1066
- "description": "Border top width",
1066
+ "description": "Border top width, it is visible when a border style and color are set",
1067
1067
  "examples": [
1068
1068
  "0px",
1069
1069
  "1px",
@@ -1105,12 +1105,15 @@ declare const _default: {
1105
1105
  "type": "object"
1106
1106
  },
1107
1107
  "colors": {
1108
- "description": "Custom color palette",
1108
+ "description": "Custom color palette, an array of colors which may affect different areas of a chart, for example, lines, bars, etc.",
1109
1109
  "examples": [
1110
1110
  [
1111
- "rgb(68, 52, 255)",
1112
- "rgb(68, 52, 255)",
1113
- "rgb(218, 214, 255)"
1111
+ "red",
1112
+ "green",
1113
+ "blue",
1114
+ "yellow",
1115
+ "orange",
1116
+ "purple"
1114
1117
  ]
1115
1118
  ],
1116
1119
  "items": {
@@ -1121,19 +1124,6 @@ declare const _default: {
1121
1124
  "font": {
1122
1125
  "description": "Custom font styling",
1123
1126
  "properties": {
1124
- "font-style": {
1125
- "const": "normal",
1126
- "description": "Use it to reset the font style to \"normal\"",
1127
- "type": "string"
1128
- },
1129
- "font-weight": {
1130
- "description": "Font weight",
1131
- "examples": [
1132
- 400,
1133
- 700
1134
- ],
1135
- "type": "number"
1136
- },
1137
1127
  "fontFamily": {
1138
1128
  "description": "Font family",
1139
1129
  "examples": [
@@ -1146,7 +1136,7 @@ declare const _default: {
1146
1136
  "type": "string"
1147
1137
  },
1148
1138
  "fontSize": {
1149
- "description": "Font size in px",
1139
+ "description": "Font size in px, if not set, it will be inherited from the theme. It can be overridden if more specific \"fontSize\" is set, for example, \"fontSize\" inside options like \"title\", \"axis\", \"legend\", \"tooltip\", etc.",
1150
1140
  "examples": [
1151
1141
  10,
1152
1142
  15,
@@ -1175,7 +1165,7 @@ declare const _default: {
1175
1165
  "type": "string"
1176
1166
  },
1177
1167
  "title": {
1178
- "description": "Custom title styling",
1168
+ "description": "Custom title styling, it's applied if the title is displayed",
1179
1169
  "properties": {
1180
1170
  "align": {
1181
1171
  "description": "Title align",
@@ -1208,7 +1198,7 @@ declare const _default: {
1208
1198
  "type": "boolean"
1209
1199
  },
1210
1200
  "fontSize": {
1211
- "description": "Title's font size in px",
1201
+ "description": "Title's font size in px, if not set, it will be inherited from the \"font\"->\"fontSize\" option",
1212
1202
  "examples": [
1213
1203
  16,
1214
1204
  20
@@ -1244,7 +1234,7 @@ declare const _default: {
1244
1234
  "type": "object"
1245
1235
  },
1246
1236
  "tooltip": {
1247
- "description": "Custom tooltip styling",
1237
+ "description": "Custom tooltip styling, it's applied if the tooltip is turned on",
1248
1238
  "properties": {
1249
1239
  "background": {
1250
1240
  "description": "Tooltip's background",
@@ -1257,16 +1247,7 @@ declare const _default: {
1257
1247
  "type": "string"
1258
1248
  },
1259
1249
  "fontSize": {
1260
- "description": "Tooltip's font size in px",
1261
- "examples": [
1262
- 12,
1263
- 16,
1264
- 20
1265
- ],
1266
- "type": "number"
1267
- },
1268
- "lineHeight": {
1269
- "description": "Tooltip's line height in px",
1250
+ "description": "Tooltip's font size in px, if not set, it will be inherited from the \"font\"->\"fontSize\" option",
1270
1251
  "examples": [
1271
1252
  12,
1272
1253
  16,
@@ -1275,7 +1256,7 @@ declare const _default: {
1275
1256
  "type": "number"
1276
1257
  },
1277
1258
  "opacity": {
1278
- "description": "Tooltip's opacity",
1259
+ "description": "Tooltip's opacity, it should be between 0 and 1, for example, 0.8",
1279
1260
  "examples": [
1280
1261
  0.5,
1281
1262
  0.8,
@@ -1305,7 +1286,7 @@ declare const _default: {
1305
1286
  "type": "string"
1306
1287
  },
1307
1288
  "title": {
1308
- "description": "Title in format { \"locale\": \"title\"}, for example, { \"en\": \"Title\"}",
1289
+ "description": "Title in format { \"locale\": \"title\"}, for example, { \"en\": \"Title\"}. It's applied if the title is displayed.",
1309
1290
  "examples": [
1310
1291
  {
1311
1292
  "en": "Title"
@@ -3221,7 +3221,7 @@ declare const _default: {
3221
3221
  "type": "object"
3222
3222
  },
3223
3223
  "legend": {
3224
- "description": "Legend options",
3224
+ "description": "Legend options, they are applied if the legend is displayed",
3225
3225
  "properties": {
3226
3226
  "position": {
3227
3227
  "description": "Position of the legend. Only available when the legend is shown.",
@@ -3480,7 +3480,7 @@ declare const _default: {
3480
3480
  "description": "Custom border styling",
3481
3481
  "properties": {
3482
3482
  "border-bottom-width": {
3483
- "description": "Border bottom width",
3483
+ "description": "Border bottom width, it is visible when a border style and color are set",
3484
3484
  "examples": [
3485
3485
  "0px",
3486
3486
  "1px",
@@ -3489,7 +3489,7 @@ declare const _default: {
3489
3489
  "type": "string"
3490
3490
  },
3491
3491
  "border-color": {
3492
- "description": "Border color",
3492
+ "description": "Border color, it is visible when a border style and width are set",
3493
3493
  "examples": [
3494
3494
  "rgba(216, 216, 216, 1)",
3495
3495
  "rgb(147, 146, 148)"
@@ -3497,7 +3497,7 @@ declare const _default: {
3497
3497
  "type": "string"
3498
3498
  },
3499
3499
  "border-left-width": {
3500
- "description": "Border left width",
3500
+ "description": "Border left width, it is visible when a border style and color are set",
3501
3501
  "examples": [
3502
3502
  "0px",
3503
3503
  "1px",
@@ -3515,7 +3515,7 @@ declare const _default: {
3515
3515
  "type": "string"
3516
3516
  },
3517
3517
  "border-right-width": {
3518
- "description": "Border right width",
3518
+ "description": "Border right width, it is visible when a border style and color are set",
3519
3519
  "examples": [
3520
3520
  "0px",
3521
3521
  "1px",
@@ -3524,7 +3524,7 @@ declare const _default: {
3524
3524
  "type": "string"
3525
3525
  },
3526
3526
  "border-style": {
3527
- "description": "Border style",
3527
+ "description": "Border style, it is visible when a border color and width are set",
3528
3528
  "examples": [
3529
3529
  "none",
3530
3530
  "solid",
@@ -3534,7 +3534,7 @@ declare const _default: {
3534
3534
  "type": "string"
3535
3535
  },
3536
3536
  "border-top-width": {
3537
- "description": "Border top width",
3537
+ "description": "Border top width, it is visible when a border style and color are set",
3538
3538
  "examples": [
3539
3539
  "0px",
3540
3540
  "1px",
@@ -3576,12 +3576,15 @@ declare const _default: {
3576
3576
  "type": "object"
3577
3577
  },
3578
3578
  "colors": {
3579
- "description": "Custom color palette",
3579
+ "description": "Custom color palette, an array of colors which may affect different areas of a chart, for example, lines, bars, etc.",
3580
3580
  "examples": [
3581
3581
  [
3582
- "rgb(68, 52, 255)",
3583
- "rgb(68, 52, 255)",
3584
- "rgb(218, 214, 255)"
3582
+ "red",
3583
+ "green",
3584
+ "blue",
3585
+ "yellow",
3586
+ "orange",
3587
+ "purple"
3585
3588
  ]
3586
3589
  ],
3587
3590
  "items": {
@@ -3592,19 +3595,6 @@ declare const _default: {
3592
3595
  "font": {
3593
3596
  "description": "Custom font styling",
3594
3597
  "properties": {
3595
- "font-style": {
3596
- "const": "normal",
3597
- "description": "Use it to reset the font style to \"normal\"",
3598
- "type": "string"
3599
- },
3600
- "font-weight": {
3601
- "description": "Font weight",
3602
- "examples": [
3603
- 400,
3604
- 700
3605
- ],
3606
- "type": "number"
3607
- },
3608
3598
  "fontFamily": {
3609
3599
  "description": "Font family",
3610
3600
  "examples": [
@@ -3617,7 +3607,7 @@ declare const _default: {
3617
3607
  "type": "string"
3618
3608
  },
3619
3609
  "fontSize": {
3620
- "description": "Font size in px",
3610
+ "description": "Font size in px, if not set, it will be inherited from the theme. It can be overridden if more specific \"fontSize\" is set, for example, \"fontSize\" inside options like \"title\", \"axis\", \"legend\", \"tooltip\", etc.",
3621
3611
  "examples": [
3622
3612
  10,
3623
3613
  15,
@@ -3646,10 +3636,10 @@ declare const _default: {
3646
3636
  "type": "string"
3647
3637
  },
3648
3638
  "legend": {
3649
- "description": "Custom legend styling",
3639
+ "description": "Custom legend styling, it's applied if the legend is displayed",
3650
3640
  "properties": {
3651
3641
  "fontSize": {
3652
- "description": "Legend font size in px",
3642
+ "description": "Legend font size in px, if not set, it will be inherited from the \"font\"->\"fontSize\" option",
3653
3643
  "examples": [
3654
3644
  12,
3655
3645
  16
@@ -3683,7 +3673,7 @@ declare const _default: {
3683
3673
  "type": "object"
3684
3674
  },
3685
3675
  "title": {
3686
- "description": "Custom title styling",
3676
+ "description": "Custom title styling, it's applied if the title is displayed",
3687
3677
  "properties": {
3688
3678
  "align": {
3689
3679
  "description": "Title align",
@@ -3716,7 +3706,7 @@ declare const _default: {
3716
3706
  "type": "boolean"
3717
3707
  },
3718
3708
  "fontSize": {
3719
- "description": "Title's font size in px",
3709
+ "description": "Title's font size in px, if not set, it will be inherited from the \"font\"->\"fontSize\" option",
3720
3710
  "examples": [
3721
3711
  16,
3722
3712
  20
@@ -3752,7 +3742,7 @@ declare const _default: {
3752
3742
  "type": "object"
3753
3743
  },
3754
3744
  "tooltip": {
3755
- "description": "Custom tooltip styling",
3745
+ "description": "Custom tooltip styling, it's applied if the tooltip is turned on",
3756
3746
  "properties": {
3757
3747
  "background": {
3758
3748
  "description": "Tooltip's background",
@@ -3765,16 +3755,7 @@ declare const _default: {
3765
3755
  "type": "string"
3766
3756
  },
3767
3757
  "fontSize": {
3768
- "description": "Tooltip's font size in px",
3769
- "examples": [
3770
- 12,
3771
- 16,
3772
- 20
3773
- ],
3774
- "type": "number"
3775
- },
3776
- "lineHeight": {
3777
- "description": "Tooltip's line height in px",
3758
+ "description": "Tooltip's font size in px, if not set, it will be inherited from the \"font\"->\"fontSize\" option",
3778
3759
  "examples": [
3779
3760
  12,
3780
3761
  16,
@@ -3783,7 +3764,7 @@ declare const _default: {
3783
3764
  "type": "number"
3784
3765
  },
3785
3766
  "opacity": {
3786
- "description": "Tooltip's opacity",
3767
+ "description": "Tooltip's opacity, it should be between 0 and 1, for example, 0.8",
3787
3768
  "examples": [
3788
3769
  0.5,
3789
3770
  0.8,
@@ -3813,7 +3794,7 @@ declare const _default: {
3813
3794
  "type": "string"
3814
3795
  },
3815
3796
  "title": {
3816
- "description": "Title in format { \"locale\": \"title\"}, for example, { \"en\": \"Title\"}",
3797
+ "description": "Title in format { \"locale\": \"title\"}, for example, { \"en\": \"Title\"}. It's applied if the title is displayed.",
3817
3798
  "examples": [
3818
3799
  {
3819
3800
  "en": "Title"
@@ -1291,7 +1291,7 @@ declare const _default: {
1291
1291
  "type": "object"
1292
1292
  },
1293
1293
  "legend": {
1294
- "description": "Legend options",
1294
+ "description": "Legend options, they are applied if the legend is displayed",
1295
1295
  "properties": {
1296
1296
  "position": {
1297
1297
  "description": "Position of the legend. Only available when the legend is shown.",
@@ -1572,7 +1572,7 @@ declare const _default: {
1572
1572
  "description": "Custom border styling",
1573
1573
  "properties": {
1574
1574
  "border-bottom-width": {
1575
- "description": "Border bottom width",
1575
+ "description": "Border bottom width, it is visible when a border style and color are set",
1576
1576
  "examples": [
1577
1577
  "0px",
1578
1578
  "1px",
@@ -1581,7 +1581,7 @@ declare const _default: {
1581
1581
  "type": "string"
1582
1582
  },
1583
1583
  "border-color": {
1584
- "description": "Border color",
1584
+ "description": "Border color, it is visible when a border style and width are set",
1585
1585
  "examples": [
1586
1586
  "rgba(216, 216, 216, 1)",
1587
1587
  "rgb(147, 146, 148)"
@@ -1589,7 +1589,7 @@ declare const _default: {
1589
1589
  "type": "string"
1590
1590
  },
1591
1591
  "border-left-width": {
1592
- "description": "Border left width",
1592
+ "description": "Border left width, it is visible when a border style and color are set",
1593
1593
  "examples": [
1594
1594
  "0px",
1595
1595
  "1px",
@@ -1607,7 +1607,7 @@ declare const _default: {
1607
1607
  "type": "string"
1608
1608
  },
1609
1609
  "border-right-width": {
1610
- "description": "Border right width",
1610
+ "description": "Border right width, it is visible when a border style and color are set",
1611
1611
  "examples": [
1612
1612
  "0px",
1613
1613
  "1px",
@@ -1616,7 +1616,7 @@ declare const _default: {
1616
1616
  "type": "string"
1617
1617
  },
1618
1618
  "border-style": {
1619
- "description": "Border style",
1619
+ "description": "Border style, it is visible when a border color and width are set",
1620
1620
  "examples": [
1621
1621
  "none",
1622
1622
  "solid",
@@ -1626,7 +1626,7 @@ declare const _default: {
1626
1626
  "type": "string"
1627
1627
  },
1628
1628
  "border-top-width": {
1629
- "description": "Border top width",
1629
+ "description": "Border top width, it is visible when a border style and color are set",
1630
1630
  "examples": [
1631
1631
  "0px",
1632
1632
  "1px",
@@ -1668,12 +1668,15 @@ declare const _default: {
1668
1668
  "type": "object"
1669
1669
  },
1670
1670
  "colors": {
1671
- "description": "Custom color palette",
1671
+ "description": "Custom color palette, an array of colors which may affect different areas of a chart, for example, lines, bars, etc.",
1672
1672
  "examples": [
1673
1673
  [
1674
- "rgb(68, 52, 255)",
1675
- "rgb(68, 52, 255)",
1676
- "rgb(218, 214, 255)"
1674
+ "red",
1675
+ "green",
1676
+ "blue",
1677
+ "yellow",
1678
+ "orange",
1679
+ "purple"
1677
1680
  ]
1678
1681
  ],
1679
1682
  "items": {
@@ -1684,19 +1687,6 @@ declare const _default: {
1684
1687
  "font": {
1685
1688
  "description": "Custom font styling",
1686
1689
  "properties": {
1687
- "font-style": {
1688
- "const": "normal",
1689
- "description": "Use it to reset the font style to \"normal\"",
1690
- "type": "string"
1691
- },
1692
- "font-weight": {
1693
- "description": "Font weight",
1694
- "examples": [
1695
- 400,
1696
- 700
1697
- ],
1698
- "type": "number"
1699
- },
1700
1690
  "fontFamily": {
1701
1691
  "description": "Font family",
1702
1692
  "examples": [
@@ -1709,7 +1699,7 @@ declare const _default: {
1709
1699
  "type": "string"
1710
1700
  },
1711
1701
  "fontSize": {
1712
- "description": "Font size in px",
1702
+ "description": "Font size in px, if not set, it will be inherited from the theme. It can be overridden if more specific \"fontSize\" is set, for example, \"fontSize\" inside options like \"title\", \"axis\", \"legend\", \"tooltip\", etc.",
1713
1703
  "examples": [
1714
1704
  10,
1715
1705
  15,
@@ -1738,10 +1728,10 @@ declare const _default: {
1738
1728
  "type": "string"
1739
1729
  },
1740
1730
  "legend": {
1741
- "description": "Custom legend styling",
1731
+ "description": "Custom legend styling, it's applied if the legend is displayed",
1742
1732
  "properties": {
1743
1733
  "fontSize": {
1744
- "description": "Legend font size in px",
1734
+ "description": "Legend font size in px, if not set, it will be inherited from the \"font\"->\"fontSize\" option",
1745
1735
  "examples": [
1746
1736
  12,
1747
1737
  16
@@ -1775,7 +1765,7 @@ declare const _default: {
1775
1765
  "type": "object"
1776
1766
  },
1777
1767
  "title": {
1778
- "description": "Custom title styling",
1768
+ "description": "Custom title styling, it's applied if the title is displayed",
1779
1769
  "properties": {
1780
1770
  "align": {
1781
1771
  "description": "Title align",
@@ -1808,7 +1798,7 @@ declare const _default: {
1808
1798
  "type": "boolean"
1809
1799
  },
1810
1800
  "fontSize": {
1811
- "description": "Title's font size in px",
1801
+ "description": "Title's font size in px, if not set, it will be inherited from the \"font\"->\"fontSize\" option",
1812
1802
  "examples": [
1813
1803
  16,
1814
1804
  20
@@ -1844,7 +1834,7 @@ declare const _default: {
1844
1834
  "type": "object"
1845
1835
  },
1846
1836
  "tooltip": {
1847
- "description": "Custom tooltip styling",
1837
+ "description": "Custom tooltip styling, it's applied if the tooltip is turned on",
1848
1838
  "properties": {
1849
1839
  "background": {
1850
1840
  "description": "Tooltip's background",
@@ -1857,16 +1847,7 @@ declare const _default: {
1857
1847
  "type": "string"
1858
1848
  },
1859
1849
  "fontSize": {
1860
- "description": "Tooltip's font size in px",
1861
- "examples": [
1862
- 12,
1863
- 16,
1864
- 20
1865
- ],
1866
- "type": "number"
1867
- },
1868
- "lineHeight": {
1869
- "description": "Tooltip's line height in px",
1850
+ "description": "Tooltip's font size in px, if not set, it will be inherited from the \"font\"->\"fontSize\" option",
1870
1851
  "examples": [
1871
1852
  12,
1872
1853
  16,
@@ -1875,7 +1856,7 @@ declare const _default: {
1875
1856
  "type": "number"
1876
1857
  },
1877
1858
  "opacity": {
1878
- "description": "Tooltip's opacity",
1859
+ "description": "Tooltip's opacity, it should be between 0 and 1, for example, 0.8",
1879
1860
  "examples": [
1880
1861
  0.5,
1881
1862
  0.8,
@@ -1905,7 +1886,7 @@ declare const _default: {
1905
1886
  "type": "string"
1906
1887
  },
1907
1888
  "title": {
1908
- "description": "Title in format { \"locale\": \"title\"}, for example, { \"en\": \"Title\"}",
1889
+ "description": "Title in format { \"locale\": \"title\"}, for example, { \"en\": \"Title\"}. It's applied if the title is displayed.",
1909
1890
  "examples": [
1910
1891
  {
1911
1892
  "en": "Title"
@@ -888,7 +888,7 @@ declare const _default: {
888
888
  "description": "Custom border styling",
889
889
  "properties": {
890
890
  "border-bottom-width": {
891
- "description": "Border bottom width",
891
+ "description": "Border bottom width, it is visible when a border style and color are set",
892
892
  "examples": [
893
893
  "0px",
894
894
  "1px",
@@ -897,7 +897,7 @@ declare const _default: {
897
897
  "type": "string"
898
898
  },
899
899
  "border-color": {
900
- "description": "Border color",
900
+ "description": "Border color, it is visible when a border style and width are set",
901
901
  "examples": [
902
902
  "rgba(216, 216, 216, 1)",
903
903
  "rgb(147, 146, 148)"
@@ -905,7 +905,7 @@ declare const _default: {
905
905
  "type": "string"
906
906
  },
907
907
  "border-left-width": {
908
- "description": "Border left width",
908
+ "description": "Border left width, it is visible when a border style and color are set",
909
909
  "examples": [
910
910
  "0px",
911
911
  "1px",
@@ -923,7 +923,7 @@ declare const _default: {
923
923
  "type": "string"
924
924
  },
925
925
  "border-right-width": {
926
- "description": "Border right width",
926
+ "description": "Border right width, it is visible when a border style and color are set",
927
927
  "examples": [
928
928
  "0px",
929
929
  "1px",
@@ -932,7 +932,7 @@ declare const _default: {
932
932
  "type": "string"
933
933
  },
934
934
  "border-style": {
935
- "description": "Border style",
935
+ "description": "Border style, it is visible when a border color and width are set",
936
936
  "examples": [
937
937
  "none",
938
938
  "solid",
@@ -942,7 +942,7 @@ declare const _default: {
942
942
  "type": "string"
943
943
  },
944
944
  "border-top-width": {
945
- "description": "Border top width",
945
+ "description": "Border top width, it is visible when a border style and color are set",
946
946
  "examples": [
947
947
  "0px",
948
948
  "1px",
@@ -986,19 +986,6 @@ declare const _default: {
986
986
  "font": {
987
987
  "description": "Custom font styling",
988
988
  "properties": {
989
- "font-style": {
990
- "const": "normal",
991
- "description": "Use it to reset the font style to \"normal\"",
992
- "type": "string"
993
- },
994
- "font-weight": {
995
- "description": "Font weight",
996
- "examples": [
997
- 400,
998
- 700
999
- ],
1000
- "type": "number"
1001
- },
1002
989
  "fontFamily": {
1003
990
  "description": "Font family",
1004
991
  "examples": [
@@ -1011,7 +998,7 @@ declare const _default: {
1011
998
  "type": "string"
1012
999
  },
1013
1000
  "fontSize": {
1014
- "description": "Font size in px",
1001
+ "description": "Font size in px, if not set, it will be inherited from the theme. It can be overridden if more specific \"fontSize\" is set, for example, \"fontSize\" inside options like \"title\", \"axis\", \"legend\", \"tooltip\", etc.",
1015
1002
  "examples": [
1016
1003
  10,
1017
1004
  15,
@@ -1040,7 +1027,7 @@ declare const _default: {
1040
1027
  "type": "string"
1041
1028
  },
1042
1029
  "title": {
1043
- "description": "Custom title styling",
1030
+ "description": "Custom title styling, it's applied if the title is displayed",
1044
1031
  "properties": {
1045
1032
  "align": {
1046
1033
  "description": "Title align",
@@ -1073,7 +1060,7 @@ declare const _default: {
1073
1060
  "type": "boolean"
1074
1061
  },
1075
1062
  "fontSize": {
1076
- "description": "Title's font size in px",
1063
+ "description": "Title's font size in px, if not set, it will be inherited from the \"font\"->\"fontSize\" option",
1077
1064
  "examples": [
1078
1065
  16,
1079
1066
  20
@@ -1127,7 +1114,7 @@ declare const _default: {
1127
1114
  "type": "string"
1128
1115
  },
1129
1116
  "title": {
1130
- "description": "Title in format { \"locale\": \"title\"}, for example, { \"en\": \"Title\"}",
1117
+ "description": "Title in format { \"locale\": \"title\"}, for example, { \"en\": \"Title\"}. It's applied if the title is displayed.",
1131
1118
  "examples": [
1132
1119
  {
1133
1120
  "en": "Title"