@ic3/reporting-api 8.0.0-alpha.6 → 8.0.0-rc.3
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.d.ts +10 -0
- package/dist/ApiUtils.js +25 -1
- package/dist/ApiUtils.js.map +1 -1
- package/dist/INotification.d.ts +32 -0
- package/dist/INotification.js +3 -0
- package/dist/INotification.js.map +1 -0
- package/dist/IPluginDefinition.d.ts +4 -1
- package/dist/IReporting.d.ts +41 -4
- package/dist/IThemeManager.d.ts +13 -18
- package/dist/IThemeManager.js.map +1 -1
- package/dist/ITidyTableTransformation.d.ts +20 -1
- package/dist/IWidgetVariantManager.d.ts +20 -2
- package/dist/LazyTreeView.d.ts +43 -1
- package/dist/LazyTreeView.js +5 -1
- package/dist/LazyTreeView.js.map +1 -1
- package/dist/Loader.d.ts +10 -0
- package/dist/Loader.js +33 -0
- package/dist/Loader.js.map +1 -0
- package/dist/PublicContext.d.ts +75 -10
- package/dist/PublicContext.js.map +1 -1
- package/dist/PublicLayout.d.ts +6 -6
- package/dist/PublicTemplate.d.ts +161 -58
- package/dist/PublicTemplate.js +16 -1
- package/dist/PublicTemplate.js.map +1 -1
- package/dist/PublicTemplateForm.d.ts +131 -29
- package/dist/PublicTemplateForm.js +7 -1
- package/dist/PublicTemplateForm.js.map +1 -1
- package/dist/PublicTheme.d.ts +114 -69
- package/dist/PublicTheme.js.map +1 -1
- package/dist/PublicTidyColumn.d.ts +327 -259
- package/dist/PublicTidyColumn.js +48 -2
- package/dist/PublicTidyColumn.js.map +1 -1
- package/dist/PublicTidyHistogram.d.ts +24 -0
- package/dist/PublicTidyHistogram.js +77 -0
- package/dist/PublicTidyHistogram.js.map +1 -0
- package/dist/PublicTidyMath.d.ts +49 -45
- package/dist/PublicTidyMath.js +0 -280
- package/dist/PublicTidyMath.js.map +1 -1
- package/dist/PublicTidyTable.d.ts +170 -154
- package/dist/PublicTidyTableInteractions.d.ts +30 -23
- package/dist/PublicTidyTableInteractions.js +5 -4
- package/dist/PublicTidyTableInteractions.js.map +1 -1
- package/dist/PublicTidyTableTypes.d.ts +133 -55
- package/dist/PublicTidyTableTypes.js +35 -18
- package/dist/PublicTidyTableTypes.js.map +1 -1
- package/dist/PublicTidyTree.d.ts +27 -37
- package/dist/PublicTidyTree.js +30 -58
- package/dist/PublicTidyTree.js.map +1 -1
- package/dist/RemoteContainerUtils.d.ts +1 -1
- package/dist/RemoteContainerUtils.js +9 -1
- package/dist/RemoteContainerUtils.js.map +1 -1
- package/dist/ReportingVersion.d.ts +1 -1
- package/dist/ReportingVersion.js +1 -1
- package/dist/ReportingVersion.js.map +1 -1
- package/dist/index.d.ts +3 -0
- package/dist/index.js +3 -0
- package/dist/index.js.map +1 -1
- package/dist/theme/ThemeFilterAutocomplete.d.ts +30 -0
- package/dist/theme/ThemeFilterAutocomplete.js +23 -0
- package/dist/theme/ThemeFilterAutocomplete.js.map +1 -0
- package/dist/theme/ThemeFilterButtons.d.ts +28 -3
- package/dist/theme/ThemeFilterButtons.js +9 -3
- package/dist/theme/ThemeFilterButtons.js.map +1 -1
- package/dist/theme/ThemeFilterCheckboxes.d.ts +18 -0
- package/dist/theme/ThemeFilterCheckboxes.js +11 -0
- package/dist/theme/ThemeFilterCheckboxes.js.map +1 -0
- package/dist/theme/ThemeFilterSlider.d.ts +47 -0
- package/dist/theme/ThemeFilterSlider.js +29 -0
- package/dist/theme/ThemeFilterSlider.js.map +1 -0
- package/dist/theme/ThemeFilterTree.d.ts +70 -0
- package/dist/theme/ThemeFilterTree.js +11 -0
- package/dist/theme/ThemeFilterTree.js.map +1 -0
- package/dist/theme/ThemeGoogleMapMarker.d.ts +51 -0
- package/dist/theme/ThemeGoogleMapMarker.js +3 -0
- package/dist/theme/ThemeGoogleMapMarker.js.map +1 -0
- package/dist/theme/ThemeHtmlBox.d.ts +7 -1
- package/dist/theme/ThemePivotTable.d.ts +23 -0
- package/dist/theme/ThemePivotTable.js +21 -0
- package/dist/theme/ThemePivotTable.js.map +1 -0
- package/dist/theme/ThemeTable.d.ts +15 -0
- package/dist/theme/ThemeTable.js +5 -0
- package/dist/theme/ThemeTable.js.map +1 -0
- package/package.json +11 -10
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { IWidgetPublicContext } from "../PublicContext";
|
|
1
2
|
export interface HtmlBoxClasses {
|
|
2
3
|
/**
|
|
3
4
|
* Style applied to the root element.
|
|
@@ -17,8 +18,13 @@ export declare type HtmlBoxVariant = "plain" |
|
|
|
17
18
|
/**
|
|
18
19
|
* Used for data tooltips in the charts
|
|
19
20
|
*/
|
|
20
|
-
"tooltip"
|
|
21
|
+
"tooltip" |
|
|
22
|
+
/**
|
|
23
|
+
* Based on dashboard theme definition (h1,h2...)
|
|
24
|
+
*/
|
|
25
|
+
"dashboardTheme";
|
|
21
26
|
export interface HtmlBoxProps {
|
|
27
|
+
context?: IWidgetPublicContext;
|
|
22
28
|
variant?: HtmlBoxVariant;
|
|
23
29
|
html: string;
|
|
24
30
|
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
export declare class PivotTableClasses {
|
|
2
|
+
static readonly main = "ic3-pt";
|
|
3
|
+
static readonly cell = "ic3-pt-cell";
|
|
4
|
+
static readonly leftHeaderCell = "ic3-pt-col.lh";
|
|
5
|
+
static readonly leftHeaderTitle = "ic3-pt-col.lh .ic3-pt-header-label";
|
|
6
|
+
static readonly topHeaderCell = "ic3-pt-col.th";
|
|
7
|
+
static readonly topHeaderTitle = "ic3-pt-col.th .ic3-pt-header-label";
|
|
8
|
+
static readonly column = "ic3-pt-col";
|
|
9
|
+
static readonly columnSeparator = "ic3-pt .ic3-pt-col-separator";
|
|
10
|
+
static readonly columnSeparatorContent = "ic3-pt .ic3-pt-col-separator-content";
|
|
11
|
+
static readonly icon = "ic3-pt-icon";
|
|
12
|
+
static readonly iconSort = "ic3-pt-icon-sort";
|
|
13
|
+
static readonly emptyHeader = "ic3-pt-empty-header";
|
|
14
|
+
static readonly selected = "ic3-pt-selected";
|
|
15
|
+
static readonly hover = "ic3-pt-hover";
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* List of classNames available
|
|
19
|
+
*/
|
|
20
|
+
export declare type PivotTableClassKey = keyof PivotTableClasses;
|
|
21
|
+
export interface PivotTableProps {
|
|
22
|
+
variant?: string;
|
|
23
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.PivotTableClasses = void 0;
|
|
4
|
+
class PivotTableClasses {
|
|
5
|
+
}
|
|
6
|
+
exports.PivotTableClasses = PivotTableClasses;
|
|
7
|
+
PivotTableClasses.main = "ic3-pt";
|
|
8
|
+
PivotTableClasses.cell = "ic3-pt-cell";
|
|
9
|
+
PivotTableClasses.leftHeaderCell = "ic3-pt-col.lh";
|
|
10
|
+
PivotTableClasses.leftHeaderTitle = "ic3-pt-col.lh .ic3-pt-header-label";
|
|
11
|
+
PivotTableClasses.topHeaderCell = "ic3-pt-col.th";
|
|
12
|
+
PivotTableClasses.topHeaderTitle = "ic3-pt-col.th .ic3-pt-header-label";
|
|
13
|
+
PivotTableClasses.column = "ic3-pt-col";
|
|
14
|
+
PivotTableClasses.columnSeparator = "ic3-pt .ic3-pt-col-separator";
|
|
15
|
+
PivotTableClasses.columnSeparatorContent = "ic3-pt .ic3-pt-col-separator-content";
|
|
16
|
+
PivotTableClasses.icon = "ic3-pt-icon";
|
|
17
|
+
PivotTableClasses.iconSort = "ic3-pt-icon-sort";
|
|
18
|
+
PivotTableClasses.emptyHeader = "ic3-pt-empty-header";
|
|
19
|
+
PivotTableClasses.selected = "ic3-pt-selected";
|
|
20
|
+
PivotTableClasses.hover = "ic3-pt-hover";
|
|
21
|
+
//# sourceMappingURL=ThemePivotTable.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ThemePivotTable.js","sourceRoot":"","sources":["../../src/theme/ThemePivotTable.ts"],"names":[],"mappings":";;;AAAA,MAAa,iBAAiB;;AAA9B,8CA4BC;AA1BmB,sBAAI,GAAG,QAAQ,CAAC;AAEhB,sBAAI,GAAG,aAAa,CAAC;AAErB,gCAAc,GAAG,eAAe,CAAC;AACjC,iCAAe,GAAG,oCAAoC,CAAC;AAEvD,+BAAa,GAAG,eAAe,CAAC;AAChC,gCAAc,GAAG,oCAAoC,CAAC;AAEtD,wBAAM,GAAG,YAAY,CAAC;AAEtB,iCAAe,GAAG,8BAA8B,CAAC;AAEjD,wCAAsB,GAAG,sCAAsC,CAAC;AAEhE,sBAAI,GAAG,aAAa,CAAC;AAErB,0BAAQ,GAAG,kBAAkB,CAAC;AAE9B,6BAAW,GAAG,qBAAqB,CAAC;AAEpC,0BAAQ,GAAG,iBAAiB,CAAC;AAE7B,uBAAK,GAAG,cAAc,CAAC"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
export declare const TableClasses: {};
|
|
2
|
+
/**
|
|
3
|
+
* List of classNames available
|
|
4
|
+
*/
|
|
5
|
+
export declare type TableClassKey = keyof Record<string, any>;
|
|
6
|
+
/**
|
|
7
|
+
* All props of Mui-DataGridPro ( + variant )
|
|
8
|
+
*
|
|
9
|
+
* GridClasses
|
|
10
|
+
*
|
|
11
|
+
* https://mui.com/api/data-grid/data-grid-pro/
|
|
12
|
+
*/
|
|
13
|
+
export interface TableProps {
|
|
14
|
+
variant?: string;
|
|
15
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ThemeTable.js","sourceRoot":"","sources":["../../src/theme/ThemeTable.ts"],"names":[],"mappings":";;;AAAa,QAAA,YAAY,GAAG,EAAE,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ic3/reporting-api",
|
|
3
|
-
"version": "8.0.0-
|
|
3
|
+
"version": "8.0.0-rc.3",
|
|
4
4
|
"description": "icCube dashboards API",
|
|
5
|
-
"homepage": "https://github.com/
|
|
6
|
-
"repository": "https://github.com/
|
|
5
|
+
"homepage": "https://github.com/ic3-software/ic3-reporting-api",
|
|
6
|
+
"repository": "https://github.com/ic3-software/ic3-reporting-api",
|
|
7
7
|
"type": "commonjs",
|
|
8
8
|
"main": "dist/index.js",
|
|
9
9
|
"types": "dist/index.d.ts",
|
|
@@ -14,17 +14,18 @@
|
|
|
14
14
|
"access": "public"
|
|
15
15
|
},
|
|
16
16
|
"devDependencies": {
|
|
17
|
-
"@material
|
|
17
|
+
"@mui/material": "5.3.0",
|
|
18
|
+
"@mui/system": "5.3.0",
|
|
18
19
|
"@types/googlemaps": "3.43.3",
|
|
19
20
|
"@types/markerclustererplus": "2.1.33",
|
|
20
|
-
"@types/
|
|
21
|
-
"
|
|
22
|
-
"del-cli": "4.0.
|
|
23
|
-
"typescript": "4.
|
|
21
|
+
"@types/node": "17.0.9",
|
|
22
|
+
"@types/react": "17.0.38",
|
|
23
|
+
"del-cli": "4.0.1",
|
|
24
|
+
"typescript": "4.5.4"
|
|
24
25
|
},
|
|
25
26
|
"scripts": {
|
|
26
27
|
"build": "del-cli dist && npx tsc",
|
|
27
|
-
"
|
|
28
|
-
"
|
|
28
|
+
"clean": "del-cli dist && del-cli src",
|
|
29
|
+
"prepublishOnly": "npm run build"
|
|
29
30
|
}
|
|
30
31
|
}
|