@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.
- package/assets/json-schemas/area-chart-options.schema.json.d.ts +17 -4
- package/assets/json-schemas/bar-chart-options.schema.json.d.ts +19 -10
- package/assets/json-schemas/box-plot-options.schema.json.d.ts +14 -5
- package/assets/json-schemas/bubble-chart-options.schema.json.d.ts +14 -5
- package/assets/json-schemas/bullet-chart-options.schema.json.d.ts +24 -5
- package/assets/json-schemas/choropleth-map-options.schema.json.d.ts +24 -9
- package/assets/json-schemas/circular-gauge-options.schema.json.d.ts +17 -8
- package/assets/json-schemas/column-chart-options.schema.json.d.ts +19 -10
- package/assets/json-schemas/combination-chart-options.schema.json.d.ts +19 -6
- package/assets/json-schemas/date-filter-options.schema.json.d.ts +0 -2
- package/assets/json-schemas/donut-chart-options.schema.json.d.ts +15 -6
- package/assets/json-schemas/dropdown-filter-options.schema.json.d.ts +0 -2
- package/assets/json-schemas/evolution-number-options.schema.json.d.ts +14 -5
- package/assets/json-schemas/funnel-chart-options.schema.json.d.ts +15 -6
- package/assets/json-schemas/image-options.schema.json.d.ts +0 -2
- package/assets/json-schemas/line-chart-options.schema.json.d.ts +14 -5
- package/assets/json-schemas/pivot-table-options.schema.json.d.ts +24 -11
- package/assets/json-schemas/regular-table-options.schema.json.d.ts +20 -7
- package/assets/json-schemas/sankey-diagram-options.schema.json.d.ts +19 -7
- package/assets/json-schemas/scatter-plot-options.schema.json.d.ts +26 -5
- package/assets/json-schemas/slicer-filter-options.schema.json.d.ts +5 -7
- package/assets/json-schemas/slider-filter-options.schema.json.d.ts +0 -2
- package/assets/json-schemas/text-options.schema.json.d.ts +0 -2
- package/index.d.ts +1 -0
- package/index.js +41 -41
- package/index.mjs +319 -131
- package/json-schemas.d.ts +178 -105
- package/json-schemas.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/index.d.ts +1 -0
- package/src/lib/area-chart/area-chart-options.d.ts +18 -16
- package/src/lib/area-chart/area-chart-slots.d.ts +2 -0
- package/src/lib/area-chart/area-chart.d.ts +4 -2
- package/src/lib/area-chart/index.d.ts +1 -0
- package/src/lib/bar-chart/bar-chart-options.d.ts +23 -21
- package/src/lib/bar-chart/bar-chart.d.ts +4 -2
- package/src/lib/bar-chart/bar-chart.slots.d.ts +2 -0
- package/src/lib/bar-chart/index.d.ts +1 -0
- package/src/lib/box-plot/box-plot-options.d.ts +17 -15
- package/src/lib/box-plot/box-plot-slots.d.ts +2 -0
- package/src/lib/box-plot/box-plot.d.ts +4 -2
- package/src/lib/box-plot/index.d.ts +1 -0
- package/src/lib/bubble-chart/bubble-chart-options.d.ts +16 -14
- package/src/lib/bubble-chart/bubble-chart-slots.d.ts +2 -0
- package/src/lib/bubble-chart/bubble-chart.d.ts +4 -2
- package/src/lib/bubble-chart/index.d.ts +1 -0
- package/src/lib/bullet-chart/bullet-chart-options.d.ts +17 -15
- package/src/lib/bullet-chart/bullet-chart-slots.d.ts +2 -0
- package/src/lib/bullet-chart/bullet-chart.d.ts +4 -2
- package/src/lib/bullet-chart/index.d.ts +1 -0
- package/src/lib/choropleth-map/choropleth-map-options.d.ts +22 -20
- package/src/lib/choropleth-map/choropleth-map-slots.d.ts +2 -0
- package/src/lib/choropleth-map/choropleth-map.d.ts +4 -2
- package/src/lib/choropleth-map/index.d.ts +1 -0
- package/src/lib/circular-gauge/circular-gauge-options.d.ts +15 -13
- package/src/lib/circular-gauge/circular-gauge-slots.d.ts +2 -0
- package/src/lib/circular-gauge/circular-gauge.d.ts +4 -2
- package/src/lib/circular-gauge/index.d.ts +1 -0
- package/src/lib/column-chart/column-chart-options.d.ts +23 -21
- package/src/lib/column-chart/column-chart-slots.d.ts +2 -0
- package/src/lib/column-chart/column-chart.d.ts +4 -2
- package/src/lib/column-chart/index.d.ts +1 -0
- package/src/lib/combination-chart/combination-chart-options.d.ts +19 -17
- package/src/lib/combination-chart/combination-chart-slots.d.ts +2 -0
- package/src/lib/combination-chart/combination-chart.d.ts +4 -2
- package/src/lib/combination-chart/index.d.ts +1 -0
- package/src/lib/conditional-number/conditional-number-options.d.ts +16 -14
- package/src/lib/conditional-number/conditional-number-slots.d.ts +2 -0
- package/src/lib/conditional-number/conditional-number.d.ts +4 -2
- package/src/lib/conditional-number/index.d.ts +1 -0
- package/src/lib/date-filter/date-filter-options.d.ts +6 -4
- package/src/lib/date-filter/date-filter-slots.d.ts +2 -0
- package/src/lib/date-filter/date-filter.d.ts +4 -2
- package/src/lib/date-filter/index.d.ts +1 -0
- package/src/lib/donut-chart/donut-chart-options.d.ts +18 -16
- package/src/lib/donut-chart/donut-chart-slots.d.ts +2 -0
- package/src/lib/donut-chart/donut-chart.d.ts +4 -2
- package/src/lib/donut-chart/index.d.ts +1 -0
- package/src/lib/dropdown-filter/dropdown-filter-options.d.ts +8 -6
- package/src/lib/dropdown-filter/dropdown-filter-slots.d.ts +2 -0
- package/src/lib/dropdown-filter/dropdown-filter.d.ts +4 -2
- package/src/lib/dropdown-filter/index.d.ts +1 -0
- package/src/lib/evolution-number/evolution-number-options.d.ts +12 -10
- package/src/lib/evolution-number/evolution-number-slots.d.ts +2 -0
- package/src/lib/evolution-number/evolution-number.d.ts +4 -2
- package/src/lib/evolution-number/index.d.ts +1 -0
- package/src/lib/funnel-chart/funnel-chart-options.d.ts +18 -16
- package/src/lib/funnel-chart/funnel-chart-slots.d.ts +2 -0
- package/src/lib/funnel-chart/funnel-chart.d.ts +4 -2
- package/src/lib/funnel-chart/index.d.ts +1 -0
- package/src/lib/image/image-options.d.ts +5 -3
- package/src/lib/image/image.d.ts +3 -1
- package/src/lib/image/index.d.ts +1 -0
- package/src/lib/line-chart/index.d.ts +1 -0
- package/src/lib/line-chart/line-chart-options.d.ts +17 -15
- package/src/lib/line-chart/line-chart-slots.d.ts +2 -0
- package/src/lib/line-chart/line-chart.d.ts +4 -2
- package/src/lib/pivot-table/index.d.ts +1 -0
- package/src/lib/pivot-table/pivot-table-options.d.ts +21 -19
- package/src/lib/pivot-table/pivot-table-slots.d.ts +2 -0
- package/src/lib/pivot-table/pivot-table.d.ts +4 -2
- package/src/lib/regular-table/index.d.ts +1 -0
- package/src/lib/regular-table/regular-table-options.d.ts +16 -14
- package/src/lib/regular-table/regular-table-slots.d.ts +2 -0
- package/src/lib/regular-table/regular-table.d.ts +4 -2
- package/src/lib/sankey-diagram/index.d.ts +1 -0
- package/src/lib/sankey-diagram/sankey-diagram-options.d.ts +17 -15
- package/src/lib/sankey-diagram/sankey-diagram-slots.d.ts +2 -0
- package/src/lib/sankey-diagram/sankey-diagram.d.ts +4 -2
- package/src/lib/scatter-plot/index.d.ts +1 -0
- package/src/lib/scatter-plot/scatter-plot-options.d.ts +18 -16
- package/src/lib/scatter-plot/scatter-plot-slots.d.ts +2 -0
- package/src/lib/scatter-plot/scatter-plot.d.ts +4 -2
- package/src/lib/shared/axes.d.ts +1 -0
- package/src/lib/shared/axis-view-options.d.ts +2 -0
- package/src/lib/shared/common.d.ts +3 -1
- package/src/lib/shared/drop-object-view-options.d.ts +2 -0
- package/src/lib/shared/filters.d.ts +1 -0
- package/src/lib/shared/formula.d.ts +2 -0
- package/src/lib/shared/index.d.ts +1 -0
- package/src/lib/shared/info-tooltip-options.d.ts +1 -0
- package/src/lib/shared/interactivity-brush.d.ts +1 -0
- package/src/lib/shared/interactivity-custom-events.d.ts +2 -0
- package/src/lib/shared/interactivity-custom-tooltip.d.ts +1 -0
- package/src/lib/shared/interactivity-drilldown.d.ts +2 -0
- package/src/lib/shared/interactivity-export.d.ts +3 -2
- package/src/lib/shared/interactivity-filter.d.ts +1 -0
- package/src/lib/shared/interactivity-go-to-url.d.ts +1 -0
- package/src/lib/shared/interactivity-measure-dimension-picker.d.ts +3 -1
- package/src/lib/shared/interactivity-target.d.ts +1 -0
- package/src/lib/shared/interpolation.d.ts +1 -0
- package/src/lib/shared/item-filter-group.d.ts +1 -0
- package/src/lib/shared/legend.d.ts +2 -0
- package/src/lib/shared/map-object-view-options.d.ts +4 -2
- package/src/lib/shared/object-view-options.d.ts +4 -2
- package/src/lib/shared/placeholder.d.ts +1 -0
- package/src/lib/shared/query.d.ts +1 -0
- package/src/lib/shared/ranges.d.ts +1 -0
- package/src/lib/shared/slots.d.ts +4 -2
- package/src/lib/shared/sort.d.ts +2 -0
- package/src/lib/shared/theme.d.ts +2 -1
- package/src/lib/shared/title.d.ts +1 -0
- package/src/lib/slicer-filter/index.d.ts +1 -0
- package/src/lib/slicer-filter/slicer-filter-options.d.ts +15 -13
- package/src/lib/slicer-filter/slicer-filter-slots.d.ts +2 -0
- package/src/lib/slicer-filter/slicer-filter.d.ts +4 -2
- package/src/lib/slider-filter/index.d.ts +1 -0
- package/src/lib/slider-filter/slider-filter-options.d.ts +7 -5
- package/src/lib/slider-filter/slider-filter-slots.d.ts +2 -0
- package/src/lib/slider-filter/slider-filter.d.ts +4 -2
- package/src/lib/text/index.d.ts +1 -0
- package/src/lib/text/text-options.d.ts +3 -1
- package/src/lib/text/text.d.ts +3 -1
- package/src/options.d.ts +25 -23
- package/src/slots.d.ts +23 -21
|
@@ -39,7 +39,11 @@ declare const _default: {
|
|
|
39
39
|
"description": "Interactivity options",
|
|
40
40
|
"properties": {
|
|
41
41
|
"availableExportTypes": {
|
|
42
|
-
"default":
|
|
42
|
+
"default": [
|
|
43
|
+
"xlsx",
|
|
44
|
+
"csv",
|
|
45
|
+
"png"
|
|
46
|
+
],
|
|
43
47
|
"description": "Available export types interactivity option",
|
|
44
48
|
"items": {
|
|
45
49
|
"description": "Export types",
|
|
@@ -2204,7 +2208,11 @@ declare const _default: {
|
|
|
2204
2208
|
"type": "object"
|
|
2205
2209
|
},
|
|
2206
2210
|
"exportTypes": {
|
|
2207
|
-
"default":
|
|
2211
|
+
"default": [
|
|
2212
|
+
"xlsx",
|
|
2213
|
+
"csv",
|
|
2214
|
+
"png"
|
|
2215
|
+
],
|
|
2208
2216
|
"description": "Export types interactivity option",
|
|
2209
2217
|
"items": {
|
|
2210
2218
|
"description": "Export types",
|
|
@@ -2858,7 +2866,10 @@ declare const _default: {
|
|
|
2858
2866
|
"type": "boolean"
|
|
2859
2867
|
},
|
|
2860
2868
|
"urlConfig": {
|
|
2861
|
-
"default":
|
|
2869
|
+
"default": {
|
|
2870
|
+
"target": "_blank",
|
|
2871
|
+
"url": null
|
|
2872
|
+
},
|
|
2862
2873
|
"description": "Go to URL interactivity option",
|
|
2863
2874
|
"properties": {
|
|
2864
2875
|
"target": {
|
|
@@ -2930,7 +2941,7 @@ declare const _default: {
|
|
|
2930
2941
|
"type": "object"
|
|
2931
2942
|
},
|
|
2932
2943
|
"mode": {
|
|
2933
|
-
"default": "
|
|
2944
|
+
"default": "donut",
|
|
2934
2945
|
"description": "Mode of the Donut chart: donut or pie",
|
|
2935
2946
|
"enum": [
|
|
2936
2947
|
"donut",
|
|
@@ -3070,8 +3081,6 @@ declare const _default: {
|
|
|
3070
3081
|
"background": {
|
|
3071
3082
|
"description": "Background color",
|
|
3072
3083
|
"examples": [
|
|
3073
|
-
"dark",
|
|
3074
|
-
"light",
|
|
3075
3084
|
"rgb(245, 245, 245)",
|
|
3076
3085
|
"rgb(61, 61, 61)"
|
|
3077
3086
|
],
|
|
@@ -137,7 +137,11 @@ declare const _default: {
|
|
|
137
137
|
"description": "Interactivity options",
|
|
138
138
|
"properties": {
|
|
139
139
|
"availableExportTypes": {
|
|
140
|
-
"default":
|
|
140
|
+
"default": [
|
|
141
|
+
"xlsx",
|
|
142
|
+
"csv",
|
|
143
|
+
"png"
|
|
144
|
+
],
|
|
141
145
|
"description": "Available export types interactivity option",
|
|
142
146
|
"items": {
|
|
143
147
|
"description": "Export types",
|
|
@@ -232,7 +236,11 @@ declare const _default: {
|
|
|
232
236
|
"type": "object"
|
|
233
237
|
},
|
|
234
238
|
"exportTypes": {
|
|
235
|
-
"default":
|
|
239
|
+
"default": [
|
|
240
|
+
"xlsx",
|
|
241
|
+
"csv",
|
|
242
|
+
"png"
|
|
243
|
+
],
|
|
236
244
|
"description": "Export types interactivity option",
|
|
237
245
|
"items": {
|
|
238
246
|
"description": "Export types",
|
|
@@ -881,7 +889,10 @@ declare const _default: {
|
|
|
881
889
|
"type": "array"
|
|
882
890
|
},
|
|
883
891
|
"urlConfig": {
|
|
884
|
-
"default":
|
|
892
|
+
"default": {
|
|
893
|
+
"target": "_blank",
|
|
894
|
+
"url": null
|
|
895
|
+
},
|
|
885
896
|
"description": "Go to URL interactivity option",
|
|
886
897
|
"properties": {
|
|
887
898
|
"target": {
|
|
@@ -1004,8 +1015,6 @@ declare const _default: {
|
|
|
1004
1015
|
"background": {
|
|
1005
1016
|
"description": "Background color",
|
|
1006
1017
|
"examples": [
|
|
1007
|
-
"dark",
|
|
1008
|
-
"light",
|
|
1009
1018
|
"rgb(245, 245, 245)",
|
|
1010
1019
|
"rgb(61, 61, 61)"
|
|
1011
1020
|
],
|
|
@@ -41,7 +41,7 @@ declare const _default: {
|
|
|
41
41
|
"type": "boolean"
|
|
42
42
|
},
|
|
43
43
|
"perc": {
|
|
44
|
-
"default": "
|
|
44
|
+
"default": "hide",
|
|
45
45
|
"description": "Toggle percentage",
|
|
46
46
|
"enum": [
|
|
47
47
|
"hide",
|
|
@@ -62,7 +62,11 @@ declare const _default: {
|
|
|
62
62
|
"description": "Interactivity options",
|
|
63
63
|
"properties": {
|
|
64
64
|
"availableExportTypes": {
|
|
65
|
-
"default":
|
|
65
|
+
"default": [
|
|
66
|
+
"xlsx",
|
|
67
|
+
"csv",
|
|
68
|
+
"png"
|
|
69
|
+
],
|
|
66
70
|
"description": "Available export types interactivity option",
|
|
67
71
|
"items": {
|
|
68
72
|
"description": "Export types",
|
|
@@ -2227,7 +2231,11 @@ declare const _default: {
|
|
|
2227
2231
|
"type": "object"
|
|
2228
2232
|
},
|
|
2229
2233
|
"exportTypes": {
|
|
2230
|
-
"default":
|
|
2234
|
+
"default": [
|
|
2235
|
+
"xlsx",
|
|
2236
|
+
"csv",
|
|
2237
|
+
"png"
|
|
2238
|
+
],
|
|
2231
2239
|
"description": "Export types interactivity option",
|
|
2232
2240
|
"items": {
|
|
2233
2241
|
"description": "Export types",
|
|
@@ -2881,7 +2889,10 @@ declare const _default: {
|
|
|
2881
2889
|
"type": "boolean"
|
|
2882
2890
|
},
|
|
2883
2891
|
"urlConfig": {
|
|
2884
|
-
"default":
|
|
2892
|
+
"default": {
|
|
2893
|
+
"target": "_blank",
|
|
2894
|
+
"url": null
|
|
2895
|
+
},
|
|
2885
2896
|
"description": "Go to URL interactivity option",
|
|
2886
2897
|
"properties": {
|
|
2887
2898
|
"target": {
|
|
@@ -3058,8 +3069,6 @@ declare const _default: {
|
|
|
3058
3069
|
"background": {
|
|
3059
3070
|
"description": "Background color",
|
|
3060
3071
|
"examples": [
|
|
3061
|
-
"dark",
|
|
3062
|
-
"light",
|
|
3063
3072
|
"rgb(245, 245, 245)",
|
|
3064
3073
|
"rgb(61, 61, 61)"
|
|
3065
3074
|
],
|
|
@@ -465,7 +465,11 @@ declare const _default: {
|
|
|
465
465
|
"description": "Interactivity options",
|
|
466
466
|
"properties": {
|
|
467
467
|
"availableExportTypes": {
|
|
468
|
-
"default":
|
|
468
|
+
"default": [
|
|
469
|
+
"xlsx",
|
|
470
|
+
"csv",
|
|
471
|
+
"png"
|
|
472
|
+
],
|
|
469
473
|
"description": "Available export types interactivity option",
|
|
470
474
|
"items": {
|
|
471
475
|
"description": "Export types",
|
|
@@ -570,7 +574,11 @@ declare const _default: {
|
|
|
570
574
|
"type": "object"
|
|
571
575
|
},
|
|
572
576
|
"exportTypes": {
|
|
573
|
-
"default":
|
|
577
|
+
"default": [
|
|
578
|
+
"xlsx",
|
|
579
|
+
"csv",
|
|
580
|
+
"png"
|
|
581
|
+
],
|
|
574
582
|
"description": "Export types interactivity option",
|
|
575
583
|
"items": {
|
|
576
584
|
"description": "Export types",
|
|
@@ -1219,7 +1227,10 @@ declare const _default: {
|
|
|
1219
1227
|
"type": "array"
|
|
1220
1228
|
},
|
|
1221
1229
|
"urlConfig": {
|
|
1222
|
-
"default":
|
|
1230
|
+
"default": {
|
|
1231
|
+
"target": "_blank",
|
|
1232
|
+
"url": null
|
|
1233
|
+
},
|
|
1223
1234
|
"description": "Go to URL interactivity option",
|
|
1224
1235
|
"properties": {
|
|
1225
1236
|
"target": {
|
|
@@ -1378,8 +1389,6 @@ declare const _default: {
|
|
|
1378
1389
|
"background": {
|
|
1379
1390
|
"description": "Background color",
|
|
1380
1391
|
"examples": [
|
|
1381
|
-
"dark",
|
|
1382
|
-
"light",
|
|
1383
1392
|
"rgb(245, 245, 245)",
|
|
1384
1393
|
"rgb(61, 61, 61)"
|
|
1385
1394
|
],
|
|
@@ -13,7 +13,7 @@ declare const _default: {
|
|
|
13
13
|
"description": "Column headers of the pivot table",
|
|
14
14
|
"properties": {
|
|
15
15
|
"align": {
|
|
16
|
-
"default": "
|
|
16
|
+
"default": "left",
|
|
17
17
|
"description": "Alignment of the column header",
|
|
18
18
|
"enum": [
|
|
19
19
|
"center",
|
|
@@ -80,7 +80,13 @@ declare const _default: {
|
|
|
80
80
|
"description": "Interactivity options",
|
|
81
81
|
"properties": {
|
|
82
82
|
"availableExportTypes": {
|
|
83
|
-
"default":
|
|
83
|
+
"default": [
|
|
84
|
+
"xlsx",
|
|
85
|
+
"csv",
|
|
86
|
+
"xlsx-raw",
|
|
87
|
+
"csv-raw",
|
|
88
|
+
"png"
|
|
89
|
+
],
|
|
84
90
|
"description": "Available export types interactivity option",
|
|
85
91
|
"items": {
|
|
86
92
|
"description": "Export types",
|
|
@@ -180,7 +186,13 @@ declare const _default: {
|
|
|
180
186
|
"type": "object"
|
|
181
187
|
},
|
|
182
188
|
"exportTypes": {
|
|
183
|
-
"default":
|
|
189
|
+
"default": [
|
|
190
|
+
"xlsx",
|
|
191
|
+
"csv",
|
|
192
|
+
"xlsx-raw",
|
|
193
|
+
"csv-raw",
|
|
194
|
+
"png"
|
|
195
|
+
],
|
|
184
196
|
"description": "Export types interactivity option",
|
|
185
197
|
"items": {
|
|
186
198
|
"description": "Export types",
|
|
@@ -834,7 +846,10 @@ declare const _default: {
|
|
|
834
846
|
"type": "boolean"
|
|
835
847
|
},
|
|
836
848
|
"urlConfig": {
|
|
837
|
-
"default":
|
|
849
|
+
"default": {
|
|
850
|
+
"target": "_blank",
|
|
851
|
+
"url": null
|
|
852
|
+
},
|
|
838
853
|
"description": "Go to URL interactivity option",
|
|
839
854
|
"properties": {
|
|
840
855
|
"target": {
|
|
@@ -887,7 +902,7 @@ declare const _default: {
|
|
|
887
902
|
"description": "Show number of observations"
|
|
888
903
|
},
|
|
889
904
|
"measureLabelsAxis": {
|
|
890
|
-
"default": "
|
|
905
|
+
"default": "columns",
|
|
891
906
|
"description": "Measure axis labels",
|
|
892
907
|
"enum": [
|
|
893
908
|
"columns",
|
|
@@ -948,7 +963,7 @@ declare const _default: {
|
|
|
948
963
|
"description": "Row header of the pivot table",
|
|
949
964
|
"properties": {
|
|
950
965
|
"align": {
|
|
951
|
-
"default": "
|
|
966
|
+
"default": "left",
|
|
952
967
|
"description": "Alignment of the row header",
|
|
953
968
|
"enum": [
|
|
954
969
|
"center",
|
|
@@ -981,12 +996,12 @@ declare const _default: {
|
|
|
981
996
|
"description": "Table border",
|
|
982
997
|
"properties": {
|
|
983
998
|
"color": {
|
|
984
|
-
"default": "
|
|
999
|
+
"default": "#a5a5a5",
|
|
985
1000
|
"description": "Color of the border",
|
|
986
1001
|
"type": "string"
|
|
987
1002
|
},
|
|
988
1003
|
"type": {
|
|
989
|
-
"default": "
|
|
1004
|
+
"default": "none",
|
|
990
1005
|
"description": "Type of the border",
|
|
991
1006
|
"enum": [
|
|
992
1007
|
"all",
|
|
@@ -1022,8 +1037,6 @@ declare const _default: {
|
|
|
1022
1037
|
"background": {
|
|
1023
1038
|
"description": "Background color",
|
|
1024
1039
|
"examples": [
|
|
1025
|
-
"dark",
|
|
1026
|
-
"light",
|
|
1027
1040
|
"rgb(245, 245, 245)",
|
|
1028
1041
|
"rgb(61, 61, 61)"
|
|
1029
1042
|
],
|
|
@@ -1476,7 +1489,7 @@ declare const _default: {
|
|
|
1476
1489
|
"description": "Alignment and style of the values",
|
|
1477
1490
|
"properties": {
|
|
1478
1491
|
"align": {
|
|
1479
|
-
"default": "
|
|
1492
|
+
"default": "left",
|
|
1480
1493
|
"description": "Alignment of the value in the cell",
|
|
1481
1494
|
"enum": [
|
|
1482
1495
|
"center",
|
|
@@ -156,7 +156,11 @@ declare const _default: {
|
|
|
156
156
|
"description": "Interactivity options",
|
|
157
157
|
"properties": {
|
|
158
158
|
"availableExportTypes": {
|
|
159
|
-
"default":
|
|
159
|
+
"default": [
|
|
160
|
+
"xlsx",
|
|
161
|
+
"csv",
|
|
162
|
+
"png"
|
|
163
|
+
],
|
|
160
164
|
"description": "Available export types interactivity option",
|
|
161
165
|
"items": {
|
|
162
166
|
"description": "Export types",
|
|
@@ -251,7 +255,11 @@ declare const _default: {
|
|
|
251
255
|
"type": "object"
|
|
252
256
|
},
|
|
253
257
|
"exportTypes": {
|
|
254
|
-
"default":
|
|
258
|
+
"default": [
|
|
259
|
+
"xlsx",
|
|
260
|
+
"csv",
|
|
261
|
+
"png"
|
|
262
|
+
],
|
|
255
263
|
"description": "Export types interactivity option",
|
|
256
264
|
"items": {
|
|
257
265
|
"description": "Export types",
|
|
@@ -900,7 +908,10 @@ declare const _default: {
|
|
|
900
908
|
"type": "array"
|
|
901
909
|
},
|
|
902
910
|
"urlConfig": {
|
|
903
|
-
"default":
|
|
911
|
+
"default": {
|
|
912
|
+
"target": "_blank",
|
|
913
|
+
"url": null
|
|
914
|
+
},
|
|
904
915
|
"description": "Go to URL interactivity option",
|
|
905
916
|
"properties": {
|
|
906
917
|
"target": {
|
|
@@ -1034,7 +1045,7 @@ declare const _default: {
|
|
|
1034
1045
|
"type": "array"
|
|
1035
1046
|
},
|
|
1036
1047
|
"sortingMode": {
|
|
1037
|
-
"default": "
|
|
1048
|
+
"default": "multiColumn",
|
|
1038
1049
|
"description": "Sorting mode",
|
|
1039
1050
|
"enum": [
|
|
1040
1051
|
"multiColumn",
|
|
@@ -1043,7 +1054,11 @@ declare const _default: {
|
|
|
1043
1054
|
"type": "string"
|
|
1044
1055
|
},
|
|
1045
1056
|
"tableBorders": {
|
|
1046
|
-
"default":
|
|
1057
|
+
"default": {
|
|
1058
|
+
"color": "#ededed",
|
|
1059
|
+
"type": "none",
|
|
1060
|
+
"width": 1
|
|
1061
|
+
},
|
|
1047
1062
|
"description": "Border around the table",
|
|
1048
1063
|
"properties": {
|
|
1049
1064
|
"color": {
|
|
@@ -1082,8 +1097,6 @@ declare const _default: {
|
|
|
1082
1097
|
"background": {
|
|
1083
1098
|
"description": "Background color",
|
|
1084
1099
|
"examples": [
|
|
1085
|
-
"dark",
|
|
1086
|
-
"light",
|
|
1087
1100
|
"rgb(245, 245, 245)",
|
|
1088
1101
|
"rgb(61, 61, 61)"
|
|
1089
1102
|
],
|
|
@@ -3,7 +3,7 @@ declare const _default: {
|
|
|
3
3
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
4
4
|
"properties": {
|
|
5
5
|
"alignment": {
|
|
6
|
-
"default": "
|
|
6
|
+
"default": "justify",
|
|
7
7
|
"description": "Set alignment",
|
|
8
8
|
"enum": [
|
|
9
9
|
"center",
|
|
@@ -25,7 +25,7 @@ declare const _default: {
|
|
|
25
25
|
"type": "boolean"
|
|
26
26
|
},
|
|
27
27
|
"linkColor": {
|
|
28
|
-
"default": "
|
|
28
|
+
"default": "gradient",
|
|
29
29
|
"description": "Set link color: gradient, none, target or source",
|
|
30
30
|
"enum": [
|
|
31
31
|
"gradient",
|
|
@@ -37,6 +37,9 @@ declare const _default: {
|
|
|
37
37
|
},
|
|
38
38
|
"nodeColor": {
|
|
39
39
|
"description": "Set node colors",
|
|
40
|
+
"examples": [
|
|
41
|
+
"#000000"
|
|
42
|
+
],
|
|
40
43
|
"type": "string"
|
|
41
44
|
}
|
|
42
45
|
},
|
|
@@ -56,7 +59,11 @@ declare const _default: {
|
|
|
56
59
|
"description": "Interactivity options",
|
|
57
60
|
"properties": {
|
|
58
61
|
"availableExportTypes": {
|
|
59
|
-
"default":
|
|
62
|
+
"default": [
|
|
63
|
+
"xlsx",
|
|
64
|
+
"csv",
|
|
65
|
+
"png"
|
|
66
|
+
],
|
|
60
67
|
"description": "Available export types interactivity option",
|
|
61
68
|
"items": {
|
|
62
69
|
"description": "Export types",
|
|
@@ -151,7 +158,11 @@ declare const _default: {
|
|
|
151
158
|
"type": "object"
|
|
152
159
|
},
|
|
153
160
|
"exportTypes": {
|
|
154
|
-
"default":
|
|
161
|
+
"default": [
|
|
162
|
+
"xlsx",
|
|
163
|
+
"csv",
|
|
164
|
+
"png"
|
|
165
|
+
],
|
|
155
166
|
"description": "Export types interactivity option",
|
|
156
167
|
"items": {
|
|
157
168
|
"description": "Export types",
|
|
@@ -805,7 +816,10 @@ declare const _default: {
|
|
|
805
816
|
"type": "boolean"
|
|
806
817
|
},
|
|
807
818
|
"urlConfig": {
|
|
808
|
-
"default":
|
|
819
|
+
"default": {
|
|
820
|
+
"target": "_blank",
|
|
821
|
+
"url": null
|
|
822
|
+
},
|
|
809
823
|
"description": "Go to URL interactivity option",
|
|
810
824
|
"properties": {
|
|
811
825
|
"target": {
|
|
@@ -902,8 +916,6 @@ declare const _default: {
|
|
|
902
916
|
"background": {
|
|
903
917
|
"description": "Background color",
|
|
904
918
|
"examples": [
|
|
905
|
-
"dark",
|
|
906
|
-
"light",
|
|
907
919
|
"rgb(245, 245, 245)",
|
|
908
920
|
"rgb(61, 61, 61)"
|
|
909
921
|
],
|
|
@@ -335,7 +335,11 @@ declare const _default: {
|
|
|
335
335
|
"description": "Interactivity options",
|
|
336
336
|
"properties": {
|
|
337
337
|
"availableExportTypes": {
|
|
338
|
-
"default":
|
|
338
|
+
"default": [
|
|
339
|
+
"xlsx",
|
|
340
|
+
"csv",
|
|
341
|
+
"png"
|
|
342
|
+
],
|
|
339
343
|
"description": "Available export types interactivity option",
|
|
340
344
|
"items": {
|
|
341
345
|
"description": "Export types",
|
|
@@ -440,7 +444,11 @@ declare const _default: {
|
|
|
440
444
|
"type": "object"
|
|
441
445
|
},
|
|
442
446
|
"exportTypes": {
|
|
443
|
-
"default":
|
|
447
|
+
"default": [
|
|
448
|
+
"xlsx",
|
|
449
|
+
"csv",
|
|
450
|
+
"png"
|
|
451
|
+
],
|
|
444
452
|
"description": "Export types interactivity option",
|
|
445
453
|
"items": {
|
|
446
454
|
"description": "Export types",
|
|
@@ -1089,7 +1097,10 @@ declare const _default: {
|
|
|
1089
1097
|
"type": "array"
|
|
1090
1098
|
},
|
|
1091
1099
|
"urlConfig": {
|
|
1092
|
-
"default":
|
|
1100
|
+
"default": {
|
|
1101
|
+
"target": "_blank",
|
|
1102
|
+
"url": null
|
|
1103
|
+
},
|
|
1093
1104
|
"description": "Go to URL interactivity option",
|
|
1094
1105
|
"properties": {
|
|
1095
1106
|
"target": {
|
|
@@ -1165,6 +1176,12 @@ declare const _default: {
|
|
|
1165
1176
|
"properties": {
|
|
1166
1177
|
"x": {
|
|
1167
1178
|
"description": "Manual axes range for X axis",
|
|
1179
|
+
"examples": [
|
|
1180
|
+
[
|
|
1181
|
+
0,
|
|
1182
|
+
100
|
|
1183
|
+
]
|
|
1184
|
+
],
|
|
1168
1185
|
"items": [
|
|
1169
1186
|
{
|
|
1170
1187
|
"type": "number"
|
|
@@ -1179,6 +1196,12 @@ declare const _default: {
|
|
|
1179
1196
|
},
|
|
1180
1197
|
"y": {
|
|
1181
1198
|
"description": "Manual axes range for Y axis",
|
|
1199
|
+
"examples": [
|
|
1200
|
+
[
|
|
1201
|
+
0,
|
|
1202
|
+
100
|
|
1203
|
+
]
|
|
1204
|
+
],
|
|
1182
1205
|
"items": [
|
|
1183
1206
|
{
|
|
1184
1207
|
"type": "number"
|
|
@@ -1212,8 +1235,6 @@ declare const _default: {
|
|
|
1212
1235
|
"background": {
|
|
1213
1236
|
"description": "Background color",
|
|
1214
1237
|
"examples": [
|
|
1215
|
-
"dark",
|
|
1216
|
-
"light",
|
|
1217
1238
|
"rgb(245, 245, 245)",
|
|
1218
1239
|
"rgb(61, 61, 61)"
|
|
1219
1240
|
],
|
|
@@ -693,7 +693,7 @@ declare const _default: {
|
|
|
693
693
|
"description": "Layout",
|
|
694
694
|
"properties": {
|
|
695
695
|
"alignment": {
|
|
696
|
-
"default": "
|
|
696
|
+
"default": "vertical",
|
|
697
697
|
"description": "Layout alignment",
|
|
698
698
|
"enum": [
|
|
699
699
|
"horizontal",
|
|
@@ -731,7 +731,7 @@ declare const _default: {
|
|
|
731
731
|
"description": "Measure",
|
|
732
732
|
"properties": {
|
|
733
733
|
"color": {
|
|
734
|
-
"default": "
|
|
734
|
+
"default": "#5A5A5A",
|
|
735
735
|
"description": "Measure color",
|
|
736
736
|
"type": "string"
|
|
737
737
|
},
|
|
@@ -749,7 +749,7 @@ declare const _default: {
|
|
|
749
749
|
"type": "object"
|
|
750
750
|
},
|
|
751
751
|
"mode": {
|
|
752
|
-
"default": "
|
|
752
|
+
"default": "check",
|
|
753
753
|
"description": "Mode",
|
|
754
754
|
"enum": [
|
|
755
755
|
"button",
|
|
@@ -792,7 +792,7 @@ declare const _default: {
|
|
|
792
792
|
"description": "Range",
|
|
793
793
|
"properties": {
|
|
794
794
|
"type": {
|
|
795
|
-
"default": "
|
|
795
|
+
"default": "default",
|
|
796
796
|
"description": "Range type",
|
|
797
797
|
"enum": [
|
|
798
798
|
"default",
|
|
@@ -817,7 +817,7 @@ declare const _default: {
|
|
|
817
817
|
"type": "number"
|
|
818
818
|
},
|
|
819
819
|
"position": {
|
|
820
|
-
"default": "
|
|
820
|
+
"default": "bottom",
|
|
821
821
|
"description": "Rank Bar position",
|
|
822
822
|
"enum": [
|
|
823
823
|
"background",
|
|
@@ -985,8 +985,6 @@ declare const _default: {
|
|
|
985
985
|
"background": {
|
|
986
986
|
"description": "Background color",
|
|
987
987
|
"examples": [
|
|
988
|
-
"dark",
|
|
989
|
-
"light",
|
|
990
988
|
"rgb(245, 245, 245)",
|
|
991
989
|
"rgb(61, 61, 61)"
|
|
992
990
|
],
|
package/index.d.ts
CHANGED