@metamask/snaps-sdk 10.1.0 → 10.3.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 +16 -1
- package/dist/error-wrappers.d.cts +192 -192
- package/dist/error-wrappers.d.mts +192 -192
- package/dist/images.cjs +1 -0
- package/dist/images.cjs.map +1 -1
- package/dist/images.d.cts +1 -0
- package/dist/images.d.cts.map +1 -1
- package/dist/images.d.mts +1 -0
- package/dist/images.d.mts.map +1 -1
- package/dist/images.mjs +1 -0
- package/dist/images.mjs.map +1 -1
- package/dist/index.cjs +3 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -1
- package/dist/index.d.cts.map +1 -1
- package/dist/index.d.mts +2 -1
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/dist/internals/error-wrappers.d.cts +12 -12
- package/dist/internals/error-wrappers.d.mts +12 -12
- package/dist/internals/index.cjs +2 -0
- package/dist/internals/index.cjs.map +1 -1
- package/dist/internals/index.d.cts +2 -0
- package/dist/internals/index.d.cts.map +1 -1
- package/dist/internals/index.d.mts +2 -0
- package/dist/internals/index.d.mts.map +1 -1
- package/dist/internals/index.mjs +2 -0
- package/dist/internals/index.mjs.map +1 -1
- package/dist/internals/time.cjs +24 -0
- package/dist/internals/time.cjs.map +1 -0
- package/dist/internals/time.d.cts +5 -0
- package/dist/internals/time.d.cts.map +1 -0
- package/dist/internals/time.d.mts +5 -0
- package/dist/internals/time.d.mts.map +1 -0
- package/dist/internals/time.mjs +21 -0
- package/dist/internals/time.mjs.map +1 -0
- package/dist/internals/uri.cjs +21 -0
- package/dist/internals/uri.cjs.map +1 -0
- package/dist/internals/uri.d.cts +11 -0
- package/dist/internals/uri.d.cts.map +1 -0
- package/dist/internals/uri.d.mts +11 -0
- package/dist/internals/uri.d.mts.map +1 -0
- package/dist/internals/uri.mjs +17 -0
- package/dist/internals/uri.mjs.map +1 -0
- package/dist/jsx/components/Image.cjs +2 -0
- package/dist/jsx/components/Image.cjs.map +1 -1
- package/dist/jsx/components/Image.d.cts +4 -0
- package/dist/jsx/components/Image.d.cts.map +1 -1
- package/dist/jsx/components/Image.d.mts +4 -0
- package/dist/jsx/components/Image.d.mts.map +1 -1
- package/dist/jsx/components/Image.mjs +2 -0
- package/dist/jsx/components/Image.mjs.map +1 -1
- package/dist/jsx/components/form/DateTimePicker.cjs +21 -0
- package/dist/jsx/components/form/DateTimePicker.cjs.map +1 -0
- package/dist/jsx/components/form/DateTimePicker.d.cts +45 -0
- package/dist/jsx/components/form/DateTimePicker.d.cts.map +1 -0
- package/dist/jsx/components/form/DateTimePicker.d.mts +45 -0
- package/dist/jsx/components/form/DateTimePicker.d.mts.map +1 -0
- package/dist/jsx/components/form/DateTimePicker.mjs +18 -0
- package/dist/jsx/components/form/DateTimePicker.mjs.map +1 -0
- package/dist/jsx/components/form/Field.cjs.map +1 -1
- package/dist/jsx/components/form/Field.d.cts +2 -1
- package/dist/jsx/components/form/Field.d.cts.map +1 -1
- package/dist/jsx/components/form/Field.d.mts +2 -1
- package/dist/jsx/components/form/Field.d.mts.map +1 -1
- package/dist/jsx/components/form/Field.mjs.map +1 -1
- 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 +20 -3
- package/dist/jsx/validation.cjs.map +1 -1
- package/dist/jsx/validation.d.cts +16 -4
- package/dist/jsx/validation.d.cts.map +1 -1
- package/dist/jsx/validation.d.mts +16 -4
- package/dist/jsx/validation.d.mts.map +1 -1
- package/dist/jsx/validation.mjs +19 -2
- package/dist/jsx/validation.mjs.map +1 -1
- package/dist/types/interface.d.cts +3 -1
- package/dist/types/interface.d.cts.map +1 -1
- package/dist/types/interface.d.mts +3 -1
- package/dist/types/interface.d.mts.map +1 -1
- package/package.json +4 -2
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
|
+
## [10.3.0]
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
|
|
14
|
+
- Add support for external images ([#3769](https://github.com/MetaMask/snaps/pull/3769))
|
|
15
|
+
|
|
16
|
+
## [10.2.0]
|
|
17
|
+
|
|
18
|
+
### Added
|
|
19
|
+
|
|
20
|
+
- Add `DateTimePicker` component ([#3698](https://github.com/MetaMask/snaps/pull/3698))
|
|
21
|
+
- Move `ISO8601DateStruct` from `@metamask/snaps-utils` to `@metamask/snaps-sdk` ([#3698](https://github.com/MetaMask/snaps/pull/3698))
|
|
22
|
+
|
|
10
23
|
## [10.1.0]
|
|
11
24
|
|
|
12
25
|
### Changed
|
|
@@ -666,7 +679,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
666
679
|
|
|
667
680
|
- Initial release of this package.
|
|
668
681
|
|
|
669
|
-
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-sdk@10.
|
|
682
|
+
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-sdk@10.3.0...HEAD
|
|
683
|
+
[10.3.0]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-sdk@10.2.0...@metamask/snaps-sdk@10.3.0
|
|
684
|
+
[10.2.0]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-sdk@10.1.0...@metamask/snaps-sdk@10.2.0
|
|
670
685
|
[10.1.0]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-sdk@10.0.0...@metamask/snaps-sdk@10.1.0
|
|
671
686
|
[10.0.0]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-sdk@9.3.0...@metamask/snaps-sdk@10.0.0
|
|
672
687
|
[9.3.0]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-sdk@9.2.0...@metamask/snaps-sdk@9.3.0
|