@ic3/reporting-api 8.4.2 → 8.4.4
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 +2 -0
- package/dist/IUserMenuOptionManager.d.ts +13 -0
- package/dist/IUserMenuOptionManager.js +3 -0
- package/dist/IUserMenuOptionManager.js.map +1 -0
- package/dist/PublicAmchartsData.d.ts +7 -1
- package/dist/PublicAmchartsData.js +9 -0
- package/dist/PublicAmchartsData.js.map +1 -1
- package/dist/PublicContext.d.ts +35 -5
- package/dist/PublicLayout.d.ts +81 -0
- package/dist/PublicTemplate.d.ts +68 -0
- package/dist/PublicTemplate.js.map +1 -1
- package/dist/PublicTemplateForm.d.ts +122 -5
- package/dist/PublicTemplateForm.js +19 -1
- package/dist/PublicTemplateForm.js.map +1 -1
- package/dist/PublicTheme.d.ts +23 -2
- package/dist/PublicTheme.js +5 -1
- package/dist/PublicTheme.js.map +1 -1
- package/dist/PublicTidyColumn.d.ts +28 -15
- package/dist/PublicTidyColumn.js +5 -0
- package/dist/PublicTidyColumn.js.map +1 -1
- package/dist/PublicTidyTable.d.ts +1 -1
- package/dist/PublicTidyTableInteractions.d.ts +2 -0
- package/dist/PublicTidyTableTypes.d.ts +9 -20
- package/dist/PublicTidyTableTypes.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 +95 -19
- package/dist/theme/ThemeAmCharts4.js +11 -1
- package/dist/theme/ThemeAmCharts4.js.map +1 -1
- package/dist/theme/ThemeFilterAutocomplete.d.ts +2 -0
- package/dist/theme/ThemeFilterButtons.d.ts +10 -0
- package/dist/theme/ThemeFilterPanel.d.ts +4 -0
- package/dist/theme/ThemePivotTable.d.ts +6 -0
- package/dist/theme/ThemeSeparator.d.ts +13 -0
- package/dist/theme/ThemeSeparator.js +3 -0
- package/dist/theme/ThemeSeparator.js.map +1 -0
- package/package.json +8 -8
|
@@ -127,6 +127,10 @@ export interface FilterPanelChartOptions extends FormFieldObject {
|
|
|
127
127
|
* Easily change by clicking 'Set Allowed Filters' in the user menu of the widget header.
|
|
128
128
|
*/
|
|
129
129
|
customFilterConfig?: string;
|
|
130
|
+
/**
|
|
131
|
+
* These filters are not allowed to be selected by the user. These filters are hidden from the add filter menu.
|
|
132
|
+
*/
|
|
133
|
+
notAllowedFiltersConfig?: string;
|
|
130
134
|
/**
|
|
131
135
|
* Default Filters.
|
|
132
136
|
*
|
|
@@ -53,6 +53,12 @@ export interface PivotTableChartOptions extends BaseTableChartOptions {
|
|
|
53
53
|
* ($h for the hierarchy name, $l for the level name). The last value repeat itsef.
|
|
54
54
|
*/
|
|
55
55
|
cornerText?: string;
|
|
56
|
+
/**
|
|
57
|
+
* Sortable (CSV).
|
|
58
|
+
*
|
|
59
|
+
* Display the sort options for the top left header. A list of boolean values: 'true', 'false'. The last value repeats itself.
|
|
60
|
+
*/
|
|
61
|
+
leftHeaderSortable: string;
|
|
56
62
|
/**
|
|
57
63
|
* Merge Left Header.
|
|
58
64
|
*
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { FormFieldObject } from "../PublicTemplateForm";
|
|
2
|
+
/**
|
|
3
|
+
* Separator Options (fields of the "Chart" tab in the widget editor).
|
|
4
|
+
*
|
|
5
|
+
* <pre>
|
|
6
|
+
* Plugin ID : ic3
|
|
7
|
+
* Widget/Template ID: Separator
|
|
8
|
+
* </pre>
|
|
9
|
+
*
|
|
10
|
+
* @see WidgetTemplateChartOptions
|
|
11
|
+
*/
|
|
12
|
+
export interface SeparatorChartOptions extends FormFieldObject {
|
|
13
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ThemeSeparator.js","sourceRoot":"","sources":["../../src/theme/ThemeSeparator.ts"],"names":[],"mappings":""}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ic3/reporting-api",
|
|
3
|
-
"version": "8.4.
|
|
3
|
+
"version": "8.4.4",
|
|
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",
|
|
@@ -11,20 +11,20 @@
|
|
|
11
11
|
"access": "public"
|
|
12
12
|
},
|
|
13
13
|
"dependencies": {
|
|
14
|
-
"@mui/material": "5.
|
|
15
|
-
"@mui/system": "5.
|
|
16
|
-
"@emotion/react": "11.11.
|
|
14
|
+
"@mui/material": "5.14.6",
|
|
15
|
+
"@mui/system": "5.14.6",
|
|
16
|
+
"@emotion/react": "11.11.1",
|
|
17
17
|
"@emotion/styled": "11.11.0"
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {
|
|
20
20
|
"@types/markerclustererplus": "2.1.33",
|
|
21
|
-
"@types/node": "20.
|
|
22
|
-
"@types/react": "18.2.
|
|
23
|
-
"del-cli": "5.0.
|
|
21
|
+
"@types/node": "20.5.7",
|
|
22
|
+
"@types/react": "18.2.21",
|
|
23
|
+
"del-cli": "5.0.1",
|
|
24
24
|
"typescript": "4.9.5"
|
|
25
25
|
},
|
|
26
26
|
"overrides": {
|
|
27
|
-
"@types/react": "18.2.
|
|
27
|
+
"@types/react": "18.2.21"
|
|
28
28
|
},
|
|
29
29
|
"scripts": {
|
|
30
30
|
"build": "del-cli dist && npx tsc",
|