@dynamic-labs/iframe-setup 4.9.0 → 4.9.1-preview.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/CHANGELOG.md +8 -0
- package/README.md +2 -3
- package/package.cjs +1 -1
- package/package.js +1 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,12 @@
|
|
|
1
1
|
|
|
2
|
+
### [4.9.1-preview.0](https://github.com/dynamic-labs/dynamic-auth/compare/v4.9.0...v4.9.1-preview.0) (2025-03-07)
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
### Bug Fixes
|
|
6
|
+
|
|
7
|
+
* 7702 on sepolia ([#8242](https://github.com/dynamic-labs/dynamic-auth/issues/8242)) ([8e1c63f](https://github.com/dynamic-labs/dynamic-auth/commit/8e1c63f240024f419e12787636dd2ebaacf8da94))
|
|
8
|
+
* embedded widget race condition that would show both embedded and non-embedded widgets at the same time ([8a52778](https://github.com/dynamic-labs/dynamic-auth/commit/8a5277888489e03871532331760c197aa6216495))
|
|
9
|
+
|
|
2
10
|
## [4.9.0](https://github.com/dynamic-labs/dynamic-auth/compare/v4.8.6...v4.9.0) (2025-03-07)
|
|
3
11
|
|
|
4
12
|
|
package/README.md
CHANGED
|
@@ -71,7 +71,7 @@ Once both steps are completed, the Dynamic SDK will be fully operational within
|
|
|
71
71
|
|
|
72
72
|
If you're unable to install the package in the parent application, you can directly implement the `setupIframe` functionality by copying the code below:
|
|
73
73
|
|
|
74
|
-
|
|
74
|
+
```ts
|
|
75
75
|
/**
|
|
76
76
|
* Setup an iframe to comunicate with the Dynamic SDK
|
|
77
77
|
* running inside the iframe
|
|
@@ -223,5 +223,4 @@ const createMessageSender =
|
|
|
223
223
|
);
|
|
224
224
|
};
|
|
225
225
|
|
|
226
|
-
```
|
|
227
|
-
````
|
|
226
|
+
```
|
package/package.cjs
CHANGED
package/package.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dynamic-labs/iframe-setup",
|
|
3
|
-
"version": "4.9.0",
|
|
3
|
+
"version": "4.9.1-preview.0",
|
|
4
4
|
"description": "Collection of utilities to use the Dynamic SDK in an iframe",
|
|
5
5
|
"author": "Dynamic Labs, Inc.",
|
|
6
6
|
"license": "MIT",
|
|
@@ -18,9 +18,9 @@
|
|
|
18
18
|
},
|
|
19
19
|
"homepage": "https://www.dynamic.xyz/",
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@dynamic-labs/assert-package-version": "4.9.0",
|
|
22
|
-
"@dynamic-labs/logger": "4.9.0",
|
|
23
|
-
"@dynamic-labs/utils": "4.9.0",
|
|
21
|
+
"@dynamic-labs/assert-package-version": "4.9.1-preview.0",
|
|
22
|
+
"@dynamic-labs/logger": "4.9.1-preview.0",
|
|
23
|
+
"@dynamic-labs/utils": "4.9.1-preview.0",
|
|
24
24
|
"eventemitter3": "5.0.1"
|
|
25
25
|
},
|
|
26
26
|
"peerDependencies": {}
|