@ic3/reporting-api 8.3.0-alpha.1 → 8.4.0-alpha.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/README.md +6 -4
- package/dist/ApiUtils.js +1 -1
- package/dist/ApiUtils.js.map +1 -1
- package/dist/INotification.d.ts +17 -2
- package/dist/IOnNewEventJsContext.d.ts +1 -1
- package/dist/IPluginDefinition.d.ts +3 -0
- package/dist/IThemeManager.d.ts +1 -1
- package/dist/ITypes.d.ts +3 -3
- package/dist/IWidgetVariantManager.d.ts +2 -2
- package/dist/LazyTreeView.d.ts +1 -1
- package/dist/Logger.d.ts +1 -1
- package/dist/PublicAmCharts4Base.d.ts +91 -0
- package/dist/{IReporting.js → PublicAmCharts4Base.js} +1 -1
- package/dist/PublicAmCharts4Base.js.map +1 -0
- package/dist/PublicAmchartsData.d.ts +41 -15
- package/dist/PublicAmchartsData.js +32 -21
- package/dist/PublicAmchartsData.js.map +1 -1
- package/dist/PublicContext.d.ts +27 -1
- package/dist/PublicContext.js +6 -1
- package/dist/PublicContext.js.map +1 -1
- package/dist/PublicLayout.d.ts +2 -2
- package/dist/PublicTemplate.d.ts +16 -5
- package/dist/PublicTemplate.js.map +1 -1
- package/dist/PublicTemplateForm.d.ts +39 -20
- package/dist/PublicTemplateForm.js.map +1 -1
- package/dist/PublicTemplates.d.ts +4 -2
- package/dist/PublicTheme.d.ts +215 -85
- package/dist/PublicTheme.js.map +1 -1
- package/dist/PublicTidyColumn.d.ts +39 -19
- package/dist/PublicTidyColumn.js +3 -14
- package/dist/PublicTidyColumn.js.map +1 -1
- package/dist/PublicTidyHistogram.d.ts +20 -1
- package/dist/PublicTidyHistogram.js +28 -5
- package/dist/PublicTidyHistogram.js.map +1 -1
- package/dist/PublicTidyMath.d.ts +7 -1
- package/dist/PublicTidyTableInteractions.d.ts +11 -2
- package/dist/PublicTidyTableInteractions.js.map +1 -1
- package/dist/PublicTidyTableTypes.d.ts +49 -18
- package/dist/PublicTidyTableTypes.js +3 -4
- package/dist/PublicTidyTableTypes.js.map +1 -1
- package/dist/PublicTidyTree.d.ts +1 -1
- package/dist/index.d.ts +3 -2
- package/dist/index.js +3 -2
- package/dist/index.js.map +1 -1
- package/dist/theme/ThemeAmCharts4.d.ts +88 -25
- package/dist/theme/ThemeAmCharts4.js +7 -1
- package/dist/theme/ThemeAmCharts4.js.map +1 -1
- package/dist/theme/ThemeCodeMirror.d.ts +4 -0
- package/dist/theme/ThemeCodeMirror.js +8 -0
- package/dist/theme/ThemeCodeMirror.js.map +1 -0
- package/dist/theme/ThemeDatePicker.d.ts +10 -0
- package/dist/theme/ThemeEditorTopBar.d.ts +4 -0
- package/dist/theme/ThemeEditorTopBar.js +4 -0
- package/dist/theme/ThemeEditorTopBar.js.map +1 -1
- package/dist/theme/ThemeEmbeddedReport.d.ts +9 -0
- package/dist/theme/ThemeEmbeddedReport.js +6 -0
- package/dist/theme/ThemeEmbeddedReport.js.map +1 -1
- package/dist/theme/ThemeFilterAutocomplete.d.ts +9 -1
- package/dist/theme/ThemeFilterButtons.d.ts +5 -0
- package/dist/theme/ThemeFilterCheckboxRadio.d.ts +4 -0
- package/dist/theme/ThemeFilterPanel.d.ts +4 -0
- package/dist/theme/ThemeFilterSlider.d.ts +8 -0
- package/dist/theme/ThemeFilterTree.d.ts +6 -1
- package/dist/theme/ThemeHtmlBox.d.ts +4 -5
- package/dist/theme/ThemeHtmlBox.js +0 -1
- package/dist/theme/ThemeHtmlBox.js.map +1 -1
- package/dist/theme/ThemeLazyTreeClasses.d.ts +3 -0
- package/dist/theme/ThemeListCounter.d.ts +7 -0
- package/dist/theme/ThemeListCounter.js +9 -0
- package/dist/theme/ThemeListCounter.js.map +1 -0
- package/dist/theme/ThemePrintButton.d.ts +25 -0
- package/dist/theme/ThemePrintButton.js +10 -0
- package/dist/theme/ThemePrintButton.js.map +1 -0
- package/dist/theme/ThemeSinglePanelFilter.d.ts +18 -0
- package/dist/theme/ThemeSinglePanelFilter.js +3 -0
- package/dist/theme/ThemeSinglePanelFilter.js.map +1 -0
- package/dist/theme/ThemeTable.d.ts +1 -6
- package/dist/theme/ThemeTable.js.map +1 -1
- package/dist/theme/ThemeWidgetBox.d.ts +3 -0
- package/dist/theme/ThemeWidgetFilteredBy.d.ts +5 -0
- package/dist/theme/ThemeWidgetFilteredBy.js +9 -0
- package/dist/theme/ThemeWidgetFilteredBy.js.map +1 -0
- package/package.json +8 -10
- package/dist/IReporting.d.ts +0 -112
- package/dist/IReporting.js.map +0 -1
- package/dist/Loader.d.ts +0 -117
- package/dist/Loader.js +0 -208
- package/dist/Loader.js.map +0 -1
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
import { FormFieldObject, Hook, IColorDef } from "../PublicTemplateForm";
|
|
2
2
|
import { TidyTableColumnSelector, UseDatetimeAxis } from "../PublicTidyTableTypes";
|
|
3
3
|
import { TidyHistogramOptions } from "../PublicTidyHistogram";
|
|
4
|
+
import { PublicAmCharts4Base } from "../PublicAmCharts4Base";
|
|
4
5
|
export declare enum AxisRangeType {
|
|
5
6
|
LINE = "single_line",
|
|
6
|
-
RANGE = "range"
|
|
7
|
+
RANGE = "range",
|
|
8
|
+
LINE_PER_MEASURE = "LINE_PER_MEASURE"
|
|
7
9
|
}
|
|
8
10
|
export declare enum GeoMapChartProjection {
|
|
9
11
|
Albers = "Albers",
|
|
@@ -28,6 +30,10 @@ export declare enum Amcharts4LineSmoothMethod {
|
|
|
28
30
|
MONOTONE_X = "monotoneX",
|
|
29
31
|
MONOTONE_Y = "monotoneY"
|
|
30
32
|
}
|
|
33
|
+
export declare enum TrendLineType {
|
|
34
|
+
MEAN = "MEAN",
|
|
35
|
+
OLS = "OLS"
|
|
36
|
+
}
|
|
31
37
|
export interface IStrokeStyleProperties extends FormFieldObject {
|
|
32
38
|
/**
|
|
33
39
|
* Stroke color of the border.
|
|
@@ -132,6 +138,10 @@ export interface Am4PieLabelOptions extends FormFieldObject {
|
|
|
132
138
|
* Align the labels to the left and to the right of the chart.
|
|
133
139
|
*/
|
|
134
140
|
sliceLabelsAlignLabels: boolean;
|
|
141
|
+
/**
|
|
142
|
+
* Hide labels below this threshold. Can be a number (e.g., 100) or a percentage (e.g., 5%).
|
|
143
|
+
*/
|
|
144
|
+
sliceLabelsHideThreshold?: string;
|
|
135
145
|
}
|
|
136
146
|
export interface Am4LabelOptions extends FormFieldObject {
|
|
137
147
|
/**
|
|
@@ -346,9 +356,18 @@ export interface Am4SimpleCategoryAxisOptions extends FormFieldObject {
|
|
|
346
356
|
/**
|
|
347
357
|
* Initial Zoom.
|
|
348
358
|
*
|
|
349
|
-
* The start index and the end index seperated by a comma.
|
|
359
|
+
* The start index and the end index seperated by a comma. You can use negative values to get the index from the
|
|
360
|
+
* end of the axis. E.g., `-10,-1` zooms to the last 10 items.
|
|
350
361
|
*/
|
|
351
362
|
xAxisInitialZoom?: string;
|
|
363
|
+
/**
|
|
364
|
+
* In-place processing of the amCharts 4 category/date axis instance.
|
|
365
|
+
*
|
|
366
|
+
* <pre>
|
|
367
|
+
* ( value: CategoryAxis | DateAxis ) => void;
|
|
368
|
+
* </pre>
|
|
369
|
+
*/
|
|
370
|
+
xAxisPostRenderHook?: Hook<any>;
|
|
352
371
|
}
|
|
353
372
|
export interface Am4ValueAxisOptions extends FormFieldObject {
|
|
354
373
|
/**
|
|
@@ -421,6 +440,14 @@ export interface Am4ValueAxisOptions extends FormFieldObject {
|
|
|
421
440
|
* Show the grid lines perpendicular to the value axis.
|
|
422
441
|
*/
|
|
423
442
|
yAxisShowGridLines: boolean;
|
|
443
|
+
/**
|
|
444
|
+
* In-place processing of the amCharts 4 category/date axis instance.
|
|
445
|
+
*
|
|
446
|
+
* <pre>
|
|
447
|
+
* ( value: ValueAxis ) => void;
|
|
448
|
+
* </pre>
|
|
449
|
+
*/
|
|
450
|
+
yAxisPostRenderHook?: Hook<any>;
|
|
424
451
|
}
|
|
425
452
|
export interface Am4SimpleColumnSeriesOptions extends FormFieldObject, IStrokeStyleProperties {
|
|
426
453
|
/**
|
|
@@ -642,7 +669,7 @@ export interface Am4GeoSeriesOptions extends FormFieldObject {
|
|
|
642
669
|
/**
|
|
643
670
|
* Region.
|
|
644
671
|
*
|
|
645
|
-
* Column with
|
|
672
|
+
* Column with [ISO-2 codes](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#Officially_assigned_code_elements)
|
|
646
673
|
* (e.g., US, CH, GB, FR). Note that provinces, regions, departments are available as well (e.g., FR-30).
|
|
647
674
|
*/
|
|
648
675
|
region: TidyTableColumnSelector;
|
|
@@ -784,6 +811,14 @@ export interface Am4SecondValueAxisOptions extends FormFieldObject {
|
|
|
784
811
|
* The start value and the end value seperated by a comma.
|
|
785
812
|
*/
|
|
786
813
|
yAxisSecondInitialZoom?: string;
|
|
814
|
+
/**
|
|
815
|
+
* In-place processing of the amCharts 4 category/date axis instance.
|
|
816
|
+
*
|
|
817
|
+
* <pre>
|
|
818
|
+
* ( value: ValueAxis ) => void;
|
|
819
|
+
* </pre>
|
|
820
|
+
*/
|
|
821
|
+
yAxisSecondPostRenderHook?: Hook<any>;
|
|
787
822
|
}
|
|
788
823
|
export interface Am4BubbleSeriesOptions extends FormFieldObject, IStrokeStyleProperties {
|
|
789
824
|
/**
|
|
@@ -1017,13 +1052,22 @@ export interface Am4CategoryDateAxisOptions extends FormFieldObject {
|
|
|
1017
1052
|
/**
|
|
1018
1053
|
* Initial Zoom.
|
|
1019
1054
|
*
|
|
1020
|
-
* The start index and the end index seperated by a comma.
|
|
1055
|
+
* The start index and the end index seperated by a comma. You can use negative values to get the index from the
|
|
1056
|
+
* end of the axis. E.g., `-10,-1` zooms to the last 10 items.
|
|
1021
1057
|
*/
|
|
1022
1058
|
xAxisInitialZoom?: string;
|
|
1023
1059
|
/**
|
|
1024
1060
|
* Show the grid lines perpendicular to the category axis.
|
|
1025
1061
|
*/
|
|
1026
1062
|
xAxisShowGridLines: boolean;
|
|
1063
|
+
/**
|
|
1064
|
+
* In-place processing of the amCharts 4 category/date axis instance.
|
|
1065
|
+
*
|
|
1066
|
+
* <pre>
|
|
1067
|
+
* ( value: CategoryAxis | DateAxis ) => void;
|
|
1068
|
+
* </pre>
|
|
1069
|
+
*/
|
|
1070
|
+
xAxisPostRenderHook?: Hook<any>;
|
|
1027
1071
|
}
|
|
1028
1072
|
export interface Am4ValueAxisRangeOptions extends FormFieldObject {
|
|
1029
1073
|
/**
|
|
@@ -1077,7 +1121,7 @@ export interface Am4ValueAxisRangeOptions extends FormFieldObject {
|
|
|
1077
1121
|
*
|
|
1078
1122
|
* The color of the ranged fill / band or line.
|
|
1079
1123
|
*/
|
|
1080
|
-
axisRangeColor
|
|
1124
|
+
axisRangeColor?: IColorDef;
|
|
1081
1125
|
/**
|
|
1082
1126
|
* Range Opacity.
|
|
1083
1127
|
*
|
|
@@ -1255,6 +1299,16 @@ export interface Am4ColumnSeriesOptions extends FormFieldObject, IStrokeStylePro
|
|
|
1255
1299
|
*/
|
|
1256
1300
|
columnSeriesColor?: TidyTableColumnSelector;
|
|
1257
1301
|
}
|
|
1302
|
+
export interface Am4DivergentAxisLabelOptions extends FormFieldObject {
|
|
1303
|
+
/**
|
|
1304
|
+
* The text to show in the left label. Use a single space to not show the label.
|
|
1305
|
+
*/
|
|
1306
|
+
leftLabelText: string;
|
|
1307
|
+
/**
|
|
1308
|
+
* The text to show in the right label. Use a single space to not show the label.
|
|
1309
|
+
*/
|
|
1310
|
+
rightLabelText: string;
|
|
1311
|
+
}
|
|
1258
1312
|
export interface Am4DivergentBarSeriesOptions extends FormFieldObject, IStrokeStyleProperties {
|
|
1259
1313
|
/**
|
|
1260
1314
|
* Values for the series on the left
|
|
@@ -1284,6 +1338,7 @@ export interface Am4DivergentBarSeriesOptions extends FormFieldObject, IStrokeSt
|
|
|
1284
1338
|
legendColumnSeriesShowValue: boolean;
|
|
1285
1339
|
}
|
|
1286
1340
|
export interface Am4TrendLineOptions extends FormFieldObject {
|
|
1341
|
+
trendLineType: TrendLineType;
|
|
1287
1342
|
/**
|
|
1288
1343
|
* Trend Line
|
|
1289
1344
|
*/
|
|
@@ -1363,80 +1418,88 @@ export interface Am4ChartOptions extends FormFieldObject {
|
|
|
1363
1418
|
* In-place processing of the amCharts 4 chart instance.
|
|
1364
1419
|
*
|
|
1365
1420
|
* <pre>
|
|
1366
|
-
* ( value:
|
|
1421
|
+
* ( value: PublicAmchartsBase<amcharts4.Chart, options> ) => void;
|
|
1367
1422
|
*
|
|
1368
1423
|
* value.getChart() is returning an instance of amChart 4 class
|
|
1369
1424
|
* whose name is available in chart options below.
|
|
1370
1425
|
* </pre>
|
|
1371
1426
|
*/
|
|
1372
|
-
postRenderHook?: Hook<any
|
|
1427
|
+
postRenderHook?: Hook<PublicAmCharts4Base<any, any>>;
|
|
1428
|
+
/**
|
|
1429
|
+
* Called after the chart is created.
|
|
1430
|
+
*
|
|
1431
|
+
* <pre>
|
|
1432
|
+
* ( chart: amcharts4.Chart ) => void;
|
|
1433
|
+
* </pre>
|
|
1434
|
+
*/
|
|
1435
|
+
onChartCreatedHook?: Hook<any>;
|
|
1373
1436
|
}
|
|
1374
1437
|
/**
|
|
1375
1438
|
* The corresponding AmCharts 4 chart class is PieChart.
|
|
1376
1439
|
*/
|
|
1377
|
-
export
|
|
1440
|
+
export type AmCharts4DonutChartOptions = Am4PieSeriesOptions & Am4PieLabelOptions & Am4LabelOptions & Am4DonutLegendOptions & Am4DonutOptions & Am4ChartOptions;
|
|
1378
1441
|
/**
|
|
1379
1442
|
* The corresponding AmCharts 4 chart class is GaugeChart.
|
|
1380
1443
|
*/
|
|
1381
|
-
export
|
|
1444
|
+
export type AmCharts4GaugeChartOptions = Am4GaugeHandOptions & Am4GaugeAxisOptions & Am4LabelOptions & Am4GaugeOptions & Am4ChartOptions;
|
|
1382
1445
|
/**
|
|
1383
1446
|
* The corresponding AmCharts 4 chart class is XYChart.
|
|
1384
1447
|
*/
|
|
1385
|
-
export
|
|
1448
|
+
export type AmCharts4HistogramOptions = Am4SimpleCategoryAxisOptions & Am4ValueAxisOptions & Am4SimpleColumnSeriesOptions & Am4ValueLabelOptions & Am4ChartCursorOptions & Am4ScrollbarOptions & Am4ChartOptions & Am4LegendOptions & TidyHistogramOptions;
|
|
1386
1449
|
/**
|
|
1387
1450
|
* The corresponding AmCharts 4 chart class is SankeyDiagram.
|
|
1388
1451
|
*/
|
|
1389
|
-
export
|
|
1452
|
+
export type AmCharts4SankeyDiagramOptions = Am4SankeyFlowOptions & Am4SankeyNodeOptions & Am4SankeyDiagramOptions & Am4ChartOptions;
|
|
1390
1453
|
/**
|
|
1391
1454
|
* The corresponding AmCharts 4 chart class is TreeMap.
|
|
1392
1455
|
*/
|
|
1393
|
-
export
|
|
1456
|
+
export type AmCharts4TreemapOptions = Am4ChartOptions & Am4LegendOptions & Am4TreeMapSeriesOptions;
|
|
1394
1457
|
/**
|
|
1395
1458
|
* The corresponding AmCharts 4 chart class is MapChart.
|
|
1396
1459
|
*/
|
|
1397
|
-
export
|
|
1460
|
+
export type GeoMapChartOptions = Am4GeoSeriesOptions;
|
|
1398
1461
|
/**
|
|
1399
1462
|
* The corresponding AmCharts 4 chart class is XYChart.
|
|
1400
1463
|
*/
|
|
1401
|
-
export
|
|
1464
|
+
export type AmCharts4BubbleChartOptions = Am4SecondValueAxisOptions & Am4ValueAxisOptions & Am4BubbleSeriesOptions & Am4ValueLabelOptions & Am4ChartCursorOptions & Am4ScatterTrendLineOptions & Am4ScrollbarOptions & Am4LegendOptions & Am4ChartOptions;
|
|
1402
1465
|
/**
|
|
1403
1466
|
* The corresponding AmCharts 4 chart class is XYChart.
|
|
1404
1467
|
*/
|
|
1405
|
-
export
|
|
1406
|
-
export
|
|
1468
|
+
export type AmCharts4ComboChartOptions = Am4CategoryDateAxisOptions & Am4ValueAxisOptions & Am4SecondValueAxisOptions & Am4ComboSeriesOptions & Am4LegendOptions & Am4ChartCursorOptions & Am4ScrollbarOptions & Am4ChartOptions;
|
|
1469
|
+
export type AmCharts4CoordinateChartOptions = Am4TrendLineOptions;
|
|
1407
1470
|
/**
|
|
1408
1471
|
* The corresponding AmCharts 4 chart class is XYChart.
|
|
1409
1472
|
*/
|
|
1410
|
-
export
|
|
1473
|
+
export type AmCharts4RegularAreaChartOptions = Am4CategoryDateAxisOptions & Am4ValueAxisOptions & Am4LineSeriesOptions & Am4LegendOptions & Am4ValueLabelOptions & Am4ChartCursorOptions & Am4TrendLineOptions & Am4ScrollbarOptions & Am4ValueAxisRangeOptions & Am4ChartOptions;
|
|
1411
1474
|
/**
|
|
1412
1475
|
* The corresponding AmCharts 4 chart class is XYChart.
|
|
1413
1476
|
*/
|
|
1414
|
-
export
|
|
1477
|
+
export type AmCharts4RegularBarChartOptions = Am4CategoryDateAxisOptions & Am4ValueAxisOptions & Am4ColumnSeriesOptions & Am4LegendOptions & Am4ValueLabelOptions & Am4ChartCursorOptions & Am4TrendLineOptions & Am4ScrollbarOptions & Am4ValueAxisRangeOptions & Am4ChartOptions;
|
|
1415
1478
|
/**
|
|
1416
1479
|
* The corresponding AmCharts 4 chart class is XYChart.
|
|
1417
1480
|
*/
|
|
1418
|
-
export
|
|
1481
|
+
export type AmCharts4DivergentBarChartOptions = Am4CategoryDateAxisOptions & Am4ValueAxisOptions & Am4DivergentBarSeriesOptions & Am4LegendOptions & Am4ValueLabelOptions & Am4ChartCursorOptions & Am4ScrollbarOptions & Am4ValueAxisRangeOptions & Am4ChartOptions & Am4DivergentAxisLabelOptions;
|
|
1419
1482
|
/**
|
|
1420
1483
|
* The corresponding AmCharts 4 chart class is XYChart.
|
|
1421
1484
|
*/
|
|
1422
|
-
export
|
|
1485
|
+
export type AmCharts4RegularColumnChartOptions = Am4CategoryDateAxisOptions & Am4ValueAxisOptions & Am4ValueAxisRangeOptions & Am4ColumnSeriesOptions & Am4ValueLabelOptions & Am4ChartCursorOptions & Am4TrendLineOptions & Am4ScrollbarOptions & Am4ChartOptions & Am4LegendOptions;
|
|
1423
1486
|
/**
|
|
1424
1487
|
* The corresponding AmCharts 4 chart class is XYChart.
|
|
1425
1488
|
*/
|
|
1426
|
-
export
|
|
1489
|
+
export type AmCharts4RegularLineChartOptions = Am4CategoryDateAxisOptions & Am4ValueAxisOptions & Am4LineSeriesOptions & Am4LegendOptions & Am4ValueLabelOptions & Am4ChartCursorOptions & Am4TrendLineOptions & Am4ScrollbarOptions & Am4ChartOptions & Am4ValueAxisRangeOptions;
|
|
1427
1490
|
/**
|
|
1428
1491
|
* The corresponding AmCharts 4 chart class is XYChart.
|
|
1429
1492
|
*/
|
|
1430
|
-
export
|
|
1493
|
+
export type AmCharts4ScatterPlotOptions = Am4SecondValueAxisOptions & Am4ValueAxisOptions & Am4ScatterSeriesOptions & Am4ValueLabelOptions & Am4ChartCursorOptions & Am4ScatterTrendLineOptions & Am4ScrollbarOptions & Am4LegendOptions & Am4ChartOptions;
|
|
1431
1494
|
/**
|
|
1432
1495
|
* The corresponding AmCharts 4 chart class is XYChart.
|
|
1433
1496
|
*/
|
|
1434
|
-
export
|
|
1497
|
+
export type AmCharts4StackedAreaChartOptions = Am4CategoryDateAxisOptions & Am4ValueAxisOptions & Am4LineSeriesOptions & Am4LegendOptions & Am4ValueLabelOptions & Am4ChartCursorOptions & Am4TrendLineOptions & Am4ScrollbarOptions & Am4ChartOptions & Am4ValueAxisRangeOptions;
|
|
1435
1498
|
/**
|
|
1436
1499
|
* The corresponding AmCharts 4 chart class is XYChart.
|
|
1437
1500
|
*/
|
|
1438
|
-
export
|
|
1501
|
+
export type AmCharts4StackedBarChartOptions = Am4CategoryDateAxisOptions & Am4ValueAxisOptions & Am4ColumnSeriesOptions & Am4LegendOptions & Am4ValueLabelOptions & Am4ChartCursorOptions & Am4TrendLineOptions & Am4ScrollbarOptions & Am4ChartOptions & Am4ValueAxisRangeOptions;
|
|
1439
1502
|
/**
|
|
1440
1503
|
* The corresponding AmCharts 4 chart class is XYChart.
|
|
1441
1504
|
*/
|
|
1442
|
-
export
|
|
1505
|
+
export type AmCharts4StackedColumnChartOptions = Am4CategoryDateAxisOptions & Am4ValueAxisOptions & Am4ColumnSeriesOptions & Am4ValueLabelOptions & Am4ChartCursorOptions & Am4TrendLineOptions & Am4ScrollbarOptions & Am4ChartOptions & Am4LegendOptions & Am4ValueAxisRangeOptions;
|
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.SeriesLabelsPosition = exports.CategoryAxisRotateLabels = exports.OverflowType = exports.LegendPositionOption = exports.Amcharts4LineSmoothMethod = exports.GeoMapChartUnMatchedRegionStrategy = exports.GeoMapChartProjection = exports.AxisRangeType = void 0;
|
|
3
|
+
exports.SeriesLabelsPosition = exports.CategoryAxisRotateLabels = exports.OverflowType = exports.LegendPositionOption = exports.TrendLineType = exports.Amcharts4LineSmoothMethod = exports.GeoMapChartUnMatchedRegionStrategy = exports.GeoMapChartProjection = exports.AxisRangeType = void 0;
|
|
4
4
|
var AxisRangeType;
|
|
5
5
|
(function (AxisRangeType) {
|
|
6
6
|
AxisRangeType["LINE"] = "single_line";
|
|
7
7
|
AxisRangeType["RANGE"] = "range";
|
|
8
|
+
AxisRangeType["LINE_PER_MEASURE"] = "LINE_PER_MEASURE";
|
|
8
9
|
})(AxisRangeType = exports.AxisRangeType || (exports.AxisRangeType = {}));
|
|
9
10
|
var GeoMapChartProjection;
|
|
10
11
|
(function (GeoMapChartProjection) {
|
|
@@ -32,6 +33,11 @@ var Amcharts4LineSmoothMethod;
|
|
|
32
33
|
Amcharts4LineSmoothMethod["MONOTONE_X"] = "monotoneX";
|
|
33
34
|
Amcharts4LineSmoothMethod["MONOTONE_Y"] = "monotoneY"; // See https://www.amcharts.com/docs/v4/chart-types/xy-chart/#Alternate_smoothing_algorithm
|
|
34
35
|
})(Amcharts4LineSmoothMethod = exports.Amcharts4LineSmoothMethod || (exports.Amcharts4LineSmoothMethod = {}));
|
|
36
|
+
var TrendLineType;
|
|
37
|
+
(function (TrendLineType) {
|
|
38
|
+
TrendLineType["MEAN"] = "MEAN";
|
|
39
|
+
TrendLineType["OLS"] = "OLS";
|
|
40
|
+
})(TrendLineType = exports.TrendLineType || (exports.TrendLineType = {}));
|
|
35
41
|
var LegendPositionOption;
|
|
36
42
|
(function (LegendPositionOption) {
|
|
37
43
|
LegendPositionOption["bottom_left"] = "bottom_left";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ThemeAmCharts4.js","sourceRoot":"","sources":["../../src/theme/ThemeAmCharts4.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"ThemeAmCharts4.js","sourceRoot":"","sources":["../../src/theme/ThemeAmCharts4.ts"],"names":[],"mappings":";;;AAKA,IAAY,aAIX;AAJD,WAAY,aAAa;IACrB,qCAAoB,CAAA;IACpB,gCAAe,CAAA;IACf,sDAAqC,CAAA;AACzC,CAAC,EAJW,aAAa,GAAb,qBAAa,KAAb,qBAAa,QAIxB;AAED,IAAY,qBAYX;AAZD,WAAY,qBAAqB;IAC7B,0CAAiB,CAAA;IACjB,gDAAuB,CAAA;IACvB,kEAAyC,CAAA;IACzC,4CAAmB,CAAA;IACnB,kDAAyB,CAAA;IACzB,kDAAyB,CAAA;IACzB,8CAAqB,CAAA;IACrB,0CAAiB,CAAA;IACjB,wDAA+B,CAAA;IAC/B,sDAA6B,CAAA;IAC7B,wDAA+B,CAAA;AACnC,CAAC,EAZW,qBAAqB,GAArB,6BAAqB,KAArB,6BAAqB,QAYhC;AAED,IAAY,kCAGX;AAHD,WAAY,kCAAkC;IAC1C,6EAAuC,CAAA;IACvC,2EAAqC,CAAA;AACzC,CAAC,EAHW,kCAAkC,GAAlC,0CAAkC,KAAlC,0CAAkC,QAG7C;AAED,IAAY,yBAKX;AALD,WAAY,yBAAyB;IACjC,0CAAa,CAAA;IACb,gDAAmB,CAAA;IACnB,qDAAwB,CAAA;IACxB,qDAAwB,CAAA,CAAE,2FAA2F;AACzH,CAAC,EALW,yBAAyB,GAAzB,iCAAyB,KAAzB,iCAAyB,QAKpC;AAED,IAAY,aAMX;AAND,WAAY,aAAa;IAErB,8BAAa,CAAA;IAEb,4BAAW,CAAA;AAEf,CAAC,EANW,aAAa,GAAb,qBAAa,KAAb,qBAAa,QAMxB;AAmBD,IAAY,oBAaX;AAbD,WAAY,oBAAoB;IAC5B,mDAA6B,CAAA;IAC7B,uDAAiC,CAAA;IACjC,qDAA+B,CAAA;IAC/B,qDAA+B,CAAA;IAC/B,qDAA+B,CAAA;IAC/B,+CAAyB,CAAA;IACzB,+CAAyB,CAAA;IACzB,iDAA2B,CAAA;IAC3B,6CAAuB,CAAA;IACvB,6CAAuB,CAAA;IACvB,mDAA6B,CAAA;IAC7B,mDAA6B,CAAA;AACjC,CAAC,EAbW,oBAAoB,GAApB,4BAAoB,KAApB,4BAAoB,QAa/B;AAED,IAAY,YAIX;AAJD,WAAY,YAAY;IACpB,6BAAa,CAAA;IACb,qCAAqB,CAAA;IACrB,6BAAa,CAAA;AACjB,CAAC,EAJW,YAAY,GAAZ,oBAAY,KAAZ,oBAAY,QAIvB;AAED,IAAY,wBAGX;AAHD,WAAY,wBAAwB;IAChC,uCAAW,CAAA;IACX,qCAAS,CAAA;AACb,CAAC,EAHW,wBAAwB,GAAxB,gCAAwB,KAAxB,gCAAwB,QAGnC;AAED,IAAY,oBAKX;AALD,WAAY,oBAAoB;IAC5B,uCAAe,CAAA;IACf,yCAAiB,CAAA;IACjB,mCAAW,CAAA;IACX,2CAAmB,CAAA;AACvB,CAAC,EALW,oBAAoB,GAApB,4BAAoB,KAApB,4BAAoB,QAK/B"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.CodeMirrorClasses = void 0;
|
|
4
|
+
class CodeMirrorClasses {
|
|
5
|
+
}
|
|
6
|
+
exports.CodeMirrorClasses = CodeMirrorClasses;
|
|
7
|
+
CodeMirrorClasses.root = "ic3CodeMirror-rootCM";
|
|
8
|
+
//# sourceMappingURL=ThemeCodeMirror.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ThemeCodeMirror.js","sourceRoot":"","sources":["../../src/theme/ThemeCodeMirror.ts"],"names":[],"mappings":";;;AAAA,MAAa,iBAAiB;;AAA9B,8CAIC;AAFmB,sBAAI,GAAW,sBAAsB,CAAC"}
|
|
@@ -24,6 +24,10 @@ export interface DatePickerChartOptions extends FormFieldObject {
|
|
|
24
24
|
* Display this text when the datepicker is empty.
|
|
25
25
|
*/
|
|
26
26
|
helperText?: string;
|
|
27
|
+
/**
|
|
28
|
+
* Text to show when the filter is empty.
|
|
29
|
+
*/
|
|
30
|
+
placeholderText?: string;
|
|
27
31
|
/**
|
|
28
32
|
* Input Date Format.
|
|
29
33
|
*
|
|
@@ -89,6 +93,10 @@ export interface DatePickerChartOptions extends FormFieldObject {
|
|
|
89
93
|
* Placeholder value for the end of the range. The widget shows this when the end of the range is empty.
|
|
90
94
|
*/
|
|
91
95
|
helperEndText?: string;
|
|
96
|
+
/**
|
|
97
|
+
* Text to show when the second date picker is empty.
|
|
98
|
+
*/
|
|
99
|
+
placeholderTextEnd?: string;
|
|
92
100
|
/**
|
|
93
101
|
* Range Picker: Center Text.
|
|
94
102
|
*
|
|
@@ -116,3 +124,5 @@ export interface DatePickerChartOptions extends FormFieldObject {
|
|
|
116
124
|
*/
|
|
117
125
|
dates?: TidyTableColumnSelector;
|
|
118
126
|
}
|
|
127
|
+
export interface FilterDatePickerProps {
|
|
128
|
+
}
|
|
@@ -32,6 +32,10 @@ EditorAppTopBarClasses.topRightBar = "ic3EditorTopBar-topRightBar";
|
|
|
32
32
|
* Style applied to
|
|
33
33
|
*/
|
|
34
34
|
EditorAppTopBarClasses.leftSpacer = "ic3EditorTopBar-leftSpacer";
|
|
35
|
+
/**
|
|
36
|
+
* Style applied to
|
|
37
|
+
*/
|
|
38
|
+
EditorAppTopBarClasses.fileButtonsSpacer = "ic3EditorTopBar-fileButtonsSpacer";
|
|
35
39
|
/**
|
|
36
40
|
* Style applied to
|
|
37
41
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ThemeEditorTopBar.js","sourceRoot":"","sources":["../../src/theme/ThemeEditorTopBar.ts"],"names":[],"mappings":";;;AAAA,MAAa,sBAAsB;;AAAnC,
|
|
1
|
+
{"version":3,"file":"ThemeEditorTopBar.js","sourceRoot":"","sources":["../../src/theme/ThemeEditorTopBar.ts"],"names":[],"mappings":";;;AAAA,MAAa,sBAAsB;;AAAnC,wDAwCC;AAvCG;;GAEG;AACa,2BAAI,GAAW,sBAAsB,CAAC;AACtD;;GAEG;AACa,2BAAI,GAAW,sBAAsB,CAAC;AAEtD;;GAEG;AACa,8BAAO,GAAW,yBAAyB,CAAC;AAE5D;;GAEG;AACa,4BAAK,GAAW,uBAAuB,CAAC;AACxD;;GAEG;AACa,iCAAU,GAAW,4BAA4B,CAAC;AAElE;;GAEG;AACa,kCAAW,GAAW,6BAA6B,CAAC;AACpE;;GAEG;AACa,iCAAU,GAAW,4BAA4B,CAAC;AAClE;;GAEG;AACa,wCAAiB,GAAW,mCAAmC,CAAC;AAChF;;GAEG;AACa,iCAAU,GAAW,4BAA4B,CAAC"}
|
|
@@ -22,7 +22,16 @@ export interface EmbeddedReportChartOptions extends FormFieldObject {
|
|
|
22
22
|
* Forwarded events.
|
|
23
23
|
*/
|
|
24
24
|
"@params"?: IFormEventMappingArrayFieldDefType;
|
|
25
|
+
"@eventsOut"?: IFormEventMappingArrayFieldDefType;
|
|
26
|
+
/**
|
|
27
|
+
* How to export the embedded report to excel.
|
|
28
|
+
*/
|
|
29
|
+
exportToExcelMethod: ExportToExcelMethod;
|
|
25
30
|
inheritSchemaName: boolean;
|
|
26
31
|
inheritCubeName: boolean;
|
|
27
32
|
inheritDisableDefaultSchemaAuthCheck: boolean;
|
|
28
33
|
}
|
|
34
|
+
export declare enum ExportToExcelMethod {
|
|
35
|
+
SHEET_PER_WIDGET = "SHEET_PER_WIDGET",
|
|
36
|
+
ONE_TABLE = "ONE_TABLE"
|
|
37
|
+
}
|
|
@@ -1,3 +1,9 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ExportToExcelMethod = void 0;
|
|
4
|
+
var ExportToExcelMethod;
|
|
5
|
+
(function (ExportToExcelMethod) {
|
|
6
|
+
ExportToExcelMethod["SHEET_PER_WIDGET"] = "SHEET_PER_WIDGET";
|
|
7
|
+
ExportToExcelMethod["ONE_TABLE"] = "ONE_TABLE";
|
|
8
|
+
})(ExportToExcelMethod = exports.ExportToExcelMethod || (exports.ExportToExcelMethod = {}));
|
|
3
9
|
//# sourceMappingURL=ThemeEmbeddedReport.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ThemeEmbeddedReport.js","sourceRoot":"","sources":["../../src/theme/ThemeEmbeddedReport.ts"],"names":[],"mappings":""}
|
|
1
|
+
{"version":3,"file":"ThemeEmbeddedReport.js","sourceRoot":"","sources":["../../src/theme/ThemeEmbeddedReport.ts"],"names":[],"mappings":";;;AA0CA,IAAY,mBAGX;AAHD,WAAY,mBAAmB;IAC3B,4DAAqC,CAAA;IACrC,8CAAuB,CAAA;AAC3B,CAAC,EAHW,mBAAmB,GAAnB,2BAAmB,KAAnB,2BAAmB,QAG9B"}
|
|
@@ -25,7 +25,8 @@ export interface FilterAutocompleteChartOptions extends FilterTidyTableChartOpti
|
|
|
25
25
|
*
|
|
26
26
|
* Allows for selecting a set of preset options. Note that a variant is possibly overriding defined options.
|
|
27
27
|
*/
|
|
28
|
-
variant
|
|
28
|
+
variant?: string;
|
|
29
|
+
inputVariant: "standard" | "filled" | "outlined";
|
|
29
30
|
/**
|
|
30
31
|
* Size.
|
|
31
32
|
*
|
|
@@ -38,4 +39,11 @@ export interface FilterAutocompleteChartOptions extends FilterTidyTableChartOpti
|
|
|
38
39
|
* Maximum number of chips that will be visible
|
|
39
40
|
*/
|
|
40
41
|
limitChips: number;
|
|
42
|
+
/**
|
|
43
|
+
* Text to show when the filter is empty.
|
|
44
|
+
*/
|
|
45
|
+
placeholderText?: string;
|
|
41
46
|
}
|
|
47
|
+
export type FilterAutocompleteProps = Pick<FilterAutocompleteChartOptions, 'variant' | 'size'> & {
|
|
48
|
+
hideInput?: boolean;
|
|
49
|
+
};
|
|
@@ -152,4 +152,8 @@ export interface FilterPanelChartOptions extends FormFieldObject {
|
|
|
152
152
|
* has <= `useSimpleFilterCutoff` members.
|
|
153
153
|
*/
|
|
154
154
|
useSimpleFilterCutoff?: number;
|
|
155
|
+
/**
|
|
156
|
+
* Per default, the filter panel allows users to filter on properties. You can disable that with this option.
|
|
157
|
+
*/
|
|
158
|
+
hidePropertyFilters?: boolean;
|
|
155
159
|
}
|
|
@@ -81,3 +81,11 @@ export interface FilterSliderChartOptions extends FilterTidyTableChartOptions {
|
|
|
81
81
|
*/
|
|
82
82
|
selectionLabel?: string;
|
|
83
83
|
}
|
|
84
|
+
export interface FilterSliderProps {
|
|
85
|
+
variant?: string;
|
|
86
|
+
thumbColor?: string;
|
|
87
|
+
emptySelection: boolean;
|
|
88
|
+
isVertical?: boolean;
|
|
89
|
+
size?: 'small' | 'medium';
|
|
90
|
+
padding: number;
|
|
91
|
+
}
|
|
@@ -16,7 +16,7 @@ export declare class FilterTreeClasses extends LazyTreeClasses {
|
|
|
16
16
|
static itemLabelWithIcons: "ic3TreeFilter-itemLabelWithIcons";
|
|
17
17
|
}
|
|
18
18
|
export declare type FilterTreeClassKey = keyof FilterTreeClasses;
|
|
19
|
-
export
|
|
19
|
+
export type FilterFireEventMode = TreeFireEventMode.ALL_SELECTED | TreeFireEventMode.COMPACT_ON_PARENT;
|
|
20
20
|
/**
|
|
21
21
|
* Filter Tree Options (fields of the "Chart" tab in the widget editor).
|
|
22
22
|
*
|
|
@@ -99,3 +99,8 @@ export interface FilterTreeChartOptions extends FilterTidyTableChartOptions {
|
|
|
99
99
|
*/
|
|
100
100
|
autoCompleteLimitChips: number;
|
|
101
101
|
}
|
|
102
|
+
export interface FilterTreeProps {
|
|
103
|
+
printing: boolean;
|
|
104
|
+
variant?: string;
|
|
105
|
+
size: 'small' | 'medium';
|
|
106
|
+
}
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { IWidgetPublicContext } from "../PublicContext";
|
|
2
1
|
export declare class HtmlBoxClasses {
|
|
3
2
|
/**
|
|
4
3
|
* Style applied to the root element.
|
|
@@ -6,7 +5,7 @@ export declare class HtmlBoxClasses {
|
|
|
6
5
|
static root: string;
|
|
7
6
|
}
|
|
8
7
|
export declare type HtmlBoxClassKey = keyof HtmlBoxClasses;
|
|
9
|
-
export
|
|
8
|
+
export type HtmlBoxVariant = "plain" |
|
|
10
9
|
/**
|
|
11
10
|
* Used by the editor documentation dialog and text box used for Live Demo documentation.
|
|
12
11
|
*/
|
|
@@ -27,8 +26,8 @@ export declare type HtmlBoxVariant = "plain" |
|
|
|
27
26
|
* Based on dashboard theme definition (h1,h2...)
|
|
28
27
|
*/
|
|
29
28
|
"dashboardTheme";
|
|
30
|
-
export interface
|
|
31
|
-
|
|
29
|
+
export interface StyledHtmlBoxProps {
|
|
30
|
+
sizing?: boolean;
|
|
31
|
+
sizingW?: number;
|
|
32
32
|
variant?: HtmlBoxVariant;
|
|
33
|
-
html: string;
|
|
34
33
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ThemeHtmlBox.js","sourceRoot":"","sources":["../../src/theme/ThemeHtmlBox.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"ThemeHtmlBox.js","sourceRoot":"","sources":["../../src/theme/ThemeHtmlBox.ts"],"names":[],"mappings":";;;AAAA,MAAa,cAAc;;AAA3B,wCAKC;AAJG;;GAEG;AACW,mBAAI,GAAG,iBAAiB,CAAC"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ListCounterClasses = void 0;
|
|
4
|
+
class ListCounterClasses {
|
|
5
|
+
}
|
|
6
|
+
exports.ListCounterClasses = ListCounterClasses;
|
|
7
|
+
ListCounterClasses.counter = "ic3Counter";
|
|
8
|
+
ListCounterClasses.label = "ic3ListCounter-Label";
|
|
9
|
+
//# sourceMappingURL=ThemeListCounter.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ThemeListCounter.js","sourceRoot":"","sources":["../../src/theme/ThemeListCounter.ts"],"names":[],"mappings":";;;AACA,MAAa,kBAAkB;;AAA/B,gDAMC;AAJmB,0BAAO,GAAG,YAAY,CAAC;AAEvB,wBAAK,GAAG,sBAAsB,CAAC"}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { FormFieldObject } from "../PublicTemplateForm";
|
|
2
|
+
export declare class PrintButtonClasses {
|
|
3
|
+
static readonly root: string;
|
|
4
|
+
static readonly progress: string;
|
|
5
|
+
static readonly cancel: string;
|
|
6
|
+
}
|
|
7
|
+
export declare type PrintButtonClassKey = keyof PrintButtonClasses;
|
|
8
|
+
/**
|
|
9
|
+
* Print Button Options (fields of the "Chart" tab in the widget editor).
|
|
10
|
+
*
|
|
11
|
+
* <pre>
|
|
12
|
+
* Plugin ID : ic3
|
|
13
|
+
* Widget/Template ID: PrintButton
|
|
14
|
+
* </pre>
|
|
15
|
+
*
|
|
16
|
+
* @see WidgetTemplateChartOptions
|
|
17
|
+
*/
|
|
18
|
+
export interface PrintButtonChartOptions extends FormFieldObject {
|
|
19
|
+
caption: string;
|
|
20
|
+
variant: "text" | "outlined" | "contained" | string;
|
|
21
|
+
withDialog: boolean;
|
|
22
|
+
}
|
|
23
|
+
export interface StyledPrintButtonDivProps {
|
|
24
|
+
variant: "text" | "outlined" | "contained" | string;
|
|
25
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.PrintButtonClasses = void 0;
|
|
4
|
+
class PrintButtonClasses {
|
|
5
|
+
}
|
|
6
|
+
exports.PrintButtonClasses = PrintButtonClasses;
|
|
7
|
+
PrintButtonClasses.root = "ic3PrintButton";
|
|
8
|
+
PrintButtonClasses.progress = "ic3PrintButton-progress";
|
|
9
|
+
PrintButtonClasses.cancel = "ic3PrintButton-cancel";
|
|
10
|
+
//# sourceMappingURL=ThemePrintButton.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ThemePrintButton.js","sourceRoot":"","sources":["../../src/theme/ThemePrintButton.ts"],"names":[],"mappings":";;;AAEA,MAAa,kBAAkB;;AAA/B,gDAQC;AANmB,uBAAI,GAAW,gBAAgB,CAAC;AAEhC,2BAAQ,GAAW,yBAAyB,CAAC;AAE7C,yBAAM,GAAW,uBAAuB,CAAC"}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { FormFieldObject } from "../PublicTemplateForm";
|
|
2
|
+
import { FilterPanelChartOptions } from "./ThemeFilterPanel";
|
|
3
|
+
/**
|
|
4
|
+
* Single Panel Filter Options (fields of the "Chart" tab in the widget editor).
|
|
5
|
+
*
|
|
6
|
+
* <pre>
|
|
7
|
+
* Plugin ID : ic3
|
|
8
|
+
* Widget/Template ID: SinglePanelFilter
|
|
9
|
+
* </pre>
|
|
10
|
+
*
|
|
11
|
+
* @see WidgetTemplateChartOptions
|
|
12
|
+
*/
|
|
13
|
+
export interface SinglePanelFilterChartOptions extends FormFieldObject, Pick<FilterPanelChartOptions, "variant" | "measureMdx" | "useSimpleFilterCutoff"> {
|
|
14
|
+
/**
|
|
15
|
+
* The id of the level / hierarchy that is used in the filter.
|
|
16
|
+
*/
|
|
17
|
+
levelId: string;
|
|
18
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ThemeSinglePanelFilter.js","sourceRoot":"","sources":["../../src/theme/ThemeSinglePanelFilter.ts"],"names":[],"mappings":""}
|