@cubejs-client/react 0.31.35 → 0.31.63

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/index.d.ts CHANGED
@@ -308,6 +308,12 @@ declare module '@cubejs-client/react' {
308
308
  * Used for chart type update
309
309
  */
310
310
  updateChartType: (chartType: ChartType) => void;
311
+
312
+ /**
313
+ * Used to set the initial query for this component. Note that adding this prop turns this into an
314
+ * uncontrolled component and will only be able to execute `dryRun` queries. To use this component
315
+ * as a controlled component, use `setQuery` instead.
316
+ */
311
317
  query: Query;
312
318
  validatedQuery: Query;
313
319
  refresh: () => void;
@@ -656,11 +662,11 @@ declare module '@cubejs-client/react' {
656
662
  sourceAxis: TSourceAxis;
657
663
  destinationAxis: TSourceAxis;
658
664
  };
659
-
665
+
660
666
  type PivotConfigExtraUpdateFields = {
661
667
  limit?: number;
662
668
  };
663
-
669
+
664
670
  type PivotConfigUpdater = {
665
671
  moveItem: (args: PivotConfigUpdaterArgs) => void;
666
672
  update: (pivotConfig: PivotConfig & PivotConfigExtraUpdateFields) => void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cubejs-client/react",
3
- "version": "0.31.35",
3
+ "version": "0.31.63",
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.31.35",
27
+ "@cubejs-client/core": "^0.31.63",
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": "60f8f28f9174e3d7e5008e1d210e9f72605f5dcd"
45
+ "gitHead": "30a19b5f0ef293048561783d614c77b6e3f3d231"
46
46
  }