@metamask/snaps-sdk 9.3.0 → 10.1.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.
Files changed (44) hide show
  1. package/CHANGELOG.md +23 -1
  2. package/dist/error-wrappers.d.cts +192 -192
  3. package/dist/error-wrappers.d.mts +192 -192
  4. package/dist/internals/error-wrappers.d.cts +12 -12
  5. package/dist/internals/error-wrappers.d.mts +12 -12
  6. package/dist/jsx/components/Icon.cjs +153 -37
  7. package/dist/jsx/components/Icon.cjs.map +1 -1
  8. package/dist/jsx/components/Icon.d.cts +153 -37
  9. package/dist/jsx/components/Icon.d.cts.map +1 -1
  10. package/dist/jsx/components/Icon.d.mts +153 -37
  11. package/dist/jsx/components/Icon.d.mts.map +1 -1
  12. package/dist/jsx/components/Icon.mjs +153 -37
  13. package/dist/jsx/components/Icon.mjs.map +1 -1
  14. package/dist/jsx/components/formatting/Italic.cjs +1 -1
  15. package/dist/jsx/components/formatting/Italic.cjs.map +1 -1
  16. package/dist/jsx/components/formatting/Italic.d.cts +1 -1
  17. package/dist/jsx/components/formatting/Italic.d.mts +1 -1
  18. package/dist/jsx/components/formatting/Italic.mjs +1 -1
  19. package/dist/jsx/components/formatting/Italic.mjs.map +1 -1
  20. package/dist/jsx/validation.cjs +33 -17
  21. package/dist/jsx/validation.cjs.map +1 -1
  22. package/dist/jsx/validation.d.cts.map +1 -1
  23. package/dist/jsx/validation.d.mts.map +1 -1
  24. package/dist/jsx/validation.mjs +33 -17
  25. package/dist/jsx/validation.mjs.map +1 -1
  26. package/dist/types/handlers/transaction.cjs.map +1 -1
  27. package/dist/types/handlers/transaction.d.cts +3 -3
  28. package/dist/types/handlers/transaction.d.mts +3 -3
  29. package/dist/types/handlers/transaction.mjs.map +1 -1
  30. package/dist/types/handlers/user-input.cjs +2 -2
  31. package/dist/types/handlers/user-input.cjs.map +1 -1
  32. package/dist/types/handlers/user-input.d.cts +3 -3
  33. package/dist/types/handlers/user-input.d.cts.map +1 -1
  34. package/dist/types/handlers/user-input.d.mts +3 -3
  35. package/dist/types/handlers/user-input.d.mts.map +1 -1
  36. package/dist/types/handlers/user-input.mjs +2 -2
  37. package/dist/types/handlers/user-input.mjs.map +1 -1
  38. package/dist/types/methods/get-client-status.cjs.map +1 -1
  39. package/dist/types/methods/get-client-status.d.cts +14 -0
  40. package/dist/types/methods/get-client-status.d.cts.map +1 -1
  41. package/dist/types/methods/get-client-status.d.mts +14 -0
  42. package/dist/types/methods/get-client-status.d.mts.map +1 -1
  43. package/dist/types/methods/get-client-status.mjs.map +1 -1
  44. package/package.json +4 -4
package/CHANGELOG.md CHANGED
@@ -7,6 +7,26 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [10.1.0]
11
+
12
+ ### Changed
13
+
14
+ - Include client and platform versions in `snap_getClientStatus` ([#3724](https://github.com/MetaMask/snaps/pull/3724))
15
+
16
+ ### Fixed
17
+
18
+ - Input change events in `onUserInput` now accepts `null` values ([#3722](https://github.com/MetaMask/snaps/pull/3722))
19
+
20
+ ## [10.0.0]
21
+
22
+ ### Changed
23
+
24
+ - **BREAKING:** Update `IconName` enum with latest icons ([#3656](https://github.com/MetaMask/snaps/pull/3656))
25
+ - Some icons have been removed as part of this, for a full list check: https://github.com/MetaMask/snaps/pull/3656/files#diff-2fa2f5fd71c64875ba655a470a6104a2ca5d01ecf3b12c91b79237d6f54e3c4c
26
+ - Improve a couple of error messages for UI components ([#3625](https://github.com/MetaMask/snaps/pull/3625))
27
+ - Improve documentation for `transactionOrigin` field ([#3568](https://github.com/MetaMask/snaps/pull/3568))
28
+ - 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))
29
+
10
30
  ## [9.3.0]
11
31
 
12
32
  ### Added
@@ -646,7 +666,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
646
666
 
647
667
  - Initial release of this package.
648
668
 
649
- [Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-sdk@9.3.0...HEAD
669
+ [Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-sdk@10.1.0...HEAD
670
+ [10.1.0]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-sdk@10.0.0...@metamask/snaps-sdk@10.1.0
671
+ [10.0.0]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-sdk@9.3.0...@metamask/snaps-sdk@10.0.0
650
672
  [9.3.0]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-sdk@9.2.0...@metamask/snaps-sdk@9.3.0
651
673
  [9.2.0]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-sdk@9.1.0...@metamask/snaps-sdk@9.2.0
652
674
  [9.1.0]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-sdk@9.0.0...@metamask/snaps-sdk@9.1.0