@reltio/dashboard 1.4.1585 → 1.4.1586-mui5-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/bundle.js +204 -1
- package/bundle.js.LICENSE.txt +51 -14
- package/package.json +3 -3
- package/types/components/DashboardConfigItem/styles.d.ts +1 -1
- package/types/components/DashboardError/styles.d.ts +1 -1
- package/types/components/DashboardLayout/styles.d.ts +1 -1
- package/types/components/DashboardLayoutItem/styles.d.ts +1 -1
- package/types/components/DashboardLayoutPanel/styles.d.ts +1 -1
- package/types/components/DashboardLinearLoader/styles.d.ts +1 -1
- package/types/components/DashboardNoData/styles.d.ts +1 -1
- package/types/components/DashboardPerspectiveHeader/styles.d.ts +1 -1
- package/types/components/DashboardPopupMenu/DashboardPopupMenu.d.ts +1 -1
- package/types/components/DashboardPopupMenu/styles.d.ts +1 -1
- package/types/components/EntityTable/cell-renderers/styles.d.ts +1 -1
- package/types/components/EntityTable/styles.d.ts +1 -1
- package/types/components/LayoutItemContent/styles.d.ts +1 -1
- package/types/components/LayoutItemHeader/styles.d.ts +1 -1
- package/types/components/LayoutItemView/styles.d.ts +1 -1
- package/types/components/StatsChart/customized/styles.d.ts +1 -1
- package/types/components/WorkflowTaskItem/styles.d.ts +1 -1
- package/types/perspective/styles.d.ts +1 -1
- package/types/views/chartBased/styles.d.ts +1 -1
- package/types/views/custom/styles.d.ts +1 -1
- package/types/views/tableBased/styles.d.ts +1 -1
package/bundle.js.LICENSE.txt
CHANGED
|
@@ -1,21 +1,58 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
1
|
+
/*
|
|
2
|
+
object-assign
|
|
3
|
+
(c) Sindre Sorhus
|
|
4
|
+
@license MIT
|
|
5
|
+
*/
|
|
6
6
|
|
|
7
|
-
|
|
8
|
-
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
|
9
|
-
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
|
10
|
-
MERCHANTABLITY OR NON-INFRINGEMENT.
|
|
7
|
+
/*! decimal.js-light v2.5.1 https://github.com/MikeMcl/decimal.js-light/LICENCE */
|
|
11
8
|
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
9
|
+
/**
|
|
10
|
+
* @license React
|
|
11
|
+
* react-is.production.min.js
|
|
12
|
+
*
|
|
13
|
+
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
14
|
+
*
|
|
15
|
+
* This source code is licensed under the MIT license found in the
|
|
16
|
+
* LICENSE file in the root directory of this source tree.
|
|
17
|
+
*/
|
|
15
18
|
|
|
16
|
-
|
|
19
|
+
/**
|
|
20
|
+
* @mui/material v5.13.4
|
|
21
|
+
*
|
|
22
|
+
* @license MIT
|
|
23
|
+
* This source code is licensed under the MIT license found in the
|
|
24
|
+
* LICENSE file in the root directory of this source tree.
|
|
25
|
+
*/
|
|
26
|
+
|
|
27
|
+
/**
|
|
28
|
+
* @mui/styled-engine v5.13.2
|
|
29
|
+
*
|
|
30
|
+
* @license MIT
|
|
31
|
+
* This source code is licensed under the MIT license found in the
|
|
32
|
+
* LICENSE file in the root directory of this source tree.
|
|
33
|
+
*/
|
|
17
34
|
|
|
18
|
-
/**
|
|
35
|
+
/**
|
|
36
|
+
* A better abstraction over CSS.
|
|
37
|
+
*
|
|
38
|
+
* @copyright Oleg Isonen (Slobodskoi) / Isonen 2014-present
|
|
39
|
+
* @website https://github.com/cssinjs/jss
|
|
40
|
+
* @license MIT
|
|
41
|
+
*/
|
|
42
|
+
|
|
43
|
+
/** @license React v16.13.1
|
|
44
|
+
* react-is.production.min.js
|
|
45
|
+
*
|
|
46
|
+
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
47
|
+
*
|
|
48
|
+
* This source code is licensed under the MIT license found in the
|
|
49
|
+
* LICENSE file in the root directory of this source tree.
|
|
50
|
+
*/
|
|
51
|
+
|
|
52
|
+
/** @license React v17.0.2
|
|
53
|
+
* react-jsx-runtime.production.min.js
|
|
54
|
+
*
|
|
55
|
+
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
19
56
|
*
|
|
20
57
|
* This source code is licensed under the MIT license found in the
|
|
21
58
|
* LICENSE file in the root directory of this source tree.
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@reltio/dashboard",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.1586-mui5-2",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE FILE",
|
|
5
5
|
"main": "bundle.js",
|
|
6
6
|
"types": "./types/index.d.ts",
|
|
7
7
|
"dependencies": {
|
|
8
8
|
"@date-io/moment": "^1.3.5",
|
|
9
|
-
"@reltio/mdm-module": "^1.4.
|
|
10
|
-
"@reltio/mdm-sdk": "^1.4.
|
|
9
|
+
"@reltio/mdm-module": "^1.4.1586-mui5-2",
|
|
10
|
+
"@reltio/mdm-sdk": "^1.4.1586-mui5-2",
|
|
11
11
|
"classnames": "^2.2.5",
|
|
12
12
|
"memoize-one": "^5.1.0",
|
|
13
13
|
"object-hash": "^2.1.1",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const useStyles: (props?: any) => import("@
|
|
1
|
+
export declare const useStyles: (props?: any) => import("@mui/styles").ClassNameMap<"button" | "config" | "backdrop" | "viewContent" | "noBoxShadow" | "addedChart" | "chartIcon" | "previewChartTitle" | "newChartChip" | "backdropRemoved" | "backdropAdded" | "chartTitle">;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
type ErrorContainerProps = {
|
|
2
2
|
height?: number;
|
|
3
3
|
};
|
|
4
|
-
export declare const useStyles: (props: ErrorContainerProps) => import("@
|
|
4
|
+
export declare const useStyles: (props: ErrorContainerProps) => import("@mui/styles").ClassNameMap<"errorContainer" | "errorIcon" | "refreshButton" | "refreshIcon">;
|
|
5
5
|
export {};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const useStyles: (props?: any) => import("@
|
|
1
|
+
export declare const useStyles: (props?: any) => import("@mui/styles").ClassNameMap<"content" | "pageWrapper" | "rightPanel" | "mainPanel">;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const useStyles: (props?: any) => import("@
|
|
1
|
+
export declare const useStyles: (props?: any) => import("@mui/styles").ClassNameMap<"item" | "overflowContainer">;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const useStyles: (props?: any) => import("@
|
|
1
|
+
export declare const useStyles: (props?: any) => import("@mui/styles").ClassNameMap<"header" | "root" | "description" | "items" | "headerTitle" | "closeButton">;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const useStyles: (props?: any) => import("@
|
|
1
|
+
export declare const useStyles: (props?: any) => import("@mui/styles").ClassNameMap<"loader">;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
type NoDataContainer = {
|
|
2
2
|
height?: number;
|
|
3
3
|
};
|
|
4
|
-
export declare const useStyles: (props: NoDataContainer) => import("@
|
|
4
|
+
export declare const useStyles: (props: NoDataContainer) => import("@mui/styles").ClassNameMap<"icon" | "noDataContainer">;
|
|
5
5
|
export {};
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const useStyles: (props?: any) => import("@
|
|
1
|
+
declare const useStyles: (props?: any) => import("@mui/styles").ClassNameMap<"header" | "headerText" | "toggleButton" | "menuButton">;
|
|
2
2
|
export { useStyles };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const useStyles: (props?: any) => import("@
|
|
1
|
+
export declare const useStyles: (props?: any) => import("@mui/styles").ClassNameMap<"menuItem" | "itemTitle" | "itemIcon" | "openIcon">;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const useStyles: (props?: any) => import("@
|
|
1
|
+
export declare const useStyles: (props?: any) => import("@mui/styles").ClassNameMap<"entityLabel" | "headCell" | "headLabel">;
|
|
@@ -2,5 +2,5 @@ type Dimensions = {
|
|
|
2
2
|
width: number | string;
|
|
3
3
|
height: number | string;
|
|
4
4
|
};
|
|
5
|
-
export declare const useStyles: (props: Dimensions) => import("@
|
|
5
|
+
export declare const useStyles: (props: Dimensions) => import("@mui/styles").ClassNameMap<"tableContainer" | "cellBorder">;
|
|
6
6
|
export {};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const useStyles: (props?: any) => import("@
|
|
1
|
+
export declare const useStyles: (props?: any) => import("@mui/styles").ClassNameMap<"title" | "viewContent" | "toolbarRoot" | "dragIcon">;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const useStyles: (props?: any) => import("@
|
|
1
|
+
export declare const useStyles: (props?: any) => import("@mui/styles").ClassNameMap<"title" | "toolbarRoot" | "dragIcon" | "rightMenu" | "updatedChip">;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const useStyles: (props?: any) => import("@
|
|
1
|
+
export declare const useStyles: (props?: any) => import("@mui/styles").ClassNameMap<"view">;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const useStyles: (props?: any) => import("@
|
|
1
|
+
export declare const useStyles: (props?: any) => import("@mui/styles").ClassNameMap<"legend" | "tooltipTitle" | "tooltipWrapper" | "tooltipItemColor" | "legendItem" | "legendItemColor" | "legendItemValue">;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const useStyles: (props?: any) => import("@
|
|
1
|
+
export declare const useStyles: (props?: any) => import("@mui/styles").ClassNameMap<"hidden" | "entityLabel" | "flag" | "taskItem" | "taskInfo" | "taskTitle" | "taskDetail" | "taskDetailTitle" | "taskDueDate" | "overdue">;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const useStyles: (props?: any) => import("@
|
|
1
|
+
export declare const useStyles: (props?: any) => import("@mui/styles").ClassNameMap<"perspectiveView">;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const useStyles: (props?: any) => import("@
|
|
1
|
+
export declare const useStyles: (props?: any) => import("@mui/styles").ClassNameMap<"periodSelector">;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const useStyles: (props?: any) => import("@
|
|
1
|
+
export declare const useStyles: (props?: any) => import("@mui/styles").ClassNameMap<"pagination" | "iframe" | "viewContent" | "tasksSelector" | "tasksSelectorInput">;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const useStyles: (props?: any) => import("@
|
|
1
|
+
export declare const useStyles: (props?: any) => import("@mui/styles").ClassNameMap<"activityLogFilter">;
|