@cubejs-client/react 0.34.9 → 0.34.24
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/dist/cubejs-client-react.esm.js +1 -1
- package/dist/cubejs-client-react.esm.js.map +1 -1
- package/dist/cubejs-client-react.js +1 -1
- package/dist/cubejs-client-react.js.map +1 -1
- package/dist/cubejs-client-react.umd.js +6 -1
- package/dist/cubejs-client-react.umd.js.map +1 -1
- package/package.json +3 -3
- package/src/QueryRenderer.jsx +3 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cubejs-client/react",
|
|
3
|
-
"version": "0.34.
|
|
3
|
+
"version": "0.34.24",
|
|
4
4
|
"author": "Cube Dev, Inc.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"engines": {},
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
],
|
|
25
25
|
"dependencies": {
|
|
26
26
|
"@babel/runtime": "^7.1.2",
|
|
27
|
-
"@cubejs-client/core": "^0.34.
|
|
27
|
+
"@cubejs-client/core": "^0.34.24",
|
|
28
28
|
"core-js": "^3.6.5",
|
|
29
29
|
"ramda": "^0.27.2"
|
|
30
30
|
},
|
|
@@ -42,5 +42,5 @@
|
|
|
42
42
|
"peerDependencies": {
|
|
43
43
|
"react": ">=16.10.2"
|
|
44
44
|
},
|
|
45
|
-
"gitHead": "
|
|
45
|
+
"gitHead": "7826780cb993e6ebf56d9cd69c7ab156a0b63859"
|
|
46
46
|
}
|
package/src/QueryRenderer.jsx
CHANGED
|
@@ -6,7 +6,7 @@ import CubeContext from './CubeContext';
|
|
|
6
6
|
|
|
7
7
|
export default class QueryRenderer extends React.Component {
|
|
8
8
|
static contextType = CubeContext;
|
|
9
|
-
|
|
9
|
+
|
|
10
10
|
static defaultProps = {
|
|
11
11
|
cubejsApi: null,
|
|
12
12
|
query: null,
|
|
@@ -16,8 +16,8 @@ export default class QueryRenderer extends React.Component {
|
|
|
16
16
|
updateOnlyOnStateChange: false,
|
|
17
17
|
resetResultSetOnChange: true
|
|
18
18
|
};
|
|
19
|
-
|
|
20
|
-
// @
|
|
19
|
+
|
|
20
|
+
// @deprecated use `isQueryPresent` from `@cubejs-client/core`
|
|
21
21
|
static isQueryPresent(query) {
|
|
22
22
|
return isQueryPresent(query);
|
|
23
23
|
}
|