@metamask/snaps-sdk 4.4.2 → 5.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 +18 -1
- package/dist/index.js +191 -215
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +31 -56
- package/dist/index.mjs.map +1 -1
- package/dist/jsx/index.js +68 -52
- package/dist/jsx/index.js.map +1 -1
- package/dist/jsx/index.mjs +48 -33
- package/dist/jsx/index.mjs.map +1 -1
- package/dist/jsx/jsx-dev-runtime.js +68 -52
- package/dist/jsx/jsx-dev-runtime.js.map +1 -1
- package/dist/jsx/jsx-dev-runtime.mjs +48 -33
- package/dist/jsx/jsx-dev-runtime.mjs.map +1 -1
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/dist/types/index.d.ts +1 -1
- package/dist/types/internals/svg.d.ts +4 -11
- package/dist/types/jsx/component.d.ts +12 -2
- package/dist/types/jsx/components/Row.d.ts +5 -2
- package/dist/types/jsx/components/form/Dropdown.d.ts +1 -2
- package/dist/types/jsx/components/form/Input.d.ts +1 -2
- package/dist/types/types/handlers/name-lookup.d.ts +1 -0
- package/dist/types/ui/components/image.d.ts +0 -7
- package/package.json +1 -2
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [5.0.0]
|
|
10
|
+
### Added
|
|
11
|
+
- Allow row tooltips ([#2483](https://github.com/MetaMask/snaps/pull/2483))
|
|
12
|
+
- Support nested children in JSX ([#2482](https://github.com/MetaMask/snaps/pull/2482))
|
|
13
|
+
|
|
14
|
+
### Changed
|
|
15
|
+
- Update `onNameLookup` response types ([#2484](https://github.com/MetaMask/snaps/pull/2484))
|
|
16
|
+
|
|
17
|
+
### Removed
|
|
18
|
+
- **BREAKING:** Remove `parseSvg` and `isSvg` internals ([#2475](https://github.com/MetaMask/snaps/pull/2475))
|
|
19
|
+
|
|
20
|
+
### Fixed
|
|
21
|
+
- Correct Row variant in JSX ([#2486](https://github.com/MetaMask/snaps/pull/2486))
|
|
22
|
+
- Revert requiring at least one child in JSX components ([#2481](https://github.com/MetaMask/snaps/pull/2481), [#2470](https://github.com/MetaMask/snaps/pull/2470))
|
|
23
|
+
- Correct docs for `Input` and `Dropdown` ([#2479](https://github.com/MetaMask/snaps/pull/2479))
|
|
24
|
+
|
|
9
25
|
## [4.4.2]
|
|
10
26
|
### Fixed
|
|
11
27
|
- Require at least 1 child in JSX components ([#2466](https://github.com/MetaMask/snaps/pull/2466))
|
|
@@ -154,7 +170,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
154
170
|
### Added
|
|
155
171
|
- Initial release of this package.
|
|
156
172
|
|
|
157
|
-
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-sdk@
|
|
173
|
+
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-sdk@5.0.0...HEAD
|
|
174
|
+
[5.0.0]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-sdk@4.4.2...@metamask/snaps-sdk@5.0.0
|
|
158
175
|
[4.4.2]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-sdk@4.4.1...@metamask/snaps-sdk@4.4.2
|
|
159
176
|
[4.4.1]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-sdk@4.4.0...@metamask/snaps-sdk@4.4.1
|
|
160
177
|
[4.4.0]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-sdk@4.3.0...@metamask/snaps-sdk@4.4.0
|