@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
@@ -1158,7 +1158,7 @@ declare const _default: {
1158
1158
  "type": "object"
1159
1159
  },
1160
1160
  "legend": {
1161
- "description": "Legend options",
1161
+ "description": "Legend options, they are applied if the legend is displayed",
1162
1162
  "properties": {
1163
1163
  "position": {
1164
1164
  "description": "Position of the legend. Only available when the legend is shown.",
@@ -1337,7 +1337,7 @@ declare const _default: {
1337
1337
  "description": "Custom border styling",
1338
1338
  "properties": {
1339
1339
  "border-bottom-width": {
1340
- "description": "Border bottom width",
1340
+ "description": "Border bottom width, it is visible when a border style and color are set",
1341
1341
  "examples": [
1342
1342
  "0px",
1343
1343
  "1px",
@@ -1346,7 +1346,7 @@ declare const _default: {
1346
1346
  "type": "string"
1347
1347
  },
1348
1348
  "border-color": {
1349
- "description": "Border color",
1349
+ "description": "Border color, it is visible when a border style and width are set",
1350
1350
  "examples": [
1351
1351
  "rgba(216, 216, 216, 1)",
1352
1352
  "rgb(147, 146, 148)"
@@ -1354,7 +1354,7 @@ declare const _default: {
1354
1354
  "type": "string"
1355
1355
  },
1356
1356
  "border-left-width": {
1357
- "description": "Border left width",
1357
+ "description": "Border left width, it is visible when a border style and color are set",
1358
1358
  "examples": [
1359
1359
  "0px",
1360
1360
  "1px",
@@ -1372,7 +1372,7 @@ declare const _default: {
1372
1372
  "type": "string"
1373
1373
  },
1374
1374
  "border-right-width": {
1375
- "description": "Border right width",
1375
+ "description": "Border right width, it is visible when a border style and color are set",
1376
1376
  "examples": [
1377
1377
  "0px",
1378
1378
  "1px",
@@ -1381,7 +1381,7 @@ declare const _default: {
1381
1381
  "type": "string"
1382
1382
  },
1383
1383
  "border-style": {
1384
- "description": "Border style",
1384
+ "description": "Border style, it is visible when a border color and width are set",
1385
1385
  "examples": [
1386
1386
  "none",
1387
1387
  "solid",
@@ -1391,7 +1391,7 @@ declare const _default: {
1391
1391
  "type": "string"
1392
1392
  },
1393
1393
  "border-top-width": {
1394
- "description": "Border top width",
1394
+ "description": "Border top width, it is visible when a border style and color are set",
1395
1395
  "examples": [
1396
1396
  "0px",
1397
1397
  "1px",
@@ -1433,12 +1433,15 @@ declare const _default: {
1433
1433
  "type": "object"
1434
1434
  },
1435
1435
  "colors": {
1436
- "description": "Custom color palette",
1436
+ "description": "Custom color palette, an array of colors which may affect different areas of a chart, for example, lines, bars, etc.",
1437
1437
  "examples": [
1438
1438
  [
1439
- "rgb(68, 52, 255)",
1440
- "rgb(68, 52, 255)",
1441
- "rgb(218, 214, 255)"
1439
+ "red",
1440
+ "green",
1441
+ "blue",
1442
+ "yellow",
1443
+ "orange",
1444
+ "purple"
1442
1445
  ]
1443
1446
  ],
1444
1447
  "items": {
@@ -1449,19 +1452,6 @@ declare const _default: {
1449
1452
  "font": {
1450
1453
  "description": "Custom font styling",
1451
1454
  "properties": {
1452
- "font-style": {
1453
- "const": "normal",
1454
- "description": "Use it to reset the font style to \"normal\"",
1455
- "type": "string"
1456
- },
1457
- "font-weight": {
1458
- "description": "Font weight",
1459
- "examples": [
1460
- 400,
1461
- 700
1462
- ],
1463
- "type": "number"
1464
- },
1465
1455
  "fontFamily": {
1466
1456
  "description": "Font family",
1467
1457
  "examples": [
@@ -1474,7 +1464,7 @@ declare const _default: {
1474
1464
  "type": "string"
1475
1465
  },
1476
1466
  "fontSize": {
1477
- "description": "Font size in px",
1467
+ "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.",
1478
1468
  "examples": [
1479
1469
  10,
1480
1470
  15,
@@ -1503,10 +1493,10 @@ declare const _default: {
1503
1493
  "type": "string"
1504
1494
  },
1505
1495
  "legend": {
1506
- "description": "Custom legend styling",
1496
+ "description": "Custom legend styling, it's applied if the legend is displayed",
1507
1497
  "properties": {
1508
1498
  "fontSize": {
1509
- "description": "Legend font size in px",
1499
+ "description": "Legend font size in px, if not set, it will be inherited from the \"font\"->\"fontSize\" option",
1510
1500
  "examples": [
1511
1501
  12,
1512
1502
  16
@@ -1540,7 +1530,7 @@ declare const _default: {
1540
1530
  "type": "object"
1541
1531
  },
1542
1532
  "title": {
1543
- "description": "Custom title styling",
1533
+ "description": "Custom title styling, it's applied if the title is displayed",
1544
1534
  "properties": {
1545
1535
  "align": {
1546
1536
  "description": "Title align",
@@ -1573,7 +1563,7 @@ declare const _default: {
1573
1563
  "type": "boolean"
1574
1564
  },
1575
1565
  "fontSize": {
1576
- "description": "Title's font size in px",
1566
+ "description": "Title's font size in px, if not set, it will be inherited from the \"font\"->\"fontSize\" option",
1577
1567
  "examples": [
1578
1568
  16,
1579
1569
  20
@@ -1609,7 +1599,7 @@ declare const _default: {
1609
1599
  "type": "object"
1610
1600
  },
1611
1601
  "tooltip": {
1612
- "description": "Custom tooltip styling",
1602
+ "description": "Custom tooltip styling, it's applied if the tooltip is turned on",
1613
1603
  "properties": {
1614
1604
  "background": {
1615
1605
  "description": "Tooltip's background",
@@ -1622,16 +1612,7 @@ declare const _default: {
1622
1612
  "type": "string"
1623
1613
  },
1624
1614
  "fontSize": {
1625
- "description": "Tooltip's font size in px",
1626
- "examples": [
1627
- 12,
1628
- 16,
1629
- 20
1630
- ],
1631
- "type": "number"
1632
- },
1633
- "lineHeight": {
1634
- "description": "Tooltip's line height in px",
1615
+ "description": "Tooltip's font size in px, if not set, it will be inherited from the \"font\"->\"fontSize\" option",
1635
1616
  "examples": [
1636
1617
  12,
1637
1618
  16,
@@ -1640,7 +1621,7 @@ declare const _default: {
1640
1621
  "type": "number"
1641
1622
  },
1642
1623
  "opacity": {
1643
- "description": "Tooltip's opacity",
1624
+ "description": "Tooltip's opacity, it should be between 0 and 1, for example, 0.8",
1644
1625
  "examples": [
1645
1626
  0.5,
1646
1627
  0.8,
@@ -1670,7 +1651,7 @@ declare const _default: {
1670
1651
  "type": "string"
1671
1652
  },
1672
1653
  "title": {
1673
- "description": "Title in format { \"locale\": \"title\"}, for example, { \"en\": \"Title\"}",
1654
+ "description": "Title in format { \"locale\": \"title\"}, for example, { \"en\": \"Title\"}. It's applied if the title is displayed.",
1674
1655
  "examples": [
1675
1656
  {
1676
1657
  "en": "Title"
@@ -795,7 +795,7 @@ declare const _default: {
795
795
  "description": "Custom border styling",
796
796
  "properties": {
797
797
  "border-bottom-width": {
798
- "description": "Border bottom width",
798
+ "description": "Border bottom width, it is visible when a border style and color are set",
799
799
  "examples": [
800
800
  "0px",
801
801
  "1px",
@@ -804,7 +804,7 @@ declare const _default: {
804
804
  "type": "string"
805
805
  },
806
806
  "border-color": {
807
- "description": "Border color",
807
+ "description": "Border color, it is visible when a border style and width are set",
808
808
  "examples": [
809
809
  "rgba(216, 216, 216, 1)",
810
810
  "rgb(147, 146, 148)"
@@ -812,7 +812,7 @@ declare const _default: {
812
812
  "type": "string"
813
813
  },
814
814
  "border-left-width": {
815
- "description": "Border left width",
815
+ "description": "Border left width, it is visible when a border style and color are set",
816
816
  "examples": [
817
817
  "0px",
818
818
  "1px",
@@ -830,7 +830,7 @@ declare const _default: {
830
830
  "type": "string"
831
831
  },
832
832
  "border-right-width": {
833
- "description": "Border right width",
833
+ "description": "Border right width, it is visible when a border style and color are set",
834
834
  "examples": [
835
835
  "0px",
836
836
  "1px",
@@ -839,7 +839,7 @@ declare const _default: {
839
839
  "type": "string"
840
840
  },
841
841
  "border-style": {
842
- "description": "Border style",
842
+ "description": "Border style, it is visible when a border color and width are set",
843
843
  "examples": [
844
844
  "none",
845
845
  "solid",
@@ -849,7 +849,7 @@ declare const _default: {
849
849
  "type": "string"
850
850
  },
851
851
  "border-top-width": {
852
- "description": "Border top width",
852
+ "description": "Border top width, it is visible when a border style and color are set",
853
853
  "examples": [
854
854
  "0px",
855
855
  "1px",
@@ -893,19 +893,6 @@ declare const _default: {
893
893
  "font": {
894
894
  "description": "Custom font styling",
895
895
  "properties": {
896
- "font-style": {
897
- "const": "normal",
898
- "description": "Use it to reset the font style to \"normal\"",
899
- "type": "string"
900
- },
901
- "font-weight": {
902
- "description": "Font weight",
903
- "examples": [
904
- 400,
905
- 700
906
- ],
907
- "type": "number"
908
- },
909
896
  "fontFamily": {
910
897
  "description": "Font family",
911
898
  "examples": [
@@ -918,7 +905,7 @@ declare const _default: {
918
905
  "type": "string"
919
906
  },
920
907
  "fontSize": {
921
- "description": "Font size in px",
908
+ "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.",
922
909
  "examples": [
923
910
  10,
924
911
  15,
@@ -947,7 +934,7 @@ declare const _default: {
947
934
  "type": "string"
948
935
  },
949
936
  "title": {
950
- "description": "Custom title styling",
937
+ "description": "Custom title styling, it's applied if the title is displayed",
951
938
  "properties": {
952
939
  "align": {
953
940
  "description": "Title align",
@@ -980,7 +967,7 @@ declare const _default: {
980
967
  "type": "boolean"
981
968
  },
982
969
  "fontSize": {
983
- "description": "Title's font size in px",
970
+ "description": "Title's font size in px, if not set, it will be inherited from the \"font\"->\"fontSize\" option",
984
971
  "examples": [
985
972
  16,
986
973
  20
@@ -1034,7 +1021,7 @@ declare const _default: {
1034
1021
  "type": "string"
1035
1022
  },
1036
1023
  "title": {
1037
- "description": "Title in format { \"locale\": \"title\"}, for example, { \"en\": \"Title\"}",
1024
+ "description": "Title in format { \"locale\": \"title\"}, for example, { \"en\": \"Title\"}. It's applied if the title is displayed.",
1038
1025
  "examples": [
1039
1026
  {
1040
1027
  "en": "Title"
@@ -1075,7 +1075,7 @@ declare const _default: {
1075
1075
  "description": "Custom border styling",
1076
1076
  "properties": {
1077
1077
  "border-bottom-width": {
1078
- "description": "Border bottom width",
1078
+ "description": "Border bottom width, it is visible when a border style and color are set",
1079
1079
  "examples": [
1080
1080
  "0px",
1081
1081
  "1px",
@@ -1084,7 +1084,7 @@ declare const _default: {
1084
1084
  "type": "string"
1085
1085
  },
1086
1086
  "border-color": {
1087
- "description": "Border color",
1087
+ "description": "Border color, it is visible when a border style and width are set",
1088
1088
  "examples": [
1089
1089
  "rgba(216, 216, 216, 1)",
1090
1090
  "rgb(147, 146, 148)"
@@ -1092,7 +1092,7 @@ declare const _default: {
1092
1092
  "type": "string"
1093
1093
  },
1094
1094
  "border-left-width": {
1095
- "description": "Border left width",
1095
+ "description": "Border left width, it is visible when a border style and color are set",
1096
1096
  "examples": [
1097
1097
  "0px",
1098
1098
  "1px",
@@ -1110,7 +1110,7 @@ declare const _default: {
1110
1110
  "type": "string"
1111
1111
  },
1112
1112
  "border-right-width": {
1113
- "description": "Border right width",
1113
+ "description": "Border right width, it is visible when a border style and color are set",
1114
1114
  "examples": [
1115
1115
  "0px",
1116
1116
  "1px",
@@ -1119,7 +1119,7 @@ declare const _default: {
1119
1119
  "type": "string"
1120
1120
  },
1121
1121
  "border-style": {
1122
- "description": "Border style",
1122
+ "description": "Border style, it is visible when a border color and width are set",
1123
1123
  "examples": [
1124
1124
  "none",
1125
1125
  "solid",
@@ -1129,7 +1129,7 @@ declare const _default: {
1129
1129
  "type": "string"
1130
1130
  },
1131
1131
  "border-top-width": {
1132
- "description": "Border top width",
1132
+ "description": "Border top width, it is visible when a border style and color are set",
1133
1133
  "examples": [
1134
1134
  "0px",
1135
1135
  "1px",
@@ -1173,19 +1173,6 @@ declare const _default: {
1173
1173
  "font": {
1174
1174
  "description": "Custom font styling",
1175
1175
  "properties": {
1176
- "font-style": {
1177
- "const": "normal",
1178
- "description": "Use it to reset the font style to \"normal\"",
1179
- "type": "string"
1180
- },
1181
- "font-weight": {
1182
- "description": "Font weight",
1183
- "examples": [
1184
- 400,
1185
- 700
1186
- ],
1187
- "type": "number"
1188
- },
1189
1176
  "fontFamily": {
1190
1177
  "description": "Font family",
1191
1178
  "examples": [
@@ -1198,7 +1185,7 @@ declare const _default: {
1198
1185
  "type": "string"
1199
1186
  },
1200
1187
  "fontSize": {
1201
- "description": "Font size in px",
1188
+ "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.",
1202
1189
  "examples": [
1203
1190
  10,
1204
1191
  15,
@@ -1227,7 +1214,7 @@ declare const _default: {
1227
1214
  "type": "string"
1228
1215
  },
1229
1216
  "title": {
1230
- "description": "Custom title styling",
1217
+ "description": "Custom title styling, it's applied if the title is displayed",
1231
1218
  "properties": {
1232
1219
  "align": {
1233
1220
  "description": "Title align",
@@ -1260,7 +1247,7 @@ declare const _default: {
1260
1247
  "type": "boolean"
1261
1248
  },
1262
1249
  "fontSize": {
1263
- "description": "Title's font size in px",
1250
+ "description": "Title's font size in px, if not set, it will be inherited from the \"font\"->\"fontSize\" option",
1264
1251
  "examples": [
1265
1252
  16,
1266
1253
  20
@@ -1314,7 +1301,7 @@ declare const _default: {
1314
1301
  "type": "string"
1315
1302
  },
1316
1303
  "title": {
1317
- "description": "Title in format { \"locale\": \"title\"}, for example, { \"en\": \"Title\"}",
1304
+ "description": "Title in format { \"locale\": \"title\"}, for example, { \"en\": \"Title\"}. It's applied if the title is displayed.",
1318
1305
  "examples": [
1319
1306
  {
1320
1307
  "en": "Title"
@@ -787,7 +787,7 @@ declare const _default: {
787
787
  "description": "Custom border styling",
788
788
  "properties": {
789
789
  "border-bottom-width": {
790
- "description": "Border bottom width",
790
+ "description": "Border bottom width, it is visible when a border style and color are set",
791
791
  "examples": [
792
792
  "0px",
793
793
  "1px",
@@ -796,7 +796,7 @@ declare const _default: {
796
796
  "type": "string"
797
797
  },
798
798
  "border-color": {
799
- "description": "Border color",
799
+ "description": "Border color, it is visible when a border style and width are set",
800
800
  "examples": [
801
801
  "rgba(216, 216, 216, 1)",
802
802
  "rgb(147, 146, 148)"
@@ -804,7 +804,7 @@ declare const _default: {
804
804
  "type": "string"
805
805
  },
806
806
  "border-left-width": {
807
- "description": "Border left width",
807
+ "description": "Border left width, it is visible when a border style and color are set",
808
808
  "examples": [
809
809
  "0px",
810
810
  "1px",
@@ -822,7 +822,7 @@ declare const _default: {
822
822
  "type": "string"
823
823
  },
824
824
  "border-right-width": {
825
- "description": "Border right width",
825
+ "description": "Border right width, it is visible when a border style and color are set",
826
826
  "examples": [
827
827
  "0px",
828
828
  "1px",
@@ -831,7 +831,7 @@ declare const _default: {
831
831
  "type": "string"
832
832
  },
833
833
  "border-style": {
834
- "description": "Border style",
834
+ "description": "Border style, it is visible when a border color and width are set",
835
835
  "examples": [
836
836
  "none",
837
837
  "solid",
@@ -841,7 +841,7 @@ declare const _default: {
841
841
  "type": "string"
842
842
  },
843
843
  "border-top-width": {
844
- "description": "Border top width",
844
+ "description": "Border top width, it is visible when a border style and color are set",
845
845
  "examples": [
846
846
  "0px",
847
847
  "1px",
@@ -885,19 +885,6 @@ declare const _default: {
885
885
  "font": {
886
886
  "description": "Custom font styling",
887
887
  "properties": {
888
- "font-style": {
889
- "const": "normal",
890
- "description": "Use it to reset the font style to \"normal\"",
891
- "type": "string"
892
- },
893
- "font-weight": {
894
- "description": "Font weight",
895
- "examples": [
896
- 400,
897
- 700
898
- ],
899
- "type": "number"
900
- },
901
888
  "fontFamily": {
902
889
  "description": "Font family",
903
890
  "examples": [
@@ -910,7 +897,7 @@ declare const _default: {
910
897
  "type": "string"
911
898
  },
912
899
  "fontSize": {
913
- "description": "Font size in px",
900
+ "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.",
914
901
  "examples": [
915
902
  10,
916
903
  15,
@@ -939,7 +926,7 @@ declare const _default: {
939
926
  "type": "string"
940
927
  },
941
928
  "title": {
942
- "description": "Custom title styling",
929
+ "description": "Custom title styling, it's applied if the title is displayed",
943
930
  "properties": {
944
931
  "align": {
945
932
  "description": "Title align",
@@ -972,7 +959,7 @@ declare const _default: {
972
959
  "type": "boolean"
973
960
  },
974
961
  "fontSize": {
975
- "description": "Title's font size in px",
962
+ "description": "Title's font size in px, if not set, it will be inherited from the \"font\"->\"fontSize\" option",
976
963
  "examples": [
977
964
  16,
978
965
  20
@@ -1026,7 +1013,7 @@ declare const _default: {
1026
1013
  "type": "string"
1027
1014
  },
1028
1015
  "title": {
1029
- "description": "Title in format { \"locale\": \"title\"}, for example, { \"en\": \"Title\"}",
1016
+ "description": "Title in format { \"locale\": \"title\"}, for example, { \"en\": \"Title\"}. It's applied if the title is displayed.",
1030
1017
  "examples": [
1031
1018
  {
1032
1019
  "en": "Title"
@@ -89,11 +89,20 @@ declare const _default: {
89
89
  {
90
90
  "$ref": "https://developer.luzmo.com/assets/json-schemas/0.1.90/spike-map-slots.schema.json"
91
91
  },
92
+ {
93
+ "$ref": "https://developer.luzmo.com/assets/json-schemas/0.1.90/ohlc-chart-slots.schema.json"
94
+ },
95
+ {
96
+ "$ref": "https://developer.luzmo.com/assets/json-schemas/0.1.90/sunburst-chart-slots.schema.json"
97
+ },
92
98
  {
93
99
  "$ref": "https://developer.luzmo.com/assets/json-schemas/0.1.90/speedometer-chart-slots.schema.json"
94
100
  },
95
101
  {
96
102
  "$ref": "https://developer.luzmo.com/assets/json-schemas/0.1.90/treemap-chart-slots.schema.json"
103
+ },
104
+ {
105
+ "$ref": "https://developer.luzmo.com/assets/json-schemas/0.1.90/heat-table-slots.schema.json"
97
106
  }
98
107
  ]
99
108
  };
@@ -1074,7 +1074,7 @@ declare const _default: {
1074
1074
  "description": "Custom border styling",
1075
1075
  "properties": {
1076
1076
  "border-bottom-width": {
1077
- "description": "Border bottom width",
1077
+ "description": "Border bottom width, it is visible when a border style and color are set",
1078
1078
  "examples": [
1079
1079
  "0px",
1080
1080
  "1px",
@@ -1083,7 +1083,7 @@ declare const _default: {
1083
1083
  "type": "string"
1084
1084
  },
1085
1085
  "border-color": {
1086
- "description": "Border color",
1086
+ "description": "Border color, it is visible when a border style and width are set",
1087
1087
  "examples": [
1088
1088
  "rgba(216, 216, 216, 1)",
1089
1089
  "rgb(147, 146, 148)"
@@ -1091,7 +1091,7 @@ declare const _default: {
1091
1091
  "type": "string"
1092
1092
  },
1093
1093
  "border-left-width": {
1094
- "description": "Border left width",
1094
+ "description": "Border left width, it is visible when a border style and color are set",
1095
1095
  "examples": [
1096
1096
  "0px",
1097
1097
  "1px",
@@ -1109,7 +1109,7 @@ declare const _default: {
1109
1109
  "type": "string"
1110
1110
  },
1111
1111
  "border-right-width": {
1112
- "description": "Border right width",
1112
+ "description": "Border right width, it is visible when a border style and color are set",
1113
1113
  "examples": [
1114
1114
  "0px",
1115
1115
  "1px",
@@ -1118,7 +1118,7 @@ declare const _default: {
1118
1118
  "type": "string"
1119
1119
  },
1120
1120
  "border-style": {
1121
- "description": "Border style",
1121
+ "description": "Border style, it is visible when a border color and width are set",
1122
1122
  "examples": [
1123
1123
  "none",
1124
1124
  "solid",
@@ -1128,7 +1128,7 @@ declare const _default: {
1128
1128
  "type": "string"
1129
1129
  },
1130
1130
  "border-top-width": {
1131
- "description": "Border top width",
1131
+ "description": "Border top width, it is visible when a border style and color are set",
1132
1132
  "examples": [
1133
1133
  "0px",
1134
1134
  "1px",
@@ -1172,19 +1172,6 @@ declare const _default: {
1172
1172
  "font": {
1173
1173
  "description": "Custom font styling",
1174
1174
  "properties": {
1175
- "font-style": {
1176
- "const": "normal",
1177
- "description": "Use it to reset the font style to \"normal\"",
1178
- "type": "string"
1179
- },
1180
- "font-weight": {
1181
- "description": "Font weight",
1182
- "examples": [
1183
- 400,
1184
- 700
1185
- ],
1186
- "type": "number"
1187
- },
1188
1175
  "fontFamily": {
1189
1176
  "description": "Font family",
1190
1177
  "examples": [
@@ -1197,7 +1184,7 @@ declare const _default: {
1197
1184
  "type": "string"
1198
1185
  },
1199
1186
  "fontSize": {
1200
- "description": "Font size in px",
1187
+ "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.",
1201
1188
  "examples": [
1202
1189
  10,
1203
1190
  15,
@@ -1226,7 +1213,7 @@ declare const _default: {
1226
1213
  "type": "string"
1227
1214
  },
1228
1215
  "title": {
1229
- "description": "Custom title styling",
1216
+ "description": "Custom title styling, it's applied if the title is displayed",
1230
1217
  "properties": {
1231
1218
  "align": {
1232
1219
  "description": "Title align",
@@ -1259,7 +1246,7 @@ declare const _default: {
1259
1246
  "type": "boolean"
1260
1247
  },
1261
1248
  "fontSize": {
1262
- "description": "Title's font size in px",
1249
+ "description": "Title's font size in px, if not set, it will be inherited from the \"font\"->\"fontSize\" option",
1263
1250
  "examples": [
1264
1251
  16,
1265
1252
  20
@@ -1318,7 +1305,7 @@ declare const _default: {
1318
1305
  "type": "string"
1319
1306
  },
1320
1307
  "title": {
1321
- "description": "Title in format { \"locale\": \"title\"}, for example, { \"en\": \"Title\"}",
1308
+ "description": "Title in format { \"locale\": \"title\"}, for example, { \"en\": \"Title\"}. It's applied if the title is displayed.",
1322
1309
  "examples": [
1323
1310
  {
1324
1311
  "en": "Title"