@uniformdev/mesh-sdk 18.30.1-alpha.16 → 18.31.0

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/index.esm.js CHANGED
@@ -474,7 +474,7 @@ async function connectToParent({
474
474
  initData,
475
475
  parent: {
476
476
  resize: async ({ height }) => {
477
- await client.request("resize", height);
477
+ await client.request("resize", { height });
478
478
  },
479
479
  setValue: async (value) => {
480
480
  await client.request("setValue", value);
package/dist/index.js CHANGED
@@ -511,7 +511,7 @@ async function connectToParent({
511
511
  initData,
512
512
  parent: {
513
513
  resize: async ({ height }) => {
514
- await client.request("resize", height);
514
+ await client.request("resize", { height });
515
515
  },
516
516
  setValue: async (value) => {
517
517
  await client.request("setValue", value);
package/dist/index.mjs CHANGED
@@ -474,7 +474,7 @@ async function connectToParent({
474
474
  initData,
475
475
  parent: {
476
476
  resize: async ({ height }) => {
477
- await client.request("resize", height);
477
+ await client.request("resize", { height });
478
478
  },
479
479
  setValue: async (value) => {
480
480
  await client.request("setValue", value);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniformdev/mesh-sdk",
3
- "version": "18.30.1-alpha.16+307079cf6",
3
+ "version": "18.31.0",
4
4
  "description": "Uniform Mesh Framework SDK",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "main": "./dist/index.js",
@@ -32,9 +32,9 @@
32
32
  "access": "public"
33
33
  },
34
34
  "dependencies": {
35
- "@uniformdev/canvas": "18.30.1-alpha.16+307079cf6",
36
- "@uniformdev/context": "18.30.1-alpha.16+307079cf6",
35
+ "@uniformdev/canvas": "18.31.0",
36
+ "@uniformdev/context": "18.31.0",
37
37
  "mitt": "^3.0.0"
38
38
  },
39
- "gitHead": "307079cf66af8d71316cfb18e9dbc3ff3f059838"
39
+ "gitHead": "b7090bc4a0971e51fc9ef8f5cb56ebf6cb3f7f3b"
40
40
  }