@uniformdev/mesh-sdk 18.28.0 → 18.29.2-alpha.11
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 +1 -1
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +4 -4
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.
|
|
3
|
+
"version": "18.29.2-alpha.11+299df8405",
|
|
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.
|
|
36
|
-
"@uniformdev/context": "18.
|
|
35
|
+
"@uniformdev/canvas": "18.29.2-alpha.11+299df8405",
|
|
36
|
+
"@uniformdev/context": "18.29.2-alpha.11+299df8405",
|
|
37
37
|
"mitt": "^3.0.0"
|
|
38
38
|
},
|
|
39
|
-
"gitHead": "
|
|
39
|
+
"gitHead": "299df840521b9a41a3e683a9095b7b5f45a8cf12"
|
|
40
40
|
}
|