@metamask/snaps-sdk 9.2.0 → 10.0.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 +21 -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/Icon.cjs +153 -37
- package/dist/jsx/components/Icon.cjs.map +1 -1
- package/dist/jsx/components/Icon.d.cts +153 -37
- package/dist/jsx/components/Icon.d.cts.map +1 -1
- package/dist/jsx/components/Icon.d.mts +153 -37
- package/dist/jsx/components/Icon.d.mts.map +1 -1
- package/dist/jsx/components/Icon.mjs +153 -37
- package/dist/jsx/components/Icon.mjs.map +1 -1
- package/dist/jsx/validation.cjs +33 -17
- package/dist/jsx/validation.cjs.map +1 -1
- package/dist/jsx/validation.d.cts.map +1 -1
- package/dist/jsx/validation.d.mts.map +1 -1
- package/dist/jsx/validation.mjs +33 -17
- package/dist/jsx/validation.mjs.map +1 -1
- package/dist/types/handlers/lifecycle.cjs.map +1 -1
- package/dist/types/handlers/lifecycle.d.cts +24 -0
- package/dist/types/handlers/lifecycle.d.cts.map +1 -1
- package/dist/types/handlers/lifecycle.d.mts +24 -0
- package/dist/types/handlers/lifecycle.d.mts.map +1 -1
- package/dist/types/handlers/lifecycle.mjs.map +1 -1
- package/dist/types/handlers/transaction.cjs.map +1 -1
- package/dist/types/handlers/transaction.d.cts +3 -3
- package/dist/types/handlers/transaction.d.mts +3 -3
- package/dist/types/handlers/transaction.mjs.map +1 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,24 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [10.0.0]
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
|
|
14
|
+
- **BREAKING:** Update `IconName` enum with latest icons ([#3656](https://github.com/MetaMask/snaps/pull/3656))
|
|
15
|
+
- Some icons have been removed as part of this, for a full list check: https://github.com/MetaMask/snaps/pull/3656/files#diff-2fa2f5fd71c64875ba655a470a6104a2ca5d01ecf3b12c91b79237d6f54e3c4c
|
|
16
|
+
- Improve a couple of error messages for UI components ([#3625](https://github.com/MetaMask/snaps/pull/3625))
|
|
17
|
+
- Improve documentation for `transactionOrigin` field ([#3568](https://github.com/MetaMask/snaps/pull/3568))
|
|
18
|
+
- Bump MetaMask dependencies ([#3651](https://github.com/MetaMask/snaps/pull/3651), [#3638](https://github.com/MetaMask/snaps/pull/3638), [#3648](https://github.com/MetaMask/snaps/pull/3648), [#3630](https://github.com/MetaMask/snaps/pull/3630), [#3628](https://github.com/MetaMask/snaps/pull/3628), [#3629](https://github.com/MetaMask/snaps/pull/3629), [#3607](https://github.com/MetaMask/snaps/pull/3607), [#3623](https://github.com/MetaMask/snaps/pull/3623), [#3612](https://github.com/MetaMask/snaps/pull/3612))
|
|
19
|
+
|
|
20
|
+
## [9.3.0]
|
|
21
|
+
|
|
22
|
+
### Added
|
|
23
|
+
|
|
24
|
+
- Add support for `onActive` and `onInactive` lifecycle hooks ([#3542](https://github.com/MetaMask/snaps/pull/3542))
|
|
25
|
+
- These hooks are called when the client is activated or deactivated,
|
|
26
|
+
respectively.
|
|
27
|
+
|
|
10
28
|
## [9.2.0]
|
|
11
29
|
|
|
12
30
|
### Added
|
|
@@ -638,7 +656,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
638
656
|
|
|
639
657
|
- Initial release of this package.
|
|
640
658
|
|
|
641
|
-
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-sdk@
|
|
659
|
+
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-sdk@10.0.0...HEAD
|
|
660
|
+
[10.0.0]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-sdk@9.3.0...@metamask/snaps-sdk@10.0.0
|
|
661
|
+
[9.3.0]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-sdk@9.2.0...@metamask/snaps-sdk@9.3.0
|
|
642
662
|
[9.2.0]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-sdk@9.1.0...@metamask/snaps-sdk@9.2.0
|
|
643
663
|
[9.1.0]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-sdk@9.0.0...@metamask/snaps-sdk@9.1.0
|
|
644
664
|
[9.0.0]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-sdk@8.1.0...@metamask/snaps-sdk@9.0.0
|