@ic3/reporting-api 8.1.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/INotification.d.ts +8 -2
- package/dist/IPluginDefinition.d.ts +7 -6
- package/dist/IReporting.d.ts +6 -0
- package/dist/IThemeManager.d.ts +5 -0
- package/dist/ITidyTableTransformation.d.ts +5 -0
- package/dist/ITypes.d.ts +6 -0
- package/dist/ITypes.js +8 -1
- package/dist/ITypes.js.map +1 -1
- package/dist/IcEvent.d.ts +4 -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 +11 -9
- package/dist/PublicContext.js.map +1 -1
- package/dist/PublicTemplate.d.ts +18 -3
- package/dist/PublicTemplate.js.map +1 -1
- package/dist/PublicTemplateForm.d.ts +169 -59
- package/dist/PublicTemplateForm.js +10 -1
- package/dist/PublicTemplateForm.js.map +1 -1
- package/dist/PublicTemplates.d.ts +1 -0
- package/dist/PublicTheme.d.ts +44 -10
- package/dist/PublicTheme.js +1 -0
- package/dist/PublicTheme.js.map +1 -1
- package/dist/PublicTidyColumn.d.ts +20 -5
- package/dist/PublicTidyColumn.js +4 -0
- package/dist/PublicTidyColumn.js.map +1 -1
- package/dist/PublicTidyTable.d.ts +9 -2
- package/dist/PublicTidyTableInteractions.d.ts +23 -2
- package/dist/PublicTidyTableTypeGuards.d.ts +5 -0
- package/dist/PublicTidyTableTypeGuards.js +22 -0
- package/dist/PublicTidyTableTypeGuards.js.map +1 -0
- package/dist/PublicTidyTableTypes.d.ts +26 -5
- package/dist/PublicTidyTableTypes.js +8 -2
- 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 +12 -1
- package/dist/theme/ThemeBaseTable.d.ts +6 -0
- package/dist/theme/ThemeEmbeddedReport.d.ts +3 -0
- package/dist/theme/ThemeFilterAutocomplete.d.ts +7 -0
- package/dist/theme/ThemeFilterAutocomplete.js +1 -0
- package/dist/theme/ThemeFilterAutocomplete.js.map +1 -1
- package/dist/theme/ThemeFilterPanel.d.ts +69 -8
- package/dist/theme/ThemeFilterPanel.js +50 -8
- 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/ThemeKpiBox.d.ts +0 -13
- package/dist/theme/ThemeKpiCard.d.ts +41 -5
- package/dist/theme/ThemeKpiCard.js +15 -0
- 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 +6 -6
|
@@ -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"}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { FormFieldObject } from "../PublicTemplateForm";
|
|
2
2
|
import { HtmlBoxVariant } from "./ThemeHtmlBox";
|
|
3
|
-
import { TidyTableColumnSelector } from "../PublicTidyTableTypes";
|
|
4
3
|
/**
|
|
5
4
|
* KPI Box Options (fields of the "Chart" tab in the widget editor).
|
|
6
5
|
*
|
|
@@ -31,16 +30,4 @@ export interface KpiBoxChartOptions extends FormFieldObject {
|
|
|
31
30
|
* Expression that returns a markdown text. Evaluated once after row's markdown.
|
|
32
31
|
*/
|
|
33
32
|
postMarkdown?: string;
|
|
34
|
-
/**
|
|
35
|
-
* Column.
|
|
36
|
-
*
|
|
37
|
-
* Default column for the expression and the background color.
|
|
38
|
-
*/
|
|
39
|
-
column?: TidyTableColumnSelector;
|
|
40
|
-
/**
|
|
41
|
-
* Background Color.
|
|
42
|
-
*
|
|
43
|
-
* Use the column color to set the background color.
|
|
44
|
-
*/
|
|
45
|
-
backgroundColorFromQuery: boolean;
|
|
46
33
|
}
|
|
@@ -1,6 +1,28 @@
|
|
|
1
1
|
import { FormFieldObject } from "../PublicTemplateForm";
|
|
2
2
|
import { TidyTableColumnSelector } from "../PublicTidyTableTypes";
|
|
3
3
|
import { CompareTextInterpretationType, SparkChartType, SparklinePosition, TargetTextIconSet, TargetTextPosition } from "../ITypes";
|
|
4
|
+
export declare class KpiCardClasses {
|
|
5
|
+
static kpiValuesRoot: string;
|
|
6
|
+
static sparkChartRoot: string;
|
|
7
|
+
static kpiValueTitle: string;
|
|
8
|
+
static kpiValueText: string;
|
|
9
|
+
static kpiCompareTextRoot: string;
|
|
10
|
+
static kpiCompareTextRootEmpty: string;
|
|
11
|
+
static comparePercentageText: string;
|
|
12
|
+
static compareTargetText: string;
|
|
13
|
+
static comparePercentZero: string;
|
|
14
|
+
static comparePercentUp: string;
|
|
15
|
+
static comparePercentDown: string;
|
|
16
|
+
}
|
|
17
|
+
export declare type KpiCardClassKey = keyof KpiCardClasses;
|
|
18
|
+
export interface KpiCardProps {
|
|
19
|
+
/**
|
|
20
|
+
* Variant defined in the theme. If the theme has variants, then the user can select one.
|
|
21
|
+
*/
|
|
22
|
+
variant?: string;
|
|
23
|
+
sparklinePosition: SparklinePosition;
|
|
24
|
+
targetPosition: TargetTextPosition;
|
|
25
|
+
}
|
|
4
26
|
/**
|
|
5
27
|
* KPI Card Options (fields of the "Chart" tab in the widget editor).
|
|
6
28
|
*
|
|
@@ -11,7 +33,11 @@ import { CompareTextInterpretationType, SparkChartType, SparklinePosition, Targe
|
|
|
11
33
|
*
|
|
12
34
|
* @see WidgetTemplateChartOptions
|
|
13
35
|
*/
|
|
14
|
-
export interface KpiCartChartOptions extends
|
|
36
|
+
export interface KpiCartChartOptions extends SparkChartOptionsMeta {
|
|
37
|
+
/**
|
|
38
|
+
* Variant defined in the theme. If the theme has variants, then the user can select one.
|
|
39
|
+
*/
|
|
40
|
+
variant?: string;
|
|
15
41
|
/**
|
|
16
42
|
* Value.
|
|
17
43
|
*
|
|
@@ -73,6 +99,14 @@ export interface KpiCartChartOptions extends FormFieldObject {
|
|
|
73
99
|
* The icon that indicate the trend.
|
|
74
100
|
*/
|
|
75
101
|
iconSet: TargetTextIconSet;
|
|
102
|
+
/**
|
|
103
|
+
* Position.
|
|
104
|
+
*
|
|
105
|
+
* Where to display the sparkline.
|
|
106
|
+
*/
|
|
107
|
+
sparklinePosition: SparklinePosition;
|
|
108
|
+
}
|
|
109
|
+
export interface SparkChartOptionsMeta extends FormFieldObject {
|
|
76
110
|
/**
|
|
77
111
|
* Sparkline Type.
|
|
78
112
|
*/
|
|
@@ -90,9 +124,11 @@ export interface KpiCartChartOptions extends FormFieldObject {
|
|
|
90
124
|
*/
|
|
91
125
|
sparklineHasArea: boolean;
|
|
92
126
|
/**
|
|
93
|
-
*
|
|
94
|
-
*
|
|
95
|
-
* Where to display the sparkline.
|
|
127
|
+
* Radius of the columns rounded corners.
|
|
96
128
|
*/
|
|
97
|
-
|
|
129
|
+
columnSparkCornerRadius: number;
|
|
130
|
+
/**
|
|
131
|
+
* Space between columns.
|
|
132
|
+
*/
|
|
133
|
+
columnSparkColumnSpacing: number;
|
|
98
134
|
}
|
|
@@ -1,3 +1,18 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.KpiCardClasses = void 0;
|
|
4
|
+
class KpiCardClasses {
|
|
5
|
+
}
|
|
6
|
+
exports.KpiCardClasses = KpiCardClasses;
|
|
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";
|
|
3
18
|
//# sourceMappingURL=ThemeKpiCard.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ThemeKpiCard.js","sourceRoot":"","sources":["../../src/theme/ThemeKpiCard.ts"],"names":[],"mappings":""}
|
|
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.
|
|
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": "
|
|
21
|
+
"@types/node": "18.7.15",
|
|
22
22
|
"@types/react": "17.0.43",
|
|
23
|
-
"del-cli": "
|
|
24
|
-
"typescript": "4.
|
|
23
|
+
"del-cli": "5.0.0",
|
|
24
|
+
"typescript": "4.8.2"
|
|
25
25
|
},
|
|
26
26
|
"scripts": {
|
|
27
27
|
"build": "del-cli dist && npx tsc",
|