@metamask/snaps-sdk 6.12.0 → 6.13.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 +15 -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 +1 -1
- package/dist/jsx/components/Icon.cjs.map +1 -1
- package/dist/jsx/components/Icon.mjs +1 -1
- package/dist/jsx/components/Icon.mjs.map +1 -1
- package/dist/jsx/components/Text.cjs +5 -0
- package/dist/jsx/components/Text.cjs.map +1 -1
- package/dist/jsx/components/Text.d.cts +7 -0
- package/dist/jsx/components/Text.d.cts.map +1 -1
- package/dist/jsx/components/Text.d.mts +7 -0
- package/dist/jsx/components/Text.d.mts.map +1 -1
- package/dist/jsx/components/Text.mjs +5 -0
- package/dist/jsx/components/Text.mjs.map +1 -1
- package/dist/jsx/components/form/Field.cjs +1 -2
- package/dist/jsx/components/form/Field.cjs.map +1 -1
- package/dist/jsx/components/form/Field.d.cts +1 -2
- package/dist/jsx/components/form/Field.d.cts.map +1 -1
- package/dist/jsx/components/form/Field.d.mts +1 -2
- package/dist/jsx/components/form/Field.d.mts.map +1 -1
- package/dist/jsx/components/form/Field.mjs +1 -2
- package/dist/jsx/components/form/Field.mjs.map +1 -1
- package/dist/jsx/validation.cjs +14 -14
- package/dist/jsx/validation.cjs.map +1 -1
- package/dist/jsx/validation.d.cts +11 -11
- package/dist/jsx/validation.d.cts.map +1 -1
- package/dist/jsx/validation.d.mts +11 -11
- package/dist/jsx/validation.d.mts.map +1 -1
- package/dist/jsx/validation.mjs +13 -13
- package/dist/jsx/validation.mjs.map +1 -1
- package/dist/types/interface.d.cts +1 -1
- package/dist/types/interface.d.mts +1 -1
- package/dist/types/methods/notify.cjs.map +1 -1
- package/dist/types/methods/notify.d.cts +15 -2
- package/dist/types/methods/notify.d.cts.map +1 -1
- package/dist/types/methods/notify.d.mts +15 -2
- package/dist/types/methods/notify.d.mts.map +1 -1
- package/dist/types/methods/notify.mjs.map +1 -1
- package/dist/ui/components/input.cjs +1 -1
- package/dist/ui/components/input.cjs.map +1 -1
- package/dist/ui/components/input.d.cts +1 -1
- package/dist/ui/components/input.d.mts +1 -1
- package/dist/ui/components/input.mjs +1 -1
- package/dist/ui/components/input.mjs.map +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [6.13.0]
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
|
|
14
|
+
- Add `size` prop to `Text` ([#2908](https://github.com/MetaMask/snaps/pull/2908))
|
|
15
|
+
- Add JSX `content` property to `snap_notify` ([#2881](https://github.com/MetaMask/snaps/pull/2881))
|
|
16
|
+
- This content will be displayed in an upcoming expanded view for notifications.
|
|
17
|
+
|
|
18
|
+
### Changed
|
|
19
|
+
|
|
20
|
+
- Allow `Field` in `Box` ([#2926](https://github.com/MetaMask/snaps/pull/2926))
|
|
21
|
+
- Bump `@metamask/key-tree` from `^9.1.2` to `^10.0.1` ([#2909](https://github.com/MetaMask/snaps/pull/2909))
|
|
22
|
+
|
|
10
23
|
## [6.12.0]
|
|
11
24
|
|
|
12
25
|
### Added
|
|
@@ -421,7 +434,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
421
434
|
|
|
422
435
|
- Initial release of this package.
|
|
423
436
|
|
|
424
|
-
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-sdk@6.
|
|
437
|
+
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-sdk@6.13.0...HEAD
|
|
438
|
+
[6.13.0]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-sdk@6.12.0...@metamask/snaps-sdk@6.13.0
|
|
425
439
|
[6.12.0]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-sdk@6.11.0...@metamask/snaps-sdk@6.12.0
|
|
426
440
|
[6.11.0]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-sdk@6.10.0...@metamask/snaps-sdk@6.11.0
|
|
427
441
|
[6.10.0]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-sdk@6.9.0...@metamask/snaps-sdk@6.10.0
|