@metamask/snaps-sdk 6.10.0 → 6.11.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 -1
- package/dist/error-wrappers.d.cts +192 -192
- package/dist/error-wrappers.d.mts +192 -192
- package/dist/internals/error-wrappers.d.cts +12 -12
- package/dist/internals/error-wrappers.d.mts +12 -12
- package/dist/jsx/components/Card.cjs.map +1 -1
- package/dist/jsx/components/Card.d.cts +2 -1
- package/dist/jsx/components/Card.d.cts.map +1 -1
- package/dist/jsx/components/Card.d.mts +2 -1
- package/dist/jsx/components/Card.d.mts.map +1 -1
- package/dist/jsx/components/Card.mjs.map +1 -1
- package/dist/jsx/validation.cjs +16 -11
- package/dist/jsx/validation.cjs.map +1 -1
- package/dist/jsx/validation.d.cts +7 -7
- package/dist/jsx/validation.d.cts.map +1 -1
- package/dist/jsx/validation.d.mts +7 -7
- package/dist/jsx/validation.d.mts.map +1 -1
- package/dist/jsx/validation.mjs +15 -10
- package/dist/jsx/validation.mjs.map +1 -1
- package/dist/types/interface.cjs +8 -1
- package/dist/types/interface.cjs.map +1 -1
- package/dist/types/interface.d.cts +7 -1
- package/dist/types/interface.d.cts.map +1 -1
- package/dist/types/interface.d.mts +7 -1
- package/dist/types/interface.d.mts.map +1 -1
- package/dist/types/interface.mjs +7 -0
- package/dist/types/interface.mjs.map +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [6.11.0]
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
|
|
14
|
+
- Add support for `Address` in `Card` title ([#2894](https://github.com/MetaMask/snaps/pull/2894))
|
|
15
|
+
|
|
10
16
|
## [6.10.0]
|
|
11
17
|
|
|
12
18
|
### Added
|
|
@@ -409,7 +415,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
409
415
|
|
|
410
416
|
- Initial release of this package.
|
|
411
417
|
|
|
412
|
-
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-sdk@6.
|
|
418
|
+
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-sdk@6.11.0...HEAD
|
|
419
|
+
[6.11.0]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-sdk@6.10.0...@metamask/snaps-sdk@6.11.0
|
|
413
420
|
[6.10.0]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-sdk@6.9.0...@metamask/snaps-sdk@6.10.0
|
|
414
421
|
[6.9.0]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-sdk@6.8.0...@metamask/snaps-sdk@6.9.0
|
|
415
422
|
[6.8.0]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-sdk@6.7.0...@metamask/snaps-sdk@6.8.0
|