@luzmo/dashboard-contents-types 0.1.89 → 1.0.1
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/CHANGELOG.md +11 -0
- package/assets/json-schemas/area-chart-options.schema.json.d.ts +110 -166
- package/assets/json-schemas/area-chart-slots.schema.json.d.ts +99 -19
- package/assets/json-schemas/bar-chart-options.schema.json.d.ts +109 -14
- package/assets/json-schemas/bar-chart-slots.schema.json.d.ts +99 -19
- package/assets/json-schemas/box-plot-options.schema.json.d.ts +109 -14
- package/assets/json-schemas/box-plot-slots.schema.json.d.ts +99 -19
- package/assets/json-schemas/bubble-chart-options.schema.json.d.ts +109 -14
- package/assets/json-schemas/bubble-chart-slots.schema.json.d.ts +99 -19
- package/assets/json-schemas/bullet-chart-options.schema.json.d.ts +109 -14
- package/assets/json-schemas/bullet-chart-slots.schema.json.d.ts +99 -19
- package/assets/json-schemas/choropleth-map-options.schema.json.d.ts +109 -14
- package/assets/json-schemas/choropleth-map-slots.schema.json.d.ts +105 -25
- package/assets/json-schemas/circular-gauge-options.schema.json.d.ts +109 -14
- package/assets/json-schemas/circular-gauge-slots.schema.json.d.ts +99 -19
- package/assets/json-schemas/column-chart-options.schema.json.d.ts +109 -14
- package/assets/json-schemas/column-chart-slots.schema.json.d.ts +99 -19
- package/assets/json-schemas/combination-chart-options.schema.json.d.ts +109 -14
- package/assets/json-schemas/combination-chart-slots.schema.json.d.ts +99 -19
- package/assets/json-schemas/date-filter-options.schema.json.d.ts +109 -14
- package/assets/json-schemas/date-filter-slots.schema.json.d.ts +32 -5
- package/assets/json-schemas/donut-chart-options.schema.json.d.ts +109 -14
- package/assets/json-schemas/donut-chart-slots.schema.json.d.ts +99 -19
- package/assets/json-schemas/dropdown-filter-options.schema.json.d.ts +109 -14
- package/assets/json-schemas/dropdown-filter-slots.schema.json.d.ts +99 -19
- package/assets/json-schemas/evolution-number-options.schema.json.d.ts +109 -14
- package/assets/json-schemas/evolution-number-slots.schema.json.d.ts +99 -19
- package/assets/json-schemas/funnel-chart-options.schema.json.d.ts +109 -14
- package/assets/json-schemas/funnel-chart-slots.schema.json.d.ts +99 -19
- package/assets/json-schemas/image-options.schema.json.d.ts +69 -0
- package/assets/json-schemas/line-chart-options.schema.json.d.ts +109 -14
- package/assets/json-schemas/line-chart-slots.schema.json.d.ts +99 -19
- package/assets/json-schemas/options.schema.json.d.ts +3 -0
- package/assets/json-schemas/pivot-table-options.schema.json.d.ts +109 -14
- package/assets/json-schemas/pivot-table-slots.schema.json.d.ts +99 -19
- package/assets/json-schemas/regular-table-options.schema.json.d.ts +109 -14
- package/assets/json-schemas/regular-table-slots.schema.json.d.ts +99 -19
- package/assets/json-schemas/sankey-diagram-options.schema.json.d.ts +109 -14
- package/assets/json-schemas/sankey-diagram-slots.schema.json.d.ts +99 -19
- package/assets/json-schemas/scatter-plot-options.schema.json.d.ts +109 -14
- package/assets/json-schemas/scatter-plot-slots.schema.json.d.ts +99 -19
- package/assets/json-schemas/slicer-filter-options.schema.json.d.ts +109 -14
- package/assets/json-schemas/slicer-filter-slots.schema.json.d.ts +99 -19
- package/assets/json-schemas/slider-filter-options.schema.json.d.ts +109 -14
- package/assets/json-schemas/slider-filter-slots.schema.json.d.ts +67 -14
- package/assets/json-schemas/slots.schema.json.d.ts +3 -0
- package/assets/json-schemas/text-options.schema.json.d.ts +69 -0
- package/assets/json-schemas/viz-item-type.schema.json.d.ts +1 -0
- package/index.d.ts +0 -1
- package/index.js +435 -111
- package/index.mjs +5084 -1171
- package/json-schemas.d.ts +3883 -828
- package/json-schemas.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/index.d.ts +1 -1
- package/src/index.d.ts.map +1 -1
- package/src/lib/area-chart/area-chart-options.d.ts +20 -19
- package/src/lib/area-chart/area-chart-options.d.ts.map +1 -1
- package/src/lib/area-chart/area-chart-slots.d.ts +0 -2
- package/src/lib/area-chart/area-chart.d.ts +2 -4
- package/src/lib/area-chart/index.d.ts +0 -1
- package/src/lib/bar-chart/bar-chart-options.d.ts +14 -16
- package/src/lib/bar-chart/bar-chart-options.d.ts.map +1 -1
- package/src/lib/bar-chart/bar-chart.d.ts +2 -4
- package/src/lib/bar-chart/bar-chart.slots.d.ts +0 -2
- package/src/lib/bar-chart/index.d.ts +0 -1
- package/src/lib/box-plot/box-plot-options.d.ts +13 -15
- package/src/lib/box-plot/box-plot-options.d.ts.map +1 -1
- package/src/lib/box-plot/box-plot-slots.d.ts +0 -2
- package/src/lib/box-plot/box-plot.d.ts +2 -4
- package/src/lib/box-plot/index.d.ts +0 -1
- package/src/lib/bubble-chart/bubble-chart-options.d.ts +12 -14
- package/src/lib/bubble-chart/bubble-chart-options.d.ts.map +1 -1
- package/src/lib/bubble-chart/bubble-chart-slots.d.ts +0 -2
- package/src/lib/bubble-chart/bubble-chart.d.ts +2 -4
- package/src/lib/bubble-chart/index.d.ts +0 -1
- package/src/lib/bullet-chart/bullet-chart-options.d.ts +11 -13
- package/src/lib/bullet-chart/bullet-chart-options.d.ts.map +1 -1
- package/src/lib/bullet-chart/bullet-chart-slots.d.ts +0 -2
- package/src/lib/bullet-chart/bullet-chart.d.ts +2 -4
- package/src/lib/bullet-chart/index.d.ts +0 -1
- package/src/lib/choropleth-map/choropleth-map-options.d.ts +11 -13
- package/src/lib/choropleth-map/choropleth-map-slots.d.ts +0 -2
- package/src/lib/choropleth-map/choropleth-map.d.ts +2 -4
- package/src/lib/choropleth-map/index.d.ts +0 -1
- package/src/lib/circular-gauge/circular-gauge-options.d.ts +7 -9
- package/src/lib/circular-gauge/circular-gauge-slots.d.ts +0 -2
- package/src/lib/circular-gauge/circular-gauge.d.ts +2 -4
- package/src/lib/circular-gauge/index.d.ts +0 -1
- package/src/lib/column-chart/column-chart-options.d.ts +14 -16
- package/src/lib/column-chart/column-chart-options.d.ts.map +1 -1
- package/src/lib/column-chart/column-chart-slots.d.ts +0 -2
- package/src/lib/column-chart/column-chart.d.ts +2 -4
- package/src/lib/column-chart/index.d.ts +0 -1
- package/src/lib/combination-chart/combination-chart-options.d.ts +14 -16
- package/src/lib/combination-chart/combination-chart-options.d.ts.map +1 -1
- package/src/lib/combination-chart/combination-chart-slots.d.ts +0 -2
- package/src/lib/combination-chart/combination-chart.d.ts +2 -4
- package/src/lib/combination-chart/index.d.ts +0 -1
- package/src/lib/conditional-number/conditional-number-options.d.ts +9 -11
- package/src/lib/conditional-number/conditional-number-options.d.ts.map +1 -1
- package/src/lib/conditional-number/conditional-number-slots.d.ts +0 -2
- package/src/lib/conditional-number/conditional-number.d.ts +2 -4
- package/src/lib/conditional-number/index.d.ts +0 -1
- package/src/lib/date-filter/date-filter-options.d.ts +5 -8
- package/src/lib/date-filter/date-filter-options.d.ts.map +1 -1
- package/src/lib/date-filter/date-filter-slots.d.ts +0 -2
- package/src/lib/date-filter/date-filter.d.ts +2 -4
- package/src/lib/date-filter/index.d.ts +0 -1
- package/src/lib/donut-chart/donut-chart-options.d.ts +13 -15
- package/src/lib/donut-chart/donut-chart-options.d.ts.map +1 -1
- package/src/lib/donut-chart/donut-chart-slots.d.ts +0 -2
- package/src/lib/donut-chart/donut-chart.d.ts +2 -4
- package/src/lib/donut-chart/index.d.ts +0 -1
- package/src/lib/dropdown-filter/dropdown-filter-options.d.ts +7 -10
- package/src/lib/dropdown-filter/dropdown-filter-options.d.ts.map +1 -1
- package/src/lib/dropdown-filter/dropdown-filter-slots.d.ts +0 -2
- package/src/lib/dropdown-filter/dropdown-filter.d.ts +2 -4
- package/src/lib/dropdown-filter/index.d.ts +0 -1
- package/src/lib/evolution-number/evolution-number-options.d.ts +7 -9
- package/src/lib/evolution-number/evolution-number-options.d.ts.map +1 -1
- package/src/lib/evolution-number/evolution-number-slots.d.ts +0 -2
- package/src/lib/evolution-number/evolution-number.d.ts +2 -4
- package/src/lib/evolution-number/index.d.ts +0 -1
- package/src/lib/funnel-chart/funnel-chart-options.d.ts +13 -15
- package/src/lib/funnel-chart/funnel-chart-options.d.ts.map +1 -1
- package/src/lib/funnel-chart/funnel-chart-slots.d.ts +0 -2
- package/src/lib/funnel-chart/funnel-chart.d.ts +2 -4
- package/src/lib/funnel-chart/index.d.ts +0 -1
- package/src/lib/image/image-options.d.ts +3 -5
- package/src/lib/image/image.d.ts +1 -3
- package/src/lib/image/index.d.ts +0 -1
- package/src/lib/line-chart/index.d.ts +0 -1
- package/src/lib/line-chart/line-chart-options.d.ts +13 -15
- package/src/lib/line-chart/line-chart-options.d.ts.map +1 -1
- package/src/lib/line-chart/line-chart-slots.d.ts +0 -2
- package/src/lib/line-chart/line-chart.d.ts +2 -4
- package/src/lib/pivot-table/index.d.ts +0 -1
- package/src/lib/pivot-table/pivot-table-options.d.ts +10 -12
- package/src/lib/pivot-table/pivot-table-slots.d.ts +0 -2
- package/src/lib/pivot-table/pivot-table.d.ts +2 -4
- package/src/lib/regular-table/index.d.ts +0 -1
- package/src/lib/regular-table/regular-table-options.d.ts +9 -11
- package/src/lib/regular-table/regular-table-slots.d.ts +0 -2
- package/src/lib/regular-table/regular-table.d.ts +2 -4
- package/src/lib/sankey-diagram/index.d.ts +0 -1
- package/src/lib/sankey-diagram/sankey-diagram-options.d.ts +9 -11
- package/src/lib/sankey-diagram/sankey-diagram-slots.d.ts +0 -2
- package/src/lib/sankey-diagram/sankey-diagram.d.ts +2 -4
- package/src/lib/scatter-plot/index.d.ts +0 -1
- package/src/lib/scatter-plot/scatter-plot-options.d.ts +12 -14
- package/src/lib/scatter-plot/scatter-plot-options.d.ts.map +1 -1
- package/src/lib/scatter-plot/scatter-plot-slots.d.ts +0 -2
- package/src/lib/scatter-plot/scatter-plot.d.ts +2 -4
- package/src/lib/search-filter/index.d.ts +3 -0
- package/src/lib/search-filter/index.d.ts.map +1 -0
- package/src/lib/search-filter/search-filter-options.d.ts +56 -0
- package/src/lib/search-filter/search-filter-options.d.ts.map +1 -0
- package/src/lib/search-filter/search-filter-slots.d.ts +17 -0
- package/src/lib/search-filter/search-filter-slots.d.ts.map +1 -0
- package/src/lib/search-filter/search-filter.d.ts +23 -0
- package/src/lib/search-filter/search-filter.d.ts.map +1 -0
- package/src/lib/shared/axes.d.ts +0 -1
- package/src/lib/shared/axis-view-options.d.ts +0 -2
- package/src/lib/shared/common.d.ts +2 -4
- package/src/lib/shared/common.d.ts.map +1 -1
- package/src/lib/shared/drop-object-view-options.d.ts +0 -2
- package/src/lib/shared/filters.d.ts +0 -1
- package/src/lib/shared/formula.d.ts +0 -2
- package/src/lib/shared/index.d.ts +1 -1
- package/src/lib/shared/index.d.ts.map +1 -1
- package/src/lib/shared/info-tooltip-options.d.ts +0 -1
- package/src/lib/shared/interactivity-brush.d.ts +0 -1
- package/src/lib/shared/interactivity-custom-events.d.ts +0 -2
- package/src/lib/shared/interactivity-custom-tooltip.d.ts +0 -1
- package/src/lib/shared/interactivity-drilldown.d.ts +0 -2
- package/src/lib/shared/interactivity-export.d.ts +0 -1
- package/src/lib/shared/interactivity-filter.d.ts +0 -1
- package/src/lib/shared/interactivity-go-to-url.d.ts +0 -1
- package/src/lib/shared/interactivity-measure-dimension-picker.d.ts +1 -3
- package/src/lib/shared/interactivity-target.d.ts +0 -1
- package/src/lib/shared/interpolation.d.ts +0 -1
- package/src/lib/shared/item-filter-group.d.ts +54 -3
- package/src/lib/shared/item-filter-group.d.ts.map +1 -1
- package/src/lib/shared/legend.d.ts +0 -2
- package/src/lib/shared/map-object-view-options.d.ts +2 -4
- package/src/lib/shared/object-view-options.d.ts +4 -5
- package/src/lib/shared/object-view-options.d.ts.map +1 -1
- package/src/lib/shared/placeholder.d.ts +0 -1
- package/src/lib/shared/query.d.ts +0 -1
- package/src/lib/shared/ranges.d.ts +0 -1
- package/src/lib/shared/slots.d.ts +62 -7
- package/src/lib/shared/slots.d.ts.map +1 -1
- package/src/lib/shared/sort.d.ts +0 -2
- package/src/lib/shared/theme.d.ts +0 -1
- package/src/lib/shared/title.d.ts +0 -1
- package/src/lib/shared/viz-item.d.ts +60 -0
- package/src/lib/shared/viz-item.d.ts.map +1 -0
- package/src/lib/slicer-filter/index.d.ts +0 -1
- package/src/lib/slicer-filter/slicer-filter-options.d.ts +6 -8
- package/src/lib/slicer-filter/slicer-filter-options.d.ts.map +1 -1
- package/src/lib/slicer-filter/slicer-filter-slots.d.ts +0 -2
- package/src/lib/slicer-filter/slicer-filter.d.ts +2 -4
- package/src/lib/slider-filter/index.d.ts +0 -1
- package/src/lib/slider-filter/slider-filter-options.d.ts +4 -6
- package/src/lib/slider-filter/slider-filter-options.d.ts.map +1 -1
- package/src/lib/slider-filter/slider-filter-slots.d.ts +0 -2
- package/src/lib/slider-filter/slider-filter.d.ts +2 -4
- package/src/lib/text/index.d.ts +0 -1
- package/src/lib/text/text-options.d.ts +1 -3
- package/src/lib/text/text.d.ts +1 -3
- package/src/options.d.ts +24 -26
- package/src/options.d.ts.map +1 -1
- package/src/slots.d.ts +21 -23
package/CHANGELOG.md
ADDED
|
@@ -39,7 +39,7 @@ declare const _default: {
|
|
|
39
39
|
"type": "object"
|
|
40
40
|
},
|
|
41
41
|
"y": {
|
|
42
|
-
"description": "
|
|
42
|
+
"description": "Y-axis options",
|
|
43
43
|
"properties": {
|
|
44
44
|
"color": {
|
|
45
45
|
"description": "Y-axis color",
|
|
@@ -118,107 +118,6 @@ declare const _default: {
|
|
|
118
118
|
}
|
|
119
119
|
},
|
|
120
120
|
"type": "object"
|
|
121
|
-
},
|
|
122
|
-
"y2": {
|
|
123
|
-
"description": "Y2-axis options",
|
|
124
|
-
"properties": {
|
|
125
|
-
"active": {
|
|
126
|
-
"default": false,
|
|
127
|
-
"description": "Toggle whether the Y2-axis is active",
|
|
128
|
-
"type": "boolean"
|
|
129
|
-
},
|
|
130
|
-
"color": {
|
|
131
|
-
"description": "Y2-axis color",
|
|
132
|
-
"examples": [
|
|
133
|
-
"#000000",
|
|
134
|
-
"black",
|
|
135
|
-
"rgba(0,0,0,1)"
|
|
136
|
-
],
|
|
137
|
-
"type": "string"
|
|
138
|
-
},
|
|
139
|
-
"manualAxesRange": {
|
|
140
|
-
"description": "Set manual axes range",
|
|
141
|
-
"examples": [
|
|
142
|
-
[
|
|
143
|
-
0,
|
|
144
|
-
100
|
|
145
|
-
]
|
|
146
|
-
],
|
|
147
|
-
"items": [
|
|
148
|
-
{
|
|
149
|
-
"type": "number"
|
|
150
|
-
},
|
|
151
|
-
{
|
|
152
|
-
"type": "number"
|
|
153
|
-
}
|
|
154
|
-
],
|
|
155
|
-
"maxItems": 2,
|
|
156
|
-
"minItems": 2,
|
|
157
|
-
"type": "array"
|
|
158
|
-
},
|
|
159
|
-
"measureIndexes": {
|
|
160
|
-
"default": [
|
|
161
|
-
1
|
|
162
|
-
],
|
|
163
|
-
"description": "Array of measure indexes to be displayed on the Y2-axis",
|
|
164
|
-
"examples": [
|
|
165
|
-
[
|
|
166
|
-
1,
|
|
167
|
-
2
|
|
168
|
-
]
|
|
169
|
-
],
|
|
170
|
-
"items": {
|
|
171
|
-
"type": "number"
|
|
172
|
-
},
|
|
173
|
-
"type": "array"
|
|
174
|
-
},
|
|
175
|
-
"scale": {
|
|
176
|
-
"description": "Y-axis scale type: linear or logarithmic",
|
|
177
|
-
"enum": [
|
|
178
|
-
"linear",
|
|
179
|
-
"logarithmic"
|
|
180
|
-
],
|
|
181
|
-
"type": "string"
|
|
182
|
-
},
|
|
183
|
-
"scaleLogBase": {
|
|
184
|
-
"description": "Base of the logarithmic scale. Only applies if the scale is logarithmic.",
|
|
185
|
-
"examples": [
|
|
186
|
-
2,
|
|
187
|
-
10
|
|
188
|
-
],
|
|
189
|
-
"type": "number"
|
|
190
|
-
},
|
|
191
|
-
"ticksDensity": {
|
|
192
|
-
"description": "Density of the ticks on the Y2-axis",
|
|
193
|
-
"enum": [
|
|
194
|
-
"compact",
|
|
195
|
-
"normal",
|
|
196
|
-
"sparse"
|
|
197
|
-
],
|
|
198
|
-
"type": "string"
|
|
199
|
-
},
|
|
200
|
-
"ticksMode": {
|
|
201
|
-
"default": "ticks",
|
|
202
|
-
"description": "Ticks mode of the Y2-axis: hide, ticks, or gridlines",
|
|
203
|
-
"enum": [
|
|
204
|
-
"gridlines",
|
|
205
|
-
"hide",
|
|
206
|
-
"ticks"
|
|
207
|
-
],
|
|
208
|
-
"type": "string"
|
|
209
|
-
},
|
|
210
|
-
"type": {
|
|
211
|
-
"default": "default",
|
|
212
|
-
"description": "Y-axis type: default, manual or variable",
|
|
213
|
-
"enum": [
|
|
214
|
-
"default",
|
|
215
|
-
"manual",
|
|
216
|
-
"variable"
|
|
217
|
-
],
|
|
218
|
-
"type": "string"
|
|
219
|
-
}
|
|
220
|
-
},
|
|
221
|
-
"type": "object"
|
|
222
121
|
}
|
|
223
122
|
},
|
|
224
123
|
"type": "object"
|
|
@@ -267,27 +166,6 @@ declare const _default: {
|
|
|
267
166
|
}
|
|
268
167
|
},
|
|
269
168
|
"type": "object"
|
|
270
|
-
},
|
|
271
|
-
"y2": {
|
|
272
|
-
"description": "Another Y-axis label options",
|
|
273
|
-
"properties": {
|
|
274
|
-
"enabled": {
|
|
275
|
-
"default": false,
|
|
276
|
-
"description": "Show or hide the Y2-axis labels",
|
|
277
|
-
"type": "boolean"
|
|
278
|
-
},
|
|
279
|
-
"position": {
|
|
280
|
-
"default": "middle",
|
|
281
|
-
"description": "Position of the Y2-axis labels",
|
|
282
|
-
"enum": [
|
|
283
|
-
"bottom",
|
|
284
|
-
"middle",
|
|
285
|
-
"top"
|
|
286
|
-
],
|
|
287
|
-
"type": "string"
|
|
288
|
-
}
|
|
289
|
-
},
|
|
290
|
-
"type": "object"
|
|
291
169
|
}
|
|
292
170
|
},
|
|
293
171
|
"type": "object"
|
|
@@ -383,35 +261,6 @@ declare const _default: {
|
|
|
383
261
|
}
|
|
384
262
|
},
|
|
385
263
|
"type": "object"
|
|
386
|
-
},
|
|
387
|
-
"y2": {
|
|
388
|
-
"description": "Y-axis grid options",
|
|
389
|
-
"properties": {
|
|
390
|
-
"enabled": {
|
|
391
|
-
"default": false,
|
|
392
|
-
"description": "Show or hide the Y2-axis grid",
|
|
393
|
-
"type": "boolean"
|
|
394
|
-
},
|
|
395
|
-
"opacity": {
|
|
396
|
-
"description": "Opacity of the Y2-axis grid",
|
|
397
|
-
"examples": [
|
|
398
|
-
1,
|
|
399
|
-
0.5,
|
|
400
|
-
0.1
|
|
401
|
-
],
|
|
402
|
-
"type": "number"
|
|
403
|
-
},
|
|
404
|
-
"style": {
|
|
405
|
-
"description": "Style of the Y2-axis grid",
|
|
406
|
-
"enum": [
|
|
407
|
-
"dashed",
|
|
408
|
-
"dotted",
|
|
409
|
-
"solid"
|
|
410
|
-
],
|
|
411
|
-
"type": "string"
|
|
412
|
-
}
|
|
413
|
-
},
|
|
414
|
-
"type": "object"
|
|
415
264
|
}
|
|
416
265
|
},
|
|
417
266
|
"type": "object"
|
|
@@ -1005,7 +854,7 @@ declare const _default: {
|
|
|
1005
854
|
"aggregationWeight": {
|
|
1006
855
|
"description": "Aggregation weight. It can be used with a \"numeric\" column type.",
|
|
1007
856
|
"properties": {
|
|
1008
|
-
"
|
|
857
|
+
"columnId": {
|
|
1009
858
|
"description": "Column id",
|
|
1010
859
|
"format": "uuid",
|
|
1011
860
|
"type": "string"
|
|
@@ -1021,7 +870,7 @@ declare const _default: {
|
|
|
1021
870
|
],
|
|
1022
871
|
"type": "string"
|
|
1023
872
|
},
|
|
1024
|
-
"
|
|
873
|
+
"datasetId": {
|
|
1025
874
|
"description": "Dataset id",
|
|
1026
875
|
"format": "uuid",
|
|
1027
876
|
"type": "string"
|
|
@@ -1050,11 +899,6 @@ declare const _default: {
|
|
|
1050
899
|
"string"
|
|
1051
900
|
]
|
|
1052
901
|
},
|
|
1053
|
-
"column": {
|
|
1054
|
-
"description": "Column id",
|
|
1055
|
-
"format": "uuid",
|
|
1056
|
-
"type": "string"
|
|
1057
|
-
},
|
|
1058
902
|
"columnHierarchies": {
|
|
1059
903
|
"anyOf": [
|
|
1060
904
|
{
|
|
@@ -1085,6 +929,11 @@ declare const _default: {
|
|
|
1085
929
|
}
|
|
1086
930
|
]
|
|
1087
931
|
},
|
|
932
|
+
"columnId": {
|
|
933
|
+
"description": "Column id",
|
|
934
|
+
"format": "uuid",
|
|
935
|
+
"type": "string"
|
|
936
|
+
},
|
|
1088
937
|
"currency": {
|
|
1089
938
|
"description": "Currency code, for example \"€\" or \"$\". It is only used when the column type is \"numeric\" and subtype is \"currency\".",
|
|
1090
939
|
"type": [
|
|
@@ -1092,6 +941,11 @@ declare const _default: {
|
|
|
1092
941
|
"string"
|
|
1093
942
|
]
|
|
1094
943
|
},
|
|
944
|
+
"datasetId": {
|
|
945
|
+
"description": "Dataset id",
|
|
946
|
+
"format": "uuid",
|
|
947
|
+
"type": "string"
|
|
948
|
+
},
|
|
1095
949
|
"datetimeDisplayMode": {
|
|
1096
950
|
"description": "If it's set it will be used for datetime formatting together with weekStart, weekDayNameFormat, monthNameFormat",
|
|
1097
951
|
"enum": [
|
|
@@ -1137,8 +991,7 @@ declare const _default: {
|
|
|
1137
991
|
"type": "string"
|
|
1138
992
|
},
|
|
1139
993
|
"formula": {
|
|
1140
|
-
"description": "
|
|
1141
|
-
"format": "uuid",
|
|
994
|
+
"description": "A dataset formula id or an ad-hoc formula. A formula is an entity similar to a column. You can add formulas on the dataset details page or use ad-hoc formulas. You can find more information about formulas in the article https://academy.luzmo.com/article/52tm82oo",
|
|
1142
995
|
"type": "string"
|
|
1143
996
|
},
|
|
1144
997
|
"grandTotals": {
|
|
@@ -1184,17 +1037,39 @@ declare const _default: {
|
|
|
1184
1037
|
],
|
|
1185
1038
|
"type": "string"
|
|
1186
1039
|
},
|
|
1040
|
+
"periodOverPeriod": {
|
|
1041
|
+
"description": "Settings to configure period over period comparison. It can be used only in a measure slot.",
|
|
1042
|
+
"properties": {
|
|
1043
|
+
"level": {
|
|
1044
|
+
"description": "Period of time level\n0 - period, 1 - year, 2 - quarter, 3 - month, 4 - week, 5 - day... 9 - millisecond",
|
|
1045
|
+
"type": "number"
|
|
1046
|
+
},
|
|
1047
|
+
"periodToDate": {
|
|
1048
|
+
"description": "Turn ON/OFF period to date comparison",
|
|
1049
|
+
"type": "boolean"
|
|
1050
|
+
},
|
|
1051
|
+
"quantity": {
|
|
1052
|
+
"description": "Number of periods",
|
|
1053
|
+
"type": "number"
|
|
1054
|
+
},
|
|
1055
|
+
"type": {
|
|
1056
|
+
"description": "Period over period comparison type:\n'none' - turned off,\n'past' - absolute value comparison to the past,\n'change' - percentage change comparison to the past",
|
|
1057
|
+
"enum": [
|
|
1058
|
+
"change",
|
|
1059
|
+
"none",
|
|
1060
|
+
"past"
|
|
1061
|
+
],
|
|
1062
|
+
"type": "string"
|
|
1063
|
+
}
|
|
1064
|
+
},
|
|
1065
|
+
"type": "object"
|
|
1066
|
+
},
|
|
1187
1067
|
"readonly": {
|
|
1188
1068
|
"type": "boolean"
|
|
1189
1069
|
},
|
|
1190
1070
|
"selected": {
|
|
1191
1071
|
"type": "boolean"
|
|
1192
1072
|
},
|
|
1193
|
-
"set": {
|
|
1194
|
-
"description": "Dataset id",
|
|
1195
|
-
"format": "uuid",
|
|
1196
|
-
"type": "string"
|
|
1197
|
-
},
|
|
1198
1073
|
"subtype": {
|
|
1199
1074
|
"anyOf": [
|
|
1200
1075
|
{
|
|
@@ -1338,6 +1213,67 @@ declare const _default: {
|
|
|
1338
1213
|
},
|
|
1339
1214
|
"type": "object"
|
|
1340
1215
|
},
|
|
1216
|
+
"loader": {
|
|
1217
|
+
"description": "The loader configuration",
|
|
1218
|
+
"properties": {
|
|
1219
|
+
"background": {
|
|
1220
|
+
"default": "#f9f9f9",
|
|
1221
|
+
"description": "Background color of the chart loader element",
|
|
1222
|
+
"type": "string"
|
|
1223
|
+
},
|
|
1224
|
+
"fontColor": {
|
|
1225
|
+
"default": "#5a5a5a",
|
|
1226
|
+
"description": "Font color of the text of the chart loaders",
|
|
1227
|
+
"type": "string"
|
|
1228
|
+
},
|
|
1229
|
+
"locale": {
|
|
1230
|
+
"default": "en",
|
|
1231
|
+
"description": "Locale to be used if \"msg\" is set",
|
|
1232
|
+
"examples": [
|
|
1233
|
+
"en",
|
|
1234
|
+
"fr"
|
|
1235
|
+
],
|
|
1236
|
+
"type": "string"
|
|
1237
|
+
},
|
|
1238
|
+
"mode": {
|
|
1239
|
+
"default": "light",
|
|
1240
|
+
"description": "Light or dark loader",
|
|
1241
|
+
"type": "string"
|
|
1242
|
+
},
|
|
1243
|
+
"msg": {
|
|
1244
|
+
"description": "Loading message",
|
|
1245
|
+
"examples": [
|
|
1246
|
+
"Loading dashboard..."
|
|
1247
|
+
],
|
|
1248
|
+
"type": "string"
|
|
1249
|
+
},
|
|
1250
|
+
"showBranded": {
|
|
1251
|
+
"default": false,
|
|
1252
|
+
"description": "Shows the branded \"powered by\" information",
|
|
1253
|
+
"type": "boolean"
|
|
1254
|
+
},
|
|
1255
|
+
"spinnerBackground": {
|
|
1256
|
+
"default": "rgba(169, 169, 169, 0.14)",
|
|
1257
|
+
"description": "Background color of the spinner",
|
|
1258
|
+
"type": "string"
|
|
1259
|
+
},
|
|
1260
|
+
"spinnerColor": {
|
|
1261
|
+
"default": "rgba(255, 165, 0, 0.7)",
|
|
1262
|
+
"description": "Spinner color of the loader",
|
|
1263
|
+
"type": "string"
|
|
1264
|
+
}
|
|
1265
|
+
},
|
|
1266
|
+
"type": "object"
|
|
1267
|
+
},
|
|
1268
|
+
"locale": {
|
|
1269
|
+
"default": "en",
|
|
1270
|
+
"description": "Locale to be used",
|
|
1271
|
+
"examples": [
|
|
1272
|
+
"en",
|
|
1273
|
+
"fr"
|
|
1274
|
+
],
|
|
1275
|
+
"type": "string"
|
|
1276
|
+
},
|
|
1341
1277
|
"missingValue": {
|
|
1342
1278
|
"description": "Missing value configuration",
|
|
1343
1279
|
"properties": {
|
|
@@ -1837,6 +1773,14 @@ declare const _default: {
|
|
|
1837
1773
|
},
|
|
1838
1774
|
"type": "object"
|
|
1839
1775
|
},
|
|
1776
|
+
"timezoneId": {
|
|
1777
|
+
"description": "The timezone that will be used in the dashboard. This timezone id needs to be a valid id that is available in the IANA timezone database",
|
|
1778
|
+
"examples": [
|
|
1779
|
+
"Europe/Brussels",
|
|
1780
|
+
"America/New_York"
|
|
1781
|
+
],
|
|
1782
|
+
"type": "string"
|
|
1783
|
+
},
|
|
1840
1784
|
"title": {
|
|
1841
1785
|
"description": "Title in format {locale: \"title\"}, for example, {en: \"Title\"}",
|
|
1842
1786
|
"examples": [
|
|
@@ -29,11 +29,16 @@ declare const _default: {
|
|
|
29
29
|
"string"
|
|
30
30
|
]
|
|
31
31
|
},
|
|
32
|
-
"
|
|
32
|
+
"columnId": {
|
|
33
33
|
"description": "Column id",
|
|
34
34
|
"format": "uuid",
|
|
35
35
|
"type": "string"
|
|
36
36
|
},
|
|
37
|
+
"datasetId": {
|
|
38
|
+
"description": "Dataset id",
|
|
39
|
+
"format": "uuid",
|
|
40
|
+
"type": "string"
|
|
41
|
+
},
|
|
37
42
|
"datetimeDisplayMode": {
|
|
38
43
|
"description": "If it's set it will be used for datetime formatting together with weekStart, weekDayNameFormat, monthNameFormat",
|
|
39
44
|
"enum": [
|
|
@@ -92,10 +97,32 @@ declare const _default: {
|
|
|
92
97
|
],
|
|
93
98
|
"type": "string"
|
|
94
99
|
},
|
|
95
|
-
"
|
|
96
|
-
"description": "
|
|
97
|
-
"
|
|
98
|
-
|
|
100
|
+
"periodOverPeriod": {
|
|
101
|
+
"description": "Settings to configure period over period comparison. It can be used only in a measure slot.",
|
|
102
|
+
"properties": {
|
|
103
|
+
"level": {
|
|
104
|
+
"description": "Period of time level\n0 - period, 1 - year, 2 - quarter, 3 - month, 4 - week, 5 - day... 9 - millisecond",
|
|
105
|
+
"type": "number"
|
|
106
|
+
},
|
|
107
|
+
"periodToDate": {
|
|
108
|
+
"description": "Turn ON/OFF period to date comparison",
|
|
109
|
+
"type": "boolean"
|
|
110
|
+
},
|
|
111
|
+
"quantity": {
|
|
112
|
+
"description": "Number of periods",
|
|
113
|
+
"type": "number"
|
|
114
|
+
},
|
|
115
|
+
"type": {
|
|
116
|
+
"description": "Period over period comparison type:\n'none' - turned off,\n'past' - absolute value comparison to the past,\n'change' - percentage change comparison to the past",
|
|
117
|
+
"enum": [
|
|
118
|
+
"change",
|
|
119
|
+
"none",
|
|
120
|
+
"past"
|
|
121
|
+
],
|
|
122
|
+
"type": "string"
|
|
123
|
+
}
|
|
124
|
+
},
|
|
125
|
+
"type": "object"
|
|
99
126
|
},
|
|
100
127
|
"subtype": {
|
|
101
128
|
"description": "There's no subtype for \"datetime\", it can be null or omitted",
|
|
@@ -143,11 +170,16 @@ declare const _default: {
|
|
|
143
170
|
"string"
|
|
144
171
|
]
|
|
145
172
|
},
|
|
146
|
-
"
|
|
173
|
+
"columnId": {
|
|
147
174
|
"description": "Column id",
|
|
148
175
|
"format": "uuid",
|
|
149
176
|
"type": "string"
|
|
150
177
|
},
|
|
178
|
+
"datasetId": {
|
|
179
|
+
"description": "Dataset id",
|
|
180
|
+
"format": "uuid",
|
|
181
|
+
"type": "string"
|
|
182
|
+
},
|
|
151
183
|
"format": {
|
|
152
184
|
"description": "D3 format, it is used for \"numeric\" formatting (https://observablehq.com/@d3/d3-format), for \"datetime\" formatting (https://d3js.org/d3-time-format).\nIt can also be used for \"hierarchy\" formatting but when it's used in the measure slot.",
|
|
153
185
|
"type": "string"
|
|
@@ -179,10 +211,32 @@ declare const _default: {
|
|
|
179
211
|
"number"
|
|
180
212
|
]
|
|
181
213
|
},
|
|
182
|
-
"
|
|
183
|
-
"description": "
|
|
184
|
-
"
|
|
185
|
-
|
|
214
|
+
"periodOverPeriod": {
|
|
215
|
+
"description": "Settings to configure period over period comparison. It can be used only in a measure slot.",
|
|
216
|
+
"properties": {
|
|
217
|
+
"level": {
|
|
218
|
+
"description": "Period of time level\n0 - period, 1 - year, 2 - quarter, 3 - month, 4 - week, 5 - day... 9 - millisecond",
|
|
219
|
+
"type": "number"
|
|
220
|
+
},
|
|
221
|
+
"periodToDate": {
|
|
222
|
+
"description": "Turn ON/OFF period to date comparison",
|
|
223
|
+
"type": "boolean"
|
|
224
|
+
},
|
|
225
|
+
"quantity": {
|
|
226
|
+
"description": "Number of periods",
|
|
227
|
+
"type": "number"
|
|
228
|
+
},
|
|
229
|
+
"type": {
|
|
230
|
+
"description": "Period over period comparison type:\n'none' - turned off,\n'past' - absolute value comparison to the past,\n'change' - percentage change comparison to the past",
|
|
231
|
+
"enum": [
|
|
232
|
+
"change",
|
|
233
|
+
"none",
|
|
234
|
+
"past"
|
|
235
|
+
],
|
|
236
|
+
"type": "string"
|
|
237
|
+
}
|
|
238
|
+
},
|
|
239
|
+
"type": "object"
|
|
186
240
|
},
|
|
187
241
|
"subtype": {
|
|
188
242
|
"anyOf": [
|
|
@@ -292,7 +346,7 @@ declare const _default: {
|
|
|
292
346
|
"aggregationWeight": {
|
|
293
347
|
"description": "Aggregation weight. It can be used with a \"numeric\" column type.",
|
|
294
348
|
"properties": {
|
|
295
|
-
"
|
|
349
|
+
"columnId": {
|
|
296
350
|
"description": "Column id",
|
|
297
351
|
"format": "uuid",
|
|
298
352
|
"type": "string"
|
|
@@ -301,7 +355,7 @@ declare const _default: {
|
|
|
301
355
|
"$ref": "https://developer.luzmo.com/assets/json-schemas/0.1.89/area-chart-slots.schema.json#/definitions/ColumnSubtype",
|
|
302
356
|
"description": "Column subtype"
|
|
303
357
|
},
|
|
304
|
-
"
|
|
358
|
+
"datasetId": {
|
|
305
359
|
"description": "Dataset id",
|
|
306
360
|
"format": "uuid",
|
|
307
361
|
"type": "string"
|
|
@@ -330,7 +384,7 @@ declare const _default: {
|
|
|
330
384
|
"string"
|
|
331
385
|
]
|
|
332
386
|
},
|
|
333
|
-
"
|
|
387
|
+
"columnId": {
|
|
334
388
|
"description": "Column id",
|
|
335
389
|
"format": "uuid",
|
|
336
390
|
"type": "string"
|
|
@@ -342,6 +396,11 @@ declare const _default: {
|
|
|
342
396
|
"string"
|
|
343
397
|
]
|
|
344
398
|
},
|
|
399
|
+
"datasetId": {
|
|
400
|
+
"description": "Dataset id",
|
|
401
|
+
"format": "uuid",
|
|
402
|
+
"type": "string"
|
|
403
|
+
},
|
|
345
404
|
"duration": {
|
|
346
405
|
"description": "Duration definition. It's only used when the column type is \"numeric\" and subtype is \"duration\".",
|
|
347
406
|
"properties": {
|
|
@@ -369,8 +428,7 @@ declare const _default: {
|
|
|
369
428
|
"type": "string"
|
|
370
429
|
},
|
|
371
430
|
"formula": {
|
|
372
|
-
"description": "
|
|
373
|
-
"format": "uuid",
|
|
431
|
+
"description": "A dataset formula id or an ad-hoc formula. A formula is an entity similar to a column. You can add formulas on the dataset details page or use ad-hoc formulas. You can find more information about formulas in the article https://academy.luzmo.com/article/52tm82oo",
|
|
374
432
|
"type": "string"
|
|
375
433
|
},
|
|
376
434
|
"grandTotals": {
|
|
@@ -386,10 +444,32 @@ declare const _default: {
|
|
|
386
444
|
"description": "Label in format {locale: \"label\"}, for example, {en: \"Total Revenue\"}",
|
|
387
445
|
"type": "object"
|
|
388
446
|
},
|
|
389
|
-
"
|
|
390
|
-
"description": "
|
|
391
|
-
"
|
|
392
|
-
|
|
447
|
+
"periodOverPeriod": {
|
|
448
|
+
"description": "Settings to configure period over period comparison. It can be used only in a measure slot.",
|
|
449
|
+
"properties": {
|
|
450
|
+
"level": {
|
|
451
|
+
"description": "Period of time level\n0 - period, 1 - year, 2 - quarter, 3 - month, 4 - week, 5 - day... 9 - millisecond",
|
|
452
|
+
"type": "number"
|
|
453
|
+
},
|
|
454
|
+
"periodToDate": {
|
|
455
|
+
"description": "Turn ON/OFF period to date comparison",
|
|
456
|
+
"type": "boolean"
|
|
457
|
+
},
|
|
458
|
+
"quantity": {
|
|
459
|
+
"description": "Number of periods",
|
|
460
|
+
"type": "number"
|
|
461
|
+
},
|
|
462
|
+
"type": {
|
|
463
|
+
"description": "Period over period comparison type:\n'none' - turned off,\n'past' - absolute value comparison to the past,\n'change' - percentage change comparison to the past",
|
|
464
|
+
"enum": [
|
|
465
|
+
"change",
|
|
466
|
+
"none",
|
|
467
|
+
"past"
|
|
468
|
+
],
|
|
469
|
+
"type": "string"
|
|
470
|
+
}
|
|
471
|
+
},
|
|
472
|
+
"type": "object"
|
|
393
473
|
},
|
|
394
474
|
"subtype": {
|
|
395
475
|
"anyOf": [
|