@metamask/snaps-sdk 6.6.0 → 6.7.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 +14 -1
- package/dist/error-wrappers.d.cts +192 -192
- package/dist/error-wrappers.d.mts +192 -192
- package/dist/errors.cjs +25 -12
- package/dist/errors.cjs.map +1 -1
- package/dist/errors.mjs +25 -12
- package/dist/errors.mjs.map +1 -1
- package/dist/internals/error-wrappers.d.cts +12 -12
- package/dist/internals/error-wrappers.d.mts +12 -12
- package/dist/jsx/components/Heading.cjs +3 -0
- package/dist/jsx/components/Heading.cjs.map +1 -1
- package/dist/jsx/components/Heading.d.cts +5 -0
- package/dist/jsx/components/Heading.d.cts.map +1 -1
- package/dist/jsx/components/Heading.d.mts +5 -0
- package/dist/jsx/components/Heading.d.mts.map +1 -1
- package/dist/jsx/components/Heading.mjs +3 -0
- package/dist/jsx/components/Heading.mjs.map +1 -1
- package/dist/jsx/components/Link.cjs.map +1 -1
- package/dist/jsx/components/Link.d.cts +2 -1
- package/dist/jsx/components/Link.d.cts.map +1 -1
- package/dist/jsx/components/Link.d.mts +2 -1
- package/dist/jsx/components/Link.d.mts.map +1 -1
- package/dist/jsx/components/Link.mjs.map +1 -1
- package/dist/jsx/components/Row.cjs.map +1 -1
- package/dist/jsx/components/Row.d.cts +2 -1
- package/dist/jsx/components/Row.d.cts.map +1 -1
- package/dist/jsx/components/Row.d.mts +2 -1
- package/dist/jsx/components/Row.d.mts.map +1 -1
- package/dist/jsx/components/Row.mjs.map +1 -1
- package/dist/jsx/components/Text.cjs +2 -0
- package/dist/jsx/components/Text.cjs.map +1 -1
- package/dist/jsx/components/Text.d.cts +4 -0
- package/dist/jsx/components/Text.d.cts.map +1 -1
- package/dist/jsx/components/Text.d.mts +4 -0
- package/dist/jsx/components/Text.d.mts.map +1 -1
- package/dist/jsx/components/Text.mjs +2 -0
- package/dist/jsx/components/Text.mjs.map +1 -1
- package/dist/jsx/components/form/AccountSelector.cjs +25 -0
- package/dist/jsx/components/form/AccountSelector.cjs.map +1 -0
- package/dist/jsx/components/form/AccountSelector.d.cts +43 -0
- package/dist/jsx/components/form/AccountSelector.d.cts.map +1 -0
- package/dist/jsx/components/form/AccountSelector.d.mts +43 -0
- package/dist/jsx/components/form/AccountSelector.d.mts.map +1 -0
- package/dist/jsx/components/form/AccountSelector.mjs +22 -0
- package/dist/jsx/components/form/AccountSelector.mjs.map +1 -0
- package/dist/jsx/components/form/index.cjs +1 -0
- package/dist/jsx/components/form/index.cjs.map +1 -1
- package/dist/jsx/components/form/index.d.cts +3 -1
- package/dist/jsx/components/form/index.d.cts.map +1 -1
- package/dist/jsx/components/form/index.d.mts +3 -1
- package/dist/jsx/components/form/index.d.mts.map +1 -1
- package/dist/jsx/components/form/index.mjs +1 -0
- package/dist/jsx/components/form/index.mjs.map +1 -1
- package/dist/jsx/validation.cjs +27 -3
- package/dist/jsx/validation.cjs.map +1 -1
- package/dist/jsx/validation.d.cts +8 -1
- package/dist/jsx/validation.d.cts.map +1 -1
- package/dist/jsx/validation.d.mts +8 -1
- package/dist/jsx/validation.d.mts.map +1 -1
- package/dist/jsx/validation.mjs +26 -3
- package/dist/jsx/validation.mjs.map +1 -1
- package/dist/types/interface.d.cts +1 -0
- package/dist/types/interface.d.cts.map +1 -1
- package/dist/types/interface.d.mts +1 -0
- package/dist/types/interface.d.mts.map +1 -1
- package/dist/types/methods/get-currency-rate.cjs +3 -0
- package/dist/types/methods/get-currency-rate.cjs.map +1 -0
- package/dist/types/methods/get-currency-rate.d.cts +29 -0
- package/dist/types/methods/get-currency-rate.d.cts.map +1 -0
- package/dist/types/methods/get-currency-rate.d.mts +29 -0
- package/dist/types/methods/get-currency-rate.d.mts.map +1 -0
- package/dist/types/methods/get-currency-rate.mjs +2 -0
- package/dist/types/methods/get-currency-rate.mjs.map +1 -0
- package/dist/types/methods/index.cjs +1 -0
- package/dist/types/methods/index.cjs.map +1 -1
- package/dist/types/methods/index.d.cts +1 -0
- package/dist/types/methods/index.d.cts.map +1 -1
- package/dist/types/methods/index.d.mts +1 -0
- package/dist/types/methods/index.d.mts.map +1 -1
- package/dist/types/methods/index.mjs +1 -0
- package/dist/types/methods/index.mjs.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [6.7.0]
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
|
|
14
|
+
- Add `snap_getCurrencyRate` JSON-RPC method ([#2763](https://github.com/MetaMask/snaps/pull/2763))
|
|
15
|
+
- Add `AccountSelector` component ([#2764](https://github.com/MetaMask/snaps/pull/2764), [#2768](https://github.com/MetaMask/snaps/pull/2768))
|
|
16
|
+
- Add `size` prop to the `Heading` component ([#2759](https://github.com/MetaMask/snaps/pull/2759))
|
|
17
|
+
|
|
18
|
+
### Changed
|
|
19
|
+
|
|
20
|
+
- Allow `Link` in `Row` and `Address` in `Link` ([#2761](https://github.com/MetaMask/snaps/pull/2761))
|
|
21
|
+
|
|
10
22
|
## [6.6.0]
|
|
11
23
|
|
|
12
24
|
### Added
|
|
@@ -349,7 +361,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
349
361
|
|
|
350
362
|
- Initial release of this package.
|
|
351
363
|
|
|
352
|
-
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-sdk@6.
|
|
364
|
+
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-sdk@6.7.0...HEAD
|
|
365
|
+
[6.7.0]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-sdk@6.6.0...@metamask/snaps-sdk@6.7.0
|
|
353
366
|
[6.6.0]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-sdk@6.5.1...@metamask/snaps-sdk@6.6.0
|
|
354
367
|
[6.5.1]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-sdk@6.5.0...@metamask/snaps-sdk@6.5.1
|
|
355
368
|
[6.5.0]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-sdk@6.4.0...@metamask/snaps-sdk@6.5.0
|