Bump deps & adjust CHANGELOG (#756)

This commit is contained in:
Jaco
2023-05-05 09:29:17 +03:00
committed by GitHub
parent dae851297b
commit 60cc5fbd4b
12 changed files with 213 additions and 217 deletions
+11
View File
@@ -1,5 +1,16 @@
# CHANGELOG
## master
Contributed:
- Adjust `vue-identicon` to be Vue 3 compatible (Thanks to https://github.com/Gavin-Gong)
Changes:
- Bump to `@polkadot/util` 12.1.2
## 3.2.2 Apr 29, 2023
Changes:
+2 -2
View File
@@ -33,8 +33,8 @@
"test:one": "polkadot-dev-run-test --env browser"
},
"devDependencies": {
"@polkadot/dev": "^0.73.6",
"@polkadot/x-bundle": "^12.1.1",
"@polkadot/dev": "^0.73.9",
"@polkadot/x-bundle": "^12.1.2",
"@types/node": "^18.16.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
+4 -4
View File
@@ -21,11 +21,11 @@
"version": "3.2.3-0-x",
"main": "index.js",
"dependencies": {
"@polkadot/keyring": "^12.1.1",
"@polkadot/keyring": "^12.1.2",
"@polkadot/ui-settings": "3.2.3-0-x",
"@polkadot/ui-shared": "3.2.3-0-x",
"@polkadot/util": "^12.1.1",
"@polkadot/util-crypto": "^12.1.1",
"@polkadot/util": "^12.1.2",
"@polkadot/util-crypto": "^12.1.2",
"ethereum-blockies-base64": "^1.0.2",
"jdenticon": "3.2.0",
"react-copy-to-clipboard": "^5.1.0",
@@ -34,7 +34,7 @@
},
"devDependencies": {
"@types/react-copy-to-clipboard": "^5.0.4",
"@types/react-dom": "^18.2.1",
"@types/react-dom": "^18.2.3",
"@types/styled-components": "^5.1.26",
"xmlserializer": "^0.6.1"
},
+2 -2
View File
@@ -22,8 +22,8 @@
"main": "index.js",
"dependencies": {
"@polkadot/ui-settings": "3.2.3-0-x",
"@polkadot/util": "^12.1.1",
"@polkadot/util-crypto": "^12.1.1",
"@polkadot/util": "^12.1.2",
"@polkadot/util-crypto": "^12.1.2",
"qrcode-generator": "^1.4.4",
"react-qr-reader": "^2.2.1",
"styled-components": "^5.3.10",
+2 -2
View File
@@ -22,8 +22,8 @@
"main": "index.js",
"dependencies": {
"@polkadot/ui-shared": "3.2.3-0-x",
"@polkadot/util": "^12.1.1",
"@polkadot/util-crypto": "^12.1.1",
"@polkadot/util": "^12.1.2",
"@polkadot/util-crypto": "^12.1.2",
"react-native-svg": "^12.5.1",
"tslib": "^2.5.0"
},
+3 -3
View File
@@ -20,10 +20,10 @@
"version": "3.2.3-0-x",
"main": "index.js",
"dependencies": {
"@polkadot/keyring": "^12.1.1",
"@polkadot/keyring": "^12.1.2",
"@polkadot/ui-settings": "3.2.3-0-x",
"@polkadot/util": "^12.1.1",
"@polkadot/util-crypto": "^12.1.1",
"@polkadot/util": "^12.1.2",
"@polkadot/util-crypto": "^12.1.2",
"mkdirp": "^2.1.6",
"rxjs": "^7.8.1",
"store": "^2.0.12",
+3 -3
View File
@@ -21,9 +21,9 @@
"version": "3.2.3-0-x",
"main": "index.js",
"dependencies": {
"@polkadot/networks": "^12.1.1",
"@polkadot/util": "^12.1.1",
"eventemitter3": "^5.0.0",
"@polkadot/networks": "^12.1.2",
"@polkadot/util": "^12.1.2",
"eventemitter3": "^5.0.1",
"store": "^2.0.12",
"tslib": "^2.5.0"
},
+2 -2
View File
@@ -25,8 +25,8 @@
"tslib": "^2.5.0"
},
"devDependencies": {
"@polkadot/util": "^12.1.1",
"@polkadot/util-crypto": "^12.1.1",
"@polkadot/util": "^12.1.2",
"@polkadot/util-crypto": "^12.1.2",
"@types/xmlserializer": "^0.6.3",
"xmlserializer": "^0.6.1"
},
+2 -2
View File
@@ -22,8 +22,8 @@
"main": "index.js",
"dependencies": {
"@polkadot/ui-shared": "3.2.3-0-x",
"@polkadot/util": "^12.1.1",
"@polkadot/util-crypto": "^12.1.1",
"@polkadot/util": "^12.1.2",
"@polkadot/util-crypto": "^12.1.2",
"jdenticon": "3.2.0",
"tslib": "^2.5.0"
},
+3 -1
View File
@@ -109,7 +109,9 @@ export const Identicon = defineComponent({
const cmp = type.charAt(0).toUpperCase() + type.slice(1);
if (['Beachball', 'Polkadot'].includes(cmp)) {
const component = cmp === 'Beachball' ? Beachball : Polkadot;
const component = cmp === 'Beachball'
? Beachball
: Polkadot;
return h(component, {
...adaptVNodeAttrs({
+11 -8
View File
@@ -3,12 +3,15 @@
import { version } from 'vue';
export function adaptVNodeAttrs (data: Record<string, any>) {
if (version.startsWith('3.')) {
return data;
} else {
return {
attrs: data
};
}
const isV3 = version.startsWith('3.');
/**
* @internal
*
* Adjust attributes to be usable in both Vue 2 and Vue 3 components.
*/
export function adaptVNodeAttrs (data: Record<string, unknown>): Record<string, unknown> {
return isV3
? data
: { attrs: data };
}
+168 -188
View File
@@ -1417,34 +1417,34 @@ __metadata:
languageName: node
linkType: hard
"@polkadot/dev-test@npm:^0.73.6":
version: 0.73.6
resolution: "@polkadot/dev-test@npm:0.73.6"
"@polkadot/dev-test@npm:^0.73.9":
version: 0.73.9
resolution: "@polkadot/dev-test@npm:0.73.9"
dependencies:
jsdom: ^21.1.1
jsdom: ^22.0.0
tslib: ^2.5.0
checksum: 9a1f2af0fbaf20fc33bb52d9f7268991acf15aa0a7fb62a77e86fd04411e03e092b90ea14efb9f696ee0bb41cc70b088071de7c6f073dd161951e403ede247aa
checksum: acf74e2cf20ae102b312152c06edf736ef4418a478fd677f2827b9619aa3a6a3af34b1d24d4e4b1b114ce4c55d6a68fde29a1446720077533e094b6bdfa7d9aa
languageName: node
linkType: hard
"@polkadot/dev-ts@npm:^0.73.6":
version: 0.73.6
resolution: "@polkadot/dev-ts@npm:0.73.6"
"@polkadot/dev-ts@npm:^0.73.9":
version: 0.73.9
resolution: "@polkadot/dev-ts@npm:0.73.9"
dependencies:
json5: ^2.2.3
tslib: ^2.5.0
typescript: ^5.0.4
checksum: c07b746f6cd215daff16b60fea17bf6ad5b4d3f67c23364279a45b0519f36eccfd034fbe16b3d16613b86a2d94668029febfa16865392a2c1e866bfec1a4ba71
checksum: f42cee2a58fd4f20ccb07e0e4c0a59e324bcc44ae935db5e974464114e8c2851ff61af768568bf86f4c22c16557776bf090412413ae4e6d65971907a4953f21c
languageName: node
linkType: hard
"@polkadot/dev@npm:^0.73.6":
version: 0.73.6
resolution: "@polkadot/dev@npm:0.73.6"
"@polkadot/dev@npm:^0.73.9":
version: 0.73.9
resolution: "@polkadot/dev@npm:0.73.9"
dependencies:
"@eslint/js": ^8.39.0
"@polkadot/dev-test": ^0.73.6
"@polkadot/dev-ts": ^0.73.6
"@polkadot/dev-test": ^0.73.9
"@polkadot/dev-ts": ^0.73.9
"@rollup/plugin-alias": ^5.0.0
"@rollup/plugin-commonjs": ^24.1.0
"@rollup/plugin-dynamic-import-vars": ^2.0.3
@@ -1453,8 +1453,8 @@ __metadata:
"@rollup/plugin-node-resolve": ^15.0.2
"@rushstack/eslint-patch": ^1.2.0
"@tsconfig/strictest": ^2.0.1
"@typescript-eslint/eslint-plugin": ^5.59.1
"@typescript-eslint/parser": ^5.59.1
"@typescript-eslint/eslint-plugin": ^5.59.2
"@typescript-eslint/parser": ^5.59.2
eslint: ^8.39.0
eslint-config-standard: ^17.0.0
eslint-import-resolver-node: ^0.3.7
@@ -1472,7 +1472,7 @@ __metadata:
gh-pages: ^5.0.0
gh-release: ^7.0.2
madge: ^6.0.0
rollup: ^3.21.0
rollup: ^3.21.3
rollup-plugin-cleanup: ^3.2.1
tslib: ^2.5.0
typescript: ^5.0.4
@@ -1506,32 +1506,32 @@ __metadata:
polkadot-exec-rollup: scripts/polkadot-exec-rollup.mjs
polkadot-exec-tsc: scripts/polkadot-exec-tsc.mjs
polkadot-exec-webpack: scripts/polkadot-exec-webpack.mjs
checksum: ee295bc31e7d4a3ea8256ceec2527e8c2e607f5d8d133e2dfde625eaf349e9be6daf901289e40ac716a835285e8e14df5959a85bd5776f09b252a4fa25c9e826
checksum: 37231448bacd4ac8c05a73f1d4ec351e914770d3849f9cc2b3fbf4bde2b6c225d11b3b938afd803484e7c605c05f45638c23846627d0c58ecfe3790235f768fd
languageName: node
linkType: hard
"@polkadot/keyring@npm:^12.1.1":
version: 12.1.1
resolution: "@polkadot/keyring@npm:12.1.1"
"@polkadot/keyring@npm:^12.1.2":
version: 12.1.2
resolution: "@polkadot/keyring@npm:12.1.2"
dependencies:
"@polkadot/util": 12.1.1
"@polkadot/util-crypto": 12.1.1
"@polkadot/util": 12.1.2
"@polkadot/util-crypto": 12.1.2
tslib: ^2.5.0
peerDependencies:
"@polkadot/util": 12.1.1
"@polkadot/util-crypto": 12.1.1
checksum: a09b2d48db3b1362c5039b884afe62d8fb662b9878ed127f148044a690684d47dd7d848cf3fef150486d394e75319ec2191ab8cce1e6d40a0fa0c6c0daacd49b
"@polkadot/util": 12.1.2
"@polkadot/util-crypto": 12.1.2
checksum: 60328a569098f2721330e51c90ebbb70ecd634bcceaa0e07979e4db8ac8d7d6d61092a5e37b5c3e3823b9135afb1cd3a69fd714613d81cb18047ded83395ba3e
languageName: node
linkType: hard
"@polkadot/networks@npm:12.1.1, @polkadot/networks@npm:^12.1.1":
version: 12.1.1
resolution: "@polkadot/networks@npm:12.1.1"
"@polkadot/networks@npm:12.1.2, @polkadot/networks@npm:^12.1.2":
version: 12.1.2
resolution: "@polkadot/networks@npm:12.1.2"
dependencies:
"@polkadot/util": 12.1.1
"@polkadot/util": 12.1.2
"@substrate/ss58-registry": ^1.40.0
tslib: ^2.5.0
checksum: 1e94ccad6ba77fc946b59c24af9a0c36af6289808acb14bf200489fe39782561b62c5e58c3c5790c4b37f13ed4ffd4d3104766931f148d47f8d8ed91d274d292
checksum: f4e6301e0a7434a5ffb6a5a2a79fc15742736c05d36341a19fa6b136c0bb6a00461554d2e43fb76e3fb23d77fa8c65446dd5f80165a24eca3a1983bdf67c625c
languageName: node
linkType: hard
@@ -1539,13 +1539,13 @@ __metadata:
version: 0.0.0-use.local
resolution: "@polkadot/react-identicon@workspace:packages/react-identicon"
dependencies:
"@polkadot/keyring": ^12.1.1
"@polkadot/keyring": ^12.1.2
"@polkadot/ui-settings": 3.2.3-0-x
"@polkadot/ui-shared": 3.2.3-0-x
"@polkadot/util": ^12.1.1
"@polkadot/util-crypto": ^12.1.1
"@polkadot/util": ^12.1.2
"@polkadot/util-crypto": ^12.1.2
"@types/react-copy-to-clipboard": ^5.0.4
"@types/react-dom": ^18.2.1
"@types/react-dom": ^18.2.3
"@types/styled-components": ^5.1.26
ethereum-blockies-base64: ^1.0.2
jdenticon: 3.2.0
@@ -1568,8 +1568,8 @@ __metadata:
resolution: "@polkadot/react-qr@workspace:packages/react-qr"
dependencies:
"@polkadot/ui-settings": 3.2.3-0-x
"@polkadot/util": ^12.1.1
"@polkadot/util-crypto": ^12.1.1
"@polkadot/util": ^12.1.2
"@polkadot/util-crypto": ^12.1.2
"@types/react-qr-reader": ^2.1.4
"@types/styled-components": ^5.1.26
qrcode-generator: ^1.4.4
@@ -1590,8 +1590,8 @@ __metadata:
resolution: "@polkadot/reactnative-identicon@workspace:packages/reactnative-identicon"
dependencies:
"@polkadot/ui-shared": 3.2.3-0-x
"@polkadot/util": ^12.1.1
"@polkadot/util-crypto": ^12.1.1
"@polkadot/util": ^12.1.2
"@polkadot/util-crypto": ^12.1.2
"@types/react-native": ^0.71.6
react-native-svg: ^12.5.1
tslib: ^2.5.0
@@ -1607,10 +1607,10 @@ __metadata:
version: 0.0.0-use.local
resolution: "@polkadot/ui-keyring@workspace:packages/ui-keyring"
dependencies:
"@polkadot/keyring": ^12.1.1
"@polkadot/keyring": ^12.1.2
"@polkadot/ui-settings": 3.2.3-0-x
"@polkadot/util": ^12.1.1
"@polkadot/util-crypto": ^12.1.1
"@polkadot/util": ^12.1.2
"@polkadot/util-crypto": ^12.1.2
"@types/mkdirp": ^2.0.0
"@types/store": ^2.0.2
mkdirp: ^2.1.6
@@ -1628,10 +1628,10 @@ __metadata:
version: 0.0.0-use.local
resolution: "@polkadot/ui-settings@workspace:packages/ui-settings"
dependencies:
"@polkadot/networks": ^12.1.1
"@polkadot/util": ^12.1.1
"@polkadot/networks": ^12.1.2
"@polkadot/util": ^12.1.2
"@types/store": ^2.0.2
eventemitter3: ^5.0.0
eventemitter3: ^5.0.1
store: ^2.0.12
tslib: ^2.5.0
peerDependencies:
@@ -1644,8 +1644,8 @@ __metadata:
version: 0.0.0-use.local
resolution: "@polkadot/ui-shared@workspace:packages/ui-shared"
dependencies:
"@polkadot/util": ^12.1.1
"@polkadot/util-crypto": ^12.1.1
"@polkadot/util": ^12.1.2
"@polkadot/util-crypto": ^12.1.2
"@types/xmlserializer": ^0.6.3
colord: ^2.9.3
tslib: ^2.5.0
@@ -1656,38 +1656,38 @@ __metadata:
languageName: unknown
linkType: soft
"@polkadot/util-crypto@npm:12.1.1, @polkadot/util-crypto@npm:^12.1.1":
version: 12.1.1
resolution: "@polkadot/util-crypto@npm:12.1.1"
"@polkadot/util-crypto@npm:12.1.2, @polkadot/util-crypto@npm:^12.1.2":
version: 12.1.2
resolution: "@polkadot/util-crypto@npm:12.1.2"
dependencies:
"@noble/curves": 1.0.0
"@noble/hashes": 1.3.0
"@polkadot/networks": 12.1.1
"@polkadot/util": 12.1.1
"@polkadot/networks": 12.1.2
"@polkadot/util": 12.1.2
"@polkadot/wasm-crypto": ^7.1.2
"@polkadot/wasm-util": ^7.1.2
"@polkadot/x-bigint": 12.1.1
"@polkadot/x-randomvalues": 12.1.1
"@polkadot/x-bigint": 12.1.2
"@polkadot/x-randomvalues": 12.1.2
"@scure/base": 1.1.1
tslib: ^2.5.0
peerDependencies:
"@polkadot/util": 12.1.1
checksum: b78ee7e867fe2b62a9afa0bea292bfd668d55fef6c65d2edf2cf229962a56a9e6499a822d9200e51fb789efbbf2aa089e695660ce2935938619d5b3df4226d7c
"@polkadot/util": 12.1.2
checksum: 59d1d156beb92ce838fa04e4b2ec2de15e61da1c6f564b9a7a3dff601f9061b47f48dce9463cd92a8fd3701e2bc9243d663aee02677afb53c33109add5457378
languageName: node
linkType: hard
"@polkadot/util@npm:12.1.1, @polkadot/util@npm:^12.1.1":
version: 12.1.1
resolution: "@polkadot/util@npm:12.1.1"
"@polkadot/util@npm:12.1.2, @polkadot/util@npm:^12.1.2":
version: 12.1.2
resolution: "@polkadot/util@npm:12.1.2"
dependencies:
"@polkadot/x-bigint": 12.1.1
"@polkadot/x-global": 12.1.1
"@polkadot/x-textdecoder": 12.1.1
"@polkadot/x-textencoder": 12.1.1
"@polkadot/x-bigint": 12.1.2
"@polkadot/x-global": 12.1.2
"@polkadot/x-textdecoder": 12.1.2
"@polkadot/x-textencoder": 12.1.2
"@types/bn.js": ^5.1.1
bn.js: ^5.2.1
tslib: ^2.5.0
checksum: 84ac0c440fdefca82b597dd6801c186863bd30a5bd82a89a7e0cee81e5d087b0de23cfe614979be1015bb15e0ae3e6e263b5c53252cd93eb0e4f6044d12f7221
checksum: a6c2fa7a916c8dd01705ebe8693c97ece58b9b781c46a70ae44bcbdb275a8b5fc9aaaffd85905a0c2d3a697d72c85bbf1b8a761b38e3af6856028e596e64835c
languageName: node
linkType: hard
@@ -1696,8 +1696,8 @@ __metadata:
resolution: "@polkadot/vue-identicon@workspace:packages/vue-identicon"
dependencies:
"@polkadot/ui-shared": 3.2.3-0-x
"@polkadot/util": ^12.1.1
"@polkadot/util-crypto": ^12.1.1
"@polkadot/util": ^12.1.2
"@polkadot/util-crypto": ^12.1.2
jdenticon: 3.2.0
tslib: ^2.5.0
vue: ^2.7.14
@@ -1788,66 +1788,66 @@ __metadata:
languageName: node
linkType: hard
"@polkadot/x-bigint@npm:12.1.1":
version: 12.1.1
resolution: "@polkadot/x-bigint@npm:12.1.1"
"@polkadot/x-bigint@npm:12.1.2":
version: 12.1.2
resolution: "@polkadot/x-bigint@npm:12.1.2"
dependencies:
"@polkadot/x-global": 12.1.1
"@polkadot/x-global": 12.1.2
tslib: ^2.5.0
checksum: 9a1bca675b9e0a9ff5c85212a1ab781ef29c9106b4b46fafdc707b453755ae19dbe9b7b40a219789ce59e3243e6d15ccbfc38f01cd623847446c7cb7c6548626
checksum: 8a80cc7eda4745f57e0edf3e6338246fee74abe9242d1607a15a70abfce062f960eeda83cbe4e370a70be82953e6898fbe9ed087f97d712a1cf7cba002e01d7f
languageName: node
linkType: hard
"@polkadot/x-bundle@npm:^12.1.1":
version: 12.1.1
resolution: "@polkadot/x-bundle@npm:12.1.1"
"@polkadot/x-bundle@npm:^12.1.2":
version: 12.1.2
resolution: "@polkadot/x-bundle@npm:12.1.2"
dependencies:
"@polkadot/util": 12.1.1
"@polkadot/util": 12.1.2
buffer-es6: ^4.9.3
tslib: ^2.5.0
checksum: d48204f433bbaa51600ef3a6048f76afb1ccc38c4745f9f97c5452fa793e185eb48010e1b30de7276532ef60fbc7466d87d7717188ddbf00eb38a0c75d677a71
checksum: 7c3e648941d7e01256d447a26a336d9ac7c4f4d7aa4a07f98bed37a6c6b1049e8b6070d2a6698af31f833a3812ee26b60341c6712bdefd3be56aa04857221266
languageName: node
linkType: hard
"@polkadot/x-global@npm:12.1.1":
version: 12.1.1
resolution: "@polkadot/x-global@npm:12.1.1"
"@polkadot/x-global@npm:12.1.2":
version: 12.1.2
resolution: "@polkadot/x-global@npm:12.1.2"
dependencies:
tslib: ^2.5.0
checksum: 38ff600ae538cbfa7a9e4730f50e1a63451db9a3e67c0239e36113619b36c88aa0faabf3046cdf0605ead0a06654be5c0bf3384ec6a816bf96df3e27c7839c47
checksum: d680918bfcbb16cd50cb4f1fdd45bb755e28ffa947266306ee4697888a037ea98d91e25e534bc2e2d757aeeb593c666591f4ac0761ab804946edf9b046ba1470
languageName: node
linkType: hard
"@polkadot/x-randomvalues@npm:12.1.1":
version: 12.1.1
resolution: "@polkadot/x-randomvalues@npm:12.1.1"
"@polkadot/x-randomvalues@npm:12.1.2":
version: 12.1.2
resolution: "@polkadot/x-randomvalues@npm:12.1.2"
dependencies:
"@polkadot/x-global": 12.1.1
"@polkadot/x-global": 12.1.2
tslib: ^2.5.0
peerDependencies:
"@polkadot/util": 12.1.1
"@polkadot/util": 12.1.2
"@polkadot/wasm-util": "*"
checksum: 1767880aecf56fc24c54410d0f3ab3c9c22bc3105ca99b9e1a3d7cbd71ca9ab2d855d0150be48e5c6f70372feb3171fb3866f59ca64c54b1c1a11f162ae5ff81
checksum: b19ac9ff5a99d924e9ca569bfe5b1f4c9f60ab5d4ddf68819aa8ea471a00bd1617c6885c38a2abed05265376d28fe0cefcdbe2fa82f9097768d0e13edb281763
languageName: node
linkType: hard
"@polkadot/x-textdecoder@npm:12.1.1":
version: 12.1.1
resolution: "@polkadot/x-textdecoder@npm:12.1.1"
"@polkadot/x-textdecoder@npm:12.1.2":
version: 12.1.2
resolution: "@polkadot/x-textdecoder@npm:12.1.2"
dependencies:
"@polkadot/x-global": 12.1.1
"@polkadot/x-global": 12.1.2
tslib: ^2.5.0
checksum: 5b18abc3344fcc3290237baa03968268a6b651790965e5bdccf1bda950c577f2760e81ceea5857edd545d1c05449df150bf5015b239b788e1915407a6b059ba5
checksum: fa954d984a5e233b6849cd22de36c3dc0eb15c43f1ef7bf6952bac0baced2277becd7d177a3c07cb3e8618ef91d925a73724b4909a67b77097f3e41d5a22c677
languageName: node
linkType: hard
"@polkadot/x-textencoder@npm:12.1.1":
version: 12.1.1
resolution: "@polkadot/x-textencoder@npm:12.1.1"
"@polkadot/x-textencoder@npm:12.1.2":
version: 12.1.2
resolution: "@polkadot/x-textencoder@npm:12.1.2"
dependencies:
"@polkadot/x-global": 12.1.1
"@polkadot/x-global": 12.1.2
tslib: ^2.5.0
checksum: ef3e11f9a4a486048356ddabb9d75b26034eb3199a5dfb6963f99f552c1eb00dbb715f55a932f21039f64e2f5289cce2d15849bbbf285d726c8fd9987ec7c922
checksum: 9b9bf23128a0b5851eb9105ed684589da824d3f5bcc1b1a42a963bbcbefce0c0c452027e4c36265176b47b0ea105b0ad0e6fd206208b9cffb29e83e649db2276
languageName: node
linkType: hard
@@ -2498,12 +2498,12 @@ __metadata:
languageName: node
linkType: hard
"@types/react-dom@npm:^18.2.1":
version: 18.2.1
resolution: "@types/react-dom@npm:18.2.1"
"@types/react-dom@npm:^18.2.3":
version: 18.2.3
resolution: "@types/react-dom@npm:18.2.3"
dependencies:
"@types/react": "*"
checksum: 4e607a9d08f707ae2bd6b377f1da32989dcbe4e38ac39110423a1f6bc95dd53a5484f7f952b34e9d12b5f29a265d52a8c74c1a7d1d1e25be0fa69ccf9d64209f
checksum: 33520610ee36765dbee62bd7d4a448598f0dec6d3ba94a05ff066e239ae536d739cb3bc2cd5269884f57293a3983ce614182844c4489b6e3350015eb5a08dcc7
languageName: node
linkType: hard
@@ -2670,14 +2670,14 @@ __metadata:
languageName: node
linkType: hard
"@typescript-eslint/eslint-plugin@npm:^5.59.1":
version: 5.59.1
resolution: "@typescript-eslint/eslint-plugin@npm:5.59.1"
"@typescript-eslint/eslint-plugin@npm:^5.59.2":
version: 5.59.2
resolution: "@typescript-eslint/eslint-plugin@npm:5.59.2"
dependencies:
"@eslint-community/regexpp": ^4.4.0
"@typescript-eslint/scope-manager": 5.59.1
"@typescript-eslint/type-utils": 5.59.1
"@typescript-eslint/utils": 5.59.1
"@typescript-eslint/scope-manager": 5.59.2
"@typescript-eslint/type-utils": 5.59.2
"@typescript-eslint/utils": 5.59.2
debug: ^4.3.4
grapheme-splitter: ^1.0.4
ignore: ^5.2.0
@@ -2690,43 +2690,43 @@ __metadata:
peerDependenciesMeta:
typescript:
optional: true
checksum: 9ada3ae721594ddd8101a6093e6383bc95e4dcb19b3929210dee5480637786473a9eba2e69e61e560fa592965f4fd02aeb98ddfda91b00b448ae01c5d77431d6
checksum: 1045883173a36a069b56e906ed7e5b4106e1efc2ed0969a1718683aef58fd39e5dfa17774b8782c3ced0529a4edd6dedfcb54348a14525f191a6816e6f3b90dc
languageName: node
linkType: hard
"@typescript-eslint/parser@npm:^5.59.1":
version: 5.59.1
resolution: "@typescript-eslint/parser@npm:5.59.1"
"@typescript-eslint/parser@npm:^5.59.2":
version: 5.59.2
resolution: "@typescript-eslint/parser@npm:5.59.2"
dependencies:
"@typescript-eslint/scope-manager": 5.59.1
"@typescript-eslint/types": 5.59.1
"@typescript-eslint/typescript-estree": 5.59.1
"@typescript-eslint/scope-manager": 5.59.2
"@typescript-eslint/types": 5.59.2
"@typescript-eslint/typescript-estree": 5.59.2
debug: ^4.3.4
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
peerDependenciesMeta:
typescript:
optional: true
checksum: d324d32a69e06ab12aacb72cd3e2a8eb8ade6c2a4d4e6bb013941588a675e818a8ebd973bef1cd818da6a76eb00908bf66d84ef214c3f015dfcb40f8067a335e
checksum: 0d3f992c49e062ff509606fb72846abaa66602d93ca15bc6498c345c55effa28c8d523b829cd180d901eaf04bca3d93a165d56a387ce109333d60d67b09b5638
languageName: node
linkType: hard
"@typescript-eslint/scope-manager@npm:5.59.1":
version: 5.59.1
resolution: "@typescript-eslint/scope-manager@npm:5.59.1"
"@typescript-eslint/scope-manager@npm:5.59.2":
version: 5.59.2
resolution: "@typescript-eslint/scope-manager@npm:5.59.2"
dependencies:
"@typescript-eslint/types": 5.59.1
"@typescript-eslint/visitor-keys": 5.59.1
checksum: ae7758181d0f18d1ad20abf95164553fa98c20410968d538ac7abd430ec59f69e30d4da16ad968d029feced1ed49abc65daf6685c996eb4529d798e8320204ff
"@typescript-eslint/types": 5.59.2
"@typescript-eslint/visitor-keys": 5.59.2
checksum: e7adce27890ebaadd0fb36a35639c9a97d2965973643aef4b4b0dcfabb03181c82235d7171e718b002dd398e52fefd67816eb34912ddbc2bb738b47755bd502a
languageName: node
linkType: hard
"@typescript-eslint/type-utils@npm:5.59.1":
version: 5.59.1
resolution: "@typescript-eslint/type-utils@npm:5.59.1"
"@typescript-eslint/type-utils@npm:5.59.2":
version: 5.59.2
resolution: "@typescript-eslint/type-utils@npm:5.59.2"
dependencies:
"@typescript-eslint/typescript-estree": 5.59.1
"@typescript-eslint/utils": 5.59.1
"@typescript-eslint/typescript-estree": 5.59.2
"@typescript-eslint/utils": 5.59.2
debug: ^4.3.4
tsutils: ^3.21.0
peerDependencies:
@@ -2734,7 +2734,7 @@ __metadata:
peerDependenciesMeta:
typescript:
optional: true
checksum: ff46cc049995bb6505a6170550a9e658c42cd5699a95e1976822318fef2963381223505f797051fc727938ace66d4a7dc072a4b4cadbbdf91d2fda1a16c05c98
checksum: d9dc037509a97b11a3c7f758f0f6e985cf5b4909fab860018a75b1550711ce9ff07bf5b67d4197ba7a0a831fec7255851b1e6a773a69030fc8ea7ec649859f52
languageName: node
linkType: hard
@@ -2745,19 +2745,19 @@ __metadata:
languageName: node
linkType: hard
"@typescript-eslint/types@npm:5.59.1":
version: 5.59.1
resolution: "@typescript-eslint/types@npm:5.59.1"
checksum: 40ea7ccf59c4951797d3761e53c866a5979e07fbdabef9dc07d3a3f625a99d4318d5329ae8e628cdfdc0bb9bb6e6d8dfb740f33c7bf318e63fa0a863b9ae85c7
"@typescript-eslint/types@npm:5.59.2":
version: 5.59.2
resolution: "@typescript-eslint/types@npm:5.59.2"
checksum: 5a91cfbcaa8c7e92ad91f67abd0ce43ae562fdbdd8c32aa968731bf7c200d13a0415e87fc032bd48f7e5b7d3ed1447cb14449ef2592c269ca311974b15ce0af2
languageName: node
linkType: hard
"@typescript-eslint/typescript-estree@npm:5.59.1, @typescript-eslint/typescript-estree@npm:^5.13.0":
version: 5.59.1
resolution: "@typescript-eslint/typescript-estree@npm:5.59.1"
"@typescript-eslint/typescript-estree@npm:5.59.2, @typescript-eslint/typescript-estree@npm:^5.13.0":
version: 5.59.2
resolution: "@typescript-eslint/typescript-estree@npm:5.59.2"
dependencies:
"@typescript-eslint/types": 5.59.1
"@typescript-eslint/visitor-keys": 5.59.1
"@typescript-eslint/types": 5.59.2
"@typescript-eslint/visitor-keys": 5.59.2
debug: ^4.3.4
globby: ^11.1.0
is-glob: ^4.0.3
@@ -2766,7 +2766,7 @@ __metadata:
peerDependenciesMeta:
typescript:
optional: true
checksum: e33081937225f38e717ac2f9e90c4a8c6b71b701923eea3e03be76d8c466f0d3c6a4ec1d65c9fc1da4f1989416d386305353c5b53aa736d3af9503061001e3eb
checksum: e8bb8817fe53f826f54e4ca584e48a6700dae25e0cc20ab7db38e7e5308987c5759408b39a4e494d4d6dcd7b4bca9f9c507fae987213380dc1c98607cb0a60b1
languageName: node
linkType: hard
@@ -2788,21 +2788,21 @@ __metadata:
languageName: node
linkType: hard
"@typescript-eslint/utils@npm:5.59.1, @typescript-eslint/utils@npm:^5.10.0, @typescript-eslint/utils@npm:^5.57.0":
version: 5.59.1
resolution: "@typescript-eslint/utils@npm:5.59.1"
"@typescript-eslint/utils@npm:5.59.2, @typescript-eslint/utils@npm:^5.10.0, @typescript-eslint/utils@npm:^5.57.0":
version: 5.59.2
resolution: "@typescript-eslint/utils@npm:5.59.2"
dependencies:
"@eslint-community/eslint-utils": ^4.2.0
"@types/json-schema": ^7.0.9
"@types/semver": ^7.3.12
"@typescript-eslint/scope-manager": 5.59.1
"@typescript-eslint/types": 5.59.1
"@typescript-eslint/typescript-estree": 5.59.1
"@typescript-eslint/scope-manager": 5.59.2
"@typescript-eslint/types": 5.59.2
"@typescript-eslint/typescript-estree": 5.59.2
eslint-scope: ^5.1.1
semver: ^7.3.7
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
checksum: ca32c90efa57e937ebf812221e070c0604ca99f900fbca60578b42d40c923d5a94fd9503cf5918ecd75b687b68a1be562f7c6593a329bc40b880c95036a021c0
checksum: 483c35a592a36a5973204ce4cd11d52935c097b414d7edac2ecd15dba460b8c540b793ffc232c0f8580fef0624eb7704156ce33c66bd09a76769ed019bddd1d1
languageName: node
linkType: hard
@@ -2816,13 +2816,13 @@ __metadata:
languageName: node
linkType: hard
"@typescript-eslint/visitor-keys@npm:5.59.1":
version: 5.59.1
resolution: "@typescript-eslint/visitor-keys@npm:5.59.1"
"@typescript-eslint/visitor-keys@npm:5.59.2":
version: 5.59.2
resolution: "@typescript-eslint/visitor-keys@npm:5.59.2"
dependencies:
"@typescript-eslint/types": 5.59.1
"@typescript-eslint/types": 5.59.2
eslint-visitor-keys: ^3.3.0
checksum: f98e399147310cad67de718a8a6336f053d46753bade380c89ddac3dd49512555c3f613636b255ce0b5e2b004654d1c167eb5e53fc8085148b637a5afc20cdd8
checksum: 3057a017bca03b4ec3bee442044f2bc2f77a4af0d83ea9bf7c6cb2a12811126d93d9d300d89ef8078d981e478c6cc38693c51a2ae4b10a717796bba880eff924
languageName: node
linkType: hard
@@ -3075,16 +3075,6 @@ __metadata:
languageName: node
linkType: hard
"acorn-globals@npm:^7.0.0":
version: 7.0.1
resolution: "acorn-globals@npm:7.0.1"
dependencies:
acorn: ^8.1.0
acorn-walk: ^8.0.2
checksum: 2a2998a547af6d0db5f0cdb90acaa7c3cbca6709010e02121fb8b8617c0fbd8bab0b869579903fde358ac78454356a14fadcc1a672ecb97b04b1c2ccba955ce8
languageName: node
linkType: hard
"acorn-import-assertions@npm:^1.7.6":
version: 1.8.0
resolution: "acorn-import-assertions@npm:1.8.0"
@@ -3103,14 +3093,7 @@ __metadata:
languageName: node
linkType: hard
"acorn-walk@npm:^8.0.2":
version: 8.2.0
resolution: "acorn-walk@npm:8.2.0"
checksum: 1715e76c01dd7b2d4ca472f9c58968516a4899378a63ad5b6c2d668bba8da21a71976c14ec5f5b75f887b6317c4ae0b897ab141c831d741dc76024d8745f1ad1
languageName: node
linkType: hard
"acorn@npm:^8.1.0, acorn@npm:^8.5.0, acorn@npm:^8.7.1, acorn@npm:^8.8.0, acorn@npm:^8.8.2":
"acorn@npm:^8.5.0, acorn@npm:^8.7.1, acorn@npm:^8.8.0":
version: 8.8.2
resolution: "acorn@npm:8.8.2"
bin:
@@ -5894,10 +5877,10 @@ __metadata:
languageName: node
linkType: hard
"eventemitter3@npm:^5.0.0":
version: 5.0.0
resolution: "eventemitter3@npm:5.0.0"
checksum: b974bafbab860e0a5bbb21add4c4e82f9d5691c583c03f2e4c5d44a2d6c4556d79223621bdcfc6c8e14366a4af9df6b5ea9d6caf65fbffc80b66f3e1dceacbc9
"eventemitter3@npm:^5.0.1":
version: 5.0.1
resolution: "eventemitter3@npm:5.0.1"
checksum: 543d6c858ab699303c3c32e0f0f47fc64d360bf73c3daf0ac0b5079710e340d6fe9f15487f94e66c629f5f82cd1a8678d692f3dbb6f6fcd1190e1b97fcad36f8
languageName: node
linkType: hard
@@ -8099,24 +8082,21 @@ __metadata:
languageName: node
linkType: hard
"jsdom@npm:^21.1.1":
version: 21.1.1
resolution: "jsdom@npm:21.1.1"
"jsdom@npm:^22.0.0":
version: 22.0.0
resolution: "jsdom@npm:22.0.0"
dependencies:
abab: ^2.0.6
acorn: ^8.8.2
acorn-globals: ^7.0.0
cssstyle: ^3.0.0
data-urls: ^4.0.0
decimal.js: ^10.4.3
domexception: ^4.0.0
escodegen: ^2.0.0
form-data: ^4.0.0
html-encoding-sniffer: ^3.0.0
http-proxy-agent: ^5.0.0
https-proxy-agent: ^5.0.1
is-potential-custom-element-name: ^1.0.1
nwsapi: ^2.2.2
nwsapi: ^2.2.4
parse5: ^7.1.2
rrweb-cssom: ^0.6.0
saxes: ^6.0.0
@@ -8134,7 +8114,7 @@ __metadata:
peerDependenciesMeta:
canvas:
optional: true
checksum: ea33c3f3f084b48685e3838baa1112f0cbffc2949b0249f90ee19152b66dbafc6ae7dd8573ee66933697f881e3bc04c0efc2b56cd26f64fd3e6321a64164e2d1
checksum: 5d554ccb1637035d1c3baa832ce6f6c66549b6fa43cc7c39295250092e74a10c2e6c674cb40a208ae850d80436dd109862f95d293528345ab5d6cc5213847f8e
languageName: node
linkType: hard
@@ -9503,10 +9483,10 @@ __metadata:
languageName: node
linkType: hard
"nwsapi@npm:^2.2.2":
version: 2.2.2
resolution: "nwsapi@npm:2.2.2"
checksum: 43769106292bc95f776756ca2f3513dab7b4d506a97c67baec32406447841a35f65f29c1f95ab5d42785210fd41668beed33ca16fa058780be43b101ad73e205
"nwsapi@npm:^2.2.4":
version: 2.2.4
resolution: "nwsapi@npm:2.2.4"
checksum: a5eb9467158bdf255d27e9c4555e9ca02e4ba84ddce9b683856ed49de23eb1bb28ae3b8e791b7a93d156ad62b324a56f4d44cad827c2ca288c107ed6bdaff8a8
languageName: node
linkType: hard
@@ -11038,9 +11018,9 @@ __metadata:
languageName: node
linkType: hard
"rollup@npm:^3.21.0":
version: 3.21.0
resolution: "rollup@npm:3.21.0"
"rollup@npm:^3.21.3":
version: 3.21.5
resolution: "rollup@npm:3.21.5"
dependencies:
fsevents: ~2.3.2
dependenciesMeta:
@@ -11048,7 +11028,7 @@ __metadata:
optional: true
bin:
rollup: dist/bin/rollup
checksum: f3294d712147c0975c59ff81b3010dc08d07743cdad72fbe12879044b3e467139b3c2aeec85768656c4f7ec6a7b3d19354a78fc2050044bf8e90a499e145e31e
checksum: dfe2e4002fbfbc0a67591595f137c23082c639b1a790854ebe8611264b945e77caaf8c8ec9365faf9580f5df9cb9a954915443df020dc2ee391c477659484cf0
languageName: node
linkType: hard
@@ -11056,8 +11036,8 @@ __metadata:
version: 0.0.0-use.local
resolution: "root-workspace-0b6124@workspace:."
dependencies:
"@polkadot/dev": ^0.73.6
"@polkadot/x-bundle": ^12.1.1
"@polkadot/dev": ^0.73.9
"@polkadot/x-bundle": ^12.1.2
"@types/node": ^18.16.3
react: ^18.2.0
react-dom: ^18.2.0