@reltio/components 1.4.980 → 1.4.983

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.
@@ -2,6 +2,7 @@
2
2
  declare type Props = {
3
3
  transparent?: boolean;
4
4
  relativePosition?: boolean;
5
+ className?: string;
5
6
  };
6
- declare const LinearLoadIndicator: ({ transparent, relativePosition }: Props) => JSX.Element;
7
+ declare const LinearLoadIndicator: ({ transparent, relativePosition, className }: Props) => JSX.Element;
7
8
  export default LinearLoadIndicator;
@@ -9,10 +9,10 @@ var LinearProgress_1 = __importDefault(require("@material-ui/core/LinearProgress
9
9
  var styles_1 = require("./styles");
10
10
  var LinearLoadIndicator = function (_a) {
11
11
  var _b;
12
- var _c = _a.transparent, transparent = _c === void 0 ? false : _c, _d = _a.relativePosition, relativePosition = _d === void 0 ? false : _d;
12
+ var _c = _a.transparent, transparent = _c === void 0 ? false : _c, _d = _a.relativePosition, relativePosition = _d === void 0 ? false : _d, className = _a.className;
13
13
  var styles = styles_1.useStyles();
14
14
  return (react_1.default.createElement(react_1.default.Fragment, null,
15
- react_1.default.createElement("div", { className: classnames_1.default(styles.loadingOverlay, (_b = {},
15
+ react_1.default.createElement("div", { className: classnames_1.default(styles.loadingOverlay, className, (_b = {},
16
16
  _b[styles.transparent] = transparent,
17
17
  _b[styles.relativePosition] = relativePosition,
18
18
  _b)) },
@@ -13,7 +13,7 @@ declare namespace NumberEditor {
13
13
  export { NumberFormatType as format };
14
14
  export const inputProps: PropTypes.Requireable<object>;
15
15
  export const InputProps: PropTypes.Requireable<object>;
16
- export const value: PropTypes.Requireable<string | number | number[] | string[]>;
16
+ export const value: PropTypes.Requireable<string | number | string[] | number[]>;
17
17
  export const onChange: PropTypes.Requireable<(...args: any[]) => any>;
18
18
  }
19
19
  }
@@ -10,7 +10,7 @@ declare namespace TextEditor {
10
10
  namespace propTypes {
11
11
  const multiple: PropTypes.Requireable<boolean>;
12
12
  const multiline: PropTypes.Requireable<boolean>;
13
- const value: PropTypes.Requireable<string | number | number[] | string[]>;
13
+ const value: PropTypes.Requireable<string | number | string[] | number[]>;
14
14
  const getValueLabel: PropTypes.Requireable<(...args: any[]) => any>;
15
15
  }
16
16
  }
@@ -2,6 +2,7 @@
2
2
  declare type Props = {
3
3
  transparent?: boolean;
4
4
  relativePosition?: boolean;
5
+ className?: string;
5
6
  };
6
- declare const LinearLoadIndicator: ({ transparent, relativePosition }: Props) => JSX.Element;
7
+ declare const LinearLoadIndicator: ({ transparent, relativePosition, className }: Props) => JSX.Element;
7
8
  export default LinearLoadIndicator;
@@ -4,10 +4,10 @@ import LinearProgress from '@material-ui/core/LinearProgress';
4
4
  import { useStyles } from './styles';
5
5
  var LinearLoadIndicator = function (_a) {
6
6
  var _b;
7
- var _c = _a.transparent, transparent = _c === void 0 ? false : _c, _d = _a.relativePosition, relativePosition = _d === void 0 ? false : _d;
7
+ var _c = _a.transparent, transparent = _c === void 0 ? false : _c, _d = _a.relativePosition, relativePosition = _d === void 0 ? false : _d, className = _a.className;
8
8
  var styles = useStyles();
9
9
  return (React.createElement(React.Fragment, null,
10
- React.createElement("div", { className: classnames(styles.loadingOverlay, (_b = {},
10
+ React.createElement("div", { className: classnames(styles.loadingOverlay, className, (_b = {},
11
11
  _b[styles.transparent] = transparent,
12
12
  _b[styles.relativePosition] = relativePosition,
13
13
  _b)) },
@@ -13,7 +13,7 @@ declare namespace NumberEditor {
13
13
  export { NumberFormatType as format };
14
14
  export const inputProps: PropTypes.Requireable<object>;
15
15
  export const InputProps: PropTypes.Requireable<object>;
16
- export const value: PropTypes.Requireable<string | number | number[] | string[]>;
16
+ export const value: PropTypes.Requireable<string | number | string[] | number[]>;
17
17
  export const onChange: PropTypes.Requireable<(...args: any[]) => any>;
18
18
  }
19
19
  }
@@ -10,7 +10,7 @@ declare namespace TextEditor {
10
10
  namespace propTypes {
11
11
  const multiple: PropTypes.Requireable<boolean>;
12
12
  const multiline: PropTypes.Requireable<boolean>;
13
- const value: PropTypes.Requireable<string | number | number[] | string[]>;
13
+ const value: PropTypes.Requireable<string | number | string[] | number[]>;
14
14
  const getValueLabel: PropTypes.Requireable<(...args: any[]) => any>;
15
15
  }
16
16
  }
package/package.json CHANGED
@@ -1,14 +1,14 @@
1
1
  {
2
2
  "name": "@reltio/components",
3
- "version": "1.4.980",
3
+ "version": "1.4.983",
4
4
  "license": "SEE LICENSE IN LICENSE FILE",
5
5
  "main": "./cjs/index.js",
6
6
  "module": "./esm/index.js",
7
7
  "dependencies": {
8
8
  "@date-io/moment": "^1.3.5",
9
9
  "@react-google-maps/api": "^2.7.0",
10
- "@reltio/mdm-module": "^1.4.980",
11
- "@reltio/mdm-sdk": "^1.4.980",
10
+ "@reltio/mdm-module": "^1.4.983",
11
+ "@reltio/mdm-sdk": "^1.4.983",
12
12
  "classnames": "^2.2.5",
13
13
  "d3-cloud": "^1.2.5",
14
14
  "d3-geo": "^2.0.1",