@knapsack/renderer-client 4.70.0 → 4.70.1
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/CHANGELOG.md +13 -0
- package/dist/renderer-client.mjs +4 -5
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,16 @@
|
|
|
1
|
+
# v4.70.1 (Thu Oct 03 2024)
|
|
2
|
+
|
|
3
|
+
#### 🏠 Internal
|
|
4
|
+
|
|
5
|
+
- Update babel to ^7.25.7 [#4887](https://github.com/knapsack-labs/app-monorepo/pull/4887) ([@renovate[bot]](https://github.com/renovate[bot]))
|
|
6
|
+
- Update dependency @types/node to ^20.16.10 [#4890](https://github.com/knapsack-labs/app-monorepo/pull/4890) ([@renovate[bot]](https://github.com/renovate[bot]))
|
|
7
|
+
|
|
8
|
+
#### Authors: 1
|
|
9
|
+
|
|
10
|
+
- [@renovate[bot]](https://github.com/renovate[bot])
|
|
11
|
+
|
|
12
|
+
---
|
|
13
|
+
|
|
1
14
|
# v4.69.14 (Fri Sep 27 2024)
|
|
2
15
|
|
|
3
16
|
#### 🏠 Internal
|
package/dist/renderer-client.mjs
CHANGED
|
@@ -39,11 +39,10 @@ if (isReallyInIframe) {
|
|
|
39
39
|
* Sends a message to the parent window with the current height and width of the iframe's content.
|
|
40
40
|
* Search code base for the value in `event.type` to see how it's used.
|
|
41
41
|
*/
|
|
42
|
-
function sendResizeEvent(
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
} = _ref;
|
|
42
|
+
function sendResizeEvent({
|
|
43
|
+
height,
|
|
44
|
+
width
|
|
45
|
+
}) {
|
|
47
46
|
clearTimeout(timeoutId);
|
|
48
47
|
// slight delay to prevent spamming the parent window with resize events
|
|
49
48
|
timeoutId = setTimeout(() => {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@knapsack/renderer-client",
|
|
3
3
|
"description": "",
|
|
4
|
-
"version": "4.70.
|
|
4
|
+
"version": "4.70.1",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/renderer-client.mjs",
|
|
7
7
|
"module": "dist/renderer-client.mjs",
|
|
@@ -23,17 +23,17 @@
|
|
|
23
23
|
"types-test:start": "tsc --watch"
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
26
|
-
"@babel/core": "^7.25.
|
|
27
|
-
"@knapsack/babel-config-starter": "4.70.
|
|
28
|
-
"@knapsack/eslint-config-starter": "4.70.
|
|
29
|
-
"@knapsack/types": "4.70.
|
|
30
|
-
"@knapsack/typescript-config-starter": "4.70.
|
|
26
|
+
"@babel/core": "^7.25.7",
|
|
27
|
+
"@knapsack/babel-config-starter": "4.70.1",
|
|
28
|
+
"@knapsack/eslint-config-starter": "4.70.1",
|
|
29
|
+
"@knapsack/types": "4.70.1",
|
|
30
|
+
"@knapsack/typescript-config-starter": "4.70.1",
|
|
31
31
|
"@rollup/plugin-babel": "^5.3.1",
|
|
32
32
|
"@rollup/plugin-commonjs": "^21.1.0",
|
|
33
33
|
"@rollup/plugin-json": "^4.1.0",
|
|
34
34
|
"@rollup/plugin-node-resolve": "^13.3.0",
|
|
35
35
|
"@rollup/plugin-replace": "^3.1.0",
|
|
36
|
-
"@types/node": "^20.16.
|
|
36
|
+
"@types/node": "^20.16.10",
|
|
37
37
|
"eslint": "^8.57.0",
|
|
38
38
|
"rollup": "^2.79.1",
|
|
39
39
|
"typescript": "^5.5.4"
|
|
@@ -47,5 +47,5 @@
|
|
|
47
47
|
"directory": "apps/client/libs/renderer-client",
|
|
48
48
|
"type": "git"
|
|
49
49
|
},
|
|
50
|
-
"gitHead": "
|
|
50
|
+
"gitHead": "dccd24fc9fc5a554a0c4de0dc1fdce96eb0674f7"
|
|
51
51
|
}
|