@reltio/dashboard 1.4.2081 → 1.4.2083

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.2081",
3
+ "version": "1.4.2083",
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.2051",
9
- "@reltio/mdm-module": "^1.4.1939",
10
- "@reltio/mdm-sdk": "^1.4.1907",
8
+ "@reltio/components": "^1.4.2053",
9
+ "@reltio/mdm-module": "^1.4.1940",
10
+ "@reltio/mdm-sdk": "^1.4.1908",
11
11
  "object-hash": "^2.1.1"
12
12
  },
13
13
  "peerDependencies": {
@@ -6,7 +6,7 @@ export declare const RecommendedIconWithTooltip: React.ForwardRefExoticComponent
6
6
  tooltipPlacement?: import("@mui/material").TooltipProps["placement"];
7
7
  showForDisabled?: boolean;
8
8
  } & React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<HTMLElement>>;
9
- type Data = {
9
+ type Data = Record<string, unknown> & {
10
10
  attrType?: AttributeType;
11
11
  };
12
12
  type Props = {
@@ -1,11 +1,5 @@
1
- export function SelectEditor({ classes, ...otherProps }: {
2
- [x: string]: any;
3
- classes: any;
4
- }): React.JSX.Element;
5
- export namespace SelectEditor {
6
- namespace propTypes {
7
- let classes: PropTypes.Requireable<object>;
8
- }
9
- }
10
1
  import React from 'react';
11
- import PropTypes from 'prop-types';
2
+ import { DropDownEditor } from '../DropDownEditor';
3
+ type Props = React.ComponentProps<typeof DropDownEditor>;
4
+ export declare const SelectEditor: ({ classes, ...otherProps }: Props) => React.JSX.Element;
5
+ export {};