@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
@@ -973,7 +973,7 @@ declare const _default: {
973
973
  "description": "Custom border styling",
974
974
  "properties": {
975
975
  "border-bottom-width": {
976
- "description": "Border bottom width",
976
+ "description": "Border bottom width, it is visible when a border style and color are set",
977
977
  "examples": [
978
978
  "0px",
979
979
  "1px",
@@ -982,7 +982,7 @@ declare const _default: {
982
982
  "type": "string"
983
983
  },
984
984
  "border-color": {
985
- "description": "Border color",
985
+ "description": "Border color, it is visible when a border style and width are set",
986
986
  "examples": [
987
987
  "rgba(216, 216, 216, 1)",
988
988
  "rgb(147, 146, 148)"
@@ -990,7 +990,7 @@ declare const _default: {
990
990
  "type": "string"
991
991
  },
992
992
  "border-left-width": {
993
- "description": "Border left width",
993
+ "description": "Border left width, it is visible when a border style and color are set",
994
994
  "examples": [
995
995
  "0px",
996
996
  "1px",
@@ -1008,7 +1008,7 @@ declare const _default: {
1008
1008
  "type": "string"
1009
1009
  },
1010
1010
  "border-right-width": {
1011
- "description": "Border right width",
1011
+ "description": "Border right width, it is visible when a border style and color are set",
1012
1012
  "examples": [
1013
1013
  "0px",
1014
1014
  "1px",
@@ -1017,7 +1017,7 @@ declare const _default: {
1017
1017
  "type": "string"
1018
1018
  },
1019
1019
  "border-style": {
1020
- "description": "Border style",
1020
+ "description": "Border style, it is visible when a border color and width are set",
1021
1021
  "examples": [
1022
1022
  "none",
1023
1023
  "solid",
@@ -1027,7 +1027,7 @@ declare const _default: {
1027
1027
  "type": "string"
1028
1028
  },
1029
1029
  "border-top-width": {
1030
- "description": "Border top width",
1030
+ "description": "Border top width, it is visible when a border style and color are set",
1031
1031
  "examples": [
1032
1032
  "0px",
1033
1033
  "1px",
@@ -1071,19 +1071,6 @@ declare const _default: {
1071
1071
  "font": {
1072
1072
  "description": "Custom font styling",
1073
1073
  "properties": {
1074
- "font-style": {
1075
- "const": "normal",
1076
- "description": "Use it to reset the font style to \"normal\"",
1077
- "type": "string"
1078
- },
1079
- "font-weight": {
1080
- "description": "Font weight",
1081
- "examples": [
1082
- 400,
1083
- 700
1084
- ],
1085
- "type": "number"
1086
- },
1087
1074
  "fontFamily": {
1088
1075
  "description": "Font family",
1089
1076
  "examples": [
@@ -1096,7 +1083,7 @@ declare const _default: {
1096
1083
  "type": "string"
1097
1084
  },
1098
1085
  "fontSize": {
1099
- "description": "Font size in px",
1086
+ "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.",
1100
1087
  "examples": [
1101
1088
  10,
1102
1089
  15,
@@ -1125,7 +1112,7 @@ declare const _default: {
1125
1112
  "type": "string"
1126
1113
  },
1127
1114
  "title": {
1128
- "description": "Custom title styling",
1115
+ "description": "Custom title styling, it's applied if the title is displayed",
1129
1116
  "properties": {
1130
1117
  "align": {
1131
1118
  "description": "Title align",
@@ -1158,7 +1145,7 @@ declare const _default: {
1158
1145
  "type": "boolean"
1159
1146
  },
1160
1147
  "fontSize": {
1161
- "description": "Title's font size in px",
1148
+ "description": "Title's font size in px, if not set, it will be inherited from the \"font\"->\"fontSize\" option",
1162
1149
  "examples": [
1163
1150
  16,
1164
1151
  20
@@ -1194,7 +1181,7 @@ declare const _default: {
1194
1181
  "type": "object"
1195
1182
  },
1196
1183
  "tooltip": {
1197
- "description": "Custom tooltip styling",
1184
+ "description": "Custom tooltip styling, it's applied if the tooltip is turned on",
1198
1185
  "properties": {
1199
1186
  "background": {
1200
1187
  "description": "Tooltip's background",
@@ -1207,16 +1194,7 @@ declare const _default: {
1207
1194
  "type": "string"
1208
1195
  },
1209
1196
  "fontSize": {
1210
- "description": "Tooltip's font size in px",
1211
- "examples": [
1212
- 12,
1213
- 16,
1214
- 20
1215
- ],
1216
- "type": "number"
1217
- },
1218
- "lineHeight": {
1219
- "description": "Tooltip's line height in px",
1197
+ "description": "Tooltip's font size in px, if not set, it will be inherited from the \"font\"->\"fontSize\" option",
1220
1198
  "examples": [
1221
1199
  12,
1222
1200
  16,
@@ -1225,7 +1203,7 @@ declare const _default: {
1225
1203
  "type": "number"
1226
1204
  },
1227
1205
  "opacity": {
1228
- "description": "Tooltip's opacity",
1206
+ "description": "Tooltip's opacity, it should be between 0 and 1, for example, 0.8",
1229
1207
  "examples": [
1230
1208
  0.5,
1231
1209
  0.8,
@@ -1355,7 +1333,7 @@ declare const _default: {
1355
1333
  "type": "string"
1356
1334
  },
1357
1335
  "title": {
1358
- "description": "Title in format { \"locale\": \"title\"}, for example, { \"en\": \"Title\"}",
1336
+ "description": "Title in format { \"locale\": \"title\"}, for example, { \"en\": \"Title\"}. It's applied if the title is displayed.",
1359
1337
  "examples": [
1360
1338
  {
1361
1339
  "en": "Title"