@reltio/dashboard 1.4.2315 → 1.4.2317

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.2315",
3
+ "version": "1.4.2317",
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.2274",
8
+ "@reltio/components": "^1.4.2276",
9
9
  "@reltio/mdm-module": "^1.4.2093",
10
10
  "@reltio/mdm-sdk": "^1.4.2052",
11
11
  "object-hash": "^2.1.1"
@@ -38,11 +38,13 @@ export declare const reactSelectComponents: {
38
38
  innerRef: import("prop-types").Requireable<any>;
39
39
  isFocused: import("prop-types").Validator<boolean>;
40
40
  isSelected: import("prop-types").Validator<boolean>;
41
+ isDisabled: import("prop-types").Requireable<boolean>;
41
42
  label: import("prop-types").Requireable<string>;
42
43
  selectProps: import("prop-types").Requireable<import("prop-types").InferProps<{
43
44
  classes: import("prop-types").Requireable<import("prop-types").InferProps<{
44
45
  option: import("prop-types").Requireable<string>;
45
46
  'option--selected': import("prop-types").Requireable<string>;
47
+ 'option--disabled': import("prop-types").Requireable<string>;
46
48
  }>>;
47
49
  }>>;
48
50
  };
@@ -1 +1 @@
1
- export declare const useStyles: (props?: any) => import("@mui/styles").ClassNameMap<"singleValue" | "option" | "menu" | "placeholder" | "dropdownIndicator" | "control" | "option--selected" | "option--item" | "clearIndicator" | "groupHeading" | "multiValue" | "noOptionsMessage" | "valueContainer" | "multiValue__label" | "valueContainer--multi">;
1
+ export declare const useStyles: (props?: any) => import("@mui/styles").ClassNameMap<"singleValue" | "option" | "menu" | "placeholder" | "dropdownIndicator" | "control" | "option--selected" | "option--disabled" | "option--item" | "clearIndicator" | "groupHeading" | "multiValue" | "noOptionsMessage" | "valueContainer" | "multiValue__label" | "valueContainer--multi">;
@@ -13,11 +13,13 @@ export namespace ReactSelectOption {
13
13
  let innerRef: PropTypes.Requireable<any>;
14
14
  let isFocused: PropTypes.Validator<boolean>;
15
15
  let isSelected: PropTypes.Validator<boolean>;
16
+ let isDisabled: PropTypes.Requireable<boolean>;
16
17
  let label: PropTypes.Requireable<string>;
17
18
  let selectProps: PropTypes.Requireable<PropTypes.InferProps<{
18
19
  classes: PropTypes.Requireable<PropTypes.InferProps<{
19
20
  option: PropTypes.Requireable<string>;
20
21
  'option--selected': PropTypes.Requireable<string>;
22
+ 'option--disabled': PropTypes.Requireable<string>;
21
23
  }>>;
22
24
  }>>;
23
25
  }
@@ -1,4 +1,4 @@
1
1
  import React from 'react';
2
2
  import { DropDownSelector } from '../DropDownSelector';
3
- declare const _default: React.MemoExoticComponent<(props: React.ComponentProps<typeof DropDownSelector>) => React.JSX.Element>;
3
+ declare const _default: React.MemoExoticComponent<({ components, ...props }: React.ComponentProps<typeof DropDownSelector>) => React.JSX.Element>;
4
4
  export default _default;
@@ -1 +1,2 @@
1
1
  export { default as SimpleDropDownSelector } from './SimpleDropDownSelector';
2
+ export { DropDownValue } from './components/DropDownValue';
@@ -1 +0,0 @@
1
- export declare const useStyles: (props?: any) => import("@mui/styles").ClassNameMap<"value">;