@luzmo/dashboard-contents-types 0.1.88-beta.7 → 0.1.88

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 (155) hide show
  1. package/assets/json-schemas/area-chart-options.schema.json.d.ts +17 -4
  2. package/assets/json-schemas/bar-chart-options.schema.json.d.ts +19 -10
  3. package/assets/json-schemas/box-plot-options.schema.json.d.ts +14 -5
  4. package/assets/json-schemas/bubble-chart-options.schema.json.d.ts +14 -5
  5. package/assets/json-schemas/bullet-chart-options.schema.json.d.ts +24 -5
  6. package/assets/json-schemas/choropleth-map-options.schema.json.d.ts +24 -9
  7. package/assets/json-schemas/circular-gauge-options.schema.json.d.ts +17 -8
  8. package/assets/json-schemas/column-chart-options.schema.json.d.ts +19 -10
  9. package/assets/json-schemas/combination-chart-options.schema.json.d.ts +19 -6
  10. package/assets/json-schemas/date-filter-options.schema.json.d.ts +0 -2
  11. package/assets/json-schemas/donut-chart-options.schema.json.d.ts +15 -6
  12. package/assets/json-schemas/dropdown-filter-options.schema.json.d.ts +0 -2
  13. package/assets/json-schemas/evolution-number-options.schema.json.d.ts +14 -5
  14. package/assets/json-schemas/funnel-chart-options.schema.json.d.ts +15 -6
  15. package/assets/json-schemas/image-options.schema.json.d.ts +0 -2
  16. package/assets/json-schemas/line-chart-options.schema.json.d.ts +14 -5
  17. package/assets/json-schemas/pivot-table-options.schema.json.d.ts +24 -11
  18. package/assets/json-schemas/regular-table-options.schema.json.d.ts +20 -7
  19. package/assets/json-schemas/sankey-diagram-options.schema.json.d.ts +19 -7
  20. package/assets/json-schemas/scatter-plot-options.schema.json.d.ts +26 -5
  21. package/assets/json-schemas/slicer-filter-options.schema.json.d.ts +5 -7
  22. package/assets/json-schemas/slider-filter-options.schema.json.d.ts +0 -2
  23. package/assets/json-schemas/text-options.schema.json.d.ts +0 -2
  24. package/index.d.ts +1 -0
  25. package/index.js +41 -41
  26. package/index.mjs +319 -131
  27. package/json-schemas.d.ts +178 -105
  28. package/json-schemas.d.ts.map +1 -1
  29. package/package.json +1 -1
  30. package/src/index.d.ts +1 -0
  31. package/src/lib/area-chart/area-chart-options.d.ts +18 -16
  32. package/src/lib/area-chart/area-chart-slots.d.ts +2 -0
  33. package/src/lib/area-chart/area-chart.d.ts +4 -2
  34. package/src/lib/area-chart/index.d.ts +1 -0
  35. package/src/lib/bar-chart/bar-chart-options.d.ts +23 -21
  36. package/src/lib/bar-chart/bar-chart.d.ts +4 -2
  37. package/src/lib/bar-chart/bar-chart.slots.d.ts +2 -0
  38. package/src/lib/bar-chart/index.d.ts +1 -0
  39. package/src/lib/box-plot/box-plot-options.d.ts +17 -15
  40. package/src/lib/box-plot/box-plot-slots.d.ts +2 -0
  41. package/src/lib/box-plot/box-plot.d.ts +4 -2
  42. package/src/lib/box-plot/index.d.ts +1 -0
  43. package/src/lib/bubble-chart/bubble-chart-options.d.ts +16 -14
  44. package/src/lib/bubble-chart/bubble-chart-slots.d.ts +2 -0
  45. package/src/lib/bubble-chart/bubble-chart.d.ts +4 -2
  46. package/src/lib/bubble-chart/index.d.ts +1 -0
  47. package/src/lib/bullet-chart/bullet-chart-options.d.ts +17 -15
  48. package/src/lib/bullet-chart/bullet-chart-slots.d.ts +2 -0
  49. package/src/lib/bullet-chart/bullet-chart.d.ts +4 -2
  50. package/src/lib/bullet-chart/index.d.ts +1 -0
  51. package/src/lib/choropleth-map/choropleth-map-options.d.ts +22 -20
  52. package/src/lib/choropleth-map/choropleth-map-slots.d.ts +2 -0
  53. package/src/lib/choropleth-map/choropleth-map.d.ts +4 -2
  54. package/src/lib/choropleth-map/index.d.ts +1 -0
  55. package/src/lib/circular-gauge/circular-gauge-options.d.ts +15 -13
  56. package/src/lib/circular-gauge/circular-gauge-slots.d.ts +2 -0
  57. package/src/lib/circular-gauge/circular-gauge.d.ts +4 -2
  58. package/src/lib/circular-gauge/index.d.ts +1 -0
  59. package/src/lib/column-chart/column-chart-options.d.ts +23 -21
  60. package/src/lib/column-chart/column-chart-slots.d.ts +2 -0
  61. package/src/lib/column-chart/column-chart.d.ts +4 -2
  62. package/src/lib/column-chart/index.d.ts +1 -0
  63. package/src/lib/combination-chart/combination-chart-options.d.ts +19 -17
  64. package/src/lib/combination-chart/combination-chart-slots.d.ts +2 -0
  65. package/src/lib/combination-chart/combination-chart.d.ts +4 -2
  66. package/src/lib/combination-chart/index.d.ts +1 -0
  67. package/src/lib/conditional-number/conditional-number-options.d.ts +16 -14
  68. package/src/lib/conditional-number/conditional-number-slots.d.ts +2 -0
  69. package/src/lib/conditional-number/conditional-number.d.ts +4 -2
  70. package/src/lib/conditional-number/index.d.ts +1 -0
  71. package/src/lib/date-filter/date-filter-options.d.ts +6 -4
  72. package/src/lib/date-filter/date-filter-slots.d.ts +2 -0
  73. package/src/lib/date-filter/date-filter.d.ts +4 -2
  74. package/src/lib/date-filter/index.d.ts +1 -0
  75. package/src/lib/donut-chart/donut-chart-options.d.ts +18 -16
  76. package/src/lib/donut-chart/donut-chart-slots.d.ts +2 -0
  77. package/src/lib/donut-chart/donut-chart.d.ts +4 -2
  78. package/src/lib/donut-chart/index.d.ts +1 -0
  79. package/src/lib/dropdown-filter/dropdown-filter-options.d.ts +8 -6
  80. package/src/lib/dropdown-filter/dropdown-filter-slots.d.ts +2 -0
  81. package/src/lib/dropdown-filter/dropdown-filter.d.ts +4 -2
  82. package/src/lib/dropdown-filter/index.d.ts +1 -0
  83. package/src/lib/evolution-number/evolution-number-options.d.ts +12 -10
  84. package/src/lib/evolution-number/evolution-number-slots.d.ts +2 -0
  85. package/src/lib/evolution-number/evolution-number.d.ts +4 -2
  86. package/src/lib/evolution-number/index.d.ts +1 -0
  87. package/src/lib/funnel-chart/funnel-chart-options.d.ts +18 -16
  88. package/src/lib/funnel-chart/funnel-chart-slots.d.ts +2 -0
  89. package/src/lib/funnel-chart/funnel-chart.d.ts +4 -2
  90. package/src/lib/funnel-chart/index.d.ts +1 -0
  91. package/src/lib/image/image-options.d.ts +5 -3
  92. package/src/lib/image/image.d.ts +3 -1
  93. package/src/lib/image/index.d.ts +1 -0
  94. package/src/lib/line-chart/index.d.ts +1 -0
  95. package/src/lib/line-chart/line-chart-options.d.ts +17 -15
  96. package/src/lib/line-chart/line-chart-slots.d.ts +2 -0
  97. package/src/lib/line-chart/line-chart.d.ts +4 -2
  98. package/src/lib/pivot-table/index.d.ts +1 -0
  99. package/src/lib/pivot-table/pivot-table-options.d.ts +21 -19
  100. package/src/lib/pivot-table/pivot-table-slots.d.ts +2 -0
  101. package/src/lib/pivot-table/pivot-table.d.ts +4 -2
  102. package/src/lib/regular-table/index.d.ts +1 -0
  103. package/src/lib/regular-table/regular-table-options.d.ts +16 -14
  104. package/src/lib/regular-table/regular-table-slots.d.ts +2 -0
  105. package/src/lib/regular-table/regular-table.d.ts +4 -2
  106. package/src/lib/sankey-diagram/index.d.ts +1 -0
  107. package/src/lib/sankey-diagram/sankey-diagram-options.d.ts +17 -15
  108. package/src/lib/sankey-diagram/sankey-diagram-slots.d.ts +2 -0
  109. package/src/lib/sankey-diagram/sankey-diagram.d.ts +4 -2
  110. package/src/lib/scatter-plot/index.d.ts +1 -0
  111. package/src/lib/scatter-plot/scatter-plot-options.d.ts +18 -16
  112. package/src/lib/scatter-plot/scatter-plot-slots.d.ts +2 -0
  113. package/src/lib/scatter-plot/scatter-plot.d.ts +4 -2
  114. package/src/lib/shared/axes.d.ts +1 -0
  115. package/src/lib/shared/axis-view-options.d.ts +2 -0
  116. package/src/lib/shared/common.d.ts +3 -1
  117. package/src/lib/shared/drop-object-view-options.d.ts +2 -0
  118. package/src/lib/shared/filters.d.ts +1 -0
  119. package/src/lib/shared/formula.d.ts +2 -0
  120. package/src/lib/shared/index.d.ts +1 -0
  121. package/src/lib/shared/info-tooltip-options.d.ts +1 -0
  122. package/src/lib/shared/interactivity-brush.d.ts +1 -0
  123. package/src/lib/shared/interactivity-custom-events.d.ts +2 -0
  124. package/src/lib/shared/interactivity-custom-tooltip.d.ts +1 -0
  125. package/src/lib/shared/interactivity-drilldown.d.ts +2 -0
  126. package/src/lib/shared/interactivity-export.d.ts +3 -2
  127. package/src/lib/shared/interactivity-filter.d.ts +1 -0
  128. package/src/lib/shared/interactivity-go-to-url.d.ts +1 -0
  129. package/src/lib/shared/interactivity-measure-dimension-picker.d.ts +3 -1
  130. package/src/lib/shared/interactivity-target.d.ts +1 -0
  131. package/src/lib/shared/interpolation.d.ts +1 -0
  132. package/src/lib/shared/item-filter-group.d.ts +1 -0
  133. package/src/lib/shared/legend.d.ts +2 -0
  134. package/src/lib/shared/map-object-view-options.d.ts +4 -2
  135. package/src/lib/shared/object-view-options.d.ts +4 -2
  136. package/src/lib/shared/placeholder.d.ts +1 -0
  137. package/src/lib/shared/query.d.ts +1 -0
  138. package/src/lib/shared/ranges.d.ts +1 -0
  139. package/src/lib/shared/slots.d.ts +4 -2
  140. package/src/lib/shared/sort.d.ts +2 -0
  141. package/src/lib/shared/theme.d.ts +2 -1
  142. package/src/lib/shared/title.d.ts +1 -0
  143. package/src/lib/slicer-filter/index.d.ts +1 -0
  144. package/src/lib/slicer-filter/slicer-filter-options.d.ts +15 -13
  145. package/src/lib/slicer-filter/slicer-filter-slots.d.ts +2 -0
  146. package/src/lib/slicer-filter/slicer-filter.d.ts +4 -2
  147. package/src/lib/slider-filter/index.d.ts +1 -0
  148. package/src/lib/slider-filter/slider-filter-options.d.ts +7 -5
  149. package/src/lib/slider-filter/slider-filter-slots.d.ts +2 -0
  150. package/src/lib/slider-filter/slider-filter.d.ts +4 -2
  151. package/src/lib/text/index.d.ts +1 -0
  152. package/src/lib/text/text-options.d.ts +3 -1
  153. package/src/lib/text/text.d.ts +3 -1
  154. package/src/options.d.ts +25 -23
  155. package/src/slots.d.ts +23 -21
