@reltio/dashboard 1.4.1799 → 1.4.1824-hf

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/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "@reltio/dashboard",
3
- "version": "1.4.1799",
3
+ "version": "1.4.1824-hf",
4
4
  "license": "SEE LICENSE IN LICENSE FILE",
5
5
  "main": "bundle.js",
6
6
  "types": "./types/index.d.ts",
7
7
  "dependencies": {
8
- "@reltio/components": "^1.4.1788",
9
- "@reltio/mdm-module": "^1.4.1767",
10
- "@reltio/mdm-sdk": "^1.4.1757",
8
+ "@reltio/components": "^1.4.1824-hf",
9
+ "@reltio/mdm-module": "^1.4.1762",
10
+ "@reltio/mdm-sdk": "^1.4.1752",
11
11
  "classnames": "^2.2.5",
12
12
  "object-hash": "^2.1.1",
13
13
  "prop-types": "^15.6.2",
@@ -1 +1 @@
1
- export declare const useStyles: (props?: any) => import("@mui/styles").ClassNameMap<"button" | "config" | "backdrop" | "viewContent" | "noBoxShadow" | "addedChart" | "chartIcon" | "previewChartTitle" | "newChartChip" | "backdropRemoved" | "backdropAdded" | "chartTitle">;
1
+ export declare const useStyles: (props?: any) => import("@mui/styles").ClassNameMap<"config" | "button" | "backdrop" | "viewContent" | "noBoxShadow" | "addedChart" | "chartIcon" | "previewChartTitle" | "newChartChip" | "backdropRemoved" | "backdropAdded" | "chartTitle">;
@@ -1 +1 @@
1
- export declare const useStyles: (props?: any) => import("@mui/styles").ClassNameMap<"header" | "description" | "items" | "root" | "closeButton" | "headerTitle">;
1
+ export declare const useStyles: (props?: any) => import("@mui/styles").ClassNameMap<"description" | "items" | "header" | "root" | "headerTitle" | "closeButton">;
@@ -1,8 +1,10 @@
1
- import { ComponentProps } from 'react';
2
- import { ActionsPanel } from '@reltio/components';
1
+ import React from 'react';
2
+ import { MultilineMenuItem } from '@reltio/components';
3
+ type MultilineMenuItemProps = React.ComponentProps<typeof MultilineMenuItem>;
3
4
  type Props = {
4
5
  title: string;
5
- actions: ComponentProps<typeof ActionsPanel>['actions'];
6
+ onToggleConfig: () => void;
7
+ menuItems: MultilineMenuItemProps['item'][];
6
8
  };
7
- export declare const DashboardPerspectiveHeader: ({ title, actions }: Props) => JSX.Element;
9
+ export declare const DashboardPerspectiveHeader: ({ title, onToggleConfig, menuItems }: Props) => JSX.Element;
8
10
  export {};
@@ -1 +1 @@
1
- export declare const useStyles: (props?: any) => import("@mui/styles").ClassNameMap<"tooltipTitle" | "legend" | "tooltipWrapper" | "tooltipItemColor" | "legendItem" | "legendItemColor" | "legendItemValue">;
1
+ export declare const useStyles: (props?: any) => import("@mui/styles").ClassNameMap<"legend" | "tooltipTitle" | "tooltipWrapper" | "tooltipItemColor" | "legendItem" | "legendItemColor" | "legendItemValue">;
@@ -2,7 +2,7 @@ type Dimensions = {
2
2
  width: number | string;
3
3
  height: number | string;
4
4
  };
5
- export declare const useStyles: (props?: any) => import("@mui/styles").ClassNameMap<"wrapper" | "content" | "showMore" | "totalHeader" | "showMoreWrapper">;
5
+ export declare const useStyles: (props?: any) => import("@mui/styles").ClassNameMap<"content" | "wrapper" | "showMore" | "totalHeader" | "showMoreWrapper">;
6
6
  export declare const useListStyles: (props: Dimensions) => import("@mui/styles").ClassNameMap<"listContainer">;
7
7
  export declare const useRowStyles: (props?: any) => import("@mui/styles").ClassNameMap<"entityLabel" | "entityTypeIcon" | "resultItem">;
8
8
  export {};