From c0587d8b12c556686e4af55ec22292448175d6c8 Mon Sep 17 00:00:00 2001 From: Jon Heywood <94459819+jjheywood@users.noreply.github.com> Date: Wed, 17 Apr 2024 17:32:42 +0700 Subject: [PATCH 1/4] fix(spaceward): Shortened chain prety_name to below 30 characters (#189) --- spaceward/src/config/chains.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spaceward/src/config/chains.ts b/spaceward/src/config/chains.ts index ffb34d63f..dde7f94f7 100644 --- a/spaceward/src/config/chains.ts +++ b/spaceward/src/config/chains.ts @@ -237,7 +237,7 @@ export const wardenprotocolbuenavista: Chain = { chain_name: "buenavista", status: "live", network_type: "testnet", - pretty_name: "Warden Protocol Buenavista Testnet", + pretty_name: "Warden Protocol Buenavista", chain_id: "buenavista-1", bech32_prefix: "warden", daemon_name: "wardend", From 7ea66ae69f7ce2c60132c01e159f27f5bdf3825b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joonas=20Lehtim=C3=A4ki?= Date: Wed, 17 Apr 2024 14:46:29 +0300 Subject: [PATCH 2/4] fix(faucet): install certificates to faucet container (#190) --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index 4074b5a25..3f7c74df5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -39,6 +39,9 @@ FROM debian:bookworm-slim AS faucet COPY --from=wardend-build /build/wardend /usr/bin/wardend COPY --from=wardend-build /build/faucet /usr/bin/faucet ADD --checksum=sha256:b0c3b761e5f00e45bdafebcfe9c03bd703b88b3f535c944ca8e27ef9b891cd10 https://github.com/CosmWasm/wasmvm/releases/download/v1.5.2/libwasmvm.x86_64.so /lib/libwasmvm.x86_64.so +RUN apt-get update && apt-get install -y \ + ca-certificates \ + && rm -rf /var/lib/apt/lists/* EXPOSE 8000 CMD ["/usr/bin/faucet"] From 338a8105486cfc3fa027d3caf32f17a21b230db6 Mon Sep 17 00:00:00 2001 From: Antonio Pitasi Date: Wed, 17 Apr 2024 15:26:28 +0200 Subject: [PATCH 3/4] build: fix goreleaser after CosmWasm (#191) * build: fix goreleaser to build linux arm64/amd64 and darwin arm64 binaries * build: add Makefile target to prepare a full release --- .gitignore | 1 + .goreleaser-amd64.yaml | 58 +++++++++++++++++++++++++++++++++++++++ .goreleaser.yaml | 62 ++++++++++++++++++++++++++++++++++++------ Makefile | 28 +++++++++++++++++++ 4 files changed, 140 insertions(+), 9 deletions(-) create mode 100644 .goreleaser-amd64.yaml diff --git a/.gitignore b/.gitignore index 016eed98c..d5cd502cc 100644 --- a/.gitignore +++ b/.gitignore @@ -24,6 +24,7 @@ lerna-debug.log* node_modules dist dist-ssr +dist-linux-amd64 # Editor directories and files .tmp diff --git a/.goreleaser-amd64.yaml b/.goreleaser-amd64.yaml new file mode 100644 index 000000000..f3d9e1be4 --- /dev/null +++ b/.goreleaser-amd64.yaml @@ -0,0 +1,58 @@ +# yaml-language-server: $schema=https://goreleaser.com/static/schema.json +# vim: set ts=2 sw=2 tw=0 fo=cnqoj + +version: 1 + +project_name: wardend + +dist: dist-linux-amd64 + +before: + hooks: + # setup musl + - apk add gcc musl-dev + + # setup libwasmvm + - wget https://github.com/CosmWasm/wasmvm/releases/download/v1.5.2/libwasmvm_muslc.x86_64.a -O /lib/libwasmvm_muslc.a + + # You may remove this if you don't use go modules. + - go mod tidy + # you may remove this if you don't need go generate + - go generate ./... + +env: + - CGO_ENABLED=1 + +builds: + - id: wardend-linux-amd64 + main: ./cmd/wardend + goos: + - linux + goarch: + - amd64 + flags: + - -mod=readonly + - -trimpath + ldflags: + - -s -w + - -X github.com/cosmos/cosmos-sdk/version.Name=warden + - -X github.com/cosmos/cosmos-sdk/version.AppName=wardend + - -X github.com/cosmos/cosmos-sdk/version.Version={{.Version}} + - -X github.com/cosmos/cosmos-sdk/version.Commit={{.Commit}} + - -linkmode=external + - -extldflags '-static' + tags: + - netgo + - muslc + +archives: + - format: zip + # this name template makes the OS and Arch compatible with the results of `uname`. + name_template: >- + {{ .ProjectName }}_ + {{- title .Os }}_ + {{- if eq .Arch "amd64" }}x86_64 + {{- else if eq .Arch "386" }}i386 + {{- else }}{{ .Arch }}{{ end }} + {{- if .Arm }}v{{ .Arm }}{{ end }} + diff --git a/.goreleaser.yaml b/.goreleaser.yaml index b7e1bdcf5..26d62b0cf 100644 --- a/.goreleaser.yaml +++ b/.goreleaser.yaml @@ -11,21 +11,69 @@ before: - go mod tidy # you may remove this if you don't need go generate - go generate ./... + # setup musl + - apt update && apt install musl-dev=1.2.2-1 +env: + - CGO_ENABLED=1 builds: - - env: - - CGO_ENABLED=0 + - id: wardend-linux-arm64 + main: ./cmd/wardend goos: - linux - - windows - - darwin + goarch: + - arm64 + env: + - CC=aarch64-linux-gnu-gcc + - CXX=aarch64-linux-gnu-g++ + hooks: + pre: + - wget https://github.com/CosmWasm/wasmvm/releases/download/v1.5.2/libwasmvm_muslc.aarch64.a -O /lib/libwasmvm_muslc.a + flags: + - -mod=readonly + - -trimpath + ldflags: + - -s -w + - -X github.com/cosmos/cosmos-sdk/version.Name=warden + - -X github.com/cosmos/cosmos-sdk/version.AppName=wardend + - -X github.com/cosmos/cosmos-sdk/version.Version={{.Version}} + - -X github.com/cosmos/cosmos-sdk/version.Commit={{.Commit}} + - -linkmode=external + - -extldflags '-static' + tags: + - netgo + - muslc + + - id: wardend-darwin-arm64 main: ./cmd/wardend + env: + - CC=oa64-clang + - CGO_LDFLAGS=-L/lib + hooks: + pre: + - wget https://github.com/CosmWasm/wasmvm/releases/download/v1.5.2/libwasmvmstatic_darwin.a -O /lib/libwasmvmstatic_darwin.a + goos: + - darwin + goarch: + - arm64 + flags: + - -mod=readonly + - -trimpath ldflags: - -s -w - -X github.com/cosmos/cosmos-sdk/version.Name=warden - -X github.com/cosmos/cosmos-sdk/version.AppName=wardend - -X github.com/cosmos/cosmos-sdk/version.Version={{.Version}} - -X github.com/cosmos/cosmos-sdk/version.Commit={{.Commit}} + - -X github.com/cosmos/cosmos-sdk/version.BuildTags=netgo,ledger,static_wasm + - -linkmode=external + tags: + - netgo + - ledger + - static_wasm + +release: + mode: append archives: - format: zip @@ -39,8 +87,4 @@ archives: {{- if .Arm }}v{{ .Arm }}{{ end }} changelog: - sort: asc - filters: - exclude: - - "^docs:" - - "^test:" + disable: true diff --git a/Makefile b/Makefile index 70e5782d0..3a869e596 100644 --- a/Makefile +++ b/Makefile @@ -1,3 +1,4 @@ +PWD=$(shell pwd) VERSION=$(shell git describe --tags --always) COMMIT=$(shell git rev-parse HEAD) DIRTY=$(shell git diff --quiet || echo "-dirty") @@ -5,6 +6,7 @@ FULL_VERSION=$(VERSION)$(DIRTY) CHAIN_ID=wardenprotocol OUTPUT_DIR=./build LDFLAGS=-ldflags "-s -w -X github.com/cosmos/cosmos-sdk/version.Name=warden -X github.com/cosmos/cosmos-sdk/version.AppName=wardend -X github.com/cosmos/cosmos-sdk/version.Version=$(FULL_VERSION) -X github.com/cosmos/cosmos-sdk/version.Commit=$(COMMIT) -X github.com/warden-protocol/wardenprotocol/cmd/wardenprotocold/cmd.ChainID=$(CHAIN_ID)" +TAG=$(shell git tag --points-at HEAD) build-all: build-wardend build-faucet build-wardenkms @@ -24,4 +26,30 @@ build-faucet: build-wardenkms: go build $(LDFLAGS) -o $(OUTPUT_DIR)/wardenkms ./cmd/wardenkms +release-wardend-cross-arm64: + @docker run \ + --rm \ + -e CGO_ENABLED=1 \ + -v /var/run/docker.sock:/var/run/docker.sock \ + -v $(PWD):/go/src/wardend \ + -w /go/src/wardend \ + ghcr.io/goreleaser/goreleaser-cross:v1.22 \ + --clean --skip=validate --skip=publish + +release-wardend-linux-amd64: + @docker run \ + --platform linux/amd64 \ + --rm \ + -e CGO_ENABLED=1 \ + -v /var/run/docker.sock:/var/run/docker.sock \ + -v $(PWD):/go/src/wardend \ + -w /go/src/wardend \ + ghcr.io/goreleaser/goreleaser:v1.25.1 \ + --clean --skip=publish -f ./.goreleaser-amd64.yaml + +release-wardend: release-wardend-linux-amd64 release-wardend-cross-arm64 + cat dist-linux-amd64/wardend_*_checksums.txt dist/wardend_*_checksums.txt > dist/checksums.txt + @if [ -z "$(TAG)" ] || [ -n "$(DIRTY)" ]; then echo "No tag found for the current commit. Won't proceed with GitHub release."; exit 1; fi + gh release create $(TAG) --title $(TAG) --verify-tag dist-linux-amd64/wardend_Linux_x86_64.zip dist/wardend_*.zip dist/checksums.txt + .PHONY: build-all build install build-wardend install-wardend build-faucet build-wardenkms From 7b4907d44bae62ab2f15b92b1395944ddbf79a9b Mon Sep 17 00:00:00 2001 From: Antonio Pitasi Date: Wed, 17 Apr 2024 17:30:34 +0200 Subject: [PATCH 4/4] fix(spaceward): wrong react-query linked dependency (#192) * fix(spaceward): don't try to execute queries if client not yet ready * chore(spaceward): bump react-query to v4.36.1 * fix(spaceward): missing key in lists and buttons descendant of other buttons * fix(wardjs): move react-query to peer deps * fix(spaceward): use file: instead of link: in package.json --- spaceward/package.json | 6 +- spaceward/pnpm-lock.yaml | 5589 +++++++------- spaceward/src/components/AddressAvatar.tsx | 2 +- spaceward/src/components/SendEth.tsx | 5 +- spaceward/src/components/ui/copy.tsx | 5 +- spaceward/src/features/actions/Actions.tsx | 3 +- spaceward/src/features/assets/Assets.tsx | 8 +- spaceward/src/features/home/HomeAssets.tsx | 9 +- .../src/features/home/TotalAssetValue.tsx | 4 +- .../src/features/intents/NewIntentButton.tsx | 18 +- spaceward/src/features/keys/Keys.tsx | 5 +- spaceward/src/features/keys/NewKeyButton.tsx | 2 +- .../src/features/spaces/SpaceSelector.tsx | 1 + spaceward/src/hooks/useClient.ts | 26 +- spaceward/src/layouts/mobile-nav.tsx | 4 +- wardjs/package.json | 5 +- wardjs/pnpm-lock.yaml | 6649 ++++++++--------- 17 files changed, 5815 insertions(+), 6526 deletions(-) diff --git a/spaceward/package.json b/spaceward/package.json index ce2eccfe3..a4ddcec47 100644 --- a/spaceward/package.json +++ b/spaceward/package.json @@ -57,8 +57,8 @@ "@radix-ui/react-tooltip": "^1.0.7", "@rollup/plugin-inject": "^5.0.5", "@storyblok/react": "^3.0.9", - "@tanstack/query-core": "^5.14.2", - "@tanstack/react-query": "^4.13.5", + "@tanstack/query-core": "^4.36.1", + "@tanstack/react-query": "^4.36.1", "@tharsis/proto": "^0.1.20", "@uidotdev/usehooks": "^2.4.1", "@walletconnect/auth-client": "^2.1.2", @@ -66,7 +66,7 @@ "@walletconnect/types": "^2.11.0", "@walletconnect/utils": "^2.11.0", "@walletconnect/web3wallet": "^1.10.0", - "@wardenprotocol/wardjs": "link:../wardjs", + "@wardenprotocol/wardjs": "file:../wardjs", "buffer": "^6.0.3", "chain-registry": "^1.29.1", "class-variance-authority": "^0.7.0", diff --git a/spaceward/pnpm-lock.yaml b/spaceward/pnpm-lock.yaml index e1b62affd..7ec8aebe5 100644 --- a/spaceward/pnpm-lock.yaml +++ b/spaceward/pnpm-lock.yaml @@ -14,13 +14,13 @@ importers: dependencies: '@bufbuild/protobuf': specifier: ^1.6.0 - version: 1.7.2 + version: 1.8.0 '@chain-registry/types': specifier: ^0.18.1 - version: 0.18.1 + version: 0.18.19 '@cosmjs/encoding': specifier: ^0.32.2 - version: 0.32.2 + version: 0.32.3 '@cosmjs/launchpad': specifier: ^0.27.1 version: 0.27.1 @@ -29,25 +29,25 @@ importers: version: 0.31.3 '@cosmjs/proto-signing': specifier: ^0.32.2 - version: 0.32.2 + version: 0.32.3 '@cosmjs/stargate': specifier: ^0.32.2 - version: 0.32.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) + version: 0.32.3(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@cosmos-kit/keplr': specifier: ^2.6.9 - version: 2.6.9(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.2)(@walletconnect/types@2.11.1)(bufferutil@4.0.8)(utf-8-validate@5.0.10) + version: 2.6.9(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.3)(@walletconnect/types@2.12.2)(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@cosmos-kit/react': specifier: ^2.10.11 - version: 2.10.11(@interchain-ui/react@1.22.14(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(bufferutil@4.0.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(utf-8-validate@5.0.10) + version: 2.10.11(@interchain-ui/react@1.22.14(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(bufferutil@4.0.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(utf-8-validate@5.0.10) '@cosmos-kit/react-lite': specifier: ^2.6.9 version: 2.6.9(bufferutil@4.0.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(utf-8-validate@5.0.10) '@dicebear/collection': specifier: ^7.0.4 - version: 7.0.4(@dicebear/core@7.0.4(sharp@0.32.6)) + version: 7.1.2(@dicebear/core@7.1.2(sharp@0.32.6)) '@dicebear/core': specifier: ^7.0.4 - version: 7.0.4(sharp@0.32.6) + version: 7.1.2(sharp@0.32.6) '@esbuild-plugins/node-globals-polyfill': specifier: ^0.2.3 version: 0.2.3(esbuild@0.20.2) @@ -56,10 +56,10 @@ importers: version: 0.2.2(esbuild@0.20.2) '@ethereumjs/common': specifier: ^4.1.0 - version: 4.2.0 + version: 4.3.0 '@ethereumjs/tx': specifier: ^5.1.0 - version: 5.2.1 + version: 5.3.0 '@ethersproject/bytes': specifier: ^5.7.0 version: 5.7.0 @@ -68,25 +68,25 @@ importers: version: 5.7.0 '@grafana/faro-react': specifier: ^1.4.1 - version: 1.4.1(react-dom@18.2.0(react@18.2.0))(react-router-dom@6.22.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0) + version: 1.6.0(react-dom@18.2.0(react@18.2.0))(react-router-dom@6.22.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0) '@grafana/faro-web-sdk': specifier: ^1.4.1 - version: 1.4.1 + version: 1.6.0 '@grafana/faro-web-tracing': specifier: ^1.4.1 - version: 1.4.1 + version: 1.6.0 '@headlessui/react': specifier: ^1.7.17 - version: 1.7.18(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 1.7.19(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@heroicons/react': specifier: ^2.1.1 - version: 2.1.1(react@18.2.0) + version: 2.1.3(react@18.2.0) '@hookform/resolvers': specifier: ^3.3.4 - version: 3.3.4(react-hook-form@7.50.1(react@18.2.0)) + version: 3.3.4(react-hook-form@7.51.3(react@18.2.0)) '@interchain-ui/react': specifier: 1.22.14 - version: 1.22.14(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 1.22.14(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@metamask/eth-sig-util': specifier: ^7.0.1 version: 7.0.1 @@ -98,61 +98,61 @@ importers: version: 15.0.0 '@radix-ui/react-accordion': specifier: ^1.1.2 - version: 1.1.2(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 1.1.2(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@radix-ui/react-alert-dialog': specifier: ^1.0.5 - version: 1.0.5(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 1.0.5(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@radix-ui/react-avatar': specifier: ^1.0.4 - version: 1.0.4(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 1.0.4(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@radix-ui/react-dialog': specifier: ^1.0.5 - version: 1.0.5(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 1.0.5(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@radix-ui/react-hover-card': specifier: ^1.0.7 - version: 1.0.7(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 1.0.7(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@radix-ui/react-label': specifier: ^2.0.2 - version: 2.0.2(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 2.0.2(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@radix-ui/react-navigation-menu': specifier: ^1.1.4 - version: 1.1.4(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 1.1.4(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@radix-ui/react-popover': specifier: ^1.0.7 - version: 1.0.7(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 1.0.7(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@radix-ui/react-progress': specifier: ^1.0.3 - version: 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@radix-ui/react-select': specifier: ^2.0.0 - version: 2.0.0(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 2.0.0(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@radix-ui/react-separator': specifier: ^1.0.3 - version: 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@radix-ui/react-slot': specifier: ^1.0.2 - version: 1.0.2(@types/react@18.2.55)(react@18.2.0) + version: 1.0.2(@types/react@18.2.79)(react@18.2.0) '@radix-ui/react-tabs': specifier: ^1.0.4 - version: 1.0.4(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 1.0.4(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@radix-ui/react-toast': specifier: ^1.1.5 - version: 1.1.5(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 1.1.5(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@radix-ui/react-tooltip': specifier: ^1.0.7 - version: 1.0.7(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 1.0.7(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@rollup/plugin-inject': specifier: ^5.0.5 version: 5.0.5(rollup@4.14.3) '@storyblok/react': specifier: ^3.0.9 - version: 3.0.9(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 3.0.10(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@tanstack/query-core': - specifier: ^5.14.2 - version: 5.18.1 + specifier: ^4.36.1 + version: 4.36.1 '@tanstack/react-query': - specifier: ^4.13.5 - version: 4.13.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + specifier: ^4.36.1 + version: 4.36.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@tharsis/proto': specifier: ^0.1.20 version: 0.1.20 @@ -164,25 +164,25 @@ importers: version: 2.1.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@walletconnect/core': specifier: ^2.11.0 - version: 2.11.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + version: 2.12.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@walletconnect/types': specifier: ^2.11.0 - version: 2.11.1 + version: 2.12.2 '@walletconnect/utils': specifier: ^2.11.0 - version: 2.11.1 + version: 2.12.2 '@walletconnect/web3wallet': specifier: ^1.10.0 - version: 1.10.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + version: 1.11.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@wardenprotocol/wardjs': - specifier: link:../wardjs - version: link:../wardjs + specifier: file:../wardjs + version: file:../wardjs(@tanstack/react-query@4.36.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(bufferutil@4.0.8)(utf-8-validate@5.0.10) buffer: specifier: ^6.0.3 version: 6.0.3 chain-registry: specifier: ^1.29.1 - version: 1.29.1 + version: 1.41.3 class-variance-authority: specifier: ^0.7.0 version: 0.7.0 @@ -194,19 +194,19 @@ importers: version: 0.9.0 cosmos-kit: specifier: ^2.9.3 - version: 2.9.3(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.2)(@terra-money/terra.js@3.1.10)(@walletconnect/types@2.11.1)(axios@1.6.7)(bufferutil@4.0.8)(cosmjs-types@0.9.0)(react@18.2.0)(utf-8-validate@5.0.10) + version: 2.9.4(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.3)(@terra-money/terra.js@3.1.10)(@walletconnect/types@2.12.2)(axios@1.6.8)(bufferutil@4.0.8)(cosmjs-types@0.9.0)(react@18.2.0)(utf-8-validate@5.0.10) dayjs: specifier: ^1.11.10 version: 1.11.10 emoji-hash-gen: specifier: ^1.0.3 - version: 1.0.3 + version: 1.0.7 esbuild-plugin-polyfill-node: specifier: ^0.3.0 version: 0.3.0(esbuild@0.20.2) ethers: specifier: ^6.9.2 - version: 6.11.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) + version: 6.12.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) html5-qrcode: specifier: ^2.3.8 version: 2.3.8 @@ -227,10 +227,10 @@ importers: version: 6.3.4 next: specifier: ^14.1.0 - version: 14.1.0(@babel/core@7.24.3)(@opentelemetry/api@1.8.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 14.2.1(@babel/core@7.24.4)(@opentelemetry/api@1.8.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) next-themes: specifier: ^0.2.1 - version: 0.2.1(next@14.1.0(@babel/core@7.24.3)(@opentelemetry/api@1.8.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 0.2.1(next@14.2.1(@babel/core@7.24.4)(@opentelemetry/api@1.8.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0) osmojs: specifier: ^16.10.0 version: 16.10.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) @@ -239,7 +239,7 @@ importers: version: 0.3.8 preline: specifier: ^2.0.3 - version: 2.0.3 + version: 2.1.0 random-words: specifier: ^2.0.1 version: 2.0.1 @@ -254,16 +254,16 @@ importers: version: 18.2.0(react@18.2.0) react-hook-form: specifier: ^7.50.1 - version: 7.50.1(react@18.2.0) + version: 7.51.3(react@18.2.0) react-qr-code: specifier: ^2.0.12 version: 2.0.12(react@18.2.0) react-router: specifier: ^6.21.1 - version: 6.22.0(react@18.2.0) + version: 6.22.3(react@18.2.0) react-router-dom: specifier: ^6.21.1 - version: 6.22.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 6.22.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0) react-tabs: specifier: ^6.0.2 version: 6.0.2(react@18.2.0) @@ -278,22 +278,22 @@ importers: version: 1.14.0 tailwindcss-animate: specifier: ^1.0.7 - version: 1.0.7(tailwindcss@3.4.1) + version: 1.0.7(tailwindcss@3.4.3) use-debounce: specifier: ^9.0.4 version: 9.0.4(react@18.2.0) vaul: specifier: ^0.9.0 - version: 0.9.0(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 0.9.0(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) vite-plugin-node-polyfills: specifier: ^0.17.0 - version: 0.17.0(rollup@4.14.3)(vite@5.2.8(@types/node@20.11.17)(terser@5.30.2)) + version: 0.17.0(rollup@4.14.3)(vite@5.2.9(@types/node@20.12.7)(terser@5.30.3)) warden-protocol-wardenprotocol-client-ts: specifier: file:../ts-client - version: file:../ts-client(@cosmjs/proto-signing@0.32.2)(@cosmjs/stargate@0.32.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)) + version: file:../ts-client(@cosmjs/proto-signing@0.32.3)(@cosmjs/stargate@0.32.3(bufferutil@4.0.8)(utf-8-validate@5.0.10)) web3: specifier: ^4.3.0 - version: 4.4.0(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.22.4) + version: 4.7.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) web3-eth-accounts: specifier: ^4.1.0 version: 4.1.1 @@ -302,56 +302,56 @@ importers: version: 3.22.4 zustand: specifier: ^4.5.1 - version: 4.5.1(@types/react@18.2.55)(immer@10.0.4)(react@18.2.0) + version: 4.5.2(@types/react@18.2.79)(immer@10.0.4)(react@18.2.0) devDependencies: '@bufbuild/buf': specifier: ^1.28.1 - version: 1.29.0 + version: 1.30.1 '@bufbuild/protoc-gen-es': specifier: ^1.6.0 - version: 1.7.2(@bufbuild/protobuf@1.7.2) + version: 1.8.0(@bufbuild/protobuf@1.8.0) '@chromatic-com/storybook': specifier: ^1.2.26 - version: 1.2.26(react@18.2.0) + version: 1.3.3(react@18.2.0) '@keplr-wallet/types': specifier: ^0.12.54 - version: 0.12.67 + version: 0.12.80 '@storybook/addon-essentials': specifier: ^8.0.5 - version: 8.0.5(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 8.0.8(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@storybook/addon-interactions': specifier: ^8.0.5 - version: 8.0.5(vitest@1.5.0(@types/node@20.11.17)(jsdom@24.0.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(terser@5.30.2)) + version: 8.0.8(vitest@1.5.0(@types/node@20.12.7)(jsdom@24.0.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(terser@5.30.3)) '@storybook/addon-links': specifier: ^8.0.5 - version: 8.0.5(react@18.2.0) + version: 8.0.8(react@18.2.0) '@storybook/addon-onboarding': specifier: ^8.0.5 - version: 8.0.5 + version: 8.0.8 '@storybook/blocks': specifier: ^8.0.5 - version: 8.0.5(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 8.0.8(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@storybook/builder-vite': specifier: ^8.0.5 - version: 8.0.5(typescript@5.3.3)(vite@5.2.8(@types/node@20.11.17)(terser@5.30.2)) + version: 8.0.8(typescript@5.4.5)(vite@5.2.9(@types/node@20.12.7)(terser@5.30.3)) '@storybook/nextjs': specifier: ^8.0.5 - version: 8.0.5(esbuild@0.20.2)(next@14.1.0(@babel/core@7.24.3)(@opentelemetry/api@1.8.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(type-fest@2.19.0)(typescript@5.3.3)(webpack-hot-middleware@2.26.1)(webpack@5.91.0(esbuild@0.20.2)) + version: 8.0.8(esbuild@0.20.2)(next@14.2.1(@babel/core@7.24.4)(@opentelemetry/api@1.8.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(type-fest@2.19.0)(typescript@5.4.5)(webpack-hot-middleware@2.26.1)(webpack@5.91.0(esbuild@0.20.2)) '@storybook/react': specifier: ^8.0.5 - version: 8.0.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.3.3) + version: 8.0.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.5) '@storybook/react-vite': specifier: ^8.0.5 - version: 8.0.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(rollup@4.14.3)(typescript@5.3.3)(vite@5.2.8(@types/node@20.11.17)(terser@5.30.2)) + version: 8.0.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(rollup@4.14.3)(typescript@5.4.5)(vite@5.2.9(@types/node@20.12.7)(terser@5.30.3)) '@storybook/test': specifier: ^8.0.5 - version: 8.0.5(vitest@1.5.0(@types/node@20.11.17)(jsdom@24.0.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(terser@5.30.2)) + version: 8.0.8(vitest@1.5.0(@types/node@20.12.7)(jsdom@24.0.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(terser@5.30.3)) '@testing-library/jest-dom': specifier: ^6.4.2 - version: 6.4.2(vitest@1.5.0(@types/node@20.11.17)(jsdom@24.0.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(terser@5.30.2)) + version: 6.4.2(vitest@1.5.0(@types/node@20.12.7)(jsdom@24.0.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(terser@5.30.3)) '@testing-library/react': specifier: ^14.2.2 - version: 14.2.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 14.3.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@testing-library/user-event': specifier: ^14.5.2 version: 14.5.2(@testing-library/dom@9.3.4) @@ -366,64 +366,64 @@ importers: version: 7.0.15 '@types/react': specifier: ^18.2.45 - version: 18.2.55 + version: 18.2.79 '@types/react-copy-to-clipboard': specifier: ^5.0.7 version: 5.0.7 '@types/react-dom': specifier: ^18.2.18 - version: 18.2.19 + version: 18.2.25 '@typescript-eslint/eslint-plugin': specifier: ^5.62.0 - version: 5.62.0(@typescript-eslint/parser@5.62.0(eslint@8.56.0)(typescript@5.3.3))(eslint@8.56.0)(typescript@5.3.3) + version: 5.62.0(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0)(typescript@5.4.5) '@typescript-eslint/parser': specifier: ^5.62.0 - version: 5.62.0(eslint@8.56.0)(typescript@5.3.3) + version: 5.62.0(eslint@8.57.0)(typescript@5.4.5) '@vitejs/plugin-react-swc': specifier: ^3.5.0 - version: 3.6.0(@swc/helpers@0.5.2)(vite@5.2.8(@types/node@20.11.17)(terser@5.30.2)) + version: 3.6.0(@swc/helpers@0.5.10)(vite@5.2.9(@types/node@20.12.7)(terser@5.30.3)) autoprefixer: specifier: ^10.4.16 - version: 10.4.17(postcss@8.4.35) + version: 10.4.19(postcss@8.4.38) eslint: specifier: ^8.56.0 - version: 8.56.0 + version: 8.57.0 eslint-plugin-react-hooks: specifier: ^4.6.0 - version: 4.6.0(eslint@8.56.0) + version: 4.6.0(eslint@8.57.0) eslint-plugin-react-refresh: specifier: ^0.3.5 - version: 0.3.5(eslint@8.56.0) + version: 0.3.5(eslint@8.57.0) eslint-plugin-storybook: specifier: ^0.8.0 - version: 0.8.0(eslint@8.56.0)(typescript@5.3.3) + version: 0.8.0(eslint@8.57.0)(typescript@5.4.5) jsdom: specifier: ^24.0.0 version: 24.0.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) postcss: specifier: ^8.4.32 - version: 8.4.35 + version: 8.4.38 prettier: specifier: ^3.1.1 version: 3.2.5 storybook: specifier: ^8.0.5 - version: 8.0.5(@babel/preset-env@7.24.3(@babel/core@7.24.3))(bufferutil@4.0.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(utf-8-validate@5.0.10) + version: 8.0.8(@babel/preset-env@7.24.4(@babel/core@7.24.4))(bufferutil@4.0.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(utf-8-validate@5.0.10) tailwindcss: specifier: ^3.4.0 - version: 3.4.1 + version: 3.4.3 ts-proto: specifier: ^1.165.2 - version: 1.167.3 + version: 1.172.0 typescript: specifier: ^5.3.3 - version: 5.3.3 + version: 5.4.5 vite: specifier: ^5.2.8 - version: 5.2.8(@types/node@20.11.17)(terser@5.30.2) + version: 5.2.9(@types/node@20.12.7)(terser@5.30.3) vitest: specifier: ^1.5.0 - version: 1.5.0(@types/node@20.11.17)(jsdom@24.0.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(terser@5.30.2) + version: 1.5.0(@types/node@20.12.7)(jsdom@24.0.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(terser@5.30.3) dependenciesMeta: '@wardenprotocol/wardjs': injected: true @@ -456,16 +456,16 @@ packages: resolution: {integrity: sha512-y5+tLQyV8pg3fsiln67BVLD1P13Eg4lh5RW9mF0zUuvLrv9uIQ4MCL+CRT+FTsBlBjcIan6PGsLcBN0m3ClUyQ==} engines: {node: '>=6.9.0'} - '@babel/compat-data@7.24.1': - resolution: {integrity: sha512-Pc65opHDliVpRHuKfzI+gSA4zcgr65O4cl64fFJIWEEh8JoHIHh0Oez1Eo8Arz8zq/JhgKodQaxEwUPRtZylVA==} + '@babel/compat-data@7.24.4': + resolution: {integrity: sha512-vg8Gih2MLK+kOkHJp4gBEIkyaIi00jgWot2D9QOmmfLC8jINSOzmCLta6Bvz/JSBCqnegV0L80jhxkol5GWNfQ==} engines: {node: '>=6.9.0'} - '@babel/core@7.24.3': - resolution: {integrity: sha512-5FcvN1JHw2sHJChotgx8Ek0lyuh4kCKelgMTTqhYJJtloNvUfpAFMeNQUtdlIaktwrSV9LtCdqwk48wL2wBacQ==} + '@babel/core@7.24.4': + resolution: {integrity: sha512-MBVlMXP+kkl5394RBLSxxk/iLTeVGuXTV3cIDXavPpMMqnSnt6apKgan/U8O3USWZCWZT/TbgfEpKa4uMgN4Dg==} engines: {node: '>=6.9.0'} - '@babel/generator@7.24.1': - resolution: {integrity: sha512-DfCRfZsBcrPEHUfuBMgbJ1Ut01Y/itOs+hY2nFLgqsqXd52/iSiVq5TITtUasIUgm+IIKdY2/1I7auiQOEeC9A==} + '@babel/generator@7.24.4': + resolution: {integrity: sha512-Xd6+v6SnjWVx/nus+y0l1sxMOTOMBkyL4+BIdbALyatQnAe/SRVjANeDPSCYaX+i1iJmuGSKf3Z+E+V/va1Hvw==} engines: {node: '>=6.9.0'} '@babel/helper-annotate-as-pure@7.22.5': @@ -480,8 +480,8 @@ packages: resolution: {integrity: sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==} engines: {node: '>=6.9.0'} - '@babel/helper-create-class-features-plugin@7.24.1': - resolution: {integrity: sha512-1yJa9dX9g//V6fDebXoEfEsxkZHk3Hcbm+zLhyu6qVgYFLvmTALTeV+jNU9e5RnYtioBrGEOdoI2joMSNQ/+aA==} + '@babel/helper-create-class-features-plugin@7.24.4': + resolution: {integrity: sha512-lG75yeuUSVu0pIcbhiYMXBXANHrpUPaOfu7ryAzskCgKUHuAxRQI5ssrtmF0X9UXldPlvT0XM/A4F44OXRt6iQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 @@ -571,19 +571,25 @@ packages: resolution: {integrity: sha512-pms/UwkOpnQe/PDAEdV/d7dVCoBbB+R4FvYoHGZz+4VPcg7RtYy2KP7S2lbuWM6FCSgob5wshfGESbC/hzNXZw==} engines: {node: '>=6.9.0'} - '@babel/helpers@7.24.1': - resolution: {integrity: sha512-BpU09QqEe6ZCHuIHFphEFgvNSrubve1FtyMton26ekZ85gRGi6LrTF7zArARp2YvyFxloeiRmtSCq5sjh1WqIg==} + '@babel/helpers@7.24.4': + resolution: {integrity: sha512-FewdlZbSiwaVGlgT1DPANDuCHaDMiOo+D/IDYRFYjHOuv66xMSJ7fQwwODwRNAPkADIO/z1EoF/l2BCWlWABDw==} engines: {node: '>=6.9.0'} '@babel/highlight@7.24.2': resolution: {integrity: sha512-Yac1ao4flkTxTteCDZLEvdxg2fZfz1v8M4QpaGypq/WPDqg3ijHYbDfs+LG5hvzSoqaSZ9/Z9lKSP3CjZjv+pA==} engines: {node: '>=6.9.0'} - '@babel/parser@7.24.1': - resolution: {integrity: sha512-Zo9c7N3xdOIQrNip7Lc9wvRPzlRtovHVE4lkz8WEDr7uYh/GMQhSiIgFxGIArRHYdJE5kxtZjAf8rT0xhdLCzg==} + '@babel/parser@7.24.4': + resolution: {integrity: sha512-zTvEBcghmeBma9QIGunWevvBAp4/Qu9Bdq+2k0Ot4fVMD6v3dsC9WOcRSKk7tRRyBM/53yKMJko9xOatGQAwSg==} engines: {node: '>=6.0.0'} hasBin: true + '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.24.4': + resolution: {integrity: sha512-qpl6vOOEEzTLLcsuqYYo8yDtrTocmu2xkGvgNebvPjT9DTtfFYGmgDqY+rBYXNlqL4s9qLDn6xkrJv4RxAPiTA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.24.1': resolution: {integrity: sha512-y4HqEnkelJIOQGd+3g1bTeKsA5c6qM7eOn7VggGVbBc0y8MLSKHacwcIE2PplNlQSj0PqS9rrXL/nkPVK+kUNg==} engines: {node: '>=6.9.0'} @@ -751,8 +757,8 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-block-scoping@7.24.1': - resolution: {integrity: sha512-h71T2QQvDgM2SmT29UYU6ozjMlAt7s7CSs5Hvy8f8cf/GM/Z4a2zMfN+fjVGaieeCrXR3EdQl6C4gQG+OgmbKw==} + '@babel/plugin-transform-block-scoping@7.24.4': + resolution: {integrity: sha512-nIFUZIpGKDf9O9ttyRXpHFpKC+X3Y5mtshZONuEUYBomAKoM4y029Jr+uB1bHGPhNmK8YXHevDtKDOLmtRrp6g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -763,8 +769,8 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-class-static-block@7.24.1': - resolution: {integrity: sha512-FUHlKCn6J3ERiu8Dv+4eoz7w8+kFLSyeVG4vDAikwADGjUCoHw/JHokyGtr8OR4UjpwPVivyF+h8Q5iv/JmrtA==} + '@babel/plugin-transform-class-static-block@7.24.4': + resolution: {integrity: sha512-B8q7Pz870Hz/q9UgP8InNpY01CSLDSCyqX7zcRuv3FcPl87A2G17lASroHWaCtbdIcbYzOZ7kWmXFKbijMSmFg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.12.0 @@ -1027,8 +1033,8 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-typescript@7.24.1': - resolution: {integrity: sha512-liYSESjX2fZ7JyBFkYG78nfvHlMKE6IpNdTVnxmlYUR+j5ZLsitFbaAE+eJSK2zPPkNWNw4mXL51rQ8WrvdK0w==} + '@babel/plugin-transform-typescript@7.24.4': + resolution: {integrity: sha512-79t3CQ8+oBGk/80SQ8MN3Bs3obf83zJ0YZjDmDaEZN8MqhMI760apl5z6a20kFeMXBwJX99VpKT8CKxEBp5H1g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -1057,8 +1063,8 @@ packages: peerDependencies: '@babel/core': ^7.0.0 - '@babel/preset-env@7.24.3': - resolution: {integrity: sha512-fSk430k5c2ff8536JcPvPWK4tZDwehWLGlBp0wrsBUjZVdeQV6lePbwKWZaZfK2vnh/1kQX1PzAJWsnBmVgGJA==} + '@babel/preset-env@7.24.4': + resolution: {integrity: sha512-7Kl6cSmYkak0FK/FXjSEnLJ1N9T/WA2RkMhu17gZ/dsxKJUuTYNIylahPTzqpLyJN4WhDif8X0XK1R8Wsguo/A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -1095,8 +1101,8 @@ packages: '@babel/regjsgen@0.8.0': resolution: {integrity: sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==} - '@babel/runtime@7.23.9': - resolution: {integrity: sha512-0CX6F+BI2s9dkUqr08KFrAIZgNFj75rdBU/DjCyYLIaV/quFjkk6T+EJ2LkZHyZTbEV4L5p97mNkUsHl2wLFAw==} + '@babel/runtime@7.24.4': + resolution: {integrity: sha512-dkxf7+hn8mFBwKjs9bvBlArzLVxVbS8usaPUDd5p2a9JCL9tB8OaOVN1isD4+Xyk4ns89/xeOmbQvgdK7IIVdA==} engines: {node: '>=6.9.0'} '@babel/template@7.24.0': @@ -1114,71 +1120,71 @@ packages: '@base2/pretty-print-object@1.0.1': resolution: {integrity: sha512-4iri8i1AqYHJE2DstZYkyEprg6Pq6sKx3xn5FpySk9sNhH7qN2LLlHJCfDTZRILNwQNPD7mATWM0TBui7uC1pA==} - '@bufbuild/buf-darwin-arm64@1.29.0': - resolution: {integrity: sha512-5hKxsARoY2WpWq1n5ONFqqGuauHb4yILKXCy37KRYCKiRLWmIP5yI3gWvWHKoH7sUJWTQmBqdJoCvYQr6ahQnw==} + '@bufbuild/buf-darwin-arm64@1.30.1': + resolution: {integrity: sha512-FRgf+x4V4s9Z1wH2xHdP8+1AYtil1GCmMjzKf/4AQ+eaUpoLfipSIsVYiBrnpcRxEPe9UMVzwNjKtPak/szwPw==} engines: {node: '>=12'} cpu: [arm64] os: [darwin] - '@bufbuild/buf-darwin-x64@1.29.0': - resolution: {integrity: sha512-wOAPxbPLBns4AHiComWtdO1sx1J1p6mDYTbqmloHuI+B5U2rDbMsoHoe4nBcoMF8+RHxoqjypha29wVo6yzbZg==} + '@bufbuild/buf-darwin-x64@1.30.1': + resolution: {integrity: sha512-kE0ne45zE7lSdv9WxPVhapwu627WMbWmWCzqSxzYr8sWDLqiAuw+XvO9/mHGdPWcMhV4lMX6tutitd9PPVxK8A==} engines: {node: '>=12'} cpu: [x64] os: [darwin] - '@bufbuild/buf-linux-aarch64@1.29.0': - resolution: {integrity: sha512-jLk2J/wyyM7KNJ/DkLfhy3eS2/Bdb70e/56adMkapSoLJmghnpgxW+oFznMxxQUX5I9BU5hTn1UhDFxgLwhP7g==} + '@bufbuild/buf-linux-aarch64@1.30.1': + resolution: {integrity: sha512-kVV9Sl0GwZiQkMOXJiuwuU+gIHe6AWcYBMRMmuW55sY0ePZNXBmRGt4k5W4ijy98O6pnY3ao+n9ne0KwiD9MVA==} engines: {node: '>=12'} cpu: [arm64] os: [linux] - '@bufbuild/buf-linux-x64@1.29.0': - resolution: {integrity: sha512-heLOywj3Oaoh69RnTx7tHsuz6rEnvz77bghLEOghsrjBR6Jcpcwc137EZR4kRTIWJNrE8Kmo3RVeXlv144qQIQ==} + '@bufbuild/buf-linux-x64@1.30.1': + resolution: {integrity: sha512-RacDbQJYNwqRlMESa/rLHprfUVa8Wu1/cmcqS29Fyt/cGzs0G8sNcQzQ87HYFIS9cSlSPl6vWL0x8JqQRp68lQ==} engines: {node: '>=12'} cpu: [x64] os: [linux] - '@bufbuild/buf-win32-arm64@1.29.0': - resolution: {integrity: sha512-Eglyvr3PLqVucuHBcQ61conyBgH9BRaoLpKWcce1gYBVlxMQM1NxjVjGOWihxQ1dXXw5qZXmYfVODf3gSwPMuQ==} + '@bufbuild/buf-win32-arm64@1.30.1': + resolution: {integrity: sha512-ndp/qb5M6yrSzcnMI0j4jjAuDKa7zHBFc187FwyDb3v63rvyQeYqncHb0leT5ZWqfNggJT4vXIH6QnH82PfDQw==} engines: {node: '>=12'} cpu: [arm64] os: [win32] - '@bufbuild/buf-win32-x64@1.29.0': - resolution: {integrity: sha512-wRk6co+nqHqEq4iLolXgej0jUVlWlTtGHjKaq54lTbKZrwxrBgql6qS06abgNPRASX0++XT9m3QRZ97qEIC/HQ==} + '@bufbuild/buf-win32-x64@1.30.1': + resolution: {integrity: sha512-1kmIY6oKLKZ4zIQVNG60GRDp+vKSZdaim7wRejOtgEDuWXhIuErlnGbpstypU8FO+OV3SeFUJNOJ8tLOYd3PvQ==} engines: {node: '>=12'} cpu: [x64] os: [win32] - '@bufbuild/buf@1.29.0': - resolution: {integrity: sha512-euksXeFtvlvAV5j94LqXb69qQcJvFfo8vN1d3cx+IzhOKoipykuQQTq7mOWVo2R0kdk6yIMBLBofOYOsh0Df8g==} + '@bufbuild/buf@1.30.1': + resolution: {integrity: sha512-9VVvrXBCWUiH8ToccqDfPRuTiPXSbHmSkL8XPlMpUhpJIlm01m4/Vzbc5FJL1yuk3e1rdBGCF6I9Obs9NsILzg==} engines: {node: '>=12'} hasBin: true - '@bufbuild/protobuf@1.7.2': - resolution: {integrity: sha512-i5GE2Dk5ekdlK1TR7SugY4LWRrKSfb5T1Qn4unpIMbfxoeGKERKQ59HG3iYewacGD10SR7UzevfPnh6my4tNmQ==} + '@bufbuild/protobuf@1.8.0': + resolution: {integrity: sha512-qR9FwI8QKIveDnUYutvfzbC21UZJJryYrLuZGjeZ/VGz+vXelUkK+xgkOHsvPEdYEdxtgUUq4313N8QtOehJ1Q==} - '@bufbuild/protoc-gen-es@1.7.2': - resolution: {integrity: sha512-yiRk/T+YGmpSVvIkybCjPt+QyM/pLWMO+MAiz6auvCsiAgfXfc5nFFosD4yBYXID55M6eIkgBcity1AoJ6I30A==} + '@bufbuild/protoc-gen-es@1.8.0': + resolution: {integrity: sha512-jnvBKwHq3o/iOgfKxaxn5Za7ay4oAs8KWgoHiDc9Fsb0g+/d1z+mHlHvmevOiCPcVZsnH6V3LImOJvGStPONpA==} engines: {node: '>=14'} hasBin: true peerDependencies: - '@bufbuild/protobuf': 1.7.2 + '@bufbuild/protobuf': 1.8.0 peerDependenciesMeta: '@bufbuild/protobuf': optional: true - '@bufbuild/protoplugin@1.7.2': - resolution: {integrity: sha512-N3QtO8XWD4F4alMtASWtxBw6BWXp4aLz7rPBXH4KTULdjpUHnq46g15TsrG0/8szZw6pIklTO3lFe14dl6ZYdA==} + '@bufbuild/protoplugin@1.8.0': + resolution: {integrity: sha512-Pb89cTshW+I577qh27VvxGYvZEvQ3zJ8La1OfzPCKugP9d4A4P65WStkAY+aSCiDHk68m1/+mtBb6elfiLPuFg==} - '@chain-registry/client@1.19.2': - resolution: {integrity: sha512-h2bENsXMQSxyaFVprlK5wQb0UY3eZKu/J6RhmG5E4hKV5k9jPQ3/+266vhbckYasi3fIPW221lFdo+tdNHB/Fg==} + '@chain-registry/client@1.28.2': + resolution: {integrity: sha512-7b9aJP7/mEqgg2Lb2dors8S+3zTvB5gRcgTZViNBInyenin392lYuXuxFhe4G9YH9cm/TaFzRU8shnWkXo549Q==} '@chain-registry/cosmostation@1.26.0': resolution: {integrity: sha512-MmjThpQ0U0EJF66UJzPy67iKC9hY7ljrpGtQOPfeYGB/lUlKZTsE/mgF2XkKGUf7wJK8LugOqU5Zul7C1/ZA4Q==} - '@chain-registry/cosmostation@1.32.1': - resolution: {integrity: sha512-U8YUkXKWQWmBbAJILXYqEFMnYES4fs+t8iriy6LucSyhICUs1nniMlulm04PYuiIy+bX0BpP5nlNp/CK/yzQkw==} + '@chain-registry/cosmostation@1.44.3': + resolution: {integrity: sha512-Pk9kiclKtzWdGqG82goGaGy4P7o8SzC/aRAQzBPVWVnpRQTHuRAwhmmlKc2d0fb+jXwE90y++CgfOqzfYcxHTA==} '@chain-registry/keplr@1.28.0': resolution: {integrity: sha512-MRAEgUpafyGLRDQc4SPB+R/If4CL2SREqdbxZMKHX9aeqzKXhJlEM5IPjJTZCWTbUP/eGXC9JNjxPNUYd92PqQ==} @@ -1189,14 +1195,17 @@ packages: '@chain-registry/types@0.17.1': resolution: {integrity: sha512-O0CgrtJgIlqXvZm1CqDZe/7jZz068O/uuCIoyDXCegFHK03rdHacKcDGwEIUuI0MNUf8YV3jdE4xHQMSAX+79w==} - '@chain-registry/types@0.18.1': - resolution: {integrity: sha512-H/UnOyd7WdcWHa2FGKxy4MclDDFrbE2rFwaUh9oubNJOey7UBI4dNF10oZIWM/1by15LUgDz45fVbh6uA6W5Tg==} + '@chain-registry/types@0.18.19': + resolution: {integrity: sha512-ZspwFYcPp9O5VWbf0g4BL4l+umMg4yMRWySlNKsGfpmB/N67s9po2bP7Ltu/pIYv71t6aycoS2eG+GXWRY00Fw==} + + '@chain-registry/types@0.25.2': + resolution: {integrity: sha512-CESZQLJNeyV45HDbAcFpSbvF17WENXNFbKrPxkhH2HlGOXELhByxmkzZyj1TFK2TuIwKg7Kkv0s4t/aNhL2q5w==} - '@chain-registry/utils@1.18.2': - resolution: {integrity: sha512-X1vBFxdMVRGFW/6fLUQgJ4aG/2RaDYDDEeDA5/x/MlssGtdSBEyytd7M9zO0uS51QYy1ysIhkG3OyZLoyGdurg==} + '@chain-registry/utils@1.26.2': + resolution: {integrity: sha512-dxGoVPsCOEXrB+trSpLQHgVjd4etqQzkgkLSkY3KizTuL9K8Sql/cz7IChVzfTrl3dIydin+6pbKEjKjMa7sgA==} - '@chromatic-com/storybook@1.2.26': - resolution: {integrity: sha512-uLZ0gURTkDTr545g35rq0jXbpg3MTjUB763Z5tWyGuQj3JO0j+t3vkwNUvD6Nas0YGl4MWgrkqqekM/2jpQ70w==} + '@chromatic-com/storybook@1.3.3': + resolution: {integrity: sha512-1y9r691T5vVGDZ0HY3YrCXUnvtrT2YrhDuvDZSvYSNUVpM/Imz6i1dnNMKb3eoI1qRsH55mI4zCt+Iq94NLedQ==} engines: {node: '>=16.0.0', yarn: '>=1.22.18'} '@classic-terra/terra.proto@1.1.0': @@ -1230,9 +1239,6 @@ packages: '@cosmjs/crypto@0.31.3': resolution: {integrity: sha512-vRbvM9ZKR2017TO73dtJ50KxoGcFzKtKI7C8iO302BQ5p+DuB+AirUg1952UpSoLfv5ki9O416MFANNg8UN/EQ==} - '@cosmjs/crypto@0.32.2': - resolution: {integrity: sha512-RuxrYKzhrPF9g6NmU7VEq++Hn1vZJjqqJpZ9Tmw9lOYOV8BUsv+j/0BE86kmWi7xVJ7EwxiuxYsKuM8IR18CIA==} - '@cosmjs/crypto@0.32.3': resolution: {integrity: sha512-niQOWJHUtlJm2GG4F00yGT7sGPKxfUwz+2qQ30uO/E3p58gOusTcH2qjiJNVxb8vScYJhFYFqpm/OA/mVqoUGQ==} @@ -1242,9 +1248,6 @@ packages: '@cosmjs/encoding@0.31.3': resolution: {integrity: sha512-6IRtG0fiVYwyP7n+8e54uTx2pLYijO48V3t9TLiROERm5aUAIzIlz6Wp0NYaI5he9nh1lcEGJ1lkquVKFw3sUg==} - '@cosmjs/encoding@0.32.2': - resolution: {integrity: sha512-WX7m1wLpA9V/zH0zRcz4EmgZdAv1F44g4dbXOgNj1eXZw1PIGR12p58OEkLN51Ha3S4DKRtCv5CkhK1KHEvQtg==} - '@cosmjs/encoding@0.32.3': resolution: {integrity: sha512-p4KF7hhv8jBQX3MkB3Defuhz/W0l3PwWVYU2vkVuBJ13bJcXyhU9nJjiMkaIv+XP+W2QgRceqNNgFUC5chNR7w==} @@ -1260,9 +1263,6 @@ packages: '@cosmjs/math@0.31.3': resolution: {integrity: sha512-kZ2C6glA5HDb9hLz1WrftAjqdTBb3fWQsRR+Us2HsjAYdeE6M3VdXMsYCP5M3yiihal1WDwAY2U7HmfJw7Uh4A==} - '@cosmjs/math@0.32.2': - resolution: {integrity: sha512-b8+ruAAY8aKtVKWSft2IvtCVCUH1LigIlf9ALIiY8n9jtM4kMASiaRbQ/27etnSAInV88IaezKK9rQZrtxTjcw==} - '@cosmjs/math@0.32.3': resolution: {integrity: sha512-amumUtZs8hCCnV+lSBaJIiZkGabQm22QGg/IotYrhcmoOEOjt82n7hMNlNXRs7V6WLMidGrGYcswB5zcmp0Meg==} @@ -1284,9 +1284,6 @@ packages: '@cosmjs/stargate@0.32.3': resolution: {integrity: sha512-OQWzO9YWKerUinPIxrO1MARbe84XkeXJAW0lyMIjXIEikajuXZ+PwftiKA5yA+8OyditVmHVLtPud6Pjna2s5w==} - '@cosmjs/stream@0.32.2': - resolution: {integrity: sha512-gpCufLfHAD8Zp1ZKge7AHbDf4RA0TZp66wZY6JaQR5bSiEF2Drjtp4mwXZPGejtaUMnaAgff3LrUzPJfKYdQwg==} - '@cosmjs/stream@0.32.3': resolution: {integrity: sha512-J2zVWDojkynYifAUcRmVczzmp6STEpyiAARq0rSsviqjreGIfspfuws/8rmkPa6qQBZvpQOBQCm2HyZZwYplIw==} @@ -1302,9 +1299,6 @@ packages: '@cosmjs/utils@0.31.3': resolution: {integrity: sha512-VBhAgzrrYdIe0O5IbKRqwszbQa7ZyQLx9nEQuHQ3HUplQW7P44COG/ye2n6AzCudtqxmwdX7nyX8ta1J07GoqA==} - '@cosmjs/utils@0.32.2': - resolution: {integrity: sha512-Gg5t+eR7vPJMAmhkFt6CZrzPd0EKpAslWwk5rFVYZpJsM8JG5KT9XQ99hgNM3Ov6ScNoIWbXkpX27F6A9cXR4Q==} - '@cosmjs/utils@0.32.3': resolution: {integrity: sha512-WCZK4yksj2hBDz4w7xFZQTRZQ/RJhBX26uFHmmQFIcNUUVAihrLO+RerqJgk0dZqC42wstM9pEUQGtPmLcIYvg==} @@ -1457,20 +1451,20 @@ packages: '@cosmos-kit/shell@2.6.9': resolution: {integrity: sha512-YgjYw4m53IsLw9Gusq8IlewcVuR8aF/3+UU9+H1EXVpBiEEDwzEW2+k6Q8XqtSJUAy87BCwjn5cgAxQp73spLw==} - '@cosmos-kit/station-extension@2.6.9': - resolution: {integrity: sha512-OHtOYHGW5/i+l4VpV8zu1Vfduy+aJpH9b8yUjuumcYS1u95zDvBSFNc1ejHcBeOey+fEVObbid6e5WX5B5pmQQ==} + '@cosmos-kit/station-extension@2.6.10': + resolution: {integrity: sha512-hyUQZRfgorIhvh+23APhcdakEZeQMbg5Akkn+feejUpArJxHLYAasIGOaoMNqd/+0YHCz94vxuND5+F/6FDd7w==} peerDependencies: '@cosmjs/amino': '>=0.32.2' '@cosmjs/proto-signing': '>=0.32.2' - '@cosmos-kit/station@2.5.9': - resolution: {integrity: sha512-EIDt586MmT72sCERPOobpUxDQWMoitGIISY9X0fA0NeKTvf4l963ROewx/KHSs/oKRKI5OeM4DShJIF1B7+ZNQ==} + '@cosmos-kit/station@2.5.10': + resolution: {integrity: sha512-qRbrNKuENmeeMeo6JEp+THU+H8nXIe89ygTY7HlvSlPVkYGvZnQ323stZMG+ZdIqounPX1BXlv598STopilKRg==} - '@cosmos-kit/tailwind-extension@1.0.1': - resolution: {integrity: sha512-72YVvmEvhjQeJMAcgaiG7OZj7NDRPM6whZRA4TnbULpWJ2EjCELFuzQSrvLf8pK8PPrH3AeNbTZG9XOyh0qiEg==} + '@cosmos-kit/tailwind-extension@1.0.3': + resolution: {integrity: sha512-joxqfabzzWF2LfCaEghqkyqDRQpQPAatpHrRVTatpgV6jxDxmjqbPruumzyB1Djgm9IjjfuQqbsRdVsiKJABlw==} - '@cosmos-kit/tailwind@1.0.2': - resolution: {integrity: sha512-xPI6v537SOxSKuKxaZgDg/J1Gm/JxcJApG6UXlKP35Q73WzC3tvK52+pUrmXoWJnn0CIfBkVA07cz/2eK5otVg==} + '@cosmos-kit/tailwind@1.0.4': + resolution: {integrity: sha512-+F2Uxvzi6eBcrLW0tf5BwyC4eXiM1VHlrdGadRhYkjkSLbqBBTHzE9iRj2mvBPyhmOg6MU5fl4Bfq7c/GEq6dg==} '@cosmos-kit/trust-extension@2.5.9': resolution: {integrity: sha512-zmHb2eNKgoH2zqlSqJh15Uo229xUte7nufTqBBvMmW251dLaQvhMtg94onAMO1RE0221FCpTTuX/M64tSmVtCg==} @@ -1514,68 +1508,68 @@ packages: '@cosmostation/extension-client@0.1.15': resolution: {integrity: sha512-HlXYJjFrNpjiV/GUKhri1UL8/bhlOIFFLpRF78YDSqq16x0+plIqx5CAvEusFcKTDpVfpeD5sfUHiKvP7euNFg==} - '@dicebear/adventurer-neutral@7.0.4': - resolution: {integrity: sha512-meAMZFLzvqf58p8Qno4vKRmwss2XdKn5osG5/xPkiXVUVhtNEtVoKSIG0KK9ukjC18UOHo6mjZab7xUclz6o4Q==} + '@dicebear/adventurer-neutral@7.1.2': + resolution: {integrity: sha512-mGPQxjGiQ1mb65EjezdEi+SpIkHcwHsyIgrnsKm3SW1uX8CzNfYxEfENJD0t/+EfQC8j5892A5a/jAMpsf3pyA==} engines: {node: '>=16.0.0'} peerDependencies: '@dicebear/core': ^7.0.0 - '@dicebear/adventurer@7.0.4': - resolution: {integrity: sha512-1ya9lD0S8YHaW+1+bky9HCnLWve/gjiFtZ1wjEM26nBxrFBCmvgiqPn/+L/Uf0ercHIyXMRElHylWmLxtWztfQ==} + '@dicebear/adventurer@7.1.2': + resolution: {integrity: sha512-nKEjqckjLeK1mZEuCZs7K9BqI2iFe8U228G2AxfCMwM4r/gomL8UA67FnpPjw9i2MPUyZ2vV5tgFvMY5GQPL8g==} engines: {node: '>=16.0.0'} peerDependencies: '@dicebear/core': ^7.0.0 - '@dicebear/avataaars-neutral@7.0.4': - resolution: {integrity: sha512-EpbeiY23G4fuL2DnZ7fjnSn8WZvdALgg/N3pQpn8yPDdulgaV4vRDOit94pvp/DjW0Zz7mPPkSEN//0zijcXvA==} + '@dicebear/avataaars-neutral@7.1.2': + resolution: {integrity: sha512-oCyC2Z3CgZdPLl2fhjRsyyDPAGFEtX5iuzfrlPAGyOXuZe0SFPnQz+gJAUPnrlBA2uZYrs8+k9pWY+Q14J9uGg==} engines: {node: '>=16.0.0'} peerDependencies: '@dicebear/core': ^7.0.0 - '@dicebear/avataaars@7.0.4': - resolution: {integrity: sha512-mkQDtGYfj4rVguuPednpKj2RQWyV1pew3GqcKfjz77HBfhHeXDDwlMqWPQkaKyYkI0V9q3LtApGECyxYiisDvA==} + '@dicebear/avataaars@7.1.2': + resolution: {integrity: sha512-zqtQ4unzi5YcndShBKivYdbPb1+cQ/BxIKf5No5ceIEn/0j/1zZSf3FcgRvIR/c/lIgBEnngUFhVhg4uPGbDWQ==} engines: {node: '>=16.0.0'} peerDependencies: '@dicebear/core': ^7.0.0 - '@dicebear/big-ears-neutral@7.0.4': - resolution: {integrity: sha512-kxydevCihleTG5TnIh604i/zi+1MMvPuFuecattcUoa3NIPx4zi08j2zb7gwTUX54l49ENG1ZSO058S9c03yrA==} + '@dicebear/big-ears-neutral@7.1.2': + resolution: {integrity: sha512-uojOOJrPLUucq8zyW/SZjvCtZL6AfHV2eeCI6ouUnS0j/vfD4X5o87A8uP2/Zhxga5OY2jszcV5IWV2pXy3UZw==} engines: {node: '>=16.0.0'} peerDependencies: '@dicebear/core': ^7.0.0 - '@dicebear/big-ears@7.0.4': - resolution: {integrity: sha512-yOvIVFOB8Wv9ulSp6vIyEHiIHkishnLEuKIPAcgGScxjlbtcAo9OmeUsgSmM03wYsV62jInaiA4hAHRPfLYzfQ==} + '@dicebear/big-ears@7.1.2': + resolution: {integrity: sha512-4imV+DWlUWGkiGLO+L85ZCKDc0Z2EWMU8syCWiy+v8F+phAXqhSeLuBov3xi1SRVqd91CSzA/xTaRTC59pqN6w==} engines: {node: '>=16.0.0'} peerDependencies: '@dicebear/core': ^7.0.0 - '@dicebear/big-smile@7.0.4': - resolution: {integrity: sha512-vHuedMXdK5RGhXDSCY+U9vDyfby20m3eteYSgEwLKmi3ZJBLXw2xAuAb8cGMPmK7zsyj4eH50r93hKcaTaOTag==} + '@dicebear/big-smile@7.1.2': + resolution: {integrity: sha512-yk6smiR1ZQ97vMcBue6JzJUsA4sct6wp/dEY55WzlYuNzjt1BSBlxjvVOQo1Q8NzMDpBfPloPI+oWSyuQeXd9Q==} engines: {node: '>=16.0.0'} peerDependencies: '@dicebear/core': ^7.0.0 - '@dicebear/bottts-neutral@7.0.4': - resolution: {integrity: sha512-C9McuZSdrMypTAOSsNJMgsbb2wylHbrvkPyksyouSgeIRrr3vdJFAsa+N1UfApNj4YdsznmoBIMl2XAGktTBAg==} + '@dicebear/bottts-neutral@7.1.2': + resolution: {integrity: sha512-mqVnLtDwXeZoVSedu7nIEL4rRPR0VDbxVh15PlCmM4YCbe0v91vcFOx0UQ9O5fw3mWtdmEdDpmnNEFYQAlnXAQ==} engines: {node: '>=16.0.0'} peerDependencies: '@dicebear/core': ^7.0.0 - '@dicebear/bottts@7.0.4': - resolution: {integrity: sha512-Nni2Y5rL6+CJ8/Cij1lCvV/YhI+i3cy//nWQQGqmGTqlCGZdOziDGCWuf7Ufmv8081sbKWj++QOP+ueAX8E7ZA==} + '@dicebear/bottts@7.1.2': + resolution: {integrity: sha512-9t29VdNuKhjfTmZVxgAiUfys/Z4aGMIM8FbLy69YyDiZK5ths2Oncy9/ivVp9qeBmNtoo+fB/joSWit82tIvrA==} engines: {node: '>=16.0.0'} peerDependencies: '@dicebear/core': ^7.0.0 - '@dicebear/collection@7.0.4': - resolution: {integrity: sha512-5jXmitM/DGwmorp9hGh5coEhrMLsygEYNJiOf6eH0loVeXjI0/X3TEmQabtXzwp/nVhBGYyvuBmPIg50fnUhxQ==} + '@dicebear/collection@7.1.2': + resolution: {integrity: sha512-TLnsjMtYeVCOd9KCOu70SjFfryMIZFzuR19B46FhGBA8qf7nVPm3z1HBL8uEokqOCz0sWSnOb7BZsARmXyOD2w==} engines: {node: '>=16.0.0'} peerDependencies: '@dicebear/core': ^7.0.0 - '@dicebear/converter@7.0.4': - resolution: {integrity: sha512-oiA2Oc5izWf6ipPtHYCi2c9W565VzyryObtSL6xB36V9MHRD8wvH5mYr9AvbViDGEOOeNE3EtIELQIMdNtB7Rg==} + '@dicebear/converter@7.1.2': + resolution: {integrity: sha512-xTYl1QJ1doTkiqKZ+ssxSUSmWqUm8ZlqoQ5WWNgnGpAkbEkZjZUfhhlDk4x647hH8nIsqvjtx8aR85EQirZwpA==} engines: {node: '>=16.0.0'} peerDependencies: '@resvg/resvg-js': ^2.4.1 @@ -1589,120 +1583,120 @@ packages: sharp: optional: true - '@dicebear/core@7.0.4': - resolution: {integrity: sha512-Xi8Au8K4pWj61jKMKqlhqmg83DvMAG6PfDuDbp7F75ZNvrGGh0BkJt9keSHe4WpHs+BbXDXSMOivSS10QB20fA==} + '@dicebear/core@7.1.2': + resolution: {integrity: sha512-6+DQ4WWvkF2uKDd/QqDwTM3jwkcs4b02E8QX1XBHfkYfYxjSOoMi/LIDMUyiRHSPbglVC+AfBjwvs/oIfEK+ag==} engines: {node: '>=16.0.0'} - '@dicebear/croodles-neutral@7.0.4': - resolution: {integrity: sha512-b7v1WPEDKWzJAcCMo8OQMMgRTI0c2Ae3dCLBbFXtkhJ6oqzuFUbWwcrUWsp0segBXlPAM3lZrH1gy1GJBHrSuQ==} + '@dicebear/croodles-neutral@7.1.2': + resolution: {integrity: sha512-jehOnLeKC8QZ86OAauBA54mMYQcLQxHhMdGply0MekNTGrXQ9S3K4P4xjNhEuxwCHa0YWvpSwX2uEr+vHFFyNQ==} engines: {node: '>=16.0.0'} peerDependencies: '@dicebear/core': ^7.0.0 - '@dicebear/croodles@7.0.4': - resolution: {integrity: sha512-PMe7W2IE8R9yqEXuccfEaTF0D+1VXrCXnShw52D5C23qPDTxL1XxZKXcOoeXYi5o1jeIVagZjHiX8XaQK18ftQ==} + '@dicebear/croodles@7.1.2': + resolution: {integrity: sha512-yeINvPxjF4hUVIc0Ryg8eJbVMNK3zFlv91TMCXwWDtatmwxRBdL6VtdVbePi6ecbbfSVWR3wS5bBioHyML21NA==} engines: {node: '>=16.0.0'} peerDependencies: '@dicebear/core': ^7.0.0 - '@dicebear/fun-emoji@7.0.4': - resolution: {integrity: sha512-rlaID1EQW8pj/TmM805+dA6XVLge2hkiVaQkoM+4Df/RGj/GPbDeBgu8dRKLwORPNY5ug3zfFgERStZcSyYmqQ==} + '@dicebear/fun-emoji@7.1.2': + resolution: {integrity: sha512-zaZdSFfgFU13HXgAn6OUDsdNkOyQzAbDN6BosyS5Xshw2n58p/m0KfxjMSMDgpOCL+wra0mst46LaSxwlJu/1Q==} engines: {node: '>=16.0.0'} peerDependencies: '@dicebear/core': ^7.0.0 - '@dicebear/icons@7.0.4': - resolution: {integrity: sha512-wkWjjkDD43lmYKgCBDdUc54y6llCsCOSPND2RnKi6noOGpThsN6aTE6nN2Hwf0ORxWPEzBFRmgoat+frWd9a4A==} + '@dicebear/icons@7.1.2': + resolution: {integrity: sha512-Op1WEwKzFRnxInnpeizRo4YmneY4o3uLXtFB0F3Zz7zxr3QBImUrlZldUZ4Mdvl0qd9Rl4zSado7+5NwYlkFJw==} engines: {node: '>=16.0.0'} peerDependencies: '@dicebear/core': ^7.0.0 - '@dicebear/identicon@7.0.4': - resolution: {integrity: sha512-Q68lP7dqqt0fMx9SONPJSi94aieNveTyrCgv/kuU3F9upeQyesmdAeQ+e2QOojOOMrEuM+ujFuPInvwwkaZF7w==} + '@dicebear/identicon@7.1.2': + resolution: {integrity: sha512-lYhPYiVJiIy0o2TNLM4/OC9RVejM2lXLGt6xQP+mdxmKh/JlxYA9cXHnc6EZJiklBe/ajwesaEMkNzCJXQ8F0A==} engines: {node: '>=16.0.0'} peerDependencies: '@dicebear/core': ^7.0.0 - '@dicebear/initials@7.0.4': - resolution: {integrity: sha512-cNkuG/3cPbF4UScmLk+2nYF2LaB9N1k3Pw1gmd3PST+oUsdlkNIM6e4Wym/0fgDLGPWyxbiGsbhe371ACWJVNQ==} + '@dicebear/initials@7.1.2': + resolution: {integrity: sha512-vw0kZorVKkWwvyhG8uNeLyVK9yo0Jm76jstL97Dicw1wvA/c3RFUQXcJnR31yZueO+OEWrLzEo3nvbVIntLsaA==} engines: {node: '>=16.0.0'} peerDependencies: '@dicebear/core': ^7.0.0 - '@dicebear/lorelei-neutral@7.0.4': - resolution: {integrity: sha512-QtyKGJhExocZse662b1W5LGh0ykFh4AFf827f5FkXiOGmAgghsm1m/0bFuF9giwqFJ7W3eZu5oTSn97+s3z17A==} + '@dicebear/lorelei-neutral@7.1.2': + resolution: {integrity: sha512-Aa0Wcom+lzERSwNyF/gGMs7nmQWwp5Chzw5iekP763XLSkSeCO1S/IhvwcgEsL6tL2XUJ+HFlHH030a62KDbUw==} engines: {node: '>=16.0.0'} peerDependencies: '@dicebear/core': ^7.0.0 - '@dicebear/lorelei@7.0.4': - resolution: {integrity: sha512-pFDNHns7lke3M+TGPHFizjsjBMM/70okdH4Y+WKg9WHe+Y0dV54OgXf9/I6A10ipdVTCtM4i2xfNkSW+QP/spQ==} + '@dicebear/lorelei@7.1.2': + resolution: {integrity: sha512-Xp0TrjJWDknN1edCYToJQeXrl3UiULcCWzv+uefoUbMlkAr0pwXGPPXPWDkhi67Ehv5sN+rPN8b6Ybjkikv31w==} engines: {node: '>=16.0.0'} peerDependencies: '@dicebear/core': ^7.0.0 - '@dicebear/micah@7.0.4': - resolution: {integrity: sha512-c6U9iqsEsuPqHxiZuM5O7xqJIv98rIMergdi6O8jlINXacNLzF9DUHLAkxMiFeiqDDqQ34wUQq+M6qt9xBq0eQ==} + '@dicebear/micah@7.1.2': + resolution: {integrity: sha512-/gCzm3AIetQJXMBeEQAt5tLhh48gecemdOH522whEIop10Ie9HxMsKVBkOck7fnSntt1A7307IWIf/Tbqczkxg==} engines: {node: '>=16.0.0'} peerDependencies: '@dicebear/core': ^7.0.0 - '@dicebear/miniavs@7.0.4': - resolution: {integrity: sha512-p1sWveGT3gvtnwplhDakB6wEu5jT/EHbRzsTMOT3Lz9nqkF08sJCe7KCRsji1EVGyX4nOjA+dQcHK9yUAdqQAg==} + '@dicebear/miniavs@7.1.2': + resolution: {integrity: sha512-yJqfH+CfYdFiK9o8F3aIsxYtKFhY9Uudn/v6pCvd2v3W11ZzjtvPEClluVq1a+W5V0OWwrmV3P+uMqu1oOB8+Q==} engines: {node: '>=16.0.0'} peerDependencies: '@dicebear/core': ^7.0.0 - '@dicebear/notionists-neutral@7.0.4': - resolution: {integrity: sha512-tk06h7uj1IR42g/RhhLVv1rbxy+rNROhXSto5ADX0/Ovk+HaR8yQGQyO3Tt/rXpGuf5+5JK0sVAiRgGaMFSxig==} + '@dicebear/notionists-neutral@7.1.2': + resolution: {integrity: sha512-PoezHBx6pvuQbHvJ+JTwRhZ+jGkzJT/jnPZOMQmQcGZuxrh2SLzGVBShmRIQubXr206mnihUBfcqdcseOEMUlw==} engines: {node: '>=16.0.0'} peerDependencies: '@dicebear/core': ^7.0.0 - '@dicebear/notionists@7.0.4': - resolution: {integrity: sha512-twmpHy2S6FkTiPzNd0wXuWhBv0XgkCPIuzJiUeyTadVEjlijOvPeAr9kuGuhDMO7MTHnuQoFRw1sctQmj+xbXA==} + '@dicebear/notionists@7.1.2': + resolution: {integrity: sha512-kiJrCugXBbpfHrrXpU1q7Ryxi9QZZlWS+2CsPMq3qUqZFVtdj4ODwHMsNYKXde06JMfaUprrhVVKVOsFp0+8Rg==} engines: {node: '>=16.0.0'} peerDependencies: '@dicebear/core': ^7.0.0 - '@dicebear/open-peeps@7.0.4': - resolution: {integrity: sha512-c4oMnOvzLiMXoj+oBKILzF0DRWRd3I/ykBC7zhr3904R/dp6PXQnMDiMFIjCYeifCl8W30ggTzvNEX7nwbxJaQ==} + '@dicebear/open-peeps@7.1.2': + resolution: {integrity: sha512-l3jc8vilmy5hZHQjH5kdYmJmpHvR3WUUvTS26WSriIi6Q+jlR+jJCHG9wpBKsfpUJZ7mkJr5gYc7ImThVfC4zw==} engines: {node: '>=16.0.0'} peerDependencies: '@dicebear/core': ^7.0.0 - '@dicebear/personas@7.0.4': - resolution: {integrity: sha512-gbWqNakXeWSKjW4s4zw4dSmuHOGF9+tgwzjwilrQvZMODOESYUCKPql/3KFJLVG9Rr00BH83QGZEn6vYiBLbVg==} + '@dicebear/personas@7.1.2': + resolution: {integrity: sha512-VsYVR+Q2NkT/hWV4z6h98hNLFCxYdethHVyLk88d4Zhy7oAxsg8t6Gr1blb9asap/zB0Vwl4TTBz64AmB6H+Gw==} engines: {node: '>=16.0.0'} peerDependencies: '@dicebear/core': ^7.0.0 - '@dicebear/pixel-art-neutral@7.0.4': - resolution: {integrity: sha512-4hzHw7I4f4bj4C7L2xQ28oA7XS1uonwGE7jTCqjRzg3YkzjTthxf7kEE/WWiP0Lk1onPhSdB8kqDejPGvNUXLQ==} + '@dicebear/pixel-art-neutral@7.1.2': + resolution: {integrity: sha512-SQ4Dd/Sta3g0XEZsnmXEGNdvylp2p7JLZXjvAkaIWZ41baFw2se1qoJzYUUYR4WlFGSkatP59mtg9otppHIlug==} engines: {node: '>=16.0.0'} peerDependencies: '@dicebear/core': ^7.0.0 - '@dicebear/pixel-art@7.0.4': - resolution: {integrity: sha512-H0OZ7JyLyiBYOa9NJI6yr1x/XjXl4P17U8lvRuQhCYHntdgDvuIwv1/kulq4vLBGRK1afXBTm/NPWi0Optyg/Q==} + '@dicebear/pixel-art@7.1.2': + resolution: {integrity: sha512-U3kfKAar4sGPtCArVJn5iQwTr5M/ydw/VBIo/6hzxA2R+LecA0WHcG6xH3xNcdh6xLG5wR5+HWVDQDEPbVJHkg==} engines: {node: '>=16.0.0'} peerDependencies: '@dicebear/core': ^7.0.0 - '@dicebear/rings@7.0.4': - resolution: {integrity: sha512-LJzSWronkeWefFLwaOWg3tr0jSOuW2hien4Uv+nG2alYSkJ6hGH4zLtGo/SRQdNWQg4j/6838fWJDdoryWQM2w==} + '@dicebear/rings@7.1.2': + resolution: {integrity: sha512-ox0Ps2d6WNyTJZh0YFDOAExWjeFwmiQJ1qlkvfMXo4ZSemfNBXEjr+OBpLP/HxHGTgXywOkGnJH22GhRVkuGHg==} engines: {node: '>=16.0.0'} peerDependencies: '@dicebear/core': ^7.0.0 - '@dicebear/shapes@7.0.4': - resolution: {integrity: sha512-C1OhdAGwCmEK9JDjK9wERBxaZIOp2x4yWVsra/VCfba+fJSKmmorhbYIw33vE5ZV3/PseztnDB3sWOMMl/jCdw==} + '@dicebear/shapes@7.1.2': + resolution: {integrity: sha512-gZY7UqfKQYe5ReXALViDFPDioljQB9T/Pb0we9NL5nwf5FeLzvlPcgecagJCql8W9B6zKLXeo50aE2TR8wgqwg==} engines: {node: '>=16.0.0'} peerDependencies: '@dicebear/core': ^7.0.0 - '@dicebear/thumbs@7.0.4': - resolution: {integrity: sha512-mAOWbaNtWKLIHGtTZxHVei1UFWz/l0h4aP8h97UE71av2QTM7CEw2RpF8Q19MxxoDlHi+oZ7Jvjblzi5k96LtA==} + '@dicebear/thumbs@7.1.2': + resolution: {integrity: sha512-H++n3BtOBSdKY8Z/6pEKZ4SPoMpZHabdGxaVcF1Yg8UQEZ9XJTV6qk94q9W7KKDfPQQBH5nVziGEY/ytm9SUEQ==} engines: {node: '>=16.0.0'} peerDependencies: '@dicebear/core': ^7.0.0 @@ -1881,15 +1875,15 @@ packages: resolution: {integrity: sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - '@eslint/js@8.56.0': - resolution: {integrity: sha512-gMsVel9D7f2HLkBma9VbtzZRehRogVRfbr++f06nL2vnCGCNlzOD+/MUov/F4p8myyAHspEhVobgjpX64q5m6A==} + '@eslint/js@8.57.0': + resolution: {integrity: sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} '@ethereumjs/common@3.2.0': resolution: {integrity: sha512-pksvzI0VyLgmuEF2FA/JR/4/y6hcPq8OUail3/AvycBaW1d5VSauOZzqGvJ3RTmR4MU35lWE8KseKOsEhrFRBA==} - '@ethereumjs/common@4.2.0': - resolution: {integrity: sha512-UWqovZQksxEY9cU+s1cF3JwFyJdKrJsURM+ORHpZZLQfsqQf+1uGbD3N0AvQ7M+Jz/LxkiVY98+Cd3OMzsrOcA==} + '@ethereumjs/common@4.3.0': + resolution: {integrity: sha512-shBNJ0ewcPNTUfZduHiczPmqkfJDn0Dh/9BR5fq7xUFTuIq7Fu1Vx00XDwQVIrpVL70oycZocOhBM6nDO+4FEQ==} '@ethereumjs/rlp@4.0.1': resolution: {integrity: sha512-tqsQiBQDQdmPWE1xkkBq4rlSW5QZpLOUJ5RJh2/9fug+q9tnUhuZoVLk7s0scUIKTOzEtR72DFBXI4WiZcMpvw==} @@ -1905,27 +1899,17 @@ packages: resolution: {integrity: sha512-1nc6VO4jtFd172BbSnTnDQVr9IYBFl1y4xPzZdtkrkKIncBCkdbgfdRV+MiTkJYAtTxvV12GRZLqBFT1PNK6Yw==} engines: {node: '>=14'} - '@ethereumjs/tx@5.2.1': - resolution: {integrity: sha512-BzdtUaa7KtP8T5NxJWRxo/RBoJzxYeCdx2n2C4zZLuWJBYVccfcyMiyDgr6W78Utmu/jIfGXknfh2t06+rTkiw==} + '@ethereumjs/tx@5.3.0': + resolution: {integrity: sha512-uv++XYuIfuqYbvymL3/o14hHuC6zX0nRQ1nI2FHsbkkorLZ2ChEIDqVeeVk7Xc9/jQNU/22sk9qZZkRlsveXxw==} engines: {node: '>=18'} - peerDependencies: - c-kzg: ^2.1.2 - peerDependenciesMeta: - c-kzg: - optional: true '@ethereumjs/util@8.1.0': resolution: {integrity: sha512-zQ0IqbdX8FZ9aw11vP+dZkKDkS+kgIvQPHnSAXzP9pLu+Rfu3D3XEeLbicvoXJTYnhZiPmsZUxgdzXwNKxRPbA==} engines: {node: '>=14'} - '@ethereumjs/util@9.0.2': - resolution: {integrity: sha512-dasKCj6Vb5spVPnNmRDFHmbfBySvokE440F0RDroPLzO4Mb4hyDqeoOMUxlbLz/BscK2pOpWUendGA+AOvGpNQ==} + '@ethereumjs/util@9.0.3': + resolution: {integrity: sha512-PmwzWDflky+7jlZIFqiGsBPap12tk9zK5SVH9YW2OEnDN7OEhCjUOMzbOqwuClrbkSIkM2ERivd7sXZ48Rh/vg==} engines: {node: '>=18'} - peerDependencies: - c-kzg: ^2.1.2 - peerDependenciesMeta: - c-kzg: - optional: true '@ethersproject/abi@5.7.0': resolution: {integrity: sha512-351ktp42TiRcYB3H1OP8yajPeAQstMW/yCFokj/AthP9bLHzQFPlOrxOcwYEDkUAICmOHljvN4K39OMTMUa9RA==} @@ -2023,8 +2007,8 @@ packages: '@floating-ui/core@1.6.0': resolution: {integrity: sha512-PcF++MykgmTj3CIyOQbKA/hDzOAiqI3mhuoN44WRCopIs1sgoDoU4oty4Jtqaj/y3oDU6fnVSm4QG0a3t5i0+g==} - '@floating-ui/dom@1.6.1': - resolution: {integrity: sha512-iA8qE43/H5iGozC3W0YSnVSW42Vh522yyM1gj+BqRwVsTNOyr231PsXDaV04yT39PsO0QL2QpbI/M0ZaLUQgRQ==} + '@floating-ui/dom@1.6.3': + resolution: {integrity: sha512-RnDthu3mzPlQ31Ss/BTwQ1zjzIhr3lk1gZB1OC56h/1vEtaXkESrOqL5fQVMfXpwGtRwX+YsZBdyHtJMQnkArw==} '@floating-ui/react-dom@2.0.8': resolution: {integrity: sha512-HOdqOt3R3OGeTKidaLvJKcgg75S6tibQ3Tif4eyd91QnIJWr0NLvoXFpJA/j8HqkFSL68GDca9AuyWEHlhyClw==} @@ -2032,8 +2016,8 @@ packages: react: '>=16.8.0' react-dom: '>=16.8.0' - '@floating-ui/react@0.26.9': - resolution: {integrity: sha512-p86wynZJVEkEq2BBjY/8p2g3biQ6TlgT4o/3KgFKyTWoJLU1GZ8wpctwRqtkEl2tseYA+kw7dBAIDFcednfI5w==} + '@floating-ui/react@0.26.12': + resolution: {integrity: sha512-D09o62HrWdIkstF2kGekIKAC0/N/Dl6wo3CQsnLcOmO3LkW6Ik8uIb3kw8JYkwxNCcg+uJ2bpWUiIijTBep05w==} peerDependencies: react: '>=16.8.0' react-dom: '>=16.8.0' @@ -2056,34 +2040,34 @@ packages: '@formatjs/intl-localematcher@0.5.4': resolution: {integrity: sha512-zTwEpWOzZ2CiKcB93BLngUX59hQkuZjT2+SAQEscSm52peDW/getsawMcWF1rGRpMCX6D7nSJA3CzJ8gn13N/g==} - '@formkit/auto-animate@0.8.1': - resolution: {integrity: sha512-0/Z2cuNXWVVIG/l0SpcHAWFhGdvLJ8DRvEfRWvmojtmRWfEy+LWNwgDazbZqY0qQYtkHcoEK3jBLkhiZaB/4Ig==} + '@formkit/auto-animate@0.8.2': + resolution: {integrity: sha512-SwPWfeRa5veb1hOIBMdzI+73te5puUBHmqqaF1Bu7FjvxlYSz/kJcZKSa9Cg60zL0uRNeJL2SbRxV6Jp6Q1nFQ==} - '@grafana/faro-core@1.4.1': - resolution: {integrity: sha512-9akwZL41Jhzlh4V8qyHuQEsll5Pkh6EiLO1dqulVWlh24zYDuw8B43vYcaNe+nqwyqXbw0GIlyxHVtjZONZLCg==} + '@grafana/faro-core@1.6.0': + resolution: {integrity: sha512-0K+wB9nBVBS1oYHHoHwLF1sMrv0cNEZkRCss0GMlpoI96CeviOE1gNa7FZgznsR1FzDBwUs77LADAR1m661eMw==} - '@grafana/faro-react@1.4.1': - resolution: {integrity: sha512-kTZBnM+dV0FZ+rXq9Fm3BYjE0QxFl46INYX4QVoJ+q3010FR5mGRfuchvbX+BF2LRYrYAQ6WPlNd3FTGhk9fUQ==} + '@grafana/faro-react@1.6.0': + resolution: {integrity: sha512-hkTZiIVdegu3leSgi4YIkB2HCyQJ9K86grohIuupPrvSLwNUhsiaG6rDzFyS3v0ZXq34oghb4Z5XnYir0c5aUw==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 react-router-dom: ^4.0.0 || ^5.0.0 || ^6.0.0 - '@grafana/faro-web-sdk@1.4.1': - resolution: {integrity: sha512-VkMnJ5IYu9pJ8a4nMrKVCL7nkKQZQextHVHt+3fkxR5tbZWWgaTmDW49kU6oopvNBIw4AHmZdpXrAFSzWofFIQ==} + '@grafana/faro-web-sdk@1.6.0': + resolution: {integrity: sha512-hl7/yltUs5pFIMfp6uQvwUWOhegIJshAUs7VQRVG4putpAwcQsbmp3a6KiIUDYf3n/x8V+75dJhCv5+6egLD/A==} - '@grafana/faro-web-tracing@1.4.1': - resolution: {integrity: sha512-0XQ33NABeVY9sj+sFiB1vKAugi7zB/o7bXpFCrETZgU59iPwuGx34HTx1i2jJYRxae+Cww0a1BGuTu5Fxb5Bqw==} + '@grafana/faro-web-tracing@1.6.0': + resolution: {integrity: sha512-TikVAa5uQ2oyUlyXKEKk2xVWn8FOVPpGsBuP/XEanBCAwbZ61WkR26hd5YqoNH5RBhP3Zn3mBiTQHQzCFFte/Q==} - '@headlessui/react@1.7.18': - resolution: {integrity: sha512-4i5DOrzwN4qSgNsL4Si61VMkUcWbcSKueUV7sFhpHzQcSShdlHENE5+QBntMSRvHt8NyoFO2AGG8si9lq+w4zQ==} + '@headlessui/react@1.7.19': + resolution: {integrity: sha512-Ll+8q3OlMJfJbAKM/+/Y2q6PPYbryqNTXDbryx7SXLIDamkF6iQFbriYHga0dY44PvDhvvBWCx1Xj4U5+G4hOw==} engines: {node: '>=10'} peerDependencies: react: ^16 || ^17 || ^18 react-dom: ^16 || ^17 || ^18 - '@heroicons/react@2.1.1': - resolution: {integrity: sha512-JyyN9Lo66kirbCMuMMRPtJxtKJoIsXKS569ebHGGRKbl8s4CtUfLnyKJxteA+vIKySocO4s1SkTkGS4xtG/yEA==} + '@heroicons/react@2.1.3': + resolution: {integrity: sha512-fEcPfo4oN345SoqdlCDdSa4ivjaKbk0jTd+oubcgNxnNgAfzysfwWfQUr+51wigiWHQQRiZNd1Ao0M5Y3M2EGg==} peerDependencies: react: '>= 16' @@ -2100,8 +2084,8 @@ packages: resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==} engines: {node: '>=12.22'} - '@humanwhocodes/object-schema@2.0.2': - resolution: {integrity: sha512-6EwiSjwWYP7pTckG6I5eyFANjPhmPjUX9JRLUSfNPC7FX7zK9gyZAfUEaECL6ALTpGX5AjnBq3C9XmVWPitNpw==} + '@humanwhocodes/object-schema@2.0.3': + resolution: {integrity: sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==} '@improbable-eng/grpc-web@0.14.1': resolution: {integrity: sha512-XaIYuunepPxoiGVLLHmlnVminUGzBTnXr8Wv7khzmLWbNw4TCwJKX09GSMJlKhu/TRk6gms0ySFxewaETSBqgw==} @@ -2126,9 +2110,6 @@ packages: '@internationalized/string@3.2.1': resolution: {integrity: sha512-vWQOvRIauvFMzOO+h7QrdsJmtN1AXAFVcaLWP9AseRN2o7iHceZ6bIXhBD4teZl8i91A3gxKnWBlGgjCwU6MFQ==} - '@ioredis/commands@1.2.0': - resolution: {integrity: sha512-Sx1pU8EM64o2BrqNpEO1CNLtKQwyhuXuqyfH7oGKCk+1a33d2r5saW8zNwm3j6BTExtjrv2BxTgzzkMwts6vGg==} - '@isaacs/cliui@8.0.2': resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==} engines: {node: '>=12'} @@ -2146,20 +2127,12 @@ packages: typescript: optional: true - '@jridgewell/gen-mapping@0.3.3': - resolution: {integrity: sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==} - engines: {node: '>=6.0.0'} - '@jridgewell/gen-mapping@0.3.5': resolution: {integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==} engines: {node: '>=6.0.0'} - '@jridgewell/resolve-uri@3.1.1': - resolution: {integrity: sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==} - engines: {node: '>=6.0.0'} - - '@jridgewell/set-array@1.1.2': - resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==} + '@jridgewell/resolve-uri@3.1.2': + resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==} engines: {node: '>=6.0.0'} '@jridgewell/set-array@1.2.1': @@ -2172,9 +2145,6 @@ packages: '@jridgewell/sourcemap-codec@1.4.15': resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==} - '@jridgewell/trace-mapping@0.3.22': - resolution: {integrity: sha512-Wf963MzWtA2sjrNt+g18IAln9lKnlRp+K2eH4jjIoF1wYeq3aMREpG09xhlhdzS0EjwU7qmUJYangWa+151vZw==} - '@jridgewell/trace-mapping@0.3.25': resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==} @@ -2199,8 +2169,8 @@ packages: '@keplr-wallet/types@0.12.28': resolution: {integrity: sha512-EcM9d46hYDm3AO4lf4GUbTSLRySONtTmhKb7p88q56OQOgJN3MMjRacEo2p9jX9gpPe7gRIjMUalhAfUiFpZoQ==} - '@keplr-wallet/types@0.12.67': - resolution: {integrity: sha512-HDEYOezWq//ug/R0lkOQWsaOYh3b9ECA8LN+tAA+baWMo81X9m9L63ux7NYw0QmoLxWqWrRO/T9F28+q2dw6+A==} + '@keplr-wallet/types@0.12.80': + resolution: {integrity: sha512-GRMyOioocq2LaLAoaGegCOqgjKq4uXOPQ9QwoLpx0ZpsbccSr2wKN8PhFs/B9fwuhiJu1aroX7hXC0jlsE8XLg==} '@keplr-wallet/unit@0.12.28': resolution: {integrity: sha512-kpXigHDBJGOmhtPkv9hqsQid9zkFo7OQPeKgO2n8GUlOINIXW6kWG5LXYTi/Yg9Uiw1CQF69gFMuZCJ8IzVHlA==} @@ -2208,23 +2178,23 @@ packages: '@leapwallet/cosmos-snap-provider@0.1.25': resolution: {integrity: sha512-oov2jgISkvoAYvGsWkPscFt/XEEv1McTehTqJRfIJPO8uebIE6goJi4wjaaMW3wDIDsMMK54uGSdqbL6C8ciYQ==} - '@ledgerhq/devices@8.2.1': - resolution: {integrity: sha512-l/2I/Xzt7Z32OmGzoc/mUvaZivdn7Id/SO7hBTGpk7PtJTpBRxVAabP4GWEKCayGyOAcvTwoVxM0HMkNVfIzOQ==} + '@ledgerhq/devices@8.2.2': + resolution: {integrity: sha512-SKahGA4p0mZ3ovypOJ2wa5mUvUkArE3HBrwWKYf+cRs+t/Licp3OJfhj+DHIxP3AfyH2xR6CFFWECYHeKwGsDQ==} - '@ledgerhq/errors@6.16.2': - resolution: {integrity: sha512-jFpohaSW+p1Obp3NDT9QSByEtT3gtBZIjVNu8m25gnrH5zdtfPVlPwH6UiuS50s+2dHQyehV8hF+IfreKDWAZA==} + '@ledgerhq/errors@6.16.3': + resolution: {integrity: sha512-3w7/SJVXOPa9mpzyll7VKoKnGwDD3BzWgN1Nom8byR40DiQvOKjHX+kKQausCedTHVNBn9euzPCNsftZ9+mxfw==} - '@ledgerhq/hw-app-cosmos@6.29.4': - resolution: {integrity: sha512-idqreCj1GKwIfmikiLfxd1OnywXa1k7OALOCuqa1ZOw4YNT6k24ATRqaAxxeL4aW4AanwMS+8Dz6hQEe9JUyEg==} + '@ledgerhq/hw-app-cosmos@6.29.5': + resolution: {integrity: sha512-NcfrS5pE3kQt6mBizOm9rK7+3XtWZ7LrWkO4Iz6giHkkJShnDCVFdJHxtxbhQ+6XRCADn7W75YrwnOsX5E0WbQ==} - '@ledgerhq/hw-transport-webhid@6.28.4': - resolution: {integrity: sha512-78lbSIcWp/lby4wlOjDb3YfvD5eCzozs7J12xvdqp2sU17qcGbwDUGyPsNApFUp8Qd5uUFNOy2ffV1w5B5XvFQ==} + '@ledgerhq/hw-transport-webhid@6.28.5': + resolution: {integrity: sha512-swRq9xhOQ2w7YCRnBd7pOnniPQOnhSV23dLUKBiQHYbOAGyPRDdNnZSCu0nPmGI+o9VUKAuH953R7z9LIFWegg==} - '@ledgerhq/hw-transport-webusb@6.28.4': - resolution: {integrity: sha512-qJcQXEhVHecOwmFcgqBy/aK4twDTrk1WzjTBmHHHJG1cdcn7zB2d7RwL93cP8dZ+r1OXyLSZPThH7erac9hFQQ==} + '@ledgerhq/hw-transport-webusb@6.28.5': + resolution: {integrity: sha512-93mye+T/deqwYfJV89iTqoLxJY6zXhT57vLTWUkae0s1S9n7Lj53KNWCOGVqdlq9DMY2qGrtnAw3V0xtfgsLXw==} - '@ledgerhq/hw-transport@6.30.4': - resolution: {integrity: sha512-VBcVd7UG8HDrjWMoZI5rqBDz+PBxLHTIPZOGY/fdMoEUwaBbss0Z3MxuJanMyerlfaLqnBSVuL0blz7rOyagkw==} + '@ledgerhq/hw-transport@6.30.5': + resolution: {integrity: sha512-JMl//7BgPBvWxrWyMu82jj6JEYtsQyOyhYtonWNgtxn6KUZWht3gU4gxmLpeIRr+DiS7e50mW7m3GA+EudZmmA==} '@ledgerhq/logs@6.12.0': resolution: {integrity: sha512-ExDoj1QV5eC6TEbMdLUMMk9cfvNKhhv5gXol4SmULRVCx/3iyCPhJ74nsb3S0Vb+/f+XujBEj3vQn5+cwS0fNA==} @@ -2275,6 +2245,10 @@ packages: resolution: {integrity: sha512-FXvL1NQNl6I7fMOJTfQYcBlBZ33vSlm6w80cMpmn8sJh0Lb7wcBpe02UwBsNlARnI+Qsr26XeDs6WHUHQh8CuA==} engines: {node: ^18.18 || >=20} + '@metamask/providers@16.0.0': + resolution: {integrity: sha512-zqZpn7Tg+QuvhL9x1WYCdXjFclZrMR2LOU2a3kHVFms5pOfizzFApB492VFgHuv/5xKohSxDkhXpAZ/TNGmM4g==} + engines: {node: ^18.18 || >=20} + '@metamask/rpc-errors@6.2.1': resolution: {integrity: sha512-VTgWkjWLzb0nupkFl1duQi9Mk8TGT9rsdnQg6DeRrYEFxtFOh0IF8nAwxM/4GWqDl6uIB06lqUBgUrAVWl62Bw==} engines: {node: '>=16.0.0'} @@ -2290,74 +2264,74 @@ packages: resolution: {integrity: sha512-1K8aBsAqr6+8jWhguVl06n8e+zjV9sUnys+5PLyVU4mb8LbulQ60F6cq7iQys3xX/yCwKt1+7c7j2nuTEpW+ZQ==} engines: {node: ^16.20 || ^18.16 || >=20} - '@metamask/snaps-sdk@3.1.1': - resolution: {integrity: sha512-9AXjOka6hRpOsn/eL9v2124UTu1ThLSSFObXcY9nahCD/Wh4y7Pfwyzz0sifP5HaoITjQAIgJXAKtgom+t1jIA==} + '@metamask/snaps-sdk@3.2.0': + resolution: {integrity: sha512-Xfsc6seyucs7TP2JLXoKYrWm5FbrttdHnMOTfuzTb4T+qmdmoc3wdw83RAGjRFiOOaHGFc6JJSCdP33fBmw4Hg==} engines: {node: ^18.16 || >=20} '@metamask/utils@6.2.0': resolution: {integrity: sha512-nM5CujDd4STfwx4ic/gim9G1W9oZcWUGKN4WbAT4waEkqNSIluVmZeHgxUKvdajZ7iCFDnjDLajkD4sP7c/ClQ==} engines: {node: '>=16.0.0'} - '@metamask/utils@8.3.0': - resolution: {integrity: sha512-WFVcMPEkKKRCJ8DDkZUTVbLlpwgRn98F4VM/WzN89HM8PmHMnCyk/oG0AmK/seOxtik7uC7Bbi2YBC5Z5XB2zw==} + '@metamask/utils@8.4.0': + resolution: {integrity: sha512-dbIc3C7alOe0agCuBHM1h71UaEaEqOk2W8rAtEn8QGz4haH2Qq7MoK6i7v2guzvkJVVh79c+QCzIqphC3KvrJg==} engines: {node: '>=16.0.0'} '@ndelangen/get-tarball@3.0.9': resolution: {integrity: sha512-9JKTEik4vq+yGosHYhZ1tiH/3WpUS0Nh0kej4Agndhox8pAdWhEx5knFVRcb/ya9knCRCs1rPxNrSXTDdfVqpA==} - '@next/env@14.1.0': - resolution: {integrity: sha512-Py8zIo+02ht82brwwhTg36iogzFqGLPXlRGKQw5s+qP/kMNc4MAyDeEwBKDijk6zTIbegEgu8Qy7C1LboslQAw==} + '@next/env@14.2.1': + resolution: {integrity: sha512-qsHJle3GU3CmVx7pUoXcghX4sRN+vINkbLdH611T8ZlsP//grzqVW87BSUgOZeSAD4q7ZdZicdwNe/20U2janA==} - '@next/swc-darwin-arm64@14.1.0': - resolution: {integrity: sha512-nUDn7TOGcIeyQni6lZHfzNoo9S0euXnu0jhsbMOmMJUBfgsnESdjN97kM7cBqQxZa8L/bM9om/S5/1dzCrW6wQ==} + '@next/swc-darwin-arm64@14.2.1': + resolution: {integrity: sha512-kGjnjcIJehEcd3rT/3NAATJQndAEELk0J9GmGMXHSC75TMnvpOhONcjNHbjtcWE5HUQnIHy5JVkatrnYm1QhVw==} engines: {node: '>= 10'} cpu: [arm64] os: [darwin] - '@next/swc-darwin-x64@14.1.0': - resolution: {integrity: sha512-1jgudN5haWxiAl3O1ljUS2GfupPmcftu2RYJqZiMJmmbBT5M1XDffjUtRUzP4W3cBHsrvkfOFdQ71hAreNQP6g==} + '@next/swc-darwin-x64@14.2.1': + resolution: {integrity: sha512-dAdWndgdQi7BK2WSXrx4lae7mYcOYjbHJUhvOUnJjMNYrmYhxbbvJ2xElZpxNxdfA6zkqagIB9He2tQk+l16ew==} engines: {node: '>= 10'} cpu: [x64] os: [darwin] - '@next/swc-linux-arm64-gnu@14.1.0': - resolution: {integrity: sha512-RHo7Tcj+jllXUbK7xk2NyIDod3YcCPDZxj1WLIYxd709BQ7WuRYl3OWUNG+WUfqeQBds6kvZYlc42NJJTNi4tQ==} + '@next/swc-linux-arm64-gnu@14.2.1': + resolution: {integrity: sha512-2ZctfnyFOGvTkoD6L+DtQtO3BfFz4CapoHnyLTXkOxbZkVRgg3TQBUjTD/xKrO1QWeydeo8AWfZRg8539qNKrg==} engines: {node: '>= 10'} cpu: [arm64] os: [linux] - '@next/swc-linux-arm64-musl@14.1.0': - resolution: {integrity: sha512-v6kP8sHYxjO8RwHmWMJSq7VZP2nYCkRVQ0qolh2l6xroe9QjbgV8siTbduED4u0hlk0+tjS6/Tuy4n5XCp+l6g==} + '@next/swc-linux-arm64-musl@14.2.1': + resolution: {integrity: sha512-jazZXctiaanemy4r+TPIpFP36t1mMwWCKMsmrTRVChRqE6putyAxZA4PDujx0SnfvZHosjdkx9xIq9BzBB5tWg==} engines: {node: '>= 10'} cpu: [arm64] os: [linux] - '@next/swc-linux-x64-gnu@14.1.0': - resolution: {integrity: sha512-zJ2pnoFYB1F4vmEVlb/eSe+VH679zT1VdXlZKX+pE66grOgjmKJHKacf82g/sWE4MQ4Rk2FMBCRnX+l6/TVYzQ==} + '@next/swc-linux-x64-gnu@14.2.1': + resolution: {integrity: sha512-VjCHWCjsAzQAAo8lkBOLEIkBZFdfW+Z18qcQ056kL4KpUYc8o59JhLDCBlhg+hINQRgzQ2UPGma2AURGOH0+Qg==} engines: {node: '>= 10'} cpu: [x64] os: [linux] - '@next/swc-linux-x64-musl@14.1.0': - resolution: {integrity: sha512-rbaIYFt2X9YZBSbH/CwGAjbBG2/MrACCVu2X0+kSykHzHnYH5FjHxwXLkcoJ10cX0aWCEynpu+rP76x0914atg==} + '@next/swc-linux-x64-musl@14.2.1': + resolution: {integrity: sha512-7HZKYKvAp4nAHiHIbY04finRqjeYvkITOGOurP1aLMexIFG/1+oCnqhGogBdc4lao/lkMW1c+AkwWSzSlLasqw==} engines: {node: '>= 10'} cpu: [x64] os: [linux] - '@next/swc-win32-arm64-msvc@14.1.0': - resolution: {integrity: sha512-o1N5TsYc8f/HpGt39OUQpQ9AKIGApd3QLueu7hXk//2xq5Z9OxmV6sQfNp8C7qYmiOlHYODOGqNNa0e9jvchGQ==} + '@next/swc-win32-arm64-msvc@14.2.1': + resolution: {integrity: sha512-YGHklaJ/Cj/F0Xd8jxgj2p8po4JTCi6H7Z3Yics3xJhm9CPIqtl8erlpK1CLv+HInDqEWfXilqatF8YsLxxA2Q==} engines: {node: '>= 10'} cpu: [arm64] os: [win32] - '@next/swc-win32-ia32-msvc@14.1.0': - resolution: {integrity: sha512-XXIuB1DBRCFwNO6EEzCTMHT5pauwaSj4SWs7CYnME57eaReAKBXCnkUE80p/pAZcewm7hs+vGvNqDPacEXHVkw==} + '@next/swc-win32-ia32-msvc@14.2.1': + resolution: {integrity: sha512-o+ISKOlvU/L43ZhtAAfCjwIfcwuZstiHVXq/BDsZwGqQE0h/81td95MPHliWCnFoikzWcYqh+hz54ZB2FIT8RA==} engines: {node: '>= 10'} cpu: [ia32] os: [win32] - '@next/swc-win32-x64-msvc@14.1.0': - resolution: {integrity: sha512-9WEbVRRAqJ3YFVqEZIxUqkiO8l1nool1LmNxygr5HWF8AcSYsEpneUDhmjUVJEzO2A04+oPtZdombzzPPkTtgg==} + '@next/swc-win32-x64-msvc@14.2.1': + resolution: {integrity: sha512-GmRoTiLcvCLifujlisknv4zu9/C4i9r0ktsA8E51EMqJL4bD4CpO7lDYr7SrUxCR0tS4RVcrqKmCak24T0ohaw==} engines: {node: '>= 10'} cpu: [x64] os: [win32] @@ -2379,6 +2353,10 @@ packages: resolution: {integrity: sha512-V7/fPHgl+jsVPXqqeOzT8egNj2iBIVt+ECeMMG8TdcnTikP3oaBtUVqpT/gYCR68aEBJSF+XbYUxStjbFMqIIA==} engines: {node: '>= 16'} + '@noble/hashes@1.4.0': + resolution: {integrity: sha512-V1JJ1WTRUqHHrOSh597hURcMqVKVGL/ea3kv0gSnEdsEZ0/+VyPghM1lMNGc00z7CIQorSvbKpuJkxvuHbvdbg==} + engines: {node: '>= 16'} + '@noble/secp256k1@1.7.1': resolution: {integrity: sha512-hOUk6AyBFmqVrv7k5WAw/LpszxVbj9gGN4JRkIX52fdFAj1UA61KXmZDvqVEm+pOyec3+fIeZB02LYa/pWOArw==} @@ -2402,15 +2380,15 @@ packages: resolution: {integrity: sha512-I/s6F7yKUDdtMsoBWXJe8Qz40Tui5vsuKCWJEWVL+5q9sSWRzzx6v2KeNsOBEwd94j0eWkpWCH4yB6rZg9Mf0w==} engines: {node: '>=8.0.0'} - '@opentelemetry/context-zone-peer-dep@1.22.0': - resolution: {integrity: sha512-kQ0K6syNQQYj4Pd5Q4yiUAsuthpzWDmVPPqMUSACh9ArRYLq8ZY9JdnkqkT1RyeecpSDh5uG+x5dbx6drpJ79g==} + '@opentelemetry/context-zone-peer-dep@1.23.0': + resolution: {integrity: sha512-3ia5w2y3CGHIhMSggttliGbeRBWclIyMMXdfRCcit1NHg1ocieA9qYxyUEetbOvPrQpoti3O3k+5eyQUv7r8nw==} engines: {node: '>=14'} peerDependencies: '@opentelemetry/api': '>=1.0.0 <1.9.0' zone.js: ^0.10.2 || ^0.11.0 || ^0.13.0 || ^0.14.0 - '@opentelemetry/context-zone@1.22.0': - resolution: {integrity: sha512-ukPkASKUt9l4P3g7Dggntb3jG3dVL4dPXfDc8FUZ6pOCiLa5NRrRPQPbDdCumytbw5Yor9paiXCg/oQgMyYMHw==} + '@opentelemetry/context-zone@1.23.0': + resolution: {integrity: sha512-7piNTrpH+gZNMDDOHIJXCSwp0Xslh3R96HWH5HwXw+4PykR4+jVoXvd6jziQxudX9rFAfu2B64A10DHs4ZWrfA==} engines: {node: '>=14'} '@opentelemetry/core@1.21.0': @@ -2419,8 +2397,8 @@ packages: peerDependencies: '@opentelemetry/api': '>=1.0.0 <1.8.0' - '@opentelemetry/core@1.22.0': - resolution: {integrity: sha512-0VoAlT6x+Xzik1v9goJ3pZ2ppi6+xd3aUfg4brfrLkDBHRIVjMP0eBHrKrhB+NKcDyMAg8fAbGL3Npg/F6AwWA==} + '@opentelemetry/core@1.23.0': + resolution: {integrity: sha512-hdQ/a9TMzMQF/BO8Cz1juA43/L5YGtCSiKoOHmrTEf7VMDAZgy8ucpWx3eQTnQ3gBloRcWtzvcrMZABC3PTSKQ==} engines: {node: '>=14'} peerDependencies: '@opentelemetry/api': '>=1.0.0 <1.9.0' @@ -2431,12 +2409,6 @@ packages: peerDependencies: '@opentelemetry/api': ^1.0.0 - '@opentelemetry/instrumentation-document-load@0.35.0': - resolution: {integrity: sha512-U3zQBjbAF0rm7GT7YJ8DPqgiCdBoshmld4c1pZe3tAGAMa5QPIjonIfSMSvJ2XMh6Nvi+8Rfe3XFCe0cuWIjsQ==} - engines: {node: '>=14'} - peerDependencies: - '@opentelemetry/api': ^1.3.0 - '@opentelemetry/instrumentation-fetch@0.48.0': resolution: {integrity: sha512-y4Zw9VeUUMaowg3aXYZXcaUJQ7IKfpR6sjClrAQOJwWG8LYFpM6NIRSoAeJv/ShfxWWCPWC0P4zgXcKRqpURFQ==} engines: {node: '>=14'} @@ -2473,8 +2445,8 @@ packages: peerDependencies: '@opentelemetry/api': '>=1.0.0 <1.8.0' - '@opentelemetry/resources@1.22.0': - resolution: {integrity: sha512-+vNeIFPH2hfcNL0AJk/ykJXoUCtR1YaDUZM+p3wZNU4Hq98gzq+7b43xbkXjadD9VhWIUQqEwXyY64q6msPj6A==} + '@opentelemetry/resources@1.23.0': + resolution: {integrity: sha512-iPRLfVfcEQynYGo7e4Di+ti+YQTAY0h5mQEUJcHlU9JOqpb4x965O6PZ+wMcwYVY63G96KtdS86YCM1BF1vQZg==} engines: {node: '>=14'} peerDependencies: '@opentelemetry/api': '>=1.0.0 <1.9.0' @@ -2498,8 +2470,8 @@ packages: peerDependencies: '@opentelemetry/api': '>=1.0.0 <1.8.0' - '@opentelemetry/sdk-trace-base@1.22.0': - resolution: {integrity: sha512-pfTuSIpCKONC6vkTpv6VmACxD+P1woZf4q0K46nSUvXFvOFqjBYKFaAMkKD3M1mlKUUh0Oajwj35qNjMl80m1Q==} + '@opentelemetry/sdk-trace-base@1.23.0': + resolution: {integrity: sha512-PzBmZM8hBomUqvCddF/5Olyyviayka44O5nDWq673np3ctnvwMOvNrsUORZjKja1zJbwEuD9niAGbnVrz3jwRQ==} engines: {node: '>=14'} peerDependencies: '@opentelemetry/api': '>=1.0.0 <1.9.0' @@ -2510,8 +2482,8 @@ packages: peerDependencies: '@opentelemetry/api': '>=1.0.0 <1.8.0' - '@opentelemetry/sdk-trace-web@1.22.0': - resolution: {integrity: sha512-id5bUhWYg475xbm4hjwWA4PnWM4duNK1EyFRkZxa3BZNuCITwiKCLvDkVhlE9RK2kvuDOPmcRxgSbU1apF9/1w==} + '@opentelemetry/sdk-trace-web@1.23.0': + resolution: {integrity: sha512-tx9N3hIkd6k567BeujBnpXYdhu3ptYVk0ZkhdcjyQ3I8ZDJ+/JkVtaVNLAuf8hp1buTqNDmxSipALMxEmK2fnw==} engines: {node: '>=14'} peerDependencies: '@opentelemetry/api': '>=1.0.0 <1.9.0' @@ -2520,90 +2492,90 @@ packages: resolution: {integrity: sha512-lkC8kZYntxVKr7b8xmjCVUgE0a8xgDakPyDo9uSWavXPyYqLgYYGdEd2j8NxihRyb6UwpX3G/hFUF4/9q2V+/g==} engines: {node: '>=14'} - '@opentelemetry/semantic-conventions@1.22.0': - resolution: {integrity: sha512-CAOgFOKLybd02uj/GhCdEeeBjOS0yeoDeo/CA7ASBSmenpZHAKGB3iDm/rv3BQLcabb/OprDEsSQ1y0P8A7Siw==} + '@opentelemetry/semantic-conventions@1.23.0': + resolution: {integrity: sha512-MiqFvfOzfR31t8cc74CTP1OZfz7MbqpAnLCra8NqQoaHJX6ncIRTdYOQYBDQ2uFISDq0WY8Y9dDTWvsgzzBYRg==} engines: {node: '>=14'} - '@parcel/watcher-android-arm64@2.4.0': - resolution: {integrity: sha512-+fPtO/GsbYX1LJnCYCaDVT3EOBjvSFdQN9Mrzh9zWAOOfvidPWyScTrHIZHHfJBvlHzNA0Gy0U3NXFA/M7PHUA==} + '@parcel/watcher-android-arm64@2.4.1': + resolution: {integrity: sha512-LOi/WTbbh3aTn2RYddrO8pnapixAziFl6SMxHM69r3tvdSm94JtCenaKgk1GRg5FJ5wpMCpHeW+7yqPlvZv7kg==} engines: {node: '>= 10.0.0'} cpu: [arm64] os: [android] - '@parcel/watcher-darwin-arm64@2.4.0': - resolution: {integrity: sha512-T/At5pansFuQ8VJLRx0C6C87cgfqIYhW2N/kBfLCUvDhCah0EnLLwaD/6MW3ux+rpgkpQAnMELOCTKlbwncwiA==} + '@parcel/watcher-darwin-arm64@2.4.1': + resolution: {integrity: sha512-ln41eihm5YXIY043vBrrHfn94SIBlqOWmoROhsMVTSXGh0QahKGy77tfEywQ7v3NywyxBBkGIfrWRHm0hsKtzA==} engines: {node: '>= 10.0.0'} cpu: [arm64] os: [darwin] - '@parcel/watcher-darwin-x64@2.4.0': - resolution: {integrity: sha512-vZMv9jl+szz5YLsSqEGCMSllBl1gU1snfbRL5ysJU03MEa6gkVy9OMcvXV1j4g0++jHEcvzhs3Z3LpeEbVmY6Q==} + '@parcel/watcher-darwin-x64@2.4.1': + resolution: {integrity: sha512-yrw81BRLjjtHyDu7J61oPuSoeYWR3lDElcPGJyOvIXmor6DEo7/G2u1o7I38cwlcoBHQFULqF6nesIX3tsEXMg==} engines: {node: '>= 10.0.0'} cpu: [x64] os: [darwin] - '@parcel/watcher-freebsd-x64@2.4.0': - resolution: {integrity: sha512-dHTRMIplPDT1M0+BkXjtMN+qLtqq24sLDUhmU+UxxLP2TEY2k8GIoqIJiVrGWGomdWsy5IO27aDV1vWyQ6gfHA==} + '@parcel/watcher-freebsd-x64@2.4.1': + resolution: {integrity: sha512-TJa3Pex/gX3CWIx/Co8k+ykNdDCLx+TuZj3f3h7eOjgpdKM+Mnix37RYsYU4LHhiYJz3DK5nFCCra81p6g050w==} engines: {node: '>= 10.0.0'} cpu: [x64] os: [freebsd] - '@parcel/watcher-linux-arm-glibc@2.4.0': - resolution: {integrity: sha512-9NQXD+qk46RwATNC3/UB7HWurscY18CnAPMTFcI9Y8CTbtm63/eex1SNt+BHFinEQuLBjaZwR2Lp+n7pmEJPpQ==} + '@parcel/watcher-linux-arm-glibc@2.4.1': + resolution: {integrity: sha512-4rVYDlsMEYfa537BRXxJ5UF4ddNwnr2/1O4MHM5PjI9cvV2qymvhwZSFgXqbS8YoTk5i/JR0L0JDs69BUn45YA==} engines: {node: '>= 10.0.0'} cpu: [arm] os: [linux] - '@parcel/watcher-linux-arm64-glibc@2.4.0': - resolution: {integrity: sha512-QuJTAQdsd7PFW9jNGaV9Pw+ZMWV9wKThEzzlY3Lhnnwy7iW23qtQFPql8iEaSFMCVI5StNNmONUopk+MFKpiKg==} + '@parcel/watcher-linux-arm64-glibc@2.4.1': + resolution: {integrity: sha512-BJ7mH985OADVLpbrzCLgrJ3TOpiZggE9FMblfO65PlOCdG++xJpKUJ0Aol74ZUIYfb8WsRlUdgrZxKkz3zXWYA==} engines: {node: '>= 10.0.0'} cpu: [arm64] os: [linux] - '@parcel/watcher-linux-arm64-musl@2.4.0': - resolution: {integrity: sha512-oyN+uA9xcTDo/45bwsd6TFHa7Lc7hKujyMlvwrCLvSckvWogndCEoVYFNfZ6JJ2KNL/6fFiGPcbjp8jJmEh5Ng==} + '@parcel/watcher-linux-arm64-musl@2.4.1': + resolution: {integrity: sha512-p4Xb7JGq3MLgAfYhslU2SjoV9G0kI0Xry0kuxeG/41UfpjHGOhv7UoUDAz/jb1u2elbhazy4rRBL8PegPJFBhA==} engines: {node: '>= 10.0.0'} cpu: [arm64] os: [linux] - '@parcel/watcher-linux-x64-glibc@2.4.0': - resolution: {integrity: sha512-KphV8awJmxU3q52JQvJot0QMu07CIyEjV+2Tb2ZtbucEgqyRcxOBDMsqp1JNq5nuDXtcCC0uHQICeiEz38dPBQ==} + '@parcel/watcher-linux-x64-glibc@2.4.1': + resolution: {integrity: sha512-s9O3fByZ/2pyYDPoLM6zt92yu6P4E39a03zvO0qCHOTjxmt3GHRMLuRZEWhWLASTMSrrnVNWdVI/+pUElJBBBg==} engines: {node: '>= 10.0.0'} cpu: [x64] os: [linux] - '@parcel/watcher-linux-x64-musl@2.4.0': - resolution: {integrity: sha512-7jzcOonpXNWcSijPpKD5IbC6xC7yTibjJw9jviVzZostYLGxbz8LDJLUnLzLzhASPlPGgpeKLtFUMjAAzM+gSA==} + '@parcel/watcher-linux-x64-musl@2.4.1': + resolution: {integrity: sha512-L2nZTYR1myLNST0O632g0Dx9LyMNHrn6TOt76sYxWLdff3cB22/GZX2UPtJnaqQPdCRoszoY5rcOj4oMTtp5fQ==} engines: {node: '>= 10.0.0'} cpu: [x64] os: [linux] - '@parcel/watcher-wasm@2.4.0': - resolution: {integrity: sha512-MNgQ4WCbBybqQ97KwR/hqJGYTg3+s8qHpgIyFWB2qJOBvoJWbXuJGmm4ZkPLq2bMaANqCZqrXwmKYagZTkMKZA==} + '@parcel/watcher-wasm@2.4.1': + resolution: {integrity: sha512-/ZR0RxqxU/xxDGzbzosMjh4W6NdYFMqq2nvo2b8SLi7rsl/4jkL8S5stIikorNkdR50oVDvqb/3JT05WM+CRRA==} engines: {node: '>= 10.0.0'} bundledDependencies: - napi-wasm - '@parcel/watcher-win32-arm64@2.4.0': - resolution: {integrity: sha512-NOej2lqlq8bQNYhUMnOD0nwvNql8ToQF+1Zhi9ULZoG+XTtJ9hNnCFfyICxoZLXor4bBPTOnzs/aVVoefYnjIg==} + '@parcel/watcher-win32-arm64@2.4.1': + resolution: {integrity: sha512-Uq2BPp5GWhrq/lcuItCHoqxjULU1QYEcyjSO5jqqOK8RNFDBQnenMMx4gAl3v8GiWa59E9+uDM7yZ6LxwUIfRg==} engines: {node: '>= 10.0.0'} cpu: [arm64] os: [win32] - '@parcel/watcher-win32-ia32@2.4.0': - resolution: {integrity: sha512-IO/nM+K2YD/iwjWAfHFMBPz4Zqn6qBDqZxY4j2n9s+4+OuTSRM/y/irksnuqcspom5DjkSeF9d0YbO+qpys+JA==} + '@parcel/watcher-win32-ia32@2.4.1': + resolution: {integrity: sha512-maNRit5QQV2kgHFSYwftmPBxiuK5u4DXjbXx7q6eKjq5dsLXZ4FJiVvlcw35QXzk0KrUecJmuVFbj4uV9oYrcw==} engines: {node: '>= 10.0.0'} cpu: [ia32] os: [win32] - '@parcel/watcher-win32-x64@2.4.0': - resolution: {integrity: sha512-pAUyUVjfFjWaf/pShmJpJmNxZhbMvJASUpdes9jL6bTEJ+gDxPRSpXTIemNyNsb9AtbiGXs9XduP1reThmd+dA==} + '@parcel/watcher-win32-x64@2.4.1': + resolution: {integrity: sha512-+DvS92F9ezicfswqrvIRM2njcYJbd5mb9CUgtrHCHmvn7pPPa+nMDRu1o1bYYz/l5IB2NVGNJWiH7h1E58IF2A==} engines: {node: '>= 10.0.0'} cpu: [x64] os: [win32] - '@parcel/watcher@2.4.0': - resolution: {integrity: sha512-XJLGVL0DEclX5pcWa2N9SX1jCGTDd8l972biNooLFtjneuGqodupPQh6XseXIBBeVIMaaJ7bTcs3qGvXwsp4vg==} + '@parcel/watcher@2.4.1': + resolution: {integrity: sha512-HNjmfLQEVRZmHRET336f20H/8kOozUGwk7yajvsonjNxbj2wBTK1WsQuHkD5yYh9RxFGL2EyDHryOihOwUoKDA==} engines: {node: '>= 10.0.0'} '@pkgjs/parseargs@0.11.0': @@ -3594,8 +3566,8 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@remix-run/router@1.15.0': - resolution: {integrity: sha512-HOil5aFtme37dVQTB6M34G95kPM3MMuqSmIRVCC52eKV+Y/tGSqw9P3rWhlAx6A+mz+MoX+XxsGsNJbaI5qCgQ==} + '@remix-run/router@1.15.3': + resolution: {integrity: sha512-Oy8rmScVrVxWZVOpEF57ovlnhpZ8CCPlnIIumVcV9nFdiSIrus99+Lw78ekXyGvVDlIsFJbSfmSovJUhCWYV3w==} engines: {node: '>=14.0.0'} '@rollup/plugin-inject@5.0.5': @@ -3696,8 +3668,8 @@ packages: cpu: [x64] os: [win32] - '@scure/base@1.1.5': - resolution: {integrity: sha512-Brj9FiG2W1MRQSTB212YVPRrcbjkv48FoZi/u4l/zds/ieRrqsh7aUf6CLwkAq61oKXr/ZlTzlY66gLIj3TFTQ==} + '@scure/base@1.1.6': + resolution: {integrity: sha512-ok9AWwhcgYuGG3Zfhyqg+zwl+Wn5uE+dwC0NV/2qQkx4dABbb/bx96vWu8NSj+BNjjSjno+JRYRjle1jV08k3g==} '@scure/bip32@1.3.3': resolution: {integrity: sha512-LJaN3HwRbfQK0X1xFSi0Q9amqOgzQnnDngIt+ZlsBC3Bm7/nE7K0kwshZHyaru79yIVRv/e1mQAjZyuZG6jOFQ==} @@ -3762,61 +3734,61 @@ packages: '@stablelib/x25519@1.0.3': resolution: {integrity: sha512-KnTbKmUhPhHavzobclVJQG5kuivH+qDLpe84iRqX3CLrKp881cF160JvXJ+hjn1aMyCwYOKeIZefIH/P5cJoRw==} - '@storyblok/js@3.0.7': - resolution: {integrity: sha512-m6MpUhjEpDWMKftyjJhTkthd/I6LZ9xhuT/Wxa1e99Cf4niVC5jgMVPQ5tOsUgn3D8BKNL+6PI3hEj5dGKB9xw==} + '@storyblok/js@3.0.8': + resolution: {integrity: sha512-JY+abbswBId84Ubr0yRwNpq5Klf9546Ia2Qs1pn6en5Trz8o6EcBJIwxvR6evjJ0Vp2cLKT7MV1yfGLAtnzycA==} - '@storyblok/react@3.0.9': - resolution: {integrity: sha512-N362hE+sBH3QebCrJtqgzGI2l+Dre8hfNJmAJvEtx1bEtfvu6hcA5ch5eQjjILxgDMwtseA0BnCXP7zoqJ2KCg==} + '@storyblok/react@3.0.10': + resolution: {integrity: sha512-7cyUdCoT/kTXFJLojPhqhguvcTjvIizPh3wf90Q99zrD7quMALX9E6Ag/gSGkyWdMTQ7Wcbh2zEQaZxEDx0FRg==} peerDependencies: react: ^17.0.0 || ^18.0.0 react-dom: ^17.0.0 || ^18.0.0 - '@storybook/addon-actions@8.0.5': - resolution: {integrity: sha512-l1UBvD61DRcfuBTkdqMp2K+60M1QpvhNpYxMmJ/JEYQjzWTg/s9gLmX8eSjgA5bi0sjjJ5i1ddr9d8nHrmwfPA==} + '@storybook/addon-actions@8.0.8': + resolution: {integrity: sha512-F3qpN0n53d058EroW1A2IlzrsFNR5p2srLY4FmXB80nxAKV8oqoDI4jp15zYlf8ThcJoQl36plT8gx3r1BpANA==} - '@storybook/addon-backgrounds@8.0.5': - resolution: {integrity: sha512-XKSnJm6bGVkG9hv6VSK+djz7ZbxEHwVpsSEUKtOEt/ScLFxU0mlsH8dd5aMy9/MAYuB93Y+bJ2SR5kyOjmi1zQ==} + '@storybook/addon-backgrounds@8.0.8': + resolution: {integrity: sha512-lrAJjVxDeXSK116rDajb56TureZiT76ygraP22/IvU3IcWCEcRiKYwlay8WgCTbJHtFmdBpelLBapoT46+IR9Q==} - '@storybook/addon-controls@8.0.5': - resolution: {integrity: sha512-iUL89OJQse9DlZkwY8jhyl12L/qziUkwbdSgQJxRIEceW6vrHAmc5VGwneS7N3pBuiOIKQQmMhAQ660JXHM7eQ==} + '@storybook/addon-controls@8.0.8': + resolution: {integrity: sha512-7xANN18CLYsVthuSXwxKezqpelEKJlT9xaYLtw5vvD00btW5g3vxq+Z/A31OkS2OuaH2bE0GfRCoG2OLR8yQQA==} - '@storybook/addon-docs@8.0.5': - resolution: {integrity: sha512-FMlJLPjyNpqY68/9SJH7350/ncySKMGBQQAQnPrMtGVBld8eeOo3DB+GSffOSbmitomq+t16HOprvPSekTMlPw==} + '@storybook/addon-docs@8.0.8': + resolution: {integrity: sha512-HNiY4ESH9WxGS6QpIpURzdSbyDxbRh7VIgbvUrePSKajlsL4RFN/gdnn5TnSL00tOP/w+Cy/fXcbljMUKy7Ivg==} - '@storybook/addon-essentials@8.0.5': - resolution: {integrity: sha512-1yjwf9ibKn2rVqv+fqxACoIjsaUsimSEx8QwjIl2krDNhMULXzFeVubTQ09gXSVEnHUR1nKX3X9qOXJQ2bOFlQ==} + '@storybook/addon-essentials@8.0.8': + resolution: {integrity: sha512-bc9KJk7SPM2I5CCJEAP8R5leP+74IYxhWPiTN8Y1YFmf3MA1lpDJbwy+RfuRZ2ZKnSKszCXCVzU/T10HKUHLZw==} - '@storybook/addon-highlight@8.0.5': - resolution: {integrity: sha512-z4Aad6Dcf9gQIEPkR8WVIdRj/5RARI6SeIX3JRJoZ4l6fu7AvTZKDWPRpwLXSpEQqdeOb7l7FrZHISmXdrPoiQ==} + '@storybook/addon-highlight@8.0.8': + resolution: {integrity: sha512-KKD7xiNhxZQM4fdDidtcla6jSzgN1f9qe1AwFSHLXwIW22+4c97Vgf+AookN7cJvB77HxRUnvQH//zV1CJEDug==} - '@storybook/addon-interactions@8.0.5': - resolution: {integrity: sha512-o0wcWAeQR8pN5T1l87i+CH/xSp70/0uyQAmJ9xPxg/60dHbDgjTvn/pwg+hhKu+olrFVpt85yQPzQ4pNhAFlUw==} + '@storybook/addon-interactions@8.0.8': + resolution: {integrity: sha512-UOPKOe97uV4psH1O1YeE0oFuUQgD1Vkv95JjHjQG8KiPWvwdiezV7rrjPvw8RApnSKUopjFETs8F5D59i4eARw==} - '@storybook/addon-links@8.0.5': - resolution: {integrity: sha512-B5EAs0+LxgYH59GSVVAfgW8rAzGUmzdAAR3XJKbTXp3/d9e27uXwpLVYhi/VQHKLIsshDQRbc0s109APHs/SjQ==} + '@storybook/addon-links@8.0.8': + resolution: {integrity: sha512-iRI/W9I6fOom5zfZvsu53gfJtuhBSMmhgI/u5uZbAbfEoNL5D1PqpDXD4ygM8Vvlx90AZNZ2W5slEe7gCZOMyA==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 peerDependenciesMeta: react: optional: true - '@storybook/addon-measure@8.0.5': - resolution: {integrity: sha512-B5c33aREHbTA+An7Q5Q1yEXUB0ETE5yPnGgsXuxVl6LyYqyqjai1qE48vcmkA7S+vt5MR6Sf9Lmy3UL+kkyYzQ==} + '@storybook/addon-measure@8.0.8': + resolution: {integrity: sha512-akyoa+1F2ripV6ELF2UbxiSHv791LWSAVK7gsD/a5eJfKZMm5yoHjcY7Icdkc/ctE+pyjAQNhkXTixUngge09w==} - '@storybook/addon-onboarding@8.0.5': - resolution: {integrity: sha512-EZknQHmQfm/jmQu6u97Tb6FXuhOexLUOQ/onsHeZ5yNIFa+m1mXg8StZXzCXNm2xUGsC5ISwTi9NMQ6e7Cg+nQ==} + '@storybook/addon-onboarding@8.0.8': + resolution: {integrity: sha512-dgZuoITOYRcZSBtTGQTQKXoUTuxjUH0WRcYxiZUCQBEUGnXnMbThDz6eFhq9QC0YWLYwyHjo5iAUpnEvBNpb3A==} - '@storybook/addon-outline@8.0.5': - resolution: {integrity: sha512-ouQ4IOBw7AAyukkaQwNe2MRTpDbCv+j4z76BRE7qvu9PckifsWsm00pTQwvbNdjiogS8c3EPMV5aBGIPoK/zAQ==} + '@storybook/addon-outline@8.0.8': + resolution: {integrity: sha512-8Gxs095ekpa5YZolLSs5cWbWK94GZTevEUX8GFeLGIz9sf1KO3kmEO3eC5ogzDoB0cloqvbmVAJvYJ3FWiUx8w==} - '@storybook/addon-toolbars@8.0.5': - resolution: {integrity: sha512-1QrvHtsQI1RNzDrkTMUFaEzZRRKHYrkj/rYpf6B2QyFvaZ6XY4urxSrmssLENuPsoDF4ABU2j6j4BAUgWjIe4A==} + '@storybook/addon-toolbars@8.0.8': + resolution: {integrity: sha512-PZxlK+/Fwk2xcrpr5kkXYjCbBaEjAWcEHWq7mhQReMFaAs5AJE8dvmeQ7rmPDOHnlg4+YsARDFKz5FJtthRIgg==} - '@storybook/addon-viewport@8.0.5': - resolution: {integrity: sha512-Y2sTsNeQctfLBPQYuOjMGSQY4lUycZRZblToU0q6siJ030QjgpuEMcu1yDt654T6jnp/s4VwRS6yaZHnqZ97Mw==} + '@storybook/addon-viewport@8.0.8': + resolution: {integrity: sha512-nOuc6DquGvm24c/A0HFTgeEN/opd58ebs1KLaEEq1f6iYV0hT2Gpnk0Usg/seOiFtJnj3NyAM46HSkZz06T8Sw==} - '@storybook/blocks@8.0.5': - resolution: {integrity: sha512-zfcwJ0yE5HM28BxZeNU4SYF8zxq2PEqLP1aWCdRuZT9k8lgnBwAKzlvt50LtPzOfGtKuGnvIEriELx/i+Qh4Sw==} + '@storybook/blocks@8.0.8': + resolution: {integrity: sha512-kwsjhvnmFEaIl51QHJt/83G7mZ5YbzFKnWCwy8WUpi0xvVcyoFQSGGgwR3XRrzGfUEPK8P2FDHeKw1bLzyIejA==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -3826,11 +3798,11 @@ packages: react-dom: optional: true - '@storybook/builder-manager@8.0.5': - resolution: {integrity: sha512-63gIHfgdhpL3rcHkOcGm29PbIkgx2bLRxi2RYa0osGMtfBIePFXJh7nol+4KpaRkNR8RZg+N9omVGjyhLj7IWg==} + '@storybook/builder-manager@8.0.8': + resolution: {integrity: sha512-0uihNTpTou0RFMM6PQLlfCxDxse9nIDEb83AmWE/OUnpKDDY9+WFupVWGaZc9HfH9h4Yqre2fiuK1b7KNYe7AQ==} - '@storybook/builder-vite@8.0.5': - resolution: {integrity: sha512-tKNxobC9tlYyUAayxoiOOnoMbg4RxoAwPOpPLnQYUfHLw1ecp/g8sGD6tisyFONyOIv7uF9gbzWLUfMjn9F2sw==} + '@storybook/builder-vite@8.0.8': + resolution: {integrity: sha512-ibWOxoHczCc6ttMQqiSXv29m/e44sKVoc1BJluApQcjCXl9g6QXyN45zV70odjCxMfNy7EQgUjCA0mgAgMHSIw==} peerDependencies: '@preact/preset-vite': '*' typescript: '>= 4.3.x' @@ -3844,62 +3816,62 @@ packages: vite-plugin-glimmerx: optional: true - '@storybook/builder-webpack5@8.0.5': - resolution: {integrity: sha512-tt7ZrRscsg+AJayOLXYCsDleNzNy0UHjfs7FnDzh331Ulyt2WeGkcELTZmHnBg5WwVBgjGTYmxYKSgGXF0hKXQ==} + '@storybook/builder-webpack5@8.0.8': + resolution: {integrity: sha512-NG7XHNSZ0+1DtHYhE36vDtXlZHVUUjC0TqqYQ3+On6Ormih80MndbmPjL6XhfleES8YzG28MhNePdOY867rehg==} peerDependencies: typescript: '*' peerDependenciesMeta: typescript: optional: true - '@storybook/channels@8.0.5': - resolution: {integrity: sha512-UWzjt4STzBgg28Q6FxqyJWwXLWYM6oSz9gGKMUJbn2vRAlEJaG3XwvpT39YFVDUIuiFSHguV5cisXY5Be4nOZw==} + '@storybook/channels@8.0.8': + resolution: {integrity: sha512-L3EGVkabv3fweXnykD/GlNUDO5HtwlIfSovC7BF4MmP7662j2/eqlZrJxDojGtbv11XHjWp/UJHUIfKpcHXYjQ==} - '@storybook/cli@8.0.5': - resolution: {integrity: sha512-6t0d2ILXonC7bsq6Dx6tFTls2a/JeOR7lr3UgoVaiFu5l1M5pOB6uI9JG14F+UmsCifXGJdvxR38CBwVSKtg/Q==} + '@storybook/cli@8.0.8': + resolution: {integrity: sha512-RnSdgykh2i7es1rQ7CNGpDrKK/PN1f0xjwpkAHXCEB6T9KpHBmqDquzZp+N127a1HBHHXy018yi4wT8mSQyEoA==} hasBin: true - '@storybook/client-logger@8.0.5': - resolution: {integrity: sha512-6D7zvPPnLuTVlBNpZSdzEbk5xfWKhEG0gejtPnhjG9R5YzC/dFckdUI0gtvwGWUVMWhL3H/0gjRjhKujUMRY1Q==} + '@storybook/client-logger@8.0.8': + resolution: {integrity: sha512-a4BKwl9NLFcuRgMyI7S4SsJeLFK0LCQxIy76V6YyrE1DigoXz4nA4eQxdjLf7JVvU0EZFmNSfbVL/bXzzWKNXA==} - '@storybook/codemod@8.0.5': - resolution: {integrity: sha512-1ub3RRT+/ziJUdS2rz5UkQWu6teGULxHDMDRFhTrGYHVOgkc/lLnFuF0rgrLxsFdTmKIBTKN2xFfSE7z9Palsg==} + '@storybook/codemod@8.0.8': + resolution: {integrity: sha512-ufEBLciLmLlAh+L6lGgBObTiny6odXMKqiJOewQ9XfIN0wdWdyRUf5QdZIPOdfgHhWF2Q2HeswiulsoHm8Z/hA==} - '@storybook/components@8.0.5': - resolution: {integrity: sha512-trBWV9gc4YhFhMKUevkBY9Mdk9WmYmthpBfmF0Y2vgrJQidUqkkQqfAMQThSJ0KLpV8k3fB27s5d93rgrr50Rg==} + '@storybook/components@8.0.8': + resolution: {integrity: sha512-EpBExH4kHWQJSfA8QXJJ5AsLRUGi5X/zWY7ffiYW8rtnBmEnk3T9FpmnyJlY1A8sdd3b1wQ07JGBDHfL1mdELw==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - '@storybook/core-common@8.0.5': - resolution: {integrity: sha512-WCu2ZPMq1FuO33tYuCPb9joWaZGtJgfKvXXVGLYYg6LufpbWOI+IB7OWmHahtEdKuaNoIr3CEf1p3zm12NNiYA==} + '@storybook/core-common@8.0.8': + resolution: {integrity: sha512-CL15M2oeQW+Rb1l7ciunLDI2Re+ojL2lX1ZFAiDedcOU+JHsdq43zAuXoZVzp8icUi2AUSwEjZIxGCSingj+JQ==} - '@storybook/core-events@8.0.5': - resolution: {integrity: sha512-26c0m7P7qt9zUKcD1noWLPJmZ+iS6MKXNngUgNBSxTtG20NFV3nxD0/tx9FzNfDVZDF6cHINkWj+FVBAaVuBVQ==} + '@storybook/core-events@8.0.8': + resolution: {integrity: sha512-PtuvR7vS4glDEdCfKB4f1k3Vs1C3rTWP2DNbF+IjjPhNLMBznCdzTAPcz+NUIBvpjjGnhKwWikJ0yj931YjSVg==} - '@storybook/core-server@8.0.5': - resolution: {integrity: sha512-aQGHRQZF4jbMqBT0sGptql+S3hiNksi4n6pPJPxGf6TE8TyRA1x7USjmvXHwv59vpmMm9HaRpGWzWCo4SqwNqw==} + '@storybook/core-server@8.0.8': + resolution: {integrity: sha512-tSEueEBttbSohzhZVN2bFNlFx3eoqQ7p57cjQLKXXwKygS2qKxISKnFy+Y0nj20APz68Wj51kx0rN0nGALeegw==} - '@storybook/core-webpack@8.0.5': - resolution: {integrity: sha512-xGjOgMFPEiQeofXyUM1rlnpqSJ3FVcuPkrbh8rDLC8mTzGeEqqhNH5hluywk1H8UqYlaNrVhPi6/iGWhRUvlgw==} + '@storybook/core-webpack@8.0.8': + resolution: {integrity: sha512-wt7Ty2/aVAWSYbtXkpJ/oCi+NKc2SVrZVqqsasdt9IjAS4LTATZ89Ku0u1FKI61OhZbckVXBW5bPXJYibCK24Q==} - '@storybook/csf-plugin@8.0.5': - resolution: {integrity: sha512-R6VjQl+I9k4oc3OfOHOFzz5T20WROHOZ5/zkkFKM/1YUa6QNpMcuStOtr/qcAx+QizmQqmxgJwTFapFBP5yWjg==} + '@storybook/csf-plugin@8.0.8': + resolution: {integrity: sha512-x9WspjZGcqXENj/Vn4Qmn0oTW93KN2V9wqpflWwCUJTByl2MugQsh5xRuDbs2yM7dD6zKcqRyPaTY+GFZBW+Vg==} - '@storybook/csf-tools@8.0.5': - resolution: {integrity: sha512-fW2hAO57ayq7eHjpS5jXy/AKm3oZxApngd9QU/bC800EyTWENwLPxFnHLAE86N57Dc3bcE4PTFCyqpxzE4Uc7g==} + '@storybook/csf-tools@8.0.8': + resolution: {integrity: sha512-Ji5fpoGym/MSyHJ6ALghVUUecwhEbN0On+jOZ2VPkrkATi9UDtryHQPdF60HKR63Iv53xRuWRzudB6zm43RTzw==} '@storybook/csf@0.0.1': resolution: {integrity: sha512-USTLkZze5gkel8MYCujSRBVIrUQ3YPBrLOx7GNk/0wttvVtlzWXAq9eLbQ4p/NicGxP+3T7KPEMVV//g+yubpw==} - '@storybook/csf@0.1.3': - resolution: {integrity: sha512-IPZvXXo4b3G+gpmgBSBqVM81jbp2ePOKsvhgJdhyZJtkYQCII7rg9KKLQhvBQM5sLaF1eU6r0iuwmyynC9d9SA==} + '@storybook/csf@0.1.4': + resolution: {integrity: sha512-B9UI/lsQMjF+oEfZCI6YXNoeuBcGZoOP5x8yKbe2tIEmsMjSztFKkpPzi5nLCnBk/MBtl6QJeI3ksJnbsWPkOw==} '@storybook/docs-mdx@3.0.0': resolution: {integrity: sha512-NmiGXl2HU33zpwTv1XORe9XG9H+dRUC1Jl11u92L4xr062pZtrShLmD4VKIsOQujxhhOrbxpwhNOt+6TdhyIdQ==} - '@storybook/docs-tools@8.0.5': - resolution: {integrity: sha512-IzQMlsumiBgHAh5TTZTinNcedU98l0S0hczbTgjXQWgTp3//RHO36LYowAeFrB6V9SACYs/Q47iB15K4b2dqUg==} + '@storybook/docs-tools@8.0.8': + resolution: {integrity: sha512-p/MIrDshXMl/fiCRlfG9StkRYI1QlUyUSQQ/YDBFlBfWcJYARIt3TIvQyvs3Q/apnQNcDXIW663W57s7WHTO2w==} '@storybook/global@5.0.0': resolution: {integrity: sha512-FcOqPAXACP0I3oJ/ws6/rrPT9WGhu915Cg8D02a9YxLo0DE9zI+a9A5gRGvmQ09fiWPukqI8ZAEoQEdWUKMQdQ==} @@ -3911,17 +3883,17 @@ packages: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - '@storybook/instrumenter@8.0.5': - resolution: {integrity: sha512-ccGFGSquIPZBcf3dP+I5kwSblAOlQNH7+4vunYJtUrlXN+VROS9LAf87W/btwxQVI1Zj17BUH9CoBrDxWbJ2VA==} + '@storybook/instrumenter@8.0.8': + resolution: {integrity: sha512-bCu9Tu48WOQ8ZNUed+FCSMr3Uw81b4yW/knD2goqx15nD33B7xXBNSI2GTHH5YaEHVyIFFggQcKHLkELXWlsoA==} - '@storybook/manager-api@8.0.5': - resolution: {integrity: sha512-2Q+DI9XU1U4EBrihnyfo+kuRK7T3Ce2eSlWEHHkTZ3OYSf+EhFxLUA6AOfMoA1B0nzNEr6SUkW8DBvMrtdTQMA==} + '@storybook/manager-api@8.0.8': + resolution: {integrity: sha512-1HU4nfLRi0sD2uw229gb8EQyufNWrLvMNpg013kBsBXRd+Dj4dqF3v+KrYFNtteY7riC4mAJ6YcQ4tBUNYZDug==} - '@storybook/manager@8.0.5': - resolution: {integrity: sha512-eJtf2SaAzOmRV03zn/pFRTqBua8/qy+VDtgaaCFmAyrjsUHO/bcHpbu9vnwP8a+C8ojJnthooi3yz755UTDYYg==} + '@storybook/manager@8.0.8': + resolution: {integrity: sha512-pWYHSDmgT8p/XbQMKuDPdgB6KzjePI6dU5KQ5MERYfch1UiuGPVm1HHDlxxSfHW0IIXw9Qnwq4L0Awe4qhvJKQ==} - '@storybook/nextjs@8.0.5': - resolution: {integrity: sha512-57lx8avdIqBHlFsJj7fNlrhmAMvCrK+KwZjEi3K4+6h2ORwnOp9HvMW2/b4iAGOB2HxvezjuQJ3XMWLY6Stv2A==} + '@storybook/nextjs@8.0.8': + resolution: {integrity: sha512-nhfmKdjf6+yV7ME6VDeNCQ0gobf7Z17rSitWuaYXY9xQepE6IRfBsenHENAOq6Y4PWeSb9FZlH3T6aURXM64lg==} engines: {node: '>=18.0.0'} peerDependencies: next: ^13.5.0 || ^14.0.0 @@ -3935,11 +3907,11 @@ packages: webpack: optional: true - '@storybook/node-logger@8.0.5': - resolution: {integrity: sha512-ssT8YCcCqgc89ee+EeExCxcOpueOsU05iek2roR+NCZnoCL1DmzcUp8H9t0utLaK/ngPV8zatlzSDVgKTHSIJw==} + '@storybook/node-logger@8.0.8': + resolution: {integrity: sha512-ymps3MMTxtMWq0eDiXk1iO7iv0Eg0PuUvOpPPohEJauGzU9THv81xx01aaHKSprFFJYD2LMQr1aFuUplItO12g==} - '@storybook/preset-react-webpack@8.0.5': - resolution: {integrity: sha512-+V4eEtbsaDcSgRFP6/8ZAUcmyEyF2o6iBVZ72prs2GO4rInrYFMUZZRIXRSvH92x8BurJck2ap9EGjFt08o0Ag==} + '@storybook/preset-react-webpack@8.0.8': + resolution: {integrity: sha512-ucdSQWE3VzleDprd5pmVbUbPPfkU9yLYvJ9pOO4XZngPY4fZdL3vWMsjhBL/PPs2tQ+pC3s6rWnrOqkSMmJ+7w==} engines: {node: '>=18.0.0'} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -3949,11 +3921,11 @@ packages: typescript: optional: true - '@storybook/preview-api@8.0.5': - resolution: {integrity: sha512-BSDVTR9/X6DHVA4rIhN6d/SB6PiaRdns8ky/TKTzwFEyO3NOASHe8051O+uNtXzgCtMUj/8imNrTdMTYgUm1LA==} + '@storybook/preview-api@8.0.8': + resolution: {integrity: sha512-khgw2mNiBrSZS3KNGQPzjneL3Csh3BOq0yLAtJpT7CRSrI/YjlE7jjcTkKzoxW+UCgvNTnLvsowcuzu82e69fA==} - '@storybook/preview@8.0.5': - resolution: {integrity: sha512-D2uY0LTjkGbpNwJJeqtv1NieBTtvt0IEEKH+srMNXOOM+KascTYGbBlEPkYSf5bZdMft5c1GXglVIhJIqTZntg==} + '@storybook/preview@8.0.8': + resolution: {integrity: sha512-J/ooKcvDV1s7ROH7lF/0vOyWDOgDB7bN6vS67J1WK0HLvMGaqUzU+q3ndakGzu0LU/jvUBqEFSZd1ALWyZINDQ==} '@storybook/react-docgen-typescript-plugin@1.0.6--canary.9.0c3f3b7.0': resolution: {integrity: sha512-KUqXC3oa9JuQ0kZJLBhVdS4lOneKTOopnNBK4tUAgoxWQ3u/IjzdueZjFr7gyBrXMoU6duutk3RQR9u8ZpYJ4Q==} @@ -3961,22 +3933,22 @@ packages: typescript: '>= 4.x' webpack: '>= 4' - '@storybook/react-dom-shim@8.0.5': - resolution: {integrity: sha512-KIcLkCml5dIiVeChMyudz8Q/pZ/T86Y1LrHZvYD/t3iXH+HOOvg6KNsY6TZFM93Rqhk10AIEUNCgYzj2/QjddA==} + '@storybook/react-dom-shim@8.0.8': + resolution: {integrity: sha512-vOMlAz2HH/xfgZmSO28fCEmp5/tPxINDEdBDVLdZeYG6R1j5jlMRyaNcXt4cPNDkyc///PkB/K767hg4goca/Q==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - '@storybook/react-vite@8.0.5': - resolution: {integrity: sha512-VXxoyb3Zw5ReQwWoP64qMIy/iIS6B9PuLIEPDt7wM/5IMFljQozvNaarPQf0mNJxPkGT6zmiBn9WS06wPLPF0w==} + '@storybook/react-vite@8.0.8': + resolution: {integrity: sha512-3xN+/KgcjEAKJ0cM8yFYk8+T59kgKSMlQaavoIgQudbEErSubr9l7jDWXH44afQIEBVs++ayYWrbEN2wyMGoug==} engines: {node: '>=18.0.0'} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 vite: ^4.0.0 || ^5.0.0 - '@storybook/react@8.0.5': - resolution: {integrity: sha512-Vwq4xt8eSKE/PLPvunOFDlzBki6L3mP7LNVWCLkQba7vzuCOPjSZ0+95v/K8XQn3jVRXAMUnlPW1SKg21aKJdw==} + '@storybook/react@8.0.8': + resolution: {integrity: sha512-pPTlQntl09kv7qkAFYsxUq6qCLeeZC/K3yGFBGMy2Dc+PFjBYdT6mt2I8GB3twK0Cq5gJESlLj48QnYLQ/9PbA==} engines: {node: '>=18.0.0'} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -3986,17 +3958,17 @@ packages: typescript: optional: true - '@storybook/router@8.0.5': - resolution: {integrity: sha512-1d4CqNJB5sA25HCd7jZ4eVqMsdlD4r4SuFA/eR6fas0lk7yjVCpG1zWfvSSk5tKoVcNLSptc/TYBiSr2rcGRvw==} + '@storybook/router@8.0.8': + resolution: {integrity: sha512-wdFdNsEKweigU9VkGZtpb7GhBJLWzbABcwOuEy2h0d5m7egB97hy9BxhANdqkC+PbAHrabxC99Ca3wTj50MoDg==} - '@storybook/telemetry@8.0.5': - resolution: {integrity: sha512-KTt6wP78dn9hfsc0sR2CcFT/DWJgYqYuFBhc3NDgtT41ATLGgGniCQW9PtKLQc+FMofKejz1S+XXk0W322Pjxg==} + '@storybook/telemetry@8.0.8': + resolution: {integrity: sha512-Uvj4nN01vQgjXZYKF/GKTFE85//Qm4ZTlJxTFWid+oYWc8NpAyJvlsJkj/dsEn4cLrgnJx2e4xvnx0Umr2ck+A==} - '@storybook/test@8.0.5': - resolution: {integrity: sha512-XpiRLsmZlkjoAGf3d7zcInByR25evYIzm3W4ST8+EPoI4Tcd/U+dGUQ9A6aNUuC6fJQ8Jh0M+EqNAZtcDT8lrA==} + '@storybook/test@8.0.8': + resolution: {integrity: sha512-YXgwgg1e8ggDg2BlgeExwdN3MjeExnDvybQIUugADgun87tRIujJFCdjh0PAxg0Qvln6+lU3w+3Y2aryvX42RA==} - '@storybook/theming@8.0.5': - resolution: {integrity: sha512-Hy4hJaKg6UUyivkUM77nCHccv4/lO++ZG9F88qBFVPdBlCwMHHnUrR7Hgje5cCVAy0jK6LyYlD3cWO6nS9OR8w==} + '@storybook/theming@8.0.8': + resolution: {integrity: sha512-43hkNz7yo8Bl97AO2WbxIGprUqMhUZyK9g8383bd30gSxy9nfND/bdSdcgmA8IokDn8qp37Q4QmxtUZdhjMzZQ==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -4006,71 +3978,71 @@ packages: react-dom: optional: true - '@storybook/types@8.0.5': - resolution: {integrity: sha512-lYXwYF9qooQhYJkg3HWr6PD/vnQK+iO8fSKS8jtntwgJUKJvTbGZKAhNnS8WzNEI9jIp5QXFsSA367NjIDPaeQ==} + '@storybook/types@8.0.8': + resolution: {integrity: sha512-NGsgCsXnWlaZmHenHDgHGs21zhweZACkqTNsEQ7hvsiF08QeiKAdgJLQg3YeGK73h9mFDRP9djprUtJYab6vnQ==} - '@swc/core-darwin-arm64@1.4.0': - resolution: {integrity: sha512-UTJ/Vz+s7Pagef6HmufWt6Rs0aUu+EJF4Pzuwvr7JQQ5b1DZeAAUeUtkUTFx/PvCbM8Xfw4XdKBUZfrIKCfW8A==} + '@swc/core-darwin-arm64@1.4.15': + resolution: {integrity: sha512-m1D89yN82QTp8AcSm3p9YgcfbdOqc9WmhvnMwoS0lUs6RIIFekI2tEboc9Rp9gre/1lkgzPYI+KGge1BaQzScA==} engines: {node: '>=10'} cpu: [arm64] os: [darwin] - '@swc/core-darwin-x64@1.4.0': - resolution: {integrity: sha512-f8v58u2GsGak8EtZFN9guXqE0Ep10Suny6xriaW2d8FGqESPyNrnBzli3aqkSeQk5gGqu2zJ7WiiKp3XoUOidA==} + '@swc/core-darwin-x64@1.4.15': + resolution: {integrity: sha512-aQBTfKrXIKiBrZY5MtqMRtbXTYCnMxUir4qy0me0+sIWTVxQ7znBxrwQsXsbPHIIZ+pohcLCg0HKfybev0NqXA==} engines: {node: '>=10'} cpu: [x64] os: [darwin] - '@swc/core-linux-arm-gnueabihf@1.4.0': - resolution: {integrity: sha512-q2KAkBzmPcTnRij/Y1fgHCKAGevUX/H4uUESrw1J5gmUg9Qip6onKV80lTumA1/aooGJ18LOsB31qdbwmZk9OA==} + '@swc/core-linux-arm-gnueabihf@1.4.15': + resolution: {integrity: sha512-EZhdJBjzct/0UiF3sPD1w+LbLFJOsvym4b3njyl7jnP+py5rz2WlIJDxVKcS+b1RKEebLU7OsnYXzuXFjq0dwA==} engines: {node: '>=10'} cpu: [arm] os: [linux] - '@swc/core-linux-arm64-gnu@1.4.0': - resolution: {integrity: sha512-SknGu96W0mzHtLHWm+62fk5+Omp9fMPFO7AWyGFmz2tr8EgRRXtTSrBUnWhAbgcalnhen48GsvtMdxf1KNputg==} + '@swc/core-linux-arm64-gnu@1.4.15': + resolution: {integrity: sha512-plKc41q8PgOm5rm3gEmPs+0skuddW0CrXPsERFzyaJ8gKTEwOVtg3sa3folXzsIgw0ODr61xzqYnh7zgJllMGg==} engines: {node: '>=10'} cpu: [arm64] os: [linux] - '@swc/core-linux-arm64-musl@1.4.0': - resolution: {integrity: sha512-/k3TDvpBRMDNskHooNN1KqwUhcwkfBlIYxRTnJvsfT2C7My4pffR+4KXmt0IKynlTTbCdlU/4jgX4801FSuliw==} + '@swc/core-linux-arm64-musl@1.4.15': + resolution: {integrity: sha512-4Gj0z1bo1rI3pKanqv5grH4EZ/pJRGZXG9LnkZ9FBrg4LUgptEumomca1UYFgBifHi3hirJsOQacuKFpw2NCEg==} engines: {node: '>=10'} cpu: [arm64] os: [linux] - '@swc/core-linux-x64-gnu@1.4.0': - resolution: {integrity: sha512-GYsTMvNt5+WTVlwwQzOOWsPMw6P/F41u5PGHWmfev8Nd4QJ1h3rWPySKk4mV42IJwH9MgQCVSl3ygwNqwl6kFg==} + '@swc/core-linux-x64-gnu@1.4.15': + resolution: {integrity: sha512-7nZrrYvHpklwrQboHGXMvpefOP4m5Jf46ncQSztprZ0Ah2Z8vZhehuEiUo9xOB3jl5Vdhw2KP4uAhzzppES+PA==} engines: {node: '>=10'} cpu: [x64] os: [linux] - '@swc/core-linux-x64-musl@1.4.0': - resolution: {integrity: sha512-jGVPdM/VwF7kK/uYRW5N6FwzKf/FnDjGIR3RPvQokjYJy7Auk+3Oj21C0Jev7sIT9RYnO/TrFEoEozKeD/z2Qw==} + '@swc/core-linux-x64-musl@1.4.15': + resolution: {integrity: sha512-LJYSnttiR5vhnn7D92HAEgy/D4Jc5MDpLurF4MHyhN/9wlhQPfa5/2fdF3ogtZTzr1cckxyipYdyuzfVF+WISg==} engines: {node: '>=10'} cpu: [x64] os: [linux] - '@swc/core-win32-arm64-msvc@1.4.0': - resolution: {integrity: sha512-biHYm1AronEKlt47O/H8sSOBM2BKXMmWT+ApvlxUw50m1RGNnVnE0bgY7tylFuuSiWyXsQPJbmUV708JqORXVg==} + '@swc/core-win32-arm64-msvc@1.4.15': + resolution: {integrity: sha512-q+u2toNPU9OQonSUI0pB6BIGkNsIrvok6AbUJYpmvZqawmNrngSs9quS2WDe58vfIe9r0lVenweY6WIRlGMFTg==} engines: {node: '>=10'} cpu: [arm64] os: [win32] - '@swc/core-win32-ia32-msvc@1.4.0': - resolution: {integrity: sha512-TL5L2tFQb19kJwv6+elToGBj74QXCn9j+hZfwQatvZEJRA5rDK16eH6oAE751dGUArhnWlW3Vj65hViPvTuycw==} + '@swc/core-win32-ia32-msvc@1.4.15': + resolution: {integrity: sha512-eEtU3yQXuBJO5tiokLz0sf0lABVNqR/l6p071v1ltDJGUD4vSer5kHOmm0Hn1zWB43EGda6b17Bb2DEHZ1DpKA==} engines: {node: '>=10'} cpu: [ia32] os: [win32] - '@swc/core-win32-x64-msvc@1.4.0': - resolution: {integrity: sha512-e2xVezU7XZ2Stzn4i7TOQe2Kn84oYdG0M3A7XI7oTdcpsKCcKwgiMoroiAhqCv+iN20KNqhnWwJiUiTj/qN5AA==} + '@swc/core-win32-x64-msvc@1.4.15': + resolution: {integrity: sha512-9CWhKyrDgrotsciAYFSsDIYgi/4LRbvJusyAtA3RBeXar1eNouFPwdlwj8zTqtJsOteZAUpbZSret0Z59cTqCQ==} engines: {node: '>=10'} cpu: [x64] os: [win32] - '@swc/core@1.4.0': - resolution: {integrity: sha512-wc5DMI5BJftnK0Fyx9SNJKkA0+BZSJQx8430yutWmsILkHMBD3Yd9GhlMaxasab9RhgKqZp7Ht30hUYO5ZDvQg==} + '@swc/core@1.4.15': + resolution: {integrity: sha512-7Wl4d4CCJ8xnhArfomHe+x5C0roewn0mRedtiZlTsV/9t61z2who18E9bSZI/IRjS00FGJCAlbbd7aWKLpyieg==} engines: {node: '>=10'} peerDependencies: '@swc/helpers': ^0.5.0 @@ -4087,20 +4059,20 @@ packages: '@swc/helpers@0.4.36': resolution: {integrity: sha512-5lxnyLEYFskErRPenYItLRSge5DjrJngYKdVjRSrWfza9G6KkgHEXi0vUZiyUeMU5JfXH1YnvXZzSp8ul88o2Q==} - '@swc/helpers@0.5.2': - resolution: {integrity: sha512-E4KcWTpoLHqwPHLxidpOqQbcrZVgi0rsmmZXUle1jXmJfuIf/UWpczUJ7MZZ5tlxytgJXyp0w4PGkkeLiuIdZw==} + '@swc/helpers@0.5.10': + resolution: {integrity: sha512-CU+RF9FySljn7HVSkkjiB84hWkvTaI3rtLvF433+jRSBL2hMu3zX5bGhHS8C80SM++h4xy8hBSnUHFQHmRXSBw==} - '@swc/types@0.1.5': - resolution: {integrity: sha512-myfUej5naTBWnqOCc/MdVOLVjXUXtIA+NpDrDBKJtLLg2shUjBu3cZmB/85RyitKc55+lUUyl7oRfLOvkr2hsw==} + '@swc/helpers@0.5.5': + resolution: {integrity: sha512-KGYxvIOXcceOAbEk4bi/dVLEK9z8sZ0uBB3Il5b1rhfClSpcX0yfRO0KmTkqR2cnQDymwLB+25ZyMzICg/cm/A==} - '@tanstack/query-core@4.13.4': - resolution: {integrity: sha512-DMIy6tgGehYoRUFyoR186+pQspOicyZNSGvBWxPc2CinHjWOQ7DPnGr9zmn/kE9xK4Zd3GXd25Nj3X20+TF6Lw==} + '@swc/types@0.1.6': + resolution: {integrity: sha512-/JLo/l2JsT/LRd80C3HfbmVpxOAJ11FO2RCEslFrgzLltoP9j8XIbsyDcfCt2WWyX+CM96rBoNM+IToAkFOugg==} - '@tanstack/query-core@5.18.1': - resolution: {integrity: sha512-fYhrG7bHgSNbnkIJF2R4VUXb4lF7EBiQjKkDc5wOlB7usdQOIN4LxxHpDxyE3qjqIst1WBGvDtL48T0sHJGKCw==} + '@tanstack/query-core@4.36.1': + resolution: {integrity: sha512-DJSilV5+ytBP1FbFcEJovv4rnnm/CokuVvrBEtW/Va9DvuJ3HksbXUJEpI0aV1KtuL4ZoO9AVE6PyNLzF7tLeA==} - '@tanstack/react-query@4.13.5': - resolution: {integrity: sha512-p2HcWGuqfvG7Pz04un4phWZeXzlITD7Ue0gMXjD56g8y3rP1r5qEYC/BckffrZLf4dZtQeVPCWOa8RYAqx036g==} + '@tanstack/react-query@4.36.1': + resolution: {integrity: sha512-y7ySVHFyyQblPl3J3eQBWpXZkliroki3ARnBKsdJchlgt7yJLRDUcf4B8soufgiYt3pEQIkBWBx1N9/ZPIeUWw==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -4111,25 +4083,25 @@ packages: react-native: optional: true - '@tanstack/react-virtual@3.0.4': - resolution: {integrity: sha512-tiqKW/e2MJVCr7/pRUXulpkyxllaOclkHNfhKTo4pmHjJIqnhMfwIjc1Q1R0Un3PI3kQywywu/791c8z9u0qeA==} + '@tanstack/react-virtual@3.3.0': + resolution: {integrity: sha512-QFxmTSZBniq15S0vSZ55P4ToXquMXwJypPXyX/ux7sYo6a2FX3/zWoRLLc4eIOGWTjvzqcIVNKhcuFb+OZL3aQ==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - '@tanstack/virtual-core@3.0.0': - resolution: {integrity: sha512-SYXOBTjJb05rXa2vl55TTwO40A6wKu0R5i1qQwhJYNDIqaIGF7D0HsLw+pJAyi2OvntlEIVusx3xtbbgSUi6zg==} + '@tanstack/virtual-core@3.3.0': + resolution: {integrity: sha512-A0004OAa1FcUkPHeeGoKgBrAgjH+uHdDPrw1L7RpkwnODYqRvoilqsHPs8cyTjMg1byZBbiNpQAq2TlFLIaQag==} '@terra-money/feather.js@1.2.1': resolution: {integrity: sha512-OyXkWriNwb0lCF45eMmtjdOPEmfGKJxgGSnxpM7VxD0Vqr1qqtlcYyQG9wOHXNQrExvZv+uo922B2ZA4S77HsQ==} engines: {node: '>=16'} - '@terra-money/station-connector@1.0.16': - resolution: {integrity: sha512-m16a4KkUWF+Mhmf4LiBO1TvCdIabJFudbCC+Cr2JwknZnPQ2SmMHSfyBhS5SaJGWIhmHd4yZalRdNBr+QUc6hA==} + '@terra-money/station-connector@1.1.0': + resolution: {integrity: sha512-InaiuZjLBF92s88aFHxDXJZS751mFr+pa5xbjwyIWWhfWV6RdONXGvuOZ79OPg6H8fUQHJGfosNxeNteGO+Yaw==} engines: {node: '>=16'} peerDependencies: '@cosmjs/amino': ^0.31.0 - '@terra-money/feather.js': ^1.0.8 + '@terra-money/feather.js': ^3.0.0-beta.1 axios: ^0.27.2 '@terra-money/terra.js@3.1.10': @@ -4176,8 +4148,8 @@ packages: vitest: optional: true - '@testing-library/react@14.2.2': - resolution: {integrity: sha512-SOUuM2ysCvjUWBXTNfQ/ztmnKDmqaiPV3SvoIuyxMUca45rbSWWAT/qB8CUs/JQ/ux/8JFs9DNdFQ3f6jH3crA==} + '@testing-library/react@14.3.1': + resolution: {integrity: sha512-H99XjUhWQw0lTgyMN05W3xQG1Nh4lq574D8keFf1dDoNTJgp66VbJozRaczoF+wsiaPJNt/TcnfpLGufGxSrZQ==} engines: {node: '>=14'} peerDependencies: react: ^18.0.0 @@ -4240,8 +4212,8 @@ packages: '@types/eslint-scope@3.7.7': resolution: {integrity: sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==} - '@types/eslint@8.56.7': - resolution: {integrity: sha512-SjDvI/x3zsZnOkYZ3lCt9lOZWZLB2jIlNKz+LBgCtDurK0JZcwucxYHn1w2BJkD34dgX9Tjnak0txtq4WTggEA==} + '@types/eslint@8.56.9': + resolution: {integrity: sha512-W4W3KcqzjJ0sHg2vAq9vfml6OhsJ53TcUjUqfzzZf/EChUtwspszj/S0pzMxnfRcO55/iGq47dscXw71Fxc4Zg==} '@types/estree@0.0.51': resolution: {integrity: sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==} @@ -4249,8 +4221,8 @@ packages: '@types/estree@1.0.5': resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==} - '@types/express-serve-static-core@4.17.43': - resolution: {integrity: sha512-oaYtiBirUOPQGSWNGPWnzyAFJ0BP3cwvN4oWZQY+zUBwpVIGsKUkpBpSztp74drYcjavs7SKFZ4DX1V2QeN8rg==} + '@types/express-serve-static-core@4.19.0': + resolution: {integrity: sha512-bGyep3JqPCRry1wq+O5n7oiBgGWmeIJXPjXXCo8EK0u8duZGSYar7cGqd3ML2JUsLGeB7fmc06KYo9fLGWqPvQ==} '@types/express@4.17.21': resolution: {integrity: sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==} @@ -4282,8 +4254,8 @@ packages: '@types/long@4.0.2': resolution: {integrity: sha512-MqTGEo5bj5t157U6fA/BiDynNkn0YknVdh48CMPkTSpFTVmvao5UQmm7uEF6xBEo7qIMAlY/JSleYaE6VOdpaA==} - '@types/mdx@2.0.12': - resolution: {integrity: sha512-H9VZ9YqE+H28FQVchC83RCs5xQ2J7mAAv6qdDEaWmXEVl3OpdH+xfrSUzQ1lp7U7oSTRZ0RvW08ASPJsYBi7Cw==} + '@types/mdx@2.0.13': + resolution: {integrity: sha512-+OWZQfAYyio6YkJb3HLxDrvnx6SWWDbC0zVPfBRzUk0/nqoDyf6dNxQi3eArPe8rJ473nobTMQ/8Zk+LxJ+Yuw==} '@types/mime@1.3.5': resolution: {integrity: sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==} @@ -4303,8 +4275,11 @@ packages: '@types/node@18.15.13': resolution: {integrity: sha512-N+0kuo9KgrUQ1Sn/ifDXsvg0TTleP7rIy4zOBGECxAljqvqfqpTfzx0Q1NUedOixRMBfe2Whhb056a42cWs26Q==} - '@types/node@20.11.17': - resolution: {integrity: sha512-QmgQZGWu1Yw9TDyAP9ZzpFJKynYNeOvwMJmaxABfieQoVoiVOS6MN1WSpqpRcbeA5+RW82kraAVxCCJg+780Qw==} + '@types/node@18.19.31': + resolution: {integrity: sha512-ArgCD39YpyyrtFKIqMDvjz79jto5fcI/SVUs2HwB+f0dAzq68yqOdyaSivLiLugSziTpNXLQrVb7RZFmdZzbhA==} + + '@types/node@20.12.7': + resolution: {integrity: sha512-wq0cICSkRLVaf3UGLMGItu/PtdY7oaXaI/RVU+xliKVOtRna3PRY57ZDfztpDL0n11vfymMUnXv8QwYCO7L1wg==} '@types/normalize-package-data@2.4.4': resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==} @@ -4315,11 +4290,11 @@ packages: '@types/pretty-hrtime@1.0.3': resolution: {integrity: sha512-nj39q0wAIdhwn7DGUyT9irmsKK1tV0bd5WFEhgpqNTMFZ8cE+jieuTphCW0tfdm47S2zVT5mr09B28b1chmQMA==} - '@types/prop-types@15.7.11': - resolution: {integrity: sha512-ga8y9v9uyeiLdpKddhxYQkxNDrfvuPrlFb0N1qnZZByvcElJaXthF1UhvCh9TLWJBEHeNtdnbysW7Y6Uq8CVng==} + '@types/prop-types@15.7.12': + resolution: {integrity: sha512-5zvhXYtRNRluoE/jAp4GVsSduVUzNWKkOZrCDBWYtE7biZywwdC2AcEzg+cSMLFRfVgeAFqpfNabiPjxFddV1Q==} - '@types/qs@6.9.14': - resolution: {integrity: sha512-5khscbd3SwWMhFqylJBLQ0zIu7c1K6Vz0uBIt915BI3zV0q1nfjRQD3RqSBcPaO6PHEF4ov/t9y89fSiyThlPA==} + '@types/qs@6.9.15': + resolution: {integrity: sha512-uXHQKES6DQKKCLh441Xv/dwxOq1TVS3JPUMlEqoEglvlhR6Mxnlew/Xq/LRVHpLyk7iK3zODe1qYHIMltO7XGg==} '@types/range-parser@1.2.7': resolution: {integrity: sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==} @@ -4327,20 +4302,17 @@ packages: '@types/react-copy-to-clipboard@5.0.7': resolution: {integrity: sha512-Gft19D+as4M+9Whq1oglhmK49vqPhcLzk8WfvfLvaYMIPYanyfLy0+CwFucMJfdKoSFyySPmkkWn8/E6voQXjQ==} - '@types/react-dom@18.2.19': - resolution: {integrity: sha512-aZvQL6uUbIJpjZk4U8JZGbau9KDeAwMfmhyWorxgBkqDIEf6ROjRozcmPIicqsUwPUjbkDfHKgGee1Lq65APcA==} + '@types/react-dom@18.2.25': + resolution: {integrity: sha512-o/V48vf4MQh7juIKZU2QGDfli6p1+OOi5oXx36Hffpc9adsHeXjVp8rHuPkjd8VT8sOJ2Zp05HR7CdpGTIUFUA==} - '@types/react@18.2.55': - resolution: {integrity: sha512-Y2Tz5P4yz23brwm2d7jNon39qoAtMMmalOQv6+fEFt1mT+FcM3D841wDpoUvFXhaYenuROCy3FZYqdTjM7qVyA==} + '@types/react@18.2.79': + resolution: {integrity: sha512-RwGAGXPl9kSXwdNTafkOEuFrTBD5SA2B3iEB96xi8+xu5ddUa/cpvyVCSNn+asgLCTHkb5ZxN8gbuibYJi4s1w==} '@types/resolve@1.20.6': resolution: {integrity: sha512-A4STmOXPhMUtHH+S6ymgE2GiBSMqf4oTvcQZMcHzokuTLVYzXTB8ttjcgxOVaAp2lGwEdzZ0J+cRbbeevQj1UQ==} - '@types/scheduler@0.16.8': - resolution: {integrity: sha512-WZLiwShhwLRmeV6zH+GkbOFT6Z6VklCItrDioxUnv+u4Ll+8vKeFySoFyK/0ctcRpOmwAicELfmys1sDc/Rw+A==} - - '@types/semver@7.5.6': - resolution: {integrity: sha512-dn1l8LaMea/IjDoHNd9J52uBbInB796CDffS6VdIxvqYCPSG0V0DzHp76GpaWnlhg88uYyPbXCDIowa86ybd5A==} + '@types/semver@7.5.8': + resolution: {integrity: sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ==} '@types/send@0.17.4': resolution: {integrity: sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==} @@ -4431,14 +4403,14 @@ packages: '@ungap/structured-clone@1.2.0': resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==} - '@vanilla-extract/css@1.14.1': - resolution: {integrity: sha512-V4JUuHNjZgl64NGfkDJePqizkNgiSpphODtZEs4cCPuxLAzwOUJYATGpejwimJr1n529kq4DEKWexW22LMBokw==} + '@vanilla-extract/css@1.14.2': + resolution: {integrity: sha512-OasEW4ojGqqRiUpsyEDUMrSkLnmwbChtafkogpCZ1eDAgAZ9eY9CHLYodj2nB8aV5T25kQ5shm92k25ngjYhhg==} '@vanilla-extract/dynamic@2.1.0': resolution: {integrity: sha512-8zl0IgBYRtgD1h+56Zu13wHTiMTJSVEa4F7RWX9vTB/5Xe2KtjoiqApy/szHPVFA56c+ex6A4GpCQjT1bKXbYw==} - '@vanilla-extract/private@1.0.3': - resolution: {integrity: sha512-17kVyLq3ePTKOkveHxXuIJZtGYs+cSoev7BlP+Lf4916qfDhk/HBjvlYDe8egrea7LNPHKwSZJK/bzZC+Q6AwQ==} + '@vanilla-extract/private@1.0.4': + resolution: {integrity: sha512-8FGD6AejeC/nXcblgNCM5rnZb9KXa4WNkR03HCWtdJBpANjTgjHEglNLFnhuvdQ78tC6afaxBPI+g7F2NX3tgg==} '@vanilla-extract/recipes@0.5.2': resolution: {integrity: sha512-IcDw3tFOcSJ+DUxL8MIGbg03eyccYb6NBO/rcgp439PDuHxo5GIQefVeGc1L5mIr/lUVPwDc1N5OXTHiGpiz1A==} @@ -4465,18 +4437,12 @@ packages: '@vitest/spy@1.3.1': resolution: {integrity: sha512-xAcW+S099ylC9VLU7eZfdT9myV67Nor9w9zhf0mGCYJSO+zM2839tOeROTdikOi/8Qeusffvxb/MyBSOja1Uig==} - '@vitest/spy@1.4.0': - resolution: {integrity: sha512-Ywau/Qs1DzM/8Uc+yA77CwSegizMlcgTJuYGAi0jujOteJOUf1ujunHThYo243KG9nAyWT3L9ifPYZ5+As/+6Q==} - '@vitest/spy@1.5.0': resolution: {integrity: sha512-vu6vi6ew5N5MMHJjD5PoakMRKYdmIrNJmyfkhRpQt5d9Ewhw9nZ5Aqynbi3N61bvk9UvZ5UysMT6ayIrZ8GA9w==} '@vitest/utils@1.3.1': resolution: {integrity: sha512-d3Waie/299qqRyHTm2DjADeTaNdNSVsnwHPWrs20JMpjh6eiVq7ggggweO8rc4arhf6rRkWuHKwvxGvejUXZZQ==} - '@vitest/utils@1.4.0': - resolution: {integrity: sha512-mx3Yd1/6e2Vt/PUC98DcqTirtfxUyAZ32uK82r8rZzbtBeBo+nqgnjx/LvqQdWsrvNtm14VmurNgcf4nqY5gJg==} - '@vitest/utils@1.5.0': resolution: {integrity: sha512-BDU0GNL8MWkRkSRdNFvCUCAVOeHaUlVJ9Tx0TYBZyXaaOTmGtUFObzchCivIBrIwKzvZA7A9sCejVhXM2aY98A==} @@ -4484,8 +4450,8 @@ packages: resolution: {integrity: sha512-ubJLn+vGb8sTdBFX6xAh4kjR5idrtS3RBngQWaJJJpEPBQmxMb8pM2q0FIRs8Is4K6jKy+uEhusMV+7ZBmTzjw==} engines: {node: '>=16'} - '@walletconnect/core@2.11.1': - resolution: {integrity: sha512-T57Vd7YdbHPsy3tthBuwrhaZNafN0+PqjISFRNeJy/bsKdXxpJg2hGSARuOTpCO7V6VcaatqlaSMuG3DrnG5rA==} + '@walletconnect/core@2.12.2': + resolution: {integrity: sha512-7Adv/b3pp9F42BkvReaaM4KS8NEvlkS7AMtwO3uF/o6aRMKtcfTJq9/jgWdKJh4RP8pPRTRFjCw6XQ/RZtT4aQ==} '@walletconnect/environment@1.0.1': resolution: {integrity: sha512-T426LLZtHj8e8rYnKfzsw1aG6+M0BT1ZxayMdv/p8yM0MU+eJDISqNY3/bccxRr4LrF9csq02Rhqt08Ibl0VRg==} @@ -4516,8 +4482,8 @@ packages: '@react-native-async-storage/async-storage': optional: true - '@walletconnect/logger@2.0.1': - resolution: {integrity: sha512-SsTKdsgWm+oDTBeNE/zHxxr5eJfZmE9/5yp/Ku+zJtcTAjELb3DXueWkDXmE9h8uHIbJzIb5wj5lPdzyrjT6hQ==} + '@walletconnect/logger@2.1.2': + resolution: {integrity: sha512-aAb28I3S6pYXZHQm5ESB+V6rDqIYfsnHaQyzFbwUUBFY4H0OXx/YtTl8lvhUNhMMfb9UxbwEBS253TlXUYJWSw==} '@walletconnect/relay-api@1.0.9': resolution: {integrity: sha512-Q3+rylJOqRkO1D9Su0DPE3mmznbAalYapJ9qmzDgK28mYF9alcP3UwG/og5V7l7CFOqzCLi7B8BvcBUrpDj0Rg==} @@ -4528,8 +4494,8 @@ packages: '@walletconnect/safe-json@1.0.2': resolution: {integrity: sha512-Ogb7I27kZ3LPC3ibn8ldyUr5544t3/STow9+lzz7Sfo808YD7SBWk7SAsdBFlYgP2zDRy2hS3sKRcuSRM0OTmA==} - '@walletconnect/sign-client@2.11.1': - resolution: {integrity: sha512-s3oKSx6/F5X2WmkV1jfJImBFACf9Km5HpTb+n5q+mobJVpUQw/clvoVyIrNNppLhm1V1S/ylHXh0qCrDppDpCA==} + '@walletconnect/sign-client@2.12.2': + resolution: {integrity: sha512-cM0ualXj6nVvLqS4BDNRk+ZWR+lubcsz/IHreH+3wYrQ2sV+C0fN6ctrd7MMGZss0C0qacWCx0pm62ZBuoKvqA==} '@walletconnect/time@1.0.2': resolution: {integrity: sha512-uzdd9woDcJ1AaBZRhqy5rNC9laqWGErfc4dxA9a87mPdKOgWMD85mcFo9dIYIts/Jwocfwn07EC6EzclKubk/g==} @@ -4537,14 +4503,14 @@ packages: '@walletconnect/types@2.11.0': resolution: {integrity: sha512-AB5b1lrEbCGHxqS2vqfCkIoODieH+ZAUp9rA1O2ftrhnqDJiJK983Df87JhYhECsQUBHHfALphA8ydER0q+9sw==} - '@walletconnect/types@2.11.1': - resolution: {integrity: sha512-UbdbX+d6MOK0AXKxt5imV3KvAcLVpZUHylaRDIP5ffwVylM/p4DHnKppil1Qq5N+IGDr3RsUwLGFkKjqsQYRKw==} + '@walletconnect/types@2.12.2': + resolution: {integrity: sha512-9CmwTlPbrFTzayTL9q7xM7s3KTJkS6kYFtH2m1/fHFgALs6pIUjf1qAx1TF2E4tv7SEzLAIzU4NqgYUt2vWXTg==} - '@walletconnect/utils@2.11.1': - resolution: {integrity: sha512-wRFDHN86dZ05mCET1H3912odIeQa8j7cZKxl1FlWRpV2YsILj9HCYSX6Uq2brwO02Kv2vryke44G1r8XI/LViA==} + '@walletconnect/utils@2.12.2': + resolution: {integrity: sha512-zf50HeS3SfoLv1N9GPl2IXTZ9TsXfet4usVAsZmX9P6/Xzq7d/7QakjVQCHH/Wk1O9XkcsfeoZoUhRxoMJ5uJw==} - '@walletconnect/web3wallet@1.10.1': - resolution: {integrity: sha512-lXyfljLLQ/76F5ftgaKaIoPfj/R2Mi2Tv2JnIXNonlIlAITdghYVby+xYbh4b+0yldf8fr8lqxFuHBuVoWhMjw==} + '@walletconnect/web3wallet@1.11.2': + resolution: {integrity: sha512-jrxXmZyg+czkHXg4d0jdhxajjfbgPvS9dW4UzdGdz12dXsX7CFgZxz+LWc/oakhLyngUtwHtyBlgaFWxamS3AQ==} '@walletconnect/window-getters@1.0.1': resolution: {integrity: sha512-vHp+HqzGxORPAN8gY03qnbTMnhqIwjeRJNOMOAzePRg4xVEEE2WvYsI9G2NMjOknA8hnuYbU3/hwLcKbjhc8+Q==} @@ -4552,6 +4518,11 @@ packages: '@walletconnect/window-metadata@1.0.1': resolution: {integrity: sha512-9koTqyGrM2cqFRW517BPY/iEtUDx2r1+Pwwu5m7sJ7ka79wi3EyqhqcICk/yDmv6jAS1rjKgTKXlEhanYjijcA==} + '@wardenprotocol/wardjs@file:../wardjs': + resolution: {directory: ../wardjs, type: directory} + peerDependencies: + '@tanstack/react-query': ^4.36.1 + '@webassemblyjs/ast@1.12.1': resolution: {integrity: sha512-EKfMUOPRRUTy5UII4qJDGPpqfwjOmZ5jeGFwid9mnoqIFK+e0vqoi1qH56JpmZSzEL53jKnNzScdmftJyG5xWg==} @@ -4756,8 +4727,8 @@ packages: argparse@2.0.1: resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} - aria-hidden@1.2.3: - resolution: {integrity: sha512-xcLxITLe2HYa1cnYnwCjkOO1PqUHQpozB8x9AR0OgWN2woOBi5kSDVxKfd0b7sb1hw5qFeJhXm9H1nu3xSfLeQ==} + aria-hidden@1.2.4: + resolution: {integrity: sha512-y+CcFFwelSXpLZk/7fMB2mUbGtX9lKycf1MWJ7CaTIERyitVlyQx6C+sxcROU2BAJ24OiZyK+8wj2i8AlBoS3A==} engines: {node: '>=10'} aria-query@5.1.3: @@ -4777,8 +4748,8 @@ packages: resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} engines: {node: '>=8'} - asn1.js@5.4.1: - resolution: {integrity: sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA==} + asn1.js@4.10.1: + resolution: {integrity: sha512-p32cOF5q0Zqs9uBiONKYLm6BClCoBCM5O9JfeUSlnQLBTxYdTK+pW+nXflm8UkKd2UYlEbYz5qEi0JuZR9ckSw==} assert@2.1.0: resolution: {integrity: sha512-eLHpSK/Y4nhMJ07gDaAzoX/XAKS8PSaojml3M0DM4JpV1LAi5JOJ/p6H/XWrl8L+DzVEvVCW1z3vWAaB9oTsQw==} @@ -4800,8 +4771,8 @@ packages: resolution: {integrity: sha512-kNOjDqAh7px0XWNI+4QbzoiR/nTkHAWNud2uvnJquD1/x5a7EQZMJT0AczqK0Qn67oY/TTQ1LbUKajZpp3I9tQ==} engines: {node: '>=8.0.0'} - autoprefixer@10.4.17: - resolution: {integrity: sha512-/cpVNRLSfhOtcGflT13P2794gVSgmPgTR+erw5ifnMLZb0UnSlkK4tquLmkd3BhA+nLo5tX8Cu0upUsGKvKbmg==} + autoprefixer@10.4.19: + resolution: {integrity: sha512-BaENR2+zBZ8xXhM4pUaKUxlVdxZ0EZhjvbopwnXmxRUfqDmwSpC2lAi/QXvx7NRdPCo1WKEcEF6mV64si1z4Ew==} engines: {node: ^10 || ^12 || >=14} hasBin: true peerDependencies: @@ -4820,8 +4791,8 @@ packages: axios@1.6.0: resolution: {integrity: sha512-EZ1DYihju9pwVB+jg67ogm+Tmqc6JmhamRN6I4Zt8DfZu5lbcQGw3ozH9lFejSJgs/ibaef3A9PMXPLeefFGJg==} - axios@1.6.7: - resolution: {integrity: sha512-/hDJGff6/c7u0hDkvkGxR/oy6CbCs8ziCsC7SqmhjfozqiJGc8Z11wrv9z9lYfY4K8l+H9TpjcMDX0xOZmx+RA==} + axios@1.6.8: + resolution: {integrity: sha512-v/ZHtJDU39mDpyBoFVkETcd/uNdxrWRrg3bKpOKzXFA6Bvqopts6ALSMU3y6ijYxbw2B+wPrIv46egTzJXCLGQ==} b4a@1.6.6: resolution: {integrity: sha512-5Tk1HLk6b6ctmjIkAcU/Ujv/1WqiDl0F0JdRCR80VsOcUlHcu7pWeWRlOqQLHfDEsVx9YH/aif5AG4ehoCtTmg==} @@ -4859,14 +4830,14 @@ packages: bare-events@2.2.2: resolution: {integrity: sha512-h7z00dWdG0PYOQEvChhOSWvOfkIKsdZGkWr083FgN/HyoQuebSew/cgirYqh9SCuy/hRvxc5Vy6Fw8xAmYHLkQ==} - bare-fs@2.2.2: - resolution: {integrity: sha512-X9IqgvyB0/VA5OZJyb5ZstoN62AzD7YxVGog13kkfYWYqJYcK0kcqLZ6TrmH5qr4/8//ejVcX4x/a0UvaogXmA==} + bare-fs@2.2.3: + resolution: {integrity: sha512-amG72llr9pstfXOBOHve1WjiuKKAMnebcmMbPWDZ7BCevAoJLpugjuAPRsDINEyjT0a6tbaVx3DctkXIRbLuJw==} bare-os@2.2.1: resolution: {integrity: sha512-OwPyHgBBMkhC29Hl3O4/YfxW9n7mdTr2+SsO29XBWKKJsbgj3mnorDB80r5TiCQgQstgE5ga1qNYrpes6NvX2w==} - bare-path@2.1.0: - resolution: {integrity: sha512-DIIg7ts8bdRKwJRJrUMy/PICEaQZaPGZ26lsSx9MJSwIhSrcdHn7/C8W+XmnG/rKi6BaRcz+JO00CjZteybDtw==} + bare-path@2.1.1: + resolution: {integrity: sha512-OHM+iwRDRMDBsSW7kl3dO62JyHdBKO3B25FB9vNQBPcGHMo4+eA8Yj41Lfbk3pS/seDY+siNge0LdRTulAau/A==} base-x@3.0.9: resolution: {integrity: sha512-H7JU6iBHTal1gp56aKoaa//YUxEaAOUiydvrV/pILqIHXTtqxSkATOnDA2u+jZ/61sD+L/412+7kzXRtWukhpQ==} @@ -4900,8 +4871,8 @@ packages: bignumber.js@9.1.2: resolution: {integrity: sha512-2/mKyZH9K85bzOEfhXDBFZTGd1CTs+5IHpeFQo9luiBG7hghdC851Pj2WAhb6E3R6b9tZj/XKhbg4fum+Kepug==} - binary-extensions@2.2.0: - resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==} + binary-extensions@2.3.0: + resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==} engines: {node: '>=8'} bindings@1.5.0: @@ -4974,9 +4945,9 @@ packages: browserify-rsa@4.1.0: resolution: {integrity: sha512-AdEER0Hkspgno2aR97SAf6vi0y0k8NuOpGnVH3O99rcA5Q6sh8QxcngtHuJ6uXwnfAXNM4Gn1Gb7/MV1+Ymbog==} - browserify-sign@4.2.2: - resolution: {integrity: sha512-1rudGyeYY42Dk6texmv7c4VcQ0EsvVbLwZkA+AQB7SxvXxmcD93jcHie8bzecJ+ChDlmAm2Qyu0+Ccg5uhZXCg==} - engines: {node: '>= 4'} + browserify-sign@4.2.3: + resolution: {integrity: sha512-JWCZW6SKhfhjJxO8Tyiiy+XYB7cqd2S5/+WeYHsKdNKFlCBhKbblba1A/HN/90YwtxKc8tCErjffZl++UNmGiw==} + engines: {node: '>= 0.12'} browserify-zlib@0.1.4: resolution: {integrity: sha512-19OEpq7vWgsH6WkvkBJQDFvJS1uPcbFOQ4v9CU839dO+ZZXUZO6XpE6hNCqvlIIj+4fZvRiJ6DsAQ382GwiyTQ==} @@ -4984,11 +4955,6 @@ packages: browserify-zlib@0.2.0: resolution: {integrity: sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==} - browserslist@4.22.3: - resolution: {integrity: sha512-UAp55yfwNv0klWNapjs/ktHoguxuQNGnOzxYmfnXIS+8AsRDZkSDxg7R1AX3GKzn078SBI5dzwzj/Yx0Or0e3A==} - engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} - hasBin: true - browserslist@4.23.0: resolution: {integrity: sha512-QW8HiM1shhT2GuzkvklfjcKDiWFXHOeFCIA/huJPwHsslwcydgk7X+z2zXpEijP98UCY7HbubZt5J2Zgvf0CaQ==} engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} @@ -5035,10 +5001,6 @@ packages: resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==} engines: {node: '>=8'} - call-bind@1.0.6: - resolution: {integrity: sha512-Mj50FLHtlsoVfRfnHaZvyrooHcrlceNZdL/QBvJJVd9Ta55qCQK0gs4ss2oZDeV9zFCs6ewzYgVE5yfVmfFpVg==} - engines: {node: '>= 0.4'} - call-bind@1.0.7: resolution: {integrity: sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==} engines: {node: '>= 0.4'} @@ -5054,11 +5016,8 @@ packages: resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==} engines: {node: '>= 6'} - caniuse-lite@1.0.30001585: - resolution: {integrity: sha512-yr2BWR1yLXQ8fMpdS/4ZZXpseBgE7o4g41x3a6AJOqZuOi+iE/WdJYAuZ6Y95i4Ohd2Y+9MzIWRR+uGABH4s3Q==} - - caniuse-lite@1.0.30001605: - resolution: {integrity: sha512-nXwGlFWo34uliI9z3n6Qc0wZaf7zaZWA1CPZ169La5mV3I/gem7bst0vr5XQH5TJXZIMfDeZyOrZnSlVzKxxHQ==} + caniuse-lite@1.0.30001610: + resolution: {integrity: sha512-QFutAY4NgaelojVMjY63o6XlZyORPaLfyMnsl3HgnWdJUcX6K0oaJymHjH8PT5Gk7sTm8rvC/c5COUQKXqmOMA==} case-anything@2.1.13: resolution: {integrity: sha512-zlOQ80VrQ2Ue+ymH5OuM/DlDq64mEm+B9UTdHULv5osUMD6HalNTblf2b1u/m6QecjsnOkBpqVZ+XPwIVsy7Ng==} @@ -5072,8 +5031,8 @@ packages: resolution: {integrity: sha512-13sOfMv2+DWduEU+/xbun3LScLoqN17nBeTLUsmDfKdoiC1fr0n9PU4guu4AhRcOVFk/sW8LyZWHuhWtQZiF+g==} engines: {node: '>=4'} - chain-registry@1.29.1: - resolution: {integrity: sha512-1VdBKme094W3NzsQO7rZkCtGVYnxFGtouv6o+qBdwcRsBUqrhD+QCfNhvuQXa10vKnnpByIDlO9Xg10mx/3KWw==} + chain-registry@1.41.3: + resolution: {integrity: sha512-9dYjJ38Kvlj+GTruT3BRu5iCU5mWY+nUR1W4wMJe1bEdEMx40r8ASr17iS9NF28Z/k1rFnBc1ixtKZKUCDgmsg==} chalk@2.4.2: resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} @@ -5120,9 +5079,6 @@ packages: cipher-base@1.0.4: resolution: {integrity: sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==} - citty@0.1.5: - resolution: {integrity: sha512-AS7n5NSc0OQVMV9v6wt3ByujNIrne0/cTjiC2MYqhvao57VNfiuVksTSr2p17nVOhEr2KtqiAkGwHcgMC/qUuQ==} - citty@0.1.6: resolution: {integrity: sha512-tskPPKEs8D2KPafUypv2gxwJP8h/OaJmC82QQGGDQcHvXX43xF2VDACcJVmZ0EuSxkpO9Kc4MlrA3q0+FG58AQ==} @@ -5175,10 +5131,6 @@ packages: resolution: {integrity: sha512-m3iNNWpd9rl3jvvcBnu70ylMdrXt8Vlq4HYadnU5fwcOtvkSQWPmj7amUcDT2qYI7risszBjI5AUIUox9D16pg==} engines: {node: '>=6'} - cluster-key-slot@1.1.2: - resolution: {integrity: sha512-RMr0FhtfXemyinomL4hrWcYJxmX6deFdCxpJzhDttxgO1+bcCnkk+9drydLVDmAMG7NE6aN/fl4F7ucU/90gAA==} - engines: {node: '>=0.10.0'} - color-convert@1.9.3: resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} @@ -5262,8 +5214,8 @@ packages: convert-source-map@2.0.0: resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==} - cookie-es@1.0.0: - resolution: {integrity: sha512-mWYvfOLrfEc996hlKcdABeIiPHUPC6DM2QYZdGGOvhOTbA3tjm2eBwqlJpoFdjC89NI4Qt6h0Pu06Mp+1Pj5OQ==} + cookie-es@1.1.0: + resolution: {integrity: sha512-L2rLOcK0wzWSfSDA33YR+PUHDG10a8px7rUHKWbGLP4YfbsMed2KFUw5fczvDPbT98DDe3LEzviswl810apTEw==} cookie-signature@1.0.6: resolution: {integrity: sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==} @@ -5275,11 +5227,11 @@ packages: copy-to-clipboard@3.3.3: resolution: {integrity: sha512-2KV8NhB5JqC3ky0r9PMCAZKbUHSwtEo4CwCs0KXgruG43gX5PMqDEBbVU4OUzw2MuAWUfsuFmWvEKG5QRfSnJA==} - core-js-compat@3.36.1: - resolution: {integrity: sha512-Dk997v9ZCt3X/npqzyGdTlq6t7lDBhZwGvV94PKzDArjp7BTRm7WlDAXYd/OWdeFHO8OChQYRJNJvUCqCbrtKA==} + core-js-compat@3.37.0: + resolution: {integrity: sha512-vYq4L+T8aS5UuFg4UwDhc7YNRWVeVZwltad9C/jV3R2LgVOpS9BDr7l/WL6BN0dbV3k1XejPTHqqEzJgsa0frA==} - core-js-pure@3.36.1: - resolution: {integrity: sha512-NXCvHvSVYSrewP0L5OhltzXeWFJLo2AL2TYnj6iLV3Bw8mM62wAQMNgUCRI6EBu6hVVpbCxmOPlxh1Ikw2PfUA==} + core-js-pure@3.37.0: + resolution: {integrity: sha512-d3BrpyFr5eD4KcbRvQ3FTUx/KWmaDesr7+a3+1+P46IUnNoEt+oiLijPINZMEon7w9oGkIINWxrBAU9DEciwFQ==} core-util-is@1.0.3: resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==} @@ -5303,8 +5255,8 @@ packages: cosmjs-types@0.9.0: resolution: {integrity: sha512-MN/yUe6mkJwHnCFfsNPeCfXVhyxHYW6c/xDUzrSbBycYzw++XvWDMJArXp2pLdgD6FQ8DW79vkPjeNKVrXaHeQ==} - cosmos-kit@2.9.3: - resolution: {integrity: sha512-pYUR7NDsLi4cI6Mj7XNGbTgkp3HScE7G3PJ+7g41FzLXkJUN8PciLc4VRDM9dIWiQpqRslgD+jOMWkuqFseu8Q==} + cosmos-kit@2.9.4: + resolution: {integrity: sha512-eSHZPwTJRSRzrWaz/ENHUO+femlBVa7S1opGLcQbUv3+0hX0s5yqv5864X2/ouZg8qbNfsxkulIlflwVPMF6mA==} crc-32@1.2.2: resolution: {integrity: sha512-ROmzCKrTnOwybPcJApAA6WBWij23HVfGVNKqqrZpuyZOHqK2CwHSvpGuyt/UNNvaIjEd8X5IFGp4Mh+Ie1IHJQ==} @@ -5333,8 +5285,13 @@ packages: resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} engines: {node: '>= 8'} - crossws@0.1.1: - resolution: {integrity: sha512-c9c/o7bS3OjsdpSkvexpka0JNlesBF2JU9B2V1yNsYGwRbAafxhJQ7VI9b48D5bpONz/oxbPGMzBojy9sXoQIQ==} + crossws@0.2.4: + resolution: {integrity: sha512-DAxroI2uSOgUKLz00NX6A8U/8EE3SZHmIND+10jkVSaypvyt57J5JEOxAQOL6lQxyzi/wZbTIwssU1uy69h5Vg==} + peerDependencies: + uWebSockets.js: '*' + peerDependenciesMeta: + uWebSockets.js: + optional: true crypto-browserify@3.12.0: resolution: {integrity: sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==} @@ -5346,8 +5303,8 @@ packages: resolution: {integrity: sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==} engines: {node: '>=8'} - css-loader@6.10.0: - resolution: {integrity: sha512-LTSA/jWbwdMlk+rhmElbDR2vbtQoTBPr7fkJE+mxrHj+7ru0hUmHafDRzWIjIHTwpitWVaqY2/UWGRca3yUgRw==} + css-loader@6.11.0: + resolution: {integrity: sha512-CTJ+AEQJjq5NzLga5pE39qdiSV56F8ywCIsqNIRF0r7BDgWsN25aazToqAFg7ZrtA/U016xudB3ffgweORxX7g==} engines: {node: '>= 12.13.0'} peerDependencies: '@rspack/core': 0.x || 1.x @@ -5474,10 +5431,6 @@ packages: resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==} engines: {node: '>=0.4.0'} - denque@2.1.0: - resolution: {integrity: sha512-HVQE3AAb/pxF8fQAoiqpvg9i3evqug3hoiwakOyZAwJm+6vZehbkYXZ0l4JxS+I3QxM97v5aaRNhj8v5oBhekw==} - engines: {node: '>=0.10'} - depd@2.0.0: resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==} engines: {node: '>= 0.8'} @@ -5489,8 +5442,8 @@ packages: des.js@1.1.0: resolution: {integrity: sha512-r17GxjhUCjSRy8aiJpr8/UadFIzMzJGexI3Nmz4ADi9LYSFx4gTBp80+NaX/YsXWWLhpZ7v/v/ubEc/bCNfKwg==} - destr@2.0.2: - resolution: {integrity: sha512-65AlobnZMiCET00KaFFjUefxDX0khFA/E4myqZ7a6Sq1yZtR8+FVIvilVX66vF2uobSumxooYZChiRPCKNqhmg==} + destr@2.0.3: + resolution: {integrity: sha512-2N3BOUU4gYMpTP24s5rF5iP7BDr7uNTCs4ozw3kf/eKfvWSIu93GEBi5m427YoyJoeOzQ5smuu4nNAPGb8idSQ==} destroy@1.2.0: resolution: {integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==} @@ -5587,8 +5540,8 @@ packages: duplexify@3.7.1: resolution: {integrity: sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==} - duplexify@4.1.2: - resolution: {integrity: sha512-fz3OjcNCHmRP12MJoZMPglx8m4rrFP8rovnk4vT8Fs+aonZoCwGg10dSsQsfP/E62eZcPTMSMP6686fu9Qlqtw==} + duplexify@4.1.3: + resolution: {integrity: sha512-M3BmBhwJRZsSx38lZyhE53Csddgzl5R7xGJNk7CVddZD6CcmwMCH8J+7AprIrQKH7TonKxaCjcv27Qmf+sQ+oA==} eastasianwidth@0.2.0: resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} @@ -5596,22 +5549,22 @@ packages: ee-first@1.1.1: resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==} - ejs@3.1.9: - resolution: {integrity: sha512-rC+QVNMJWv+MtPgkt0y+0rVEIdbtxVADApW9JXrUVlzHetgcyczP/E7DJmWJ4fJCZF2cPcBk0laWO9ZHMG3DmQ==} + ejs@3.1.10: + resolution: {integrity: sha512-UeJmFfOrAQS8OJWPZ4qtgHyWExa088/MtK5UEyoJGFH67cDEXkZSviOiKRCZ4Xij0zxI3JECgYs3oKx+AizQBA==} engines: {node: '>=0.10.0'} hasBin: true - electron-to-chromium@1.4.664: - resolution: {integrity: sha512-k9VKKSkOSNPvSckZgDDl/IQx45E1quMjX8QfLzUsAs/zve8AyFDK+ByRynSP/OfEfryiKHpQeMf00z0leLCc3A==} - - electron-to-chromium@1.4.724: - resolution: {integrity: sha512-RTRvkmRkGhNBPPpdrgtDKvmOEYTrPlXDfc0J/Nfq5s29tEahAwhiX4mmhNzj6febWMleulxVYPh7QwCSL/EldA==} + electron-to-chromium@1.4.738: + resolution: {integrity: sha512-lwKft2CLFztD+vEIpesrOtCrko/TFnEJlHFdRhazU7Y/jx5qc4cqsocfVrBg4So4gGe9lvxnbLIoev47WMpg+A==} elliptic@6.5.4: resolution: {integrity: sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==} - emoji-hash-gen@1.0.3: - resolution: {integrity: sha512-qNBGdS2gutMUk/geLgaj74Gwxik9CR0qiCCTBoQkJdQ2oJq0siQKYj56LrDB/LuXG4tWZeIXD3USonzUMSHgog==} + elliptic@6.5.5: + resolution: {integrity: sha512-7EjbcmUm17NQFu4Pmgmq2olYMj8nwMnpcddByChSUjArp8F5DQWcIcpriwO4ZToLNAJig0yiyjswfyGNje/ixw==} + + emoji-hash-gen@1.0.7: + resolution: {integrity: sha512-ppJGUxzHPttqfKEkGdVAWjRAbMzj3rAUMSgu8qoDRLP8h27jAiJBYR4/1tBCcie46roc2QBH+vHXgOwnAPFsFw==} emoji-regex@8.0.0: resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} @@ -5644,8 +5597,8 @@ packages: resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==} engines: {node: '>=0.12'} - envinfo@7.11.1: - resolution: {integrity: sha512-8PiZgZNIB4q/Lw4AhOvAfB/ityHAd2bli3lESSWmWSzSsl5dKpy5N1d1Rfkd2teq/g9xN90lc6o98DOjMeYHpg==} + envinfo@7.12.0: + resolution: {integrity: sha512-Iw9rQJBGpJRd3rwXm9ft/JiGoAZmLxxJZELYDQoPRZ4USVhkKtIcNBPw6U+/K2mBpaqM25JSV6Yl4Az9vO2wJg==} engines: {node: '>=4'} hasBin: true @@ -5739,8 +5692,8 @@ packages: resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - eslint@8.56.0: - resolution: {integrity: sha512-Go19xM6T9puCOWntie1/P997aXxFsOi37JIHRWI514Hc6ZnaHGKY9xFhrU65RT6CcBEzZoGG1e6Nq+DT04ZtZQ==} + eslint@8.57.0: + resolution: {integrity: sha512-dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} hasBin: true @@ -5795,8 +5748,8 @@ packages: ethers@5.7.2: resolution: {integrity: sha512-wswUsmWo1aOK8rR7DIKiWSw9DbLWe6x98Jrn8wcTflTVvaXhAMaB5zGAXy0GYQEQp9iO1iSHWVyARQm11zUtyg==} - ethers@6.11.0: - resolution: {integrity: sha512-kPHNTnhVWiWU6AVo6CAeTjXEK24SpCXyZvwG9ROFjT0Vlux0EOhWKBAeC+45iDj80QNJTYaT1SDEmeunT0vDNw==} + ethers@6.12.0: + resolution: {integrity: sha512-zL5NlOTjML239gIvtVJuaSk0N9GQLi1Hom3ZWUszE5lDTQE/IVB62mrPkQ2W1bGcZwVGSLaetQbWNQSvI4rGDQ==} engines: {node: '>=14.0.0'} event-target-shim@5.0.1: @@ -5856,15 +5809,15 @@ packages: fast-levenshtein@2.0.6: resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} - fast-redact@3.3.0: - resolution: {integrity: sha512-6T5V1QK1u4oF+ATxs1lWUmlEk6P2T9HqJG3e2DnHOdVgZy2rFJBoEnrIedcTXlkAHU/zKC+7KETJ+KGGKwxgMQ==} + fast-redact@3.5.0: + resolution: {integrity: sha512-dwsoQlS7h9hMeYUq1W++23NDcBLV4KqONnITDV9DjfS3q1SgDGVrBdvvTLUotWtPSD7asWDV9/CmsZPy8Hf70A==} engines: {node: '>=6'} fast-safe-stringify@2.1.1: resolution: {integrity: sha512-W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA==} - fast-xml-parser@4.3.5: - resolution: {integrity: sha512-sWvP1Pl8H03B8oFJpFR3HE31HUfwtX7Rlf9BNsvdpujD4n7WMhfmu8h9wOV2u+c1k0ZilTADhPqypzx2J690ZQ==} + fast-xml-parser@4.3.6: + resolution: {integrity: sha512-M2SovcRxD4+vC493Uc2GZVcZaj66CCJhWurC4viynVSTvrpErCShNcDz1lAho6n9REQKvL/ll4A4/fw6Y9z8nw==} hasBin: true fastq@1.17.1: @@ -5938,15 +5891,15 @@ packages: resolution: {integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==} engines: {node: ^10.12.0 || >=12.0.0} - flatted@3.2.9: - resolution: {integrity: sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==} + flatted@3.3.1: + resolution: {integrity: sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==} - flow-parser@0.232.0: - resolution: {integrity: sha512-U8vcKyYdM+Kb0tPzfPJ5JyPMU0uXKwHxp0L6BcEc+wBlbTW9qRhOqV5DeGXclgclVvtqQNGEG8Strj/b6c/IxA==} + flow-parser@0.233.0: + resolution: {integrity: sha512-E/mv51GYJfLuRX6fZnw4M52gBxYa8pkHUOgNEZOcQK2RTXS8YXeU5rlalkTcY99UpwbeNVCSUFKaavpOksi/pQ==} engines: {node: '>=0.4.0'} - follow-redirects@1.15.5: - resolution: {integrity: sha512-vSFWUON1B+yAw1VN4xMfxgn5fTUiaOzAJCKBwIIgT/+7CuGy9+r+5gITvP62j3RmaD5Ph65UaERdOSRGUzZtgw==} + follow-redirects@1.15.6: + resolution: {integrity: sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA==} engines: {node: '>=4.0'} peerDependencies: debug: '*' @@ -6076,8 +6029,8 @@ packages: glob-to-regexp@0.4.1: resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==} - glob@10.3.10: - resolution: {integrity: sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==} + glob@10.3.12: + resolution: {integrity: sha512-TCNv8vJ+xz4QiqTpfOJA7HvYv+tNIRHKfUWw/q+v2jdgN4ebz+KY9tGx5J4rHP0o84mNP+ApH66HRX8us3Khqg==} engines: {node: '>=16 || 14 >=14.17'} hasBin: true @@ -6116,8 +6069,8 @@ packages: resolution: {integrity: sha512-4haO1M4mLO91PW57BMsDFf75UmwoRX0GkdD+Faw+Lr+r/OZrOCS0pIBwOL1xCKQqnQzbNFGgK2V2CpBUPeFNTw==} hasBin: true - h3@1.10.1: - resolution: {integrity: sha512-UBAUp47hmm4BB5/njB4LrEa9gpuvZj4/Qf/ynSMzO6Ku2RXaouxEfiG2E2IFnv6fxbhAkzjasDxmo6DFdEeXRg==} + h3@1.11.1: + resolution: {integrity: sha512-AbaH6IDnZN6nmbnJOH72y3c5Wwh9P97soSVdGSBbcDACRdkC0FEWf25pzx4f/NuOCK6quHmW18yF2Wx+G4Zi1A==} handlebars@4.7.8: resolution: {integrity: sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ==} @@ -6150,6 +6103,10 @@ packages: resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==} engines: {node: '>= 0.4'} + hash-base@3.0.4: + resolution: {integrity: sha512-EeeoJKjTyt868liAlVmcv2ZsUfGHlE3Q+BICOXcZiwN3osr5Q/zFGYmTJpoIzuaSTAwndFy+GqhEwlU4L3j4Ow==} + engines: {node: '>=4'} + hash-base@3.1.0: resolution: {integrity: sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA==} engines: {node: '>=4'} @@ -6320,10 +6277,6 @@ packages: invariant@2.2.4: resolution: {integrity: sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==} - ioredis@5.3.2: - resolution: {integrity: sha512-1DKMMzlIHM02eBBVOFQ1+AolGjs6+xEcM4PDL7NqOS6szq7H9jSaEkIUH6/a5Hl241LzW6JLSiAbNvTQjUupUA==} - engines: {node: '>=12.22.0'} - ip@2.0.1: resolution: {integrity: sha512-lJUL9imLTNi1ZfXT+DU6rBBdbiKGBuay9B6xGSPVjUeQwaH1RIGqef8RZkUtHioLmSNpPR5M4HVKJGm1j8FWVQ==} @@ -6331,8 +6284,8 @@ packages: resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==} engines: {node: '>= 0.10'} - iron-webcrypto@1.0.0: - resolution: {integrity: sha512-anOK1Mktt8U1Xi7fCM3RELTuYbnFikQY5VtrDj7kPgpejV7d43tWKhzgioO0zpkazLEL/j/iayRqnJhrGfqUsg==} + iron-webcrypto@1.1.0: + resolution: {integrity: sha512-5vgYsCakNlaQub1orZK5QmNYhwYtcllTkZBp5sfIaCqY93Cf6l+v2rtE+E4TMbcfjxDMCdrO8wmp7+ZvhDECLA==} is-absolute-url@4.0.1: resolution: {integrity: sha512-/51/TKE88Lmm7Gc4/8btclNXWS+g50wXhYJq8HWIBAGUBnoAdRu1aXeh364t/O7wXDAcTJDP8PNuNKWUDWie+A==} @@ -6691,8 +6644,8 @@ packages: resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==} engines: {node: '>=10'} - lilconfig@3.0.0: - resolution: {integrity: sha512-K2U4W2Ff5ibV7j7ydLr+zLAkIg5JJ4lPn1Ltsdt+Tz/IjQ8buJ55pZAxoP34lqIiwtF9iAvtLv3JGv7CAyAg+g==} + lilconfig@3.1.1: + resolution: {integrity: sha512-O18pf7nyvHTckunPWCV1XUNXU1piu01y2b7ATJ0ppkUkk8ocqVWBrYjJBCwHDjD/ZWcfyrA0P4gKhzWGi5EINQ==} engines: {node: '>=14'} lines-and-columns@1.2.4: @@ -6703,8 +6656,8 @@ packages: engines: {node: '> 8.0.0'} hasBin: true - listhen@1.6.0: - resolution: {integrity: sha512-z0RcEXVX5oTpY1bO02SKoTU/kmZSrFSngNNzHRM6KICR17PTq7ANush6AE6ztGJwJD4RLpBrVHd9GnV51J7s3w==} + listhen@1.7.2: + resolution: {integrity: sha512-7/HamOm5YD9Wb7CFgAZkKgVPA96WwhcTQoqtm2VTZGVbVVn3IWKRBTgrU7cchA3Q8k9iCsG8Osoi9GX4JsGM9g==} hasBin: true loader-runner@4.3.0: @@ -6745,12 +6698,6 @@ packages: lodash.debounce@4.0.8: resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==} - lodash.defaults@4.2.0: - resolution: {integrity: sha512-qjxPLHd3r5DnsdGacqOMU6pb/avJzdh9tFX2ymgoZE27BmjXrNy/y4LoaiTeAb+O3gL8AfpJGtqfX/ae2leYYQ==} - - lodash.isarguments@3.1.0: - resolution: {integrity: sha512-chi4NHZlZqZD18a0imDHnZPrDeBbTtVN7GXMwuGdRH9qotxAjYs3aVLKc7zNOG9eddR5Ksd8rvFEBc9SsggPpg==} - lodash.isequal@4.5.0: resolution: {integrity: sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==} @@ -6807,9 +6754,8 @@ packages: resolution: {integrity: sha512-8UnnX2PeRAPZuN12svgR9j7M1uWMovg/CEnIwIG0LFkXSJJe4PdfUGiTGl8V9bsBHFUtfVINcSyYxd7q+kx9fA==} engines: {node: '>=12'} - magic-string@0.30.7: - resolution: {integrity: sha512-8vBuFF/I/+OSLRmdf2wwFCJCz+nSn0m6DPvGH1fS/KiQoSaR+sETbov0eIk9KhEKy8CYqIkIAnbohxT/4H0kuA==} - engines: {node: '>=12'} + magic-string@0.30.10: + resolution: {integrity: sha512-iIRwTIf0QKV3UAnYK4PU8uiEc4SRh5jX0mwpIwETPpHdhVM4f53RSwS/vXvN1JhGX+Cs7B8qIq3d6AH49O5fAQ==} make-dir@2.1.0: resolution: {integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==} @@ -6920,8 +6866,8 @@ packages: resolution: {integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==} engines: {node: '>=10'} - minimatch@9.0.3: - resolution: {integrity: sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==} + minimatch@9.0.4: + resolution: {integrity: sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==} engines: {node: '>=16 || 14 >=14.17'} minimist@1.2.8: @@ -6951,11 +6897,11 @@ packages: engines: {node: '>=10'} hasBin: true - mlly@1.5.0: - resolution: {integrity: sha512-NPVQvAY1xr1QoVeG0cy8yUYC7FQcOx6evl/RjT1wL5FvzPnzOysoqB/jmx/DhssT2dYa8nxECLAaFI/+gVLhDQ==} + mlly@1.6.1: + resolution: {integrity: sha512-vLgaHvaeunuOXHSmEbZ9izxPx3USsk8KCQ8iC+aTlp5sKRSoZvwhHh5L9VbKSaVC6sJDqbyohIS76E2VmHIPAA==} - mobx@6.12.0: - resolution: {integrity: sha512-Mn6CN6meXEnMa0a5u6a5+RKrqRedHBhZGd15AWLk9O6uFY4KYHzImdt8JI8WODo1bjTSRnwXhJox+FCUZhCKCQ==} + mobx@6.12.3: + resolution: {integrity: sha512-c8NKkO4R2lShkSXZ2Ongj1ycjugjzFFo/UswHBnS62y07DMcTc9Rvo03/3nRyszIvwPNljlkd4S828zIBv/piw==} modern-ahocorasick@1.0.1: resolution: {integrity: sha512-yoe+JbhTClckZ67b2itRtistFKf8yPYelHLc7e5xAwtNAXxM6wJTUx2C7QeVSJFDzKT7bCIFyBVybPMKvmB9AA==} @@ -7013,26 +6959,29 @@ packages: react: '*' react-dom: '*' - next@14.1.0: - resolution: {integrity: sha512-wlzrsbfeSU48YQBjZhDzOwhWhGsy+uQycR8bHAOt1LY1bn3zZEcDyHQOEoN3aWzQ8LHCAJ1nqrWCc9XF2+O45Q==} + next@14.2.1: + resolution: {integrity: sha512-SF3TJnKdH43PMkCcErLPv+x/DY1YCklslk3ZmwaVoyUfDgHKexuKlf9sEfBQ69w+ue8jQ3msLb+hSj1T19hGag==} engines: {node: '>=18.17.0'} hasBin: true peerDependencies: '@opentelemetry/api': ^1.1.0 + '@playwright/test': ^1.41.2 react: ^18.2.0 react-dom: ^18.2.0 sass: ^1.3.0 peerDependenciesMeta: '@opentelemetry/api': optional: true + '@playwright/test': + optional: true sass: optional: true no-case@3.0.4: resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==} - node-abi@3.57.0: - resolution: {integrity: sha512-Dp+A9JWxRaKuHP35H77I4kCKesDy5HUDEmScia2FyncMTOXASMyg251F5PhFoDA5uqBrDDffiLpbqnrZmNXW+g==} + node-abi@3.58.0: + resolution: {integrity: sha512-pXY1jnGf5T7b8UNzWzIqf0EkX4bx/w8N2AvwlGnk2SYYA/kzDVPaH0Dh0UG4EwxBB5eKOIZKPr8VAHSHL1DPGg==} engines: {node: '>=10'} node-abort-controller@3.1.1: @@ -7052,9 +7001,6 @@ packages: resolution: {integrity: sha512-tmPX422rYgofd4epzrNoOXiE8XFZYOcCq1vD7MAXCDO+O+zndlA2ztdKKMa+EeuBG5tHETpr4ml4RGgpqDCCAg==} engines: {node: '>= 0.10.5'} - node-fetch-native@1.6.2: - resolution: {integrity: sha512-69mtXOFZ6hSkYiXAVB5SqaRvrbITC/NPyqv7yuu/qw0nmgPyYbIMYYNIDhNtwPrzk0ptrimrLz/hhjvm4w5Z+w==} - node-fetch-native@1.6.4: resolution: {integrity: sha512-IhOigYzAKHd244OC0JIMIUrjzctirCmPkaIfhDeGcEETWof5zKYUW7e7MYvChGWh/4CJeXEgsRyGzuF334rOOQ==} @@ -7103,8 +7049,8 @@ packages: resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==} engines: {node: '>=8'} - npm-run-path@5.2.0: - resolution: {integrity: sha512-W4/tgAXFqFA0iL7fk0+uQ3g7wkL8xJmx3XdK0VGb4cHW//eZTtKGvFBBoRKVTpY7n6ze4NL9ly7rgXcHufqXKg==} + npm-run-path@5.3.0: + resolution: {integrity: sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} nth-check@2.1.1: @@ -7129,8 +7075,8 @@ packages: object-inspect@1.13.1: resolution: {integrity: sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==} - object-is@1.1.5: - resolution: {integrity: sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==} + object-is@1.1.6: + resolution: {integrity: sha512-F8cZ+KfGlSGi09lJT7/Nd6KJZ9ygtvYC0/UYYLI9nmQKLMnydpB9yvbv9K1uSkEu7FU9vYPmVwLg328tX+ot3Q==} engines: {node: '>= 0.4'} object-keys@1.1.1: @@ -7148,8 +7094,8 @@ packages: objectorarray@1.0.5: resolution: {integrity: sha512-eJJDYkhJFFbBBAxeh8xW+weHlkI28n2ZdQV/J/DNfWfSKlGEf2xcfAbZTv3riEXHAhL9SVOTs2pRmXiSTf78xg==} - ofetch@1.3.3: - resolution: {integrity: sha512-s1ZCMmQWXy4b5K/TW9i/DtiN8Ku+xCiHcjQ6/J/nDdssirrQNOoB165Zu8EqLMA2lln1JUth9a0aW9Ap2ctrUg==} + ofetch@1.3.4: + resolution: {integrity: sha512-KLIET85ik3vhEfS+3fDlc/BAZiAp+43QEC/yCo5zkNoY2YaKvNkOaFr/6wCFgFH1kuYQM5pMNi0Tg8koiIemtw==} ohash@1.1.3: resolution: {integrity: sha512-zuHHiGTYTA1sYJ/wZN+t5HKZaH23i4yI1HMwbuXm24Nid7Dv0KcuRlKoNKS9UNfAVSBlnGLcuQrnOKWOZoEGaw==} @@ -7253,8 +7199,9 @@ packages: resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} engines: {node: '>=6'} - parse-asn1@5.1.6: - resolution: {integrity: sha512-RnZRo1EPU6JBnra2vGHj0yhp6ebyjBZpmUCLHWiFhxlzvBCCpAuZ7elsBp1PVAbQN0/04VD/19rfzlBSwLstMw==} + parse-asn1@5.1.7: + resolution: {integrity: sha512-CTM5kuWR3sx9IFamcl5ErfPl6ea/N8IYwiJ+vpeB2g+1iknv7zBl5uPwbMbRVznRVbrNY6lGuDoE5b30grmbqg==} + engines: {node: '>= 0.10'} parse-json@5.2.0: resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} @@ -7300,8 +7247,8 @@ packages: path-parse@1.0.7: resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} - path-scurry@1.10.1: - resolution: {integrity: sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==} + path-scurry@1.10.2: + resolution: {integrity: sha512-7xTavNy5RQXnsjANvVvMkEjvloOinkAjv/Z6Ildz9v2RinZ4SBKTWFOVRbaF8p0vpHnyjV/UwNDdKuUv6M5qcA==} engines: {node: '>=16 || 14 >=14.17'} path-to-regexp@0.1.7: @@ -7384,8 +7331,8 @@ packages: resolution: {integrity: sha512-OBatVyC/N7SCW/FaDHrSd+vn0o5cS855TOmYi4OkdWUMSJCET/xip//ch8xGUvtr3i44X9LVyWwQlRMTN3pwSA==} engines: {node: '>=10'} - pony-cause@2.1.10: - resolution: {integrity: sha512-3IKLNXclQgkU++2fSi93sQ6BznFuxSLB11HdvZQ6JW/spahf/P1pAHBQEahr20rs0htZW0UDkM1HmA+nZkXKsw==} + pony-cause@2.1.11: + resolution: {integrity: sha512-M7LhCsdNbNgiLYiP4WjsfLUuFmCfnjdF6jKe2R9NKl4WFN+HZPGHJZ9lnLP7f9ZnKe3U9nuWD0szirmj+migUg==} engines: {node: '>=12.0.0'} possible-typed-array-names@1.0.0: @@ -7423,20 +7370,20 @@ packages: postcss: ^7.0.0 || ^8.0.1 webpack: ^5.0.0 - postcss-modules-extract-imports@3.0.0: - resolution: {integrity: sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==} + postcss-modules-extract-imports@3.1.0: + resolution: {integrity: sha512-k3kNe0aNFQDAZGbin48pL2VNidTF0w4/eASDsxlyspobzU3wZQLOGj7L9gfRe0Jo9/4uud09DsjFNH7winGv8Q==} engines: {node: ^10 || ^12 || >= 14} peerDependencies: postcss: ^8.1.0 - postcss-modules-local-by-default@4.0.4: - resolution: {integrity: sha512-L4QzMnOdVwRm1Qb8m4x8jsZzKAaPAgrUF1r/hjDR2Xj7R+8Zsf97jAlSQzWtKx5YNiNGN8QxmPFIc/sh+RQl+Q==} + postcss-modules-local-by-default@4.0.5: + resolution: {integrity: sha512-6MieY7sIfTK0hYfafw1OMEG+2bg8Q1ocHCpoWLqOKj3JXlKu4G7btkmM/B7lFubYkYWmRSPLZi5chid63ZaZYw==} engines: {node: ^10 || ^12 || >= 14} peerDependencies: postcss: ^8.1.0 - postcss-modules-scope@3.1.1: - resolution: {integrity: sha512-uZgqzdTleelWjzJY+Fhti6F3C9iF1JR/dODLs/JDefozYcKTBCdD8BIl6nNPbTbcLnGrk56hzwZC2DaGNvYjzA==} + postcss-modules-scope@3.2.0: + resolution: {integrity: sha512-oq+g1ssrsZOsx9M96c5w8laRmvEu9C3adDSjI8oTcbfkrTE8hx/zfyobUoWIxaKPO8bt6S62kxpw5GqypEw1QQ==} engines: {node: ^10 || ^12 || >= 14} peerDependencies: postcss: ^8.1.0 @@ -7453,8 +7400,8 @@ packages: peerDependencies: postcss: ^8.2.14 - postcss-selector-parser@6.0.15: - resolution: {integrity: sha512-rEYkQOMUCEMhsKbK66tbEU9QVIxbhN18YiniAwA7XQYTVBqrBy+P2p5JcdqsHgKM2zWylp8d7J6eszocfds5Sw==} + postcss-selector-parser@6.0.16: + resolution: {integrity: sha512-A0RVJrX+IUkVZbW3ClroRWurercFhieevHB38sr2+l9eUClMqome3LmEmnhlNy+5Mr2EYN6B2Kaw9wYdd+VHiw==} engines: {node: '>=4'} postcss-value-parser@4.2.0: @@ -7464,10 +7411,6 @@ packages: resolution: {integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==} engines: {node: ^10 || ^12 || >=14} - postcss@8.4.35: - resolution: {integrity: sha512-u5U8qYpBCpN13BsiEB0CbR1Hhh4Gc0zLFuedrHJKMctHCHAGrMdG0PRM/KErzAL3CU6/eckEtmHNB3x6e3c0vA==} - engines: {node: ^10 || ^12 || >=14} - postcss@8.4.38: resolution: {integrity: sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==} engines: {node: ^10 || ^12 || >=14} @@ -7477,8 +7420,8 @@ packages: engines: {node: '>=10'} hasBin: true - preline@2.0.3: - resolution: {integrity: sha512-V/sLmRIHd23UCdvJNRKKszntgUqA0381erVzRpQ48NjjMOgI7DyFW4mr+lg387V0oeBc5Dx9Jxa5voppVoH9GA==} + preline@2.1.0: + resolution: {integrity: sha512-7pwrGNPVfGYUv1XHW9i49ejowIVHCDTx8JvbM43hapLi1GCjj9NnAZmTKupxaROboB4Nvp2x0ADBVKAhpmZppA==} prelude-ls@1.2.1: resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} @@ -7565,8 +7508,8 @@ packages: resolution: {integrity: sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==} engines: {node: '>=0.6'} - qs@6.11.2: - resolution: {integrity: sha512-tDNIz22aBzCDxLtVH++VnTfzxlfeK5CbqohpSqpJgj1Wg/cQbStNAz3NuqCs5vV+pjBsK4x4pN9HlVh7rcYRiA==} + qs@6.12.1: + resolution: {integrity: sha512-zWmv4RSuB9r2mYQw3zxQuHWeU+42aKi1wWig/j4ele4ygELZ7PEO6MM7rim9oAQH2A5MWfsAVf/jPvTPgCbvUQ==} engines: {node: '>=0.6'} query-string@7.1.3: @@ -7592,8 +7535,8 @@ packages: quick-format-unescaped@4.0.4: resolution: {integrity: sha512-tYC1Q1hgyRuHgloV/YXs2w15unPVh8qfu/qCTfhTYamaw7fyhumKa2yGpdSo87vY32rIclj+4fWYQXUMs9EHvg==} - radix3@1.1.0: - resolution: {integrity: sha512-pNsHDxbGORSvuSScqNJ+3Km6QAVqk8CfsCBIEoDgpqLrkD2f3QM4I7d1ozJJ172OmIcoUcerZaNWqtLkRXTV3A==} + radix3@1.1.2: + resolution: {integrity: sha512-b484I/7b8rDEdSDKckSSBA8knMpcdsXudlE/LNL639wFoHKwLbEkQFZHWEYwDC0wa0FKUcCY+GAF73Z7wxNVFA==} rainbow-sprinkles@0.17.1: resolution: {integrity: sha512-s/6mCZsBw63mxw976CesRhaLEa3QJVOzEXiuUm3/OKp1R0bBNiCsM3AoAjvazLn3F+BKKxI5sqyNmfah7nTdnQ==} @@ -7668,8 +7611,8 @@ packages: react: ^0.14.8 || ^15.0.1 || ^16.0.0 || ^17.0.1 || ^18.0.0 react-dom: ^0.14.8 || ^15.0.1 || ^16.0.0 || ^17.0.1 || ^18.0.0 - react-hook-form@7.50.1: - resolution: {integrity: sha512-3PCY82oE0WgeOgUtIr3nYNNtNvqtJ7BZjsbxh6TnYNbXButaD5WpjOmTjdxZfheuHKR68qfeFnEDVYoSSFPMTQ==} + react-hook-form@7.51.3: + resolution: {integrity: sha512-cvJ/wbHdhYx8aviSWh28w9ImjmVsb5Y05n1+FW786vEZQJV5STNM0pW6ujS+oiBecb0ARBxJFyAnXj9+GHXACQ==} engines: {node: '>=12.22.0'} peerDependencies: react: ^16.8.0 || ^17 || ^18 @@ -7704,8 +7647,8 @@ packages: resolution: {integrity: sha512-wViHqhAd8OHeLS/IRMJjTSDHF3U9eWi62F/MledQGPdJGDhodXJ9PBLNGr6WWL7qlH12Mt3TyTpbS+hGXMjCzQ==} engines: {node: '>=0.10.0'} - react-remove-scroll-bar@2.3.4: - resolution: {integrity: sha512-63C4YQBUt0m6ALadE9XV56hV8BgJWDmmTPY758iIJjfQKt2nYwoUrPk0LXRXcB/yIj82T1/Ixfdpdk68LwIB0A==} + react-remove-scroll-bar@2.3.6: + resolution: {integrity: sha512-DtSYaao4mBmX+HDo5YWYdBWQwYIQQshUV/dVxFxK+KM26Wjwp1gZ6rv6OC3oujI6Bfu6Xyg3TwK533AQutsn/g==} engines: {node: '>=10'} peerDependencies: '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -7724,15 +7667,15 @@ packages: '@types/react': optional: true - react-router-dom@6.22.0: - resolution: {integrity: sha512-z2w+M4tH5wlcLmH3BMMOMdrtrJ9T3oJJNsAlBJbwk+8Syxd5WFJ7J5dxMEW0/GEXD1BBis4uXRrNIz3mORr0ag==} + react-router-dom@6.22.3: + resolution: {integrity: sha512-7ZILI7HjcE+p31oQvwbokjk6OA/bnFxrhJ19n82Ex9Ph8fNAq+Hm/7KchpMGlTgWhUxRHMMCut+vEtNpWpowKw==} engines: {node: '>=14.0.0'} peerDependencies: react: '>=16.8' react-dom: '>=16.8' - react-router@6.22.0: - resolution: {integrity: sha512-q2yemJeg6gw/YixRlRnVx6IRJWZD6fonnfZhN1JIOhV2iJCPeRNSH3V1ISwHf+JWcESzLC3BOLD1T07tmO5dmg==} + react-router@6.22.3: + resolution: {integrity: sha512-dr2eb3Mj5zK2YISHK++foM9w4eBnO23eKnZEDs7c880P6oKbrjz/Svg9+nxqtHQK+oMW4OtjZca0RqPglXxguQ==} engines: {node: '>=14.0.0'} peerDependencies: react: '>=16.8' @@ -7806,14 +7749,6 @@ packages: resolution: {integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==} engines: {node: '>=8'} - redis-errors@1.2.0: - resolution: {integrity: sha512-1qny3OExCf0UvUV/5wpYKf2YwPcOqXzkwKKSmKHiE6ZMQs5heeE/c8eXK+PNllPvmjgAbfnsbpkGZWy8cBpn9w==} - engines: {node: '>=4'} - - redis-parser@3.0.0: - resolution: {integrity: sha512-DJnGAeenTdpMEH6uAJRK/uiyEIH9WVsUmoLwzudwGJUwZPp80PDBWPHXSAGNPwNvIXAbe7MSUB1zQFugFml66A==} - engines: {node: '>=4'} - regenerate-unicode-properties@10.1.1: resolution: {integrity: sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==} engines: {node: '>=4'} @@ -7862,8 +7797,8 @@ packages: resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==} engines: {node: '>=0.10.0'} - require-in-the-middle@7.2.0: - resolution: {integrity: sha512-3TLx5TGyAY6AOqLBoXmHkNql0HIf2RGbuMgCDT2WO/uGVAPJs6h7Kl+bN6TIZGd9bWhWPwnDnTHGtW8Iu77sdw==} + require-in-the-middle@7.3.0: + resolution: {integrity: sha512-nQFEv9gRw6SJAwWD2LrL0NmQvAcO7FBwJbwmr2ttPAacfy0xuiOjE5zt+zM4xDyuyvUaxBi/9gb2SoCyNEVJcw==} engines: {node: '>=8.6.0'} requireindex@1.2.0: @@ -8017,8 +7952,8 @@ packages: resolution: {integrity: sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==} engines: {node: '>= 0.8.0'} - set-function-length@1.2.1: - resolution: {integrity: sha512-j4t6ccc+VsKwYHso+kElc5neZpjtq9EnRICFZtWyBsLojhmeF/ZBd/elqm22WJh/BziDe/SBiOeAt0m2mfLD0g==} + set-function-length@1.2.2: + resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==} engines: {node: '>= 0.4'} set-function-name@2.0.2: @@ -8067,8 +8002,8 @@ packages: engines: {node: '>=6'} hasBin: true - side-channel@1.0.5: - resolution: {integrity: sha512-QcgiIWV4WV7qWExbN5llt6frQB/lBven9pqliLXfGPB+K9ZYXxDozp0wLkHS24kWCm+6YXH/f0HhnObZnZOBnQ==} + side-channel@1.0.6: + resolution: {integrity: sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==} engines: {node: '>= 0.4'} siginfo@2.0.0: @@ -8103,10 +8038,6 @@ packages: sort-by@1.2.0: resolution: {integrity: sha512-aRyW65r3xMnf4nxJRluCg0H/woJpksU1dQxRtXYzau30sNBOmf5HACpDd9MZDhKh7ALQ5FgSOfMPwZEtUmMqcg==} - source-map-js@1.0.2: - resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==} - engines: {node: '>=0.10.0'} - source-map-js@1.2.0: resolution: {integrity: sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==} engines: {node: '>=0.10.0'} @@ -8155,9 +8086,6 @@ packages: stackframe@1.3.4: resolution: {integrity: sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==} - standard-as-callback@2.1.0: - resolution: {integrity: sha512-qoRRSyROncaz1z0mvYqIE4lCd9p2R90i6GxW3uZv5ucSu8tU7B5HXUP1gG8pVZsYNVaXjk8ClXHPttLyxAL48A==} - statuses@2.0.1: resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==} engines: {node: '>= 0.8'} @@ -8172,11 +8100,11 @@ packages: store2@2.14.3: resolution: {integrity: sha512-4QcZ+yx7nzEFiV4BMLnr/pRa5HYzNITX2ri0Zh6sT9EyQHbBHacC6YigllUPU9X3D0f/22QCgfokpKs52YRrUg==} - storyblok-js-client@6.7.1: - resolution: {integrity: sha512-VOobZkor6BESji2MJUuO5jTIZeCWMUMR2LZtdSEEAtUDUfKwA88lGqDVMQqtWZ8nD7NzhZ6S7qvdv5Or9HZXRw==} + storyblok-js-client@6.7.2: + resolution: {integrity: sha512-5+cCZQhvIPSP5fin7jMUyyiAfV3FSbhH2q0YmDpb8NqxsY0pog6r+igHshVXNHed5yB5AZcVn0Mduao0X1MdBA==} - storybook@8.0.5: - resolution: {integrity: sha512-rdxfjkED5CBKj6T01NKr9MRakyXkffV8dvLXj5bWN4AlQ1OOm5Sw9B1z+rQ/FN7RYIU5b63xiX2pu3gy5t6nRQ==} + storybook@8.0.8: + resolution: {integrity: sha512-9gTnnAakJBtMCg8oPGqnpy7g/C3Tj2IWiVflHiFg1SDD9zXBoc4mZhaYPTne4LRBUhXk7XuFagKfiRN2V/MuKA==} hasBin: true stream-browserify@3.0.0: @@ -8321,8 +8249,8 @@ packages: peerDependencies: tailwindcss: '>=3.0.0 || insiders' - tailwindcss@3.4.1: - resolution: {integrity: sha512-qAYmXRfk3ENzuPBakNK0SRrUDipP8NQnEY6772uDhflcQz5EhRdD7JNZxyrFHVQNCwULPBn6FNPp9brpO7ctcA==} + tailwindcss@3.4.3: + resolution: {integrity: sha512-U7sxQk/n397Bmx4JHbJx/iSOOv5G+II3f1kpLpY2QeUv5DcPdcTsYLlusZfq1NthHS1c1cZoyFmmkex1rzke0A==} engines: {node: '>=14.0.0'} hasBin: true @@ -8378,8 +8306,8 @@ packages: uglify-js: optional: true - terser@5.30.2: - resolution: {integrity: sha512-vTDjRKYKip4dOFL5VizdoxHTYDfEXPdz5t+FbxCC5Rp2s+KbEO8w5wqMDPgj7CtFKZuzq7PXv28fZoXfqqBVuw==} + terser@5.30.3: + resolution: {integrity: sha512-STdUgOUx8rLbMGO9IOwHLpCqolkDITFFQSMYYwKE1N2lY6MVSaeoi10z/EhWxRc6ybqoVmKSkhKYH/XUpl7vSA==} engines: {node: '>=10'} hasBin: true @@ -8424,9 +8352,9 @@ packages: tmp-promise@3.0.3: resolution: {integrity: sha512-RwM7MoPojPxsOBYnyd2hy0bxtIlVrihNs9pj5SUvY8Zz1sQcQG2tG1hSr8PDxfgEB8RNKDhqbIlroIarSNDNsQ==} - tmp@0.2.1: - resolution: {integrity: sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ==} - engines: {node: '>=8.17.0'} + tmp@0.2.3: + resolution: {integrity: sha512-nZD7m9iCPC5g0pYmcaxogYKggSfLsdxl8of3Q/oIbqCqLLIO9IAF0GWjX1z9NZRHPiXv8Wex4yDCaZsgEw0Y8w==} + engines: {node: '>=14.14'} to-fast-properties@2.0.0: resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==} @@ -8473,14 +8401,14 @@ packages: typescript: optional: true - ts-poet@6.6.0: - resolution: {integrity: sha512-4vEH/wkhcjRPFOdBwIh9ItO6jOoumVLRF4aABDX5JSNEubSqwOulihxQPqai+OkuygJm3WYMInxXQX4QwVNMuw==} + ts-poet@6.8.1: + resolution: {integrity: sha512-uqdjJGnQQjBwUeJggUi4o8VhRjUmEdRfo+uqEL+K8w7mKPfLUFAQ1dSURyhFfbA4T/cWPh8Xa7iBgO7jJNsc1A==} ts-proto-descriptors@1.15.0: resolution: {integrity: sha512-TYyJ7+H+7Jsqawdv+mfsEpZPTIj9siDHS6EMCzG/z3b/PZiphsX+mWtqFfFVe5/N0Th6V3elK9lQqjnrgTOfrg==} - ts-proto@1.167.3: - resolution: {integrity: sha512-quBKTeIgqhTGKXl5JN7HHZjLwrdMaNIoQ0+X11PqNLVRqTlnEzfiCUXM6HOW4pZa6PD5+qSyKOEGaTa3kS7Glg==} + ts-proto@1.172.0: + resolution: {integrity: sha512-+4myxp5H+qD4r3sQUwvewN3zpdKpApeuUI0+lxfdznvkd2TUFVaeOD0q6dHszEYKTzR7DHu96Z1pqpNSOXF8iQ==} hasBin: true tsconfig-paths-webpack-plugin@4.1.0: @@ -8561,16 +8489,16 @@ packages: engines: {node: '>=4.2.0'} hasBin: true - typescript@5.3.3: - resolution: {integrity: sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw==} + typescript@5.4.5: + resolution: {integrity: sha512-vcI4UpRgg81oIRUFwR0WSIHKt11nJ7SAVlYNIu+QpqeyXP+gpQJy/Z4+F0aGxSE4MqwjyXvW/TzgkLAx2AGHwQ==} engines: {node: '>=14.17'} hasBin: true ua-parser-js@1.0.37: resolution: {integrity: sha512-bhTyI94tZofjo+Dn8SN6Zv8nBDvyXTymAdM3LDI/0IboIUwTu1rEhW7v2TfiVsoYWgkQ4kOVqnI8APUFbIQIFQ==} - ufo@1.4.0: - resolution: {integrity: sha512-Hhy+BhRBleFjpJ2vchUNN40qgkh0366FWJGqVLYBHev0vpHTrXSA0ryT+74UiW6KWsldNurQMKGqCm1M2zBciQ==} + ufo@1.5.3: + resolution: {integrity: sha512-Y7HYmWaFwPUmkoQCUIAYpKqkOf+SbVj/2fJJZ4RJMCfZp0rTGwRbzQD+HghfnhKOjL9E01okqz+ncJskGYfBNw==} uglify-js@3.17.4: resolution: {integrity: sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==} @@ -8637,21 +8565,22 @@ packages: resolution: {integrity: sha512-d6Mhq8RJeGA8UfKCu54Um4lFA0eSaRa3XxdAJg8tIdxbu1ubW0hBCZUL7yI2uGyYCRndvbK8FLHzqy2XKfeMsg==} engines: {node: '>=14.0.0'} - unstorage@1.10.1: - resolution: {integrity: sha512-rWQvLRfZNBpF+x8D3/gda5nUCQL2PgXy2jNG4U7/Rc9BGEv9+CAJd0YyGCROUBKs9v49Hg8huw3aih5Bf5TAVw==} + unstorage@1.10.2: + resolution: {integrity: sha512-cULBcwDqrS8UhlIysUJs2Dk0Mmt8h7B0E6mtR+relW9nZvsf/u4SkAYyNliPiPW7XtFNb5u3IUMkxGxFTTRTgQ==} peerDependencies: - '@azure/app-configuration': ^1.4.1 + '@azure/app-configuration': ^1.5.0 '@azure/cosmos': ^4.0.0 '@azure/data-tables': ^13.2.2 - '@azure/identity': ^3.3.2 - '@azure/keyvault-secrets': ^4.7.0 - '@azure/storage-blob': ^12.16.0 - '@capacitor/preferences': ^5.0.6 - '@netlify/blobs': ^6.2.0 - '@planetscale/database': ^1.11.0 - '@upstash/redis': ^1.23.4 - '@vercel/kv': ^0.2.3 + '@azure/identity': ^4.0.1 + '@azure/keyvault-secrets': ^4.8.0 + '@azure/storage-blob': ^12.17.0 + '@capacitor/preferences': ^5.0.7 + '@netlify/blobs': ^6.5.0 || ^7.0.0 + '@planetscale/database': ^1.16.0 + '@upstash/redis': ^1.28.4 + '@vercel/kv': ^1.0.1 idb-keyval: ^6.2.1 + ioredis: ^5.3.2 peerDependenciesMeta: '@azure/app-configuration': optional: true @@ -8677,6 +8606,8 @@ packages: optional: true idb-keyval: optional: true + ioredis: + optional: true untildify@4.0.0: resolution: {integrity: sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==} @@ -8704,8 +8635,8 @@ packages: url@0.11.3: resolution: {integrity: sha512-6hxOLGfZASQK/cijlZnZJTq8OXAkt/3YGfQX45vvMYXpZoo8NdWZcY73K108Jf759lS1Bv/8wXnHDTSz17dSRw==} - use-callback-ref@1.3.1: - resolution: {integrity: sha512-Lg4Vx1XZQauB42Hw3kK7JM6yjVjgFmFC5/Ab797s79aARomD2nEErc4mCgM8EZrARLmmbWpi5DGCadmK50DcAQ==} + use-callback-ref@1.3.2: + resolution: {integrity: sha512-elOQwe6Q8gqZgDA8mrh44qRTQqpIHDcZ3hXTLjBe1i4ph8XpNJnO+aQf3NaG+lriLopI4HMx9VjQLfPQ6vhnoA==} engines: {node: '>=10'} peerDependencies: '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -8783,8 +8714,8 @@ packages: peerDependencies: vite: ^2.0.0 || ^3.0.0 || ^4.0.0 || ^5.0.0 - vite@5.2.8: - resolution: {integrity: sha512-OyZR+c1CE8yeHw5V5t59aXsUPPVTHMDjEZz8MgguLL/Q7NblxhZUlTu9xSPqlsUO/y+X7dlU05jdhvyycD55DA==} + vite@5.2.9: + resolution: {integrity: sha512-uOQWfuZBlc6Y3W/DTuQ1Sr+oIXWvqljLvS881SVmAj00d5RdgShLcuXWxseWPd4HXwiYBFW/vXHfKFeqj9uQnw==} engines: {node: ^18.0.0 || >=20.0.0} hasBin: true peerDependencies: @@ -8875,12 +8806,12 @@ packages: resolution: {integrity: sha512-9JqhRi1YhO1hQOEmmBHgEGsME/B1FHMxpA/AK3vhpvQ8QeP6KbJW+cForTLfPpUbkmPxnRunG4PNNaETNlZfrA==} engines: {node: '>=14', npm: '>=6.12.0'} - web3-eth-contract@4.2.0: - resolution: {integrity: sha512-K7bUypsomTs8/Oa0Lgvq5plsSB5afgKJ79NMuXxvC5jfV+AxNrQyKcr5Vd5yEGNqrdQuIPduGQa8DpuY+rMe1g==} + web3-eth-contract@4.3.0: + resolution: {integrity: sha512-4fzSklA65zUn6SthU3T3tbVJacfP8/wkJmCuvmPaf2ZTFdnhsF96G5IQtCRf0+wASb4yk0A6IBvXZfk1B4R4HA==} engines: {node: '>=14', npm: '>=6.12.0'} - web3-eth-ens@4.0.8: - resolution: {integrity: sha512-nj0JfeD45BbzVJcVYpUJnSo8iwDcY9CQ7CZhhIVVOFjvpMAPw0zEwjTvZEIQyCW61OoDG9xcBzwxe2tZoYhMRw==} + web3-eth-ens@4.2.0: + resolution: {integrity: sha512-qYj34te2UctoObt8rlEIY/t2MuTMiMiiHhO2JAHRGqSLCQ7b8DM3RpvkiiSB0N0ZyEn+CetZqJCTYb8DNKBS/g==} engines: {node: '>=14', npm: '>=6.12.0'} web3-eth-iban@4.0.7: @@ -8891,8 +8822,8 @@ packages: resolution: {integrity: sha512-sXeyLKJ7ddQdMxz1BZkAwImjqh7OmKxhXoBNF3isDmD4QDpMIwv/t237S3q4Z0sZQamPa/pHebJRWVuvP8jZdw==} engines: {node: '>=14', npm: '>=6.12.0'} - web3-eth@4.4.0: - resolution: {integrity: sha512-HswKdzF44wUrciRAtEJaml9O7rDYDxElHmFs+27WcO3nel2zku+n0xs4e2ZAehfrCZ+05/y7TgnOZnaDU8Fb/A==} + web3-eth@4.5.0: + resolution: {integrity: sha512-crisE46o/SHMVm+XHAXEaR8k76NCImq+hi0QQEJ+VaLZbDobI/Gvog1HwTukDUDRgnYSAFGqD0cTRyAwDurwpA==} engines: {node: '>=14', npm: '>=6.12.0'} web3-net@4.0.7: @@ -8911,8 +8842,8 @@ packages: resolution: {integrity: sha512-n4Dal9/rQWjS7d6LjyEPM2R458V8blRm0eLJupDEJOOIBhGYlxw5/4FthZZ/cqB7y/sLVi7K09DdYx2MeRtU5w==} engines: {node: '>=14', npm: '>=6.12.0'} - web3-rpc-methods@1.1.4: - resolution: {integrity: sha512-LTFNg4LFaeU8K9ecuT8fHDp/LOXyxCneeZjCrRYIW1u82Ly52SrY55FIzMIISGoG/iT5Wh7UiHOB3CQsWLBmbQ==} + web3-rpc-methods@1.2.0: + resolution: {integrity: sha512-CWJ/g4I4WyYvLkf21wCZAehdhU/VjX/OAPHnqF5/FPDJlogOsOnGXHqi1Z5AP+ocdt395PNubd8jyMMJoYGSBA==} engines: {node: '>=14', npm: '>=6.12.0'} web3-types@1.5.0: @@ -8927,8 +8858,8 @@ packages: resolution: {integrity: sha512-2gLOSW8XqEN5pw5jVUm20EB7A8SbQiekpAtiI0JBmCIV0a2rp97v8FgWY5E3UEqnw5WFfEqvcDVW92EyynDTyQ==} engines: {node: '>=14', npm: '>=6.12.0'} - web3@4.4.0: - resolution: {integrity: sha512-WcFA3RgE+cyM96MHLPs5Ec155nkYQuwhjk3JIhxcy6J1QrZK2zvKGzTQCCYHe3JhraduNTMbWy+EeNNGGji9+Q==} + web3@4.7.0: + resolution: {integrity: sha512-3g+1e7B/IW0Nw9WP1dotrZKWD9o5IBfl27dxEnE1LxBZBax6ZkviiAwf18utIhlNBD07RgI+PPfKDXxfDBlHWA==} engines: {node: '>=14.0.0', npm: '>=6.12.0'} webextension-polyfill@0.10.0: @@ -8995,8 +8926,8 @@ packages: resolution: {integrity: sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==} engines: {node: '>= 0.4'} - which-typed-array@1.1.14: - resolution: {integrity: sha512-VnXFiIW8yNn9kIHN88xvZ4yOWchftKDsRJ8fEPacX/wl1lOvBrhsJ/OeJCXq7B0AaijRuqgzSKalJoPk+D8MPg==} + which-typed-array@1.1.15: + resolution: {integrity: sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==} engines: {node: '>= 0.4'} which@2.0.2: @@ -9101,9 +9032,10 @@ packages: resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==} engines: {node: '>= 6'} - yaml@2.3.4: - resolution: {integrity: sha512-8aAvwVUSHpfEqTQ4w/KMlf3HcRdt50E5ODIQJBw1fQ5RL34xabzxtUlzTXVqc4rkZsPbvrXKWnABCD7kWSmocA==} + yaml@2.4.1: + resolution: {integrity: sha512-pIXzoImaqmfOrL7teGUBt/T7ZDnyeGBWyXQBvOVhLkWLN37GXv8NMLK406UY6dS51JfcQHsmcW5cJ441bHg6Lg==} engines: {node: '>= 14'} + hasBin: true yocto-queue@0.1.0: resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} @@ -9119,21 +9051,6 @@ packages: zone.js@0.14.4: resolution: {integrity: sha512-NtTUvIlNELez7Q1DzKVIFZBzNb646boQMgpATo9z3Ftuu/gWvzxCW7jdjcUDoRGxRikrhVHB/zLXh1hxeJawvw==} - zustand@4.5.1: - resolution: {integrity: sha512-XlauQmH64xXSC1qGYNv00ODaQ3B+tNPoy22jv2diYiP4eoDKr9LA+Bh5Bc3gplTrFdb6JVI+N4kc1DZ/tbtfPg==} - engines: {node: '>=12.7.0'} - peerDependencies: - '@types/react': '>=16.8' - immer: '>=9.0.6' - react: '>=16.8' - peerDependenciesMeta: - '@types/react': - optional: true - immer: - optional: true - react: - optional: true - zustand@4.5.2: resolution: {integrity: sha512-2cN1tPkDVkwCy5ickKrI7vijSjPksFRfqS6237NzT0vqSsztTNnQdHw9mmN7uBdk3gceVXU0a+21jFzFzAc9+g==} engines: {node: '>=12.7.0'} @@ -9173,17 +9090,17 @@ snapshots: '@babel/highlight': 7.24.2 picocolors: 1.0.0 - '@babel/compat-data@7.24.1': {} + '@babel/compat-data@7.24.4': {} - '@babel/core@7.24.3': + '@babel/core@7.24.4': dependencies: '@ampproject/remapping': 2.3.0 '@babel/code-frame': 7.24.2 - '@babel/generator': 7.24.1 + '@babel/generator': 7.24.4 '@babel/helper-compilation-targets': 7.23.6 - '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.3) - '@babel/helpers': 7.24.1 - '@babel/parser': 7.24.1 + '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.4) + '@babel/helpers': 7.24.4 + '@babel/parser': 7.24.4 '@babel/template': 7.24.0 '@babel/traverse': 7.24.1 '@babel/types': 7.24.0 @@ -9195,7 +9112,7 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/generator@7.24.1': + '@babel/generator@7.24.4': dependencies: '@babel/types': 7.24.0 '@jridgewell/gen-mapping': 0.3.5 @@ -9212,35 +9129,35 @@ snapshots: '@babel/helper-compilation-targets@7.23.6': dependencies: - '@babel/compat-data': 7.24.1 + '@babel/compat-data': 7.24.4 '@babel/helper-validator-option': 7.23.5 - browserslist: 4.22.3 + browserslist: 4.23.0 lru-cache: 5.1.1 semver: 6.3.1 - '@babel/helper-create-class-features-plugin@7.24.1(@babel/core@7.24.3)': + '@babel/helper-create-class-features-plugin@7.24.4(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-annotate-as-pure': 7.22.5 '@babel/helper-environment-visitor': 7.22.20 '@babel/helper-function-name': 7.23.0 '@babel/helper-member-expression-to-functions': 7.23.0 '@babel/helper-optimise-call-expression': 7.22.5 - '@babel/helper-replace-supers': 7.24.1(@babel/core@7.24.3) + '@babel/helper-replace-supers': 7.24.1(@babel/core@7.24.4) '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 '@babel/helper-split-export-declaration': 7.22.6 semver: 6.3.1 - '@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.24.3)': + '@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-annotate-as-pure': 7.22.5 regexpu-core: 5.3.2 semver: 6.3.1 - '@babel/helper-define-polyfill-provider@0.6.1(@babel/core@7.24.3)': + '@babel/helper-define-polyfill-provider@0.6.1(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-compilation-targets': 7.23.6 '@babel/helper-plugin-utils': 7.24.0 debug: 4.3.4 @@ -9268,9 +9185,9 @@ snapshots: dependencies: '@babel/types': 7.24.0 - '@babel/helper-module-transforms@7.23.3(@babel/core@7.24.3)': + '@babel/helper-module-transforms@7.23.3(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-environment-visitor': 7.22.20 '@babel/helper-module-imports': 7.24.3 '@babel/helper-simple-access': 7.22.5 @@ -9283,16 +9200,16 @@ snapshots: '@babel/helper-plugin-utils@7.24.0': {} - '@babel/helper-remap-async-to-generator@7.22.20(@babel/core@7.24.3)': + '@babel/helper-remap-async-to-generator@7.22.20(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-annotate-as-pure': 7.22.5 '@babel/helper-environment-visitor': 7.22.20 '@babel/helper-wrap-function': 7.22.20 - '@babel/helper-replace-supers@7.24.1(@babel/core@7.24.3)': + '@babel/helper-replace-supers@7.24.1(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-environment-visitor': 7.22.20 '@babel/helper-member-expression-to-functions': 7.23.0 '@babel/helper-optimise-call-expression': 7.22.5 @@ -9321,7 +9238,7 @@ snapshots: '@babel/template': 7.24.0 '@babel/types': 7.24.0 - '@babel/helpers@7.24.1': + '@babel/helpers@7.24.4': dependencies: '@babel/template': 7.24.0 '@babel/traverse': 7.24.1 @@ -9336,607 +9253,614 @@ snapshots: js-tokens: 4.0.0 picocolors: 1.0.0 - '@babel/parser@7.24.1': + '@babel/parser@7.24.4': dependencies: '@babel/types': 7.24.0 - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.24.1(@babel/core@7.24.3)': + '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.24.4(@babel/core@7.24.4)': + dependencies: + '@babel/core': 7.24.4 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-plugin-utils': 7.24.0 + + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.24.1(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.1(@babel/core@7.24.3)': + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.1(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - '@babel/plugin-transform-optional-chaining': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-optional-chaining': 7.24.1(@babel/core@7.24.4) - '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.24.1(@babel/core@7.24.3)': + '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.24.1(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-environment-visitor': 7.22.20 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.3)': + '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 - '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.24.3)': + '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.24.3)': + '@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.24.3)': + '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.24.3)': + '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.24.3)': + '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.24.3)': + '@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-flow@7.24.1(@babel/core@7.24.3)': + '@babel/plugin-syntax-flow@7.24.1(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-import-assertions@7.24.1(@babel/core@7.24.3)': + '@babel/plugin-syntax-import-assertions@7.24.1(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-import-attributes@7.24.1(@babel/core@7.24.3)': + '@babel/plugin-syntax-import-attributes@7.24.1(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.24.3)': + '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.24.3)': + '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-jsx@7.24.1(@babel/core@7.24.3)': + '@babel/plugin-syntax-jsx@7.24.1(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.24.3)': + '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.24.3)': + '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.24.3)': + '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.24.3)': + '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.24.3)': + '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.24.3)': + '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.24.3)': + '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.24.3)': + '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-typescript@7.24.1(@babel/core@7.24.3)': + '@babel/plugin-syntax-typescript@7.24.1(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.24.3)': + '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.3) + '@babel/core': 7.24.4 + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.4) '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-arrow-functions@7.24.1(@babel/core@7.24.3)': + '@babel/plugin-transform-arrow-functions@7.24.1(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-async-generator-functions@7.24.3(@babel/core@7.24.3)': + '@babel/plugin-transform-async-generator-functions@7.24.3(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-environment-visitor': 7.22.20 '@babel/helper-plugin-utils': 7.24.0 - '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.24.3) - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.3) + '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.24.4) + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.4) - '@babel/plugin-transform-async-to-generator@7.24.1(@babel/core@7.24.3)': + '@babel/plugin-transform-async-to-generator@7.24.1(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-module-imports': 7.24.3 '@babel/helper-plugin-utils': 7.24.0 - '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.24.3) + '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.24.4) - '@babel/plugin-transform-block-scoped-functions@7.24.1(@babel/core@7.24.3)': + '@babel/plugin-transform-block-scoped-functions@7.24.1(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-block-scoping@7.24.1(@babel/core@7.24.3)': + '@babel/plugin-transform-block-scoping@7.24.4(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-class-properties@7.24.1(@babel/core@7.24.3)': + '@babel/plugin-transform-class-properties@7.24.1(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 - '@babel/helper-create-class-features-plugin': 7.24.1(@babel/core@7.24.3) + '@babel/core': 7.24.4 + '@babel/helper-create-class-features-plugin': 7.24.4(@babel/core@7.24.4) '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-class-static-block@7.24.1(@babel/core@7.24.3)': + '@babel/plugin-transform-class-static-block@7.24.4(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 - '@babel/helper-create-class-features-plugin': 7.24.1(@babel/core@7.24.3) + '@babel/core': 7.24.4 + '@babel/helper-create-class-features-plugin': 7.24.4(@babel/core@7.24.4) '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.24.3) + '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.24.4) - '@babel/plugin-transform-classes@7.24.1(@babel/core@7.24.3)': + '@babel/plugin-transform-classes@7.24.1(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-annotate-as-pure': 7.22.5 '@babel/helper-compilation-targets': 7.23.6 '@babel/helper-environment-visitor': 7.22.20 '@babel/helper-function-name': 7.23.0 '@babel/helper-plugin-utils': 7.24.0 - '@babel/helper-replace-supers': 7.24.1(@babel/core@7.24.3) + '@babel/helper-replace-supers': 7.24.1(@babel/core@7.24.4) '@babel/helper-split-export-declaration': 7.22.6 globals: 11.12.0 - '@babel/plugin-transform-computed-properties@7.24.1(@babel/core@7.24.3)': + '@babel/plugin-transform-computed-properties@7.24.1(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 '@babel/template': 7.24.0 - '@babel/plugin-transform-destructuring@7.24.1(@babel/core@7.24.3)': + '@babel/plugin-transform-destructuring@7.24.1(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-dotall-regex@7.24.1(@babel/core@7.24.3)': + '@babel/plugin-transform-dotall-regex@7.24.1(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.3) + '@babel/core': 7.24.4 + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.4) '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-duplicate-keys@7.24.1(@babel/core@7.24.3)': + '@babel/plugin-transform-duplicate-keys@7.24.1(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-dynamic-import@7.24.1(@babel/core@7.24.3)': + '@babel/plugin-transform-dynamic-import@7.24.1(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.3) + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.4) - '@babel/plugin-transform-exponentiation-operator@7.24.1(@babel/core@7.24.3)': + '@babel/plugin-transform-exponentiation-operator@7.24.1(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-builder-binary-assignment-operator-visitor': 7.22.15 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-export-namespace-from@7.24.1(@babel/core@7.24.3)': + '@babel/plugin-transform-export-namespace-from@7.24.1(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.3) + '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.4) - '@babel/plugin-transform-flow-strip-types@7.24.1(@babel/core@7.24.3)': + '@babel/plugin-transform-flow-strip-types@7.24.1(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-flow': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-syntax-flow': 7.24.1(@babel/core@7.24.4) - '@babel/plugin-transform-for-of@7.24.1(@babel/core@7.24.3)': + '@babel/plugin-transform-for-of@7.24.1(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - '@babel/plugin-transform-function-name@7.24.1(@babel/core@7.24.3)': + '@babel/plugin-transform-function-name@7.24.1(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-compilation-targets': 7.23.6 '@babel/helper-function-name': 7.23.0 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-json-strings@7.24.1(@babel/core@7.24.3)': + '@babel/plugin-transform-json-strings@7.24.1(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.3) + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.4) - '@babel/plugin-transform-literals@7.24.1(@babel/core@7.24.3)': + '@babel/plugin-transform-literals@7.24.1(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-logical-assignment-operators@7.24.1(@babel/core@7.24.3)': + '@babel/plugin-transform-logical-assignment-operators@7.24.1(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.3) + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.4) - '@babel/plugin-transform-member-expression-literals@7.24.1(@babel/core@7.24.3)': + '@babel/plugin-transform-member-expression-literals@7.24.1(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-modules-amd@7.24.1(@babel/core@7.24.3)': + '@babel/plugin-transform-modules-amd@7.24.1(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 - '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.3) + '@babel/core': 7.24.4 + '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.4) '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-modules-commonjs@7.24.1(@babel/core@7.24.3)': + '@babel/plugin-transform-modules-commonjs@7.24.1(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 - '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.3) + '@babel/core': 7.24.4 + '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.4) '@babel/helper-plugin-utils': 7.24.0 '@babel/helper-simple-access': 7.22.5 - '@babel/plugin-transform-modules-systemjs@7.24.1(@babel/core@7.24.3)': + '@babel/plugin-transform-modules-systemjs@7.24.1(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-hoist-variables': 7.22.5 - '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.3) + '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.4) '@babel/helper-plugin-utils': 7.24.0 '@babel/helper-validator-identifier': 7.22.20 - '@babel/plugin-transform-modules-umd@7.24.1(@babel/core@7.24.3)': + '@babel/plugin-transform-modules-umd@7.24.1(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 - '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.3) + '@babel/core': 7.24.4 + '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.4) '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.24.3)': + '@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.3) + '@babel/core': 7.24.4 + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.4) '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-new-target@7.24.1(@babel/core@7.24.3)': + '@babel/plugin-transform-new-target@7.24.1(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-nullish-coalescing-operator@7.24.1(@babel/core@7.24.3)': + '@babel/plugin-transform-nullish-coalescing-operator@7.24.1(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.3) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.4) - '@babel/plugin-transform-numeric-separator@7.24.1(@babel/core@7.24.3)': + '@babel/plugin-transform-numeric-separator@7.24.1(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.3) + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.4) - '@babel/plugin-transform-object-rest-spread@7.24.1(@babel/core@7.24.3)': + '@babel/plugin-transform-object-rest-spread@7.24.1(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-compilation-targets': 7.23.6 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.3) - '@babel/plugin-transform-parameters': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.4) + '@babel/plugin-transform-parameters': 7.24.1(@babel/core@7.24.4) - '@babel/plugin-transform-object-super@7.24.1(@babel/core@7.24.3)': + '@babel/plugin-transform-object-super@7.24.1(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 - '@babel/helper-replace-supers': 7.24.1(@babel/core@7.24.3) + '@babel/helper-replace-supers': 7.24.1(@babel/core@7.24.4) - '@babel/plugin-transform-optional-catch-binding@7.24.1(@babel/core@7.24.3)': + '@babel/plugin-transform-optional-catch-binding@7.24.1(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.3) + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.4) - '@babel/plugin-transform-optional-chaining@7.24.1(@babel/core@7.24.3)': + '@babel/plugin-transform-optional-chaining@7.24.1(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.3) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.4) - '@babel/plugin-transform-parameters@7.24.1(@babel/core@7.24.3)': + '@babel/plugin-transform-parameters@7.24.1(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-private-methods@7.24.1(@babel/core@7.24.3)': + '@babel/plugin-transform-private-methods@7.24.1(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 - '@babel/helper-create-class-features-plugin': 7.24.1(@babel/core@7.24.3) + '@babel/core': 7.24.4 + '@babel/helper-create-class-features-plugin': 7.24.4(@babel/core@7.24.4) '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-private-property-in-object@7.24.1(@babel/core@7.24.3)': + '@babel/plugin-transform-private-property-in-object@7.24.1(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-create-class-features-plugin': 7.24.1(@babel/core@7.24.3) + '@babel/helper-create-class-features-plugin': 7.24.4(@babel/core@7.24.4) '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.3) + '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.4) - '@babel/plugin-transform-property-literals@7.24.1(@babel/core@7.24.3)': + '@babel/plugin-transform-property-literals@7.24.1(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-react-display-name@7.24.1(@babel/core@7.24.3)': + '@babel/plugin-transform-react-display-name@7.24.1(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-react-jsx-development@7.22.5(@babel/core@7.24.3)': + '@babel/plugin-transform-react-jsx-development@7.22.5(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 - '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.24.3) + '@babel/core': 7.24.4 + '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.24.4) - '@babel/plugin-transform-react-jsx@7.23.4(@babel/core@7.24.3)': + '@babel/plugin-transform-react-jsx@7.23.4(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-annotate-as-pure': 7.22.5 '@babel/helper-module-imports': 7.24.3 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.4) '@babel/types': 7.24.0 - '@babel/plugin-transform-react-pure-annotations@7.24.1(@babel/core@7.24.3)': + '@babel/plugin-transform-react-pure-annotations@7.24.1(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-annotate-as-pure': 7.22.5 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-regenerator@7.24.1(@babel/core@7.24.3)': + '@babel/plugin-transform-regenerator@7.24.1(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 regenerator-transform: 0.15.2 - '@babel/plugin-transform-reserved-words@7.24.1(@babel/core@7.24.3)': + '@babel/plugin-transform-reserved-words@7.24.1(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-runtime@7.24.3(@babel/core@7.24.3)': + '@babel/plugin-transform-runtime@7.24.3(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-module-imports': 7.24.3 '@babel/helper-plugin-utils': 7.24.0 - babel-plugin-polyfill-corejs2: 0.4.10(@babel/core@7.24.3) - babel-plugin-polyfill-corejs3: 0.10.4(@babel/core@7.24.3) - babel-plugin-polyfill-regenerator: 0.6.1(@babel/core@7.24.3) + babel-plugin-polyfill-corejs2: 0.4.10(@babel/core@7.24.4) + babel-plugin-polyfill-corejs3: 0.10.4(@babel/core@7.24.4) + babel-plugin-polyfill-regenerator: 0.6.1(@babel/core@7.24.4) semver: 6.3.1 transitivePeerDependencies: - supports-color - '@babel/plugin-transform-shorthand-properties@7.24.1(@babel/core@7.24.3)': + '@babel/plugin-transform-shorthand-properties@7.24.1(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-spread@7.24.1(@babel/core@7.24.3)': + '@babel/plugin-transform-spread@7.24.1(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - '@babel/plugin-transform-sticky-regex@7.24.1(@babel/core@7.24.3)': + '@babel/plugin-transform-sticky-regex@7.24.1(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-template-literals@7.24.1(@babel/core@7.24.3)': + '@babel/plugin-transform-template-literals@7.24.1(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-typeof-symbol@7.24.1(@babel/core@7.24.3)': + '@babel/plugin-transform-typeof-symbol@7.24.1(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-typescript@7.24.1(@babel/core@7.24.3)': + '@babel/plugin-transform-typescript@7.24.4(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-create-class-features-plugin': 7.24.1(@babel/core@7.24.3) + '@babel/helper-create-class-features-plugin': 7.24.4(@babel/core@7.24.4) '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-typescript': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-syntax-typescript': 7.24.1(@babel/core@7.24.4) - '@babel/plugin-transform-unicode-escapes@7.24.1(@babel/core@7.24.3)': + '@babel/plugin-transform-unicode-escapes@7.24.1(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-unicode-property-regex@7.24.1(@babel/core@7.24.3)': + '@babel/plugin-transform-unicode-property-regex@7.24.1(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.3) + '@babel/core': 7.24.4 + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.4) '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-unicode-regex@7.24.1(@babel/core@7.24.3)': + '@babel/plugin-transform-unicode-regex@7.24.1(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.3) + '@babel/core': 7.24.4 + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.4) '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-unicode-sets-regex@7.24.1(@babel/core@7.24.3)': + '@babel/plugin-transform-unicode-sets-regex@7.24.1(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.3) + '@babel/core': 7.24.4 + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.4) '@babel/helper-plugin-utils': 7.24.0 - '@babel/preset-env@7.24.3(@babel/core@7.24.3)': + '@babel/preset-env@7.24.4(@babel/core@7.24.4)': dependencies: - '@babel/compat-data': 7.24.1 - '@babel/core': 7.24.3 + '@babel/compat-data': 7.24.4 + '@babel/core': 7.24.4 '@babel/helper-compilation-targets': 7.23.6 '@babel/helper-plugin-utils': 7.24.0 '@babel/helper-validator-option': 7.23.5 - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.3) - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.3) - '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.24.3) - '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.24.3) - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.3) - '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.3) - '@babel/plugin-syntax-import-assertions': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-syntax-import-attributes': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.24.3) - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.3) - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.3) - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.3) - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.3) - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.3) - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.3) - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.3) - '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.3) - '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.24.3) - '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.24.3) - '@babel/plugin-transform-arrow-functions': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-async-generator-functions': 7.24.3(@babel/core@7.24.3) - '@babel/plugin-transform-async-to-generator': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-block-scoped-functions': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-block-scoping': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-class-properties': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-class-static-block': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-classes': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-computed-properties': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-destructuring': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-dotall-regex': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-duplicate-keys': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-dynamic-import': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-exponentiation-operator': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-export-namespace-from': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-for-of': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-function-name': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-json-strings': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-literals': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-logical-assignment-operators': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-member-expression-literals': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-modules-amd': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-modules-commonjs': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-modules-systemjs': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-modules-umd': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.24.3) - '@babel/plugin-transform-new-target': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-nullish-coalescing-operator': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-numeric-separator': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-object-rest-spread': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-object-super': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-optional-catch-binding': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-optional-chaining': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-parameters': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-private-methods': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-private-property-in-object': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-property-literals': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-regenerator': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-reserved-words': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-shorthand-properties': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-spread': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-sticky-regex': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-template-literals': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-typeof-symbol': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-unicode-escapes': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-unicode-property-regex': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-unicode-regex': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-unicode-sets-regex': 7.24.1(@babel/core@7.24.3) - '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.24.3) - babel-plugin-polyfill-corejs2: 0.4.10(@babel/core@7.24.3) - babel-plugin-polyfill-corejs3: 0.10.4(@babel/core@7.24.3) - babel-plugin-polyfill-regenerator: 0.6.1(@babel/core@7.24.3) - core-js-compat: 3.36.1 + '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.24.4(@babel/core@7.24.4) + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.24.1(@babel/core@7.24.4) + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.24.1(@babel/core@7.24.4) + '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.24.1(@babel/core@7.24.4) + '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.4) + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.4) + '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.24.4) + '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.24.4) + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.4) + '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.4) + '@babel/plugin-syntax-import-assertions': 7.24.1(@babel/core@7.24.4) + '@babel/plugin-syntax-import-attributes': 7.24.1(@babel/core@7.24.4) + '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.24.4) + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.4) + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.4) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.4) + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.4) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.4) + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.4) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.4) + '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.4) + '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.24.4) + '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.24.4) + '@babel/plugin-transform-arrow-functions': 7.24.1(@babel/core@7.24.4) + '@babel/plugin-transform-async-generator-functions': 7.24.3(@babel/core@7.24.4) + '@babel/plugin-transform-async-to-generator': 7.24.1(@babel/core@7.24.4) + '@babel/plugin-transform-block-scoped-functions': 7.24.1(@babel/core@7.24.4) + '@babel/plugin-transform-block-scoping': 7.24.4(@babel/core@7.24.4) + '@babel/plugin-transform-class-properties': 7.24.1(@babel/core@7.24.4) + '@babel/plugin-transform-class-static-block': 7.24.4(@babel/core@7.24.4) + '@babel/plugin-transform-classes': 7.24.1(@babel/core@7.24.4) + '@babel/plugin-transform-computed-properties': 7.24.1(@babel/core@7.24.4) + '@babel/plugin-transform-destructuring': 7.24.1(@babel/core@7.24.4) + '@babel/plugin-transform-dotall-regex': 7.24.1(@babel/core@7.24.4) + '@babel/plugin-transform-duplicate-keys': 7.24.1(@babel/core@7.24.4) + '@babel/plugin-transform-dynamic-import': 7.24.1(@babel/core@7.24.4) + '@babel/plugin-transform-exponentiation-operator': 7.24.1(@babel/core@7.24.4) + '@babel/plugin-transform-export-namespace-from': 7.24.1(@babel/core@7.24.4) + '@babel/plugin-transform-for-of': 7.24.1(@babel/core@7.24.4) + '@babel/plugin-transform-function-name': 7.24.1(@babel/core@7.24.4) + '@babel/plugin-transform-json-strings': 7.24.1(@babel/core@7.24.4) + '@babel/plugin-transform-literals': 7.24.1(@babel/core@7.24.4) + '@babel/plugin-transform-logical-assignment-operators': 7.24.1(@babel/core@7.24.4) + '@babel/plugin-transform-member-expression-literals': 7.24.1(@babel/core@7.24.4) + '@babel/plugin-transform-modules-amd': 7.24.1(@babel/core@7.24.4) + '@babel/plugin-transform-modules-commonjs': 7.24.1(@babel/core@7.24.4) + '@babel/plugin-transform-modules-systemjs': 7.24.1(@babel/core@7.24.4) + '@babel/plugin-transform-modules-umd': 7.24.1(@babel/core@7.24.4) + '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.24.4) + '@babel/plugin-transform-new-target': 7.24.1(@babel/core@7.24.4) + '@babel/plugin-transform-nullish-coalescing-operator': 7.24.1(@babel/core@7.24.4) + '@babel/plugin-transform-numeric-separator': 7.24.1(@babel/core@7.24.4) + '@babel/plugin-transform-object-rest-spread': 7.24.1(@babel/core@7.24.4) + '@babel/plugin-transform-object-super': 7.24.1(@babel/core@7.24.4) + '@babel/plugin-transform-optional-catch-binding': 7.24.1(@babel/core@7.24.4) + '@babel/plugin-transform-optional-chaining': 7.24.1(@babel/core@7.24.4) + '@babel/plugin-transform-parameters': 7.24.1(@babel/core@7.24.4) + '@babel/plugin-transform-private-methods': 7.24.1(@babel/core@7.24.4) + '@babel/plugin-transform-private-property-in-object': 7.24.1(@babel/core@7.24.4) + '@babel/plugin-transform-property-literals': 7.24.1(@babel/core@7.24.4) + '@babel/plugin-transform-regenerator': 7.24.1(@babel/core@7.24.4) + '@babel/plugin-transform-reserved-words': 7.24.1(@babel/core@7.24.4) + '@babel/plugin-transform-shorthand-properties': 7.24.1(@babel/core@7.24.4) + '@babel/plugin-transform-spread': 7.24.1(@babel/core@7.24.4) + '@babel/plugin-transform-sticky-regex': 7.24.1(@babel/core@7.24.4) + '@babel/plugin-transform-template-literals': 7.24.1(@babel/core@7.24.4) + '@babel/plugin-transform-typeof-symbol': 7.24.1(@babel/core@7.24.4) + '@babel/plugin-transform-unicode-escapes': 7.24.1(@babel/core@7.24.4) + '@babel/plugin-transform-unicode-property-regex': 7.24.1(@babel/core@7.24.4) + '@babel/plugin-transform-unicode-regex': 7.24.1(@babel/core@7.24.4) + '@babel/plugin-transform-unicode-sets-regex': 7.24.1(@babel/core@7.24.4) + '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.24.4) + babel-plugin-polyfill-corejs2: 0.4.10(@babel/core@7.24.4) + babel-plugin-polyfill-corejs3: 0.10.4(@babel/core@7.24.4) + babel-plugin-polyfill-regenerator: 0.6.1(@babel/core@7.24.4) + core-js-compat: 3.37.0 semver: 6.3.1 transitivePeerDependencies: - supports-color - '@babel/preset-flow@7.24.1(@babel/core@7.24.3)': + '@babel/preset-flow@7.24.1(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 '@babel/helper-validator-option': 7.23.5 - '@babel/plugin-transform-flow-strip-types': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-flow-strip-types': 7.24.1(@babel/core@7.24.4) - '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.24.3)': + '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 '@babel/types': 7.24.0 esutils: 2.0.3 - '@babel/preset-react@7.24.1(@babel/core@7.24.3)': + '@babel/preset-react@7.24.1(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 '@babel/helper-validator-option': 7.23.5 - '@babel/plugin-transform-react-display-name': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.24.3) - '@babel/plugin-transform-react-jsx-development': 7.22.5(@babel/core@7.24.3) - '@babel/plugin-transform-react-pure-annotations': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-react-display-name': 7.24.1(@babel/core@7.24.4) + '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.24.4) + '@babel/plugin-transform-react-jsx-development': 7.22.5(@babel/core@7.24.4) + '@babel/plugin-transform-react-pure-annotations': 7.24.1(@babel/core@7.24.4) - '@babel/preset-typescript@7.24.1(@babel/core@7.24.3)': + '@babel/preset-typescript@7.24.1(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 '@babel/helper-validator-option': 7.23.5 - '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-modules-commonjs': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-typescript': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.4) + '@babel/plugin-transform-modules-commonjs': 7.24.1(@babel/core@7.24.4) + '@babel/plugin-transform-typescript': 7.24.4(@babel/core@7.24.4) - '@babel/register@7.23.7(@babel/core@7.24.3)': + '@babel/register@7.23.7(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 clone-deep: 4.0.1 find-cache-dir: 2.1.0 make-dir: 2.1.0 @@ -9945,25 +9869,25 @@ snapshots: '@babel/regjsgen@0.8.0': {} - '@babel/runtime@7.23.9': + '@babel/runtime@7.24.4': dependencies: regenerator-runtime: 0.14.1 '@babel/template@7.24.0': dependencies: '@babel/code-frame': 7.24.2 - '@babel/parser': 7.24.1 + '@babel/parser': 7.24.4 '@babel/types': 7.24.0 '@babel/traverse@7.24.1': dependencies: '@babel/code-frame': 7.24.2 - '@babel/generator': 7.24.1 + '@babel/generator': 7.24.4 '@babel/helper-environment-visitor': 7.22.20 '@babel/helper-function-name': 7.23.0 '@babel/helper-hoist-variables': 7.22.5 '@babel/helper-split-export-declaration': 7.22.6 - '@babel/parser': 7.24.1 + '@babel/parser': 7.24.4 '@babel/types': 7.24.0 debug: 4.3.4 globals: 11.12.0 @@ -9978,56 +9902,55 @@ snapshots: '@base2/pretty-print-object@1.0.1': {} - '@bufbuild/buf-darwin-arm64@1.29.0': + '@bufbuild/buf-darwin-arm64@1.30.1': optional: true - '@bufbuild/buf-darwin-x64@1.29.0': + '@bufbuild/buf-darwin-x64@1.30.1': optional: true - '@bufbuild/buf-linux-aarch64@1.29.0': + '@bufbuild/buf-linux-aarch64@1.30.1': optional: true - '@bufbuild/buf-linux-x64@1.29.0': + '@bufbuild/buf-linux-x64@1.30.1': optional: true - '@bufbuild/buf-win32-arm64@1.29.0': + '@bufbuild/buf-win32-arm64@1.30.1': optional: true - '@bufbuild/buf-win32-x64@1.29.0': + '@bufbuild/buf-win32-x64@1.30.1': optional: true - '@bufbuild/buf@1.29.0': + '@bufbuild/buf@1.30.1': optionalDependencies: - '@bufbuild/buf-darwin-arm64': 1.29.0 - '@bufbuild/buf-darwin-x64': 1.29.0 - '@bufbuild/buf-linux-aarch64': 1.29.0 - '@bufbuild/buf-linux-x64': 1.29.0 - '@bufbuild/buf-win32-arm64': 1.29.0 - '@bufbuild/buf-win32-x64': 1.29.0 + '@bufbuild/buf-darwin-arm64': 1.30.1 + '@bufbuild/buf-darwin-x64': 1.30.1 + '@bufbuild/buf-linux-aarch64': 1.30.1 + '@bufbuild/buf-linux-x64': 1.30.1 + '@bufbuild/buf-win32-arm64': 1.30.1 + '@bufbuild/buf-win32-x64': 1.30.1 - '@bufbuild/protobuf@1.7.2': {} + '@bufbuild/protobuf@1.8.0': {} - '@bufbuild/protoc-gen-es@1.7.2(@bufbuild/protobuf@1.7.2)': + '@bufbuild/protoc-gen-es@1.8.0(@bufbuild/protobuf@1.8.0)': dependencies: - '@bufbuild/protoplugin': 1.7.2 + '@bufbuild/protoplugin': 1.8.0 optionalDependencies: - '@bufbuild/protobuf': 1.7.2 + '@bufbuild/protobuf': 1.8.0 transitivePeerDependencies: - supports-color - '@bufbuild/protoplugin@1.7.2': + '@bufbuild/protoplugin@1.8.0': dependencies: - '@bufbuild/protobuf': 1.7.2 + '@bufbuild/protobuf': 1.8.0 '@typescript/vfs': 1.5.0 typescript: 4.5.2 transitivePeerDependencies: - supports-color - '@chain-registry/client@1.19.2': + '@chain-registry/client@1.28.2': dependencies: - '@babel/runtime': 7.23.9 - '@chain-registry/types': 0.18.1 - '@chain-registry/utils': 1.18.2 + '@chain-registry/types': 0.25.2 + '@chain-registry/utils': 1.26.2 bfs-path: 1.0.2 cross-fetch: 3.1.8 transitivePeerDependencies: @@ -10035,21 +9958,20 @@ snapshots: '@chain-registry/cosmostation@1.26.0': dependencies: - '@babel/runtime': 7.23.9 + '@babel/runtime': 7.24.4 '@chain-registry/types': 0.17.1 - '@chain-registry/utils': 1.18.2 + '@chain-registry/utils': 1.26.2 '@cosmostation/extension-client': 0.1.15 - '@chain-registry/cosmostation@1.32.1': + '@chain-registry/cosmostation@1.44.3': dependencies: - '@babel/runtime': 7.23.9 - '@chain-registry/types': 0.18.1 - '@chain-registry/utils': 1.18.2 + '@chain-registry/types': 0.25.2 + '@chain-registry/utils': 1.26.2 '@cosmostation/extension-client': 0.1.15 '@chain-registry/keplr@1.28.0': dependencies: - '@babel/runtime': 7.23.9 + '@babel/runtime': 7.24.4 '@chain-registry/types': 0.17.1 '@keplr-wallet/cosmos': 0.12.28 '@keplr-wallet/crypto': 0.12.28 @@ -10057,24 +9979,25 @@ snapshots: '@chain-registry/types@0.17.0': dependencies: - '@babel/runtime': 7.23.9 + '@babel/runtime': 7.24.4 '@chain-registry/types@0.17.1': dependencies: - '@babel/runtime': 7.23.9 + '@babel/runtime': 7.24.4 - '@chain-registry/types@0.18.1': + '@chain-registry/types@0.18.19': dependencies: - '@babel/runtime': 7.23.9 + '@babel/runtime': 7.24.4 - '@chain-registry/utils@1.18.2': + '@chain-registry/types@0.25.2': {} + + '@chain-registry/utils@1.26.2': dependencies: - '@babel/runtime': 7.23.9 - '@chain-registry/types': 0.18.1 + '@chain-registry/types': 0.25.2 bignumber.js: 9.1.1 sha.js: 2.4.11 - '@chromatic-com/storybook@1.2.26(react@18.2.0)': + '@chromatic-com/storybook@1.3.3(react@18.2.0)': dependencies: chromatic: 11.3.0 filesize: 10.1.1 @@ -10098,7 +10021,7 @@ snapshots: '@confio/ics23@0.6.8': dependencies: - '@noble/hashes': 1.3.3 + '@noble/hashes': 1.4.0 protobufjs: 6.11.4 '@cosmjs/amino@0.27.1': @@ -10153,7 +10076,7 @@ snapshots: '@cosmjs/utils': 0.27.1 bip39: 3.1.0 bn.js: 5.2.1 - elliptic: 6.5.4 + elliptic: 6.5.5 js-sha3: 0.8.0 libsodium-wrappers: 0.7.13 ripemd160: 2.0.2 @@ -10164,19 +10087,9 @@ snapshots: '@cosmjs/encoding': 0.31.3 '@cosmjs/math': 0.31.3 '@cosmjs/utils': 0.31.3 - '@noble/hashes': 1.3.3 - bn.js: 5.2.1 - elliptic: 6.5.4 - libsodium-wrappers-sumo: 0.7.13 - - '@cosmjs/crypto@0.32.2': - dependencies: - '@cosmjs/encoding': 0.32.2 - '@cosmjs/math': 0.32.2 - '@cosmjs/utils': 0.32.2 - '@noble/hashes': 1.3.3 + '@noble/hashes': 1.4.0 bn.js: 5.2.1 - elliptic: 6.5.4 + elliptic: 6.5.5 libsodium-wrappers-sumo: 0.7.13 '@cosmjs/crypto@0.32.3': @@ -10184,9 +10097,9 @@ snapshots: '@cosmjs/encoding': 0.32.3 '@cosmjs/math': 0.32.3 '@cosmjs/utils': 0.32.3 - '@noble/hashes': 1.3.3 + '@noble/hashes': 1.4.0 bn.js: 5.2.1 - elliptic: 6.5.4 + elliptic: 6.5.5 libsodium-wrappers-sumo: 0.7.13 '@cosmjs/encoding@0.27.1': @@ -10201,12 +10114,6 @@ snapshots: bech32: 1.1.4 readonly-date: 1.0.0 - '@cosmjs/encoding@0.32.2': - dependencies: - base64-js: 1.5.1 - bech32: 1.1.4 - readonly-date: 1.0.0 - '@cosmjs/encoding@0.32.3': dependencies: base64-js: 1.5.1 @@ -10238,10 +10145,6 @@ snapshots: dependencies: bn.js: 5.2.1 - '@cosmjs/math@0.32.2': - dependencies: - bn.js: 5.2.1 - '@cosmjs/math@0.32.3': dependencies: bn.js: 5.2.1 @@ -10259,10 +10162,10 @@ snapshots: '@cosmjs/proto-signing@0.32.2': dependencies: '@cosmjs/amino': 0.32.2 - '@cosmjs/crypto': 0.32.2 - '@cosmjs/encoding': 0.32.2 - '@cosmjs/math': 0.32.2 - '@cosmjs/utils': 0.32.2 + '@cosmjs/crypto': 0.32.3 + '@cosmjs/encoding': 0.32.3 + '@cosmjs/math': 0.32.3 + '@cosmjs/utils': 0.32.3 cosmjs-types: 0.9.0 '@cosmjs/proto-signing@0.32.3': @@ -10288,12 +10191,12 @@ snapshots: dependencies: '@confio/ics23': 0.6.8 '@cosmjs/amino': 0.32.2 - '@cosmjs/encoding': 0.32.2 - '@cosmjs/math': 0.32.2 - '@cosmjs/proto-signing': 0.32.2 - '@cosmjs/stream': 0.32.2 + '@cosmjs/encoding': 0.32.3 + '@cosmjs/math': 0.32.3 + '@cosmjs/proto-signing': 0.32.3 + '@cosmjs/stream': 0.32.3 '@cosmjs/tendermint-rpc': 0.32.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@cosmjs/utils': 0.32.2 + '@cosmjs/utils': 0.32.3 cosmjs-types: 0.9.0 xstream: 11.14.0 transitivePeerDependencies: @@ -10318,10 +10221,6 @@ snapshots: - debug - utf-8-validate - '@cosmjs/stream@0.32.2': - dependencies: - xstream: 11.14.0 - '@cosmjs/stream@0.32.3': dependencies: xstream: 11.14.0 @@ -10335,7 +10234,7 @@ snapshots: '@cosmjs/socket': 0.32.3(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@cosmjs/stream': 0.32.3 '@cosmjs/utils': 0.32.3 - axios: 1.6.7 + axios: 1.6.8 readonly-date: 1.0.0 xstream: 11.14.0 transitivePeerDependencies: @@ -10352,7 +10251,7 @@ snapshots: '@cosmjs/socket': 0.32.3(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@cosmjs/stream': 0.32.3 '@cosmjs/utils': 0.32.3 - axios: 1.6.7 + axios: 1.6.8 readonly-date: 1.0.0 xstream: 11.14.0 transitivePeerDependencies: @@ -10364,8 +10263,6 @@ snapshots: '@cosmjs/utils@0.31.3': {} - '@cosmjs/utils@0.32.2': {} - '@cosmjs/utils@0.32.3': {} '@cosmology/lcd@0.13.3': @@ -10374,11 +10271,11 @@ snapshots: transitivePeerDependencies: - debug - '@cosmos-kit/coin98-extension@2.7.10(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.2)(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@cosmos-kit/coin98-extension@2.7.10(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.3)(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: '@chain-registry/keplr': 1.28.0 '@cosmjs/amino': 0.32.3 - '@cosmjs/proto-signing': 0.32.2 + '@cosmjs/proto-signing': 0.32.3 '@cosmos-kit/core': 2.8.9(bufferutil@4.0.8)(utf-8-validate@5.0.10) cosmjs-types: 0.9.0 transitivePeerDependencies: @@ -10397,12 +10294,13 @@ snapshots: - bufferutil - debug - encoding - - supports-color + - ioredis + - uWebSockets.js - utf-8-validate - '@cosmos-kit/coin98@2.6.10(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.2)(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@cosmos-kit/coin98@2.6.10(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.3)(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: - '@cosmos-kit/coin98-extension': 2.7.10(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.2)(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@cosmos-kit/coin98-extension': 2.7.10(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.3)(bufferutil@4.0.8)(utf-8-validate@5.0.10) transitivePeerDependencies: - '@azure/app-configuration' - '@azure/cosmos' @@ -10421,14 +10319,15 @@ snapshots: - bufferutil - debug - encoding - - supports-color + - ioredis + - uWebSockets.js - utf-8-validate - '@cosmos-kit/compass-extension@2.6.9(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.2)(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@cosmos-kit/compass-extension@2.6.9(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.3)(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: '@chain-registry/keplr': 1.28.0 '@cosmjs/amino': 0.32.3 - '@cosmjs/proto-signing': 0.32.2 + '@cosmjs/proto-signing': 0.32.3 '@cosmos-kit/core': 2.8.9(bufferutil@4.0.8)(utf-8-validate@5.0.10) transitivePeerDependencies: - '@azure/app-configuration' @@ -10446,12 +10345,13 @@ snapshots: - bufferutil - debug - encoding - - supports-color + - ioredis + - uWebSockets.js - utf-8-validate - '@cosmos-kit/compass@2.6.9(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.2)(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@cosmos-kit/compass@2.6.9(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.3)(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: - '@cosmos-kit/compass-extension': 2.6.9(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.2)(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@cosmos-kit/compass-extension': 2.6.9(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.3)(bufferutil@4.0.8)(utf-8-validate@5.0.10) transitivePeerDependencies: - '@azure/app-configuration' - '@azure/cosmos' @@ -10470,12 +10370,13 @@ snapshots: - bufferutil - debug - encoding - - supports-color + - ioredis + - uWebSockets.js - utf-8-validate '@cosmos-kit/core@2.8.9(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: - '@chain-registry/client': 1.19.2 + '@chain-registry/client': 1.28.2 '@chain-registry/types': 0.17.0 '@cosmjs/amino': 0.32.3 '@cosmjs/cosmwasm-stargate': 0.32.3(bufferutil@4.0.8)(utf-8-validate@5.0.10) @@ -10502,14 +10403,15 @@ snapshots: - bufferutil - debug - encoding - - supports-color + - ioredis + - uWebSockets.js - utf-8-validate - '@cosmos-kit/cosmostation-extension@2.7.10(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.2)(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@cosmos-kit/cosmostation-extension@2.7.10(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.3)(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: - '@chain-registry/cosmostation': 1.32.1 + '@chain-registry/cosmostation': 1.44.3 '@cosmjs/amino': 0.32.3 - '@cosmjs/proto-signing': 0.32.2 + '@cosmjs/proto-signing': 0.32.3 '@cosmos-kit/core': 2.8.9(bufferutil@4.0.8)(utf-8-validate@5.0.10) cosmjs-types: 0.9.0 transitivePeerDependencies: @@ -10528,14 +10430,15 @@ snapshots: - bufferutil - debug - encoding - - supports-color + - ioredis + - uWebSockets.js - utf-8-validate - '@cosmos-kit/cosmostation-mobile@2.6.9(@cosmjs/amino@0.32.3)(@walletconnect/types@2.11.1)(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@cosmos-kit/cosmostation-mobile@2.6.9(@cosmjs/amino@0.32.3)(@walletconnect/types@2.12.2)(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: '@chain-registry/cosmostation': 1.26.0 '@cosmos-kit/core': 2.8.9(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@cosmos-kit/walletconnect': 2.5.9(@cosmjs/amino@0.32.3)(@walletconnect/types@2.11.1)(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@cosmos-kit/walletconnect': 2.5.9(@cosmjs/amino@0.32.3)(@walletconnect/types@2.12.2)(bufferutil@4.0.8)(utf-8-validate@5.0.10) transitivePeerDependencies: - '@azure/app-configuration' - '@azure/cosmos' @@ -10554,13 +10457,14 @@ snapshots: - bufferutil - debug - encoding - - supports-color + - ioredis + - uWebSockets.js - utf-8-validate - '@cosmos-kit/cosmostation@2.6.10(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.2)(@walletconnect/types@2.11.1)(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@cosmos-kit/cosmostation@2.6.10(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.3)(@walletconnect/types@2.12.2)(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: - '@cosmos-kit/cosmostation-extension': 2.7.10(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.2)(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@cosmos-kit/cosmostation-mobile': 2.6.9(@cosmjs/amino@0.32.3)(@walletconnect/types@2.11.1)(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@cosmos-kit/cosmostation-extension': 2.7.10(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.3)(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@cosmos-kit/cosmostation-mobile': 2.6.9(@cosmjs/amino@0.32.3)(@walletconnect/types@2.12.2)(bufferutil@4.0.8)(utf-8-validate@5.0.10) transitivePeerDependencies: - '@azure/app-configuration' - '@azure/cosmos' @@ -10580,13 +10484,14 @@ snapshots: - bufferutil - debug - encoding - - supports-color + - ioredis + - uWebSockets.js - utf-8-validate - '@cosmos-kit/exodus-extension@2.5.9(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.2)(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)': + '@cosmos-kit/exodus-extension@2.5.9(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.3)(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)': dependencies: '@cosmjs/amino': 0.32.3 - '@cosmjs/proto-signing': 0.32.2 + '@cosmjs/proto-signing': 0.32.3 '@cosmos-kit/core': 2.8.9(bufferutil@4.0.8)(utf-8-validate@5.0.10) react-icons: 4.4.0(react@18.2.0) transitivePeerDependencies: @@ -10605,13 +10510,14 @@ snapshots: - bufferutil - debug - encoding + - ioredis - react - - supports-color + - uWebSockets.js - utf-8-validate - '@cosmos-kit/exodus@2.5.9(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.2)(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)': + '@cosmos-kit/exodus@2.5.9(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.3)(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)': dependencies: - '@cosmos-kit/exodus-extension': 2.5.9(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.2)(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10) + '@cosmos-kit/exodus-extension': 2.5.9(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.3)(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10) transitivePeerDependencies: - '@azure/app-configuration' - '@azure/cosmos' @@ -10630,15 +10536,16 @@ snapshots: - bufferutil - debug - encoding + - ioredis - react - - supports-color + - uWebSockets.js - utf-8-validate - '@cosmos-kit/fin-extension@2.6.9(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.2)(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@cosmos-kit/fin-extension@2.6.9(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.3)(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: '@chain-registry/keplr': 1.28.0 '@cosmjs/amino': 0.32.3 - '@cosmjs/proto-signing': 0.32.2 + '@cosmjs/proto-signing': 0.32.3 '@cosmos-kit/core': 2.8.9(bufferutil@4.0.8)(utf-8-validate@5.0.10) transitivePeerDependencies: - '@azure/app-configuration' @@ -10656,12 +10563,13 @@ snapshots: - bufferutil - debug - encoding - - supports-color + - ioredis + - uWebSockets.js - utf-8-validate - '@cosmos-kit/fin@2.6.9(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.2)(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@cosmos-kit/fin@2.6.9(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.3)(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: - '@cosmos-kit/fin-extension': 2.6.9(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.2)(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@cosmos-kit/fin-extension': 2.6.9(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.3)(bufferutil@4.0.8)(utf-8-validate@5.0.10) transitivePeerDependencies: - '@azure/app-configuration' - '@azure/cosmos' @@ -10680,13 +10588,14 @@ snapshots: - bufferutil - debug - encoding - - supports-color + - ioredis + - uWebSockets.js - utf-8-validate - '@cosmos-kit/frontier-extension@2.5.9(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.2)(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@cosmos-kit/frontier-extension@2.5.9(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.3)(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: '@cosmjs/amino': 0.32.3 - '@cosmjs/proto-signing': 0.32.2 + '@cosmjs/proto-signing': 0.32.3 '@cosmos-kit/core': 2.8.9(bufferutil@4.0.8)(utf-8-validate@5.0.10) transitivePeerDependencies: - '@azure/app-configuration' @@ -10704,12 +10613,13 @@ snapshots: - bufferutil - debug - encoding - - supports-color + - ioredis + - uWebSockets.js - utf-8-validate - '@cosmos-kit/frontier@2.5.9(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.2)(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@cosmos-kit/frontier@2.5.9(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.3)(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: - '@cosmos-kit/frontier-extension': 2.5.9(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.2)(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@cosmos-kit/frontier-extension': 2.5.9(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.3)(bufferutil@4.0.8)(utf-8-validate@5.0.10) transitivePeerDependencies: - '@azure/app-configuration' - '@azure/cosmos' @@ -10728,16 +10638,17 @@ snapshots: - bufferutil - debug - encoding - - supports-color + - ioredis + - uWebSockets.js - utf-8-validate - '@cosmos-kit/keplr-extension@2.7.9(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.2)(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@cosmos-kit/keplr-extension@2.7.9(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.3)(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: '@chain-registry/keplr': 1.28.0 '@cosmjs/amino': 0.32.3 - '@cosmjs/proto-signing': 0.32.2 + '@cosmjs/proto-signing': 0.32.3 '@cosmos-kit/core': 2.8.9(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@keplr-wallet/types': 0.12.67 + '@keplr-wallet/types': 0.12.80 transitivePeerDependencies: - '@azure/app-configuration' - '@azure/cosmos' @@ -10754,16 +10665,17 @@ snapshots: - bufferutil - debug - encoding - - supports-color + - ioredis + - uWebSockets.js - utf-8-validate - '@cosmos-kit/keplr-mobile@2.6.9(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.2)(@walletconnect/types@2.11.1)(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@cosmos-kit/keplr-mobile@2.6.9(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.3)(@walletconnect/types@2.12.2)(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: '@chain-registry/keplr': 1.28.0 '@cosmjs/amino': 0.32.3 - '@cosmjs/proto-signing': 0.32.2 + '@cosmjs/proto-signing': 0.32.3 '@cosmos-kit/core': 2.8.9(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@cosmos-kit/walletconnect': 2.5.9(@cosmjs/amino@0.32.3)(@walletconnect/types@2.11.1)(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@cosmos-kit/walletconnect': 2.5.9(@cosmjs/amino@0.32.3)(@walletconnect/types@2.12.2)(bufferutil@4.0.8)(utf-8-validate@5.0.10) transitivePeerDependencies: - '@azure/app-configuration' - '@azure/cosmos' @@ -10781,13 +10693,14 @@ snapshots: - bufferutil - debug - encoding - - supports-color + - ioredis + - uWebSockets.js - utf-8-validate - '@cosmos-kit/keplr@2.6.9(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.2)(@walletconnect/types@2.11.1)(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@cosmos-kit/keplr@2.6.9(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.3)(@walletconnect/types@2.12.2)(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: - '@cosmos-kit/keplr-extension': 2.7.9(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.2)(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@cosmos-kit/keplr-mobile': 2.6.9(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.2)(@walletconnect/types@2.11.1)(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@cosmos-kit/keplr-extension': 2.7.9(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.3)(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@cosmos-kit/keplr-mobile': 2.6.9(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.3)(@walletconnect/types@2.12.2)(bufferutil@4.0.8)(utf-8-validate@5.0.10) transitivePeerDependencies: - '@azure/app-configuration' - '@azure/cosmos' @@ -10807,14 +10720,15 @@ snapshots: - bufferutil - debug - encoding - - supports-color + - ioredis + - uWebSockets.js - utf-8-validate - '@cosmos-kit/leap-extension@2.7.10(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.2)(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@cosmos-kit/leap-extension@2.7.10(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.3)(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: '@chain-registry/keplr': 1.28.0 '@cosmjs/amino': 0.32.3 - '@cosmjs/proto-signing': 0.32.2 + '@cosmjs/proto-signing': 0.32.3 '@cosmos-kit/core': 2.8.9(bufferutil@4.0.8)(utf-8-validate@5.0.10) transitivePeerDependencies: - '@azure/app-configuration' @@ -10832,14 +10746,15 @@ snapshots: - bufferutil - debug - encoding - - supports-color + - ioredis + - uWebSockets.js - utf-8-validate - '@cosmos-kit/leap-metamask-cosmos-snap@0.6.2(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.2)(bufferutil@4.0.8)(cosmjs-types@0.9.0)(utf-8-validate@5.0.10)': + '@cosmos-kit/leap-metamask-cosmos-snap@0.6.2(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.3)(bufferutil@4.0.8)(cosmjs-types@0.9.0)(utf-8-validate@5.0.10)': dependencies: '@chain-registry/keplr': 1.28.0 '@cosmjs/amino': 0.32.3 - '@cosmjs/proto-signing': 0.32.2 + '@cosmjs/proto-signing': 0.32.3 '@cosmos-kit/core': 2.8.9(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@leapwallet/cosmos-snap-provider': 0.1.25 '@metamask/providers': 11.1.2 @@ -10860,14 +10775,15 @@ snapshots: - bufferutil - debug - encoding - - supports-color + - ioredis + - uWebSockets.js - utf-8-validate - '@cosmos-kit/leap-mobile@2.6.10(@cosmjs/amino@0.32.3)(@walletconnect/types@2.11.1)(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@cosmos-kit/leap-mobile@2.6.10(@cosmjs/amino@0.32.3)(@walletconnect/types@2.12.2)(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: '@chain-registry/keplr': 1.28.0 '@cosmos-kit/core': 2.8.9(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@cosmos-kit/walletconnect': 2.5.9(@cosmjs/amino@0.32.3)(@walletconnect/types@2.11.1)(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@cosmos-kit/walletconnect': 2.5.9(@cosmjs/amino@0.32.3)(@walletconnect/types@2.12.2)(bufferutil@4.0.8)(utf-8-validate@5.0.10) transitivePeerDependencies: - '@azure/app-configuration' - '@azure/cosmos' @@ -10886,14 +10802,15 @@ snapshots: - bufferutil - debug - encoding - - supports-color + - ioredis + - uWebSockets.js - utf-8-validate - '@cosmos-kit/leap@2.6.12(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.2)(@walletconnect/types@2.11.1)(bufferutil@4.0.8)(cosmjs-types@0.9.0)(utf-8-validate@5.0.10)': + '@cosmos-kit/leap@2.6.12(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.3)(@walletconnect/types@2.12.2)(bufferutil@4.0.8)(cosmjs-types@0.9.0)(utf-8-validate@5.0.10)': dependencies: - '@cosmos-kit/leap-extension': 2.7.10(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.2)(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@cosmos-kit/leap-metamask-cosmos-snap': 0.6.2(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.2)(bufferutil@4.0.8)(cosmjs-types@0.9.0)(utf-8-validate@5.0.10) - '@cosmos-kit/leap-mobile': 2.6.10(@cosmjs/amino@0.32.3)(@walletconnect/types@2.11.1)(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@cosmos-kit/leap-extension': 2.7.10(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.3)(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@cosmos-kit/leap-metamask-cosmos-snap': 0.6.2(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.3)(bufferutil@4.0.8)(cosmjs-types@0.9.0)(utf-8-validate@5.0.10) + '@cosmos-kit/leap-mobile': 2.6.10(@cosmjs/amino@0.32.3)(@walletconnect/types@2.12.2)(bufferutil@4.0.8)(utf-8-validate@5.0.10) transitivePeerDependencies: - '@azure/app-configuration' - '@azure/cosmos' @@ -10914,17 +10831,18 @@ snapshots: - cosmjs-types - debug - encoding - - supports-color + - ioredis + - uWebSockets.js - utf-8-validate - '@cosmos-kit/ledger@2.6.9(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.2)(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@cosmos-kit/ledger@2.6.9(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.3)(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: '@cosmjs/amino': 0.32.3 - '@cosmjs/proto-signing': 0.32.2 + '@cosmjs/proto-signing': 0.32.3 '@cosmos-kit/core': 2.8.9(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@ledgerhq/hw-app-cosmos': 6.29.4 - '@ledgerhq/hw-transport-webhid': 6.28.4 - '@ledgerhq/hw-transport-webusb': 6.28.4 + '@ledgerhq/hw-app-cosmos': 6.29.5 + '@ledgerhq/hw-transport-webhid': 6.28.5 + '@ledgerhq/hw-transport-webusb': 6.28.5 transitivePeerDependencies: - '@azure/app-configuration' - '@azure/cosmos' @@ -10941,13 +10859,14 @@ snapshots: - bufferutil - debug - encoding - - supports-color + - ioredis + - uWebSockets.js - utf-8-validate - '@cosmos-kit/okxwallet-extension@2.6.9(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.2)(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@cosmos-kit/okxwallet-extension@2.6.9(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.3)(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: '@cosmjs/amino': 0.32.3 - '@cosmjs/proto-signing': 0.32.2 + '@cosmjs/proto-signing': 0.32.3 '@cosmos-kit/core': 2.8.9(bufferutil@4.0.8)(utf-8-validate@5.0.10) transitivePeerDependencies: - '@azure/app-configuration' @@ -10965,15 +10884,16 @@ snapshots: - bufferutil - debug - encoding - - supports-color + - ioredis + - uWebSockets.js - utf-8-validate - '@cosmos-kit/omni-mobile@2.5.9(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.2)(@walletconnect/types@2.11.1)(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@cosmos-kit/omni-mobile@2.5.9(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.3)(@walletconnect/types@2.12.2)(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: '@cosmjs/amino': 0.32.3 - '@cosmjs/proto-signing': 0.32.2 + '@cosmjs/proto-signing': 0.32.3 '@cosmos-kit/core': 2.8.9(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@cosmos-kit/walletconnect': 2.5.9(@cosmjs/amino@0.32.3)(@walletconnect/types@2.11.1)(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@cosmos-kit/walletconnect': 2.5.9(@cosmjs/amino@0.32.3)(@walletconnect/types@2.12.2)(bufferutil@4.0.8)(utf-8-validate@5.0.10) transitivePeerDependencies: - '@azure/app-configuration' - '@azure/cosmos' @@ -10991,12 +10911,13 @@ snapshots: - bufferutil - debug - encoding - - supports-color + - ioredis + - uWebSockets.js - utf-8-validate - '@cosmos-kit/omni@2.5.9(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.2)(@walletconnect/types@2.11.1)(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@cosmos-kit/omni@2.5.9(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.3)(@walletconnect/types@2.12.2)(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: - '@cosmos-kit/omni-mobile': 2.5.9(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.2)(@walletconnect/types@2.11.1)(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@cosmos-kit/omni-mobile': 2.5.9(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.3)(@walletconnect/types@2.12.2)(bufferutil@4.0.8)(utf-8-validate@5.0.10) transitivePeerDependencies: - '@azure/app-configuration' - '@azure/cosmos' @@ -11016,16 +10937,17 @@ snapshots: - bufferutil - debug - encoding - - supports-color + - ioredis + - uWebSockets.js - utf-8-validate - '@cosmos-kit/owallet-extension@2.7.10(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.2)(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@cosmos-kit/owallet-extension@2.7.10(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.3)(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: '@chain-registry/keplr': 1.28.0 '@cosmjs/amino': 0.32.3 - '@cosmjs/proto-signing': 0.32.2 + '@cosmjs/proto-signing': 0.32.3 '@cosmos-kit/core': 2.8.9(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@keplr-wallet/types': 0.12.67 + '@keplr-wallet/types': 0.12.80 transitivePeerDependencies: - '@azure/app-configuration' - '@azure/cosmos' @@ -11042,12 +10964,13 @@ snapshots: - bufferutil - debug - encoding - - supports-color + - ioredis + - uWebSockets.js - utf-8-validate - '@cosmos-kit/owallet@2.6.10(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.2)(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@cosmos-kit/owallet@2.6.10(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.3)(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: - '@cosmos-kit/owallet-extension': 2.7.10(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.2)(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@cosmos-kit/owallet-extension': 2.7.10(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.3)(bufferutil@4.0.8)(utf-8-validate@5.0.10) transitivePeerDependencies: - '@azure/app-configuration' - '@azure/cosmos' @@ -11066,7 +10989,8 @@ snapshots: - bufferutil - debug - encoding - - supports-color + - ioredis + - uWebSockets.js - utf-8-validate '@cosmos-kit/react-lite@2.6.9(bufferutil@4.0.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(utf-8-validate@5.0.10)': @@ -11091,15 +11015,16 @@ snapshots: - bufferutil - debug - encoding - - supports-color + - ioredis + - uWebSockets.js - utf-8-validate - '@cosmos-kit/react@2.10.11(@interchain-ui/react@1.22.14(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(bufferutil@4.0.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(utf-8-validate@5.0.10)': + '@cosmos-kit/react@2.10.11(@interchain-ui/react@1.22.14(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(bufferutil@4.0.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(utf-8-validate@5.0.10)': dependencies: '@chain-registry/types': 0.17.0 '@cosmos-kit/core': 2.8.9(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@cosmos-kit/react-lite': 2.6.9(bufferutil@4.0.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(utf-8-validate@5.0.10) - '@interchain-ui/react': 1.22.14(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@interchain-ui/react': 1.22.14(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-icons/all-files': 4.1.0(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) @@ -11119,14 +11044,15 @@ snapshots: - bufferutil - debug - encoding - - supports-color + - ioredis + - uWebSockets.js - utf-8-validate - '@cosmos-kit/shell-extension@2.6.9(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.2)(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@cosmos-kit/shell-extension@2.6.9(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.3)(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: '@chain-registry/keplr': 1.28.0 '@cosmjs/amino': 0.32.3 - '@cosmjs/proto-signing': 0.32.2 + '@cosmjs/proto-signing': 0.32.3 '@cosmos-kit/core': 2.8.9(bufferutil@4.0.8)(utf-8-validate@5.0.10) transitivePeerDependencies: - '@azure/app-configuration' @@ -11144,12 +11070,13 @@ snapshots: - bufferutil - debug - encoding - - supports-color + - ioredis + - uWebSockets.js - utf-8-validate - '@cosmos-kit/shell@2.6.9(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.2)(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@cosmos-kit/shell@2.6.9(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.3)(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: - '@cosmos-kit/shell-extension': 2.6.9(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.2)(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@cosmos-kit/shell-extension': 2.6.9(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.3)(bufferutil@4.0.8)(utf-8-validate@5.0.10) transitivePeerDependencies: - '@azure/app-configuration' - '@azure/cosmos' @@ -11168,17 +11095,18 @@ snapshots: - bufferutil - debug - encoding - - supports-color + - ioredis + - uWebSockets.js - utf-8-validate - '@cosmos-kit/station-extension@2.6.9(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.2)(@terra-money/terra.js@3.1.10)(axios@1.6.7)(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@cosmos-kit/station-extension@2.6.10(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.3)(@terra-money/terra.js@3.1.10)(axios@1.6.8)(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: '@chain-registry/types': 0.17.0 '@cosmjs/amino': 0.32.3 - '@cosmjs/proto-signing': 0.32.2 + '@cosmjs/proto-signing': 0.32.3 '@cosmos-kit/core': 2.8.9(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@terra-money/feather.js': 1.2.1 - '@terra-money/station-connector': 1.0.16(@cosmjs/amino@0.32.3)(@terra-money/feather.js@1.2.1)(axios@1.6.7) + '@terra-money/station-connector': 1.1.0(@cosmjs/amino@0.32.3)(@terra-money/feather.js@1.2.1)(axios@1.6.8) '@terra-money/wallet-types': 3.11.2(@terra-money/terra.js@3.1.10) transitivePeerDependencies: - '@azure/app-configuration' @@ -11198,12 +11126,13 @@ snapshots: - bufferutil - debug - encoding - - supports-color + - ioredis + - uWebSockets.js - utf-8-validate - '@cosmos-kit/station@2.5.9(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.2)(@terra-money/terra.js@3.1.10)(axios@1.6.7)(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@cosmos-kit/station@2.5.10(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.3)(@terra-money/terra.js@3.1.10)(axios@1.6.8)(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: - '@cosmos-kit/station-extension': 2.6.9(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.2)(@terra-money/terra.js@3.1.10)(axios@1.6.7)(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@cosmos-kit/station-extension': 2.6.10(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.3)(@terra-money/terra.js@3.1.10)(axios@1.6.8)(bufferutil@4.0.8)(utf-8-validate@5.0.10) transitivePeerDependencies: - '@azure/app-configuration' - '@azure/cosmos' @@ -11224,10 +11153,11 @@ snapshots: - bufferutil - debug - encoding - - supports-color + - ioredis + - uWebSockets.js - utf-8-validate - '@cosmos-kit/tailwind-extension@1.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@cosmos-kit/tailwind-extension@1.0.3(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: '@cosmos-kit/core': 2.8.9(bufferutil@4.0.8)(utf-8-validate@5.0.10) transitivePeerDependencies: @@ -11246,12 +11176,13 @@ snapshots: - bufferutil - debug - encoding - - supports-color + - ioredis + - uWebSockets.js - utf-8-validate - '@cosmos-kit/tailwind@1.0.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@cosmos-kit/tailwind@1.0.4(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: - '@cosmos-kit/tailwind-extension': 1.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@cosmos-kit/tailwind-extension': 1.0.3(bufferutil@4.0.8)(utf-8-validate@5.0.10) transitivePeerDependencies: - '@azure/app-configuration' - '@azure/cosmos' @@ -11268,13 +11199,14 @@ snapshots: - bufferutil - debug - encoding - - supports-color + - ioredis + - uWebSockets.js - utf-8-validate - '@cosmos-kit/trust-extension@2.5.9(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.2)(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@cosmos-kit/trust-extension@2.5.9(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.3)(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: '@cosmjs/amino': 0.32.3 - '@cosmjs/proto-signing': 0.32.2 + '@cosmjs/proto-signing': 0.32.3 '@cosmos-kit/core': 2.8.9(bufferutil@4.0.8)(utf-8-validate@5.0.10) transitivePeerDependencies: - '@azure/app-configuration' @@ -11292,15 +11224,16 @@ snapshots: - bufferutil - debug - encoding - - supports-color + - ioredis + - uWebSockets.js - utf-8-validate - '@cosmos-kit/trust-mobile@2.5.9(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.2)(@walletconnect/types@2.11.1)(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@cosmos-kit/trust-mobile@2.5.9(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.3)(@walletconnect/types@2.12.2)(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: '@cosmjs/amino': 0.32.3 - '@cosmjs/proto-signing': 0.32.2 + '@cosmjs/proto-signing': 0.32.3 '@cosmos-kit/core': 2.8.9(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@cosmos-kit/walletconnect': 2.5.9(@cosmjs/amino@0.32.3)(@walletconnect/types@2.11.1)(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@cosmos-kit/walletconnect': 2.5.9(@cosmjs/amino@0.32.3)(@walletconnect/types@2.12.2)(bufferutil@4.0.8)(utf-8-validate@5.0.10) transitivePeerDependencies: - '@azure/app-configuration' - '@azure/cosmos' @@ -11318,13 +11251,14 @@ snapshots: - bufferutil - debug - encoding - - supports-color + - ioredis + - uWebSockets.js - utf-8-validate - '@cosmos-kit/trust@2.6.0(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.2)(@walletconnect/types@2.11.1)(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@cosmos-kit/trust@2.6.0(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.3)(@walletconnect/types@2.12.2)(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: - '@cosmos-kit/trust-extension': 2.5.9(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.2)(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@cosmos-kit/trust-mobile': 2.5.9(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.2)(@walletconnect/types@2.11.1)(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@cosmos-kit/trust-extension': 2.5.9(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.3)(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@cosmos-kit/trust-mobile': 2.5.9(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.3)(@walletconnect/types@2.12.2)(bufferutil@4.0.8)(utf-8-validate@5.0.10) transitivePeerDependencies: - '@azure/app-configuration' - '@azure/cosmos' @@ -11344,14 +11278,15 @@ snapshots: - bufferutil - debug - encoding - - supports-color + - ioredis + - uWebSockets.js - utf-8-validate - '@cosmos-kit/vectis-extension@2.6.9(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.2)(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@cosmos-kit/vectis-extension@2.6.9(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.3)(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: '@chain-registry/keplr': 1.28.0 '@cosmjs/amino': 0.32.3 - '@cosmjs/proto-signing': 0.32.2 + '@cosmjs/proto-signing': 0.32.3 '@cosmos-kit/core': 2.8.9(bufferutil@4.0.8)(utf-8-validate@5.0.10) transitivePeerDependencies: - '@azure/app-configuration' @@ -11369,12 +11304,13 @@ snapshots: - bufferutil - debug - encoding - - supports-color + - ioredis + - uWebSockets.js - utf-8-validate - '@cosmos-kit/vectis@2.6.9(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.2)(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@cosmos-kit/vectis@2.6.9(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.3)(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: - '@cosmos-kit/vectis-extension': 2.6.9(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.2)(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@cosmos-kit/vectis-extension': 2.6.9(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.3)(bufferutil@4.0.8)(utf-8-validate@5.0.10) transitivePeerDependencies: - '@azure/app-configuration' - '@azure/cosmos' @@ -11393,17 +11329,18 @@ snapshots: - bufferutil - debug - encoding - - supports-color + - ioredis + - uWebSockets.js - utf-8-validate - '@cosmos-kit/walletconnect@2.5.9(@cosmjs/amino@0.32.3)(@walletconnect/types@2.11.1)(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@cosmos-kit/walletconnect@2.5.9(@cosmjs/amino@0.32.3)(@walletconnect/types@2.12.2)(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: '@cosmjs/amino': 0.32.3 '@cosmjs/proto-signing': 0.32.2 '@cosmos-kit/core': 2.8.9(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@walletconnect/sign-client': 2.11.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@walletconnect/types': 2.11.1 - '@walletconnect/utils': 2.11.1 + '@walletconnect/sign-client': 2.12.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@walletconnect/types': 2.12.2 + '@walletconnect/utils': 2.12.2 events: 3.3.0 transitivePeerDependencies: - '@azure/app-configuration' @@ -11421,13 +11358,14 @@ snapshots: - bufferutil - debug - encoding - - supports-color + - ioredis + - uWebSockets.js - utf-8-validate - '@cosmos-kit/xdefi-extension@2.6.9(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.2)(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@cosmos-kit/xdefi-extension@2.6.9(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.3)(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: '@cosmjs/amino': 0.32.3 - '@cosmjs/proto-signing': 0.32.2 + '@cosmjs/proto-signing': 0.32.3 '@cosmos-kit/core': 2.8.9(bufferutil@4.0.8)(utf-8-validate@5.0.10) transitivePeerDependencies: - '@azure/app-configuration' @@ -11445,12 +11383,13 @@ snapshots: - bufferutil - debug - encoding - - supports-color + - ioredis + - uWebSockets.js - utf-8-validate - '@cosmos-kit/xdefi@2.5.9(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.2)(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@cosmos-kit/xdefi@2.5.9(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.3)(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: - '@cosmos-kit/xdefi-extension': 2.6.9(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.2)(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@cosmos-kit/xdefi-extension': 2.6.9(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.3)(bufferutil@4.0.8)(utf-8-validate@5.0.10) transitivePeerDependencies: - '@azure/app-configuration' - '@azure/cosmos' @@ -11469,170 +11408,171 @@ snapshots: - bufferutil - debug - encoding - - supports-color + - ioredis + - uWebSockets.js - utf-8-validate '@cosmostation/extension-client@0.1.15': {} - '@dicebear/adventurer-neutral@7.0.4(@dicebear/core@7.0.4(sharp@0.32.6))': + '@dicebear/adventurer-neutral@7.1.2(@dicebear/core@7.1.2(sharp@0.32.6))': dependencies: - '@dicebear/core': 7.0.4(sharp@0.32.6) + '@dicebear/core': 7.1.2(sharp@0.32.6) - '@dicebear/adventurer@7.0.4(@dicebear/core@7.0.4(sharp@0.32.6))': + '@dicebear/adventurer@7.1.2(@dicebear/core@7.1.2(sharp@0.32.6))': dependencies: - '@dicebear/core': 7.0.4(sharp@0.32.6) + '@dicebear/core': 7.1.2(sharp@0.32.6) - '@dicebear/avataaars-neutral@7.0.4(@dicebear/core@7.0.4(sharp@0.32.6))': + '@dicebear/avataaars-neutral@7.1.2(@dicebear/core@7.1.2(sharp@0.32.6))': dependencies: - '@dicebear/core': 7.0.4(sharp@0.32.6) + '@dicebear/core': 7.1.2(sharp@0.32.6) - '@dicebear/avataaars@7.0.4(@dicebear/core@7.0.4(sharp@0.32.6))': + '@dicebear/avataaars@7.1.2(@dicebear/core@7.1.2(sharp@0.32.6))': dependencies: - '@dicebear/core': 7.0.4(sharp@0.32.6) + '@dicebear/core': 7.1.2(sharp@0.32.6) - '@dicebear/big-ears-neutral@7.0.4(@dicebear/core@7.0.4(sharp@0.32.6))': + '@dicebear/big-ears-neutral@7.1.2(@dicebear/core@7.1.2(sharp@0.32.6))': dependencies: - '@dicebear/core': 7.0.4(sharp@0.32.6) + '@dicebear/core': 7.1.2(sharp@0.32.6) - '@dicebear/big-ears@7.0.4(@dicebear/core@7.0.4(sharp@0.32.6))': + '@dicebear/big-ears@7.1.2(@dicebear/core@7.1.2(sharp@0.32.6))': dependencies: - '@dicebear/core': 7.0.4(sharp@0.32.6) + '@dicebear/core': 7.1.2(sharp@0.32.6) - '@dicebear/big-smile@7.0.4(@dicebear/core@7.0.4(sharp@0.32.6))': + '@dicebear/big-smile@7.1.2(@dicebear/core@7.1.2(sharp@0.32.6))': dependencies: - '@dicebear/core': 7.0.4(sharp@0.32.6) + '@dicebear/core': 7.1.2(sharp@0.32.6) - '@dicebear/bottts-neutral@7.0.4(@dicebear/core@7.0.4(sharp@0.32.6))': + '@dicebear/bottts-neutral@7.1.2(@dicebear/core@7.1.2(sharp@0.32.6))': dependencies: - '@dicebear/core': 7.0.4(sharp@0.32.6) + '@dicebear/core': 7.1.2(sharp@0.32.6) - '@dicebear/bottts@7.0.4(@dicebear/core@7.0.4(sharp@0.32.6))': + '@dicebear/bottts@7.1.2(@dicebear/core@7.1.2(sharp@0.32.6))': dependencies: - '@dicebear/core': 7.0.4(sharp@0.32.6) + '@dicebear/core': 7.1.2(sharp@0.32.6) - '@dicebear/collection@7.0.4(@dicebear/core@7.0.4(sharp@0.32.6))': + '@dicebear/collection@7.1.2(@dicebear/core@7.1.2(sharp@0.32.6))': dependencies: - '@dicebear/adventurer': 7.0.4(@dicebear/core@7.0.4(sharp@0.32.6)) - '@dicebear/adventurer-neutral': 7.0.4(@dicebear/core@7.0.4(sharp@0.32.6)) - '@dicebear/avataaars': 7.0.4(@dicebear/core@7.0.4(sharp@0.32.6)) - '@dicebear/avataaars-neutral': 7.0.4(@dicebear/core@7.0.4(sharp@0.32.6)) - '@dicebear/big-ears': 7.0.4(@dicebear/core@7.0.4(sharp@0.32.6)) - '@dicebear/big-ears-neutral': 7.0.4(@dicebear/core@7.0.4(sharp@0.32.6)) - '@dicebear/big-smile': 7.0.4(@dicebear/core@7.0.4(sharp@0.32.6)) - '@dicebear/bottts': 7.0.4(@dicebear/core@7.0.4(sharp@0.32.6)) - '@dicebear/bottts-neutral': 7.0.4(@dicebear/core@7.0.4(sharp@0.32.6)) - '@dicebear/core': 7.0.4(sharp@0.32.6) - '@dicebear/croodles': 7.0.4(@dicebear/core@7.0.4(sharp@0.32.6)) - '@dicebear/croodles-neutral': 7.0.4(@dicebear/core@7.0.4(sharp@0.32.6)) - '@dicebear/fun-emoji': 7.0.4(@dicebear/core@7.0.4(sharp@0.32.6)) - '@dicebear/icons': 7.0.4(@dicebear/core@7.0.4(sharp@0.32.6)) - '@dicebear/identicon': 7.0.4(@dicebear/core@7.0.4(sharp@0.32.6)) - '@dicebear/initials': 7.0.4(@dicebear/core@7.0.4(sharp@0.32.6)) - '@dicebear/lorelei': 7.0.4(@dicebear/core@7.0.4(sharp@0.32.6)) - '@dicebear/lorelei-neutral': 7.0.4(@dicebear/core@7.0.4(sharp@0.32.6)) - '@dicebear/micah': 7.0.4(@dicebear/core@7.0.4(sharp@0.32.6)) - '@dicebear/miniavs': 7.0.4(@dicebear/core@7.0.4(sharp@0.32.6)) - '@dicebear/notionists': 7.0.4(@dicebear/core@7.0.4(sharp@0.32.6)) - '@dicebear/notionists-neutral': 7.0.4(@dicebear/core@7.0.4(sharp@0.32.6)) - '@dicebear/open-peeps': 7.0.4(@dicebear/core@7.0.4(sharp@0.32.6)) - '@dicebear/personas': 7.0.4(@dicebear/core@7.0.4(sharp@0.32.6)) - '@dicebear/pixel-art': 7.0.4(@dicebear/core@7.0.4(sharp@0.32.6)) - '@dicebear/pixel-art-neutral': 7.0.4(@dicebear/core@7.0.4(sharp@0.32.6)) - '@dicebear/rings': 7.0.4(@dicebear/core@7.0.4(sharp@0.32.6)) - '@dicebear/shapes': 7.0.4(@dicebear/core@7.0.4(sharp@0.32.6)) - '@dicebear/thumbs': 7.0.4(@dicebear/core@7.0.4(sharp@0.32.6)) + '@dicebear/adventurer': 7.1.2(@dicebear/core@7.1.2(sharp@0.32.6)) + '@dicebear/adventurer-neutral': 7.1.2(@dicebear/core@7.1.2(sharp@0.32.6)) + '@dicebear/avataaars': 7.1.2(@dicebear/core@7.1.2(sharp@0.32.6)) + '@dicebear/avataaars-neutral': 7.1.2(@dicebear/core@7.1.2(sharp@0.32.6)) + '@dicebear/big-ears': 7.1.2(@dicebear/core@7.1.2(sharp@0.32.6)) + '@dicebear/big-ears-neutral': 7.1.2(@dicebear/core@7.1.2(sharp@0.32.6)) + '@dicebear/big-smile': 7.1.2(@dicebear/core@7.1.2(sharp@0.32.6)) + '@dicebear/bottts': 7.1.2(@dicebear/core@7.1.2(sharp@0.32.6)) + '@dicebear/bottts-neutral': 7.1.2(@dicebear/core@7.1.2(sharp@0.32.6)) + '@dicebear/core': 7.1.2(sharp@0.32.6) + '@dicebear/croodles': 7.1.2(@dicebear/core@7.1.2(sharp@0.32.6)) + '@dicebear/croodles-neutral': 7.1.2(@dicebear/core@7.1.2(sharp@0.32.6)) + '@dicebear/fun-emoji': 7.1.2(@dicebear/core@7.1.2(sharp@0.32.6)) + '@dicebear/icons': 7.1.2(@dicebear/core@7.1.2(sharp@0.32.6)) + '@dicebear/identicon': 7.1.2(@dicebear/core@7.1.2(sharp@0.32.6)) + '@dicebear/initials': 7.1.2(@dicebear/core@7.1.2(sharp@0.32.6)) + '@dicebear/lorelei': 7.1.2(@dicebear/core@7.1.2(sharp@0.32.6)) + '@dicebear/lorelei-neutral': 7.1.2(@dicebear/core@7.1.2(sharp@0.32.6)) + '@dicebear/micah': 7.1.2(@dicebear/core@7.1.2(sharp@0.32.6)) + '@dicebear/miniavs': 7.1.2(@dicebear/core@7.1.2(sharp@0.32.6)) + '@dicebear/notionists': 7.1.2(@dicebear/core@7.1.2(sharp@0.32.6)) + '@dicebear/notionists-neutral': 7.1.2(@dicebear/core@7.1.2(sharp@0.32.6)) + '@dicebear/open-peeps': 7.1.2(@dicebear/core@7.1.2(sharp@0.32.6)) + '@dicebear/personas': 7.1.2(@dicebear/core@7.1.2(sharp@0.32.6)) + '@dicebear/pixel-art': 7.1.2(@dicebear/core@7.1.2(sharp@0.32.6)) + '@dicebear/pixel-art-neutral': 7.1.2(@dicebear/core@7.1.2(sharp@0.32.6)) + '@dicebear/rings': 7.1.2(@dicebear/core@7.1.2(sharp@0.32.6)) + '@dicebear/shapes': 7.1.2(@dicebear/core@7.1.2(sharp@0.32.6)) + '@dicebear/thumbs': 7.1.2(@dicebear/core@7.1.2(sharp@0.32.6)) - '@dicebear/converter@7.0.4(sharp@0.32.6)': + '@dicebear/converter@7.1.2(sharp@0.32.6)': dependencies: '@types/json-schema': 7.0.15 tmp-promise: 3.0.3 optionalDependencies: sharp: 0.32.6 - '@dicebear/core@7.0.4(sharp@0.32.6)': + '@dicebear/core@7.1.2(sharp@0.32.6)': dependencies: - '@dicebear/converter': 7.0.4(sharp@0.32.6) + '@dicebear/converter': 7.1.2(sharp@0.32.6) '@types/json-schema': 7.0.15 transitivePeerDependencies: - '@resvg/resvg-js' - exiftool-vendored - sharp - '@dicebear/croodles-neutral@7.0.4(@dicebear/core@7.0.4(sharp@0.32.6))': + '@dicebear/croodles-neutral@7.1.2(@dicebear/core@7.1.2(sharp@0.32.6))': dependencies: - '@dicebear/core': 7.0.4(sharp@0.32.6) + '@dicebear/core': 7.1.2(sharp@0.32.6) - '@dicebear/croodles@7.0.4(@dicebear/core@7.0.4(sharp@0.32.6))': + '@dicebear/croodles@7.1.2(@dicebear/core@7.1.2(sharp@0.32.6))': dependencies: - '@dicebear/core': 7.0.4(sharp@0.32.6) + '@dicebear/core': 7.1.2(sharp@0.32.6) - '@dicebear/fun-emoji@7.0.4(@dicebear/core@7.0.4(sharp@0.32.6))': + '@dicebear/fun-emoji@7.1.2(@dicebear/core@7.1.2(sharp@0.32.6))': dependencies: - '@dicebear/core': 7.0.4(sharp@0.32.6) + '@dicebear/core': 7.1.2(sharp@0.32.6) - '@dicebear/icons@7.0.4(@dicebear/core@7.0.4(sharp@0.32.6))': + '@dicebear/icons@7.1.2(@dicebear/core@7.1.2(sharp@0.32.6))': dependencies: - '@dicebear/core': 7.0.4(sharp@0.32.6) + '@dicebear/core': 7.1.2(sharp@0.32.6) - '@dicebear/identicon@7.0.4(@dicebear/core@7.0.4(sharp@0.32.6))': + '@dicebear/identicon@7.1.2(@dicebear/core@7.1.2(sharp@0.32.6))': dependencies: - '@dicebear/core': 7.0.4(sharp@0.32.6) + '@dicebear/core': 7.1.2(sharp@0.32.6) - '@dicebear/initials@7.0.4(@dicebear/core@7.0.4(sharp@0.32.6))': + '@dicebear/initials@7.1.2(@dicebear/core@7.1.2(sharp@0.32.6))': dependencies: - '@dicebear/core': 7.0.4(sharp@0.32.6) + '@dicebear/core': 7.1.2(sharp@0.32.6) - '@dicebear/lorelei-neutral@7.0.4(@dicebear/core@7.0.4(sharp@0.32.6))': + '@dicebear/lorelei-neutral@7.1.2(@dicebear/core@7.1.2(sharp@0.32.6))': dependencies: - '@dicebear/core': 7.0.4(sharp@0.32.6) + '@dicebear/core': 7.1.2(sharp@0.32.6) - '@dicebear/lorelei@7.0.4(@dicebear/core@7.0.4(sharp@0.32.6))': + '@dicebear/lorelei@7.1.2(@dicebear/core@7.1.2(sharp@0.32.6))': dependencies: - '@dicebear/core': 7.0.4(sharp@0.32.6) + '@dicebear/core': 7.1.2(sharp@0.32.6) - '@dicebear/micah@7.0.4(@dicebear/core@7.0.4(sharp@0.32.6))': + '@dicebear/micah@7.1.2(@dicebear/core@7.1.2(sharp@0.32.6))': dependencies: - '@dicebear/core': 7.0.4(sharp@0.32.6) + '@dicebear/core': 7.1.2(sharp@0.32.6) - '@dicebear/miniavs@7.0.4(@dicebear/core@7.0.4(sharp@0.32.6))': + '@dicebear/miniavs@7.1.2(@dicebear/core@7.1.2(sharp@0.32.6))': dependencies: - '@dicebear/core': 7.0.4(sharp@0.32.6) + '@dicebear/core': 7.1.2(sharp@0.32.6) - '@dicebear/notionists-neutral@7.0.4(@dicebear/core@7.0.4(sharp@0.32.6))': + '@dicebear/notionists-neutral@7.1.2(@dicebear/core@7.1.2(sharp@0.32.6))': dependencies: - '@dicebear/core': 7.0.4(sharp@0.32.6) + '@dicebear/core': 7.1.2(sharp@0.32.6) - '@dicebear/notionists@7.0.4(@dicebear/core@7.0.4(sharp@0.32.6))': + '@dicebear/notionists@7.1.2(@dicebear/core@7.1.2(sharp@0.32.6))': dependencies: - '@dicebear/core': 7.0.4(sharp@0.32.6) + '@dicebear/core': 7.1.2(sharp@0.32.6) - '@dicebear/open-peeps@7.0.4(@dicebear/core@7.0.4(sharp@0.32.6))': + '@dicebear/open-peeps@7.1.2(@dicebear/core@7.1.2(sharp@0.32.6))': dependencies: - '@dicebear/core': 7.0.4(sharp@0.32.6) + '@dicebear/core': 7.1.2(sharp@0.32.6) - '@dicebear/personas@7.0.4(@dicebear/core@7.0.4(sharp@0.32.6))': + '@dicebear/personas@7.1.2(@dicebear/core@7.1.2(sharp@0.32.6))': dependencies: - '@dicebear/core': 7.0.4(sharp@0.32.6) + '@dicebear/core': 7.1.2(sharp@0.32.6) - '@dicebear/pixel-art-neutral@7.0.4(@dicebear/core@7.0.4(sharp@0.32.6))': + '@dicebear/pixel-art-neutral@7.1.2(@dicebear/core@7.1.2(sharp@0.32.6))': dependencies: - '@dicebear/core': 7.0.4(sharp@0.32.6) + '@dicebear/core': 7.1.2(sharp@0.32.6) - '@dicebear/pixel-art@7.0.4(@dicebear/core@7.0.4(sharp@0.32.6))': + '@dicebear/pixel-art@7.1.2(@dicebear/core@7.1.2(sharp@0.32.6))': dependencies: - '@dicebear/core': 7.0.4(sharp@0.32.6) + '@dicebear/core': 7.1.2(sharp@0.32.6) - '@dicebear/rings@7.0.4(@dicebear/core@7.0.4(sharp@0.32.6))': + '@dicebear/rings@7.1.2(@dicebear/core@7.1.2(sharp@0.32.6))': dependencies: - '@dicebear/core': 7.0.4(sharp@0.32.6) + '@dicebear/core': 7.1.2(sharp@0.32.6) - '@dicebear/shapes@7.0.4(@dicebear/core@7.0.4(sharp@0.32.6))': + '@dicebear/shapes@7.1.2(@dicebear/core@7.1.2(sharp@0.32.6))': dependencies: - '@dicebear/core': 7.0.4(sharp@0.32.6) + '@dicebear/core': 7.1.2(sharp@0.32.6) - '@dicebear/thumbs@7.0.4(@dicebear/core@7.0.4(sharp@0.32.6))': + '@dicebear/thumbs@7.1.2(@dicebear/core@7.1.2(sharp@0.32.6))': dependencies: - '@dicebear/core': 7.0.4(sharp@0.32.6) + '@dicebear/core': 7.1.2(sharp@0.32.6) '@discoveryjs/json-ext@0.5.7': {} @@ -11721,9 +11661,9 @@ snapshots: '@esbuild/win32-x64@0.20.2': optional: true - '@eslint-community/eslint-utils@4.4.0(eslint@8.56.0)': + '@eslint-community/eslint-utils@4.4.0(eslint@8.57.0)': dependencies: - eslint: 8.56.0 + eslint: 8.57.0 eslint-visitor-keys: 3.4.3 '@eslint-community/regexpp@4.10.0': {} @@ -11742,18 +11682,16 @@ snapshots: transitivePeerDependencies: - supports-color - '@eslint/js@8.56.0': {} + '@eslint/js@8.57.0': {} '@ethereumjs/common@3.2.0': dependencies: '@ethereumjs/util': 8.1.0 crc-32: 1.2.2 - '@ethereumjs/common@4.2.0': + '@ethereumjs/common@4.3.0': dependencies: - '@ethereumjs/util': 9.0.2 - transitivePeerDependencies: - - c-kzg + '@ethereumjs/util': 9.0.3 '@ethereumjs/rlp@4.0.1': {} @@ -11766,11 +11704,11 @@ snapshots: '@ethereumjs/util': 8.1.0 ethereum-cryptography: 2.1.3 - '@ethereumjs/tx@5.2.1': + '@ethereumjs/tx@5.3.0': dependencies: - '@ethereumjs/common': 4.2.0 + '@ethereumjs/common': 4.3.0 '@ethereumjs/rlp': 5.0.2 - '@ethereumjs/util': 9.0.2 + '@ethereumjs/util': 9.0.3 ethereum-cryptography: 2.1.3 '@ethereumjs/util@8.1.0': @@ -11779,7 +11717,7 @@ snapshots: ethereum-cryptography: 2.1.3 micro-ftch: 0.3.1 - '@ethereumjs/util@9.0.2': + '@ethereumjs/util@9.0.3': dependencies: '@ethereumjs/rlp': 5.0.2 ethereum-cryptography: 2.1.3 @@ -12045,18 +11983,18 @@ snapshots: dependencies: '@floating-ui/utils': 0.2.1 - '@floating-ui/dom@1.6.1': + '@floating-ui/dom@1.6.3': dependencies: '@floating-ui/core': 1.6.0 '@floating-ui/utils': 0.2.1 '@floating-ui/react-dom@2.0.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@floating-ui/dom': 1.6.1 + '@floating-ui/dom': 1.6.3 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - '@floating-ui/react@0.26.9(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@floating-ui/react@0.26.12(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: '@floating-ui/react-dom': 2.0.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@floating-ui/utils': 0.2.1 @@ -12090,66 +12028,65 @@ snapshots: dependencies: tslib: 2.6.2 - '@formkit/auto-animate@0.8.1': {} + '@formkit/auto-animate@0.8.2': {} - '@grafana/faro-core@1.4.1': + '@grafana/faro-core@1.6.0': dependencies: '@opentelemetry/api': 1.8.0 '@opentelemetry/otlp-transformer': 0.48.0(@opentelemetry/api@1.8.0) - '@grafana/faro-react@1.4.1(react-dom@18.2.0(react@18.2.0))(react-router-dom@6.22.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0)': + '@grafana/faro-react@1.6.0(react-dom@18.2.0(react@18.2.0))(react-router-dom@6.22.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0)': dependencies: - '@grafana/faro-web-sdk': 1.4.1 - '@grafana/faro-web-tracing': 1.4.1 + '@grafana/faro-web-sdk': 1.6.0 + '@grafana/faro-web-tracing': 1.6.0 hoist-non-react-statics: 3.3.2 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - react-router-dom: 6.22.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + react-router-dom: 6.22.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0) transitivePeerDependencies: - supports-color - '@grafana/faro-web-sdk@1.4.1': + '@grafana/faro-web-sdk@1.6.0': dependencies: - '@grafana/faro-core': 1.4.1 + '@grafana/faro-core': 1.6.0 ua-parser-js: 1.0.37 web-vitals: 3.5.2 - '@grafana/faro-web-tracing@1.4.1': + '@grafana/faro-web-tracing@1.6.0': dependencies: - '@grafana/faro-web-sdk': 1.4.1 + '@grafana/faro-web-sdk': 1.6.0 '@opentelemetry/api': 1.8.0 - '@opentelemetry/context-zone': 1.22.0(@opentelemetry/api@1.8.0) - '@opentelemetry/core': 1.22.0(@opentelemetry/api@1.8.0) + '@opentelemetry/context-zone': 1.23.0(@opentelemetry/api@1.8.0) + '@opentelemetry/core': 1.23.0(@opentelemetry/api@1.8.0) '@opentelemetry/exporter-trace-otlp-http': 0.48.0(@opentelemetry/api@1.8.0) '@opentelemetry/instrumentation': 0.48.0(@opentelemetry/api@1.8.0) - '@opentelemetry/instrumentation-document-load': 0.35.0(@opentelemetry/api@1.8.0) '@opentelemetry/instrumentation-fetch': 0.48.0(@opentelemetry/api@1.8.0) '@opentelemetry/instrumentation-xml-http-request': 0.48.0(@opentelemetry/api@1.8.0) '@opentelemetry/otlp-transformer': 0.48.0(@opentelemetry/api@1.8.0) - '@opentelemetry/resources': 1.22.0(@opentelemetry/api@1.8.0) - '@opentelemetry/sdk-trace-web': 1.22.0(@opentelemetry/api@1.8.0) - '@opentelemetry/semantic-conventions': 1.22.0 + '@opentelemetry/resources': 1.23.0(@opentelemetry/api@1.8.0) + '@opentelemetry/sdk-trace-web': 1.23.0(@opentelemetry/api@1.8.0) + '@opentelemetry/semantic-conventions': 1.23.0 transitivePeerDependencies: - supports-color - '@headlessui/react@1.7.18(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@headlessui/react@1.7.19(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@tanstack/react-virtual': 3.0.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@tanstack/react-virtual': 3.3.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) client-only: 0.0.1 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - '@heroicons/react@2.1.1(react@18.2.0)': + '@heroicons/react@2.1.3(react@18.2.0)': dependencies: react: 18.2.0 - '@hookform/resolvers@3.3.4(react-hook-form@7.50.1(react@18.2.0))': + '@hookform/resolvers@3.3.4(react-hook-form@7.51.3(react@18.2.0))': dependencies: - react-hook-form: 7.50.1(react@18.2.0) + react-hook-form: 7.51.3(react@18.2.0) '@humanwhocodes/config-array@0.11.14': dependencies: - '@humanwhocodes/object-schema': 2.0.2 + '@humanwhocodes/object-schema': 2.0.3 debug: 4.3.4 minimatch: 3.1.2 transitivePeerDependencies: @@ -12157,26 +12094,26 @@ snapshots: '@humanwhocodes/module-importer@1.0.1': {} - '@humanwhocodes/object-schema@2.0.2': {} + '@humanwhocodes/object-schema@2.0.3': {} '@improbable-eng/grpc-web@0.14.1(google-protobuf@3.21.2)': dependencies: browser-headers: 0.4.1 google-protobuf: 3.21.2 - '@interchain-ui/react@1.22.14(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@interchain-ui/react@1.22.14(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: '@floating-ui/core': 1.6.0 - '@floating-ui/dom': 1.6.1 - '@floating-ui/react': 0.26.9(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@floating-ui/dom': 1.6.3 + '@floating-ui/react': 0.26.12(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@floating-ui/react-dom': 2.0.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@formkit/auto-animate': 0.8.1 + '@formkit/auto-animate': 0.8.2 '@react-aria/listbox': 3.11.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-aria/overlays': 3.21.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-aria/utils': 3.23.2(react@18.2.0) - '@vanilla-extract/css': 1.14.1 + '@vanilla-extract/css': 1.14.2 '@vanilla-extract/dynamic': 2.1.0 - '@vanilla-extract/recipes': 0.5.2(@vanilla-extract/css@1.14.1) + '@vanilla-extract/recipes': 0.5.2(@vanilla-extract/css@1.14.2) animejs: 3.2.2 bignumber.js: 9.1.2 client-only: 0.0.1 @@ -12184,33 +12121,31 @@ snapshots: copy-to-clipboard: 3.3.3 immer: 10.0.4 lodash: 4.17.21 - rainbow-sprinkles: 0.17.1(@vanilla-extract/css@1.14.1)(@vanilla-extract/dynamic@2.1.0) + rainbow-sprinkles: 0.17.1(@vanilla-extract/css@1.14.2)(@vanilla-extract/dynamic@2.1.0) react: 18.2.0 react-aria: 3.32.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) react-dom: 18.2.0(react@18.2.0) react-stately: 3.30.1(react@18.2.0) - zustand: 4.5.2(@types/react@18.2.55)(immer@10.0.4)(react@18.2.0) + zustand: 4.5.2(@types/react@18.2.79)(immer@10.0.4)(react@18.2.0) transitivePeerDependencies: - '@types/react' '@internationalized/date@3.5.2': dependencies: - '@swc/helpers': 0.5.2 + '@swc/helpers': 0.5.10 '@internationalized/message@3.1.2': dependencies: - '@swc/helpers': 0.5.2 + '@swc/helpers': 0.5.10 intl-messageformat: 10.5.11 '@internationalized/number@3.5.1': dependencies: - '@swc/helpers': 0.5.2 + '@swc/helpers': 0.5.10 '@internationalized/string@3.2.1': dependencies: - '@swc/helpers': 0.5.2 - - '@ioredis/commands@1.2.0': {} + '@swc/helpers': 0.5.10 '@isaacs/cliui@8.0.2': dependencies: @@ -12225,21 +12160,15 @@ snapshots: dependencies: '@sinclair/typebox': 0.27.8 - '@joshwooding/vite-plugin-react-docgen-typescript@0.3.0(typescript@5.3.3)(vite@5.2.8(@types/node@20.11.17)(terser@5.30.2))': + '@joshwooding/vite-plugin-react-docgen-typescript@0.3.0(typescript@5.4.5)(vite@5.2.9(@types/node@20.12.7)(terser@5.30.3))': dependencies: glob: 7.2.3 glob-promise: 4.2.2(glob@7.2.3) magic-string: 0.27.0 - react-docgen-typescript: 2.2.2(typescript@5.3.3) - vite: 5.2.8(@types/node@20.11.17)(terser@5.30.2) + react-docgen-typescript: 2.2.2(typescript@5.4.5) + vite: 5.2.9(@types/node@20.12.7)(terser@5.30.3) optionalDependencies: - typescript: 5.3.3 - - '@jridgewell/gen-mapping@0.3.3': - dependencies: - '@jridgewell/set-array': 1.1.2 - '@jridgewell/sourcemap-codec': 1.4.15 - '@jridgewell/trace-mapping': 0.3.22 + typescript: 5.4.5 '@jridgewell/gen-mapping@0.3.5': dependencies: @@ -12247,9 +12176,7 @@ snapshots: '@jridgewell/sourcemap-codec': 1.4.15 '@jridgewell/trace-mapping': 0.3.25 - '@jridgewell/resolve-uri@3.1.1': {} - - '@jridgewell/set-array@1.1.2': {} + '@jridgewell/resolve-uri@3.1.2': {} '@jridgewell/set-array@1.2.1': {} @@ -12260,14 +12187,9 @@ snapshots: '@jridgewell/sourcemap-codec@1.4.15': {} - '@jridgewell/trace-mapping@0.3.22': - dependencies: - '@jridgewell/resolve-uri': 3.1.1 - '@jridgewell/sourcemap-codec': 1.4.15 - '@jridgewell/trace-mapping@0.3.25': dependencies: - '@jridgewell/resolve-uri': 3.1.1 + '@jridgewell/resolve-uri': 3.1.2 '@jridgewell/sourcemap-codec': 1.4.15 '@jspm/core@2.0.1': {} @@ -12278,7 +12200,7 @@ snapshots: '@keplr-wallet/types': 0.12.28 buffer: 6.0.3 delay: 4.4.1 - mobx: 6.12.0 + mobx: 6.12.3 '@keplr-wallet/cosmos@0.12.28': dependencies: @@ -12302,7 +12224,7 @@ snapshots: bs58check: 2.1.2 buffer: 6.0.3 crypto-js: 4.2.0 - elliptic: 6.5.4 + elliptic: 6.5.5 sha.js: 2.4.11 '@keplr-wallet/proto-types@0.12.28': @@ -12316,7 +12238,7 @@ snapshots: dependencies: long: 4.0.0 - '@keplr-wallet/types@0.12.67': + '@keplr-wallet/types@0.12.80': dependencies: long: 4.0.0 @@ -12333,53 +12255,53 @@ snapshots: bignumber.js: 9.1.2 long: 5.2.3 - '@ledgerhq/devices@8.2.1': + '@ledgerhq/devices@8.2.2': dependencies: - '@ledgerhq/errors': 6.16.2 + '@ledgerhq/errors': 6.16.3 '@ledgerhq/logs': 6.12.0 rxjs: 7.8.1 semver: 7.6.0 - '@ledgerhq/errors@6.16.2': {} + '@ledgerhq/errors@6.16.3': {} - '@ledgerhq/hw-app-cosmos@6.29.4': + '@ledgerhq/hw-app-cosmos@6.29.5': dependencies: - '@ledgerhq/errors': 6.16.2 - '@ledgerhq/hw-transport': 6.30.4 + '@ledgerhq/errors': 6.16.3 + '@ledgerhq/hw-transport': 6.30.5 bip32-path: 0.4.2 - '@ledgerhq/hw-transport-webhid@6.28.4': + '@ledgerhq/hw-transport-webhid@6.28.5': dependencies: - '@ledgerhq/devices': 8.2.1 - '@ledgerhq/errors': 6.16.2 - '@ledgerhq/hw-transport': 6.30.4 + '@ledgerhq/devices': 8.2.2 + '@ledgerhq/errors': 6.16.3 + '@ledgerhq/hw-transport': 6.30.5 '@ledgerhq/logs': 6.12.0 - '@ledgerhq/hw-transport-webusb@6.28.4': + '@ledgerhq/hw-transport-webusb@6.28.5': dependencies: - '@ledgerhq/devices': 8.2.1 - '@ledgerhq/errors': 6.16.2 - '@ledgerhq/hw-transport': 6.30.4 + '@ledgerhq/devices': 8.2.2 + '@ledgerhq/errors': 6.16.3 + '@ledgerhq/hw-transport': 6.30.5 '@ledgerhq/logs': 6.12.0 - '@ledgerhq/hw-transport@6.30.4': + '@ledgerhq/hw-transport@6.30.5': dependencies: - '@ledgerhq/devices': 8.2.1 - '@ledgerhq/errors': 6.16.2 + '@ledgerhq/devices': 8.2.2 + '@ledgerhq/errors': 6.16.3 '@ledgerhq/logs': 6.12.0 events: 3.3.0 '@ledgerhq/logs@6.12.0': {} - '@mdx-js/react@3.0.1(@types/react@18.2.55)(react@18.2.0)': + '@mdx-js/react@3.0.1(@types/react@18.2.79)(react@18.2.0)': dependencies: - '@types/mdx': 2.0.12 - '@types/react': 18.2.55 + '@types/mdx': 2.0.13 + '@types/react': 18.2.79 react: 18.2.0 '@metamask/abi-utils@2.0.2': dependencies: - '@metamask/utils': 8.3.0 + '@metamask/utils': 8.4.0 superstruct: 1.0.4 transitivePeerDependencies: - supports-color @@ -12388,7 +12310,7 @@ snapshots: dependencies: '@ethereumjs/util': 8.1.0 '@metamask/abi-utils': 2.0.2 - '@metamask/utils': 8.3.0 + '@metamask/utils': 8.4.0 ethereum-cryptography: 2.1.3 tweetnacl: 1.0.3 tweetnacl-util: 0.15.1 @@ -12399,7 +12321,7 @@ snapshots: dependencies: '@metamask/rpc-errors': 6.2.1 '@metamask/safe-event-emitter': 3.1.1 - '@metamask/utils': 8.3.0 + '@metamask/utils': 8.4.0 transitivePeerDependencies: - supports-color @@ -12407,7 +12329,7 @@ snapshots: dependencies: '@metamask/json-rpc-engine': 7.3.3 '@metamask/safe-event-emitter': 3.1.1 - '@metamask/utils': 8.3.0 + '@metamask/utils': 8.4.0 readable-stream: 3.6.2 transitivePeerDependencies: - supports-color @@ -12417,17 +12339,17 @@ snapshots: '@metamask/scure-bip39': 2.1.1 '@metamask/utils': 6.2.0 '@noble/ed25519': 1.7.3 - '@noble/hashes': 1.3.3 + '@noble/hashes': 1.4.0 '@noble/secp256k1': 1.7.1 - '@scure/base': 1.1.5 + '@scure/base': 1.1.6 transitivePeerDependencies: - supports-color '@metamask/keyring-api@4.0.2': dependencies: '@metamask/providers': 15.0.0 - '@metamask/snaps-sdk': 3.1.1 - '@metamask/utils': 8.3.0 + '@metamask/snaps-sdk': 3.2.0 + '@metamask/utils': 8.4.0 '@types/uuid': 9.0.8 superstruct: 1.0.4 uuid: 9.0.1 @@ -12466,7 +12388,24 @@ snapshots: '@metamask/object-multiplex': 2.0.0 '@metamask/rpc-errors': 6.2.1 '@metamask/safe-event-emitter': 3.1.1 - '@metamask/utils': 8.3.0 + '@metamask/utils': 8.4.0 + detect-browser: 5.3.0 + extension-port-stream: 3.0.0 + fast-deep-equal: 3.1.3 + is-stream: 2.0.1 + readable-stream: 3.6.2 + webextension-polyfill: 0.10.0 + transitivePeerDependencies: + - supports-color + + '@metamask/providers@16.0.0': + dependencies: + '@metamask/json-rpc-engine': 7.3.3 + '@metamask/json-rpc-middleware-stream': 6.0.2 + '@metamask/object-multiplex': 2.0.0 + '@metamask/rpc-errors': 6.2.1 + '@metamask/safe-event-emitter': 3.1.1 + '@metamask/utils': 8.4.0 detect-browser: 5.3.0 extension-port-stream: 3.0.0 fast-deep-equal: 3.1.3 @@ -12478,7 +12417,7 @@ snapshots: '@metamask/rpc-errors@6.2.1': dependencies: - '@metamask/utils': 8.3.0 + '@metamask/utils': 8.4.0 fast-safe-stringify: 2.1.1 transitivePeerDependencies: - supports-color @@ -12490,15 +12429,15 @@ snapshots: '@metamask/scure-bip39@2.1.1': dependencies: '@noble/hashes': 1.3.3 - '@scure/base': 1.1.5 + '@scure/base': 1.1.6 - '@metamask/snaps-sdk@3.1.1': + '@metamask/snaps-sdk@3.2.0': dependencies: '@metamask/key-tree': 9.0.0 - '@metamask/providers': 15.0.0 + '@metamask/providers': 16.0.0 '@metamask/rpc-errors': 6.2.1 - '@metamask/utils': 8.3.0 - fast-xml-parser: 4.3.5 + '@metamask/utils': 8.4.0 + fast-xml-parser: 4.3.6 superstruct: 1.0.4 transitivePeerDependencies: - supports-color @@ -12506,7 +12445,7 @@ snapshots: '@metamask/utils@6.2.0': dependencies: '@ethereumjs/tx': 4.2.0 - '@noble/hashes': 1.3.3 + '@noble/hashes': 1.4.0 '@types/debug': 4.1.12 debug: 4.3.4 semver: 7.6.0 @@ -12514,16 +12453,17 @@ snapshots: transitivePeerDependencies: - supports-color - '@metamask/utils@8.3.0': + '@metamask/utils@8.4.0': dependencies: '@ethereumjs/tx': 4.2.0 - '@noble/hashes': 1.3.3 - '@scure/base': 1.1.5 + '@noble/hashes': 1.4.0 + '@scure/base': 1.1.6 '@types/debug': 4.1.12 debug: 4.3.4 - pony-cause: 2.1.10 + pony-cause: 2.1.11 semver: 7.6.0 superstruct: 1.0.4 + uuid: 9.0.1 transitivePeerDependencies: - supports-color @@ -12533,33 +12473,33 @@ snapshots: pump: 3.0.0 tar-fs: 2.1.1 - '@next/env@14.1.0': {} + '@next/env@14.2.1': {} - '@next/swc-darwin-arm64@14.1.0': + '@next/swc-darwin-arm64@14.2.1': optional: true - '@next/swc-darwin-x64@14.1.0': + '@next/swc-darwin-x64@14.2.1': optional: true - '@next/swc-linux-arm64-gnu@14.1.0': + '@next/swc-linux-arm64-gnu@14.2.1': optional: true - '@next/swc-linux-arm64-musl@14.1.0': + '@next/swc-linux-arm64-musl@14.2.1': optional: true - '@next/swc-linux-x64-gnu@14.1.0': + '@next/swc-linux-x64-gnu@14.2.1': optional: true - '@next/swc-linux-x64-musl@14.1.0': + '@next/swc-linux-x64-musl@14.2.1': optional: true - '@next/swc-win32-arm64-msvc@14.1.0': + '@next/swc-win32-arm64-msvc@14.2.1': optional: true - '@next/swc-win32-ia32-msvc@14.1.0': + '@next/swc-win32-ia32-msvc@14.2.1': optional: true - '@next/swc-win32-x64-msvc@14.1.0': + '@next/swc-win32-x64-msvc@14.2.1': optional: true '@noble/curves@1.2.0': @@ -12576,6 +12516,8 @@ snapshots: '@noble/hashes@1.3.3': {} + '@noble/hashes@1.4.0': {} + '@noble/secp256k1@1.7.1': {} '@nodelib/fs.scandir@2.1.5': @@ -12596,14 +12538,14 @@ snapshots: '@opentelemetry/api@1.8.0': {} - '@opentelemetry/context-zone-peer-dep@1.22.0(@opentelemetry/api@1.8.0)(zone.js@0.14.4)': + '@opentelemetry/context-zone-peer-dep@1.23.0(@opentelemetry/api@1.8.0)(zone.js@0.14.4)': dependencies: '@opentelemetry/api': 1.8.0 zone.js: 0.14.4 - '@opentelemetry/context-zone@1.22.0(@opentelemetry/api@1.8.0)': + '@opentelemetry/context-zone@1.23.0(@opentelemetry/api@1.8.0)': dependencies: - '@opentelemetry/context-zone-peer-dep': 1.22.0(@opentelemetry/api@1.8.0)(zone.js@0.14.4) + '@opentelemetry/context-zone-peer-dep': 1.23.0(@opentelemetry/api@1.8.0)(zone.js@0.14.4) zone.js: 0.14.4 transitivePeerDependencies: - '@opentelemetry/api' @@ -12613,10 +12555,10 @@ snapshots: '@opentelemetry/api': 1.8.0 '@opentelemetry/semantic-conventions': 1.21.0 - '@opentelemetry/core@1.22.0(@opentelemetry/api@1.8.0)': + '@opentelemetry/core@1.23.0(@opentelemetry/api@1.8.0)': dependencies: '@opentelemetry/api': 1.8.0 - '@opentelemetry/semantic-conventions': 1.22.0 + '@opentelemetry/semantic-conventions': 1.23.0 '@opentelemetry/exporter-trace-otlp-http@0.48.0(@opentelemetry/api@1.8.0)': dependencies: @@ -12627,17 +12569,6 @@ snapshots: '@opentelemetry/resources': 1.21.0(@opentelemetry/api@1.8.0) '@opentelemetry/sdk-trace-base': 1.21.0(@opentelemetry/api@1.8.0) - '@opentelemetry/instrumentation-document-load@0.35.0(@opentelemetry/api@1.8.0)': - dependencies: - '@opentelemetry/api': 1.8.0 - '@opentelemetry/core': 1.22.0(@opentelemetry/api@1.8.0) - '@opentelemetry/instrumentation': 0.48.0(@opentelemetry/api@1.8.0) - '@opentelemetry/sdk-trace-base': 1.22.0(@opentelemetry/api@1.8.0) - '@opentelemetry/sdk-trace-web': 1.22.0(@opentelemetry/api@1.8.0) - '@opentelemetry/semantic-conventions': 1.22.0 - transitivePeerDependencies: - - supports-color - '@opentelemetry/instrumentation-fetch@0.48.0(@opentelemetry/api@1.8.0)': dependencies: '@opentelemetry/api': 1.8.0 @@ -12663,7 +12594,7 @@ snapshots: '@opentelemetry/api': 1.8.0 '@types/shimmer': 1.0.5 import-in-the-middle: 1.7.1 - require-in-the-middle: 7.2.0 + require-in-the-middle: 7.3.0 semver: 7.6.0 shimmer: 1.2.1 transitivePeerDependencies: @@ -12690,11 +12621,11 @@ snapshots: '@opentelemetry/core': 1.21.0(@opentelemetry/api@1.8.0) '@opentelemetry/semantic-conventions': 1.21.0 - '@opentelemetry/resources@1.22.0(@opentelemetry/api@1.8.0)': + '@opentelemetry/resources@1.23.0(@opentelemetry/api@1.8.0)': dependencies: '@opentelemetry/api': 1.8.0 - '@opentelemetry/core': 1.22.0(@opentelemetry/api@1.8.0) - '@opentelemetry/semantic-conventions': 1.22.0 + '@opentelemetry/core': 1.23.0(@opentelemetry/api@1.8.0) + '@opentelemetry/semantic-conventions': 1.23.0 '@opentelemetry/sdk-logs@0.48.0(@opentelemetry/api-logs@0.48.0)(@opentelemetry/api@1.8.0)': dependencies: @@ -12717,12 +12648,12 @@ snapshots: '@opentelemetry/resources': 1.21.0(@opentelemetry/api@1.8.0) '@opentelemetry/semantic-conventions': 1.21.0 - '@opentelemetry/sdk-trace-base@1.22.0(@opentelemetry/api@1.8.0)': + '@opentelemetry/sdk-trace-base@1.23.0(@opentelemetry/api@1.8.0)': dependencies: '@opentelemetry/api': 1.8.0 - '@opentelemetry/core': 1.22.0(@opentelemetry/api@1.8.0) - '@opentelemetry/resources': 1.22.0(@opentelemetry/api@1.8.0) - '@opentelemetry/semantic-conventions': 1.22.0 + '@opentelemetry/core': 1.23.0(@opentelemetry/api@1.8.0) + '@opentelemetry/resources': 1.23.0(@opentelemetry/api@1.8.0) + '@opentelemetry/semantic-conventions': 1.23.0 '@opentelemetry/sdk-trace-web@1.21.0(@opentelemetry/api@1.8.0)': dependencies: @@ -12731,77 +12662,77 @@ snapshots: '@opentelemetry/sdk-trace-base': 1.21.0(@opentelemetry/api@1.8.0) '@opentelemetry/semantic-conventions': 1.21.0 - '@opentelemetry/sdk-trace-web@1.22.0(@opentelemetry/api@1.8.0)': + '@opentelemetry/sdk-trace-web@1.23.0(@opentelemetry/api@1.8.0)': dependencies: '@opentelemetry/api': 1.8.0 - '@opentelemetry/core': 1.22.0(@opentelemetry/api@1.8.0) - '@opentelemetry/sdk-trace-base': 1.22.0(@opentelemetry/api@1.8.0) - '@opentelemetry/semantic-conventions': 1.22.0 + '@opentelemetry/core': 1.23.0(@opentelemetry/api@1.8.0) + '@opentelemetry/sdk-trace-base': 1.23.0(@opentelemetry/api@1.8.0) + '@opentelemetry/semantic-conventions': 1.23.0 '@opentelemetry/semantic-conventions@1.21.0': {} - '@opentelemetry/semantic-conventions@1.22.0': {} + '@opentelemetry/semantic-conventions@1.23.0': {} - '@parcel/watcher-android-arm64@2.4.0': + '@parcel/watcher-android-arm64@2.4.1': optional: true - '@parcel/watcher-darwin-arm64@2.4.0': + '@parcel/watcher-darwin-arm64@2.4.1': optional: true - '@parcel/watcher-darwin-x64@2.4.0': + '@parcel/watcher-darwin-x64@2.4.1': optional: true - '@parcel/watcher-freebsd-x64@2.4.0': + '@parcel/watcher-freebsd-x64@2.4.1': optional: true - '@parcel/watcher-linux-arm-glibc@2.4.0': + '@parcel/watcher-linux-arm-glibc@2.4.1': optional: true - '@parcel/watcher-linux-arm64-glibc@2.4.0': + '@parcel/watcher-linux-arm64-glibc@2.4.1': optional: true - '@parcel/watcher-linux-arm64-musl@2.4.0': + '@parcel/watcher-linux-arm64-musl@2.4.1': optional: true - '@parcel/watcher-linux-x64-glibc@2.4.0': + '@parcel/watcher-linux-x64-glibc@2.4.1': optional: true - '@parcel/watcher-linux-x64-musl@2.4.0': + '@parcel/watcher-linux-x64-musl@2.4.1': optional: true - '@parcel/watcher-wasm@2.4.0': + '@parcel/watcher-wasm@2.4.1': dependencies: is-glob: 4.0.3 micromatch: 4.0.5 - '@parcel/watcher-win32-arm64@2.4.0': + '@parcel/watcher-win32-arm64@2.4.1': optional: true - '@parcel/watcher-win32-ia32@2.4.0': + '@parcel/watcher-win32-ia32@2.4.1': optional: true - '@parcel/watcher-win32-x64@2.4.0': + '@parcel/watcher-win32-x64@2.4.1': optional: true - '@parcel/watcher@2.4.0': + '@parcel/watcher@2.4.1': dependencies: detect-libc: 1.0.3 is-glob: 4.0.3 micromatch: 4.0.5 node-addon-api: 7.1.0 optionalDependencies: - '@parcel/watcher-android-arm64': 2.4.0 - '@parcel/watcher-darwin-arm64': 2.4.0 - '@parcel/watcher-darwin-x64': 2.4.0 - '@parcel/watcher-freebsd-x64': 2.4.0 - '@parcel/watcher-linux-arm-glibc': 2.4.0 - '@parcel/watcher-linux-arm64-glibc': 2.4.0 - '@parcel/watcher-linux-arm64-musl': 2.4.0 - '@parcel/watcher-linux-x64-glibc': 2.4.0 - '@parcel/watcher-linux-x64-musl': 2.4.0 - '@parcel/watcher-win32-arm64': 2.4.0 - '@parcel/watcher-win32-ia32': 2.4.0 - '@parcel/watcher-win32-x64': 2.4.0 + '@parcel/watcher-android-arm64': 2.4.1 + '@parcel/watcher-darwin-arm64': 2.4.1 + '@parcel/watcher-darwin-x64': 2.4.1 + '@parcel/watcher-freebsd-x64': 2.4.1 + '@parcel/watcher-linux-arm-glibc': 2.4.1 + '@parcel/watcher-linux-arm64-glibc': 2.4.1 + '@parcel/watcher-linux-arm64-musl': 2.4.1 + '@parcel/watcher-linux-x64-glibc': 2.4.1 + '@parcel/watcher-linux-x64-musl': 2.4.1 + '@parcel/watcher-win32-arm64': 2.4.1 + '@parcel/watcher-win32-ia32': 2.4.1 + '@parcel/watcher-win32-x64': 2.4.1 '@pkgjs/parseargs@0.11.0': optional: true @@ -12810,7 +12741,7 @@ snapshots: dependencies: ansi-html-community: 0.0.8 common-path-prefix: 3.0.0 - core-js-pure: 3.36.1 + core-js-pure: 3.37.0 error-stack-parser: 2.1.4 find-up: 5.0.0 html-entities: 2.5.2 @@ -12850,510 +12781,510 @@ snapshots: '@radix-ui/number@1.0.1': dependencies: - '@babel/runtime': 7.23.9 + '@babel/runtime': 7.24.4 '@radix-ui/primitive@1.0.1': dependencies: - '@babel/runtime': 7.23.9 + '@babel/runtime': 7.24.4 - '@radix-ui/react-accordion@1.1.2(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-accordion@1.1.2(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@babel/runtime': 7.23.9 + '@babel/runtime': 7.24.4 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-collapsible': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.55)(react@18.2.0) - '@radix-ui/react-context': 1.0.1(@types/react@18.2.55)(react@18.2.0) - '@radix-ui/react-direction': 1.0.1(@types/react@18.2.55)(react@18.2.0) - '@radix-ui/react-id': 1.0.1(@types/react@18.2.55)(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.55)(react@18.2.0) + '@radix-ui/react-collapsible': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-context': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-direction': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-id': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.79)(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) optionalDependencies: - '@types/react': 18.2.55 - '@types/react-dom': 18.2.19 + '@types/react': 18.2.79 + '@types/react-dom': 18.2.25 - '@radix-ui/react-alert-dialog@1.0.5(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-alert-dialog@1.0.5(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@babel/runtime': 7.23.9 + '@babel/runtime': 7.24.4 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.55)(react@18.2.0) - '@radix-ui/react-context': 1.0.1(@types/react@18.2.55)(react@18.2.0) - '@radix-ui/react-dialog': 1.0.5(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-slot': 1.0.2(@types/react@18.2.55)(react@18.2.0) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-context': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-dialog': 1.0.5(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-slot': 1.0.2(@types/react@18.2.79)(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) optionalDependencies: - '@types/react': 18.2.55 - '@types/react-dom': 18.2.19 + '@types/react': 18.2.79 + '@types/react-dom': 18.2.25 - '@radix-ui/react-arrow@1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-arrow@1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@babel/runtime': 7.23.9 - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@babel/runtime': 7.24.4 + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) optionalDependencies: - '@types/react': 18.2.55 - '@types/react-dom': 18.2.19 + '@types/react': 18.2.79 + '@types/react-dom': 18.2.25 - '@radix-ui/react-avatar@1.0.4(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-avatar@1.0.4(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@babel/runtime': 7.23.9 - '@radix-ui/react-context': 1.0.1(@types/react@18.2.55)(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.55)(react@18.2.0) - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.55)(react@18.2.0) + '@babel/runtime': 7.24.4 + '@radix-ui/react-context': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.79)(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) optionalDependencies: - '@types/react': 18.2.55 - '@types/react-dom': 18.2.19 + '@types/react': 18.2.79 + '@types/react-dom': 18.2.25 - '@radix-ui/react-collapsible@1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-collapsible@1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@babel/runtime': 7.23.9 + '@babel/runtime': 7.24.4 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.55)(react@18.2.0) - '@radix-ui/react-context': 1.0.1(@types/react@18.2.55)(react@18.2.0) - '@radix-ui/react-id': 1.0.1(@types/react@18.2.55)(react@18.2.0) - '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.55)(react@18.2.0) - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.55)(react@18.2.0) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-context': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-id': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.79)(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) optionalDependencies: - '@types/react': 18.2.55 - '@types/react-dom': 18.2.19 + '@types/react': 18.2.79 + '@types/react-dom': 18.2.25 - '@radix-ui/react-collection@1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-collection@1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@babel/runtime': 7.23.9 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.55)(react@18.2.0) - '@radix-ui/react-context': 1.0.1(@types/react@18.2.55)(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-slot': 1.0.2(@types/react@18.2.55)(react@18.2.0) + '@babel/runtime': 7.24.4 + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-context': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-slot': 1.0.2(@types/react@18.2.79)(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) optionalDependencies: - '@types/react': 18.2.55 - '@types/react-dom': 18.2.19 + '@types/react': 18.2.79 + '@types/react-dom': 18.2.25 - '@radix-ui/react-compose-refs@1.0.1(@types/react@18.2.55)(react@18.2.0)': + '@radix-ui/react-compose-refs@1.0.1(@types/react@18.2.79)(react@18.2.0)': dependencies: - '@babel/runtime': 7.23.9 + '@babel/runtime': 7.24.4 react: 18.2.0 optionalDependencies: - '@types/react': 18.2.55 + '@types/react': 18.2.79 - '@radix-ui/react-context@1.0.1(@types/react@18.2.55)(react@18.2.0)': + '@radix-ui/react-context@1.0.1(@types/react@18.2.79)(react@18.2.0)': dependencies: - '@babel/runtime': 7.23.9 + '@babel/runtime': 7.24.4 react: 18.2.0 optionalDependencies: - '@types/react': 18.2.55 + '@types/react': 18.2.79 - '@radix-ui/react-dialog@1.0.5(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-dialog@1.0.5(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@babel/runtime': 7.23.9 + '@babel/runtime': 7.24.4 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.55)(react@18.2.0) - '@radix-ui/react-context': 1.0.1(@types/react@18.2.55)(react@18.2.0) - '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.55)(react@18.2.0) - '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-id': 1.0.1(@types/react@18.2.55)(react@18.2.0) - '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-slot': 1.0.2(@types/react@18.2.55)(react@18.2.0) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.55)(react@18.2.0) - aria-hidden: 1.2.3 + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-context': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-id': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-slot': 1.0.2(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.79)(react@18.2.0) + aria-hidden: 1.2.4 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - react-remove-scroll: 2.5.5(@types/react@18.2.55)(react@18.2.0) + react-remove-scroll: 2.5.5(@types/react@18.2.79)(react@18.2.0) optionalDependencies: - '@types/react': 18.2.55 - '@types/react-dom': 18.2.19 + '@types/react': 18.2.79 + '@types/react-dom': 18.2.25 - '@radix-ui/react-direction@1.0.1(@types/react@18.2.55)(react@18.2.0)': + '@radix-ui/react-direction@1.0.1(@types/react@18.2.79)(react@18.2.0)': dependencies: - '@babel/runtime': 7.23.9 + '@babel/runtime': 7.24.4 react: 18.2.0 optionalDependencies: - '@types/react': 18.2.55 + '@types/react': 18.2.79 - '@radix-ui/react-dismissable-layer@1.0.5(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-dismissable-layer@1.0.5(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@babel/runtime': 7.23.9 + '@babel/runtime': 7.24.4 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.55)(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.55)(react@18.2.0) - '@radix-ui/react-use-escape-keydown': 1.0.3(@types/react@18.2.55)(react@18.2.0) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-use-escape-keydown': 1.0.3(@types/react@18.2.79)(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) optionalDependencies: - '@types/react': 18.2.55 - '@types/react-dom': 18.2.19 + '@types/react': 18.2.79 + '@types/react-dom': 18.2.25 - '@radix-ui/react-focus-guards@1.0.1(@types/react@18.2.55)(react@18.2.0)': + '@radix-ui/react-focus-guards@1.0.1(@types/react@18.2.79)(react@18.2.0)': dependencies: - '@babel/runtime': 7.23.9 + '@babel/runtime': 7.24.4 react: 18.2.0 optionalDependencies: - '@types/react': 18.2.55 + '@types/react': 18.2.79 - '@radix-ui/react-focus-scope@1.0.4(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-focus-scope@1.0.4(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@babel/runtime': 7.23.9 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.55)(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.55)(react@18.2.0) + '@babel/runtime': 7.24.4 + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.79)(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) optionalDependencies: - '@types/react': 18.2.55 - '@types/react-dom': 18.2.19 + '@types/react': 18.2.79 + '@types/react-dom': 18.2.25 - '@radix-ui/react-hover-card@1.0.7(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-hover-card@1.0.7(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@babel/runtime': 7.23.9 + '@babel/runtime': 7.24.4 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.55)(react@18.2.0) - '@radix-ui/react-context': 1.0.1(@types/react@18.2.55)(react@18.2.0) - '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-popper': 1.1.3(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.55)(react@18.2.0) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-context': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-popper': 1.1.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.79)(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) optionalDependencies: - '@types/react': 18.2.55 - '@types/react-dom': 18.2.19 + '@types/react': 18.2.79 + '@types/react-dom': 18.2.25 - '@radix-ui/react-id@1.0.1(@types/react@18.2.55)(react@18.2.0)': + '@radix-ui/react-id@1.0.1(@types/react@18.2.79)(react@18.2.0)': dependencies: - '@babel/runtime': 7.23.9 - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.55)(react@18.2.0) + '@babel/runtime': 7.24.4 + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.79)(react@18.2.0) react: 18.2.0 optionalDependencies: - '@types/react': 18.2.55 + '@types/react': 18.2.79 - '@radix-ui/react-label@2.0.2(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-label@2.0.2(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@babel/runtime': 7.23.9 - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@babel/runtime': 7.24.4 + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) optionalDependencies: - '@types/react': 18.2.55 - '@types/react-dom': 18.2.19 + '@types/react': 18.2.79 + '@types/react-dom': 18.2.25 - '@radix-ui/react-navigation-menu@1.1.4(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-navigation-menu@1.1.4(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@babel/runtime': 7.23.9 + '@babel/runtime': 7.24.4 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.55)(react@18.2.0) - '@radix-ui/react-context': 1.0.1(@types/react@18.2.55)(react@18.2.0) - '@radix-ui/react-direction': 1.0.1(@types/react@18.2.55)(react@18.2.0) - '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-id': 1.0.1(@types/react@18.2.55)(react@18.2.0) - '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.55)(react@18.2.0) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.55)(react@18.2.0) - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.55)(react@18.2.0) - '@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.55)(react@18.2.0) - '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-context': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-direction': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-id': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) optionalDependencies: - '@types/react': 18.2.55 - '@types/react-dom': 18.2.19 + '@types/react': 18.2.79 + '@types/react-dom': 18.2.25 - '@radix-ui/react-popover@1.0.7(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-popover@1.0.7(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@babel/runtime': 7.23.9 + '@babel/runtime': 7.24.4 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.55)(react@18.2.0) - '@radix-ui/react-context': 1.0.1(@types/react@18.2.55)(react@18.2.0) - '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.55)(react@18.2.0) - '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-id': 1.0.1(@types/react@18.2.55)(react@18.2.0) - '@radix-ui/react-popper': 1.1.3(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-slot': 1.0.2(@types/react@18.2.55)(react@18.2.0) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.55)(react@18.2.0) - aria-hidden: 1.2.3 + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-context': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-id': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-popper': 1.1.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-slot': 1.0.2(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.79)(react@18.2.0) + aria-hidden: 1.2.4 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - react-remove-scroll: 2.5.5(@types/react@18.2.55)(react@18.2.0) + react-remove-scroll: 2.5.5(@types/react@18.2.79)(react@18.2.0) optionalDependencies: - '@types/react': 18.2.55 - '@types/react-dom': 18.2.19 + '@types/react': 18.2.79 + '@types/react-dom': 18.2.25 - '@radix-ui/react-popper@1.1.3(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-popper@1.1.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@babel/runtime': 7.23.9 + '@babel/runtime': 7.24.4 '@floating-ui/react-dom': 2.0.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-arrow': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.55)(react@18.2.0) - '@radix-ui/react-context': 1.0.1(@types/react@18.2.55)(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.55)(react@18.2.0) - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.55)(react@18.2.0) - '@radix-ui/react-use-rect': 1.0.1(@types/react@18.2.55)(react@18.2.0) - '@radix-ui/react-use-size': 1.0.1(@types/react@18.2.55)(react@18.2.0) + '@radix-ui/react-arrow': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-context': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-use-rect': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-use-size': 1.0.1(@types/react@18.2.79)(react@18.2.0) '@radix-ui/rect': 1.0.1 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) optionalDependencies: - '@types/react': 18.2.55 - '@types/react-dom': 18.2.19 + '@types/react': 18.2.79 + '@types/react-dom': 18.2.25 - '@radix-ui/react-portal@1.0.4(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-portal@1.0.4(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@babel/runtime': 7.23.9 - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@babel/runtime': 7.24.4 + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) optionalDependencies: - '@types/react': 18.2.55 - '@types/react-dom': 18.2.19 + '@types/react': 18.2.79 + '@types/react-dom': 18.2.25 - '@radix-ui/react-presence@1.0.1(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-presence@1.0.1(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@babel/runtime': 7.23.9 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.55)(react@18.2.0) - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.55)(react@18.2.0) + '@babel/runtime': 7.24.4 + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.79)(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) optionalDependencies: - '@types/react': 18.2.55 - '@types/react-dom': 18.2.19 + '@types/react': 18.2.79 + '@types/react-dom': 18.2.25 - '@radix-ui/react-primitive@1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-primitive@1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@babel/runtime': 7.23.9 - '@radix-ui/react-slot': 1.0.2(@types/react@18.2.55)(react@18.2.0) + '@babel/runtime': 7.24.4 + '@radix-ui/react-slot': 1.0.2(@types/react@18.2.79)(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) optionalDependencies: - '@types/react': 18.2.55 - '@types/react-dom': 18.2.19 + '@types/react': 18.2.79 + '@types/react-dom': 18.2.25 - '@radix-ui/react-progress@1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-progress@1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@babel/runtime': 7.23.9 - '@radix-ui/react-context': 1.0.1(@types/react@18.2.55)(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@babel/runtime': 7.24.4 + '@radix-ui/react-context': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) optionalDependencies: - '@types/react': 18.2.55 - '@types/react-dom': 18.2.19 + '@types/react': 18.2.79 + '@types/react-dom': 18.2.25 - '@radix-ui/react-roving-focus@1.0.4(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-roving-focus@1.0.4(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@babel/runtime': 7.23.9 + '@babel/runtime': 7.24.4 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.55)(react@18.2.0) - '@radix-ui/react-context': 1.0.1(@types/react@18.2.55)(react@18.2.0) - '@radix-ui/react-direction': 1.0.1(@types/react@18.2.55)(react@18.2.0) - '@radix-ui/react-id': 1.0.1(@types/react@18.2.55)(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.55)(react@18.2.0) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.55)(react@18.2.0) + '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-context': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-direction': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-id': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.79)(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) optionalDependencies: - '@types/react': 18.2.55 - '@types/react-dom': 18.2.19 + '@types/react': 18.2.79 + '@types/react-dom': 18.2.25 - '@radix-ui/react-select@2.0.0(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-select@2.0.0(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@babel/runtime': 7.23.9 + '@babel/runtime': 7.24.4 '@radix-ui/number': 1.0.1 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.55)(react@18.2.0) - '@radix-ui/react-context': 1.0.1(@types/react@18.2.55)(react@18.2.0) - '@radix-ui/react-direction': 1.0.1(@types/react@18.2.55)(react@18.2.0) - '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.55)(react@18.2.0) - '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-id': 1.0.1(@types/react@18.2.55)(react@18.2.0) - '@radix-ui/react-popper': 1.1.3(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-slot': 1.0.2(@types/react@18.2.55)(react@18.2.0) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.55)(react@18.2.0) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.55)(react@18.2.0) - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.55)(react@18.2.0) - '@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.55)(react@18.2.0) - '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - aria-hidden: 1.2.3 + '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-context': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-direction': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-id': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-popper': 1.1.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-slot': 1.0.2(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + aria-hidden: 1.2.4 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - react-remove-scroll: 2.5.5(@types/react@18.2.55)(react@18.2.0) + react-remove-scroll: 2.5.5(@types/react@18.2.79)(react@18.2.0) optionalDependencies: - '@types/react': 18.2.55 - '@types/react-dom': 18.2.19 + '@types/react': 18.2.79 + '@types/react-dom': 18.2.25 - '@radix-ui/react-separator@1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-separator@1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@babel/runtime': 7.23.9 - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@babel/runtime': 7.24.4 + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) optionalDependencies: - '@types/react': 18.2.55 - '@types/react-dom': 18.2.19 + '@types/react': 18.2.79 + '@types/react-dom': 18.2.25 - '@radix-ui/react-slot@1.0.2(@types/react@18.2.55)(react@18.2.0)': + '@radix-ui/react-slot@1.0.2(@types/react@18.2.79)(react@18.2.0)': dependencies: - '@babel/runtime': 7.23.9 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.55)(react@18.2.0) + '@babel/runtime': 7.24.4 + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.79)(react@18.2.0) react: 18.2.0 optionalDependencies: - '@types/react': 18.2.55 + '@types/react': 18.2.79 - '@radix-ui/react-tabs@1.0.4(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-tabs@1.0.4(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@babel/runtime': 7.23.9 + '@babel/runtime': 7.24.4 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-context': 1.0.1(@types/react@18.2.55)(react@18.2.0) - '@radix-ui/react-direction': 1.0.1(@types/react@18.2.55)(react@18.2.0) - '@radix-ui/react-id': 1.0.1(@types/react@18.2.55)(react@18.2.0) - '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.55)(react@18.2.0) + '@radix-ui/react-context': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-direction': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-id': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.79)(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) optionalDependencies: - '@types/react': 18.2.55 - '@types/react-dom': 18.2.19 + '@types/react': 18.2.79 + '@types/react-dom': 18.2.25 - '@radix-ui/react-toast@1.1.5(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-toast@1.1.5(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@babel/runtime': 7.23.9 + '@babel/runtime': 7.24.4 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.55)(react@18.2.0) - '@radix-ui/react-context': 1.0.1(@types/react@18.2.55)(react@18.2.0) - '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.55)(react@18.2.0) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.55)(react@18.2.0) - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.55)(react@18.2.0) - '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-context': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) optionalDependencies: - '@types/react': 18.2.55 - '@types/react-dom': 18.2.19 + '@types/react': 18.2.79 + '@types/react-dom': 18.2.25 - '@radix-ui/react-tooltip@1.0.7(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-tooltip@1.0.7(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@babel/runtime': 7.23.9 + '@babel/runtime': 7.24.4 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.55)(react@18.2.0) - '@radix-ui/react-context': 1.0.1(@types/react@18.2.55)(react@18.2.0) - '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-id': 1.0.1(@types/react@18.2.55)(react@18.2.0) - '@radix-ui/react-popper': 1.1.3(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-slot': 1.0.2(@types/react@18.2.55)(react@18.2.0) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.55)(react@18.2.0) - '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-context': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-id': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-popper': 1.1.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-slot': 1.0.2(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) optionalDependencies: - '@types/react': 18.2.55 - '@types/react-dom': 18.2.19 + '@types/react': 18.2.79 + '@types/react-dom': 18.2.25 - '@radix-ui/react-use-callback-ref@1.0.1(@types/react@18.2.55)(react@18.2.0)': + '@radix-ui/react-use-callback-ref@1.0.1(@types/react@18.2.79)(react@18.2.0)': dependencies: - '@babel/runtime': 7.23.9 + '@babel/runtime': 7.24.4 react: 18.2.0 optionalDependencies: - '@types/react': 18.2.55 + '@types/react': 18.2.79 - '@radix-ui/react-use-controllable-state@1.0.1(@types/react@18.2.55)(react@18.2.0)': + '@radix-ui/react-use-controllable-state@1.0.1(@types/react@18.2.79)(react@18.2.0)': dependencies: - '@babel/runtime': 7.23.9 - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.55)(react@18.2.0) + '@babel/runtime': 7.24.4 + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.79)(react@18.2.0) react: 18.2.0 optionalDependencies: - '@types/react': 18.2.55 + '@types/react': 18.2.79 - '@radix-ui/react-use-escape-keydown@1.0.3(@types/react@18.2.55)(react@18.2.0)': + '@radix-ui/react-use-escape-keydown@1.0.3(@types/react@18.2.79)(react@18.2.0)': dependencies: - '@babel/runtime': 7.23.9 - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.55)(react@18.2.0) + '@babel/runtime': 7.24.4 + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.79)(react@18.2.0) react: 18.2.0 optionalDependencies: - '@types/react': 18.2.55 + '@types/react': 18.2.79 - '@radix-ui/react-use-layout-effect@1.0.1(@types/react@18.2.55)(react@18.2.0)': + '@radix-ui/react-use-layout-effect@1.0.1(@types/react@18.2.79)(react@18.2.0)': dependencies: - '@babel/runtime': 7.23.9 + '@babel/runtime': 7.24.4 react: 18.2.0 optionalDependencies: - '@types/react': 18.2.55 + '@types/react': 18.2.79 - '@radix-ui/react-use-previous@1.0.1(@types/react@18.2.55)(react@18.2.0)': + '@radix-ui/react-use-previous@1.0.1(@types/react@18.2.79)(react@18.2.0)': dependencies: - '@babel/runtime': 7.23.9 + '@babel/runtime': 7.24.4 react: 18.2.0 optionalDependencies: - '@types/react': 18.2.55 + '@types/react': 18.2.79 - '@radix-ui/react-use-rect@1.0.1(@types/react@18.2.55)(react@18.2.0)': + '@radix-ui/react-use-rect@1.0.1(@types/react@18.2.79)(react@18.2.0)': dependencies: - '@babel/runtime': 7.23.9 + '@babel/runtime': 7.24.4 '@radix-ui/rect': 1.0.1 react: 18.2.0 optionalDependencies: - '@types/react': 18.2.55 + '@types/react': 18.2.79 - '@radix-ui/react-use-size@1.0.1(@types/react@18.2.55)(react@18.2.0)': + '@radix-ui/react-use-size@1.0.1(@types/react@18.2.79)(react@18.2.0)': dependencies: - '@babel/runtime': 7.23.9 - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.55)(react@18.2.0) + '@babel/runtime': 7.24.4 + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.79)(react@18.2.0) react: 18.2.0 optionalDependencies: - '@types/react': 18.2.55 + '@types/react': 18.2.79 - '@radix-ui/react-visually-hidden@1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-visually-hidden@1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@babel/runtime': 7.23.9 - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@babel/runtime': 7.24.4 + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) optionalDependencies: - '@types/react': 18.2.55 - '@types/react-dom': 18.2.19 + '@types/react': 18.2.79 + '@types/react-dom': 18.2.25 '@radix-ui/rect@1.0.1': dependencies: - '@babel/runtime': 7.23.9 + '@babel/runtime': 7.24.4 '@react-aria/breadcrumbs@3.5.11(react@18.2.0)': dependencies: @@ -13362,7 +13293,7 @@ snapshots: '@react-aria/utils': 3.23.2(react@18.2.0) '@react-types/breadcrumbs': 3.7.3(react@18.2.0) '@react-types/shared': 3.22.1(react@18.2.0) - '@swc/helpers': 0.5.2 + '@swc/helpers': 0.5.10 react: 18.2.0 '@react-aria/button@3.9.3(react@18.2.0)': @@ -13373,7 +13304,7 @@ snapshots: '@react-stately/toggle': 3.7.2(react@18.2.0) '@react-types/button': 3.9.2(react@18.2.0) '@react-types/shared': 3.22.1(react@18.2.0) - '@swc/helpers': 0.5.2 + '@swc/helpers': 0.5.10 react: 18.2.0 '@react-aria/calendar@3.5.6(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': @@ -13387,7 +13318,7 @@ snapshots: '@react-types/button': 3.9.2(react@18.2.0) '@react-types/calendar': 3.4.4(react@18.2.0) '@react-types/shared': 3.22.1(react@18.2.0) - '@swc/helpers': 0.5.2 + '@swc/helpers': 0.5.10 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) @@ -13403,7 +13334,7 @@ snapshots: '@react-stately/toggle': 3.7.2(react@18.2.0) '@react-types/checkbox': 3.7.1(react@18.2.0) '@react-types/shared': 3.22.1(react@18.2.0) - '@swc/helpers': 0.5.2 + '@swc/helpers': 0.5.10 react: 18.2.0 '@react-aria/combobox@3.8.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': @@ -13422,7 +13353,7 @@ snapshots: '@react-types/button': 3.9.2(react@18.2.0) '@react-types/combobox': 3.10.1(react@18.2.0) '@react-types/shared': 3.22.1(react@18.2.0) - '@swc/helpers': 0.5.2 + '@swc/helpers': 0.5.10 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) @@ -13445,7 +13376,7 @@ snapshots: '@react-types/datepicker': 3.7.2(react@18.2.0) '@react-types/dialog': 3.5.8(react@18.2.0) '@react-types/shared': 3.22.1(react@18.2.0) - '@swc/helpers': 0.5.2 + '@swc/helpers': 0.5.10 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) @@ -13456,7 +13387,7 @@ snapshots: '@react-aria/utils': 3.23.2(react@18.2.0) '@react-types/dialog': 3.5.8(react@18.2.0) '@react-types/shared': 3.22.1(react@18.2.0) - '@swc/helpers': 0.5.2 + '@swc/helpers': 0.5.10 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) @@ -13471,7 +13402,7 @@ snapshots: '@react-stately/dnd': 3.2.8(react@18.2.0) '@react-types/button': 3.9.2(react@18.2.0) '@react-types/shared': 3.22.1(react@18.2.0) - '@swc/helpers': 0.5.2 + '@swc/helpers': 0.5.10 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) @@ -13480,7 +13411,7 @@ snapshots: '@react-aria/interactions': 3.21.1(react@18.2.0) '@react-aria/utils': 3.23.2(react@18.2.0) '@react-types/shared': 3.22.1(react@18.2.0) - '@swc/helpers': 0.5.2 + '@swc/helpers': 0.5.10 clsx: 2.1.0 react: 18.2.0 @@ -13490,7 +13421,7 @@ snapshots: '@react-aria/utils': 3.23.2(react@18.2.0) '@react-stately/form': 3.0.1(react@18.2.0) '@react-types/shared': 3.22.1(react@18.2.0) - '@swc/helpers': 0.5.2 + '@swc/helpers': 0.5.10 react: 18.2.0 '@react-aria/grid@3.8.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': @@ -13508,7 +13439,7 @@ snapshots: '@react-types/checkbox': 3.7.1(react@18.2.0) '@react-types/grid': 3.2.4(react@18.2.0) '@react-types/shared': 3.22.1(react@18.2.0) - '@swc/helpers': 0.5.2 + '@swc/helpers': 0.5.10 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) @@ -13522,7 +13453,7 @@ snapshots: '@react-aria/utils': 3.23.2(react@18.2.0) '@react-stately/list': 3.10.3(react@18.2.0) '@react-types/shared': 3.22.1(react@18.2.0) - '@swc/helpers': 0.5.2 + '@swc/helpers': 0.5.10 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) @@ -13535,7 +13466,7 @@ snapshots: '@react-aria/ssr': 3.9.2(react@18.2.0) '@react-aria/utils': 3.23.2(react@18.2.0) '@react-types/shared': 3.22.1(react@18.2.0) - '@swc/helpers': 0.5.2 + '@swc/helpers': 0.5.10 react: 18.2.0 '@react-aria/interactions@3.21.1(react@18.2.0)': @@ -13543,14 +13474,14 @@ snapshots: '@react-aria/ssr': 3.9.2(react@18.2.0) '@react-aria/utils': 3.23.2(react@18.2.0) '@react-types/shared': 3.22.1(react@18.2.0) - '@swc/helpers': 0.5.2 + '@swc/helpers': 0.5.10 react: 18.2.0 '@react-aria/label@3.7.6(react@18.2.0)': dependencies: '@react-aria/utils': 3.23.2(react@18.2.0) '@react-types/shared': 3.22.1(react@18.2.0) - '@swc/helpers': 0.5.2 + '@swc/helpers': 0.5.10 react: 18.2.0 '@react-aria/link@3.6.5(react@18.2.0)': @@ -13560,7 +13491,7 @@ snapshots: '@react-aria/utils': 3.23.2(react@18.2.0) '@react-types/link': 3.5.3(react@18.2.0) '@react-types/shared': 3.22.1(react@18.2.0) - '@swc/helpers': 0.5.2 + '@swc/helpers': 0.5.10 react: 18.2.0 '@react-aria/listbox@3.11.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': @@ -13573,13 +13504,13 @@ snapshots: '@react-stately/list': 3.10.3(react@18.2.0) '@react-types/listbox': 3.4.7(react@18.2.0) '@react-types/shared': 3.22.1(react@18.2.0) - '@swc/helpers': 0.5.2 + '@swc/helpers': 0.5.10 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) '@react-aria/live-announcer@3.3.2': dependencies: - '@swc/helpers': 0.5.2 + '@swc/helpers': 0.5.10 '@react-aria/menu@3.13.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: @@ -13595,7 +13526,7 @@ snapshots: '@react-types/button': 3.9.2(react@18.2.0) '@react-types/menu': 3.9.7(react@18.2.0) '@react-types/shared': 3.22.1(react@18.2.0) - '@swc/helpers': 0.5.2 + '@swc/helpers': 0.5.10 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) @@ -13604,7 +13535,7 @@ snapshots: '@react-aria/progress': 3.4.11(react@18.2.0) '@react-types/meter': 3.3.7(react@18.2.0) '@react-types/shared': 3.22.1(react@18.2.0) - '@swc/helpers': 0.5.2 + '@swc/helpers': 0.5.10 react: 18.2.0 '@react-aria/numberfield@3.11.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': @@ -13619,7 +13550,7 @@ snapshots: '@react-types/button': 3.9.2(react@18.2.0) '@react-types/numberfield': 3.8.1(react@18.2.0) '@react-types/shared': 3.22.1(react@18.2.0) - '@swc/helpers': 0.5.2 + '@swc/helpers': 0.5.10 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) @@ -13635,7 +13566,7 @@ snapshots: '@react-types/button': 3.9.2(react@18.2.0) '@react-types/overlays': 3.8.5(react@18.2.0) '@react-types/shared': 3.22.1(react@18.2.0) - '@swc/helpers': 0.5.2 + '@swc/helpers': 0.5.10 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) @@ -13646,7 +13577,7 @@ snapshots: '@react-aria/utils': 3.23.2(react@18.2.0) '@react-types/progress': 3.5.2(react@18.2.0) '@react-types/shared': 3.22.1(react@18.2.0) - '@swc/helpers': 0.5.2 + '@swc/helpers': 0.5.10 react: 18.2.0 '@react-aria/radio@3.10.2(react@18.2.0)': @@ -13660,7 +13591,7 @@ snapshots: '@react-stately/radio': 3.10.2(react@18.2.0) '@react-types/radio': 3.7.1(react@18.2.0) '@react-types/shared': 3.22.1(react@18.2.0) - '@swc/helpers': 0.5.2 + '@swc/helpers': 0.5.10 react: 18.2.0 '@react-aria/searchfield@3.7.3(react@18.2.0)': @@ -13672,7 +13603,7 @@ snapshots: '@react-types/button': 3.9.2(react@18.2.0) '@react-types/searchfield': 3.5.3(react@18.2.0) '@react-types/shared': 3.22.1(react@18.2.0) - '@swc/helpers': 0.5.2 + '@swc/helpers': 0.5.10 react: 18.2.0 '@react-aria/select@3.14.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': @@ -13690,7 +13621,7 @@ snapshots: '@react-types/button': 3.9.2(react@18.2.0) '@react-types/select': 3.9.2(react@18.2.0) '@react-types/shared': 3.22.1(react@18.2.0) - '@swc/helpers': 0.5.2 + '@swc/helpers': 0.5.10 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) @@ -13702,7 +13633,7 @@ snapshots: '@react-aria/utils': 3.23.2(react@18.2.0) '@react-stately/selection': 3.14.3(react@18.2.0) '@react-types/shared': 3.22.1(react@18.2.0) - '@swc/helpers': 0.5.2 + '@swc/helpers': 0.5.10 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) @@ -13710,7 +13641,7 @@ snapshots: dependencies: '@react-aria/utils': 3.23.2(react@18.2.0) '@react-types/shared': 3.22.1(react@18.2.0) - '@swc/helpers': 0.5.2 + '@swc/helpers': 0.5.10 react: 18.2.0 '@react-aria/slider@3.7.6(react@18.2.0)': @@ -13723,7 +13654,7 @@ snapshots: '@react-stately/slider': 3.5.2(react@18.2.0) '@react-types/shared': 3.22.1(react@18.2.0) '@react-types/slider': 3.7.1(react@18.2.0) - '@swc/helpers': 0.5.2 + '@swc/helpers': 0.5.10 react: 18.2.0 '@react-aria/spinbutton@3.6.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': @@ -13733,13 +13664,13 @@ snapshots: '@react-aria/utils': 3.23.2(react@18.2.0) '@react-types/button': 3.9.2(react@18.2.0) '@react-types/shared': 3.22.1(react@18.2.0) - '@swc/helpers': 0.5.2 + '@swc/helpers': 0.5.10 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) '@react-aria/ssr@3.9.2(react@18.2.0)': dependencies: - '@swc/helpers': 0.5.2 + '@swc/helpers': 0.5.10 react: 18.2.0 '@react-aria/switch@3.6.2(react@18.2.0)': @@ -13747,7 +13678,7 @@ snapshots: '@react-aria/toggle': 3.10.2(react@18.2.0) '@react-stately/toggle': 3.7.2(react@18.2.0) '@react-types/switch': 3.5.1(react@18.2.0) - '@swc/helpers': 0.5.2 + '@swc/helpers': 0.5.10 react: 18.2.0 '@react-aria/table@3.13.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': @@ -13767,7 +13698,7 @@ snapshots: '@react-types/grid': 3.2.4(react@18.2.0) '@react-types/shared': 3.22.1(react@18.2.0) '@react-types/table': 3.9.3(react@18.2.0) - '@swc/helpers': 0.5.2 + '@swc/helpers': 0.5.10 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) @@ -13780,7 +13711,7 @@ snapshots: '@react-stately/tabs': 3.6.4(react@18.2.0) '@react-types/shared': 3.22.1(react@18.2.0) '@react-types/tabs': 3.3.5(react@18.2.0) - '@swc/helpers': 0.5.2 + '@swc/helpers': 0.5.10 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) @@ -13795,7 +13726,7 @@ snapshots: '@react-stately/list': 3.10.3(react@18.2.0) '@react-types/button': 3.9.2(react@18.2.0) '@react-types/shared': 3.22.1(react@18.2.0) - '@swc/helpers': 0.5.2 + '@swc/helpers': 0.5.10 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) @@ -13809,7 +13740,7 @@ snapshots: '@react-stately/utils': 3.9.1(react@18.2.0) '@react-types/shared': 3.22.1(react@18.2.0) '@react-types/textfield': 3.9.1(react@18.2.0) - '@swc/helpers': 0.5.2 + '@swc/helpers': 0.5.10 react: 18.2.0 '@react-aria/toggle@3.10.2(react@18.2.0)': @@ -13819,7 +13750,7 @@ snapshots: '@react-aria/utils': 3.23.2(react@18.2.0) '@react-stately/toggle': 3.7.2(react@18.2.0) '@react-types/checkbox': 3.7.1(react@18.2.0) - '@swc/helpers': 0.5.2 + '@swc/helpers': 0.5.10 react: 18.2.0 '@react-aria/tooltip@3.7.2(react@18.2.0)': @@ -13830,7 +13761,7 @@ snapshots: '@react-stately/tooltip': 3.4.7(react@18.2.0) '@react-types/shared': 3.22.1(react@18.2.0) '@react-types/tooltip': 3.4.7(react@18.2.0) - '@swc/helpers': 0.5.2 + '@swc/helpers': 0.5.10 react: 18.2.0 '@react-aria/utils@3.23.2(react@18.2.0)': @@ -13838,7 +13769,7 @@ snapshots: '@react-aria/ssr': 3.9.2(react@18.2.0) '@react-stately/utils': 3.9.1(react@18.2.0) '@react-types/shared': 3.22.1(react@18.2.0) - '@swc/helpers': 0.5.2 + '@swc/helpers': 0.5.10 clsx: 2.1.0 react: 18.2.0 @@ -13847,7 +13778,7 @@ snapshots: '@react-aria/interactions': 3.21.1(react@18.2.0) '@react-aria/utils': 3.23.2(react@18.2.0) '@react-types/shared': 3.22.1(react@18.2.0) - '@swc/helpers': 0.5.2 + '@swc/helpers': 0.5.10 react: 18.2.0 '@react-icons/all-files@4.1.0(react@18.2.0)': @@ -13860,7 +13791,7 @@ snapshots: '@react-stately/utils': 3.9.1(react@18.2.0) '@react-types/calendar': 3.4.4(react@18.2.0) '@react-types/shared': 3.22.1(react@18.2.0) - '@swc/helpers': 0.5.2 + '@swc/helpers': 0.5.10 react: 18.2.0 '@react-stately/checkbox@3.6.3(react@18.2.0)': @@ -13869,13 +13800,13 @@ snapshots: '@react-stately/utils': 3.9.1(react@18.2.0) '@react-types/checkbox': 3.7.1(react@18.2.0) '@react-types/shared': 3.22.1(react@18.2.0) - '@swc/helpers': 0.5.2 + '@swc/helpers': 0.5.10 react: 18.2.0 '@react-stately/collections@3.10.5(react@18.2.0)': dependencies: '@react-types/shared': 3.22.1(react@18.2.0) - '@swc/helpers': 0.5.2 + '@swc/helpers': 0.5.10 react: 18.2.0 '@react-stately/combobox@3.8.2(react@18.2.0)': @@ -13888,13 +13819,13 @@ snapshots: '@react-stately/utils': 3.9.1(react@18.2.0) '@react-types/combobox': 3.10.1(react@18.2.0) '@react-types/shared': 3.22.1(react@18.2.0) - '@swc/helpers': 0.5.2 + '@swc/helpers': 0.5.10 react: 18.2.0 '@react-stately/data@3.11.2(react@18.2.0)': dependencies: '@react-types/shared': 3.22.1(react@18.2.0) - '@swc/helpers': 0.5.2 + '@swc/helpers': 0.5.10 react: 18.2.0 '@react-stately/datepicker@3.9.2(react@18.2.0)': @@ -13906,14 +13837,14 @@ snapshots: '@react-stately/utils': 3.9.1(react@18.2.0) '@react-types/datepicker': 3.7.2(react@18.2.0) '@react-types/shared': 3.22.1(react@18.2.0) - '@swc/helpers': 0.5.2 + '@swc/helpers': 0.5.10 react: 18.2.0 '@react-stately/dnd@3.2.8(react@18.2.0)': dependencies: '@react-stately/selection': 3.14.3(react@18.2.0) '@react-types/shared': 3.22.1(react@18.2.0) - '@swc/helpers': 0.5.2 + '@swc/helpers': 0.5.10 react: 18.2.0 '@react-stately/flags@3.0.1': @@ -13923,7 +13854,7 @@ snapshots: '@react-stately/form@3.0.1(react@18.2.0)': dependencies: '@react-types/shared': 3.22.1(react@18.2.0) - '@swc/helpers': 0.5.2 + '@swc/helpers': 0.5.10 react: 18.2.0 '@react-stately/grid@3.8.5(react@18.2.0)': @@ -13932,7 +13863,7 @@ snapshots: '@react-stately/selection': 3.14.3(react@18.2.0) '@react-types/grid': 3.2.4(react@18.2.0) '@react-types/shared': 3.22.1(react@18.2.0) - '@swc/helpers': 0.5.2 + '@swc/helpers': 0.5.10 react: 18.2.0 '@react-stately/list@3.10.3(react@18.2.0)': @@ -13941,7 +13872,7 @@ snapshots: '@react-stately/selection': 3.14.3(react@18.2.0) '@react-stately/utils': 3.9.1(react@18.2.0) '@react-types/shared': 3.22.1(react@18.2.0) - '@swc/helpers': 0.5.2 + '@swc/helpers': 0.5.10 react: 18.2.0 '@react-stately/menu@3.6.1(react@18.2.0)': @@ -13949,7 +13880,7 @@ snapshots: '@react-stately/overlays': 3.6.5(react@18.2.0) '@react-types/menu': 3.9.7(react@18.2.0) '@react-types/shared': 3.22.1(react@18.2.0) - '@swc/helpers': 0.5.2 + '@swc/helpers': 0.5.10 react: 18.2.0 '@react-stately/numberfield@3.9.1(react@18.2.0)': @@ -13958,14 +13889,14 @@ snapshots: '@react-stately/form': 3.0.1(react@18.2.0) '@react-stately/utils': 3.9.1(react@18.2.0) '@react-types/numberfield': 3.8.1(react@18.2.0) - '@swc/helpers': 0.5.2 + '@swc/helpers': 0.5.10 react: 18.2.0 '@react-stately/overlays@3.6.5(react@18.2.0)': dependencies: '@react-stately/utils': 3.9.1(react@18.2.0) '@react-types/overlays': 3.8.5(react@18.2.0) - '@swc/helpers': 0.5.2 + '@swc/helpers': 0.5.10 react: 18.2.0 '@react-stately/radio@3.10.2(react@18.2.0)': @@ -13974,14 +13905,14 @@ snapshots: '@react-stately/utils': 3.9.1(react@18.2.0) '@react-types/radio': 3.7.1(react@18.2.0) '@react-types/shared': 3.22.1(react@18.2.0) - '@swc/helpers': 0.5.2 + '@swc/helpers': 0.5.10 react: 18.2.0 '@react-stately/searchfield@3.5.1(react@18.2.0)': dependencies: '@react-stately/utils': 3.9.1(react@18.2.0) '@react-types/searchfield': 3.5.3(react@18.2.0) - '@swc/helpers': 0.5.2 + '@swc/helpers': 0.5.10 react: 18.2.0 '@react-stately/select@3.6.2(react@18.2.0)': @@ -13991,7 +13922,7 @@ snapshots: '@react-stately/overlays': 3.6.5(react@18.2.0) '@react-types/select': 3.9.2(react@18.2.0) '@react-types/shared': 3.22.1(react@18.2.0) - '@swc/helpers': 0.5.2 + '@swc/helpers': 0.5.10 react: 18.2.0 '@react-stately/selection@3.14.3(react@18.2.0)': @@ -13999,7 +13930,7 @@ snapshots: '@react-stately/collections': 3.10.5(react@18.2.0) '@react-stately/utils': 3.9.1(react@18.2.0) '@react-types/shared': 3.22.1(react@18.2.0) - '@swc/helpers': 0.5.2 + '@swc/helpers': 0.5.10 react: 18.2.0 '@react-stately/slider@3.5.2(react@18.2.0)': @@ -14007,7 +13938,7 @@ snapshots: '@react-stately/utils': 3.9.1(react@18.2.0) '@react-types/shared': 3.22.1(react@18.2.0) '@react-types/slider': 3.7.1(react@18.2.0) - '@swc/helpers': 0.5.2 + '@swc/helpers': 0.5.10 react: 18.2.0 '@react-stately/table@3.11.6(react@18.2.0)': @@ -14020,7 +13951,7 @@ snapshots: '@react-types/grid': 3.2.4(react@18.2.0) '@react-types/shared': 3.22.1(react@18.2.0) '@react-types/table': 3.9.3(react@18.2.0) - '@swc/helpers': 0.5.2 + '@swc/helpers': 0.5.10 react: 18.2.0 '@react-stately/tabs@3.6.4(react@18.2.0)': @@ -14028,21 +13959,21 @@ snapshots: '@react-stately/list': 3.10.3(react@18.2.0) '@react-types/shared': 3.22.1(react@18.2.0) '@react-types/tabs': 3.3.5(react@18.2.0) - '@swc/helpers': 0.5.2 + '@swc/helpers': 0.5.10 react: 18.2.0 '@react-stately/toggle@3.7.2(react@18.2.0)': dependencies: '@react-stately/utils': 3.9.1(react@18.2.0) '@react-types/checkbox': 3.7.1(react@18.2.0) - '@swc/helpers': 0.5.2 + '@swc/helpers': 0.5.10 react: 18.2.0 '@react-stately/tooltip@3.4.7(react@18.2.0)': dependencies: '@react-stately/overlays': 3.6.5(react@18.2.0) '@react-types/tooltip': 3.4.7(react@18.2.0) - '@swc/helpers': 0.5.2 + '@swc/helpers': 0.5.10 react: 18.2.0 '@react-stately/tree@3.7.6(react@18.2.0)': @@ -14051,19 +13982,19 @@ snapshots: '@react-stately/selection': 3.14.3(react@18.2.0) '@react-stately/utils': 3.9.1(react@18.2.0) '@react-types/shared': 3.22.1(react@18.2.0) - '@swc/helpers': 0.5.2 + '@swc/helpers': 0.5.10 react: 18.2.0 '@react-stately/utils@3.9.1(react@18.2.0)': dependencies: - '@swc/helpers': 0.5.2 + '@swc/helpers': 0.5.10 react: 18.2.0 '@react-stately/virtualizer@3.6.8(react@18.2.0)': dependencies: '@react-aria/utils': 3.23.2(react@18.2.0) '@react-types/shared': 3.22.1(react@18.2.0) - '@swc/helpers': 0.5.2 + '@swc/helpers': 0.5.10 react: 18.2.0 '@react-types/breadcrumbs@3.7.3(react@18.2.0)': @@ -14200,13 +14131,13 @@ snapshots: '@react-types/shared': 3.22.1(react@18.2.0) react: 18.2.0 - '@remix-run/router@1.15.0': {} + '@remix-run/router@1.15.3': {} '@rollup/plugin-inject@5.0.5(rollup@4.14.3)': dependencies: '@rollup/pluginutils': 5.1.0(rollup@4.14.3) estree-walker: 2.0.2 - magic-string: 0.30.7 + magic-string: 0.30.10 optionalDependencies: rollup: 4.14.3 @@ -14266,18 +14197,18 @@ snapshots: '@rollup/rollup-win32-x64-msvc@4.14.3': optional: true - '@scure/base@1.1.5': {} + '@scure/base@1.1.6': {} '@scure/bip32@1.3.3': dependencies: '@noble/curves': 1.3.0 '@noble/hashes': 1.3.3 - '@scure/base': 1.1.5 + '@scure/base': 1.1.6 '@scure/bip39@1.2.2': dependencies: '@noble/hashes': 1.3.3 - '@scure/base': 1.1.5 + '@scure/base': 1.1.6 '@sinclair/typebox@0.27.8': {} @@ -14361,34 +14292,34 @@ snapshots: '@stablelib/random': 1.0.2 '@stablelib/wipe': 1.0.1 - '@storyblok/js@3.0.7': + '@storyblok/js@3.0.8': dependencies: - storyblok-js-client: 6.7.1 + storyblok-js-client: 6.7.2 - '@storyblok/react@3.0.9(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@storyblok/react@3.0.10(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@storyblok/js': 3.0.7 + '@storyblok/js': 3.0.8 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - '@storybook/addon-actions@8.0.5': + '@storybook/addon-actions@8.0.8': dependencies: - '@storybook/core-events': 8.0.5 + '@storybook/core-events': 8.0.8 '@storybook/global': 5.0.0 '@types/uuid': 9.0.8 dequal: 2.0.3 polished: 4.3.1 uuid: 9.0.1 - '@storybook/addon-backgrounds@8.0.5': + '@storybook/addon-backgrounds@8.0.8': dependencies: '@storybook/global': 5.0.0 memoizerific: 1.11.3 ts-dedent: 2.2.0 - '@storybook/addon-controls@8.0.5(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@storybook/addon-controls@8.0.8(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@storybook/blocks': 8.0.5(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/blocks': 8.0.8(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) lodash: 4.17.21 ts-dedent: 2.2.0 transitivePeerDependencies: @@ -14398,22 +14329,22 @@ snapshots: - react-dom - supports-color - '@storybook/addon-docs@8.0.5': + '@storybook/addon-docs@8.0.8': dependencies: - '@babel/core': 7.24.3 - '@mdx-js/react': 3.0.1(@types/react@18.2.55)(react@18.2.0) - '@storybook/blocks': 8.0.5(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/client-logger': 8.0.5 - '@storybook/components': 8.0.5(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/csf-plugin': 8.0.5 - '@storybook/csf-tools': 8.0.5 + '@babel/core': 7.24.4 + '@mdx-js/react': 3.0.1(@types/react@18.2.79)(react@18.2.0) + '@storybook/blocks': 8.0.8(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/client-logger': 8.0.8 + '@storybook/components': 8.0.8(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/csf-plugin': 8.0.8 + '@storybook/csf-tools': 8.0.8 '@storybook/global': 5.0.0 - '@storybook/node-logger': 8.0.5 - '@storybook/preview-api': 8.0.5 - '@storybook/react-dom-shim': 8.0.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/theming': 8.0.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/types': 8.0.5 - '@types/react': 18.2.55 + '@storybook/node-logger': 8.0.8 + '@storybook/preview-api': 8.0.8 + '@storybook/react-dom-shim': 8.0.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/theming': 8.0.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/types': 8.0.8 + '@types/react': 18.2.79 fs-extra: 11.2.0 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) @@ -14424,21 +14355,21 @@ snapshots: - encoding - supports-color - '@storybook/addon-essentials@8.0.5(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': - dependencies: - '@storybook/addon-actions': 8.0.5 - '@storybook/addon-backgrounds': 8.0.5 - '@storybook/addon-controls': 8.0.5(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/addon-docs': 8.0.5 - '@storybook/addon-highlight': 8.0.5 - '@storybook/addon-measure': 8.0.5 - '@storybook/addon-outline': 8.0.5 - '@storybook/addon-toolbars': 8.0.5 - '@storybook/addon-viewport': 8.0.5 - '@storybook/core-common': 8.0.5 - '@storybook/manager-api': 8.0.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/node-logger': 8.0.5 - '@storybook/preview-api': 8.0.5 + '@storybook/addon-essentials@8.0.8(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + dependencies: + '@storybook/addon-actions': 8.0.8 + '@storybook/addon-backgrounds': 8.0.8 + '@storybook/addon-controls': 8.0.8(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/addon-docs': 8.0.8 + '@storybook/addon-highlight': 8.0.8 + '@storybook/addon-measure': 8.0.8 + '@storybook/addon-outline': 8.0.8 + '@storybook/addon-toolbars': 8.0.8 + '@storybook/addon-viewport': 8.0.8 + '@storybook/core-common': 8.0.8 + '@storybook/manager-api': 8.0.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/node-logger': 8.0.8 + '@storybook/preview-api': 8.0.8 ts-dedent: 2.2.0 transitivePeerDependencies: - '@types/react' @@ -14447,16 +14378,16 @@ snapshots: - react-dom - supports-color - '@storybook/addon-highlight@8.0.5': + '@storybook/addon-highlight@8.0.8': dependencies: '@storybook/global': 5.0.0 - '@storybook/addon-interactions@8.0.5(vitest@1.5.0(@types/node@20.11.17)(jsdom@24.0.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(terser@5.30.2))': + '@storybook/addon-interactions@8.0.8(vitest@1.5.0(@types/node@20.12.7)(jsdom@24.0.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(terser@5.30.3))': dependencies: '@storybook/global': 5.0.0 - '@storybook/instrumenter': 8.0.5 - '@storybook/test': 8.0.5(vitest@1.5.0(@types/node@20.11.17)(jsdom@24.0.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(terser@5.30.2)) - '@storybook/types': 8.0.5 + '@storybook/instrumenter': 8.0.8 + '@storybook/test': 8.0.8(vitest@1.5.0(@types/node@20.12.7)(jsdom@24.0.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(terser@5.30.3)) + '@storybook/types': 8.0.8 polished: 4.3.1 ts-dedent: 2.2.0 transitivePeerDependencies: @@ -14466,46 +14397,46 @@ snapshots: - jest - vitest - '@storybook/addon-links@8.0.5(react@18.2.0)': + '@storybook/addon-links@8.0.8(react@18.2.0)': dependencies: - '@storybook/csf': 0.1.3 + '@storybook/csf': 0.1.4 '@storybook/global': 5.0.0 ts-dedent: 2.2.0 optionalDependencies: react: 18.2.0 - '@storybook/addon-measure@8.0.5': + '@storybook/addon-measure@8.0.8': dependencies: '@storybook/global': 5.0.0 tiny-invariant: 1.3.3 - '@storybook/addon-onboarding@8.0.5': {} + '@storybook/addon-onboarding@8.0.8': {} - '@storybook/addon-outline@8.0.5': + '@storybook/addon-outline@8.0.8': dependencies: '@storybook/global': 5.0.0 ts-dedent: 2.2.0 - '@storybook/addon-toolbars@8.0.5': {} + '@storybook/addon-toolbars@8.0.8': {} - '@storybook/addon-viewport@8.0.5': + '@storybook/addon-viewport@8.0.8': dependencies: memoizerific: 1.11.3 - '@storybook/blocks@8.0.5(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@storybook/blocks@8.0.8(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@storybook/channels': 8.0.5 - '@storybook/client-logger': 8.0.5 - '@storybook/components': 8.0.5(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/core-events': 8.0.5 - '@storybook/csf': 0.1.3 - '@storybook/docs-tools': 8.0.5 + '@storybook/channels': 8.0.8 + '@storybook/client-logger': 8.0.8 + '@storybook/components': 8.0.8(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/core-events': 8.0.8 + '@storybook/csf': 0.1.4 + '@storybook/docs-tools': 8.0.8 '@storybook/global': 5.0.0 '@storybook/icons': 1.2.9(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/manager-api': 8.0.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/preview-api': 8.0.5 - '@storybook/theming': 8.0.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/types': 8.0.5 + '@storybook/manager-api': 8.0.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/preview-api': 8.0.8 + '@storybook/theming': 8.0.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/types': 8.0.8 '@types/lodash': 4.17.0 color-convert: 2.0.1 dequal: 2.0.3 @@ -14526,16 +14457,16 @@ snapshots: - encoding - supports-color - '@storybook/builder-manager@8.0.5': + '@storybook/builder-manager@8.0.8': dependencies: '@fal-works/esbuild-plugin-global-externals': 2.1.2 - '@storybook/core-common': 8.0.5 - '@storybook/manager': 8.0.5 - '@storybook/node-logger': 8.0.5 + '@storybook/core-common': 8.0.8 + '@storybook/manager': 8.0.8 + '@storybook/node-logger': 8.0.8 '@types/ejs': 3.1.5 '@yarnpkg/esbuild-plugin-pnp': 3.0.0-rc.15(esbuild@0.20.2) browser-assert: 1.2.1 - ejs: 3.1.9 + ejs: 3.1.10 esbuild: 0.20.2 esbuild-plugin-alias: 0.2.1 express: 4.19.2 @@ -14546,55 +14477,55 @@ snapshots: - encoding - supports-color - '@storybook/builder-vite@8.0.5(typescript@5.3.3)(vite@5.2.8(@types/node@20.11.17)(terser@5.30.2))': - dependencies: - '@storybook/channels': 8.0.5 - '@storybook/client-logger': 8.0.5 - '@storybook/core-common': 8.0.5 - '@storybook/core-events': 8.0.5 - '@storybook/csf-plugin': 8.0.5 - '@storybook/node-logger': 8.0.5 - '@storybook/preview': 8.0.5 - '@storybook/preview-api': 8.0.5 - '@storybook/types': 8.0.5 + '@storybook/builder-vite@8.0.8(typescript@5.4.5)(vite@5.2.9(@types/node@20.12.7)(terser@5.30.3))': + dependencies: + '@storybook/channels': 8.0.8 + '@storybook/client-logger': 8.0.8 + '@storybook/core-common': 8.0.8 + '@storybook/core-events': 8.0.8 + '@storybook/csf-plugin': 8.0.8 + '@storybook/node-logger': 8.0.8 + '@storybook/preview': 8.0.8 + '@storybook/preview-api': 8.0.8 + '@storybook/types': 8.0.8 '@types/find-cache-dir': 3.2.1 browser-assert: 1.2.1 es-module-lexer: 0.9.3 express: 4.19.2 find-cache-dir: 3.3.2 fs-extra: 11.2.0 - magic-string: 0.30.7 + magic-string: 0.30.10 ts-dedent: 2.2.0 - vite: 5.2.8(@types/node@20.11.17)(terser@5.30.2) + vite: 5.2.9(@types/node@20.12.7)(terser@5.30.3) optionalDependencies: - typescript: 5.3.3 + typescript: 5.4.5 transitivePeerDependencies: - encoding - supports-color - '@storybook/builder-webpack5@8.0.5(esbuild@0.20.2)(typescript@5.3.3)': - dependencies: - '@storybook/channels': 8.0.5 - '@storybook/client-logger': 8.0.5 - '@storybook/core-common': 8.0.5 - '@storybook/core-events': 8.0.5 - '@storybook/core-webpack': 8.0.5 - '@storybook/node-logger': 8.0.5 - '@storybook/preview': 8.0.5 - '@storybook/preview-api': 8.0.5 - '@types/node': 18.15.13 - '@types/semver': 7.5.6 + '@storybook/builder-webpack5@8.0.8(esbuild@0.20.2)(typescript@5.4.5)': + dependencies: + '@storybook/channels': 8.0.8 + '@storybook/client-logger': 8.0.8 + '@storybook/core-common': 8.0.8 + '@storybook/core-events': 8.0.8 + '@storybook/core-webpack': 8.0.8 + '@storybook/node-logger': 8.0.8 + '@storybook/preview': 8.0.8 + '@storybook/preview-api': 8.0.8 + '@types/node': 18.19.31 + '@types/semver': 7.5.8 browser-assert: 1.2.1 case-sensitive-paths-webpack-plugin: 2.4.0 cjs-module-lexer: 1.2.3 constants-browserify: 1.0.0 - css-loader: 6.10.0(webpack@5.91.0(esbuild@0.20.2)) + css-loader: 6.11.0(webpack@5.91.0(esbuild@0.20.2)) es-module-lexer: 1.5.0 express: 4.19.2 - fork-ts-checker-webpack-plugin: 8.0.0(typescript@5.3.3)(webpack@5.91.0(esbuild@0.20.2)) + fork-ts-checker-webpack-plugin: 8.0.0(typescript@5.4.5)(webpack@5.91.0(esbuild@0.20.2)) fs-extra: 11.2.0 html-webpack-plugin: 5.6.0(webpack@5.91.0(esbuild@0.20.2)) - magic-string: 0.30.7 + magic-string: 0.30.10 path-browserify: 1.0.1 process: 0.11.10 semver: 7.6.0 @@ -14609,7 +14540,7 @@ snapshots: webpack-hot-middleware: 2.26.1 webpack-virtual-modules: 0.5.0 optionalDependencies: - typescript: 5.3.3 + typescript: 5.4.5 transitivePeerDependencies: - '@rspack/core' - '@swc/core' @@ -14619,42 +14550,42 @@ snapshots: - uglify-js - webpack-cli - '@storybook/channels@8.0.5': + '@storybook/channels@8.0.8': dependencies: - '@storybook/client-logger': 8.0.5 - '@storybook/core-events': 8.0.5 + '@storybook/client-logger': 8.0.8 + '@storybook/core-events': 8.0.8 '@storybook/global': 5.0.0 telejson: 7.2.0 tiny-invariant: 1.3.3 - '@storybook/cli@8.0.5(@babel/preset-env@7.24.3(@babel/core@7.24.3))(bufferutil@4.0.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(utf-8-validate@5.0.10)': + '@storybook/cli@8.0.8(@babel/preset-env@7.24.4(@babel/core@7.24.4))(bufferutil@4.0.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(utf-8-validate@5.0.10)': dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/types': 7.24.0 '@ndelangen/get-tarball': 3.0.9 - '@storybook/codemod': 8.0.5 - '@storybook/core-common': 8.0.5 - '@storybook/core-events': 8.0.5 - '@storybook/core-server': 8.0.5(bufferutil@4.0.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(utf-8-validate@5.0.10) - '@storybook/csf-tools': 8.0.5 - '@storybook/node-logger': 8.0.5 - '@storybook/telemetry': 8.0.5 - '@storybook/types': 8.0.5 - '@types/semver': 7.5.6 + '@storybook/codemod': 8.0.8 + '@storybook/core-common': 8.0.8 + '@storybook/core-events': 8.0.8 + '@storybook/core-server': 8.0.8(bufferutil@4.0.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(utf-8-validate@5.0.10) + '@storybook/csf-tools': 8.0.8 + '@storybook/node-logger': 8.0.8 + '@storybook/telemetry': 8.0.8 + '@storybook/types': 8.0.8 + '@types/semver': 7.5.8 '@yarnpkg/fslib': 2.10.3 '@yarnpkg/libzip': 2.3.0 chalk: 4.1.2 commander: 6.2.1 cross-spawn: 7.0.3 detect-indent: 6.1.0 - envinfo: 7.11.1 + envinfo: 7.12.0 execa: 5.1.1 find-up: 5.0.0 fs-extra: 11.2.0 get-npm-tarball-url: 2.1.0 giget: 1.2.3 globby: 11.1.0 - jscodeshift: 0.15.2(@babel/preset-env@7.24.3(@babel/core@7.24.3)) + jscodeshift: 0.15.2(@babel/preset-env@7.24.4(@babel/core@7.24.4)) leven: 3.1.0 ora: 5.4.1 prettier: 3.2.5 @@ -14674,23 +14605,23 @@ snapshots: - supports-color - utf-8-validate - '@storybook/client-logger@8.0.5': + '@storybook/client-logger@8.0.8': dependencies: '@storybook/global': 5.0.0 - '@storybook/codemod@8.0.5': + '@storybook/codemod@8.0.8': dependencies: - '@babel/core': 7.24.3 - '@babel/preset-env': 7.24.3(@babel/core@7.24.3) + '@babel/core': 7.24.4 + '@babel/preset-env': 7.24.4(@babel/core@7.24.4) '@babel/types': 7.24.0 - '@storybook/csf': 0.1.3 - '@storybook/csf-tools': 8.0.5 - '@storybook/node-logger': 8.0.5 - '@storybook/types': 8.0.5 + '@storybook/csf': 0.1.4 + '@storybook/csf-tools': 8.0.8 + '@storybook/node-logger': 8.0.8 + '@storybook/types': 8.0.8 '@types/cross-spawn': 6.0.6 cross-spawn: 7.0.3 globby: 11.1.0 - jscodeshift: 0.15.2(@babel/preset-env@7.24.3(@babel/core@7.24.3)) + jscodeshift: 0.15.2(@babel/preset-env@7.24.4(@babel/core@7.24.4)) lodash: 4.17.21 prettier: 3.2.5 recast: 0.23.6 @@ -14698,15 +14629,15 @@ snapshots: transitivePeerDependencies: - supports-color - '@storybook/components@8.0.5(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@storybook/components@8.0.8(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@radix-ui/react-slot': 1.0.2(@types/react@18.2.55)(react@18.2.0) - '@storybook/client-logger': 8.0.5 - '@storybook/csf': 0.1.3 + '@radix-ui/react-slot': 1.0.2(@types/react@18.2.79)(react@18.2.0) + '@storybook/client-logger': 8.0.8 + '@storybook/csf': 0.1.4 '@storybook/global': 5.0.0 '@storybook/icons': 1.2.9(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/theming': 8.0.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/types': 8.0.5 + '@storybook/theming': 8.0.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/types': 8.0.8 memoizerific: 1.11.3 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) @@ -14714,12 +14645,12 @@ snapshots: transitivePeerDependencies: - '@types/react' - '@storybook/core-common@8.0.5': + '@storybook/core-common@8.0.8': dependencies: - '@storybook/core-events': 8.0.5 - '@storybook/csf-tools': 8.0.5 - '@storybook/node-logger': 8.0.5 - '@storybook/types': 8.0.5 + '@storybook/core-events': 8.0.8 + '@storybook/csf-tools': 8.0.8 + '@storybook/node-logger': 8.0.8 + '@storybook/types': 8.0.8 '@yarnpkg/fslib': 2.10.3 '@yarnpkg/libzip': 2.3.0 chalk: 4.1.2 @@ -14731,7 +14662,7 @@ snapshots: find-cache-dir: 3.3.2 find-up: 5.0.0 fs-extra: 11.2.0 - glob: 10.3.10 + glob: 10.3.12 handlebars: 4.7.8 lazy-universal-dotenv: 4.0.0 node-fetch: 2.7.0 @@ -14748,33 +14679,33 @@ snapshots: - encoding - supports-color - '@storybook/core-events@8.0.5': + '@storybook/core-events@8.0.8': dependencies: ts-dedent: 2.2.0 - '@storybook/core-server@8.0.5(bufferutil@4.0.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(utf-8-validate@5.0.10)': + '@storybook/core-server@8.0.8(bufferutil@4.0.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(utf-8-validate@5.0.10)': dependencies: '@aw-web-design/x-default-browser': 1.4.126 - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@discoveryjs/json-ext': 0.5.7 - '@storybook/builder-manager': 8.0.5 - '@storybook/channels': 8.0.5 - '@storybook/core-common': 8.0.5 - '@storybook/core-events': 8.0.5 - '@storybook/csf': 0.1.3 - '@storybook/csf-tools': 8.0.5 + '@storybook/builder-manager': 8.0.8 + '@storybook/channels': 8.0.8 + '@storybook/core-common': 8.0.8 + '@storybook/core-events': 8.0.8 + '@storybook/csf': 0.1.4 + '@storybook/csf-tools': 8.0.8 '@storybook/docs-mdx': 3.0.0 '@storybook/global': 5.0.0 - '@storybook/manager': 8.0.5 - '@storybook/manager-api': 8.0.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/node-logger': 8.0.5 - '@storybook/preview-api': 8.0.5 - '@storybook/telemetry': 8.0.5 - '@storybook/types': 8.0.5 + '@storybook/manager': 8.0.8 + '@storybook/manager-api': 8.0.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/node-logger': 8.0.8 + '@storybook/preview-api': 8.0.8 + '@storybook/telemetry': 8.0.8 + '@storybook/types': 8.0.8 '@types/detect-port': 1.3.5 - '@types/node': 18.15.13 + '@types/node': 18.19.31 '@types/pretty-hrtime': 1.0.3 - '@types/semver': 7.5.6 + '@types/semver': 7.5.8 better-opn: 3.0.2 chalk: 4.1.2 cli-table3: 0.6.4 @@ -14805,32 +14736,32 @@ snapshots: - supports-color - utf-8-validate - '@storybook/core-webpack@8.0.5': + '@storybook/core-webpack@8.0.8': dependencies: - '@storybook/core-common': 8.0.5 - '@storybook/node-logger': 8.0.5 - '@storybook/types': 8.0.5 - '@types/node': 18.15.13 + '@storybook/core-common': 8.0.8 + '@storybook/node-logger': 8.0.8 + '@storybook/types': 8.0.8 + '@types/node': 18.19.31 ts-dedent: 2.2.0 transitivePeerDependencies: - encoding - supports-color - '@storybook/csf-plugin@8.0.5': + '@storybook/csf-plugin@8.0.8': dependencies: - '@storybook/csf-tools': 8.0.5 + '@storybook/csf-tools': 8.0.8 unplugin: 1.10.1 transitivePeerDependencies: - supports-color - '@storybook/csf-tools@8.0.5': + '@storybook/csf-tools@8.0.8': dependencies: - '@babel/generator': 7.24.1 - '@babel/parser': 7.24.1 + '@babel/generator': 7.24.4 + '@babel/parser': 7.24.4 '@babel/traverse': 7.24.1 '@babel/types': 7.24.0 - '@storybook/csf': 0.1.3 - '@storybook/types': 8.0.5 + '@storybook/csf': 0.1.4 + '@storybook/types': 8.0.8 fs-extra: 11.2.0 recast: 0.23.6 ts-dedent: 2.2.0 @@ -14841,17 +14772,17 @@ snapshots: dependencies: lodash: 4.17.21 - '@storybook/csf@0.1.3': + '@storybook/csf@0.1.4': dependencies: type-fest: 2.19.0 '@storybook/docs-mdx@3.0.0': {} - '@storybook/docs-tools@8.0.5': + '@storybook/docs-tools@8.0.8': dependencies: - '@storybook/core-common': 8.0.5 - '@storybook/preview-api': 8.0.5 - '@storybook/types': 8.0.5 + '@storybook/core-common': 8.0.8 + '@storybook/preview-api': 8.0.8 + '@storybook/types': 8.0.8 '@types/doctrine': 0.0.3 assert: 2.1.0 doctrine: 3.0.0 @@ -14867,27 +14798,27 @@ snapshots: react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - '@storybook/instrumenter@8.0.5': + '@storybook/instrumenter@8.0.8': dependencies: - '@storybook/channels': 8.0.5 - '@storybook/client-logger': 8.0.5 - '@storybook/core-events': 8.0.5 + '@storybook/channels': 8.0.8 + '@storybook/client-logger': 8.0.8 + '@storybook/core-events': 8.0.8 '@storybook/global': 5.0.0 - '@storybook/preview-api': 8.0.5 - '@vitest/utils': 1.4.0 + '@storybook/preview-api': 8.0.8 + '@vitest/utils': 1.5.0 util: 0.12.5 - '@storybook/manager-api@8.0.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@storybook/manager-api@8.0.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@storybook/channels': 8.0.5 - '@storybook/client-logger': 8.0.5 - '@storybook/core-events': 8.0.5 - '@storybook/csf': 0.1.3 + '@storybook/channels': 8.0.8 + '@storybook/client-logger': 8.0.8 + '@storybook/core-events': 8.0.8 + '@storybook/csf': 0.1.4 '@storybook/global': 5.0.0 '@storybook/icons': 1.2.9(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/router': 8.0.5 - '@storybook/theming': 8.0.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/types': 8.0.5 + '@storybook/router': 8.0.8 + '@storybook/theming': 8.0.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/types': 8.0.8 dequal: 2.0.3 lodash: 4.17.21 memoizerific: 1.11.3 @@ -14898,46 +14829,46 @@ snapshots: - react - react-dom - '@storybook/manager@8.0.5': {} - - '@storybook/nextjs@8.0.5(esbuild@0.20.2)(next@14.1.0(@babel/core@7.24.3)(@opentelemetry/api@1.8.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(type-fest@2.19.0)(typescript@5.3.3)(webpack-hot-middleware@2.26.1)(webpack@5.91.0(esbuild@0.20.2))': - dependencies: - '@babel/core': 7.24.3 - '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.24.3) - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.3) - '@babel/plugin-syntax-import-assertions': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-class-properties': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-export-namespace-from': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-numeric-separator': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-object-rest-spread': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-runtime': 7.24.3(@babel/core@7.24.3) - '@babel/preset-env': 7.24.3(@babel/core@7.24.3) - '@babel/preset-react': 7.24.1(@babel/core@7.24.3) - '@babel/preset-typescript': 7.24.1(@babel/core@7.24.3) - '@babel/runtime': 7.23.9 + '@storybook/manager@8.0.8': {} + + '@storybook/nextjs@8.0.8(esbuild@0.20.2)(next@14.2.1(@babel/core@7.24.4)(@opentelemetry/api@1.8.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(type-fest@2.19.0)(typescript@5.4.5)(webpack-hot-middleware@2.26.1)(webpack@5.91.0(esbuild@0.20.2))': + dependencies: + '@babel/core': 7.24.4 + '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.24.4) + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.4) + '@babel/plugin-syntax-import-assertions': 7.24.1(@babel/core@7.24.4) + '@babel/plugin-transform-class-properties': 7.24.1(@babel/core@7.24.4) + '@babel/plugin-transform-export-namespace-from': 7.24.1(@babel/core@7.24.4) + '@babel/plugin-transform-numeric-separator': 7.24.1(@babel/core@7.24.4) + '@babel/plugin-transform-object-rest-spread': 7.24.1(@babel/core@7.24.4) + '@babel/plugin-transform-runtime': 7.24.3(@babel/core@7.24.4) + '@babel/preset-env': 7.24.4(@babel/core@7.24.4) + '@babel/preset-react': 7.24.1(@babel/core@7.24.4) + '@babel/preset-typescript': 7.24.1(@babel/core@7.24.4) + '@babel/runtime': 7.24.4 '@pmmmwh/react-refresh-webpack-plugin': 0.5.11(react-refresh@0.14.0)(type-fest@2.19.0)(webpack-hot-middleware@2.26.1)(webpack@5.91.0(esbuild@0.20.2)) - '@storybook/addon-actions': 8.0.5 - '@storybook/builder-webpack5': 8.0.5(esbuild@0.20.2)(typescript@5.3.3) - '@storybook/core-common': 8.0.5 - '@storybook/core-events': 8.0.5 - '@storybook/node-logger': 8.0.5 - '@storybook/preset-react-webpack': 8.0.5(esbuild@0.20.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.3.3) - '@storybook/preview-api': 8.0.5 - '@storybook/react': 8.0.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.3.3) - '@storybook/types': 8.0.5 - '@types/node': 18.15.13 - '@types/semver': 7.5.6 - babel-loader: 9.1.3(@babel/core@7.24.3)(webpack@5.91.0(esbuild@0.20.2)) - css-loader: 6.10.0(webpack@5.91.0(esbuild@0.20.2)) + '@storybook/addon-actions': 8.0.8 + '@storybook/builder-webpack5': 8.0.8(esbuild@0.20.2)(typescript@5.4.5) + '@storybook/core-common': 8.0.8 + '@storybook/core-events': 8.0.8 + '@storybook/node-logger': 8.0.8 + '@storybook/preset-react-webpack': 8.0.8(esbuild@0.20.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.5) + '@storybook/preview-api': 8.0.8 + '@storybook/react': 8.0.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.5) + '@storybook/types': 8.0.8 + '@types/node': 18.19.31 + '@types/semver': 7.5.8 + babel-loader: 9.1.3(@babel/core@7.24.4)(webpack@5.91.0(esbuild@0.20.2)) + css-loader: 6.11.0(webpack@5.91.0(esbuild@0.20.2)) find-up: 5.0.0 fs-extra: 11.2.0 image-size: 1.1.1 loader-utils: 3.2.1 - next: 14.1.0(@babel/core@7.24.3)(@opentelemetry/api@1.8.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + next: 14.2.1(@babel/core@7.24.4)(@opentelemetry/api@1.8.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) node-polyfill-webpack-plugin: 2.0.1(webpack@5.91.0(esbuild@0.20.2)) - pnp-webpack-plugin: 1.7.0(typescript@5.3.3) - postcss: 8.4.35 - postcss-loader: 7.3.4(postcss@8.4.35)(typescript@5.3.3)(webpack@5.91.0(esbuild@0.20.2)) + pnp-webpack-plugin: 1.7.0(typescript@5.4.5) + postcss: 8.4.38 + postcss-loader: 7.3.4(postcss@8.4.38)(typescript@5.4.5)(webpack@5.91.0(esbuild@0.20.2)) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) react-refresh: 0.14.0 @@ -14946,12 +14877,12 @@ snapshots: semver: 7.6.0 sharp: 0.32.6 style-loader: 3.3.4(webpack@5.91.0(esbuild@0.20.2)) - styled-jsx: 5.1.1(@babel/core@7.24.3)(react@18.2.0) + styled-jsx: 5.1.1(@babel/core@7.24.4)(react@18.2.0) ts-dedent: 2.2.0 tsconfig-paths: 4.2.0 tsconfig-paths-webpack-plugin: 4.1.0 optionalDependencies: - typescript: 5.3.3 + typescript: 5.4.5 webpack: 5.91.0(esbuild@0.20.2) transitivePeerDependencies: - '@rspack/core' @@ -14973,20 +14904,20 @@ snapshots: - webpack-hot-middleware - webpack-plugin-serve - '@storybook/node-logger@8.0.5': {} + '@storybook/node-logger@8.0.8': {} - '@storybook/preset-react-webpack@8.0.5(esbuild@0.20.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.3.3)': + '@storybook/preset-react-webpack@8.0.8(esbuild@0.20.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.5)': dependencies: - '@storybook/core-webpack': 8.0.5 - '@storybook/docs-tools': 8.0.5 - '@storybook/node-logger': 8.0.5 - '@storybook/react': 8.0.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.3.3) - '@storybook/react-docgen-typescript-plugin': 1.0.6--canary.9.0c3f3b7.0(typescript@5.3.3)(webpack@5.91.0(esbuild@0.20.2)) - '@types/node': 18.15.13 - '@types/semver': 7.5.6 + '@storybook/core-webpack': 8.0.8 + '@storybook/docs-tools': 8.0.8 + '@storybook/node-logger': 8.0.8 + '@storybook/react': 8.0.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.5) + '@storybook/react-docgen-typescript-plugin': 1.0.6--canary.9.0c3f3b7.0(typescript@5.4.5)(webpack@5.91.0(esbuild@0.20.2)) + '@types/node': 18.19.31 + '@types/semver': 7.5.8 find-up: 5.0.0 fs-extra: 11.2.0 - magic-string: 0.30.7 + magic-string: 0.30.10 react: 18.2.0 react-docgen: 7.0.3 react-dom: 18.2.0(react@18.2.0) @@ -14995,7 +14926,7 @@ snapshots: tsconfig-paths: 4.2.0 webpack: 5.91.0(esbuild@0.20.2) optionalDependencies: - typescript: 5.3.3 + typescript: 5.4.5 transitivePeerDependencies: - '@swc/core' - encoding @@ -15004,59 +14935,59 @@ snapshots: - uglify-js - webpack-cli - '@storybook/preview-api@8.0.5': + '@storybook/preview-api@8.0.8': dependencies: - '@storybook/channels': 8.0.5 - '@storybook/client-logger': 8.0.5 - '@storybook/core-events': 8.0.5 - '@storybook/csf': 0.1.3 + '@storybook/channels': 8.0.8 + '@storybook/client-logger': 8.0.8 + '@storybook/core-events': 8.0.8 + '@storybook/csf': 0.1.4 '@storybook/global': 5.0.0 - '@storybook/types': 8.0.5 - '@types/qs': 6.9.14 + '@storybook/types': 8.0.8 + '@types/qs': 6.9.15 dequal: 2.0.3 lodash: 4.17.21 memoizerific: 1.11.3 - qs: 6.11.2 + qs: 6.12.1 tiny-invariant: 1.3.3 ts-dedent: 2.2.0 util-deprecate: 1.0.2 - '@storybook/preview@8.0.5': {} + '@storybook/preview@8.0.8': {} - '@storybook/react-docgen-typescript-plugin@1.0.6--canary.9.0c3f3b7.0(typescript@5.3.3)(webpack@5.91.0(esbuild@0.20.2))': + '@storybook/react-docgen-typescript-plugin@1.0.6--canary.9.0c3f3b7.0(typescript@5.4.5)(webpack@5.91.0(esbuild@0.20.2))': dependencies: debug: 4.3.4 endent: 2.1.0 find-cache-dir: 3.3.2 flat-cache: 3.2.0 micromatch: 4.0.5 - react-docgen-typescript: 2.2.2(typescript@5.3.3) + react-docgen-typescript: 2.2.2(typescript@5.4.5) tslib: 2.6.2 - typescript: 5.3.3 + typescript: 5.4.5 webpack: 5.91.0(esbuild@0.20.2) transitivePeerDependencies: - supports-color - '@storybook/react-dom-shim@8.0.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@storybook/react-dom-shim@8.0.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - '@storybook/react-vite@8.0.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(rollup@4.14.3)(typescript@5.3.3)(vite@5.2.8(@types/node@20.11.17)(terser@5.30.2))': + '@storybook/react-vite@8.0.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(rollup@4.14.3)(typescript@5.4.5)(vite@5.2.9(@types/node@20.12.7)(terser@5.30.3))': dependencies: - '@joshwooding/vite-plugin-react-docgen-typescript': 0.3.0(typescript@5.3.3)(vite@5.2.8(@types/node@20.11.17)(terser@5.30.2)) + '@joshwooding/vite-plugin-react-docgen-typescript': 0.3.0(typescript@5.4.5)(vite@5.2.9(@types/node@20.12.7)(terser@5.30.3)) '@rollup/pluginutils': 5.1.0(rollup@4.14.3) - '@storybook/builder-vite': 8.0.5(typescript@5.3.3)(vite@5.2.8(@types/node@20.11.17)(terser@5.30.2)) - '@storybook/node-logger': 8.0.5 - '@storybook/react': 8.0.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.3.3) + '@storybook/builder-vite': 8.0.8(typescript@5.4.5)(vite@5.2.9(@types/node@20.12.7)(terser@5.30.3)) + '@storybook/node-logger': 8.0.8 + '@storybook/react': 8.0.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.5) find-up: 5.0.0 - magic-string: 0.30.7 + magic-string: 0.30.10 react: 18.2.0 react-docgen: 7.0.3 react-dom: 18.2.0(react@18.2.0) resolve: 1.22.8 tsconfig-paths: 4.2.0 - vite: 5.2.8(@types/node@20.11.17)(terser@5.30.2) + vite: 5.2.9(@types/node@20.12.7)(terser@5.30.3) transitivePeerDependencies: - '@preact/preset-vite' - encoding @@ -15065,17 +14996,17 @@ snapshots: - typescript - vite-plugin-glimmerx - '@storybook/react@8.0.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.3.3)': + '@storybook/react@8.0.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.5)': dependencies: - '@storybook/client-logger': 8.0.5 - '@storybook/docs-tools': 8.0.5 + '@storybook/client-logger': 8.0.8 + '@storybook/docs-tools': 8.0.8 '@storybook/global': 5.0.0 - '@storybook/preview-api': 8.0.5 - '@storybook/react-dom-shim': 8.0.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/types': 8.0.5 + '@storybook/preview-api': 8.0.8 + '@storybook/react-dom-shim': 8.0.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/types': 8.0.8 '@types/escodegen': 0.0.6 '@types/estree': 0.0.51 - '@types/node': 18.15.13 + '@types/node': 18.19.31 acorn: 7.4.1 acorn-jsx: 5.3.2(acorn@7.4.1) acorn-walk: 7.2.0 @@ -15091,22 +15022,22 @@ snapshots: type-fest: 2.19.0 util-deprecate: 1.0.2 optionalDependencies: - typescript: 5.3.3 + typescript: 5.4.5 transitivePeerDependencies: - encoding - supports-color - '@storybook/router@8.0.5': + '@storybook/router@8.0.8': dependencies: - '@storybook/client-logger': 8.0.5 + '@storybook/client-logger': 8.0.8 memoizerific: 1.11.3 - qs: 6.11.2 + qs: 6.12.1 - '@storybook/telemetry@8.0.5': + '@storybook/telemetry@8.0.8': dependencies: - '@storybook/client-logger': 8.0.5 - '@storybook/core-common': 8.0.5 - '@storybook/csf-tools': 8.0.5 + '@storybook/client-logger': 8.0.8 + '@storybook/core-common': 8.0.8 + '@storybook/csf-tools': 8.0.8 chalk: 4.1.2 detect-package-manager: 2.0.1 fetch-retry: 5.0.6 @@ -15116,17 +15047,17 @@ snapshots: - encoding - supports-color - '@storybook/test@8.0.5(vitest@1.5.0(@types/node@20.11.17)(jsdom@24.0.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(terser@5.30.2))': + '@storybook/test@8.0.8(vitest@1.5.0(@types/node@20.12.7)(jsdom@24.0.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(terser@5.30.3))': dependencies: - '@storybook/client-logger': 8.0.5 - '@storybook/core-events': 8.0.5 - '@storybook/instrumenter': 8.0.5 - '@storybook/preview-api': 8.0.5 + '@storybook/client-logger': 8.0.8 + '@storybook/core-events': 8.0.8 + '@storybook/instrumenter': 8.0.8 + '@storybook/preview-api': 8.0.8 '@testing-library/dom': 9.3.4 - '@testing-library/jest-dom': 6.4.2(vitest@1.5.0(@types/node@20.11.17)(jsdom@24.0.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(terser@5.30.2)) + '@testing-library/jest-dom': 6.4.2(vitest@1.5.0(@types/node@20.12.7)(jsdom@24.0.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(terser@5.30.3)) '@testing-library/user-event': 14.5.2(@testing-library/dom@9.3.4) '@vitest/expect': 1.3.1 - '@vitest/spy': 1.4.0 + '@vitest/spy': 1.5.0 chai: 4.4.1 util: 0.12.5 transitivePeerDependencies: @@ -15136,68 +15067,68 @@ snapshots: - jest - vitest - '@storybook/theming@8.0.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@storybook/theming@8.0.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: '@emotion/use-insertion-effect-with-fallbacks': 1.0.1(react@18.2.0) - '@storybook/client-logger': 8.0.5 + '@storybook/client-logger': 8.0.8 '@storybook/global': 5.0.0 memoizerific: 1.11.3 optionalDependencies: react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - '@storybook/types@8.0.5': + '@storybook/types@8.0.8': dependencies: - '@storybook/channels': 8.0.5 + '@storybook/channels': 8.0.8 '@types/express': 4.17.21 file-system-cache: 2.3.0 - '@swc/core-darwin-arm64@1.4.0': + '@swc/core-darwin-arm64@1.4.15': optional: true - '@swc/core-darwin-x64@1.4.0': + '@swc/core-darwin-x64@1.4.15': optional: true - '@swc/core-linux-arm-gnueabihf@1.4.0': + '@swc/core-linux-arm-gnueabihf@1.4.15': optional: true - '@swc/core-linux-arm64-gnu@1.4.0': + '@swc/core-linux-arm64-gnu@1.4.15': optional: true - '@swc/core-linux-arm64-musl@1.4.0': + '@swc/core-linux-arm64-musl@1.4.15': optional: true - '@swc/core-linux-x64-gnu@1.4.0': + '@swc/core-linux-x64-gnu@1.4.15': optional: true - '@swc/core-linux-x64-musl@1.4.0': + '@swc/core-linux-x64-musl@1.4.15': optional: true - '@swc/core-win32-arm64-msvc@1.4.0': + '@swc/core-win32-arm64-msvc@1.4.15': optional: true - '@swc/core-win32-ia32-msvc@1.4.0': + '@swc/core-win32-ia32-msvc@1.4.15': optional: true - '@swc/core-win32-x64-msvc@1.4.0': + '@swc/core-win32-x64-msvc@1.4.15': optional: true - '@swc/core@1.4.0(@swc/helpers@0.5.2)': + '@swc/core@1.4.15(@swc/helpers@0.5.10)': dependencies: '@swc/counter': 0.1.3 - '@swc/types': 0.1.5 + '@swc/types': 0.1.6 optionalDependencies: - '@swc/core-darwin-arm64': 1.4.0 - '@swc/core-darwin-x64': 1.4.0 - '@swc/core-linux-arm-gnueabihf': 1.4.0 - '@swc/core-linux-arm64-gnu': 1.4.0 - '@swc/core-linux-arm64-musl': 1.4.0 - '@swc/core-linux-x64-gnu': 1.4.0 - '@swc/core-linux-x64-musl': 1.4.0 - '@swc/core-win32-arm64-msvc': 1.4.0 - '@swc/core-win32-ia32-msvc': 1.4.0 - '@swc/core-win32-x64-msvc': 1.4.0 - '@swc/helpers': 0.5.2 + '@swc/core-darwin-arm64': 1.4.15 + '@swc/core-darwin-x64': 1.4.15 + '@swc/core-linux-arm-gnueabihf': 1.4.15 + '@swc/core-linux-arm64-gnu': 1.4.15 + '@swc/core-linux-arm64-musl': 1.4.15 + '@swc/core-linux-x64-gnu': 1.4.15 + '@swc/core-linux-x64-musl': 1.4.15 + '@swc/core-win32-arm64-msvc': 1.4.15 + '@swc/core-win32-ia32-msvc': 1.4.15 + '@swc/core-win32-x64-msvc': 1.4.15 + '@swc/helpers': 0.5.10 '@swc/counter@0.1.3': {} @@ -15210,31 +15141,36 @@ snapshots: legacy-swc-helpers: '@swc/helpers@0.4.14' tslib: 2.6.2 - '@swc/helpers@0.5.2': + '@swc/helpers@0.5.10': dependencies: tslib: 2.6.2 - '@swc/types@0.1.5': {} + '@swc/helpers@0.5.5': + dependencies: + '@swc/counter': 0.1.3 + tslib: 2.6.2 - '@tanstack/query-core@4.13.4': {} + '@swc/types@0.1.6': + dependencies: + '@swc/counter': 0.1.3 - '@tanstack/query-core@5.18.1': {} + '@tanstack/query-core@4.36.1': {} - '@tanstack/react-query@4.13.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@tanstack/react-query@4.36.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@tanstack/query-core': 4.13.4 + '@tanstack/query-core': 4.36.1 react: 18.2.0 use-sync-external-store: 1.2.0(react@18.2.0) optionalDependencies: react-dom: 18.2.0(react@18.2.0) - '@tanstack/react-virtual@3.0.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@tanstack/react-virtual@3.3.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@tanstack/virtual-core': 3.0.0 + '@tanstack/virtual-core': 3.3.0 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - '@tanstack/virtual-core@3.0.0': {} + '@tanstack/virtual-core@3.3.0': {} '@terra-money/feather.js@1.2.1': dependencies: @@ -15255,17 +15191,17 @@ snapshots: long: 5.2.3 readable-stream: 3.6.2 secp256k1: 4.0.3 - tmp: 0.2.1 + tmp: 0.2.3 utf-8-validate: 5.0.10 ws: 7.5.9(bufferutil@4.0.8)(utf-8-validate@5.0.10) transitivePeerDependencies: - debug - '@terra-money/station-connector@1.0.16(@cosmjs/amino@0.32.3)(@terra-money/feather.js@1.2.1)(axios@1.6.7)': + '@terra-money/station-connector@1.1.0(@cosmjs/amino@0.32.3)(@terra-money/feather.js@1.2.1)(axios@1.6.8)': dependencies: '@cosmjs/amino': 0.32.3 '@terra-money/feather.js': 1.2.1 - axios: 1.6.7 + axios: 1.6.8 bech32: 2.0.0 '@terra-money/terra.js@3.1.10': @@ -15281,7 +15217,7 @@ snapshots: jscrypto: 1.0.3 readable-stream: 3.6.2 secp256k1: 4.0.3 - tmp: 0.2.1 + tmp: 0.2.3 utf-8-validate: 5.0.10 ws: 7.5.9(bufferutil@4.0.8)(utf-8-validate@5.0.10) transitivePeerDependencies: @@ -15315,7 +15251,7 @@ snapshots: '@testing-library/dom@9.3.4': dependencies: '@babel/code-frame': 7.24.2 - '@babel/runtime': 7.23.9 + '@babel/runtime': 7.24.4 '@types/aria-query': 5.0.4 aria-query: 5.1.3 chalk: 4.1.2 @@ -15323,10 +15259,10 @@ snapshots: lz-string: 1.5.0 pretty-format: 27.5.1 - '@testing-library/jest-dom@6.4.2(vitest@1.5.0(@types/node@20.11.17)(jsdom@24.0.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(terser@5.30.2))': + '@testing-library/jest-dom@6.4.2(vitest@1.5.0(@types/node@20.12.7)(jsdom@24.0.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(terser@5.30.3))': dependencies: '@adobe/css-tools': 4.3.3 - '@babel/runtime': 7.23.9 + '@babel/runtime': 7.24.4 aria-query: 5.3.0 chalk: 3.0.0 css.escape: 1.5.1 @@ -15334,13 +15270,13 @@ snapshots: lodash: 4.17.21 redent: 3.0.0 optionalDependencies: - vitest: 1.5.0(@types/node@20.11.17)(jsdom@24.0.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(terser@5.30.2) + vitest: 1.5.0(@types/node@20.12.7)(jsdom@24.0.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(terser@5.30.3) - '@testing-library/react@14.2.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@testing-library/react@14.3.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@babel/runtime': 7.23.9 + '@babel/runtime': 7.24.4 '@testing-library/dom': 9.3.4 - '@types/react-dom': 18.2.19 + '@types/react-dom': 18.2.25 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) @@ -15361,7 +15297,7 @@ snapshots: '@types/babel__core@7.20.5': dependencies: - '@babel/parser': 7.24.1 + '@babel/parser': 7.24.4 '@babel/types': 7.24.0 '@types/babel__generator': 7.6.8 '@types/babel__template': 7.4.4 @@ -15373,7 +15309,7 @@ snapshots: '@types/babel__template@7.4.4': dependencies: - '@babel/parser': 7.24.1 + '@babel/parser': 7.24.4 '@babel/types': 7.24.0 '@types/babel__traverse@7.20.5': @@ -15383,15 +15319,15 @@ snapshots: '@types/body-parser@1.19.5': dependencies: '@types/connect': 3.4.38 - '@types/node': 20.11.17 + '@types/node': 20.12.7 '@types/connect@3.4.38': dependencies: - '@types/node': 20.11.17 + '@types/node': 20.12.7 '@types/cross-spawn@6.0.6': dependencies: - '@types/node': 20.11.17 + '@types/node': 20.12.7 '@types/debug@4.1.12': dependencies: @@ -15411,10 +15347,10 @@ snapshots: '@types/eslint-scope@3.7.7': dependencies: - '@types/eslint': 8.56.7 + '@types/eslint': 8.56.9 '@types/estree': 1.0.5 - '@types/eslint@8.56.7': + '@types/eslint@8.56.9': dependencies: '@types/estree': 1.0.5 '@types/json-schema': 7.0.15 @@ -15423,18 +15359,18 @@ snapshots: '@types/estree@1.0.5': {} - '@types/express-serve-static-core@4.17.43': + '@types/express-serve-static-core@4.19.0': dependencies: - '@types/node': 20.11.17 - '@types/qs': 6.9.14 + '@types/node': 20.12.7 + '@types/qs': 6.9.15 '@types/range-parser': 1.2.7 '@types/send': 0.17.4 '@types/express@4.17.21': dependencies: '@types/body-parser': 1.19.5 - '@types/express-serve-static-core': 4.17.43 - '@types/qs': 6.9.14 + '@types/express-serve-static-core': 4.19.0 + '@types/qs': 6.9.15 '@types/serve-static': 1.15.7 '@types/find-cache-dir@3.2.1': {} @@ -15442,7 +15378,7 @@ snapshots: '@types/glob@7.2.0': dependencies: '@types/minimatch': 5.1.2 - '@types/node': 20.11.17 + '@types/node': 20.12.7 '@types/google-protobuf@3.15.12': {} @@ -15460,7 +15396,7 @@ snapshots: '@types/long@4.0.2': {} - '@types/mdx@2.0.12': {} + '@types/mdx@2.0.13': {} '@types/mime@1.3.5': {} @@ -15474,7 +15410,11 @@ snapshots: '@types/node@18.15.13': {} - '@types/node@20.11.17': + '@types/node@18.19.31': + dependencies: + undici-types: 5.26.5 + + '@types/node@20.12.7': dependencies: undici-types: 5.26.5 @@ -15484,41 +15424,38 @@ snapshots: '@types/pretty-hrtime@1.0.3': {} - '@types/prop-types@15.7.11': {} + '@types/prop-types@15.7.12': {} - '@types/qs@6.9.14': {} + '@types/qs@6.9.15': {} '@types/range-parser@1.2.7': {} '@types/react-copy-to-clipboard@5.0.7': dependencies: - '@types/react': 18.2.55 + '@types/react': 18.2.79 - '@types/react-dom@18.2.19': + '@types/react-dom@18.2.25': dependencies: - '@types/react': 18.2.55 + '@types/react': 18.2.79 - '@types/react@18.2.55': + '@types/react@18.2.79': dependencies: - '@types/prop-types': 15.7.11 - '@types/scheduler': 0.16.8 + '@types/prop-types': 15.7.12 csstype: 3.1.3 '@types/resolve@1.20.6': {} - '@types/scheduler@0.16.8': {} - - '@types/semver@7.5.6': {} + '@types/semver@7.5.8': {} '@types/send@0.17.4': dependencies: '@types/mime': 1.3.5 - '@types/node': 20.11.17 + '@types/node': 20.12.7 '@types/serve-static@1.15.7': dependencies: '@types/http-errors': 2.0.4 - '@types/node': 20.11.17 + '@types/node': 20.12.7 '@types/send': 0.17.4 '@types/shimmer@1.0.5': {} @@ -15529,36 +15466,36 @@ snapshots: '@types/ws@8.5.3': dependencies: - '@types/node': 20.11.17 + '@types/node': 20.12.7 - '@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0(eslint@8.56.0)(typescript@5.3.3))(eslint@8.56.0)(typescript@5.3.3)': + '@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0)(typescript@5.4.5)': dependencies: '@eslint-community/regexpp': 4.10.0 - '@typescript-eslint/parser': 5.62.0(eslint@8.56.0)(typescript@5.3.3) + '@typescript-eslint/parser': 5.62.0(eslint@8.57.0)(typescript@5.4.5) '@typescript-eslint/scope-manager': 5.62.0 - '@typescript-eslint/type-utils': 5.62.0(eslint@8.56.0)(typescript@5.3.3) - '@typescript-eslint/utils': 5.62.0(eslint@8.56.0)(typescript@5.3.3) + '@typescript-eslint/type-utils': 5.62.0(eslint@8.57.0)(typescript@5.4.5) + '@typescript-eslint/utils': 5.62.0(eslint@8.57.0)(typescript@5.4.5) debug: 4.3.4 - eslint: 8.56.0 + eslint: 8.57.0 graphemer: 1.4.0 ignore: 5.3.1 natural-compare-lite: 1.4.0 semver: 7.6.0 - tsutils: 3.21.0(typescript@5.3.3) + tsutils: 3.21.0(typescript@5.4.5) optionalDependencies: - typescript: 5.3.3 + typescript: 5.4.5 transitivePeerDependencies: - supports-color - '@typescript-eslint/parser@5.62.0(eslint@8.56.0)(typescript@5.3.3)': + '@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.4.5)': dependencies: '@typescript-eslint/scope-manager': 5.62.0 '@typescript-eslint/types': 5.62.0 - '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.3.3) + '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.4.5) debug: 4.3.4 - eslint: 8.56.0 + eslint: 8.57.0 optionalDependencies: - typescript: 5.3.3 + typescript: 5.4.5 transitivePeerDependencies: - supports-color @@ -15567,21 +15504,21 @@ snapshots: '@typescript-eslint/types': 5.62.0 '@typescript-eslint/visitor-keys': 5.62.0 - '@typescript-eslint/type-utils@5.62.0(eslint@8.56.0)(typescript@5.3.3)': + '@typescript-eslint/type-utils@5.62.0(eslint@8.57.0)(typescript@5.4.5)': dependencies: - '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.3.3) - '@typescript-eslint/utils': 5.62.0(eslint@8.56.0)(typescript@5.3.3) + '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.4.5) + '@typescript-eslint/utils': 5.62.0(eslint@8.57.0)(typescript@5.4.5) debug: 4.3.4 - eslint: 8.56.0 - tsutils: 3.21.0(typescript@5.3.3) + eslint: 8.57.0 + tsutils: 3.21.0(typescript@5.4.5) optionalDependencies: - typescript: 5.3.3 + typescript: 5.4.5 transitivePeerDependencies: - supports-color '@typescript-eslint/types@5.62.0': {} - '@typescript-eslint/typescript-estree@5.62.0(typescript@5.3.3)': + '@typescript-eslint/typescript-estree@5.62.0(typescript@5.4.5)': dependencies: '@typescript-eslint/types': 5.62.0 '@typescript-eslint/visitor-keys': 5.62.0 @@ -15589,21 +15526,21 @@ snapshots: globby: 11.1.0 is-glob: 4.0.3 semver: 7.6.0 - tsutils: 3.21.0(typescript@5.3.3) + tsutils: 3.21.0(typescript@5.4.5) optionalDependencies: - typescript: 5.3.3 + typescript: 5.4.5 transitivePeerDependencies: - supports-color - '@typescript-eslint/utils@5.62.0(eslint@8.56.0)(typescript@5.3.3)': + '@typescript-eslint/utils@5.62.0(eslint@8.57.0)(typescript@5.4.5)': dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@8.56.0) + '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0) '@types/json-schema': 7.0.15 - '@types/semver': 7.5.6 + '@types/semver': 7.5.8 '@typescript-eslint/scope-manager': 5.62.0 '@typescript-eslint/types': 5.62.0 - '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.3.3) - eslint: 8.56.0 + '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.4.5) + eslint: 8.57.0 eslint-scope: 5.1.1 semver: 7.6.0 transitivePeerDependencies: @@ -15628,10 +15565,10 @@ snapshots: '@ungap/structured-clone@1.2.0': {} - '@vanilla-extract/css@1.14.1': + '@vanilla-extract/css@1.14.2': dependencies: '@emotion/hash': 0.9.1 - '@vanilla-extract/private': 1.0.3 + '@vanilla-extract/private': 1.0.4 chalk: 4.1.2 css-what: 6.1.0 cssesc: 3.0.0 @@ -15644,18 +15581,18 @@ snapshots: '@vanilla-extract/dynamic@2.1.0': dependencies: - '@vanilla-extract/private': 1.0.3 + '@vanilla-extract/private': 1.0.4 - '@vanilla-extract/private@1.0.3': {} + '@vanilla-extract/private@1.0.4': {} - '@vanilla-extract/recipes@0.5.2(@vanilla-extract/css@1.14.1)': + '@vanilla-extract/recipes@0.5.2(@vanilla-extract/css@1.14.2)': dependencies: - '@vanilla-extract/css': 1.14.1 + '@vanilla-extract/css': 1.14.2 - '@vitejs/plugin-react-swc@3.6.0(@swc/helpers@0.5.2)(vite@5.2.8(@types/node@20.11.17)(terser@5.30.2))': + '@vitejs/plugin-react-swc@3.6.0(@swc/helpers@0.5.10)(vite@5.2.9(@types/node@20.12.7)(terser@5.30.3))': dependencies: - '@swc/core': 1.4.0(@swc/helpers@0.5.2) - vite: 5.2.8(@types/node@20.11.17)(terser@5.30.2) + '@swc/core': 1.4.15(@swc/helpers@0.5.10) + vite: 5.2.9(@types/node@20.12.7)(terser@5.30.3) transitivePeerDependencies: - '@swc/helpers' @@ -15679,7 +15616,7 @@ snapshots: '@vitest/snapshot@1.5.0': dependencies: - magic-string: 0.30.7 + magic-string: 0.30.10 pathe: 1.1.2 pretty-format: 29.7.0 @@ -15687,10 +15624,6 @@ snapshots: dependencies: tinyspy: 2.2.1 - '@vitest/spy@1.4.0': - dependencies: - tinyspy: 2.2.1 - '@vitest/spy@1.5.0': dependencies: tinyspy: 2.2.1 @@ -15702,13 +15635,6 @@ snapshots: loupe: 2.3.7 pretty-format: 29.7.0 - '@vitest/utils@1.4.0': - dependencies: - diff-sequences: 29.6.3 - estree-walker: 3.0.3 - loupe: 2.3.7 - pretty-format: 29.7.0 - '@vitest/utils@1.5.0': dependencies: diff-sequences: 29.6.3 @@ -15722,13 +15648,13 @@ snapshots: '@ethersproject/transactions': 5.7.0 '@stablelib/random': 1.0.2 '@stablelib/sha256': 1.0.1 - '@walletconnect/core': 2.11.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@walletconnect/core': 2.12.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@walletconnect/events': 1.0.1 '@walletconnect/heartbeat': 1.2.1 '@walletconnect/jsonrpc-utils': 1.0.8 - '@walletconnect/logger': 2.0.1 + '@walletconnect/logger': 2.1.2 '@walletconnect/time': 1.0.2 - '@walletconnect/utils': 2.11.1 + '@walletconnect/utils': 2.12.2 events: 3.3.0 isomorphic-unfetch: 3.1.0 transitivePeerDependencies: @@ -15746,10 +15672,11 @@ snapshots: - '@vercel/kv' - bufferutil - encoding - - supports-color + - ioredis + - uWebSockets.js - utf-8-validate - '@walletconnect/core@2.11.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@walletconnect/core@2.12.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: '@walletconnect/heartbeat': 1.2.1 '@walletconnect/jsonrpc-provider': 1.0.13 @@ -15757,13 +15684,13 @@ snapshots: '@walletconnect/jsonrpc-utils': 1.0.8 '@walletconnect/jsonrpc-ws-connection': 1.0.14(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@walletconnect/keyvaluestorage': 1.1.1 - '@walletconnect/logger': 2.0.1 + '@walletconnect/logger': 2.1.2 '@walletconnect/relay-api': 1.0.9 '@walletconnect/relay-auth': 1.0.4 '@walletconnect/safe-json': 1.0.2 '@walletconnect/time': 1.0.2 - '@walletconnect/types': 2.11.1 - '@walletconnect/utils': 2.11.1 + '@walletconnect/types': 2.12.2 + '@walletconnect/utils': 2.12.2 events: 3.3.0 isomorphic-unfetch: 3.1.0 lodash.isequal: 4.5.0 @@ -15783,7 +15710,8 @@ snapshots: - '@vercel/kv' - bufferutil - encoding - - supports-color + - ioredis + - uWebSockets.js - utf-8-validate '@walletconnect/environment@1.0.1': @@ -15832,7 +15760,7 @@ snapshots: dependencies: '@walletconnect/safe-json': 1.0.2 idb-keyval: 6.2.1 - unstorage: 1.10.1(idb-keyval@6.2.1) + unstorage: 1.10.2(idb-keyval@6.2.1) transitivePeerDependencies: - '@azure/app-configuration' - '@azure/cosmos' @@ -15845,12 +15773,13 @@ snapshots: - '@planetscale/database' - '@upstash/redis' - '@vercel/kv' - - supports-color + - ioredis + - uWebSockets.js - '@walletconnect/logger@2.0.1': + '@walletconnect/logger@2.1.2': dependencies: + '@walletconnect/safe-json': 1.0.2 pino: 7.11.0 - tslib: 1.14.1 '@walletconnect/relay-api@1.0.9': dependencies: @@ -15870,16 +15799,16 @@ snapshots: dependencies: tslib: 1.14.1 - '@walletconnect/sign-client@2.11.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@walletconnect/sign-client@2.12.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: - '@walletconnect/core': 2.11.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@walletconnect/core': 2.12.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@walletconnect/events': 1.0.1 '@walletconnect/heartbeat': 1.2.1 '@walletconnect/jsonrpc-utils': 1.0.8 - '@walletconnect/logger': 2.0.1 + '@walletconnect/logger': 2.1.2 '@walletconnect/time': 1.0.2 - '@walletconnect/types': 2.11.1 - '@walletconnect/utils': 2.11.1 + '@walletconnect/types': 2.12.2 + '@walletconnect/utils': 2.12.2 events: 3.3.0 transitivePeerDependencies: - '@azure/app-configuration' @@ -15896,7 +15825,8 @@ snapshots: - '@vercel/kv' - bufferutil - encoding - - supports-color + - ioredis + - uWebSockets.js - utf-8-validate '@walletconnect/time@1.0.2': @@ -15909,7 +15839,7 @@ snapshots: '@walletconnect/heartbeat': 1.2.1 '@walletconnect/jsonrpc-types': 1.0.3 '@walletconnect/keyvaluestorage': 1.1.1 - '@walletconnect/logger': 2.0.1 + '@walletconnect/logger': 2.1.2 events: 3.3.0 transitivePeerDependencies: - '@azure/app-configuration' @@ -15924,15 +15854,16 @@ snapshots: - '@react-native-async-storage/async-storage' - '@upstash/redis' - '@vercel/kv' - - supports-color + - ioredis + - uWebSockets.js - '@walletconnect/types@2.11.1': + '@walletconnect/types@2.12.2': dependencies: '@walletconnect/events': 1.0.1 '@walletconnect/heartbeat': 1.2.1 '@walletconnect/jsonrpc-types': 1.0.3 '@walletconnect/keyvaluestorage': 1.1.1 - '@walletconnect/logger': 2.0.1 + '@walletconnect/logger': 2.1.2 events: 3.3.0 transitivePeerDependencies: - '@azure/app-configuration' @@ -15947,9 +15878,10 @@ snapshots: - '@react-native-async-storage/async-storage' - '@upstash/redis' - '@vercel/kv' - - supports-color + - ioredis + - uWebSockets.js - '@walletconnect/utils@2.11.1': + '@walletconnect/utils@2.12.2': dependencies: '@stablelib/chacha20poly1305': 1.0.1 '@stablelib/hkdf': 1.0.1 @@ -15959,7 +15891,7 @@ snapshots: '@walletconnect/relay-api': 1.0.9 '@walletconnect/safe-json': 1.0.2 '@walletconnect/time': 1.0.2 - '@walletconnect/types': 2.11.1 + '@walletconnect/types': 2.12.2 '@walletconnect/window-getters': 1.0.1 '@walletconnect/window-metadata': 1.0.1 detect-browser: 5.3.0 @@ -15978,18 +15910,19 @@ snapshots: - '@react-native-async-storage/async-storage' - '@upstash/redis' - '@vercel/kv' - - supports-color + - ioredis + - uWebSockets.js - '@walletconnect/web3wallet@1.10.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@walletconnect/web3wallet@1.11.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: '@walletconnect/auth-client': 2.1.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@walletconnect/core': 2.11.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@walletconnect/core': 2.12.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@walletconnect/jsonrpc-provider': 1.0.13 '@walletconnect/jsonrpc-utils': 1.0.8 - '@walletconnect/logger': 2.0.1 - '@walletconnect/sign-client': 2.11.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@walletconnect/types': 2.11.1 - '@walletconnect/utils': 2.11.1 + '@walletconnect/logger': 2.1.2 + '@walletconnect/sign-client': 2.12.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@walletconnect/types': 2.12.2 + '@walletconnect/utils': 2.12.2 transitivePeerDependencies: - '@azure/app-configuration' - '@azure/cosmos' @@ -16005,7 +15938,8 @@ snapshots: - '@vercel/kv' - bufferutil - encoding - - supports-color + - ioredis + - uWebSockets.js - utf-8-validate '@walletconnect/window-getters@1.0.1': @@ -16017,6 +15951,22 @@ snapshots: '@walletconnect/window-getters': 1.0.1 tslib: 1.14.1 + '@wardenprotocol/wardjs@file:../wardjs(@tanstack/react-query@4.36.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + dependencies: + '@cosmjs/amino': 0.32.3 + '@cosmjs/math': 0.32.3 + '@cosmjs/proto-signing': 0.32.3 + '@cosmjs/stargate': 0.32.3(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@cosmjs/tendermint-rpc': 0.32.3(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@cosmology/lcd': 0.13.3 + '@tanstack/react-query': 4.36.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + long: 5.2.3 + protobufjs: 7.2.6 + transitivePeerDependencies: + - bufferutil + - debug + - utf-8-validate + '@webassemblyjs/ast@1.12.1': dependencies: '@webassemblyjs/helper-numbers': 1.11.6 @@ -16112,9 +16062,9 @@ snapshots: '@types/emscripten': 1.39.10 tslib: 1.14.1 - abitype@0.7.1(typescript@5.3.3)(zod@3.22.4): + abitype@0.7.1(typescript@5.4.5)(zod@3.22.4): dependencies: - typescript: 5.3.3 + typescript: 5.4.5 optionalDependencies: zod: 3.22.4 @@ -16229,7 +16179,7 @@ snapshots: argparse@2.0.1: {} - aria-hidden@1.2.3: + aria-hidden@1.2.4: dependencies: tslib: 2.6.2 @@ -16250,18 +16200,17 @@ snapshots: array-union@2.1.0: {} - asn1.js@5.4.1: + asn1.js@4.10.1: dependencies: bn.js: 4.12.0 inherits: 2.0.4 minimalistic-assert: 1.0.1 - safer-buffer: 2.1.2 assert@2.1.0: dependencies: call-bind: 1.0.7 is-nan: 1.3.2 - object-is: 1.1.5 + object-is: 1.1.6 object.assign: 4.1.5 util: 0.12.5 @@ -16277,14 +16226,14 @@ snapshots: atomic-sleep@1.0.0: {} - autoprefixer@10.4.17(postcss@8.4.35): + autoprefixer@10.4.19(postcss@8.4.38): dependencies: - browserslist: 4.22.3 - caniuse-lite: 1.0.30001585 + browserslist: 4.23.0 + caniuse-lite: 1.0.30001610 fraction.js: 4.3.7 normalize-range: 0.1.2 picocolors: 1.0.0 - postcss: 8.4.35 + postcss: 8.4.38 postcss-value-parser: 4.2.0 available-typed-arrays@1.0.7: @@ -16293,28 +16242,28 @@ snapshots: axios@0.21.4: dependencies: - follow-redirects: 1.15.5 + follow-redirects: 1.15.6 transitivePeerDependencies: - debug axios@0.27.2: dependencies: - follow-redirects: 1.15.5 + follow-redirects: 1.15.6 form-data: 4.0.0 transitivePeerDependencies: - debug axios@1.6.0: dependencies: - follow-redirects: 1.15.5 + follow-redirects: 1.15.6 form-data: 4.0.0 proxy-from-env: 1.1.0 transitivePeerDependencies: - debug - axios@1.6.7: + axios@1.6.8: dependencies: - follow-redirects: 1.15.5 + follow-redirects: 1.15.6 form-data: 4.0.0 proxy-from-env: 1.1.0 transitivePeerDependencies: @@ -16322,38 +16271,38 @@ snapshots: b4a@1.6.6: {} - babel-core@7.0.0-bridge.0(@babel/core@7.24.3): + babel-core@7.0.0-bridge.0(@babel/core@7.24.4): dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 - babel-loader@9.1.3(@babel/core@7.24.3)(webpack@5.91.0(esbuild@0.20.2)): + babel-loader@9.1.3(@babel/core@7.24.4)(webpack@5.91.0(esbuild@0.20.2)): dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 find-cache-dir: 4.0.0 schema-utils: 4.2.0 webpack: 5.91.0(esbuild@0.20.2) - babel-plugin-polyfill-corejs2@0.4.10(@babel/core@7.24.3): + babel-plugin-polyfill-corejs2@0.4.10(@babel/core@7.24.4): dependencies: - '@babel/compat-data': 7.24.1 - '@babel/core': 7.24.3 - '@babel/helper-define-polyfill-provider': 0.6.1(@babel/core@7.24.3) + '@babel/compat-data': 7.24.4 + '@babel/core': 7.24.4 + '@babel/helper-define-polyfill-provider': 0.6.1(@babel/core@7.24.4) semver: 6.3.1 transitivePeerDependencies: - supports-color - babel-plugin-polyfill-corejs3@0.10.4(@babel/core@7.24.3): + babel-plugin-polyfill-corejs3@0.10.4(@babel/core@7.24.4): dependencies: - '@babel/core': 7.24.3 - '@babel/helper-define-polyfill-provider': 0.6.1(@babel/core@7.24.3) - core-js-compat: 3.36.1 + '@babel/core': 7.24.4 + '@babel/helper-define-polyfill-provider': 0.6.1(@babel/core@7.24.4) + core-js-compat: 3.37.0 transitivePeerDependencies: - supports-color - babel-plugin-polyfill-regenerator@0.6.1(@babel/core@7.24.3): + babel-plugin-polyfill-regenerator@0.6.1(@babel/core@7.24.4): dependencies: - '@babel/core': 7.24.3 - '@babel/helper-define-polyfill-provider': 0.6.1(@babel/core@7.24.3) + '@babel/core': 7.24.4 + '@babel/helper-define-polyfill-provider': 0.6.1(@babel/core@7.24.4) transitivePeerDependencies: - supports-color @@ -16362,18 +16311,17 @@ snapshots: bare-events@2.2.2: optional: true - bare-fs@2.2.2: + bare-fs@2.2.3: dependencies: bare-events: 2.2.2 - bare-os: 2.2.1 - bare-path: 2.1.0 + bare-path: 2.1.1 streamx: 2.16.1 optional: true bare-os@2.2.1: optional: true - bare-path@2.1.0: + bare-path@2.1.1: dependencies: bare-os: 2.2.1 optional: true @@ -16402,7 +16350,7 @@ snapshots: bignumber.js@9.1.2: {} - binary-extensions@2.2.0: {} + binary-extensions@2.3.0: {} bindings@1.5.0: dependencies: @@ -16422,7 +16370,7 @@ snapshots: bip39@3.1.0: dependencies: - '@noble/hashes': 1.3.3 + '@noble/hashes': 1.4.0 bl@4.1.0: dependencies: @@ -16509,16 +16457,17 @@ snapshots: bn.js: 5.2.1 randombytes: 2.1.0 - browserify-sign@4.2.2: + browserify-sign@4.2.3: dependencies: bn.js: 5.2.1 browserify-rsa: 4.1.0 create-hash: 1.2.0 create-hmac: 1.1.7 - elliptic: 6.5.4 + elliptic: 6.5.5 + hash-base: 3.0.4 inherits: 2.0.4 - parse-asn1: 5.1.6 - readable-stream: 3.6.2 + parse-asn1: 5.1.7 + readable-stream: 2.3.8 safe-buffer: 5.2.1 browserify-zlib@0.1.4: @@ -16529,17 +16478,10 @@ snapshots: dependencies: pako: 1.0.11 - browserslist@4.22.3: - dependencies: - caniuse-lite: 1.0.30001585 - electron-to-chromium: 1.4.664 - node-releases: 2.0.14 - update-browserslist-db: 1.0.13(browserslist@4.22.3) - browserslist@4.23.0: dependencies: - caniuse-lite: 1.0.30001605 - electron-to-chromium: 1.4.724 + caniuse-lite: 1.0.30001610 + electron-to-chromium: 1.4.738 node-releases: 2.0.14 update-browserslist-db: 1.0.13(browserslist@4.23.0) @@ -16583,20 +16525,13 @@ snapshots: cac@6.7.14: {} - call-bind@1.0.6: - dependencies: - es-errors: 1.3.0 - function-bind: 1.1.2 - get-intrinsic: 1.2.4 - set-function-length: 1.2.1 - call-bind@1.0.7: dependencies: es-define-property: 1.0.0 es-errors: 1.3.0 function-bind: 1.1.2 get-intrinsic: 1.2.4 - set-function-length: 1.2.1 + set-function-length: 1.2.2 callsites@3.1.0: {} @@ -16607,9 +16542,7 @@ snapshots: camelcase-css@2.0.1: {} - caniuse-lite@1.0.30001585: {} - - caniuse-lite@1.0.30001605: {} + caniuse-lite@1.0.30001610: {} case-anything@2.1.13: {} @@ -16625,10 +16558,9 @@ snapshots: pathval: 1.1.1 type-detect: 4.0.8 - chain-registry@1.29.1: + chain-registry@1.41.3: dependencies: - '@babel/runtime': 7.23.9 - '@chain-registry/types': 0.18.1 + '@chain-registry/types': 0.25.2 chalk@2.4.2: dependencies: @@ -16675,10 +16607,6 @@ snapshots: inherits: 2.0.4 safe-buffer: 5.2.1 - citty@0.1.5: - dependencies: - consola: 3.2.3 - citty@0.1.6: dependencies: consola: 3.2.3 @@ -16727,8 +16655,6 @@ snapshots: clsx@2.1.0: {} - cluster-key-slot@1.1.2: {} - color-convert@1.9.3: dependencies: color-name: 1.1.3 @@ -16803,7 +16729,7 @@ snapshots: convert-source-map@2.0.0: {} - cookie-es@1.0.0: {} + cookie-es@1.1.0: {} cookie-signature@1.0.6: {} @@ -16813,11 +16739,11 @@ snapshots: dependencies: toggle-selection: 1.0.6 - core-js-compat@3.36.1: + core-js-compat@3.37.0: dependencies: browserslist: 4.23.0 - core-js-pure@3.36.1: {} + core-js-pure@3.37.0: {} core-util-is@1.0.3: {} @@ -16829,14 +16755,14 @@ snapshots: path-type: 4.0.0 yaml: 1.10.2 - cosmiconfig@8.3.6(typescript@5.3.3): + cosmiconfig@8.3.6(typescript@5.4.5): dependencies: import-fresh: 3.3.0 js-yaml: 4.1.0 parse-json: 5.2.0 path-type: 4.0.0 optionalDependencies: - typescript: 5.3.3 + typescript: 5.4.5 cosmjs-types@0.8.0: dependencies: @@ -16845,26 +16771,26 @@ snapshots: cosmjs-types@0.9.0: {} - cosmos-kit@2.9.3(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.2)(@terra-money/terra.js@3.1.10)(@walletconnect/types@2.11.1)(axios@1.6.7)(bufferutil@4.0.8)(cosmjs-types@0.9.0)(react@18.2.0)(utf-8-validate@5.0.10): - dependencies: - '@cosmos-kit/coin98': 2.6.10(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.2)(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@cosmos-kit/compass': 2.6.9(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.2)(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@cosmos-kit/cosmostation': 2.6.10(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.2)(@walletconnect/types@2.11.1)(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@cosmos-kit/exodus': 2.5.9(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.2)(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10) - '@cosmos-kit/fin': 2.6.9(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.2)(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@cosmos-kit/frontier': 2.5.9(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.2)(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@cosmos-kit/keplr': 2.6.9(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.2)(@walletconnect/types@2.11.1)(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@cosmos-kit/leap': 2.6.12(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.2)(@walletconnect/types@2.11.1)(bufferutil@4.0.8)(cosmjs-types@0.9.0)(utf-8-validate@5.0.10) - '@cosmos-kit/ledger': 2.6.9(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.2)(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@cosmos-kit/okxwallet-extension': 2.6.9(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.2)(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@cosmos-kit/omni': 2.5.9(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.2)(@walletconnect/types@2.11.1)(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@cosmos-kit/owallet': 2.6.10(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.2)(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@cosmos-kit/shell': 2.6.9(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.2)(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@cosmos-kit/station': 2.5.9(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.2)(@terra-money/terra.js@3.1.10)(axios@1.6.7)(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@cosmos-kit/tailwind': 1.0.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@cosmos-kit/trust': 2.6.0(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.2)(@walletconnect/types@2.11.1)(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@cosmos-kit/vectis': 2.6.9(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.2)(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@cosmos-kit/xdefi': 2.5.9(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.2)(bufferutil@4.0.8)(utf-8-validate@5.0.10) + cosmos-kit@2.9.4(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.3)(@terra-money/terra.js@3.1.10)(@walletconnect/types@2.12.2)(axios@1.6.8)(bufferutil@4.0.8)(cosmjs-types@0.9.0)(react@18.2.0)(utf-8-validate@5.0.10): + dependencies: + '@cosmos-kit/coin98': 2.6.10(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.3)(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@cosmos-kit/compass': 2.6.9(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.3)(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@cosmos-kit/cosmostation': 2.6.10(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.3)(@walletconnect/types@2.12.2)(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@cosmos-kit/exodus': 2.5.9(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.3)(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10) + '@cosmos-kit/fin': 2.6.9(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.3)(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@cosmos-kit/frontier': 2.5.9(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.3)(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@cosmos-kit/keplr': 2.6.9(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.3)(@walletconnect/types@2.12.2)(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@cosmos-kit/leap': 2.6.12(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.3)(@walletconnect/types@2.12.2)(bufferutil@4.0.8)(cosmjs-types@0.9.0)(utf-8-validate@5.0.10) + '@cosmos-kit/ledger': 2.6.9(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.3)(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@cosmos-kit/okxwallet-extension': 2.6.9(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.3)(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@cosmos-kit/omni': 2.5.9(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.3)(@walletconnect/types@2.12.2)(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@cosmos-kit/owallet': 2.6.10(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.3)(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@cosmos-kit/shell': 2.6.9(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.3)(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@cosmos-kit/station': 2.5.10(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.3)(@terra-money/terra.js@3.1.10)(axios@1.6.8)(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@cosmos-kit/tailwind': 1.0.4(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@cosmos-kit/trust': 2.6.0(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.3)(@walletconnect/types@2.12.2)(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@cosmos-kit/vectis': 2.6.9(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.3)(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@cosmos-kit/xdefi': 2.5.9(@cosmjs/amino@0.32.3)(@cosmjs/proto-signing@0.32.3)(bufferutil@4.0.8)(utf-8-validate@5.0.10) transitivePeerDependencies: - '@azure/app-configuration' - '@azure/cosmos' @@ -16887,8 +16813,9 @@ snapshots: - cosmjs-types - debug - encoding + - ioredis - react - - supports-color + - uWebSockets.js - utf-8-validate crc-32@1.2.2: {} @@ -16896,7 +16823,7 @@ snapshots: create-ecdh@4.0.4: dependencies: bn.js: 4.12.0 - elliptic: 6.5.4 + elliptic: 6.5.5 create-hash@1.2.0: dependencies: @@ -16935,12 +16862,12 @@ snapshots: shebang-command: 2.0.0 which: 2.0.2 - crossws@0.1.1: {} + crossws@0.2.4: {} crypto-browserify@3.12.0: dependencies: browserify-cipher: 1.0.1 - browserify-sign: 4.2.2 + browserify-sign: 4.2.3 create-ecdh: 4.0.4 create-hash: 1.2.0 create-hmac: 1.1.7 @@ -16955,14 +16882,14 @@ snapshots: crypto-random-string@2.0.0: {} - css-loader@6.10.0(webpack@5.91.0(esbuild@0.20.2)): + css-loader@6.11.0(webpack@5.91.0(esbuild@0.20.2)): dependencies: - icss-utils: 5.1.0(postcss@8.4.35) - postcss: 8.4.35 - postcss-modules-extract-imports: 3.0.0(postcss@8.4.35) - postcss-modules-local-by-default: 4.0.4(postcss@8.4.35) - postcss-modules-scope: 3.1.1(postcss@8.4.35) - postcss-modules-values: 4.0.0(postcss@8.4.35) + icss-utils: 5.1.0(postcss@8.4.38) + postcss: 8.4.38 + postcss-modules-extract-imports: 3.1.0(postcss@8.4.38) + postcss-modules-local-by-default: 4.0.5(postcss@8.4.38) + postcss-modules-scope: 3.2.0(postcss@8.4.38) + postcss-modules-values: 4.0.0(postcss@8.4.38) postcss-value-parser: 4.2.0 semver: 7.6.0 optionalDependencies: @@ -17029,14 +16956,14 @@ snapshots: is-regex: 1.1.4 is-shared-array-buffer: 1.0.3 isarray: 2.0.5 - object-is: 1.1.5 + object-is: 1.1.6 object-keys: 1.1.1 object.assign: 4.1.5 regexp.prototype.flags: 1.5.2 - side-channel: 1.0.5 + side-channel: 1.0.6 which-boxed-primitive: 1.0.2 which-collection: 1.0.2 - which-typed-array: 1.1.14 + which-typed-array: 1.1.15 deep-extend@0.6.0: {} @@ -17086,8 +17013,6 @@ snapshots: delayed-stream@1.0.0: {} - denque@2.1.0: {} - depd@2.0.0: {} dequal@2.0.3: {} @@ -17097,7 +17022,7 @@ snapshots: inherits: 2.0.4 minimalistic-assert: 1.0.1 - destr@2.0.2: {} + destr@2.0.3: {} destroy@1.2.0: {} @@ -17190,7 +17115,7 @@ snapshots: readable-stream: 2.3.8 stream-shift: 1.0.3 - duplexify@4.1.2: + duplexify@4.1.3: dependencies: end-of-stream: 1.4.4 inherits: 2.0.4 @@ -17201,13 +17126,11 @@ snapshots: ee-first@1.1.1: {} - ejs@3.1.9: + ejs@3.1.10: dependencies: jake: 10.8.7 - electron-to-chromium@1.4.664: {} - - electron-to-chromium@1.4.724: {} + electron-to-chromium@1.4.738: {} elliptic@6.5.4: dependencies: @@ -17219,7 +17142,17 @@ snapshots: minimalistic-assert: 1.0.1 minimalistic-crypto-utils: 1.0.1 - emoji-hash-gen@1.0.3: {} + elliptic@6.5.5: + dependencies: + bn.js: 4.12.0 + brorand: 1.1.0 + hash.js: 1.1.7 + hmac-drbg: 1.0.1 + inherits: 2.0.4 + minimalistic-assert: 1.0.1 + minimalistic-crypto-utils: 1.0.1 + + emoji-hash-gen@1.0.7: {} emoji-regex@8.0.0: {} @@ -17248,7 +17181,7 @@ snapshots: entities@4.5.0: {} - envinfo@7.11.1: {} + envinfo@7.12.0: {} error-ex@1.3.2: dependencies: @@ -17337,19 +17270,19 @@ snapshots: optionalDependencies: source-map: 0.6.1 - eslint-plugin-react-hooks@4.6.0(eslint@8.56.0): + eslint-plugin-react-hooks@4.6.0(eslint@8.57.0): dependencies: - eslint: 8.56.0 + eslint: 8.57.0 - eslint-plugin-react-refresh@0.3.5(eslint@8.56.0): + eslint-plugin-react-refresh@0.3.5(eslint@8.57.0): dependencies: - eslint: 8.56.0 + eslint: 8.57.0 - eslint-plugin-storybook@0.8.0(eslint@8.56.0)(typescript@5.3.3): + eslint-plugin-storybook@0.8.0(eslint@8.57.0)(typescript@5.4.5): dependencies: '@storybook/csf': 0.0.1 - '@typescript-eslint/utils': 5.62.0(eslint@8.56.0)(typescript@5.3.3) - eslint: 8.56.0 + '@typescript-eslint/utils': 5.62.0(eslint@8.57.0)(typescript@5.4.5) + eslint: 8.57.0 requireindex: 1.2.0 ts-dedent: 2.2.0 transitivePeerDependencies: @@ -17368,12 +17301,12 @@ snapshots: eslint-visitor-keys@3.4.3: {} - eslint@8.56.0: + eslint@8.57.0: dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@8.56.0) + '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0) '@eslint-community/regexpp': 4.10.0 '@eslint/eslintrc': 2.1.4 - '@eslint/js': 8.56.0 + '@eslint/js': 8.57.0 '@humanwhocodes/config-array': 0.11.14 '@humanwhocodes/module-importer': 1.0.1 '@nodelib/fs.walk': 1.2.8 @@ -17490,7 +17423,7 @@ snapshots: - bufferutil - utf-8-validate - ethers@6.11.0(bufferutil@4.0.8)(utf-8-validate@5.0.10): + ethers@6.12.0(bufferutil@4.0.8)(utf-8-validate@5.0.10): dependencies: '@adraffy/ens-normalize': 1.10.1 '@noble/curves': 1.2.0 @@ -17533,7 +17466,7 @@ snapshots: human-signals: 5.0.0 is-stream: 3.0.0 merge-stream: 2.0.0 - npm-run-path: 5.2.0 + npm-run-path: 5.3.0 onetime: 6.0.0 signal-exit: 4.1.0 strip-final-newline: 3.0.0 @@ -17603,11 +17536,11 @@ snapshots: fast-levenshtein@2.0.6: {} - fast-redact@3.3.0: {} + fast-redact@3.5.0: {} fast-safe-stringify@2.1.1: {} - fast-xml-parser@4.3.5: + fast-xml-parser@4.3.6: dependencies: strnum: 1.0.5 @@ -17692,15 +17625,15 @@ snapshots: flat-cache@3.2.0: dependencies: - flatted: 3.2.9 + flatted: 3.3.1 keyv: 4.5.4 rimraf: 3.0.2 - flatted@3.2.9: {} + flatted@3.3.1: {} - flow-parser@0.232.0: {} + flow-parser@0.233.0: {} - follow-redirects@1.15.5: {} + follow-redirects@1.15.6: {} for-each@0.3.3: dependencies: @@ -17711,7 +17644,7 @@ snapshots: cross-spawn: 7.0.3 signal-exit: 4.1.0 - fork-ts-checker-webpack-plugin@8.0.0(typescript@5.3.3)(webpack@5.91.0(esbuild@0.20.2)): + fork-ts-checker-webpack-plugin@8.0.0(typescript@5.4.5)(webpack@5.91.0(esbuild@0.20.2)): dependencies: '@babel/code-frame': 7.24.2 chalk: 4.1.2 @@ -17725,7 +17658,7 @@ snapshots: schema-utils: 3.3.0 semver: 7.6.0 tapable: 2.2.1 - typescript: 5.3.3 + typescript: 5.4.5 webpack: 5.91.0(esbuild@0.20.2) form-data@4.0.0: @@ -17827,13 +17760,13 @@ snapshots: glob-to-regexp@0.4.1: {} - glob@10.3.10: + glob@10.3.12: dependencies: foreground-child: 3.1.1 jackspeak: 2.3.6 - minimatch: 9.0.3 + minimatch: 9.0.4 minipass: 7.0.4 - path-scurry: 1.10.1 + path-scurry: 1.10.2 glob@7.2.3: dependencies: @@ -17882,17 +17815,20 @@ snapshots: pumpify: 1.5.1 through2: 2.0.5 - h3@1.10.1: + h3@1.11.1: dependencies: - cookie-es: 1.0.0 + cookie-es: 1.1.0 + crossws: 0.2.4 defu: 6.1.4 - destr: 2.0.2 - iron-webcrypto: 1.0.0 + destr: 2.0.3 + iron-webcrypto: 1.1.0 ohash: 1.1.3 - radix3: 1.1.0 - ufo: 1.4.0 + radix3: 1.1.2 + ufo: 1.5.3 uncrypto: 0.1.3 unenv: 1.9.0 + transitivePeerDependencies: + - uWebSockets.js handlebars@4.7.8: dependencies: @@ -17921,6 +17857,11 @@ snapshots: dependencies: has-symbols: 1.0.3 + hash-base@3.0.4: + dependencies: + inherits: 2.0.4 + safe-buffer: 5.2.1 + hash-base@3.1.0: dependencies: inherits: 2.0.4 @@ -17976,7 +17917,7 @@ snapshots: he: 1.2.0 param-case: 3.0.4 relateurl: 0.2.7 - terser: 5.30.2 + terser: 5.30.3 html-tags@3.3.1: {} @@ -18037,9 +17978,9 @@ snapshots: dependencies: safer-buffer: 2.1.2 - icss-utils@5.1.0(postcss@8.4.35): + icss-utils@5.1.0(postcss@8.4.38): dependencies: - postcss: 8.4.35 + postcss: 8.4.38 idb-keyval@6.2.1: {} @@ -18086,7 +18027,7 @@ snapshots: dependencies: es-errors: 1.3.0 hasown: 2.0.2 - side-channel: 1.0.5 + side-channel: 1.0.6 interpret@1.4.0: {} @@ -18101,25 +18042,11 @@ snapshots: dependencies: loose-envify: 1.4.0 - ioredis@5.3.2: - dependencies: - '@ioredis/commands': 1.2.0 - cluster-key-slot: 1.1.2 - debug: 4.3.4 - denque: 2.1.0 - lodash.defaults: 4.2.0 - lodash.isarguments: 3.1.0 - redis-errors: 1.2.0 - redis-parser: 3.0.0 - standard-as-callback: 2.1.0 - transitivePeerDependencies: - - supports-color - ip@2.0.1: {} ipaddr.js@1.9.1: {} - iron-webcrypto@1.0.0: {} + iron-webcrypto@1.1.0: {} is-absolute-url@4.0.1: {} @@ -18143,7 +18070,7 @@ snapshots: is-binary-path@2.1.0: dependencies: - binary-extensions: 2.2.0 + binary-extensions: 2.3.0 is-boolean-object@1.1.2: dependencies: @@ -18236,7 +18163,7 @@ snapshots: is-typed-array@1.1.13: dependencies: - which-typed-array: 1.1.14 + which-typed-array: 1.1.15 is-unicode-supported@0.1.0: {} @@ -18299,7 +18226,7 @@ snapshots: jest-worker@27.5.1: dependencies: - '@types/node': 20.11.17 + '@types/node': 18.19.31 merge-stream: 2.0.0 supports-color: 8.1.1 @@ -18317,21 +18244,21 @@ snapshots: dependencies: argparse: 2.0.1 - jscodeshift@0.15.2(@babel/preset-env@7.24.3(@babel/core@7.24.3)): - dependencies: - '@babel/core': 7.24.3 - '@babel/parser': 7.24.1 - '@babel/plugin-transform-class-properties': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-modules-commonjs': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-nullish-coalescing-operator': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-optional-chaining': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-private-methods': 7.24.1(@babel/core@7.24.3) - '@babel/preset-flow': 7.24.1(@babel/core@7.24.3) - '@babel/preset-typescript': 7.24.1(@babel/core@7.24.3) - '@babel/register': 7.23.7(@babel/core@7.24.3) - babel-core: 7.0.0-bridge.0(@babel/core@7.24.3) + jscodeshift@0.15.2(@babel/preset-env@7.24.4(@babel/core@7.24.4)): + dependencies: + '@babel/core': 7.24.4 + '@babel/parser': 7.24.4 + '@babel/plugin-transform-class-properties': 7.24.1(@babel/core@7.24.4) + '@babel/plugin-transform-modules-commonjs': 7.24.1(@babel/core@7.24.4) + '@babel/plugin-transform-nullish-coalescing-operator': 7.24.1(@babel/core@7.24.4) + '@babel/plugin-transform-optional-chaining': 7.24.1(@babel/core@7.24.4) + '@babel/plugin-transform-private-methods': 7.24.1(@babel/core@7.24.4) + '@babel/preset-flow': 7.24.1(@babel/core@7.24.4) + '@babel/preset-typescript': 7.24.1(@babel/core@7.24.4) + '@babel/register': 7.23.7(@babel/core@7.24.4) + babel-core: 7.0.0-bridge.0(@babel/core@7.24.4) chalk: 4.1.2 - flow-parser: 0.232.0 + flow-parser: 0.233.0 graceful-fs: 4.2.11 micromatch: 4.0.5 neo-async: 2.6.2 @@ -18340,7 +18267,7 @@ snapshots: temp: 0.8.4 write-file-atomic: 2.4.3 optionalDependencies: - '@babel/preset-env': 7.24.3(@babel/core@7.24.3) + '@babel/preset-env': 7.24.4(@babel/core@7.24.4) transitivePeerDependencies: - supports-color @@ -18464,7 +18391,7 @@ snapshots: lilconfig@2.1.0: {} - lilconfig@3.0.0: {} + lilconfig@3.1.1: {} lines-and-columns@1.2.4: {} @@ -18472,26 +18399,28 @@ snapshots: dependencies: chalk: 2.4.2 - listhen@1.6.0: + listhen@1.7.2: dependencies: - '@parcel/watcher': 2.4.0 - '@parcel/watcher-wasm': 2.4.0 - citty: 0.1.5 + '@parcel/watcher': 2.4.1 + '@parcel/watcher-wasm': 2.4.1 + citty: 0.1.6 clipboardy: 4.0.0 consola: 3.2.3 - crossws: 0.1.1 + crossws: 0.2.4 defu: 6.1.4 get-port-please: 3.1.2 - h3: 1.10.1 + h3: 1.11.1 http-shutdown: 1.2.2 jiti: 1.21.0 - mlly: 1.5.0 + mlly: 1.6.1 node-forge: 1.3.1 pathe: 1.1.2 std-env: 3.7.0 - ufo: 1.4.0 + ufo: 1.5.3 untun: 0.1.3 uqr: 0.1.2 + transitivePeerDependencies: + - uWebSockets.js loader-runner@4.3.0: {} @@ -18505,7 +18434,7 @@ snapshots: local-pkg@0.5.0: dependencies: - mlly: 1.5.0 + mlly: 1.6.1 pkg-types: 1.0.3 localforage@1.10.0: @@ -18531,10 +18460,6 @@ snapshots: lodash.debounce@4.0.8: {} - lodash.defaults@4.2.0: {} - - lodash.isarguments@3.1.0: {} - lodash.isequal@4.5.0: {} lodash.merge@4.6.2: {} @@ -18586,7 +18511,7 @@ snapshots: dependencies: '@jridgewell/sourcemap-codec': 1.4.15 - magic-string@0.30.7: + magic-string@0.30.10: dependencies: '@jridgewell/sourcemap-codec': 1.4.15 @@ -18607,7 +18532,7 @@ snapshots: match-sorter@6.3.4: dependencies: - '@babel/runtime': 7.23.9 + '@babel/runtime': 7.24.4 remove-accents: 0.5.0 md5.js@1.3.5: @@ -18618,7 +18543,7 @@ snapshots: media-query-parser@2.0.2: dependencies: - '@babel/runtime': 7.23.9 + '@babel/runtime': 7.24.4 media-typer@0.3.0: {} @@ -18680,7 +18605,7 @@ snapshots: dependencies: brace-expansion: 2.0.1 - minimatch@9.0.3: + minimatch@9.0.4: dependencies: brace-expansion: 2.0.1 @@ -18703,14 +18628,14 @@ snapshots: mkdirp@1.0.4: {} - mlly@1.5.0: + mlly@1.6.1: dependencies: acorn: 8.11.3 pathe: 1.1.2 pkg-types: 1.0.3 - ufo: 1.4.0 + ufo: 1.5.3 - mobx@6.12.0: {} + mobx@6.12.3: {} modern-ahocorasick@1.0.1: {} @@ -18746,33 +18671,33 @@ snapshots: neo-async@2.6.2: {} - next-themes@0.2.1(next@14.1.0(@babel/core@7.24.3)(@opentelemetry/api@1.8.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0): + next-themes@0.2.1(next@14.2.1(@babel/core@7.24.4)(@opentelemetry/api@1.8.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0): dependencies: - next: 14.1.0(@babel/core@7.24.3)(@opentelemetry/api@1.8.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + next: 14.2.1(@babel/core@7.24.4)(@opentelemetry/api@1.8.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - next@14.1.0(@babel/core@7.24.3)(@opentelemetry/api@1.8.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0): + next@14.2.1(@babel/core@7.24.4)(@opentelemetry/api@1.8.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0): dependencies: - '@next/env': 14.1.0 - '@swc/helpers': 0.5.2 + '@next/env': 14.2.1 + '@swc/helpers': 0.5.5 busboy: 1.6.0 - caniuse-lite: 1.0.30001585 + caniuse-lite: 1.0.30001610 graceful-fs: 4.2.11 postcss: 8.4.31 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - styled-jsx: 5.1.1(@babel/core@7.24.3)(react@18.2.0) + styled-jsx: 5.1.1(@babel/core@7.24.4)(react@18.2.0) optionalDependencies: - '@next/swc-darwin-arm64': 14.1.0 - '@next/swc-darwin-x64': 14.1.0 - '@next/swc-linux-arm64-gnu': 14.1.0 - '@next/swc-linux-arm64-musl': 14.1.0 - '@next/swc-linux-x64-gnu': 14.1.0 - '@next/swc-linux-x64-musl': 14.1.0 - '@next/swc-win32-arm64-msvc': 14.1.0 - '@next/swc-win32-ia32-msvc': 14.1.0 - '@next/swc-win32-x64-msvc': 14.1.0 + '@next/swc-darwin-arm64': 14.2.1 + '@next/swc-darwin-x64': 14.2.1 + '@next/swc-linux-arm64-gnu': 14.2.1 + '@next/swc-linux-arm64-musl': 14.2.1 + '@next/swc-linux-x64-gnu': 14.2.1 + '@next/swc-linux-x64-musl': 14.2.1 + '@next/swc-win32-arm64-msvc': 14.2.1 + '@next/swc-win32-ia32-msvc': 14.2.1 + '@next/swc-win32-x64-msvc': 14.2.1 '@opentelemetry/api': 1.8.0 transitivePeerDependencies: - '@babel/core' @@ -18783,7 +18708,7 @@ snapshots: lower-case: 2.0.2 tslib: 2.6.2 - node-abi@3.57.0: + node-abi@3.58.0: dependencies: semver: 7.6.0 @@ -18799,8 +18724,6 @@ snapshots: dependencies: minimatch: 3.1.2 - node-fetch-native@1.6.2: {} - node-fetch-native@1.6.4: {} node-fetch@2.7.0: @@ -18887,7 +18810,7 @@ snapshots: dependencies: path-key: 3.1.1 - npm-run-path@5.2.0: + npm-run-path@5.3.0: dependencies: path-key: 4.0.0 @@ -18903,7 +18826,7 @@ snapshots: consola: 3.2.3 execa: 8.0.1 pathe: 1.1.2 - ufo: 1.4.0 + ufo: 1.5.3 object-assign@4.1.1: {} @@ -18911,7 +18834,7 @@ snapshots: object-inspect@1.13.1: {} - object-is@1.1.5: + object-is@1.1.6: dependencies: call-bind: 1.0.7 define-properties: 1.2.1 @@ -18929,11 +18852,11 @@ snapshots: objectorarray@1.0.5: {} - ofetch@1.3.3: + ofetch@1.3.4: dependencies: - destr: 2.0.2 - node-fetch-native: 1.6.2 - ufo: 1.4.0 + destr: 2.0.3 + node-fetch-native: 1.6.4 + ufo: 1.5.3 ohash@1.1.3: {} @@ -19053,11 +18976,12 @@ snapshots: dependencies: callsites: 3.1.0 - parse-asn1@5.1.6: + parse-asn1@5.1.7: dependencies: - asn1.js: 5.4.1 + asn1.js: 4.10.1 browserify-aes: 1.2.0 evp_bytestokey: 1.0.3 + hash-base: 3.0.4 pbkdf2: 3.1.2 safe-buffer: 5.2.1 @@ -19095,7 +19019,7 @@ snapshots: path-parse@1.0.7: {} - path-scurry@1.10.1: + path-scurry@1.10.2: dependencies: lru-cache: 10.2.0 minipass: 7.0.4 @@ -19132,7 +19056,7 @@ snapshots: pino-abstract-transport@0.5.0: dependencies: - duplexify: 4.1.2 + duplexify: 4.1.3 split2: 4.2.0 pino-std-serializers@4.0.0: {} @@ -19140,7 +19064,7 @@ snapshots: pino@7.11.0: dependencies: atomic-sleep: 1.0.0 - fast-redact: 3.3.0 + fast-redact: 3.5.0 on-exit-leak-free: 0.2.0 pino-abstract-transport: 0.5.0 pino-std-serializers: 4.0.0 @@ -19172,81 +19096,81 @@ snapshots: pkg-types@1.0.3: dependencies: jsonc-parser: 3.2.1 - mlly: 1.5.0 + mlly: 1.6.1 pathe: 1.1.2 plausible-tracker@0.3.8: {} - pnp-webpack-plugin@1.7.0(typescript@5.3.3): + pnp-webpack-plugin@1.7.0(typescript@5.4.5): dependencies: - ts-pnp: 1.2.0(typescript@5.3.3) + ts-pnp: 1.2.0(typescript@5.4.5) transitivePeerDependencies: - typescript polished@4.3.1: dependencies: - '@babel/runtime': 7.23.9 + '@babel/runtime': 7.24.4 - pony-cause@2.1.10: {} + pony-cause@2.1.11: {} possible-typed-array-names@1.0.0: {} - postcss-import@15.1.0(postcss@8.4.35): + postcss-import@15.1.0(postcss@8.4.38): dependencies: - postcss: 8.4.35 + postcss: 8.4.38 postcss-value-parser: 4.2.0 read-cache: 1.0.0 resolve: 1.22.8 - postcss-js@4.0.1(postcss@8.4.35): + postcss-js@4.0.1(postcss@8.4.38): dependencies: camelcase-css: 2.0.1 - postcss: 8.4.35 + postcss: 8.4.38 - postcss-load-config@4.0.2(postcss@8.4.35): + postcss-load-config@4.0.2(postcss@8.4.38): dependencies: - lilconfig: 3.0.0 - yaml: 2.3.4 + lilconfig: 3.1.1 + yaml: 2.4.1 optionalDependencies: - postcss: 8.4.35 + postcss: 8.4.38 - postcss-loader@7.3.4(postcss@8.4.35)(typescript@5.3.3)(webpack@5.91.0(esbuild@0.20.2)): + postcss-loader@7.3.4(postcss@8.4.38)(typescript@5.4.5)(webpack@5.91.0(esbuild@0.20.2)): dependencies: - cosmiconfig: 8.3.6(typescript@5.3.3) + cosmiconfig: 8.3.6(typescript@5.4.5) jiti: 1.21.0 - postcss: 8.4.35 + postcss: 8.4.38 semver: 7.6.0 webpack: 5.91.0(esbuild@0.20.2) transitivePeerDependencies: - typescript - postcss-modules-extract-imports@3.0.0(postcss@8.4.35): + postcss-modules-extract-imports@3.1.0(postcss@8.4.38): dependencies: - postcss: 8.4.35 + postcss: 8.4.38 - postcss-modules-local-by-default@4.0.4(postcss@8.4.35): + postcss-modules-local-by-default@4.0.5(postcss@8.4.38): dependencies: - icss-utils: 5.1.0(postcss@8.4.35) - postcss: 8.4.35 - postcss-selector-parser: 6.0.15 + icss-utils: 5.1.0(postcss@8.4.38) + postcss: 8.4.38 + postcss-selector-parser: 6.0.16 postcss-value-parser: 4.2.0 - postcss-modules-scope@3.1.1(postcss@8.4.35): + postcss-modules-scope@3.2.0(postcss@8.4.38): dependencies: - postcss: 8.4.35 - postcss-selector-parser: 6.0.15 + postcss: 8.4.38 + postcss-selector-parser: 6.0.16 - postcss-modules-values@4.0.0(postcss@8.4.35): + postcss-modules-values@4.0.0(postcss@8.4.38): dependencies: - icss-utils: 5.1.0(postcss@8.4.35) - postcss: 8.4.35 + icss-utils: 5.1.0(postcss@8.4.38) + postcss: 8.4.38 - postcss-nested@6.0.1(postcss@8.4.35): + postcss-nested@6.0.1(postcss@8.4.38): dependencies: - postcss: 8.4.35 - postcss-selector-parser: 6.0.15 + postcss: 8.4.38 + postcss-selector-parser: 6.0.16 - postcss-selector-parser@6.0.15: + postcss-selector-parser@6.0.16: dependencies: cssesc: 3.0.0 util-deprecate: 1.0.2 @@ -19257,13 +19181,7 @@ snapshots: dependencies: nanoid: 3.3.7 picocolors: 1.0.0 - source-map-js: 1.0.2 - - postcss@8.4.35: - dependencies: - nanoid: 3.3.7 - picocolors: 1.0.0 - source-map-js: 1.0.2 + source-map-js: 1.2.0 postcss@8.4.38: dependencies: @@ -19279,14 +19197,14 @@ snapshots: minimist: 1.2.8 mkdirp-classic: 0.5.3 napi-build-utils: 1.0.2 - node-abi: 3.57.0 + node-abi: 3.58.0 pump: 3.0.0 rc: 1.2.8 simple-get: 4.0.1 tar-fs: 2.1.1 tunnel-agent: 0.6.0 - preline@2.0.3: + preline@2.1.0: dependencies: '@popperjs/core': 2.11.8 @@ -19343,7 +19261,7 @@ snapshots: '@protobufjs/pool': 1.1.0 '@protobufjs/utf8': 1.1.0 '@types/long': 4.0.2 - '@types/node': 20.11.17 + '@types/node': 20.12.7 long: 4.0.0 protobufjs@7.2.6: @@ -19358,7 +19276,7 @@ snapshots: '@protobufjs/path': 1.1.2 '@protobufjs/pool': 1.1.0 '@protobufjs/utf8': 1.1.0 - '@types/node': 20.11.17 + '@types/node': 20.12.7 long: 5.2.3 proxy-addr@2.0.7: @@ -19375,7 +19293,7 @@ snapshots: bn.js: 4.12.0 browserify-rsa: 4.1.0 create-hash: 1.2.0 - parse-asn1: 5.1.6 + parse-asn1: 5.1.7 randombytes: 2.1.0 safe-buffer: 5.2.1 @@ -19403,11 +19321,11 @@ snapshots: qs@6.11.0: dependencies: - side-channel: 1.0.5 + side-channel: 1.0.6 - qs@6.11.2: + qs@6.12.1: dependencies: - side-channel: 1.0.5 + side-channel: 1.0.6 query-string@7.1.3: dependencies: @@ -19430,11 +19348,11 @@ snapshots: quick-format-unescaped@4.0.4: {} - radix3@1.1.0: {} + radix3@1.1.2: {} - rainbow-sprinkles@0.17.1(@vanilla-extract/css@1.14.1)(@vanilla-extract/dynamic@2.1.0): + rainbow-sprinkles@0.17.1(@vanilla-extract/css@1.14.2)(@vanilla-extract/dynamic@2.1.0): dependencies: - '@vanilla-extract/css': 1.14.1 + '@vanilla-extract/css': 1.14.2 '@vanilla-extract/dynamic': 2.1.0 ramda@0.29.0: {} @@ -19526,13 +19444,13 @@ snapshots: prop-types: 15.8.1 react: 18.2.0 - react-docgen-typescript@2.2.2(typescript@5.3.3): + react-docgen-typescript@2.2.2(typescript@5.4.5): dependencies: - typescript: 5.3.3 + typescript: 5.4.5 react-docgen@7.0.3: dependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 '@babel/traverse': 7.24.1 '@babel/types': 7.24.0 '@types/babel__core': 7.20.5 @@ -19559,7 +19477,7 @@ snapshots: react-dom: 18.2.0(react@18.2.0) react-is: 18.1.0 - react-hook-form@7.50.1(react@18.2.0): + react-hook-form@7.51.3(react@18.2.0): dependencies: react: 18.2.0 @@ -19583,35 +19501,35 @@ snapshots: react-refresh@0.14.0: {} - react-remove-scroll-bar@2.3.4(@types/react@18.2.55)(react@18.2.0): + react-remove-scroll-bar@2.3.6(@types/react@18.2.79)(react@18.2.0): dependencies: react: 18.2.0 - react-style-singleton: 2.2.1(@types/react@18.2.55)(react@18.2.0) + react-style-singleton: 2.2.1(@types/react@18.2.79)(react@18.2.0) tslib: 2.6.2 optionalDependencies: - '@types/react': 18.2.55 + '@types/react': 18.2.79 - react-remove-scroll@2.5.5(@types/react@18.2.55)(react@18.2.0): + react-remove-scroll@2.5.5(@types/react@18.2.79)(react@18.2.0): dependencies: react: 18.2.0 - react-remove-scroll-bar: 2.3.4(@types/react@18.2.55)(react@18.2.0) - react-style-singleton: 2.2.1(@types/react@18.2.55)(react@18.2.0) + react-remove-scroll-bar: 2.3.6(@types/react@18.2.79)(react@18.2.0) + react-style-singleton: 2.2.1(@types/react@18.2.79)(react@18.2.0) tslib: 2.6.2 - use-callback-ref: 1.3.1(@types/react@18.2.55)(react@18.2.0) - use-sidecar: 1.1.2(@types/react@18.2.55)(react@18.2.0) + use-callback-ref: 1.3.2(@types/react@18.2.79)(react@18.2.0) + use-sidecar: 1.1.2(@types/react@18.2.79)(react@18.2.0) optionalDependencies: - '@types/react': 18.2.55 + '@types/react': 18.2.79 - react-router-dom@6.22.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0): + react-router-dom@6.22.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0): dependencies: - '@remix-run/router': 1.15.0 + '@remix-run/router': 1.15.3 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - react-router: 6.22.0(react@18.2.0) + react-router: 6.22.3(react@18.2.0) - react-router@6.22.0(react@18.2.0): + react-router@6.22.3(react@18.2.0): dependencies: - '@remix-run/router': 1.15.0 + '@remix-run/router': 1.15.3 react: 18.2.0 react-stately@3.30.1(react@18.2.0): @@ -19641,14 +19559,14 @@ snapshots: '@react-types/shared': 3.22.1(react@18.2.0) react: 18.2.0 - react-style-singleton@2.2.1(@types/react@18.2.55)(react@18.2.0): + react-style-singleton@2.2.1(@types/react@18.2.79)(react@18.2.0): dependencies: get-nonce: 1.0.1 invariant: 2.2.4 react: 18.2.0 tslib: 2.6.2 optionalDependencies: - '@types/react': 18.2.55 + '@types/react': 18.2.79 react-tabs@6.0.2(react@18.2.0): dependencies: @@ -19726,12 +19644,6 @@ snapshots: indent-string: 4.0.0 strip-indent: 3.0.0 - redis-errors@1.2.0: {} - - redis-parser@3.0.0: - dependencies: - redis-errors: 1.2.0 - regenerate-unicode-properties@10.1.1: dependencies: regenerate: 1.4.2 @@ -19742,7 +19654,7 @@ snapshots: regenerator-transform@0.15.2: dependencies: - '@babel/runtime': 7.23.9 + '@babel/runtime': 7.24.4 regex-parser@2.3.0: {} @@ -19797,7 +19709,7 @@ snapshots: require-from-string@2.0.2: {} - require-in-the-middle@7.2.0: + require-in-the-middle@7.3.0: dependencies: debug: 4.3.4 module-details-from-path: 1.0.3 @@ -19818,7 +19730,7 @@ snapshots: adjust-sourcemap-loader: 4.0.0 convert-source-map: 1.9.0 loader-utils: 2.0.4 - postcss: 8.4.35 + postcss: 8.4.38 source-map: 0.6.1 resolve@1.22.8: @@ -19934,7 +19846,7 @@ snapshots: secp256k1@4.0.3: dependencies: - elliptic: 6.5.4 + elliptic: 6.5.5 node-addon-api: 2.0.2 node-gyp-build: 4.8.0 @@ -19979,7 +19891,7 @@ snapshots: transitivePeerDependencies: - supports-color - set-function-length@1.2.1: + set-function-length@1.2.2: dependencies: define-data-property: 1.1.4 es-errors: 1.3.0 @@ -20042,7 +19954,7 @@ snapshots: minimist: 1.2.8 shelljs: 0.8.5 - side-channel@1.0.5: + side-channel@1.0.6: dependencies: call-bind: 1.0.7 es-errors: 1.3.0 @@ -20079,8 +19991,6 @@ snapshots: dependencies: object-path: 0.6.0 - source-map-js@1.0.2: {} - source-map-js@1.2.0: {} source-map-support@0.5.21: @@ -20118,8 +20028,6 @@ snapshots: stackframe@1.3.4: {} - standard-as-callback@2.1.0: {} - statuses@2.0.1: {} std-env@3.7.0: {} @@ -20130,11 +20038,11 @@ snapshots: store2@2.14.3: {} - storyblok-js-client@6.7.1: {} + storyblok-js-client@6.7.2: {} - storybook@8.0.5(@babel/preset-env@7.24.3(@babel/core@7.24.3))(bufferutil@4.0.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(utf-8-validate@5.0.10): + storybook@8.0.8(@babel/preset-env@7.24.4(@babel/core@7.24.4))(bufferutil@4.0.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(utf-8-validate@5.0.10): dependencies: - '@storybook/cli': 8.0.5(@babel/preset-env@7.24.3(@babel/core@7.24.3))(bufferutil@4.0.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(utf-8-validate@5.0.10) + '@storybook/cli': 8.0.8(@babel/preset-env@7.24.4(@babel/core@7.24.4))(bufferutil@4.0.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(utf-8-validate@5.0.10) transitivePeerDependencies: - '@babel/preset-env' - bufferutil @@ -20225,18 +20133,18 @@ snapshots: dependencies: webpack: 5.91.0(esbuild@0.20.2) - styled-jsx@5.1.1(@babel/core@7.24.3)(react@18.2.0): + styled-jsx@5.1.1(@babel/core@7.24.4)(react@18.2.0): dependencies: client-only: 0.0.1 react: 18.2.0 optionalDependencies: - '@babel/core': 7.24.3 + '@babel/core': 7.24.4 sucrase@3.35.0: dependencies: - '@jridgewell/gen-mapping': 0.3.3 + '@jridgewell/gen-mapping': 0.3.5 commander: 4.1.1 - glob: 10.3.10 + glob: 10.3.12 lines-and-columns: 1.2.4 mz: 2.7.0 pirates: 4.0.6 @@ -20268,11 +20176,11 @@ snapshots: tailwind-merge@1.14.0: {} - tailwindcss-animate@1.0.7(tailwindcss@3.4.1): + tailwindcss-animate@1.0.7(tailwindcss@3.4.3): dependencies: - tailwindcss: 3.4.1 + tailwindcss: 3.4.3 - tailwindcss@3.4.1: + tailwindcss@3.4.3: dependencies: '@alloc/quick-lru': 5.2.0 arg: 5.0.2 @@ -20288,12 +20196,12 @@ snapshots: normalize-path: 3.0.0 object-hash: 3.0.0 picocolors: 1.0.0 - postcss: 8.4.35 - postcss-import: 15.1.0(postcss@8.4.35) - postcss-js: 4.0.1(postcss@8.4.35) - postcss-load-config: 4.0.2(postcss@8.4.35) - postcss-nested: 6.0.1(postcss@8.4.35) - postcss-selector-parser: 6.0.15 + postcss: 8.4.38 + postcss-import: 15.1.0(postcss@8.4.38) + postcss-js: 4.0.1(postcss@8.4.38) + postcss-load-config: 4.0.2(postcss@8.4.38) + postcss-nested: 6.0.1(postcss@8.4.38) + postcss-selector-parser: 6.0.16 resolve: 1.22.8 sucrase: 3.35.0 transitivePeerDependencies: @@ -20313,8 +20221,8 @@ snapshots: pump: 3.0.0 tar-stream: 3.1.7 optionalDependencies: - bare-fs: 2.2.2 - bare-path: 2.1.0 + bare-fs: 2.2.3 + bare-path: 2.1.1 tar-stream@2.2.0: dependencies: @@ -20363,12 +20271,12 @@ snapshots: jest-worker: 27.5.1 schema-utils: 3.3.0 serialize-javascript: 6.0.2 - terser: 5.30.2 + terser: 5.30.3 webpack: 5.91.0(esbuild@0.20.2) optionalDependencies: esbuild: 0.20.2 - terser@5.30.2: + terser@5.30.3: dependencies: '@jridgewell/source-map': 0.3.6 acorn: 8.11.3 @@ -20405,7 +20313,7 @@ snapshots: bindings: 1.5.0 bn.js: 4.12.0 create-hmac: 1.1.7 - elliptic: 6.5.4 + elliptic: 6.5.5 nan: 2.19.0 tinybench@2.7.0: {} @@ -20416,11 +20324,9 @@ snapshots: tmp-promise@3.0.3: dependencies: - tmp: 0.2.1 + tmp: 0.2.3 - tmp@0.2.1: - dependencies: - rimraf: 3.0.2 + tmp@0.2.3: {} to-fast-properties@2.0.0: {} @@ -20451,11 +20357,11 @@ snapshots: ts-interface-checker@0.1.13: {} - ts-pnp@1.2.0(typescript@5.3.3): + ts-pnp@1.2.0(typescript@5.4.5): optionalDependencies: - typescript: 5.3.3 + typescript: 5.4.5 - ts-poet@6.6.0: + ts-poet@6.8.1: dependencies: dprint-node: 1.0.8 @@ -20464,11 +20370,11 @@ snapshots: long: 5.2.3 protobufjs: 7.2.6 - ts-proto@1.167.3: + ts-proto@1.172.0: dependencies: case-anything: 2.1.13 protobufjs: 7.2.6 - ts-poet: 6.6.0 + ts-poet: 6.8.1 ts-proto-descriptors: 1.15.0 tsconfig-paths-webpack-plugin@4.1.0: @@ -20489,10 +20395,10 @@ snapshots: tslib@2.6.2: {} - tsutils@3.21.0(typescript@5.3.3): + tsutils@3.21.0(typescript@5.4.5): dependencies: tslib: 1.14.1 - typescript: 5.3.3 + typescript: 5.4.5 tty-browserify@0.0.1: {} @@ -20531,11 +20437,11 @@ snapshots: typescript@4.5.2: {} - typescript@5.3.3: {} + typescript@5.4.5: {} ua-parser-js@1.0.37: {} - ufo@1.4.0: {} + ufo@1.5.3: {} uglify-js@3.17.4: optional: true @@ -20553,7 +20459,7 @@ snapshots: consola: 3.2.3 defu: 6.1.4 mime: 3.0.0 - node-fetch-native: 1.6.2 + node-fetch-native: 1.6.4 pathe: 1.1.2 unfetch@4.2.0: {} @@ -20601,38 +20507,31 @@ snapshots: webpack-sources: 3.2.3 webpack-virtual-modules: 0.6.1 - unstorage@1.10.1(idb-keyval@6.2.1): + unstorage@1.10.2(idb-keyval@6.2.1): dependencies: anymatch: 3.1.3 chokidar: 3.6.0 - destr: 2.0.2 - h3: 1.10.1 - ioredis: 5.3.2 - listhen: 1.6.0 + destr: 2.0.3 + h3: 1.11.1 + listhen: 1.7.2 lru-cache: 10.2.0 mri: 1.2.0 - node-fetch-native: 1.6.2 - ofetch: 1.3.3 - ufo: 1.4.0 + node-fetch-native: 1.6.4 + ofetch: 1.3.4 + ufo: 1.5.3 optionalDependencies: idb-keyval: 6.2.1 transitivePeerDependencies: - - supports-color + - uWebSockets.js untildify@4.0.0: {} untun@0.1.3: dependencies: - citty: 0.1.5 + citty: 0.1.6 consola: 3.2.3 pathe: 1.1.2 - update-browserslist-db@1.0.13(browserslist@4.22.3): - dependencies: - browserslist: 4.22.3 - escalade: 3.1.2 - picocolors: 1.0.0 - update-browserslist-db@1.0.13(browserslist@4.23.0): dependencies: browserslist: 4.23.0 @@ -20653,26 +20552,26 @@ snapshots: url@0.11.3: dependencies: punycode: 1.4.1 - qs: 6.11.2 + qs: 6.12.1 - use-callback-ref@1.3.1(@types/react@18.2.55)(react@18.2.0): + use-callback-ref@1.3.2(@types/react@18.2.79)(react@18.2.0): dependencies: react: 18.2.0 tslib: 2.6.2 optionalDependencies: - '@types/react': 18.2.55 + '@types/react': 18.2.79 use-debounce@9.0.4(react@18.2.0): dependencies: react: 18.2.0 - use-sidecar@1.1.2(@types/react@18.2.55)(react@18.2.0): + use-sidecar@1.1.2(@types/react@18.2.79)(react@18.2.0): dependencies: detect-node-es: 1.1.0 react: 18.2.0 tslib: 2.6.2 optionalDependencies: - '@types/react': 18.2.55 + '@types/react': 18.2.79 use-sync-external-store@1.2.0(react@18.2.0): dependencies: @@ -20690,7 +20589,7 @@ snapshots: is-arguments: 1.1.1 is-generator-function: 1.0.10 is-typed-array: 1.1.13 - which-typed-array: 1.1.14 + which-typed-array: 1.1.15 utila@0.4.0: {} @@ -20707,22 +20606,22 @@ snapshots: vary@1.1.2: {} - vaul@0.9.0(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0): + vaul@0.9.0(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0): dependencies: - '@radix-ui/react-dialog': 1.0.5(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-dialog': 1.0.5(@types/react-dom@18.2.25)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) transitivePeerDependencies: - '@types/react' - '@types/react-dom' - vite-node@1.5.0(@types/node@20.11.17)(terser@5.30.2): + vite-node@1.5.0(@types/node@20.12.7)(terser@5.30.3): dependencies: cac: 6.7.14 debug: 4.3.4 pathe: 1.1.2 picocolors: 1.0.0 - vite: 5.2.8(@types/node@20.11.17)(terser@5.30.2) + vite: 5.2.9(@types/node@20.12.7)(terser@5.30.3) transitivePeerDependencies: - '@types/node' - less @@ -20733,27 +20632,27 @@ snapshots: - supports-color - terser - vite-plugin-node-polyfills@0.17.0(rollup@4.14.3)(vite@5.2.8(@types/node@20.11.17)(terser@5.30.2)): + vite-plugin-node-polyfills@0.17.0(rollup@4.14.3)(vite@5.2.9(@types/node@20.12.7)(terser@5.30.3)): dependencies: '@rollup/plugin-inject': 5.0.5(rollup@4.14.3) buffer-polyfill: buffer@6.0.3 node-stdlib-browser: 1.2.0 process: 0.11.10 - vite: 5.2.8(@types/node@20.11.17)(terser@5.30.2) + vite: 5.2.9(@types/node@20.12.7)(terser@5.30.3) transitivePeerDependencies: - rollup - vite@5.2.8(@types/node@20.11.17)(terser@5.30.2): + vite@5.2.9(@types/node@20.12.7)(terser@5.30.3): dependencies: esbuild: 0.20.2 postcss: 8.4.38 rollup: 4.14.3 optionalDependencies: - '@types/node': 20.11.17 + '@types/node': 20.12.7 fsevents: 2.3.3 - terser: 5.30.2 + terser: 5.30.3 - vitest@1.5.0(@types/node@20.11.17)(jsdom@24.0.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(terser@5.30.2): + vitest@1.5.0(@types/node@20.12.7)(jsdom@24.0.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(terser@5.30.3): dependencies: '@vitest/expect': 1.5.0 '@vitest/runner': 1.5.0 @@ -20765,18 +20664,18 @@ snapshots: debug: 4.3.4 execa: 8.0.1 local-pkg: 0.5.0 - magic-string: 0.30.7 + magic-string: 0.30.10 pathe: 1.1.2 picocolors: 1.0.0 std-env: 3.7.0 strip-literal: 2.1.0 tinybench: 2.7.0 tinypool: 0.8.4 - vite: 5.2.8(@types/node@20.11.17)(terser@5.30.2) - vite-node: 1.5.0(@types/node@20.11.17)(terser@5.30.2) + vite: 5.2.9(@types/node@20.12.7)(terser@5.30.3) + vite-node: 1.5.0(@types/node@20.12.7)(terser@5.30.3) why-is-node-running: 2.2.2 optionalDependencies: - '@types/node': 20.11.17 + '@types/node': 20.12.7 jsdom: 24.0.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) transitivePeerDependencies: - less @@ -20793,11 +20692,11 @@ snapshots: dependencies: xml-name-validator: 5.0.0 - warden-protocol-wardenprotocol-client-ts@file:../ts-client(@cosmjs/proto-signing@0.32.2)(@cosmjs/stargate@0.32.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)): + warden-protocol-wardenprotocol-client-ts@file:../ts-client(@cosmjs/proto-signing@0.32.3)(@cosmjs/stargate@0.32.3(bufferutil@4.0.8)(utf-8-validate@5.0.10)): dependencies: - '@cosmjs/proto-signing': 0.32.2 - '@cosmjs/stargate': 0.32.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@keplr-wallet/types': 0.12.67 + '@cosmjs/proto-signing': 0.32.3 + '@cosmjs/stargate': 0.32.3(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@keplr-wallet/types': 0.12.80 axios: 0.21.4 buffer: 6.0.3 events: 3.3.0 @@ -20836,9 +20735,9 @@ snapshots: dependencies: web3-types: 1.5.0 - web3-eth-abi@4.2.0(typescript@5.3.3)(zod@3.22.4): + web3-eth-abi@4.2.0(typescript@5.4.5)(zod@3.22.4): dependencies: - abitype: 0.7.1(typescript@5.3.3)(zod@3.22.4) + abitype: 0.7.1(typescript@5.4.5)(zod@3.22.4) web3-errors: 1.1.4 web3-types: 1.5.0 web3-utils: 4.2.2 @@ -20857,12 +20756,12 @@ snapshots: web3-utils: 4.2.2 web3-validator: 2.0.5 - web3-eth-contract@4.2.0(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.22.4): + web3-eth-contract@4.3.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4): dependencies: web3-core: 4.3.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) web3-errors: 1.1.4 - web3-eth: 4.4.0(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.22.4) - web3-eth-abi: 4.2.0(typescript@5.3.3)(zod@3.22.4) + web3-eth: 4.5.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) + web3-eth-abi: 4.2.0(typescript@5.4.5)(zod@3.22.4) web3-types: 1.5.0 web3-utils: 4.2.2 web3-validator: 2.0.5 @@ -20873,13 +20772,13 @@ snapshots: - utf-8-validate - zod - web3-eth-ens@4.0.8(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.22.4): + web3-eth-ens@4.2.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4): dependencies: '@adraffy/ens-normalize': 1.10.1 web3-core: 4.3.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) web3-errors: 1.1.4 - web3-eth: 4.4.0(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.22.4) - web3-eth-contract: 4.2.0(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.22.4) + web3-eth: 4.5.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) + web3-eth-contract: 4.3.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) web3-net: 4.0.7(bufferutil@4.0.8)(utf-8-validate@5.0.10) web3-types: 1.5.0 web3-utils: 4.2.2 @@ -20898,11 +20797,11 @@ snapshots: web3-utils: 4.2.2 web3-validator: 2.0.5 - web3-eth-personal@4.0.8(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.22.4): + web3-eth-personal@4.0.8(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4): dependencies: web3-core: 4.3.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) - web3-eth: 4.4.0(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.22.4) - web3-rpc-methods: 1.1.4(bufferutil@4.0.8)(utf-8-validate@5.0.10) + web3-eth: 4.5.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) + web3-rpc-methods: 1.2.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) web3-types: 1.5.0 web3-utils: 4.2.2 web3-validator: 2.0.5 @@ -20913,16 +20812,16 @@ snapshots: - utf-8-validate - zod - web3-eth@4.4.0(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.22.4): + web3-eth@4.5.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4): dependencies: setimmediate: 1.0.5 web3-core: 4.3.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) web3-errors: 1.1.4 - web3-eth-abi: 4.2.0(typescript@5.3.3)(zod@3.22.4) + web3-eth-abi: 4.2.0(typescript@5.4.5)(zod@3.22.4) web3-eth-accounts: 4.1.1 web3-net: 4.0.7(bufferutil@4.0.8)(utf-8-validate@5.0.10) web3-providers-ws: 4.0.7(bufferutil@4.0.8)(utf-8-validate@5.0.10) - web3-rpc-methods: 1.1.4(bufferutil@4.0.8)(utf-8-validate@5.0.10) + web3-rpc-methods: 1.2.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) web3-types: 1.5.0 web3-utils: 4.2.2 web3-validator: 2.0.5 @@ -20936,7 +20835,7 @@ snapshots: web3-net@4.0.7(bufferutil@4.0.8)(utf-8-validate@5.0.10): dependencies: web3-core: 4.3.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) - web3-rpc-methods: 1.1.4(bufferutil@4.0.8)(utf-8-validate@5.0.10) + web3-rpc-methods: 1.2.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) web3-types: 1.5.0 web3-utils: 4.2.2 transitivePeerDependencies: @@ -20972,7 +20871,7 @@ snapshots: - bufferutil - utf-8-validate - web3-rpc-methods@1.1.4(bufferutil@4.0.8)(utf-8-validate@5.0.10): + web3-rpc-methods@1.2.0(bufferutil@4.0.8)(utf-8-validate@5.0.10): dependencies: web3-core: 4.3.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) web3-types: 1.5.0 @@ -21000,21 +20899,21 @@ snapshots: web3-types: 1.5.0 zod: 3.22.4 - web3@4.4.0(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.22.4): + web3@4.7.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4): dependencies: web3-core: 4.3.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) web3-errors: 1.1.4 - web3-eth: 4.4.0(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.22.4) - web3-eth-abi: 4.2.0(typescript@5.3.3)(zod@3.22.4) + web3-eth: 4.5.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) + web3-eth-abi: 4.2.0(typescript@5.4.5)(zod@3.22.4) web3-eth-accounts: 4.1.1 - web3-eth-contract: 4.2.0(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.22.4) - web3-eth-ens: 4.0.8(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.22.4) + web3-eth-contract: 4.3.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) + web3-eth-ens: 4.2.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) web3-eth-iban: 4.0.7 - web3-eth-personal: 4.0.8(bufferutil@4.0.8)(typescript@5.3.3)(utf-8-validate@5.0.10)(zod@3.22.4) + web3-eth-personal: 4.0.8(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4) web3-net: 4.0.7(bufferutil@4.0.8)(utf-8-validate@5.0.10) web3-providers-http: 4.1.0 web3-providers-ws: 4.0.7(bufferutil@4.0.8)(utf-8-validate@5.0.10) - web3-rpc-methods: 1.1.4(bufferutil@4.0.8)(utf-8-validate@5.0.10) + web3-rpc-methods: 1.2.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) web3-types: 1.5.0 web3-utils: 4.2.2 web3-validator: 2.0.5 @@ -21062,7 +20961,7 @@ snapshots: '@webassemblyjs/wasm-parser': 1.12.1 acorn: 8.11.3 acorn-import-assertions: 1.9.0(acorn@8.11.3) - browserslist: 4.22.3 + browserslist: 4.23.0 chrome-trace-event: 1.0.3 enhanced-resolve: 5.16.0 es-module-lexer: 1.5.0 @@ -21115,10 +21014,10 @@ snapshots: is-weakmap: 2.0.2 is-weakset: 2.0.3 - which-typed-array@1.1.14: + which-typed-array@1.1.15: dependencies: available-typed-arrays: 1.0.7 - call-bind: 1.0.6 + call-bind: 1.0.7 for-each: 0.3.3 gopd: 1.0.1 has-tostringtag: 1.0.2 @@ -21195,7 +21094,7 @@ snapshots: yaml@1.10.2: {} - yaml@2.3.4: {} + yaml@2.4.1: {} yocto-queue@0.1.0: {} @@ -21207,18 +21106,10 @@ snapshots: dependencies: tslib: 2.6.2 - zustand@4.5.1(@types/react@18.2.55)(immer@10.0.4)(react@18.2.0): - dependencies: - use-sync-external-store: 1.2.0(react@18.2.0) - optionalDependencies: - '@types/react': 18.2.55 - immer: 10.0.4 - react: 18.2.0 - - zustand@4.5.2(@types/react@18.2.55)(immer@10.0.4)(react@18.2.0): + zustand@4.5.2(@types/react@18.2.79)(immer@10.0.4)(react@18.2.0): dependencies: use-sync-external-store: 1.2.0(react@18.2.0) optionalDependencies: - '@types/react': 18.2.55 + '@types/react': 18.2.79 immer: 10.0.4 react: 18.2.0 diff --git a/spaceward/src/components/AddressAvatar.tsx b/spaceward/src/components/AddressAvatar.tsx index f029da83a..1acb56c92 100644 --- a/spaceward/src/components/AddressAvatar.tsx +++ b/spaceward/src/components/AddressAvatar.tsx @@ -46,7 +46,7 @@ export default function AddressAvatar({ ) : ( - + , VariantProps { - asChild?: boolean; value?: string; split?: boolean; } @@ -39,7 +38,7 @@ const Copy = React.forwardRef(
{value && ( - + )} {showTooltip && ( diff --git a/spaceward/src/features/actions/Actions.tsx b/spaceward/src/features/actions/Actions.tsx index 5e90170df..11846fe64 100644 --- a/spaceward/src/features/actions/Actions.tsx +++ b/spaceward/src/features/actions/Actions.tsx @@ -56,7 +56,7 @@ export function Actions() { {actionsArrays.map((group) => { const group_date = new Date(group?.date); return ( -
+
{group_date.toLocaleDateString("en-GB", { weekday: "long", @@ -76,6 +76,7 @@ export function Actions() { }); return ( diff --git a/spaceward/src/features/assets/Assets.tsx b/spaceward/src/features/assets/Assets.tsx index f5c4f4385..9aabf5e29 100644 --- a/spaceward/src/features/assets/Assets.tsx +++ b/spaceward/src/features/assets/Assets.tsx @@ -38,7 +38,7 @@ async function getEthBalance(address: string) { } export function Assets({ spaceId }: { spaceId: string }) { - const { useKeysBySpaceId } = useQueryHooks(); + const { useKeysBySpaceId, isReady } = useQueryHooks(); const query = useKeysBySpaceId({ request: { spaceId: Long.fromString(spaceId), @@ -50,6 +50,9 @@ export function Assets({ spaceId }: { spaceId: string }) { limit: Long.fromInt(10), }), }, + options: { + enabled: isReady, + }, }); if (query.status === "loading") { @@ -72,7 +75,7 @@ export function Assets({ spaceId }: { spaceId: string }) { return ( <> {query.data?.keys?.map((key) => ( -
+
@@ -92,6 +95,7 @@ export function Assets({ spaceId }: { spaceId: string }) { {key.addresses?.map((addr) => { return (
{query.data?.keys?.map((key) => ( -
+
{key.addresses?.map((addr) => { return (
diff --git a/spaceward/src/features/home/TotalAssetValue.tsx b/spaceward/src/features/home/TotalAssetValue.tsx index 4f7b53986..b1eba7fe1 100644 --- a/spaceward/src/features/home/TotalAssetValue.tsx +++ b/spaceward/src/features/home/TotalAssetValue.tsx @@ -34,7 +34,7 @@ export function TotalAssetValue() { const { currency } = useCurrency(); const { spaceId } = useSpaceId(); - const { useKeysBySpaceId } = useQueryHooks(); + const { useKeysBySpaceId, isReady } = useQueryHooks(); const keysQ = useKeysBySpaceId({ request: { spaceId: Long.fromString(spaceId || ""), @@ -44,7 +44,7 @@ export function TotalAssetValue() { }), }, options: { - enabled: !!spaceId, + enabled: isReady && !!spaceId, }, }); diff --git a/spaceward/src/features/intents/NewIntentButton.tsx b/spaceward/src/features/intents/NewIntentButton.tsx index 48ce70e83..3546483d3 100644 --- a/spaceward/src/features/intents/NewIntentButton.tsx +++ b/spaceward/src/features/intents/NewIntentButton.tsx @@ -39,7 +39,7 @@ export function NewIntentButton({ onClick }: { onClick: () => void }) { return ( - +