@ic3/reporting-api 8.2.1 → 8.2.2
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/dist/ApiUtils.js +1 -1
- package/dist/IPluginDefinition.d.ts +7 -6
- package/dist/ITidyTableTransformation.d.ts +5 -0
- package/dist/LazyTreeView.d.ts +17 -3
- package/dist/Loader.d.ts +30 -1
- package/dist/Loader.js +39 -21
- package/dist/Loader.js.map +1 -1
- package/dist/Logger.d.ts +13 -0
- package/dist/Logger.js +3 -0
- package/dist/Logger.js.map +1 -0
- package/dist/PublicAmchartsData.js +6 -3
- package/dist/PublicAmchartsData.js.map +1 -1
- package/dist/PublicContext.d.ts +10 -9
- package/dist/PublicContext.js.map +1 -1
- package/dist/PublicTemplate.d.ts +2 -1
- package/dist/PublicTemplate.js.map +1 -1
- package/dist/PublicTemplateForm.d.ts +136 -10
- package/dist/PublicTheme.d.ts +2 -1
- package/dist/PublicTheme.js +1 -0
- package/dist/PublicTheme.js.map +1 -1
- package/dist/PublicTidyColumn.d.ts +12 -3
- package/dist/PublicTidyColumn.js +4 -0
- package/dist/PublicTidyColumn.js.map +1 -1
- package/dist/PublicTidyTable.d.ts +1 -1
- package/dist/PublicTidyTableTypeGuards.d.ts +2 -1
- package/dist/PublicTidyTableTypeGuards.js +7 -1
- package/dist/PublicTidyTableTypeGuards.js.map +1 -1
- package/dist/PublicTidyTableTypes.d.ts +17 -2
- package/dist/PublicTidyTableTypes.js +7 -1
- package/dist/PublicTidyTableTypes.js.map +1 -1
- package/dist/PublicTidyTree.d.ts +2 -4
- package/dist/PublicTidyTree.js +3 -4
- package/dist/PublicTidyTree.js.map +1 -1
- package/dist/RemoteContainerUtils.js +1 -1
- package/dist/RemoteContainerUtils.js.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/dist/theme/ThemeAmCharts4.d.ts +4 -0
- package/dist/theme/ThemeFilterPanel.d.ts +19 -19
- package/dist/theme/ThemeFilterPanel.js +19 -19
- package/dist/theme/ThemeFilterPanel.js.map +1 -1
- package/dist/theme/ThemeFilterSlider.d.ts +25 -3
- package/dist/theme/ThemeFilterSlider.js +12 -2
- package/dist/theme/ThemeFilterSlider.js.map +1 -1
- package/dist/theme/ThemeHtmlBox.d.ts +1 -1
- package/dist/theme/ThemeKpiCard.js +11 -11
- package/dist/theme/ThemeKpiCard.js.map +1 -1
- package/dist/theme/ThemeLazyTreeClasses.d.ts +6 -6
- package/dist/theme/ThemeLazyTreeClasses.js +6 -6
- package/dist/theme/ThemeLazyTreeClasses.js.map +1 -1
- package/dist/theme/ThemeRepetitionWidget.d.ts +6 -0
- package/dist/theme/ThemeReportAppLeftPanel.d.ts +4 -4
- package/dist/theme/ThemeReportAppLeftPanel.js +4 -4
- package/dist/theme/ThemeReportAppLeftPanel.js.map +1 -1
- package/package.json +5 -5
|
@@ -3,73 +3,73 @@ export declare class FilterPanelClasses {
|
|
|
3
3
|
/**
|
|
4
4
|
* Main content div
|
|
5
5
|
*/
|
|
6
|
-
static readonly mainDiv = "
|
|
6
|
+
static readonly mainDiv = "ic3FilterPanel-root";
|
|
7
7
|
/**
|
|
8
8
|
* Div containing the loading spinner and text
|
|
9
9
|
*/
|
|
10
|
-
static readonly loadingDiv = "
|
|
10
|
+
static readonly loadingDiv = "ic3FilterPanel-loading";
|
|
11
11
|
/**
|
|
12
12
|
* Div with add filter and remove all filters buttons
|
|
13
13
|
*/
|
|
14
|
-
static readonly headerDiv = "
|
|
14
|
+
static readonly headerDiv = "ic3FilterPanel-header";
|
|
15
15
|
/**
|
|
16
16
|
* Div containing the 'Filters' text and the help icon button
|
|
17
17
|
*/
|
|
18
|
-
static readonly titleDiv = "
|
|
18
|
+
static readonly titleDiv = "ic3FilterPanel-title";
|
|
19
19
|
/**
|
|
20
20
|
* Div containing the 'Filters' text
|
|
21
21
|
*/
|
|
22
|
-
static readonly titleDivText = "
|
|
22
|
+
static readonly titleDivText = "ic3FilterPanel-title-text";
|
|
23
23
|
/**
|
|
24
24
|
* Div containing the add and remove all buttons
|
|
25
25
|
*/
|
|
26
|
-
static readonly headerDivButtons = "
|
|
26
|
+
static readonly headerDivButtons = "ic3FilterPanel-header-buttons";
|
|
27
27
|
/**
|
|
28
28
|
* Add button
|
|
29
29
|
*/
|
|
30
|
-
static readonly headerDivAddButton = "
|
|
30
|
+
static readonly headerDivAddButton = "ic3FilterPanel-HeaderDivAddButton";
|
|
31
31
|
/**
|
|
32
32
|
* Remove all button
|
|
33
33
|
*/
|
|
34
|
-
static readonly headerDivRemoveAllButton = "
|
|
34
|
+
static readonly headerDivRemoveAllButton = "ic3FilterPanel-HeaderDivRemoveAllButton";
|
|
35
35
|
/**
|
|
36
36
|
* Div of the content root. Used for animation purposes.
|
|
37
37
|
*/
|
|
38
|
-
static readonly contentDivRoot = "
|
|
38
|
+
static readonly contentDivRoot = "ic3FilterPanel-content-root";
|
|
39
39
|
/**
|
|
40
40
|
* Div with the stack of filter items
|
|
41
41
|
*/
|
|
42
|
-
static readonly contentDiv = "
|
|
42
|
+
static readonly contentDiv = "ic3FilterPanel-content";
|
|
43
43
|
/**
|
|
44
44
|
* Div with no filters defined text
|
|
45
45
|
*/
|
|
46
|
-
static readonly contentNoFilters = "
|
|
46
|
+
static readonly contentNoFilters = "ic3FilterPanel-NoFilters";
|
|
47
47
|
/**
|
|
48
48
|
* Main filter div
|
|
49
49
|
*/
|
|
50
|
-
static readonly filterItemDiv = "
|
|
50
|
+
static readonly filterItemDiv = "ic3FilterPanel-filterItem";
|
|
51
51
|
/**
|
|
52
52
|
* Main filter div
|
|
53
53
|
*/
|
|
54
|
-
static readonly filterItemDivHeader = "
|
|
55
|
-
static readonly filterItemClearButton = "
|
|
56
|
-
static readonly filterItemRemoveButton = "
|
|
54
|
+
static readonly filterItemDivHeader = "ic3FilterPanel-filterItemHeader";
|
|
55
|
+
static readonly filterItemClearButton = "ic3FilterPanel-ItemClearButton";
|
|
56
|
+
static readonly filterItemRemoveButton = "ic3FilterPanel-ItemRemoveButton";
|
|
57
57
|
/**
|
|
58
58
|
* Classname for the TextField component
|
|
59
59
|
*/
|
|
60
|
-
static readonly inputField = "
|
|
60
|
+
static readonly inputField = "ic3FilterPanel-filterInputfield";
|
|
61
61
|
/**
|
|
62
62
|
* A div with the displayed values for the value selector in preview mode
|
|
63
63
|
*/
|
|
64
|
-
static readonly inputFieldPreviewValues = "
|
|
64
|
+
static readonly inputFieldPreviewValues = "ic3FilterPanel-PreviewValue";
|
|
65
65
|
/**
|
|
66
66
|
* Classname for the field label
|
|
67
67
|
*/
|
|
68
|
-
static readonly fieldName = "
|
|
68
|
+
static readonly fieldName = "ic3FilterPanel-fieldName";
|
|
69
69
|
/**
|
|
70
70
|
* Div with selectable items for filters with few items
|
|
71
71
|
*/
|
|
72
|
-
static readonly selectableContent = "
|
|
72
|
+
static readonly selectableContent = "ic3FilterPanel-selectableContent";
|
|
73
73
|
}
|
|
74
74
|
export interface FilterPanelProps {
|
|
75
75
|
/**
|
|
@@ -7,71 +7,71 @@ exports.FilterPanelClasses = FilterPanelClasses;
|
|
|
7
7
|
/**
|
|
8
8
|
* Main content div
|
|
9
9
|
*/
|
|
10
|
-
FilterPanelClasses.mainDiv = "
|
|
10
|
+
FilterPanelClasses.mainDiv = "ic3FilterPanel-root";
|
|
11
11
|
/**
|
|
12
12
|
* Div containing the loading spinner and text
|
|
13
13
|
*/
|
|
14
|
-
FilterPanelClasses.loadingDiv = "
|
|
14
|
+
FilterPanelClasses.loadingDiv = "ic3FilterPanel-loading";
|
|
15
15
|
/**
|
|
16
16
|
* Div with add filter and remove all filters buttons
|
|
17
17
|
*/
|
|
18
|
-
FilterPanelClasses.headerDiv = "
|
|
18
|
+
FilterPanelClasses.headerDiv = "ic3FilterPanel-header";
|
|
19
19
|
/**
|
|
20
20
|
* Div containing the 'Filters' text and the help icon button
|
|
21
21
|
*/
|
|
22
|
-
FilterPanelClasses.titleDiv = "
|
|
22
|
+
FilterPanelClasses.titleDiv = "ic3FilterPanel-title";
|
|
23
23
|
/**
|
|
24
24
|
* Div containing the 'Filters' text
|
|
25
25
|
*/
|
|
26
|
-
FilterPanelClasses.titleDivText = "
|
|
26
|
+
FilterPanelClasses.titleDivText = "ic3FilterPanel-title-text";
|
|
27
27
|
/**
|
|
28
28
|
* Div containing the add and remove all buttons
|
|
29
29
|
*/
|
|
30
|
-
FilterPanelClasses.headerDivButtons = "
|
|
30
|
+
FilterPanelClasses.headerDivButtons = "ic3FilterPanel-header-buttons";
|
|
31
31
|
/**
|
|
32
32
|
* Add button
|
|
33
33
|
*/
|
|
34
|
-
FilterPanelClasses.headerDivAddButton = "
|
|
34
|
+
FilterPanelClasses.headerDivAddButton = "ic3FilterPanel-HeaderDivAddButton";
|
|
35
35
|
/**
|
|
36
36
|
* Remove all button
|
|
37
37
|
*/
|
|
38
|
-
FilterPanelClasses.headerDivRemoveAllButton = "
|
|
38
|
+
FilterPanelClasses.headerDivRemoveAllButton = "ic3FilterPanel-HeaderDivRemoveAllButton";
|
|
39
39
|
/**
|
|
40
40
|
* Div of the content root. Used for animation purposes.
|
|
41
41
|
*/
|
|
42
|
-
FilterPanelClasses.contentDivRoot = "
|
|
42
|
+
FilterPanelClasses.contentDivRoot = "ic3FilterPanel-content-root";
|
|
43
43
|
/**
|
|
44
44
|
* Div with the stack of filter items
|
|
45
45
|
*/
|
|
46
|
-
FilterPanelClasses.contentDiv = "
|
|
46
|
+
FilterPanelClasses.contentDiv = "ic3FilterPanel-content";
|
|
47
47
|
/**
|
|
48
48
|
* Div with no filters defined text
|
|
49
49
|
*/
|
|
50
|
-
FilterPanelClasses.contentNoFilters = "
|
|
50
|
+
FilterPanelClasses.contentNoFilters = "ic3FilterPanel-NoFilters";
|
|
51
51
|
/**
|
|
52
52
|
* Main filter div
|
|
53
53
|
*/
|
|
54
|
-
FilterPanelClasses.filterItemDiv = "
|
|
54
|
+
FilterPanelClasses.filterItemDiv = "ic3FilterPanel-filterItem";
|
|
55
55
|
/**
|
|
56
56
|
* Main filter div
|
|
57
57
|
*/
|
|
58
|
-
FilterPanelClasses.filterItemDivHeader = "
|
|
59
|
-
FilterPanelClasses.filterItemClearButton = "
|
|
60
|
-
FilterPanelClasses.filterItemRemoveButton = "
|
|
58
|
+
FilterPanelClasses.filterItemDivHeader = "ic3FilterPanel-filterItemHeader";
|
|
59
|
+
FilterPanelClasses.filterItemClearButton = "ic3FilterPanel-ItemClearButton";
|
|
60
|
+
FilterPanelClasses.filterItemRemoveButton = "ic3FilterPanel-ItemRemoveButton";
|
|
61
61
|
/**
|
|
62
62
|
* Classname for the TextField component
|
|
63
63
|
*/
|
|
64
|
-
FilterPanelClasses.inputField = "
|
|
64
|
+
FilterPanelClasses.inputField = "ic3FilterPanel-filterInputfield";
|
|
65
65
|
/**
|
|
66
66
|
* A div with the displayed values for the value selector in preview mode
|
|
67
67
|
*/
|
|
68
|
-
FilterPanelClasses.inputFieldPreviewValues = "
|
|
68
|
+
FilterPanelClasses.inputFieldPreviewValues = "ic3FilterPanel-PreviewValue";
|
|
69
69
|
/**
|
|
70
70
|
* Classname for the field label
|
|
71
71
|
*/
|
|
72
|
-
FilterPanelClasses.fieldName = "
|
|
72
|
+
FilterPanelClasses.fieldName = "ic3FilterPanel-fieldName";
|
|
73
73
|
/**
|
|
74
74
|
* Div with selectable items for filters with few items
|
|
75
75
|
*/
|
|
76
|
-
FilterPanelClasses.selectableContent = "
|
|
76
|
+
FilterPanelClasses.selectableContent = "ic3FilterPanel-selectableContent";
|
|
77
77
|
//# sourceMappingURL=ThemeFilterPanel.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ThemeFilterPanel.js","sourceRoot":"","sources":["../../src/theme/ThemeFilterPanel.ts"],"names":[],"mappings":";;;AAEA,MAAa,kBAAkB;;AAA/B,gDA0FC;AAzFG;;GAEG;AACa,0BAAO,GAAG,
|
|
1
|
+
{"version":3,"file":"ThemeFilterPanel.js","sourceRoot":"","sources":["../../src/theme/ThemeFilterPanel.ts"],"names":[],"mappings":";;;AAEA,MAAa,kBAAkB;;AAA/B,gDA0FC;AAzFG;;GAEG;AACa,0BAAO,GAAG,qBAAqB,CAAC;AAEhD;;GAEG;AACa,6BAAU,GAAG,wBAAwB,CAAC;AAEtD;;GAEG;AACa,4BAAS,GAAG,uBAAuB,CAAC;AAEpD;;GAEG;AACa,2BAAQ,GAAG,sBAAsB,CAAC;AAElD;;GAEG;AACa,+BAAY,GAAG,2BAA2B,CAAC;AAE3D;;GAEG;AACa,mCAAgB,GAAG,+BAA+B,CAAC;AAEnE;;GAEG;AACa,qCAAkB,GAAG,mCAAmC,CAAC;AAEzE;;GAEG;AACa,2CAAwB,GAAG,yCAAyC,CAAC;AAErF;;GAEG;AACa,iCAAc,GAAG,6BAA6B,CAAC;AAE/D;;GAEG;AACa,6BAAU,GAAG,wBAAwB,CAAC;AAEtD;;GAEG;AACa,mCAAgB,GAAG,0BAA0B,CAAC;AAE9D;;GAEG;AACa,gCAAa,GAAG,2BAA2B,CAAC;AAE5D;;GAEG;AACa,sCAAmB,GAAG,iCAAiC,CAAC;AAExD,wCAAqB,GAAG,gCAAgC,CAAC;AAEzD,yCAAsB,GAAG,iCAAiC,CAAC;AAE3E;;GAEG;AACa,6BAAU,GAAG,iCAAiC,CAAC;AAE/D;;GAEG;AACa,0CAAuB,GAAG,6BAA6B,CAAC;AAExE;;GAEG;AACa,4BAAS,GAAG,0BAA0B,CAAC;AAEvD;;GAEG;AACa,oCAAiB,GAAG,kCAAkC,CAAC"}
|
|
@@ -7,21 +7,31 @@ export declare class FilterSliderClasses {
|
|
|
7
7
|
/**
|
|
8
8
|
* Style applied to the mui slider element.
|
|
9
9
|
*/
|
|
10
|
-
static readonly slider = "
|
|
10
|
+
static readonly slider = "ic3FilterSlider-slider";
|
|
11
11
|
/**
|
|
12
12
|
* Style applied to the tooltip element.
|
|
13
13
|
*/
|
|
14
|
-
static readonly tooltip = "
|
|
14
|
+
static readonly tooltip = "ic3FilterSlider-tooltip";
|
|
15
15
|
/**
|
|
16
16
|
* Slot for MuiSlider component
|
|
17
17
|
*/
|
|
18
18
|
static readonly muiSlider = "";
|
|
19
|
+
/**
|
|
20
|
+
* Slot for Selection Label (below the slider)
|
|
21
|
+
*/
|
|
22
|
+
static readonly selectionLabel = "ic3FilterSlider-SelectionLabel";
|
|
23
|
+
/**
|
|
24
|
+
* root modifiers for horizontal or vertical slider
|
|
25
|
+
*/
|
|
26
|
+
static readonly horizontal = "ic3FilterSlider-Horizontal";
|
|
27
|
+
static readonly vertical = "ic3FilterSlider-Vertical";
|
|
19
28
|
}
|
|
20
29
|
export declare type FilterSliderClassKey = keyof FilterSliderClasses;
|
|
21
30
|
export declare enum FilterSliderRenderingType {
|
|
22
31
|
MARKS = "MARKS",
|
|
23
32
|
TOOLTIPS = "TOOLTIPS",
|
|
24
|
-
MARKS_WITH_TOOLTIPS = "MARKS_WITH_TOOLTIPS"
|
|
33
|
+
MARKS_WITH_TOOLTIPS = "MARKS_WITH_TOOLTIPS",
|
|
34
|
+
NONE = "NONE"
|
|
25
35
|
}
|
|
26
36
|
/**
|
|
27
37
|
* Filter Slider Options (fields of the "Chart" tab in the widget editor).
|
|
@@ -58,4 +68,16 @@ export interface FilterSliderChartOptions extends FilterTidyTableChartOptions {
|
|
|
58
68
|
* Left/right (or top/down) margins of the slider.
|
|
59
69
|
*/
|
|
60
70
|
margin: number;
|
|
71
|
+
/**
|
|
72
|
+
* Mark Each
|
|
73
|
+
*
|
|
74
|
+
* When active, adds a label for each nt step to the mark (1 for each step)
|
|
75
|
+
*/
|
|
76
|
+
markLabelEach: number;
|
|
77
|
+
/**
|
|
78
|
+
* Selection Label.
|
|
79
|
+
*
|
|
80
|
+
* An optional label under the slider with selection information
|
|
81
|
+
*/
|
|
82
|
+
selectionLabel?: string;
|
|
61
83
|
}
|
|
@@ -11,19 +11,29 @@ FilterSliderClasses.root = "root";
|
|
|
11
11
|
/**
|
|
12
12
|
* Style applied to the mui slider element.
|
|
13
13
|
*/
|
|
14
|
-
FilterSliderClasses.slider = "
|
|
14
|
+
FilterSliderClasses.slider = "ic3FilterSlider-slider";
|
|
15
15
|
/**
|
|
16
16
|
* Style applied to the tooltip element.
|
|
17
17
|
*/
|
|
18
|
-
FilterSliderClasses.tooltip = "
|
|
18
|
+
FilterSliderClasses.tooltip = "ic3FilterSlider-tooltip";
|
|
19
19
|
/**
|
|
20
20
|
* Slot for MuiSlider component
|
|
21
21
|
*/
|
|
22
22
|
FilterSliderClasses.muiSlider = "";
|
|
23
|
+
/**
|
|
24
|
+
* Slot for Selection Label (below the slider)
|
|
25
|
+
*/
|
|
26
|
+
FilterSliderClasses.selectionLabel = "ic3FilterSlider-SelectionLabel";
|
|
27
|
+
/**
|
|
28
|
+
* root modifiers for horizontal or vertical slider
|
|
29
|
+
*/
|
|
30
|
+
FilterSliderClasses.horizontal = "ic3FilterSlider-Horizontal";
|
|
31
|
+
FilterSliderClasses.vertical = "ic3FilterSlider-Vertical";
|
|
23
32
|
var FilterSliderRenderingType;
|
|
24
33
|
(function (FilterSliderRenderingType) {
|
|
25
34
|
FilterSliderRenderingType["MARKS"] = "MARKS";
|
|
26
35
|
FilterSliderRenderingType["TOOLTIPS"] = "TOOLTIPS";
|
|
27
36
|
FilterSliderRenderingType["MARKS_WITH_TOOLTIPS"] = "MARKS_WITH_TOOLTIPS";
|
|
37
|
+
FilterSliderRenderingType["NONE"] = "NONE";
|
|
28
38
|
})(FilterSliderRenderingType = exports.FilterSliderRenderingType || (exports.FilterSliderRenderingType = {}));
|
|
29
39
|
//# sourceMappingURL=ThemeFilterSlider.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ThemeFilterSlider.js","sourceRoot":"","sources":["../../src/theme/ThemeFilterSlider.ts"],"names":[],"mappings":";;;AAEA,MAAa,mBAAmB;;AAAhC,
|
|
1
|
+
{"version":3,"file":"ThemeFilterSlider.js","sourceRoot":"","sources":["../../src/theme/ThemeFilterSlider.ts"],"names":[],"mappings":";;;AAEA,MAAa,mBAAmB;;AAAhC,kDAkCC;AAhCG;;GAEG;AACa,wBAAI,GAAG,MAAM,CAAC;AAE9B;;GAEG;AACa,0BAAM,GAAG,wBAAwB,CAAC;AAElD;;GAEG;AACa,2BAAO,GAAG,yBAAyB,CAAA;AAEnD;;GAEG;AACa,6BAAS,GAAG,EAAE,CAAC;AAE/B;;GAEG;AACa,kCAAc,GAAG,gCAAgC,CAAC;AAElE;;GAEG;AACa,8BAAU,GAAG,4BAA4B,CAAC;AAC1C,4BAAQ,GAAG,0BAA0B,CAAC;AAO1D,IAAY,yBAMX;AAND,WAAY,yBAAyB;IAEjC,4CAAe,CAAA;IACf,kDAAqB,CAAA;IACrB,wEAA2C,CAAA;IAC3C,0CAAa,CAAA;AACjB,CAAC,EANW,yBAAyB,GAAzB,iCAAyB,KAAzB,iCAAyB,QAMpC"}
|
|
@@ -4,15 +4,15 @@ exports.KpiCardClasses = void 0;
|
|
|
4
4
|
class KpiCardClasses {
|
|
5
5
|
}
|
|
6
6
|
exports.KpiCardClasses = KpiCardClasses;
|
|
7
|
-
KpiCardClasses.kpiValuesRoot = "
|
|
8
|
-
KpiCardClasses.sparkChartRoot = "
|
|
9
|
-
KpiCardClasses.kpiValueTitle = "
|
|
10
|
-
KpiCardClasses.kpiValueText = "
|
|
11
|
-
KpiCardClasses.kpiCompareTextRoot = "
|
|
12
|
-
KpiCardClasses.kpiCompareTextRootEmpty = "
|
|
13
|
-
KpiCardClasses.comparePercentageText = "
|
|
14
|
-
KpiCardClasses.compareTargetText = "
|
|
15
|
-
KpiCardClasses.comparePercentZero = "
|
|
16
|
-
KpiCardClasses.comparePercentUp = "
|
|
17
|
-
KpiCardClasses.comparePercentDown = "
|
|
7
|
+
KpiCardClasses.kpiValuesRoot = "ic3KpiValuesRoot";
|
|
8
|
+
KpiCardClasses.sparkChartRoot = "ic3KpiSparkChartRoot";
|
|
9
|
+
KpiCardClasses.kpiValueTitle = "ic3KpiValueNameText";
|
|
10
|
+
KpiCardClasses.kpiValueText = "ic3KpiValueText";
|
|
11
|
+
KpiCardClasses.kpiCompareTextRoot = "ic3KpiCompareTextRoot";
|
|
12
|
+
KpiCardClasses.kpiCompareTextRootEmpty = "ic3KpiEmptyCompareTextEmpty";
|
|
13
|
+
KpiCardClasses.comparePercentageText = "ic3ComparePercentageText";
|
|
14
|
+
KpiCardClasses.compareTargetText = "ic3compareTargetText";
|
|
15
|
+
KpiCardClasses.comparePercentZero = "ic3ComparePercentZero";
|
|
16
|
+
KpiCardClasses.comparePercentUp = "ic3ComparePercentUp";
|
|
17
|
+
KpiCardClasses.comparePercentDown = "ic3ComparePercentDown";
|
|
18
18
|
//# sourceMappingURL=ThemeKpiCard.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ThemeKpiCard.js","sourceRoot":"","sources":["../../src/theme/ThemeKpiCard.ts"],"names":[],"mappings":";;;AAUA,MAAa,cAAc;;AAA3B,wCAwBC;AAtBiB,4BAAa,GAAG,
|
|
1
|
+
{"version":3,"file":"ThemeKpiCard.js","sourceRoot":"","sources":["../../src/theme/ThemeKpiCard.ts"],"names":[],"mappings":";;;AAUA,MAAa,cAAc;;AAA3B,wCAwBC;AAtBiB,4BAAa,GAAG,kBAAkB,CAAC;AAEnC,6BAAc,GAAG,sBAAsB,CAAC;AAExC,4BAAa,GAAG,qBAAqB,CAAC;AAEtC,2BAAY,GAAG,iBAAiB,CAAC;AAEjC,iCAAkB,GAAG,uBAAuB,CAAC;AAE7C,sCAAuB,GAAG,6BAA6B,CAAC;AAExD,oCAAqB,GAAG,0BAA0B,CAAC;AAEnD,gCAAiB,GAAG,sBAAsB,CAAC;AAE3C,iCAAkB,GAAG,uBAAuB,CAAC;AAE7C,+BAAgB,GAAG,qBAAqB,CAAC;AAEzC,iCAAkB,GAAG,uBAAuB,CAAC"}
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
export declare class LazyTreeClasses {
|
|
2
2
|
/** Styles applied to the search toolbar element */
|
|
3
|
-
static readonly toolbar = "
|
|
3
|
+
static readonly toolbar = "ic3LazyTreeView-toolbar";
|
|
4
4
|
/** Styles applied to the search search input element */
|
|
5
|
-
static readonly input = "
|
|
5
|
+
static readonly input = "ic3LazyTreeView-toolbar-input";
|
|
6
6
|
/** Styles applied to the select filter button (on) */
|
|
7
|
-
static readonly button = "
|
|
7
|
+
static readonly button = "ic3LazyTreeView-toolbar-button";
|
|
8
8
|
/** Styles applied to the select filter button (on) */
|
|
9
|
-
static readonly buttonFilterSelectedOn = "
|
|
9
|
+
static readonly buttonFilterSelectedOn = "ic3LazyTreeView-toolbar-buttonOn";
|
|
10
10
|
/** Styles applied to the select filter button (off) */
|
|
11
|
-
static readonly buttonFilterSelectedOff = "
|
|
11
|
+
static readonly buttonFilterSelectedOff = "ic3LazyTreeView-toolbar-buttonOff";
|
|
12
12
|
/** Styles applied to the TreeRoot element */
|
|
13
|
-
static readonly treeRoot = "
|
|
13
|
+
static readonly treeRoot = "ic3LazyTreeView-treeRoot";
|
|
14
14
|
}
|
|
@@ -5,15 +5,15 @@ class LazyTreeClasses {
|
|
|
5
5
|
}
|
|
6
6
|
exports.LazyTreeClasses = LazyTreeClasses;
|
|
7
7
|
/** Styles applied to the search toolbar element */
|
|
8
|
-
LazyTreeClasses.toolbar = '
|
|
8
|
+
LazyTreeClasses.toolbar = 'ic3LazyTreeView-toolbar';
|
|
9
9
|
/** Styles applied to the search search input element */
|
|
10
|
-
LazyTreeClasses.input = '
|
|
10
|
+
LazyTreeClasses.input = 'ic3LazyTreeView-toolbar-input';
|
|
11
11
|
/** Styles applied to the select filter button (on) */
|
|
12
|
-
LazyTreeClasses.button = '
|
|
12
|
+
LazyTreeClasses.button = 'ic3LazyTreeView-toolbar-button';
|
|
13
13
|
/** Styles applied to the select filter button (on) */
|
|
14
|
-
LazyTreeClasses.buttonFilterSelectedOn = '
|
|
14
|
+
LazyTreeClasses.buttonFilterSelectedOn = 'ic3LazyTreeView-toolbar-buttonOn';
|
|
15
15
|
/** Styles applied to the select filter button (off) */
|
|
16
|
-
LazyTreeClasses.buttonFilterSelectedOff = '
|
|
16
|
+
LazyTreeClasses.buttonFilterSelectedOff = 'ic3LazyTreeView-toolbar-buttonOff';
|
|
17
17
|
/** Styles applied to the TreeRoot element */
|
|
18
|
-
LazyTreeClasses.treeRoot = '
|
|
18
|
+
LazyTreeClasses.treeRoot = 'ic3LazyTreeView-treeRoot';
|
|
19
19
|
//# sourceMappingURL=ThemeLazyTreeClasses.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ThemeLazyTreeClasses.js","sourceRoot":"","sources":["../../src/theme/ThemeLazyTreeClasses.ts"],"names":[],"mappings":";;;AAAA,MAAa,eAAe;;AAA5B,0CAmBC;AAjBG,mDAAmD;AACnC,uBAAO,GAAG,
|
|
1
|
+
{"version":3,"file":"ThemeLazyTreeClasses.js","sourceRoot":"","sources":["../../src/theme/ThemeLazyTreeClasses.ts"],"names":[],"mappings":";;;AAAA,MAAa,eAAe;;AAA5B,0CAmBC;AAjBG,mDAAmD;AACnC,uBAAO,GAAG,yBAAyB,CAAC;AAEpD,wDAAwD;AACxC,qBAAK,GAAG,+BAA+B,CAAC;AAExD,sDAAsD;AACtC,sBAAM,GAAG,gCAAgC,CAAC;AAE1D,sDAAsD;AACtC,sCAAsB,GAAG,kCAAkC,CAAC;AAE5E,uDAAuD;AACvC,uCAAuB,GAAG,mCAAmC,CAAC;AAE9E,6CAA6C;AAC7B,wBAAQ,GAAG,0BAA0B,CAAC"}
|
|
@@ -48,4 +48,10 @@ export interface RepetitionWidgetChartOptions extends FormFieldObject {
|
|
|
48
48
|
* Defines the vertical space between the repeated widgets.
|
|
49
49
|
*/
|
|
50
50
|
bottomPadding?: number;
|
|
51
|
+
/**
|
|
52
|
+
* Disable Inner widget Resizing
|
|
53
|
+
*
|
|
54
|
+
* If disabled, the inner widgets will not resize on a change of the page size (keeping original size).
|
|
55
|
+
*/
|
|
56
|
+
disableWidgetResizing?: boolean;
|
|
51
57
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export declare class ReportAppLeftPanelClasses {
|
|
2
|
-
static readonly reportAppLeftPanelMenu = "
|
|
3
|
-
static readonly reportAppLeftPanelIcon = "
|
|
4
|
-
static readonly reportAppLeftPanelTitle = "
|
|
5
|
-
static readonly reportAppLeftPanelFilter = "
|
|
2
|
+
static readonly reportAppLeftPanelMenu = "ic3ReportAppLeftPanel-menu";
|
|
3
|
+
static readonly reportAppLeftPanelIcon = "ic3ReportAppLeftPanel-icon";
|
|
4
|
+
static readonly reportAppLeftPanelTitle = "ic3ReportAppLeftPanel-title";
|
|
5
|
+
static readonly reportAppLeftPanelFilter = "ic3ReportAppLeftPanel-filter";
|
|
6
6
|
}
|
|
7
7
|
export declare type ReportAppLeftPanelClassKey = keyof ReportAppLeftPanelClasses;
|
|
@@ -4,8 +4,8 @@ exports.ReportAppLeftPanelClasses = void 0;
|
|
|
4
4
|
class ReportAppLeftPanelClasses {
|
|
5
5
|
}
|
|
6
6
|
exports.ReportAppLeftPanelClasses = ReportAppLeftPanelClasses;
|
|
7
|
-
ReportAppLeftPanelClasses.reportAppLeftPanelMenu = "
|
|
8
|
-
ReportAppLeftPanelClasses.reportAppLeftPanelIcon = "
|
|
9
|
-
ReportAppLeftPanelClasses.reportAppLeftPanelTitle = "
|
|
10
|
-
ReportAppLeftPanelClasses.reportAppLeftPanelFilter = "
|
|
7
|
+
ReportAppLeftPanelClasses.reportAppLeftPanelMenu = "ic3ReportAppLeftPanel-menu";
|
|
8
|
+
ReportAppLeftPanelClasses.reportAppLeftPanelIcon = "ic3ReportAppLeftPanel-icon";
|
|
9
|
+
ReportAppLeftPanelClasses.reportAppLeftPanelTitle = "ic3ReportAppLeftPanel-title";
|
|
10
|
+
ReportAppLeftPanelClasses.reportAppLeftPanelFilter = "ic3ReportAppLeftPanel-filter";
|
|
11
11
|
//# sourceMappingURL=ThemeReportAppLeftPanel.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ThemeReportAppLeftPanel.js","sourceRoot":"","sources":["../../src/theme/ThemeReportAppLeftPanel.ts"],"names":[],"mappings":";;;AAAA,MAAa,yBAAyB;;AAAtC,8DAUC;AARmB,gDAAsB,GAAG,
|
|
1
|
+
{"version":3,"file":"ThemeReportAppLeftPanel.js","sourceRoot":"","sources":["../../src/theme/ThemeReportAppLeftPanel.ts"],"names":[],"mappings":";;;AAAA,MAAa,yBAAyB;;AAAtC,8DAUC;AARmB,gDAAsB,GAAG,4BAA4B,CAAC;AAEtD,gDAAsB,GAAG,4BAA4B,CAAC;AAEtD,iDAAuB,GAAG,6BAA6B,CAAC;AAExD,kDAAwB,GAAG,8BAA8B,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ic3/reporting-api",
|
|
3
|
-
"version": "8.2.
|
|
3
|
+
"version": "8.2.2",
|
|
4
4
|
"description": "icCube dashboards API",
|
|
5
5
|
"homepage": "https://github.com/ic3-software/ic3-reporting-api",
|
|
6
6
|
"repository": "https://github.com/ic3-software/ic3-reporting-api",
|
|
@@ -14,14 +14,14 @@
|
|
|
14
14
|
"access": "public"
|
|
15
15
|
},
|
|
16
16
|
"devDependencies": {
|
|
17
|
-
"@mui/material": "5.
|
|
18
|
-
"@mui/system": "5.
|
|
17
|
+
"@mui/material": "5.10.3",
|
|
18
|
+
"@mui/system": "5.10.3",
|
|
19
19
|
"@types/googlemaps": "3.43.3",
|
|
20
20
|
"@types/markerclustererplus": "2.1.33",
|
|
21
|
-
"@types/node": "18.
|
|
21
|
+
"@types/node": "18.7.15",
|
|
22
22
|
"@types/react": "17.0.43",
|
|
23
23
|
"del-cli": "5.0.0",
|
|
24
|
-
"typescript": "4.
|
|
24
|
+
"typescript": "4.8.2"
|
|
25
25
|
},
|
|
26
26
|
"scripts": {
|
|
27
27
|
"build": "del-cli dist && npx tsc",
|