@ic3/reporting-api 8.6.2 → 9.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/dist/ApiUtils.js +27 -8
- package/dist/ApiUtils.js.map +1 -1
- package/dist/ITypes.d.ts +1 -2
- package/dist/IcEvent.d.ts +3 -1
- package/dist/IcEvent.js +2 -0
- package/dist/IcEvent.js.map +1 -1
- package/dist/Logger.d.ts +1 -1
- package/dist/PublicAmchartsData.js +1 -2
- package/dist/PublicAmchartsData.js.map +1 -1
- package/dist/PublicContext.d.ts +47 -304
- package/dist/PublicContext.js.map +1 -1
- package/dist/PublicTemplate.d.ts +5 -5
- package/dist/PublicTemplateExprForm.d.ts +30 -0
- package/dist/PublicTemplateExprForm.js +3 -0
- package/dist/PublicTemplateExprForm.js.map +1 -0
- package/dist/PublicTemplateForm.d.ts +73 -310
- package/dist/PublicTemplateForm.js +9 -5
- package/dist/PublicTemplateForm.js.map +1 -1
- package/dist/PublicTemplates.d.ts +3 -1
- package/dist/PublicTheme.d.ts +131 -154
- package/dist/PublicTheme.js +1 -1
- package/dist/PublicTheme.js.map +1 -1
- package/dist/PublicTidyColumn.d.ts +6 -13
- package/dist/PublicTidyTree.js +6 -3
- package/dist/PublicTidyTree.js.map +1 -1
- package/dist/RemoteContainerUtils.js +5 -14
- package/dist/RemoteContainerUtils.js.map +1 -1
- package/dist/ReportingVersion.js +2 -2
- package/dist/ReportingVersion.js.map +1 -1
- package/dist/ThemeAugmentation.d.ts +35 -0
- package/dist/ThemeAugmentation.js +3 -0
- package/dist/ThemeAugmentation.js.map +1 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.js +4 -0
- package/dist/index.js.map +1 -1
- package/dist/theme/ThemeAIWidgetChatBot.d.ts +1 -0
- package/dist/theme/ThemeAmCharts4.d.ts +13 -1
- package/dist/theme/ThemeFilterPanel.d.ts +14 -1
- package/dist/theme/ThemeFilterPanel.js +6 -1
- package/dist/theme/ThemeFilterPanel.js.map +1 -1
- package/dist/theme/ThemeIc3CustomDrilldownMenu.d.ts +7 -0
- package/dist/theme/ThemeIc3CustomDrilldownMenu.js +11 -0
- package/dist/theme/ThemeIc3CustomDrilldownMenu.js.map +1 -0
- package/dist/theme/ThemeIc3TableCellDrilldown.js.map +1 -1
- package/dist/theme/ThemeIc3WidgetBoxSpinner.d.ts +15 -0
- package/dist/theme/ThemeIc3WidgetBoxSpinner.js +13 -0
- package/dist/theme/ThemeIc3WidgetBoxSpinner.js.map +1 -0
- package/dist/theme/ThemeKpiCard.d.ts +0 -8
- package/dist/theme/ThemeListCounter.d.ts +6 -0
- package/dist/theme/ThemeListCounter.js +6 -0
- package/dist/theme/ThemeListCounter.js.map +1 -1
- package/dist/theme/ThemeSinglePanelFilter.d.ts +1 -1
- package/dist/theme/ThemeWidgetBox.d.ts +1 -0
- package/package.json +7 -7
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { ic3BaseComponents, ic3ComponentNameToClassKey, ic3ComponentsPropsList, ic3Palette, ic3PaletteOptions, ic3Theme, ic3ThemeOptions, ic3Typography, ic3TypographyOptions } from "./PublicTheme";
|
|
2
|
+
/**
|
|
3
|
+
*
|
|
4
|
+
* MUI Module augmentation
|
|
5
|
+
*
|
|
6
|
+
*/
|
|
7
|
+
declare module "@mui/material/styles" {
|
|
8
|
+
interface Palette {
|
|
9
|
+
ic3: ic3Palette;
|
|
10
|
+
}
|
|
11
|
+
interface PaletteOptions {
|
|
12
|
+
ic3?: ic3PaletteOptions;
|
|
13
|
+
}
|
|
14
|
+
interface TypographyVariants {
|
|
15
|
+
ic3: ic3Typography;
|
|
16
|
+
}
|
|
17
|
+
interface TypographyVariantsOptions {
|
|
18
|
+
ic3?: ic3TypographyOptions;
|
|
19
|
+
}
|
|
20
|
+
interface Theme {
|
|
21
|
+
ic3: ic3Theme;
|
|
22
|
+
}
|
|
23
|
+
/**
|
|
24
|
+
* Input of createTheme( {...} )
|
|
25
|
+
*/
|
|
26
|
+
interface ThemeOptions {
|
|
27
|
+
ic3: ic3ThemeOptions;
|
|
28
|
+
}
|
|
29
|
+
interface Components extends ic3BaseComponents {
|
|
30
|
+
}
|
|
31
|
+
interface ComponentNameToClassKey extends ic3ComponentNameToClassKey {
|
|
32
|
+
}
|
|
33
|
+
interface ComponentsPropsList extends ic3ComponentsPropsList {
|
|
34
|
+
}
|
|
35
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ThemeAugmentation.js","sourceRoot":"","sources":["../src/ThemeAugmentation.ts"],"names":[],"mappings":""}
|
package/dist/index.d.ts
CHANGED
|
@@ -36,6 +36,7 @@ export * from "./PublicTidyTree";
|
|
|
36
36
|
export * from "./PublicTidyHistogram";
|
|
37
37
|
export * from "./RemoteContainerUtils";
|
|
38
38
|
export * from "./ReportingVersion";
|
|
39
|
+
export * from "./ThemeAugmentation";
|
|
39
40
|
export * from "./theme/ThemeAlertDialog";
|
|
40
41
|
export * from "./theme/ThemeAmCharts4";
|
|
41
42
|
export * from "./theme/ThemeApp";
|
|
@@ -73,5 +74,8 @@ export * from "./theme/ThemeReportAppLeftPanel";
|
|
|
73
74
|
export * from "./theme/ThemeWidgetBox";
|
|
74
75
|
export * from "./theme/ThemeWidgetBoxContentMessage";
|
|
75
76
|
export * from "./theme/ThemeIc3TableCell";
|
|
77
|
+
export * from "./theme/ThemeIc3WidgetBoxSpinner";
|
|
76
78
|
export * from "./theme/ThemeHomeCard";
|
|
77
79
|
export * from "./theme/ThemeHomeConsole";
|
|
80
|
+
export * from "./theme/ThemeFilterPanelViewsMenu";
|
|
81
|
+
export * from "./theme/ThemeIc3CustomDrilldownMenu";
|
package/dist/index.js
CHANGED
|
@@ -52,6 +52,7 @@ __exportStar(require("./PublicTidyTree"), exports);
|
|
|
52
52
|
__exportStar(require("./PublicTidyHistogram"), exports);
|
|
53
53
|
__exportStar(require("./RemoteContainerUtils"), exports);
|
|
54
54
|
__exportStar(require("./ReportingVersion"), exports);
|
|
55
|
+
__exportStar(require("./ThemeAugmentation"), exports);
|
|
55
56
|
__exportStar(require("./theme/ThemeAlertDialog"), exports);
|
|
56
57
|
__exportStar(require("./theme/ThemeAmCharts4"), exports);
|
|
57
58
|
__exportStar(require("./theme/ThemeApp"), exports);
|
|
@@ -89,6 +90,9 @@ __exportStar(require("./theme/ThemeReportAppLeftPanel"), exports);
|
|
|
89
90
|
__exportStar(require("./theme/ThemeWidgetBox"), exports);
|
|
90
91
|
__exportStar(require("./theme/ThemeWidgetBoxContentMessage"), exports);
|
|
91
92
|
__exportStar(require("./theme/ThemeIc3TableCell"), exports);
|
|
93
|
+
__exportStar(require("./theme/ThemeIc3WidgetBoxSpinner"), exports);
|
|
92
94
|
__exportStar(require("./theme/ThemeHomeCard"), exports);
|
|
93
95
|
__exportStar(require("./theme/ThemeHomeConsole"), exports);
|
|
96
|
+
__exportStar(require("./theme/ThemeFilterPanelViewsMenu"), exports);
|
|
97
|
+
__exportStar(require("./theme/ThemeIc3CustomDrilldownMenu"), exports);
|
|
94
98
|
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,6CAA2B;AAC3B,4CAA0B;AAC1B,yDAAuC;AACvC,sDAAoC;AACpC,kDAAgC;AAChC,sDAAoC;AACpC,sDAAoC;AACpC,kDAAgC;AAChC,2DAAyC;AACzC,uDAAqC;AACrC,4DAA0C;AAC1C,wDAAsC;AACtC,6DAA0C;AAC1C,oEAAiD;AACjD,2CAAwB;AACxB,+DAA6C;AAC7C,2DAAyC;AACzC,0DAAwC;AACxC,mDAAiC;AACjC,iDAA+B;AAC/B,2CAAyB;AACzB,iDAA+B;AAC/B,kDAAgC;AAChC,+CAA6B;AAC7B,iDAA+B;AAC/B,mDAAiC;AACjC,uDAAqC;AACrC,oDAAkC;AAClC,gDAA8B;AAC9B,qDAAmC;AACnC,mDAAiC;AACjC,oDAAkC;AAClC,gEAA8C;AAC9C,yDAAuC;AACvC,mDAAiC;AACjC,wDAAsC;AACtC,yDAAuC;AACvC,qDAAmC;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,6CAA2B;AAC3B,4CAA0B;AAC1B,yDAAuC;AACvC,sDAAoC;AACpC,kDAAgC;AAChC,sDAAoC;AACpC,sDAAoC;AACpC,kDAAgC;AAChC,2DAAyC;AACzC,uDAAqC;AACrC,4DAA0C;AAC1C,wDAAsC;AACtC,6DAA0C;AAC1C,oEAAiD;AACjD,2CAAwB;AACxB,+DAA6C;AAC7C,2DAAyC;AACzC,0DAAwC;AACxC,mDAAiC;AACjC,iDAA+B;AAC/B,2CAAyB;AACzB,iDAA+B;AAC/B,kDAAgC;AAChC,+CAA6B;AAC7B,iDAA+B;AAC/B,mDAAiC;AACjC,uDAAqC;AACrC,oDAAkC;AAClC,gDAA8B;AAC9B,qDAAmC;AACnC,mDAAiC;AACjC,oDAAkC;AAClC,gEAA8C;AAC9C,yDAAuC;AACvC,mDAAiC;AACjC,wDAAsC;AACtC,yDAAuC;AACvC,qDAAmC;AACnC,sDAAoC;AAEpC,2DAAyC;AACzC,yDAAuC;AACvC,mDAAiC;AACjC,yDAAuC;AACvC,0DAAwC;AACxC,8DAA4C;AAC5C,6DAA2C;AAC3C,kEAAgD;AAChD,6DAA2C;AAC3C,mEAAiD;AACjD,2DAAyC;AACzC,2DAAyC;AACzC,iEAA+C;AAC/C,4DAA0C;AAC1C,0DAAwC;AACxC,sDAAoC;AACpC,sDAAoC;AACpC,6DAA2C;AAC3C,8DAA4C;AAC5C,4DAA0C;AAC1C,uDAAqC;AACrC,qDAAmC;AACnC,sDAAoC;AACpC,uDAAqC;AACrC,sDAAoC;AACpC,0DAAwC;AACxC,+DAA6C;AAC7C,4DAA0C;AAC1C,0DAAwC;AACxC,2DAAyC;AACzC,gEAA8C;AAC9C,4DAA0C;AAC1C,qDAAmC;AACnC,kEAAgD;AAChD,yDAAuC;AACvC,uEAAqD;AACrD,4DAA0C;AAC1C,mEAAiD;AACjD,wDAAsC;AACtC,2DAAyC;AACzC,oEAAkD;AAClD,sEAAoD"}
|
|
@@ -35,6 +35,7 @@ export interface AIWidgetChatBotOptions extends FormFieldObject {
|
|
|
35
35
|
* In this mode, only the initial question is being sent.
|
|
36
36
|
*/
|
|
37
37
|
frozen?: true;
|
|
38
|
+
resetOnDataChanged?: true;
|
|
38
39
|
tableDataMaxRow?: number;
|
|
39
40
|
tableDataCaptionPage0?: string;
|
|
40
41
|
model?: string;
|
|
@@ -376,6 +376,10 @@ export interface Am4SimpleCategoryAxisOptions extends FormFieldObject {
|
|
|
376
376
|
* </pre>
|
|
377
377
|
*/
|
|
378
378
|
xAxisPostRenderHook?: Hook<any, Am4SimpleCategoryAxisOptions>;
|
|
379
|
+
/**
|
|
380
|
+
* Cache the scrollbar state into local storage. The scrollbar state is kept when refreshing the dashboard.
|
|
381
|
+
*/
|
|
382
|
+
xAxisSaveZoom?: boolean;
|
|
379
383
|
}
|
|
380
384
|
export interface Am4ValueAxisOptions extends FormFieldObject {
|
|
381
385
|
/**
|
|
@@ -462,8 +466,12 @@ export interface Am4ValueAxisOptions extends FormFieldObject {
|
|
|
462
466
|
* </pre>
|
|
463
467
|
*/
|
|
464
468
|
yAxisPostRenderHook?: Hook<any, Am4ValueAxisOptions>;
|
|
469
|
+
/**
|
|
470
|
+
* Cache the scrollbar state into local storage. The scrollbar state is kept when refreshing the dashboard.
|
|
471
|
+
*/
|
|
472
|
+
yAxisSaveZoom?: boolean;
|
|
465
473
|
}
|
|
466
|
-
export interface Am4DateAxisOptions extends FormFieldObject, Pick<Am4ValueAxisOptions, "yAxisTitleText" | "yAxisMinGridDistance" | "yAxisShowGridLines"> {
|
|
474
|
+
export interface Am4DateAxisOptions extends FormFieldObject, Pick<Am4ValueAxisOptions, "yAxisTitleText" | "yAxisMinGridDistance" | "yAxisShowGridLines" | "yAxisSaveZoom"> {
|
|
467
475
|
/**
|
|
468
476
|
* In-place processing of the amCharts 4 date axis instance.
|
|
469
477
|
*
|
|
@@ -1132,6 +1140,10 @@ export interface Am4CategoryDateAxisOptions extends FormFieldObject {
|
|
|
1132
1140
|
* </pre>
|
|
1133
1141
|
*/
|
|
1134
1142
|
xAxisPostRenderHook?: Hook<any, Am4CategoryDateAxisOptions>;
|
|
1143
|
+
/**
|
|
1144
|
+
* Cache the scrollbar state into local storage. The scrollbar state is kept when refreshing the dashboard.
|
|
1145
|
+
*/
|
|
1146
|
+
xAxisSaveZoom?: boolean;
|
|
1135
1147
|
}
|
|
1136
1148
|
export interface Am4ValueAxisRangeOptions extends FormFieldObject {
|
|
1137
1149
|
/**
|
|
@@ -95,7 +95,12 @@ export declare class FilterPanelClasses {
|
|
|
95
95
|
static readonly inputFieldSetValueButton = "ic3FilterPanel-inputFieldSetValueButton";
|
|
96
96
|
static readonly dateTimePicker = "ic3FilterPanel-dateTimePicker";
|
|
97
97
|
/**
|
|
98
|
-
*
|
|
98
|
+
* Classname for the value selector div.
|
|
99
|
+
*/
|
|
100
|
+
static readonly valueSelector = "ic3FilterPanel-valueSelector";
|
|
101
|
+
/**
|
|
102
|
+
* A div with the displayed values for the value selector in preview mode. Only visible when the operator is
|
|
103
|
+
* `Is Any Of` or `Is None Of`.
|
|
99
104
|
*/
|
|
100
105
|
static readonly inputFieldPreviewValues = "ic3FilterPanel-PreviewValue";
|
|
101
106
|
/**
|
|
@@ -225,6 +230,14 @@ export interface FilterPanelChartOptions extends FormFieldObject {
|
|
|
225
230
|
* Set to `true` to show date picker shortcuts.
|
|
226
231
|
*/
|
|
227
232
|
datePickerShortcuts?: boolean;
|
|
233
|
+
/**
|
|
234
|
+
* Anchor date when using shortcuts. This expression is evaluated against the time level used.
|
|
235
|
+
*/
|
|
236
|
+
shortcutsAnchorDate?: string;
|
|
237
|
+
/**
|
|
238
|
+
* User can choose from the shortcuts in this group. Edit the groups in the theme plugin.
|
|
239
|
+
*/
|
|
240
|
+
allowedShortcutGroup: string;
|
|
228
241
|
}
|
|
229
242
|
export type TextFilterType = "EQUALS" | "NOT_EQUALS" | "STARTS_WITH" | "ENDS_WITH" | "CONTAINS" | "NOT_CONTAINS" | "REGEX";
|
|
230
243
|
export type IPGFilterItemFilterType = TextFilterType | "IS_ANY_OF" | "IS_NONE_OF" | "GREATER_THAN" | "GREATER_EQUAL_THAN" | "SMALLER_THAN" | "SMALLER_EQUAL_THAN" | "BETWEEN" | "IS_EMPTY" | "IS_NOT_EMPTY";
|
|
@@ -99,7 +99,12 @@ FilterPanelClasses.inputField = "ic3FilterPanel-filterInputfield";
|
|
|
99
99
|
FilterPanelClasses.inputFieldSetValueButton = "ic3FilterPanel-inputFieldSetValueButton";
|
|
100
100
|
FilterPanelClasses.dateTimePicker = "ic3FilterPanel-dateTimePicker";
|
|
101
101
|
/**
|
|
102
|
-
*
|
|
102
|
+
* Classname for the value selector div.
|
|
103
|
+
*/
|
|
104
|
+
FilterPanelClasses.valueSelector = "ic3FilterPanel-valueSelector";
|
|
105
|
+
/**
|
|
106
|
+
* A div with the displayed values for the value selector in preview mode. Only visible when the operator is
|
|
107
|
+
* `Is Any Of` or `Is None Of`.
|
|
103
108
|
*/
|
|
104
109
|
FilterPanelClasses.inputFieldPreviewValues = "ic3FilterPanel-PreviewValue";
|
|
105
110
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ThemeFilterPanel.js","sourceRoot":"","sources":["../../src/theme/ThemeFilterPanel.ts"],"names":[],"mappings":";;;AAEA,MAAa,kBAAkB;;AAA/B,
|
|
1
|
+
{"version":3,"file":"ThemeFilterPanel.js","sourceRoot":"","sources":["../../src/theme/ThemeFilterPanel.ts"],"names":[],"mappings":";;;AAEA,MAAa,kBAAkB;;AAA/B,gDAuJC;AAtJG;;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,kCAAe,GAAG,8BAA8B,CAAC;AAEjE;;GAEG;AACa,kCAAe,GAAG,gCAAgC,CAAC;AAEnE;;GAEG;AACa,+CAA4B,GAAG,6CAA6C,CAAC;AAE7F;;GAEG;AACa,2BAAQ,GAAG,yBAAyB,CAAC;AAErD;;GAEG;AACa,2BAAQ,GAAG,yBAAyB,CAAC;AAErD;;GAEG;AACa,mCAAgB,GAAG,+BAA+B,CAAC;AAEnE;;GAEG;AACa,wBAAK,GAAG,sBAAsB,CAAC;AAE/C;;GAEG;AACa,qCAAkB,GAAG,mCAAmC,CAAC;AAEzE;;GAEG;AACa,uCAAoB,GAAG,qCAAqC,CAAC;AAE7E;;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;AAExE;;GAEG;AACa,iDAA8B,GAAG,yCAAyC,CAAC;AAE3F;;GAEG;AACa,wCAAqB,GAAG,gCAAgC,CAAC;AAEzD,yCAAsB,GAAG,iCAAiC,CAAC;AAE3E;;GAEG;AACa,6BAAU,GAAG,iCAAiC,CAAC;AAE/D;;GAEG;AACa,2CAAwB,GAAG,yCAAyC,CAAC;AAErE,iCAAc,GAAG,+BAA+B,CAAC;AAEjE;;GAEG;AACa,gCAAa,GAAG,8BAA8B,CAAC;AAE/D;;;GAGG;AACa,0CAAuB,GAAG,6BAA6B,CAAC;AAExE;;GAEG;AACa,4BAAS,GAAG,0BAA0B,CAAC;AACvD;;;GAGG;AACa,iCAAc,GAAG,gCAAgC,CAAC;AAElE;;GAEG;AACa,oCAAiB,GAAG,kCAAkC,CAAC;AAEvE;;GAEG;AACa,+BAAY,GAAG,6BAA6B,CAAC"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export declare class Ic3CustomDrilldownMenuClasses {
|
|
2
|
+
static readonly header = "Ic3CustomDrilldownMenu-header";
|
|
3
|
+
static readonly list = "Ic3CustomDrilldownMenu-list";
|
|
4
|
+
static readonly headerText = "Ic3CustomDrilldownMenu-headerText";
|
|
5
|
+
static readonly back = "Ic3CustomDrilldownMenu-back";
|
|
6
|
+
}
|
|
7
|
+
export declare type Ic3CustomDrilldownMenuClassesKey = keyof Ic3CustomDrilldownMenuClasses;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.Ic3CustomDrilldownMenuClasses = void 0;
|
|
4
|
+
class Ic3CustomDrilldownMenuClasses {
|
|
5
|
+
}
|
|
6
|
+
exports.Ic3CustomDrilldownMenuClasses = Ic3CustomDrilldownMenuClasses;
|
|
7
|
+
Ic3CustomDrilldownMenuClasses.header = "Ic3CustomDrilldownMenu-header";
|
|
8
|
+
Ic3CustomDrilldownMenuClasses.list = "Ic3CustomDrilldownMenu-list";
|
|
9
|
+
Ic3CustomDrilldownMenuClasses.headerText = "Ic3CustomDrilldownMenu-headerText";
|
|
10
|
+
Ic3CustomDrilldownMenuClasses.back = "Ic3CustomDrilldownMenu-back";
|
|
11
|
+
//# sourceMappingURL=ThemeIc3CustomDrilldownMenu.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ThemeIc3CustomDrilldownMenu.js","sourceRoot":"","sources":["../../src/theme/ThemeIc3CustomDrilldownMenu.ts"],"names":[],"mappings":";;;AAAA,MAAa,6BAA6B;;AAA1C,sEAUC;AARmB,oCAAM,GAAG,+BAA+B,CAAC;AAEzC,kCAAI,GAAG,6BAA6B,CAAC;AAErC,wCAAU,GAAG,mCAAmC,CAAC;AAEjD,kCAAI,GAAG,6BAA6B,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ThemeIc3TableCellDrilldown.js","sourceRoot":"","sources":["../../src/theme/ThemeIc3TableCellDrilldown.ts"],"names":[],"mappings":";;;AAAA,MAAa,iCAAiC;;AAA9C,
|
|
1
|
+
{"version":3,"file":"ThemeIc3TableCellDrilldown.js","sourceRoot":"","sources":["../../src/theme/ThemeIc3TableCellDrilldown.ts"],"names":[],"mappings":";;;AAAA,MAAa,iCAAiC;;AAA9C,8EAOC;AALiB,yCAAO,GAAG,+BAA+B,CAAC;AAC1C,wCAAM,GAAG,8BAA8B,CAAC;AACxC,0CAAQ,GAAG,gCAAgC,CAAC;AAC5C,yCAAO,GAAG,+BAA+B,CAAC"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* The spinner when a widget is loading.
|
|
3
|
+
*/
|
|
4
|
+
export declare class ThemeIc3WidgetBoxSpinner {
|
|
5
|
+
static readonly overlay = "Ic3WidgetBoxSpinner-spinnerOverlayEx";
|
|
6
|
+
static readonly spinner = "Ic3WidgetBoxSpinner-spinner";
|
|
7
|
+
static readonly spinnerProgress = "Ic3WidgetBoxSpinner-spinnerProgress";
|
|
8
|
+
}
|
|
9
|
+
export declare type ThemeIc3WidgetBoxSpinnerClassesKey = keyof ThemeIc3WidgetBoxSpinner;
|
|
10
|
+
export interface Ic3WidgetBoxSpinnerProps {
|
|
11
|
+
/**
|
|
12
|
+
* Size of the spinner. Default = 48.
|
|
13
|
+
*/
|
|
14
|
+
size: number;
|
|
15
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ThemeIc3WidgetBoxSpinner = void 0;
|
|
4
|
+
/**
|
|
5
|
+
* The spinner when a widget is loading.
|
|
6
|
+
*/
|
|
7
|
+
class ThemeIc3WidgetBoxSpinner {
|
|
8
|
+
}
|
|
9
|
+
exports.ThemeIc3WidgetBoxSpinner = ThemeIc3WidgetBoxSpinner;
|
|
10
|
+
ThemeIc3WidgetBoxSpinner.overlay = "Ic3WidgetBoxSpinner-spinnerOverlayEx";
|
|
11
|
+
ThemeIc3WidgetBoxSpinner.spinner = "Ic3WidgetBoxSpinner-spinner";
|
|
12
|
+
ThemeIc3WidgetBoxSpinner.spinnerProgress = "Ic3WidgetBoxSpinner-spinnerProgress";
|
|
13
|
+
//# sourceMappingURL=ThemeIc3WidgetBoxSpinner.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ThemeIc3WidgetBoxSpinner.js","sourceRoot":"","sources":["../../src/theme/ThemeIc3WidgetBoxSpinner.ts"],"names":[],"mappings":";;;AAAA;;GAEG;AACH,MAAa,wBAAwB;;AAArC,4DAQC;AANmB,gCAAO,GAAG,sCAAsC,CAAC;AAEjD,gCAAO,GAAG,6BAA6B,CAAC;AAExC,wCAAe,GAAG,qCAAqC,CAAC"}
|
|
@@ -130,12 +130,4 @@ export interface SparkChartOptionsMeta extends FormFieldObject {
|
|
|
130
130
|
* Fill the area under the sparkline.
|
|
131
131
|
*/
|
|
132
132
|
sparklineHasArea: boolean;
|
|
133
|
-
/**
|
|
134
|
-
* Radius of the columns rounded corners.
|
|
135
|
-
*/
|
|
136
|
-
columnSparkCornerRadius: number;
|
|
137
|
-
/**
|
|
138
|
-
* Space between columns.
|
|
139
|
-
*/
|
|
140
|
-
columnSparkColumnSpacing: number;
|
|
141
133
|
}
|
|
@@ -1,6 +1,12 @@
|
|
|
1
1
|
export declare class ListCounterClasses {
|
|
2
2
|
static readonly counter = "ic3Counter";
|
|
3
|
+
/**
|
|
4
|
+
* Classname added to the root when the orientation is vertical.
|
|
5
|
+
*/
|
|
6
|
+
static readonly vertical = "ic3ListCounter-vertical";
|
|
7
|
+
static readonly labelRoot = "ic3ListCounter-labelRoot";
|
|
3
8
|
static readonly label = "ic3ListCounter-Label";
|
|
9
|
+
static readonly labelRemove = "ic3ListCounter-labelRemove";
|
|
4
10
|
static readonly labelSmallSize = "ic3ListCounter-Label-SizeMin";
|
|
5
11
|
static readonly labelMediumSize = "ic3ListCounter-Label-SizeMedium";
|
|
6
12
|
}
|
|
@@ -5,7 +5,13 @@ class ListCounterClasses {
|
|
|
5
5
|
}
|
|
6
6
|
exports.ListCounterClasses = ListCounterClasses;
|
|
7
7
|
ListCounterClasses.counter = "ic3Counter";
|
|
8
|
+
/**
|
|
9
|
+
* Classname added to the root when the orientation is vertical.
|
|
10
|
+
*/
|
|
11
|
+
ListCounterClasses.vertical = "ic3ListCounter-vertical";
|
|
12
|
+
ListCounterClasses.labelRoot = "ic3ListCounter-labelRoot";
|
|
8
13
|
ListCounterClasses.label = "ic3ListCounter-Label";
|
|
14
|
+
ListCounterClasses.labelRemove = "ic3ListCounter-labelRemove";
|
|
9
15
|
ListCounterClasses.labelSmallSize = "ic3ListCounter-Label-SizeMin";
|
|
10
16
|
ListCounterClasses.labelMediumSize = "ic3ListCounter-Label-SizeMedium";
|
|
11
17
|
//# sourceMappingURL=ThemeListCounter.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ThemeListCounter.js","sourceRoot":"","sources":["../../src/theme/ThemeListCounter.ts"],"names":[],"mappings":";;;AACA,MAAa,kBAAkB;;AAA/B,
|
|
1
|
+
{"version":3,"file":"ThemeListCounter.js","sourceRoot":"","sources":["../../src/theme/ThemeListCounter.ts"],"names":[],"mappings":";;;AACA,MAAa,kBAAkB;;AAA/B,gDAgBC;AAdmB,0BAAO,GAAG,YAAY,CAAC;AAEvC;;GAEG;AACa,2BAAQ,GAAG,yBAAyB,CAAC;AAErC,4BAAS,GAAG,0BAA0B,CAAC;AACvC,wBAAK,GAAG,sBAAsB,CAAC;AAC/B,8BAAW,GAAG,4BAA4B,CAAC;AAE3C,iCAAc,GAAG,8BAA8B,CAAC;AAChD,kCAAe,GAAG,iCAAiC,CAAC"}
|
|
@@ -10,7 +10,7 @@ import { FilterPanelChartOptions } from "./ThemeFilterPanel";
|
|
|
10
10
|
*
|
|
11
11
|
* @see WidgetTemplateChartOptions
|
|
12
12
|
*/
|
|
13
|
-
export interface SinglePanelFilterChartOptions extends FormFieldObject, Pick<FilterPanelChartOptions, "variant" | "initialFilterConfig" | "measureMdx" | "useSimpleFilterCutoff" | "useSimpleFilterCutoff" | "allowedOperatorsConfig" | "datePickerShortcuts"> {
|
|
13
|
+
export interface SinglePanelFilterChartOptions extends FormFieldObject, Pick<FilterPanelChartOptions, "variant" | "initialFilterConfig" | "measureMdx" | "useSimpleFilterCutoff" | "useSimpleFilterCutoff" | "allowedOperatorsConfig" | "datePickerShortcuts" | "shortcutsAnchorDate" | "allowedShortcutGroup"> {
|
|
14
14
|
/**
|
|
15
15
|
* The ID of the level / hierarchy that is used in the filter. Equal to `IPGFilterItem.fieldId`.
|
|
16
16
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ic3/reporting-api",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "9.0.1",
|
|
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",
|
|
@@ -12,16 +12,16 @@
|
|
|
12
12
|
},
|
|
13
13
|
"dependencies": {
|
|
14
14
|
"@emotion/react": "11.14.0",
|
|
15
|
-
"@emotion/styled": "11.14.
|
|
16
|
-
"@mui/material": "
|
|
17
|
-
"@mui/system": "
|
|
15
|
+
"@emotion/styled": "11.14.1",
|
|
16
|
+
"@mui/material": "7.3.1",
|
|
17
|
+
"@mui/system": "7.3.1",
|
|
18
18
|
"react-dom": "18.3.1"
|
|
19
19
|
},
|
|
20
20
|
"devDependencies": {
|
|
21
21
|
"@types/markerclustererplus": "2.1.33",
|
|
22
|
-
"@types/node": "
|
|
23
|
-
"@types/react": "18.3.
|
|
24
|
-
"@types/react-dom": "18.3.
|
|
22
|
+
"@types/node": "24.3.0",
|
|
23
|
+
"@types/react": "18.3.23",
|
|
24
|
+
"@types/react-dom": "18.3.7",
|
|
25
25
|
"del-cli": "6.0.0",
|
|
26
26
|
"typescript": "5.7.3"
|
|
27
27
|
},
|