@reltio/dashboard 1.4.2153 → 1.4.2155

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,11 +1,11 @@
1
1
  {
2
2
  "name": "@reltio/dashboard",
3
- "version": "1.4.2153",
3
+ "version": "1.4.2155",
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.2117",
8
+ "@reltio/components": "^1.4.2119",
9
9
  "@reltio/mdm-module": "^1.4.1988",
10
10
  "@reltio/mdm-sdk": "^1.4.1951",
11
11
  "object-hash": "^2.1.1"
@@ -10,6 +10,8 @@ export declare const EMPTY_STATE_ICONS: {
10
10
  NO_DATA: React.FC<React.SVGProps<SVGSVGElement>>;
11
11
  ERROR: React.FC<React.SVGProps<SVGSVGElement>>;
12
12
  LOADING: React.FC<React.SVGProps<SVGSVGElement>>;
13
+ NO_LOGS: React.FC<React.SVGProps<SVGSVGElement>>;
14
+ NO_ACTIVATIONS: React.FC<React.SVGProps<SVGSVGElement>>;
13
15
  };
14
16
  type Props = {
15
17
  variant?: EMPTY_STATE_VARIANTS;
@@ -19,6 +21,7 @@ type Props = {
19
21
  buttonTitle?: string;
20
22
  access?: boolean;
21
23
  onClick?: React.MouseEventHandler<HTMLButtonElement>;
24
+ children?: React.ReactNode;
22
25
  };
23
- export declare const EmptyState: ({ variant, LogoRenderer, text, secondaryText, buttonTitle, onClick, access }: Props) => React.JSX.Element;
26
+ export declare const EmptyState: ({ variant, LogoRenderer, text, secondaryText, buttonTitle, onClick, access, children }: Props) => React.JSX.Element;
24
27
  export {};
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ declare const SvgNoActivations: React.FC<React.SVGProps<SVGSVGElement>>;
3
+ export default SvgNoActivations;
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ declare const SvgNoLogs: React.FC<React.SVGProps<SVGSVGElement>>;
3
+ export default SvgNoLogs;