@@ -52,6 +52,12 @@ declare const _default: {
52
52
  },
53
53
  "manualAxesRange": {
54
54
  "description": "Set manual axes range",
55
+ "examples": [
56
+ [
57
+ 0,
58
+ 100
59
+ ]
60
+ ],
55
61
  "items": [
56
62
  {
57
63
  "type": "number"
@@ -132,6 +138,12 @@ declare const _default: {
132
138
  },
133
139
  "manualAxesRange": {
134
140
  "description": "Set manual axes range",
141
+ "examples": [
142
+ [
143
+ 0,
144
+ 100
145
+ ]
146
+ ],
135
147
  "items": [
136
148
  {
137
149
  "type": "number"
@@ -1235,7 +1247,10 @@ declare const _default: {
1235
1247
  "type": "array"
1236
1248
  },
1237
1249
  "urlConfig": {
1238
- "default": "{ target: '_blank', url: null }",
1250
+ "default": {
1251
+ "target": "_blank",
1252
+ "url": null
1253
+ },
1239
1254
  "description": "Go to URL interactivity option",
1240
1255
  "properties": {
1241
1256
  "target": {
@@ -1258,7 +1273,7 @@ declare const _default: {
1258
1273
  "type": "object"
1259
1274
  },
1260
1275
  "interpolation": {
1261
- "default": "'linear'",
1276
+ "default": "linear",
1262
1277
  "description": "This option set the interpolation for the area drawn: \"linear\" or \"step-before\" or \"step-after\" or \"monotone\"",
1263
1278
  "enum": [
1264
1279
  "linear",
@@ -1369,8 +1384,6 @@ declare const _default: {
1369
1384
  "background": {
1370
1385
  "description": "Background color",
1371
1386
  "examples": [
1372
- "dark",
1373
- "light",
1374
1387
  "rgb(245, 245, 245)",
1375
1388
  "rgb(61, 61, 61)"
1376
1389
  ],
@@ -18,7 +18,7 @@ declare const _default: {
18
18
  "type": "string"
19
19
  },
20
20
  "scale": {
21
- "default": "'linear'",
21
+ "default": "linear",
22
22
  "description": "X-axis scale type",
23
23
  "enum": [
24
24
  "linear",
@@ -44,7 +44,7 @@ declare const _default: {
44
44
  "type": "string"
45
45
  },
46
46
  "ticksMode": {
47
- "default": "'ticks'",
47
+ "default": "ticks",
48
48
  "description": "Ticks mode of the X-axis",
49
49
  "enum": [
50
50
  "gridlines",
@@ -69,7 +69,7 @@ declare const _default: {
69
69
  "type": "string"
70
70
  },
71
71
  "ticksMode": {
72
- "default": "'ticks'",
72
+ "default": "ticks",
73
73
  "description": "Ticks mode of the Y-axis",
74
74
  "enum": [
75
75
  "gridlines",
@@ -136,7 +136,7 @@ declare const _default: {
136
136
  "description": "Bars options",
137
137
  "properties": {
138
138
  "label": {
139
- "default": "'none'",
139
+ "default": "none",
140
140
  "description": "Bar label options",
141
141
  "enum": [
142
142
  "none",
@@ -334,7 +334,11 @@ declare const _default: {
334
334
  "description": "Interactivity options",
335
335
  "properties": {
336
336
  "availableExportTypes": {
337
- "default": "['xlsx', 'csv', 'png']",
337
+ "default": [
338
+ "xlsx",
339
+ "csv",
340
+ "png"
341
+ ],
338
342
  "description": "Available export types interactivity option",
339
343
  "items": {
340
344
  "description": "Export types",
@@ -2499,7 +2503,11 @@ declare const _default: {
2499
2503
  "type": "object"
2500
2504
  },
2501
2505
  "exportTypes": {
2502
- "default": "['xlsx', 'csv', 'png']",
2506
+ "default": [
2507
+ "xlsx",
2508
+ "csv",
2509
+ "png"
2510
+ ],
2503
2511
  "description": "Export types interactivity option",
2504
2512
  "items": {
2505
2513
  "description": "Export types",
@@ -3153,7 +3161,10 @@ declare const _default: {
3153
3161
  "type": "boolean"
3154
3162
  },
3155
3163
  "urlConfig": {
3156
- "default": "{ target: '_blank', url: null }",
3164
+ "default": {
3165
+ "target": "_blank",
3166
+ "url": null
3167
+ },
3157
3168
  "description": "Go to URL interactivity option",
3158
3169
  "properties": {
3159
3170
  "target": {
@@ -3239,7 +3250,7 @@ declare const _default: {
3239
3250
  "type": "array"
3240
3251
  },
3241
3252
  "mode": {
3242
- "default": "'grouped'",
3253
+ "default": "grouped",
3243
3254
  "description": "Mode of the Bar chart: grouped, stacked or 100% stacked",
3244
3255
  "enum": [
3245
3256
  "100",
@@ -3368,8 +3379,6 @@ declare const _default: {
3368
3379
  "background": {
3369
3380
  "description": "Background color",
3370
3381
  "examples": [
3371
- "dark",
3372
- "light",
3373
3382
  "rgb(245, 245, 245)",
3374
3383
  "rgb(61, 61, 61)"
3375
3384
  ],
@@ -269,7 +269,11 @@ declare const _default: {
269
269
  "description": "Interactivity options",
270
270
  "properties": {
271
271
  "availableExportTypes": {
272
- "default": "['xlsx', 'csv', 'png']",
272
+ "default": [
273
+ "xlsx",
274
+ "csv",
275
+ "png"
276
+ ],
273
277
  "description": "Available export types interactivity option",
274
278
  "items": {
275
279
  "description": "Export types",
@@ -374,7 +378,11 @@ declare const _default: {
374
378
  "type": "object"
375
379
  },
376
380
  "exportTypes": {
377
- "default": "['xlsx', 'csv', 'png']",
381
+ "default": [
382
+ "xlsx",
383
+ "csv",
384
+ "png"
385
+ ],
378
386
  "description": "Export types interactivity option",
379
387
  "items": {
380
388
  "description": "Export types",
@@ -1023,7 +1031,10 @@ declare const _default: {
1023
1031
  "type": "array"
1024
1032
  },
1025
1033
  "urlConfig": {
1026
- "default": "{ target: '_blank', url: null }",
1034
+ "default": {
1035
+ "target": "_blank",
1036
+ "url": null
1037
+ },
1027
1038
  "description": "Go to URL interactivity option",
1028
1039
  "properties": {
1029
1040
  "target": {
@@ -1213,8 +1224,6 @@ declare const _default: {
1213
1224
  "background": {
1214
1225
  "description": "Background color",
1215
1226
  "examples": [
1216
- "dark",
1217
- "light",
1218
1227
  "rgb(245, 245, 245)",
1219
1228
  "rgb(61, 61, 61)"
1220
1229
  ],
@@ -52,7 +52,11 @@ declare const _default: {
52
52
  "description": "Interactivity options",
53
53
  "properties": {
54
54
  "availableExportTypes": {
55
- "default": "['xlsx', 'csv', 'png']",
55
+ "default": [
56
+ "xlsx",
57
+ "csv",
58
+ "png"
59
+ ],
56
60
  "description": "Available export types interactivity option",
57
61
  "items": {
58
62
  "description": "Export types",
@@ -2217,7 +2221,11 @@ declare const _default: {
2217
2221
  "type": "object"
2218
2222
  },
2219
2223
  "exportTypes": {
2220
- "default": "['xlsx', 'csv', 'png']",
2224
+ "default": [
2225
+ "xlsx",
2226
+ "csv",
2227
+ "png"
2228
+ ],
2221
2229
  "description": "Export types interactivity option",
2222
2230
  "items": {
2223
2231
  "description": "Export types",
@@ -2871,7 +2879,10 @@ declare const _default: {
2871
2879
  "type": "boolean"
2872
2880
  },
2873
2881
  "urlConfig": {
2874
- "default": "{ target: '_blank', url: null }",
2882
+ "default": {
2883
+ "target": "_blank",
2884
+ "url": null
2885
+ },
2875
2886
  "description": "Go to URL interactivity option",
2876
2887
  "properties": {
2877
2888
  "target": {
@@ -2960,8 +2971,6 @@ declare const _default: {
2960
2971
  "background": {
2961
2972
  "description": "Background color",
2962
2973
  "examples": [
2963
- "dark",
2964
- "light",
2965
2974
  "rgb(245, 245, 245)",
2966
2975
  "rgb(61, 61, 61)"
2967
2976
  ],
@@ -31,7 +31,11 @@ declare const _default: {
31
31
  "description": "Interactivity options",
32
32
  "properties": {
33
33
  "availableExportTypes": {
34
- "default": "['xlsx', 'csv', 'png']",
34
+ "default": [
35
+ "xlsx",
36
+ "csv",
37
+ "png"
38
+ ],
35
39
  "description": "Available export types interactivity option",
36
40
  "items": {
37
41
  "description": "Export types",
@@ -131,7 +135,11 @@ declare const _default: {
131
135
  "type": "object"
132
136
  },
133
137
  "exportTypes": {
134
- "default": "['xlsx', 'csv', 'png']",
138
+ "default": [
139
+ "xlsx",
140
+ "csv",
141
+ "png"
142
+ ],
135
143
  "description": "Export types interactivity option",
136
144
  "items": {
137
145
  "description": "Export types",
@@ -780,7 +788,10 @@ declare const _default: {
780
788
  "type": "array"
781
789
  },
782
790
  "urlConfig": {
783
- "default": "{ target: '_blank', url: null }",
791
+ "default": {
792
+ "target": "_blank",
793
+ "url": null
794
+ },
784
795
  "description": "Go to URL interactivity option",
785
796
  "properties": {
786
797
  "target": {
@@ -846,6 +857,11 @@ declare const _default: {
846
857
  "type": "array"
847
858
  },
848
859
  "subtitle": {
860
+ "examples": [
861
+ {
862
+ "en": "Total Revenue"
863
+ }
864
+ ],
849
865
  "type": "object"
850
866
  },
851
867
  "target": {
@@ -853,6 +869,11 @@ declare const _default: {
853
869
  "type": "number"
854
870
  },
855
871
  "title": {
872
+ "examples": [
873
+ {
874
+ "en": "Revenue"
875
+ }
876
+ ],
856
877
  "type": "object"
857
878
  }
858
879
  },
@@ -958,8 +979,6 @@ declare const _default: {
958
979
  "background": {
959
980
  "description": "Background color",
960
981
  "examples": [
961
- "dark",
962
- "light",
963
982
  "rgb(245, 245, 245)",
964
983
  "rgb(61, 61, 61)"
965
984
  ],
@@ -3,7 +3,7 @@ declare const _default: {
3
3
  "$schema": "http://json-schema.org/draft-07/schema#",
4
4
  "properties": {
5
5
  "classification": {
6
- "default": "'quantile'",
6
+ "default": "quantile",
7
7
  "description": "Classification options: quantile, interval, continuous or manual",
8
8
  "enum": [
9
9
  "continuous",
@@ -18,7 +18,7 @@ declare const _default: {
18
18
  "type": "string"
19
19
  },
20
20
  "colorsClass": {
21
- "default": "'PuBu'",
21
+ "default": "PuBu",
22
22
  "description": "Set classes on the colors",
23
23
  "type": "string"
24
24
  },
@@ -67,8 +67,11 @@ declare const _default: {
67
67
  "type": "boolean"
68
68
  },
69
69
  "color": {
70
- "default": "'rgb(255,255,255)'",
70
+ "default": "rgb(255,255,255)",
71
71
  "description": "If enabled, color of the highlight",
72
+ "examples": [
73
+ "#000000"
74
+ ],
72
75
  "type": "string"
73
76
  }
74
77
  },
@@ -78,7 +81,11 @@ declare const _default: {
78
81
  "description": "Interactivity options",
79
82
  "properties": {
80
83
  "availableExportTypes": {
81
- "default": "['xlsx', 'csv', 'png']",
84
+ "default": [
85
+ "xlsx",
86
+ "csv",
87
+ "png"
88
+ ],
82
89
  "description": "Available export types interactivity option",
83
90
  "items": {
84
91
  "description": "Export types",
@@ -178,7 +185,11 @@ declare const _default: {
178
185
  "type": "object"
179
186
  },
180
187
  "exportTypes": {
181
- "default": "['xlsx', 'csv', 'png']",
188
+ "default": [
189
+ "xlsx",
190
+ "csv",
191
+ "png"
192
+ ],
182
193
  "description": "Export types interactivity option",
183
194
  "items": {
184
195
  "description": "Export types",
@@ -832,7 +843,10 @@ declare const _default: {
832
843
  "type": "boolean"
833
844
  },
834
845
  "urlConfig": {
835
- "default": "{ target: '_blank', url: null }",
846
+ "default": {
847
+ "target": "_blank",
848
+ "url": null
849
+ },
836
850
  "description": "Go to URL interactivity option",
837
851
  "properties": {
838
852
  "target": {
@@ -978,8 +992,11 @@ declare const _default: {
978
992
  "type": "object"
979
993
  },
980
994
  "strokeColor": {
981
- "default": "'rgba(0,0,0,.3)'",
995
+ "default": "rgba(0,0,0,.3)",
982
996
  "description": "Stroke color of the map",
997
+ "examples": [
998
+ "#000000"
999
+ ],
983
1000
  "type": "string"
984
1001
  },
985
1002
  "theme": {
@@ -1000,8 +1017,6 @@ declare const _default: {
1000
1017
  "background": {
1001
1018
  "description": "Background color",
1002
1019
  "examples": [
1003
- "dark",
1004
- "light",
1005
1020
  "rgb(245, 245, 245)",
1006
1021
  "rgb(61, 61, 61)"
1007
1022
  ],
@@ -6,7 +6,7 @@ declare const _default: {
6
6
  "description": "Circle configuration of the Circular Gauge",
7
7
  "properties": {
8
8
  "background": {
9
- "default": "'rgba(0,0,0,.1)'",
9
+ "default": "rgba(0,0,0,.1)",
10
10
  "description": "Background color of the circle",
11
11
  "type": "string"
12
12
  },
@@ -32,7 +32,7 @@ declare const _default: {
32
32
  },
33
33
  "lineCap": {
34
34
  "const": "round",
35
- "default": "'round'",
35
+ "default": "round",
36
36
  "description": "Line cap of the circle",
37
37
  "type": "string"
38
38
  },
@@ -83,7 +83,11 @@ declare const _default: {
83
83
  "description": "Interactivity options",
84
84
  "properties": {
85
85
  "availableExportTypes": {
86
- "default": "['xlsx', 'csv', 'png']",
86
+ "default": [
87
+ "xlsx",
88
+ "csv",
89
+ "png"
90
+ ],
87
91
  "description": "Available export types interactivity option",
88
92
  "items": {
89
93
  "description": "Export types",
@@ -178,7 +182,11 @@ declare const _default: {
178
182
  "type": "object"
179
183
  },
180
184
  "exportTypes": {
181
- "default": "['xlsx', 'csv', 'png']",
185
+ "default": [
186
+ "xlsx",
187
+ "csv",
188
+ "png"
189
+ ],
182
190
  "description": "Export types interactivity option",
183
191
  "items": {
184
192
  "description": "Export types",
@@ -827,7 +835,10 @@ declare const _default: {
827
835
  "type": "array"
828
836
  },
829
837
  "urlConfig": {
830
- "default": "{ target: '_blank', url: null }",
838
+ "default": {
839
+ "target": "_blank",
840
+ "url": null
841
+ },
831
842
  "description": "Go to URL interactivity option",
832
843
  "properties": {
833
844
  "target": {
@@ -881,7 +892,7 @@ declare const _default: {
881
892
  "type": "object"
882
893
  },
883
894
  "mode": {
884
- "default": "'normal'",
895
+ "default": "normal",
885
896
  "description": "Mode of the Circular Gauge: normal, percentage or difference",
886
897
  "enum": [
887
898
  "difference",
@@ -908,8 +919,6 @@ declare const _default: {
908
919
  "background": {
909
920
  "description": "Background color",
910
921
  "examples": [
911
- "dark",
912
- "light",
913
922
  "rgb(245, 245, 245)",
914
923
  "rgb(61, 61, 61)"
915
924
  ],
@@ -17,7 +17,7 @@ declare const _default: {
17
17
  "type": "string"
18
18
  },
19
19
  "ticksMode": {
20
- "default": "'ticks'",
20
+ "default": "ticks",
21
21
  "description": "Ticks mode of the X-axis",
22
22
  "enum": [
23
23
  "gridlines",
@@ -42,7 +42,7 @@ declare const _default: {
42
42
  "type": "string"
43
43
  },
44
44
  "scale": {
45
- "default": "'linear'",
45
+ "default": "linear",
46
46
  "description": "Y-axis scale type",
47
47
  "enum": [
48
48
  "linear",
@@ -68,7 +68,7 @@ declare const _default: {
68
68
  "type": "string"
69
69
  },
70
70
  "ticksMode": {
71
- "default": "'ticks'",
71
+ "default": "ticks",
72
72
  "description": "Ticks mode of the Y-axis",
73
73
  "enum": [
74
74
  "gridlines",
@@ -135,7 +135,7 @@ declare const _default: {
135
135
  "description": "Bars options",
136
136
  "properties": {
137
137
  "label": {
138
- "default": "'none'",
138
+ "default": "none",
139
139
  "description": "Bar label options",
140
140
  "enum": [
141
141
  "none",
@@ -333,7 +333,11 @@ declare const _default: {
333
333
  "description": "Interactivity options",
334
334
  "properties": {
335
335
  "availableExportTypes": {
336
- "default": "['xlsx', 'csv', 'png']",
336
+ "default": [
337
+ "xlsx",
338
+ "csv",
339
+ "png"
340
+ ],
337
341
  "description": "Available export types interactivity option",
338
342
  "items": {
339
343
  "description": "Export types",
@@ -2498,7 +2502,11 @@ declare const _default: {
2498
2502
  "type": "object"
2499
2503
  },
2500
2504
  "exportTypes": {
2501
- "default": "['xlsx', 'csv', 'png']",
2505
+ "default": [
2506
+ "xlsx",
2507
+ "csv",
2508
+ "png"
2509
+ ],
2502
2510
  "description": "Export types interactivity option",
2503
2511
  "items": {
2504
2512
  "description": "Export types",
@@ -3152,7 +3160,10 @@ declare const _default: {
3152
3160
  "type": "boolean"
3153
3161
  },
3154
3162
  "urlConfig": {
3155
- "default": "{ target: '_blank', url: null }",
3163
+ "default": {
3164
+ "target": "_blank",
3165
+ "url": null
3166
+ },
3156
3167
  "description": "Go to URL interactivity option",
3157
3168
  "properties": {
3158
3169
  "target": {
@@ -3238,7 +3249,7 @@ declare const _default: {
3238
3249
  "type": "array"
3239
3250
  },
3240
3251
  "mode": {
3241
- "default": "'grouped'",
3252
+ "default": "grouped",
3242
3253
  "description": "Mode of the Column chart: grouped, stacked or 100% stacked",
3243
3254
  "enum": [
3244
3255
  "100",
@@ -3367,8 +3378,6 @@ declare const _default: {
3367
3378
  "background": {
3368
3379
  "description": "Background color",
3369
3380
  "examples": [
3370
- "dark",
3371
- "light",
3372
3381
  "rgb(245, 245, 245)",
3373
3382
  "rgb(61, 61, 61)"
3374
3383
  ],
@@ -468,7 +468,11 @@ declare const _default: {
468
468
  "description": "Interactivity options",
469
469
  "properties": {
470
470
  "availableExportTypes": {
471
- "default": "['xlsx', 'csv', 'png']",
471
+ "default": [
472
+ "xlsx",
473
+ "csv",
474
+ "png"
475
+ ],
472
476
  "description": "Available export types interactivity option",
473
477
  "items": {
474
478
  "description": "Export types",
@@ -573,7 +577,11 @@ declare const _default: {
573
577
  "type": "object"
574
578
  },
575
579
  "exportTypes": {
576
- "default": "['xlsx', 'csv', 'png']",
580
+ "default": [
581
+ "xlsx",
582
+ "csv",
583
+ "png"
584
+ ],
577
585
  "description": "Export types interactivity option",
578
586
  "items": {
579
587
  "description": "Export types",
@@ -1222,7 +1230,10 @@ declare const _default: {
1222
1230
  "type": "array"
1223
1231
  },
1224
1232
  "urlConfig": {
1225
- "default": "{ target: '_blank', url: null }",
1233
+ "default": {
1234
+ "target": "_blank",
1235
+ "url": null
1236
+ },
1226
1237
  "description": "Go to URL interactivity option",
1227
1238
  "properties": {
1228
1239
  "target": {
@@ -1413,7 +1424,11 @@ declare const _default: {
1413
1424
  "type": "boolean"
1414
1425
  },
1415
1426
  "ranking": {
1416
- "default": "{ active: false, direction: 'top', number: 10 }",
1427
+ "default": {
1428
+ "active": false,
1429
+ "direction": "top",
1430
+ "number": 10
1431
+ },
1417
1432
  "description": "Item query ranking",
1418
1433
  "properties": {
1419
1434
  "active": {
@@ -1453,8 +1468,6 @@ declare const _default: {
1453
1468
  "background": {
1454
1469
  "description": "Background color",
1455
1470
  "examples": [
1456
- "dark",
1457
- "light",
1458
1471
  "rgb(245, 245, 245)",
1459
1472
  "rgb(61, 61, 61)"
1460
1473
  ],
@@ -798,8 +798,6 @@ declare const _default: {
798
798
  "background": {
799
799
  "description": "Background color",
800
800
  "examples": [
801
- "dark",
802
- "light",
803
801
  "rgb(245, 245, 245)",
804
802
  "rgb(61, 61, 61)"
805
803
  ],