@reltio/components 1.4.979 → 1.4.982
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/cjs/components/LinearLoadIndicator/LinearLoadIndicator.d.ts +2 -1
- package/cjs/components/LinearLoadIndicator/LinearLoadIndicator.js +2 -2
- package/cjs/components/attributes/readMode/ReferenceAttribute/index.d.ts +1 -1
- package/cjs/components/editors/NumberEditor/NumberEditor.d.ts +1 -1
- package/cjs/components/editors/TextEditor/TextEditor.d.ts +1 -1
- package/esm/components/LinearLoadIndicator/LinearLoadIndicator.d.ts +2 -1
- package/esm/components/LinearLoadIndicator/LinearLoadIndicator.js +2 -2
- package/esm/components/attributes/readMode/ReferenceAttribute/index.d.ts +1 -1
- package/esm/components/editors/NumberEditor/NumberEditor.d.ts +1 -1
- package/esm/components/editors/TextEditor/TextEditor.d.ts +1 -1
- package/package.json +4 -4
|
@@ -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)) },
|
|
@@ -130,6 +130,6 @@ declare var _default: import("react-redux").ConnectedComponent<import("react").M
|
|
|
130
130
|
metadata: any;
|
|
131
131
|
attributeType: any;
|
|
132
132
|
uiPath: any;
|
|
133
|
-
}, "
|
|
133
|
+
}, "uiPath" | "metadata" | "dispatch">>;
|
|
134
134
|
export default _default;
|
|
135
135
|
import ReferenceAttribute from "./ReferenceAttribute";
|
|
@@ -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 |
|
|
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 |
|
|
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)) },
|
|
@@ -130,6 +130,6 @@ declare var _default: import("react-redux").ConnectedComponent<import("react").M
|
|
|
130
130
|
metadata: any;
|
|
131
131
|
attributeType: any;
|
|
132
132
|
uiPath: any;
|
|
133
|
-
}, "
|
|
133
|
+
}, "uiPath" | "metadata" | "dispatch">>;
|
|
134
134
|
export default _default;
|
|
135
135
|
import ReferenceAttribute from "./ReferenceAttribute";
|
|
@@ -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 |
|
|
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 |
|
|
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.
|
|
3
|
+
"version": "1.4.982",
|
|
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.
|
|
11
|
-
"@reltio/mdm-sdk": "^1.4.
|
|
10
|
+
"@reltio/mdm-module": "^1.4.982",
|
|
11
|
+
"@reltio/mdm-sdk": "^1.4.982",
|
|
12
12
|
"classnames": "^2.2.5",
|
|
13
13
|
"d3-cloud": "^1.2.5",
|
|
14
14
|
"d3-geo": "^2.0.1",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"prop-types": "^15.6.2",
|
|
20
20
|
"ramda": "^0.28.0",
|
|
21
21
|
"react-autosuggest": "^9.4.3",
|
|
22
|
-
"react-components": "git+ssh://git@bitbucket.org/reltio-ondemand/react-components.git#v3.
|
|
22
|
+
"react-components": "git+ssh://git@bitbucket.org/reltio-ondemand/react-components.git#v3.9.0",
|
|
23
23
|
"react-dnd": "^9.4.0",
|
|
24
24
|
"react-dnd-html5-backend": "^10.0.2",
|
|
25
25
|
"react-grid-layout": "^1.1.1",
|