From 4fbc8e78ad7609ca0cf5902e8ac05b858a430042 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A9lcio=20Franco?= Date: Tue, 16 Apr 2024 20:52:17 -0400 Subject: [PATCH 1/2] fix: disable autocomplete everywhere (#1195) @HoTandy found more inputs autocompleting automatically. By the way, autocomplete is always a tricky thing to turn off. Now I'm implementing a different strategy by prefixing a few inputs with `search-` id. It makes even passwords apps like `1Password` ignore these fields. Which is also a kind of autocomplete but not handled natively by the browser. Check it out: ### Asset form (1password or any other vault app) | Before | After | | --- | --- | | 1password | Screenshot 2024-03-26 at 14 21 54 | ### Sending transactions (chrome autocomplete) | Before | After | | --- | --- | | before | Screenshot 2024-03-26 at 14 22 48 | ### Updating password (chrome autocomplete) | Before | After | | --- | --- | | Screenshot 2024-03-26 at 14 17 28 | Screenshot 2024-03-26 at 14 24 47 | --- .changeset/curvy-rings-sell.md | 7 + .../components/AccountForm/AccountForm.tsx | 1 + .../ImportAccountForm/ImportAccountForm.tsx | 4 +- .../Account/pages/EditAccount/EditAccount.tsx | 7 +- .../pages/ImportAccount/ImportAccount.tsx | 7 +- .../Asset/components/AssetForm/AssetForm.tsx | 5 + .../Asset/pages/UpsertAsset/UpsertAsset.tsx | 2 +- .../components/SearchInput/SearchInput.tsx | 2 + .../components/NetworkForm/NetworkForm.tsx | 2 + .../Network/pages/AddNetwork/AddNetwork.tsx | 1 + .../pages/UpdateNetwork/UpdateNetwork.tsx | 7 +- .../Send/components/SendSelect/SendSelect.tsx | 2 +- .../systems/Send/pages/SendPage/SendPage.tsx | 1 + .../pages/ChangePassword/ChangePassword.tsx | 2 +- pnpm-lock.yaml | 1193 +++++++---------- 15 files changed, 561 insertions(+), 682 deletions(-) create mode 100644 .changeset/curvy-rings-sell.md diff --git a/.changeset/curvy-rings-sell.md b/.changeset/curvy-rings-sell.md new file mode 100644 index 0000000000..c9458b1882 --- /dev/null +++ b/.changeset/curvy-rings-sell.md @@ -0,0 +1,7 @@ +--- +"@fuel-wallet/connections": patch +"@fuel-wallet/types": patch +"fuels-wallet": patch +--- + +fix: disables auto-complete for more input fields (sending transactions, adding asset and changing password). \ No newline at end of file diff --git a/packages/app/src/systems/Account/components/AccountForm/AccountForm.tsx b/packages/app/src/systems/Account/components/AccountForm/AccountForm.tsx index 969664bead..86dc340adc 100644 --- a/packages/app/src/systems/Account/components/AccountForm/AccountForm.tsx +++ b/packages/app/src/systems/Account/components/AccountForm/AccountForm.tsx @@ -27,6 +27,7 @@ export const AccountForm = ({ form, isLoading }: AccountFormProps) => { diff --git a/packages/app/src/systems/Account/components/ImportAccountForm/ImportAccountForm.tsx b/packages/app/src/systems/Account/components/ImportAccountForm/ImportAccountForm.tsx index 5d32e5c8d7..4844609095 100644 --- a/packages/app/src/systems/Account/components/ImportAccountForm/ImportAccountForm.tsx +++ b/packages/app/src/systems/Account/components/ImportAccountForm/ImportAccountForm.tsx @@ -26,7 +26,8 @@ export const ImportAccountForm = ({ diff --git a/packages/app/src/systems/Account/pages/EditAccount/EditAccount.tsx b/packages/app/src/systems/Account/pages/EditAccount/EditAccount.tsx index a9a93a2ab4..42499ab2f1 100644 --- a/packages/app/src/systems/Account/pages/EditAccount/EditAccount.tsx +++ b/packages/app/src/systems/Account/pages/EditAccount/EditAccount.tsx @@ -24,7 +24,12 @@ export const EditAccount = () => { } return ( - + Edit Account diff --git a/packages/app/src/systems/Account/pages/ImportAccount/ImportAccount.tsx b/packages/app/src/systems/Account/pages/ImportAccount/ImportAccount.tsx index 3c772a1b4d..15fa3c68e4 100644 --- a/packages/app/src/systems/Account/pages/ImportAccount/ImportAccount.tsx +++ b/packages/app/src/systems/Account/pages/ImportAccount/ImportAccount.tsx @@ -17,7 +17,12 @@ export const ImportAccount = () => { } return ( - + Import Account diff --git a/packages/app/src/systems/Asset/components/AssetForm/AssetForm.tsx b/packages/app/src/systems/Asset/components/AssetForm/AssetForm.tsx index ab18a96fd6..67731fe1cd 100644 --- a/packages/app/src/systems/Asset/components/AssetForm/AssetForm.tsx +++ b/packages/app/src/systems/Asset/components/AssetForm/AssetForm.tsx @@ -24,6 +24,7 @@ export function AssetForm({ form, isEditing, showOnlyId }: AssetFormProps) { @@ -42,6 +43,7 @@ export function AssetForm({ form, isEditing, showOnlyId }: AssetFormProps) { @@ -58,6 +60,7 @@ export function AssetForm({ form, isEditing, showOnlyId }: AssetFormProps) { @@ -74,6 +77,7 @@ export function AssetForm({ form, isEditing, showOnlyId }: AssetFormProps) { diff --git a/packages/app/src/systems/Asset/pages/UpsertAsset/UpsertAsset.tsx b/packages/app/src/systems/Asset/pages/UpsertAsset/UpsertAsset.tsx index e2831093f4..68eccbbef9 100644 --- a/packages/app/src/systems/Asset/pages/UpsertAsset/UpsertAsset.tsx +++ b/packages/app/src/systems/Asset/pages/UpsertAsset/UpsertAsset.tsx @@ -52,7 +52,7 @@ export function UpsertAsset() { } return ( -
+ diff --git a/packages/app/src/systems/Core/components/SearchInput/SearchInput.tsx b/packages/app/src/systems/Core/components/SearchInput/SearchInput.tsx index d694296756..cb86dd9558 100644 --- a/packages/app/src/systems/Core/components/SearchInput/SearchInput.tsx +++ b/packages/app/src/systems/Core/components/SearchInput/SearchInput.tsx @@ -23,7 +23,9 @@ export function SearchInput({ } /> @@ -75,6 +76,7 @@ export function NetworkForm({ form, isEditing, isLoading }: NetworkFormProps) { diff --git a/packages/app/src/systems/Network/pages/AddNetwork/AddNetwork.tsx b/packages/app/src/systems/Network/pages/AddNetwork/AddNetwork.tsx index b9eaa928bf..93ba9068b0 100644 --- a/packages/app/src/systems/Network/pages/AddNetwork/AddNetwork.tsx +++ b/packages/app/src/systems/Network/pages/AddNetwork/AddNetwork.tsx @@ -52,6 +52,7 @@ export function AddNetwork() { as="form" gap="$4" onSubmit={form.handleSubmit(onSubmit)} + autoComplete="off" > Add Network diff --git a/packages/app/src/systems/Network/pages/UpdateNetwork/UpdateNetwork.tsx b/packages/app/src/systems/Network/pages/UpdateNetwork/UpdateNetwork.tsx index 651c826b70..eb552d17b1 100644 --- a/packages/app/src/systems/Network/pages/UpdateNetwork/UpdateNetwork.tsx +++ b/packages/app/src/systems/Network/pages/UpdateNetwork/UpdateNetwork.tsx @@ -16,7 +16,12 @@ export function UpdateNetwork() { } return ( - + Update Network diff --git a/packages/app/src/systems/Send/components/SendSelect/SendSelect.tsx b/packages/app/src/systems/Send/components/SendSelect/SendSelect.tsx index ec6e338e44..4e74f0e46f 100644 --- a/packages/app/src/systems/Send/components/SendSelect/SendSelect.tsx +++ b/packages/app/src/systems/Send/components/SendSelect/SendSelect.tsx @@ -77,7 +77,7 @@ export function SendSelect({ diff --git a/packages/app/src/systems/Send/pages/SendPage/SendPage.tsx b/packages/app/src/systems/Send/pages/SendPage/SendPage.tsx index 326ff08140..5e036f8009 100644 --- a/packages/app/src/systems/Send/pages/SendPage/SendPage.tsx +++ b/packages/app/src/systems/Send/pages/SendPage/SendPage.tsx @@ -13,6 +13,7 @@ export function SendPage() { diff --git a/packages/app/src/systems/Settings/pages/ChangePassword/ChangePassword.tsx b/packages/app/src/systems/Settings/pages/ChangePassword/ChangePassword.tsx index db3457545b..531a4ed9d5 100644 --- a/packages/app/src/systems/Settings/pages/ChangePassword/ChangePassword.tsx +++ b/packages/app/src/systems/Settings/pages/ChangePassword/ChangePassword.tsx @@ -120,7 +120,7 @@ export function ChangePassword() { render={({ field }) => ( = 1 < 3' dependencies: - '@algolia/autocomplete-shared': 1.9.3(@algolia/client-search@4.23.3)(algoliasearch@4.19.1) + '@algolia/autocomplete-shared': 1.9.3(@algolia/client-search@4.23.2)(algoliasearch@4.19.1) search-insights: 2.13.0 transitivePeerDependencies: - '@algolia/client-search' - algoliasearch dev: false - /@algolia/autocomplete-preset-algolia@1.9.3(@algolia/client-search@4.23.3)(algoliasearch@4.19.1): + /@algolia/autocomplete-preset-algolia@1.9.3(@algolia/client-search@4.23.2)(algoliasearch@4.19.1): resolution: {integrity: sha512-d4qlt6YmrLMYy95n5TB52wtNDr6EgAIPH81dvvvW8UmuWRgxEtY0NJiPwl/h95JtG2vmRM804M0DSwMCNZlzRA==} peerDependencies: '@algolia/client-search': '>= 4.9.1 < 6' algoliasearch: '>= 4.9.1 < 6' dependencies: - '@algolia/autocomplete-shared': 1.9.3(@algolia/client-search@4.23.3)(algoliasearch@4.19.1) - '@algolia/client-search': 4.23.3 + '@algolia/autocomplete-shared': 1.9.3(@algolia/client-search@4.23.2)(algoliasearch@4.19.1) + '@algolia/client-search': 4.23.2 algoliasearch: 4.19.1 dev: false - /@algolia/autocomplete-shared@1.9.3(@algolia/client-search@4.23.3)(algoliasearch@4.19.1): + /@algolia/autocomplete-shared@1.9.3(@algolia/client-search@4.23.2)(algoliasearch@4.19.1): resolution: {integrity: sha512-Wnm9E4Ye6Rl6sTTqjoymD+l8DjSTHsHboVRYrKgEt8Q7UHm9nYbqhN/i0fhUYA3OAEH7WA8x3jfpnmJm3rKvaQ==} peerDependencies: '@algolia/client-search': '>= 4.9.1 < 6' algoliasearch: '>= 4.9.1 < 6' dependencies: - '@algolia/client-search': 4.23.3 + '@algolia/client-search': 4.23.2 algoliasearch: 4.19.1 dev: false @@ -806,8 +806,8 @@ packages: resolution: {integrity: sha512-XGghi3l0qA38HiqdoUY+wvGyBsGvKZ6U3vTiMBT4hArhP3fOGLXpIINgMiiGjTe4FVlTa5a/7Zf2bwlIHfRqqg==} dev: false - /@algolia/cache-common@4.23.3: - resolution: {integrity: sha512-h9XcNI6lxYStaw32pHpB1TMm0RuxphF+Ik4o7tcQiodEdpKK+wKufY6QXtba7t3k8eseirEMVB83uFFF3Nu54A==} + /@algolia/cache-common@4.23.2: + resolution: {integrity: sha512-OUK/6mqr6CQWxzl/QY0/mwhlGvS6fMtvEPyn/7AHUx96NjqDA4X4+Ju7aXFQKh+m3jW9VPB0B9xvEQgyAnRPNw==} dev: false /@algolia/cache-in-memory@4.19.1: @@ -840,11 +840,11 @@ packages: '@algolia/transporter': 4.19.1 dev: false - /@algolia/client-common@4.23.3: - resolution: {integrity: sha512-l6EiPxdAlg8CYhroqS5ybfIczsGUIAC47slLPOMDeKSVXYG1n0qGiz4RjAHLw2aD0xzh2EXZ7aRguPfz7UKDKw==} + /@algolia/client-common@4.23.2: + resolution: {integrity: sha512-Q2K1FRJBern8kIfZ0EqPvUr3V29ICxCm/q42zInV+VJRjldAD9oTsMGwqUQ26GFMdFYmqkEfCbY4VGAiQhh22g==} dependencies: - '@algolia/requester-common': 4.23.3 - '@algolia/transporter': 4.23.3 + '@algolia/requester-common': 4.23.2 + '@algolia/transporter': 4.23.2 dev: false /@algolia/client-personalization@4.19.1: @@ -863,20 +863,20 @@ packages: '@algolia/transporter': 4.19.1 dev: false - /@algolia/client-search@4.23.3: - resolution: {integrity: sha512-P4VAKFHqU0wx9O+q29Q8YVuaowaZ5EM77rxfmGnkHUJggh28useXQdopokgwMeYw2XUht49WX5RcTQ40rZIabw==} + /@algolia/client-search@4.23.2: + resolution: {integrity: sha512-CxSB29OVGSE7l/iyoHvamMonzq7Ev8lnk/OkzleODZ1iBcCs3JC/XgTIKzN/4RSTrJ9QybsnlrN/bYCGufo7qw==} dependencies: - '@algolia/client-common': 4.23.3 - '@algolia/requester-common': 4.23.3 - '@algolia/transporter': 4.23.3 + '@algolia/client-common': 4.23.2 + '@algolia/requester-common': 4.23.2 + '@algolia/transporter': 4.23.2 dev: false /@algolia/logger-common@4.19.1: resolution: {integrity: sha512-i6pLPZW/+/YXKis8gpmSiNk1lOmYCmRI6+x6d2Qk1OdfvX051nRVdalRbEcVTpSQX6FQAoyeaui0cUfLYW5Elw==} dev: false - /@algolia/logger-common@4.23.3: - resolution: {integrity: sha512-y9kBtmJwiZ9ZZ+1Ek66P0M68mHQzKRxkW5kAAXYN/rdzgDN0d2COsViEFufxJ0pb45K4FRcfC7+33YB4BLrZ+g==} + /@algolia/logger-common@4.23.2: + resolution: {integrity: sha512-jGM49Q7626cXZ7qRAWXn0jDlzvoA1FvN4rKTi1g0hxKsTTSReyYk0i1ADWjChDPl3Q+nSDhJuosM2bBUAay7xw==} dev: false /@algolia/logger-console@4.19.1: @@ -895,8 +895,8 @@ packages: resolution: {integrity: sha512-BisRkcWVxrDzF1YPhAckmi2CFYK+jdMT60q10d7z3PX+w6fPPukxHRnZwooiTUrzFe50UBmLItGizWHP5bDzVQ==} dev: false - /@algolia/requester-common@4.23.3: - resolution: {integrity: sha512-xloIdr/bedtYEGcXCiF2muajyvRhwop4cMZo+K2qzNht0CMzlRkm8YsDdj5IaBhshqfgmBb3rTg4sL4/PpvLYw==} + /@algolia/requester-common@4.23.2: + resolution: {integrity: sha512-3EfpBS0Hri0lGDB5H/BocLt7Vkop0bTTLVUBB844HH6tVycwShmsV6bDR7yXbQvFP1uNpgePRD3cdBCjeHmk6Q==} dev: false /@algolia/requester-node-http@4.19.1: @@ -913,12 +913,12 @@ packages: '@algolia/requester-common': 4.19.1 dev: false - /@algolia/transporter@4.23.3: - resolution: {integrity: sha512-Wjl5gttqnf/gQKJA+dafnD0Y6Yw97yvfY8R9h0dQltX1GXTgNs1zWgvtWW0tHl1EgMdhAyw189uWiZMnL3QebQ==} + /@algolia/transporter@4.23.2: + resolution: {integrity: sha512-GY3aGKBy+8AK4vZh8sfkatDciDVKad5rTY2S10Aefyjh7e7UGBP4zigf42qVXwU8VOPwi7l/L7OACGMOFcjB0Q==} dependencies: - '@algolia/cache-common': 4.23.3 - '@algolia/logger-common': 4.23.3 - '@algolia/requester-common': 4.23.3 + '@algolia/cache-common': 4.23.2 + '@algolia/logger-common': 4.23.2 + '@algolia/requester-common': 4.23.2 dev: false /@ampproject/remapping@2.2.1: @@ -1060,17 +1060,17 @@ packages: transitivePeerDependencies: - supports-color - /@babel/core@7.24.4: - resolution: {integrity: sha512-MBVlMXP+kkl5394RBLSxxk/iLTeVGuXTV3cIDXavPpMMqnSnt6apKgan/U8O3USWZCWZT/TbgfEpKa4uMgN4Dg==} + /@babel/core@7.24.3: + resolution: {integrity: sha512-5FcvN1JHw2sHJChotgx8Ek0lyuh4kCKelgMTTqhYJJtloNvUfpAFMeNQUtdlIaktwrSV9LtCdqwk48wL2wBacQ==} engines: {node: '>=6.9.0'} dependencies: '@ampproject/remapping': 2.3.0 '@babel/code-frame': 7.24.2 - '@babel/generator': 7.24.4 + '@babel/generator': 7.24.1 '@babel/helper-compilation-targets': 7.23.6 - '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.4) - '@babel/helpers': 7.24.4 - '@babel/parser': 7.24.4 + '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.3) + '@babel/helpers': 7.24.1 + '@babel/parser': 7.24.1 '@babel/template': 7.24.0 '@babel/traverse': 7.24.1 '@babel/types': 7.24.0 @@ -1100,8 +1100,8 @@ packages: '@jridgewell/trace-mapping': 0.3.18 jsesc: 2.5.2 - /@babel/generator@7.24.4: - resolution: {integrity: sha512-Xd6+v6SnjWVx/nus+y0l1sxMOTOMBkyL4+BIdbALyatQnAe/SRVjANeDPSCYaX+i1iJmuGSKf3Z+E+V/va1Hvw==} + /@babel/generator@7.24.1: + resolution: {integrity: sha512-DfCRfZsBcrPEHUfuBMgbJ1Ut01Y/itOs+hY2nFLgqsqXd52/iSiVq5TITtUasIUgm+IIKdY2/1I7auiQOEeC9A==} engines: {node: '>=6.9.0'} dependencies: '@babel/types': 7.24.0 @@ -1190,19 +1190,19 @@ packages: semver: 7.5.4 dev: true - /@babel/helper-create-class-features-plugin@7.22.9(@babel/core@7.24.4): + /@babel/helper-create-class-features-plugin@7.22.9(@babel/core@7.24.3): resolution: {integrity: sha512-Pwyi89uO4YrGKxL/eNJ8lfEH55DnRloGPOseaA8NFNL6jAUnn+KccaISiFazCj5IolPPDjGSdzQzXVzODVRqUQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.3 '@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.22.5 '@babel/helper-optimise-call-expression': 7.22.5 - '@babel/helper-replace-supers': 7.22.9(@babel/core@7.24.4) + '@babel/helper-replace-supers': 7.22.9(@babel/core@7.24.3) '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 '@babel/helper-split-export-declaration': 7.22.6 semver: 7.5.4 @@ -1220,13 +1220,13 @@ packages: semver: 7.5.4 dev: true - /@babel/helper-create-regexp-features-plugin@7.22.9(@babel/core@7.24.4): + /@babel/helper-create-regexp-features-plugin@7.22.9(@babel/core@7.24.3): resolution: {integrity: sha512-+svjVa/tFwsNSG4NEy1h85+HQ5imbT92Q5/bgtS7P0GTQlP8WuFdqsiABmQouhiFGyV66oGxZFpeYHza1rNsKw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.3 '@babel/helper-annotate-as-pure': 7.22.5 regexpu-core: 5.3.2 semver: 7.5.4 @@ -1247,12 +1247,12 @@ packages: - supports-color dev: true - /@babel/helper-define-polyfill-provider@0.4.2(@babel/core@7.24.4): + /@babel/helper-define-polyfill-provider@0.4.2(@babel/core@7.24.3): resolution: {integrity: sha512-k0qnnOqHn5dK9pZpfD5XXZ9SojAITdCKRn2Lp6rnDGzIbaP0rHyMPk/4wsSxVBVz4RfN0q6VpXWP2pDGIoQ7hw==} peerDependencies: '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.3 '@babel/helper-compilation-targets': 7.23.6 '@babel/helper-plugin-utils': 7.22.5 debug: 4.3.4 @@ -1340,13 +1340,13 @@ packages: '@babel/helper-validator-identifier': 7.22.20 dev: true - /@babel/helper-module-transforms@7.22.9(@babel/core@7.24.4): + /@babel/helper-module-transforms@7.22.9(@babel/core@7.24.3): resolution: {integrity: sha512-t+WA2Xn5K+rTeGtC8jCsdAH52bjggG5TKRuRrAGNM/mjIbO4GxvlLMFOEz9wXY5I2XQ60PMFsAG2WIcG82dQMQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.3 '@babel/helper-environment-visitor': 7.22.5 '@babel/helper-module-imports': 7.22.5 '@babel/helper-simple-access': 7.22.5 @@ -1380,13 +1380,13 @@ packages: '@babel/helper-split-export-declaration': 7.22.6 '@babel/helper-validator-identifier': 7.22.20 - /@babel/helper-module-transforms@7.23.3(@babel/core@7.24.4): + /@babel/helper-module-transforms@7.23.3(@babel/core@7.24.3): resolution: {integrity: sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.3 '@babel/helper-environment-visitor': 7.22.20 '@babel/helper-module-imports': 7.22.15 '@babel/helper-simple-access': 7.22.5 @@ -1416,13 +1416,13 @@ packages: '@babel/helper-wrap-function': 7.22.9 dev: true - /@babel/helper-remap-async-to-generator@7.22.9(@babel/core@7.24.4): + /@babel/helper-remap-async-to-generator@7.22.9(@babel/core@7.24.3): resolution: {integrity: sha512-8WWC4oR4Px+tr+Fp0X3RHDVfINGpF3ad1HIbrc8A77epiR6eMMc6jsgozkzT2uDiOOdoS9cLIQ+XD2XvI2WSmQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.3 '@babel/helper-annotate-as-pure': 7.22.5 '@babel/helper-environment-visitor': 7.22.5 '@babel/helper-wrap-function': 7.22.9 @@ -1452,13 +1452,13 @@ packages: '@babel/helper-optimise-call-expression': 7.22.5 dev: true - /@babel/helper-replace-supers@7.22.9(@babel/core@7.24.4): + /@babel/helper-replace-supers@7.22.9(@babel/core@7.24.3): resolution: {integrity: sha512-LJIKvvpgPOPUThdYqcX6IXRuIcTkcAub0IaDRGCZH0p5GPUp7PhRU9QVgFcDDd51BaPkk77ZjqFwh6DZTAEmGg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.3 '@babel/helper-environment-visitor': 7.22.20 '@babel/helper-member-expression-to-functions': 7.22.5 '@babel/helper-optimise-call-expression': 7.22.5 @@ -1541,8 +1541,8 @@ packages: transitivePeerDependencies: - supports-color - /@babel/helpers@7.24.4: - resolution: {integrity: sha512-FewdlZbSiwaVGlgT1DPANDuCHaDMiOo+D/IDYRFYjHOuv66xMSJ7fQwwODwRNAPkADIO/z1EoF/l2BCWlWABDw==} + /@babel/helpers@7.24.1: + resolution: {integrity: sha512-BpU09QqEe6ZCHuIHFphEFgvNSrubve1FtyMton26ekZ85gRGi6LrTF7zArARp2YvyFxloeiRmtSCq5sjh1WqIg==} engines: {node: '>=6.9.0'} dependencies: '@babel/template': 7.24.0 @@ -1597,8 +1597,8 @@ packages: dependencies: '@babel/types': 7.24.0 - /@babel/parser@7.24.4: - resolution: {integrity: sha512-zTvEBcghmeBma9QIGunWevvBAp4/Qu9Bdq+2k0Ot4fVMD6v3dsC9WOcRSKk7tRRyBM/53yKMJko9xOatGQAwSg==} + /@babel/parser@7.24.1: + resolution: {integrity: sha512-Zo9c7N3xdOIQrNip7Lc9wvRPzlRtovHVE4lkz8WEDr7uYh/GMQhSiIgFxGIArRHYdJE5kxtZjAf8rT0xhdLCzg==} engines: {node: '>=6.0.0'} hasBin: true dependencies: @@ -1614,13 +1614,13 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.22.5(@babel/core@7.24.4): + /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.22.5(@babel/core@7.24.3): resolution: {integrity: sha512-NP1M5Rf+u2Gw9qfSO4ihjcTGW5zXTi36ITLd4/EoAcEhIZ0yjMqmftDNl3QC19CX7olhrjpyU454g/2W7X0jvQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -1636,16 +1636,16 @@ packages: '@babel/plugin-transform-optional-chaining': 7.22.6(@babel/core@7.23.2) dev: true - /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.22.5(@babel/core@7.24.4): + /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.22.5(@babel/core@7.24.3): resolution: {integrity: sha512-31Bb65aZaUwqCbWMnZPduIZxCBngHFlzyN6Dq6KAJjtx+lx6ohKHubc61OomYi7XwVD4Ol0XCVz4h+pYFR048g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.13.0 dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - '@babel/plugin-transform-optional-chaining': 7.22.6(@babel/core@7.24.4) + '@babel/plugin-transform-optional-chaining': 7.22.6(@babel/core@7.24.3) dev: true /@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.24.0): @@ -1709,13 +1709,13 @@ packages: '@babel/core': 7.23.2 dev: true - /@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.4): + /@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.3): resolution: {integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.3 dev: true /@babel/plugin-proposal-unicode-property-regex@7.18.6(@babel/core@7.23.2): @@ -1730,15 +1730,15 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-proposal-unicode-property-regex@7.18.6(@babel/core@7.24.4): + /@babel/plugin-proposal-unicode-property-regex@7.18.6(@babel/core@7.24.3): resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==} engines: {node: '>=4'} deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-unicode-property-regex instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.4 - '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.24.4) + '@babel/core': 7.24.3 + '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.24.3) '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -1759,12 +1759,12 @@ packages: '@babel/core': 7.24.0 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.24.4): + /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.24.3): resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -1793,12 +1793,12 @@ packages: '@babel/core': 7.24.0 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.24.4): + /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.24.3): resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -1812,13 +1812,13 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.24.4): + /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.24.3): resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -1831,12 +1831,12 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.24.4): + /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.24.3): resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -1849,12 +1849,12 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.24.4): + /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.24.3): resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -1868,13 +1868,13 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-flow@7.22.5(@babel/core@7.24.4): + /@babel/plugin-syntax-flow@7.22.5(@babel/core@7.24.3): resolution: {integrity: sha512-9RdCl0i+q0QExayk2nOS7853w08yLucnnPML6EN9S8fgMPVtdLDCdx/cOQ/i44Lb9UeQX9A35yaqBBOMMZxPxQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -1898,13 +1898,13 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-import-assertions@7.22.5(@babel/core@7.24.4): + /@babel/plugin-syntax-import-assertions@7.22.5(@babel/core@7.24.3): resolution: {integrity: sha512-rdV97N7KqsRzeNGoWUOK6yUsWarLjE5Su/Snk9IYPU9CwkWHs4t+rTGOvffTR8XGkJMTAdLfO0xVnXm8wugIJg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -1918,13 +1918,13 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-import-attributes@7.22.5(@babel/core@7.24.4): + /@babel/plugin-syntax-import-attributes@7.22.5(@babel/core@7.24.3): resolution: {integrity: sha512-KwvoWDeNKPETmozyFE0P2rOLqh39EoQHNjqizrI5B8Vt0ZNS7M56s7dAiAqbYfiAYOuIzIh96z3iR2ktgu3tEg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -1945,12 +1945,12 @@ packages: '@babel/core': 7.24.0 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.24.4): + /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.24.3): resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -1971,12 +1971,12 @@ packages: '@babel/core': 7.24.0 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.24.4): + /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.24.3): resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -1999,13 +1999,13 @@ packages: '@babel/core': 7.24.0 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-jsx@7.22.5(@babel/core@7.24.4): + /@babel/plugin-syntax-jsx@7.22.5(@babel/core@7.24.3): resolution: {integrity: sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -2026,12 +2026,12 @@ packages: '@babel/core': 7.24.0 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.24.4): + /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.24.3): resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -2052,12 +2052,12 @@ packages: '@babel/core': 7.24.0 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.24.4): + /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.24.3): resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -2078,12 +2078,12 @@ packages: '@babel/core': 7.24.0 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.24.4): + /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.24.3): resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -2104,12 +2104,12 @@ packages: '@babel/core': 7.24.0 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.24.4): + /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.24.3): resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -2130,12 +2130,12 @@ packages: '@babel/core': 7.24.0 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.24.4): + /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.24.3): resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -2156,12 +2156,12 @@ packages: '@babel/core': 7.24.0 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.24.4): + /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.24.3): resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -2175,13 +2175,13 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.24.4): + /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.24.3): resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -2204,13 +2204,13 @@ packages: '@babel/core': 7.24.0 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.24.4): + /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.24.3): resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -2244,14 +2244,14 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.24.4): + /@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.24.3): resolution: {integrity: sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.24.4 - '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.24.4) + '@babel/core': 7.24.3 + '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.24.3) '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -2275,13 +2275,13 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-arrow-functions@7.22.5(@babel/core@7.24.4): + /@babel/plugin-transform-arrow-functions@7.22.5(@babel/core@7.24.3): resolution: {integrity: sha512-26lTNXoVRdAnsaDXPpvCNUq+OVWEVC6bx7Vvz9rC53F2bagUWW4u4ii2+h8Fejfh7RYqPxn+libeFBBck9muEw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -2298,17 +2298,17 @@ packages: '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.2) dev: true - /@babel/plugin-transform-async-generator-functions@7.22.7(@babel/core@7.24.4): + /@babel/plugin-transform-async-generator-functions@7.22.7(@babel/core@7.24.3): resolution: {integrity: sha512-7HmE7pk/Fmke45TODvxvkxRMV9RazV+ZZzhOL9AG8G29TLrr3jkjwF7uJfxZ30EoXpO+LJkq4oA8NjO2DTnEDg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.3 '@babel/helper-environment-visitor': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-remap-async-to-generator': 7.22.9(@babel/core@7.24.4) - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.4) + '@babel/helper-remap-async-to-generator': 7.22.9(@babel/core@7.24.3) + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.3) dev: true /@babel/plugin-transform-async-to-generator@7.22.5(@babel/core@7.23.2): @@ -2323,16 +2323,16 @@ packages: '@babel/helper-remap-async-to-generator': 7.22.9(@babel/core@7.23.2) dev: true - /@babel/plugin-transform-async-to-generator@7.22.5(@babel/core@7.24.4): + /@babel/plugin-transform-async-to-generator@7.22.5(@babel/core@7.24.3): resolution: {integrity: sha512-b1A8D8ZzE/VhNDoV1MSJTnpKkCG5bJo+19R4o4oy03zM7ws8yEMK755j61Dc3EyvdysbqH5BOOTquJ7ZX9C6vQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.3 '@babel/helper-module-imports': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-remap-async-to-generator': 7.22.9(@babel/core@7.24.4) + '@babel/helper-remap-async-to-generator': 7.22.9(@babel/core@7.24.3) dev: true /@babel/plugin-transform-block-scoped-functions@7.22.5(@babel/core@7.23.2): @@ -2355,13 +2355,13 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-block-scoped-functions@7.22.5(@babel/core@7.24.4): + /@babel/plugin-transform-block-scoped-functions@7.22.5(@babel/core@7.24.3): resolution: {integrity: sha512-tdXZ2UdknEKQWKJP1KMNmuF5Lx3MymtMN/pvA+p/VEkhK8jVcQ1fzSy8KM9qRYhAf2/lV33hoMPKI/xaI9sADA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -2385,13 +2385,13 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-block-scoping@7.22.5(@babel/core@7.24.4): + /@babel/plugin-transform-block-scoping@7.22.5(@babel/core@7.24.3): resolution: {integrity: sha512-EcACl1i5fSQ6bt+YGuU/XGCeZKStLmyVGytWkpyhCLeQVA0eu6Wtiw92V+I1T/hnezUv7j74dA/Ro69gWcU+hg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -2406,14 +2406,14 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-class-properties@7.22.5(@babel/core@7.24.4): + /@babel/plugin-transform-class-properties@7.22.5(@babel/core@7.24.3): resolution: {integrity: sha512-nDkQ0NfkOhPTq8YCLiWNxp1+f9fCobEjCb0n8WdbNUBc4IB5V7P1QnX9IjpSoquKrXF5SKojHleVNs2vGeHCHQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.4 - '@babel/helper-create-class-features-plugin': 7.22.9(@babel/core@7.24.4) + '@babel/core': 7.24.3 + '@babel/helper-create-class-features-plugin': 7.22.9(@babel/core@7.24.3) '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -2429,16 +2429,16 @@ packages: '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.23.2) dev: true - /@babel/plugin-transform-class-static-block@7.22.5(@babel/core@7.24.4): + /@babel/plugin-transform-class-static-block@7.22.5(@babel/core@7.24.3): resolution: {integrity: sha512-SPToJ5eYZLxlnp1UzdARpOGeC2GbHvr9d/UV0EukuVx8atktg194oe+C5BqQ8jRTkgLRVOPYeXRSBg1IlMoVRA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.12.0 dependencies: - '@babel/core': 7.24.4 - '@babel/helper-create-class-features-plugin': 7.22.9(@babel/core@7.24.4) + '@babel/core': 7.24.3 + '@babel/helper-create-class-features-plugin': 7.22.9(@babel/core@7.24.3) '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.24.4) + '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.24.3) dev: true /@babel/plugin-transform-classes@7.22.6(@babel/core@7.23.2): @@ -2477,20 +2477,20 @@ packages: globals: 11.12.0 dev: true - /@babel/plugin-transform-classes@7.22.6(@babel/core@7.24.4): + /@babel/plugin-transform-classes@7.22.6(@babel/core@7.24.3): resolution: {integrity: sha512-58EgM6nuPNG6Py4Z3zSuu0xWu2VfodiMi72Jt5Kj2FECmaYk1RrTXA45z6KBFsu9tRgwQDwIiY4FXTt+YsSFAQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.3 '@babel/helper-annotate-as-pure': 7.22.5 '@babel/helper-compilation-targets': 7.22.10 '@babel/helper-environment-visitor': 7.22.5 '@babel/helper-function-name': 7.22.5 '@babel/helper-optimise-call-expression': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-replace-supers': 7.22.9(@babel/core@7.24.4) + '@babel/helper-replace-supers': 7.22.9(@babel/core@7.24.3) '@babel/helper-split-export-declaration': 7.22.6 globals: 11.12.0 dev: true @@ -2517,13 +2517,13 @@ packages: '@babel/template': 7.24.0 dev: true - /@babel/plugin-transform-computed-properties@7.22.5(@babel/core@7.24.4): + /@babel/plugin-transform-computed-properties@7.22.5(@babel/core@7.24.3): resolution: {integrity: sha512-4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.22.5 '@babel/template': 7.24.0 dev: true @@ -2548,13 +2548,13 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-destructuring@7.22.5(@babel/core@7.24.4): + /@babel/plugin-transform-destructuring@7.22.5(@babel/core@7.24.3): resolution: {integrity: sha512-GfqcFuGW8vnEqTUBM7UtPd5A4q797LTvvwKxXTgRsFjoqaJiEg9deBG6kWeQYkVEL569NpnmpC0Pkr/8BLKGnQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -2569,14 +2569,14 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-dotall-regex@7.22.5(@babel/core@7.24.4): + /@babel/plugin-transform-dotall-regex@7.22.5(@babel/core@7.24.3): resolution: {integrity: sha512-5/Yk9QxCQCl+sOIB1WelKnVRxTJDSAIxtJLL2/pqL14ZVlbH0fUQUZa/T5/UnQtBNgghR7mfB8ERBKyKPCi7Vw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.4 - '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.24.4) + '@babel/core': 7.24.3 + '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.24.3) '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -2590,13 +2590,13 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-duplicate-keys@7.22.5(@babel/core@7.24.4): + /@babel/plugin-transform-duplicate-keys@7.22.5(@babel/core@7.24.3): resolution: {integrity: sha512-dEnYD+9BBgld5VBXHnF/DbYGp3fqGMsyxKbtD1mDyIA7AkTSpKXFhCVuj/oQVOoALfBs77DudA0BE4d5mcpmqw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -2611,15 +2611,15 @@ packages: '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.2) dev: true - /@babel/plugin-transform-dynamic-import@7.22.5(@babel/core@7.24.4): + /@babel/plugin-transform-dynamic-import@7.22.5(@babel/core@7.24.3): resolution: {integrity: sha512-0MC3ppTB1AMxd8fXjSrbPa7LT9hrImt+/fcj+Pg5YMD7UQyWp/02+JWpdnCymmsXwIx5Z+sYn1bwCn4ZJNvhqQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.4) + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.3) dev: true /@babel/plugin-transform-exponentiation-operator@7.22.5(@babel/core@7.23.2): @@ -2633,13 +2633,13 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-exponentiation-operator@7.22.5(@babel/core@7.24.4): + /@babel/plugin-transform-exponentiation-operator@7.22.5(@babel/core@7.24.3): resolution: {integrity: sha512-vIpJFNM/FjZ4rh1myqIya9jXwrwwgFRHPjT3DkUA9ZLHuzox8jiXkOLvwm1H+PQIP3CqfC++WPKeuDi0Sjdj1g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.3 '@babel/helper-builder-binary-assignment-operator-visitor': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -2655,15 +2655,15 @@ packages: '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.2) dev: true - /@babel/plugin-transform-export-namespace-from@7.22.5(@babel/core@7.24.4): + /@babel/plugin-transform-export-namespace-from@7.22.5(@babel/core@7.24.3): resolution: {integrity: sha512-X4hhm7FRnPgd4nDA4b/5V280xCx6oL7Oob5+9qVS5C13Zq4bh1qq7LU0GgRU6b5dBWBvhGaXYVB4AcN6+ol6vg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.4) + '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.3) dev: true /@babel/plugin-transform-flow-strip-types@7.22.5(@babel/core@7.24.0): @@ -2677,15 +2677,15 @@ packages: '@babel/plugin-syntax-flow': 7.22.5(@babel/core@7.24.0) dev: true - /@babel/plugin-transform-flow-strip-types@7.22.5(@babel/core@7.24.4): + /@babel/plugin-transform-flow-strip-types@7.22.5(@babel/core@7.24.3): resolution: {integrity: sha512-tujNbZdxdG0/54g/oua8ISToaXTFBf8EnSb5PgQSciIXWOWKX3S4+JR7ZE9ol8FZwf9kxitzkGQ+QWeov/mCiA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-flow': 7.22.5(@babel/core@7.24.4) + '@babel/plugin-syntax-flow': 7.22.5(@babel/core@7.24.3) dev: true /@babel/plugin-transform-for-of@7.22.5(@babel/core@7.23.2): @@ -2708,13 +2708,13 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-for-of@7.22.5(@babel/core@7.24.4): + /@babel/plugin-transform-for-of@7.22.5(@babel/core@7.24.3): resolution: {integrity: sha512-3kxQjX1dU9uudwSshyLeEipvrLjBCVthCgeTp6CzE/9JYrlAIaeekVxRpCWsDDfYTfRZRoCeZatCQvwo+wvK8A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -2742,13 +2742,13 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-function-name@7.22.5(@babel/core@7.24.4): + /@babel/plugin-transform-function-name@7.22.5(@babel/core@7.24.3): resolution: {integrity: sha512-UIzQNMS0p0HHiQm3oelztj+ECwFnj+ZRV4KnguvlsD2of1whUeM6o7wGNj6oLwcDoAXQ8gEqfgC24D+VdIcevg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.3 '@babel/helper-compilation-targets': 7.22.10 '@babel/helper-function-name': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 @@ -2765,15 +2765,15 @@ packages: '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.2) dev: true - /@babel/plugin-transform-json-strings@7.22.5(@babel/core@7.24.4): + /@babel/plugin-transform-json-strings@7.22.5(@babel/core@7.24.3): resolution: {integrity: sha512-DuCRB7fu8MyTLbEQd1ew3R85nx/88yMoqo2uPSjevMj3yoN7CDM8jkgrY0wmVxfJZyJ/B9fE1iq7EQppWQmR5A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.4) + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.3) dev: true /@babel/plugin-transform-literals@7.22.5(@babel/core@7.23.2): @@ -2796,13 +2796,13 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-literals@7.22.5(@babel/core@7.24.4): + /@babel/plugin-transform-literals@7.22.5(@babel/core@7.24.3): resolution: {integrity: sha512-fTLj4D79M+mepcw3dgFBTIDYpbcB9Sm0bpm4ppXPaO+U+PKFFyV9MGRvS0gvGw62sd10kT5lRMKXAADb9pWy8g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -2817,15 +2817,15 @@ packages: '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.2) dev: true - /@babel/plugin-transform-logical-assignment-operators@7.22.5(@babel/core@7.24.4): + /@babel/plugin-transform-logical-assignment-operators@7.22.5(@babel/core@7.24.3): resolution: {integrity: sha512-MQQOUW1KL8X0cDWfbwYP+TbVbZm16QmQXJQ+vndPtH/BoO0lOKpVoEDMI7+PskYxH+IiE0tS8xZye0qr1lGzSA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.4) + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.3) dev: true /@babel/plugin-transform-member-expression-literals@7.22.5(@babel/core@7.23.2): @@ -2848,13 +2848,13 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-member-expression-literals@7.22.5(@babel/core@7.24.4): + /@babel/plugin-transform-member-expression-literals@7.22.5(@babel/core@7.24.3): resolution: {integrity: sha512-RZEdkNtzzYCFl9SE9ATaUMTj2hqMb4StarOJLrZRbqqU4HSBE7UlBw9WBWQiDzrJZJdUWiMTVDI6Gv/8DPvfew==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -2869,14 +2869,14 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-modules-amd@7.22.5(@babel/core@7.24.4): + /@babel/plugin-transform-modules-amd@7.22.5(@babel/core@7.24.3): resolution: {integrity: sha512-R+PTfLTcYEmb1+kK7FNkhQ1gP4KgjpSO6HfH9+f8/yfp2Nt3ggBjiVpRwmwTlfqZLafYKJACy36yDXlEmI9HjQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.4 - '@babel/helper-module-transforms': 7.22.9(@babel/core@7.24.4) + '@babel/core': 7.24.3 + '@babel/helper-module-transforms': 7.22.9(@babel/core@7.24.3) '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -2904,14 +2904,14 @@ packages: '@babel/helper-simple-access': 7.22.5 dev: true - /@babel/plugin-transform-modules-commonjs@7.22.5(@babel/core@7.24.4): + /@babel/plugin-transform-modules-commonjs@7.22.5(@babel/core@7.24.3): resolution: {integrity: sha512-B4pzOXj+ONRmuaQTg05b3y/4DuFz3WcCNAXPLb2Q0GT0TrGKGxNKV4jwsXts+StaM0LQczZbOpj8o1DLPDJIiA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.4 - '@babel/helper-module-transforms': 7.22.9(@babel/core@7.24.4) + '@babel/core': 7.24.3 + '@babel/helper-module-transforms': 7.22.9(@babel/core@7.24.3) '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-simple-access': 7.22.5 dev: true @@ -2929,15 +2929,15 @@ packages: '@babel/helper-validator-identifier': 7.22.5 dev: true - /@babel/plugin-transform-modules-systemjs@7.22.5(@babel/core@7.24.4): + /@babel/plugin-transform-modules-systemjs@7.22.5(@babel/core@7.24.3): resolution: {integrity: sha512-emtEpoaTMsOs6Tzz+nbmcePl6AKVtS1yC4YNAeMun9U8YCsgadPNxnOPQ8GhHFB2qdx+LZu9LgoC0Lthuu05DQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.3 '@babel/helper-hoist-variables': 7.22.5 - '@babel/helper-module-transforms': 7.22.9(@babel/core@7.24.4) + '@babel/helper-module-transforms': 7.22.9(@babel/core@7.24.3) '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-validator-identifier': 7.22.5 dev: true @@ -2953,14 +2953,14 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-modules-umd@7.22.5(@babel/core@7.24.4): + /@babel/plugin-transform-modules-umd@7.22.5(@babel/core@7.24.3): resolution: {integrity: sha512-+S6kzefN/E1vkSsKx8kmQuqeQsvCKCd1fraCM7zXm4SFoggI099Tr4G8U81+5gtMdUeMQ4ipdQffbKLX0/7dBQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.4 - '@babel/helper-module-transforms': 7.22.9(@babel/core@7.24.4) + '@babel/core': 7.24.3 + '@babel/helper-module-transforms': 7.22.9(@babel/core@7.24.3) '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -2975,14 +2975,14 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.24.4): + /@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.24.3): resolution: {integrity: sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.24.4 - '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.24.4) + '@babel/core': 7.24.3 + '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.24.3) '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -2996,13 +2996,13 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-new-target@7.22.5(@babel/core@7.24.4): + /@babel/plugin-transform-new-target@7.22.5(@babel/core@7.24.3): resolution: {integrity: sha512-AsF7K0Fx/cNKVyk3a+DW0JLo+Ua598/NxMRvxDnkpCIGFh43+h/v2xyhRUYf6oD8gE4QtL83C7zZVghMjHd+iw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -3017,15 +3017,15 @@ packages: '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.2) dev: true - /@babel/plugin-transform-nullish-coalescing-operator@7.22.5(@babel/core@7.24.4): + /@babel/plugin-transform-nullish-coalescing-operator@7.22.5(@babel/core@7.24.3): resolution: {integrity: sha512-6CF8g6z1dNYZ/VXok5uYkkBBICHZPiGEl7oDnAx2Mt1hlHVHOSIKWJaXHjQJA5VB43KZnXZDIexMchY4y2PGdA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.4) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.3) dev: true /@babel/plugin-transform-numeric-separator@7.22.5(@babel/core@7.23.2): @@ -3039,15 +3039,15 @@ packages: '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.2) dev: true - /@babel/plugin-transform-numeric-separator@7.22.5(@babel/core@7.24.4): + /@babel/plugin-transform-numeric-separator@7.22.5(@babel/core@7.24.3): resolution: {integrity: sha512-NbslED1/6M+sXiwwtcAB/nieypGw02Ejf4KtDeMkCEpP6gWFMX1wI9WKYua+4oBneCCEmulOkRpwywypVZzs/g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.4) + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.3) dev: true /@babel/plugin-transform-object-rest-spread@7.22.5(@babel/core@7.23.2): @@ -3064,18 +3064,18 @@ packages: '@babel/plugin-transform-parameters': 7.22.5(@babel/core@7.23.2) dev: true - /@babel/plugin-transform-object-rest-spread@7.22.5(@babel/core@7.24.4): + /@babel/plugin-transform-object-rest-spread@7.22.5(@babel/core@7.24.3): resolution: {integrity: sha512-Kk3lyDmEslH9DnvCDA1s1kkd3YWQITiBOHngOtDL9Pt6BZjzqb6hiOlb8VfjiiQJ2unmegBqZu0rx5RxJb5vmQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/compat-data': 7.22.9 - '@babel/core': 7.24.4 + '@babel/core': 7.24.3 '@babel/helper-compilation-targets': 7.22.10 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.4) - '@babel/plugin-transform-parameters': 7.22.5(@babel/core@7.24.4) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.3) + '@babel/plugin-transform-parameters': 7.22.5(@babel/core@7.24.3) dev: true /@babel/plugin-transform-object-super@7.22.5(@babel/core@7.23.2): @@ -3100,15 +3100,15 @@ packages: '@babel/helper-replace-supers': 7.22.9(@babel/core@7.24.0) dev: true - /@babel/plugin-transform-object-super@7.22.5(@babel/core@7.24.4): + /@babel/plugin-transform-object-super@7.22.5(@babel/core@7.24.3): resolution: {integrity: sha512-klXqyaT9trSjIUrcsYIfETAzmOEZL3cBYqOYLJxBHfMFFggmXOv+NYSX/Jbs9mzMVESw/WycLFPRx8ba/b2Ipw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-replace-supers': 7.22.9(@babel/core@7.24.4) + '@babel/helper-replace-supers': 7.22.9(@babel/core@7.24.3) dev: true /@babel/plugin-transform-optional-catch-binding@7.22.5(@babel/core@7.23.2): @@ -3122,15 +3122,15 @@ packages: '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.2) dev: true - /@babel/plugin-transform-optional-catch-binding@7.22.5(@babel/core@7.24.4): + /@babel/plugin-transform-optional-catch-binding@7.22.5(@babel/core@7.24.3): resolution: {integrity: sha512-pH8orJahy+hzZje5b8e2QIlBWQvGpelS76C63Z+jhZKsmzfNaPQ+LaW6dcJ9bxTpo1mtXbgHwy765Ro3jftmUg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.4) + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.3) dev: true /@babel/plugin-transform-optional-chaining@7.22.6(@babel/core@7.23.2): @@ -3145,16 +3145,16 @@ packages: '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.2) dev: true - /@babel/plugin-transform-optional-chaining@7.22.6(@babel/core@7.24.4): + /@babel/plugin-transform-optional-chaining@7.22.6(@babel/core@7.24.3): resolution: {integrity: sha512-Vd5HiWml0mDVtcLHIoEU5sw6HOUW/Zk0acLs/SAeuLzkGNOPc9DB4nkUajemhCmTIz3eiaKREZn2hQQqF79YTg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.4) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.3) dev: true /@babel/plugin-transform-parameters@7.22.5(@babel/core@7.23.2): @@ -3177,13 +3177,13 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-parameters@7.22.5(@babel/core@7.24.4): + /@babel/plugin-transform-parameters@7.22.5(@babel/core@7.24.3): resolution: {integrity: sha512-AVkFUBurORBREOmHRKo06FjHYgjrabpdqRSwq6+C7R5iTCZOsM4QbcB27St0a4U6fffyAOqh3s/qEfybAhfivg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -3198,14 +3198,14 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-private-methods@7.22.5(@babel/core@7.24.4): + /@babel/plugin-transform-private-methods@7.22.5(@babel/core@7.24.3): resolution: {integrity: sha512-PPjh4gyrQnGe97JTalgRGMuU4icsZFnWkzicB/fUtzlKUqvsWBKEpPPfr5a2JiyirZkHxnAqkQMO5Z5B2kK3fA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.4 - '@babel/helper-create-class-features-plugin': 7.22.9(@babel/core@7.24.4) + '@babel/core': 7.24.3 + '@babel/helper-create-class-features-plugin': 7.22.9(@babel/core@7.24.3) '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -3222,17 +3222,17 @@ packages: '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.2) dev: true - /@babel/plugin-transform-private-property-in-object@7.22.5(@babel/core@7.24.4): + /@babel/plugin-transform-private-property-in-object@7.22.5(@babel/core@7.24.3): resolution: {integrity: sha512-/9xnaTTJcVoBtSSmrVyhtSvO3kbqS2ODoh2juEU72c3aYonNF0OMGiaz2gjukyKM2wBBYJP38S4JiE0Wfb5VMQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.3 '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-create-class-features-plugin': 7.22.9(@babel/core@7.24.4) + '@babel/helper-create-class-features-plugin': 7.22.9(@babel/core@7.24.3) '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.4) + '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.3) dev: true /@babel/plugin-transform-property-literals@7.22.5(@babel/core@7.23.2): @@ -3255,13 +3255,13 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-property-literals@7.22.5(@babel/core@7.24.4): + /@babel/plugin-transform-property-literals@7.22.5(@babel/core@7.24.3): resolution: {integrity: sha512-TiOArgddK3mK/x1Qwf5hay2pxI6wCZnvQqrFSqbtg1GLl2JcNMitVH/YnqjP+M31pLUeTfzY1HAXFDnUBV30rQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -3295,13 +3295,13 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-react-display-name@7.22.5(@babel/core@7.24.4): + /@babel/plugin-transform-react-display-name@7.22.5(@babel/core@7.24.3): resolution: {integrity: sha512-PVk3WPYudRF5z4GKMEYUrLjPl38fJSKNaEOkFuoprioowGuWN6w2RKznuFNSlJx7pzzXXStPUnNSOEO0jL5EVw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -3315,14 +3315,14 @@ packages: '@babel/plugin-transform-react-jsx': 7.22.5(@babel/core@7.23.2) dev: true - /@babel/plugin-transform-react-jsx-development@7.22.5(@babel/core@7.24.4): + /@babel/plugin-transform-react-jsx-development@7.22.5(@babel/core@7.24.3): resolution: {integrity: sha512-bDhuzwWMuInwCYeDeMzyi7TaBgRQei6DqxhbyniL7/VG4RSS7HtSL2QbY4eESy1KJqlWt8g3xeEBGPuo+XqC8A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.4 - '@babel/plugin-transform-react-jsx': 7.22.5(@babel/core@7.24.4) + '@babel/core': 7.24.3 + '@babel/plugin-transform-react-jsx': 7.22.5(@babel/core@7.24.3) dev: true /@babel/plugin-transform-react-jsx-self@7.23.3(@babel/core@7.24.0): @@ -3373,17 +3373,17 @@ packages: '@babel/types': 7.22.11 dev: true - /@babel/plugin-transform-react-jsx@7.22.5(@babel/core@7.24.4): + /@babel/plugin-transform-react-jsx@7.22.5(@babel/core@7.24.3): resolution: {integrity: sha512-rog5gZaVbUip5iWDMTYbVM15XQq+RkUKhET/IHR6oizR+JEoN6CAfTTuHcK4vwUyzca30qqHqEpzBOnaRMWYMA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.3 '@babel/helper-annotate-as-pure': 7.22.5 '@babel/helper-module-imports': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.24.4) + '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.24.3) '@babel/types': 7.22.11 dev: true @@ -3398,13 +3398,13 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-react-pure-annotations@7.22.5(@babel/core@7.24.4): + /@babel/plugin-transform-react-pure-annotations@7.22.5(@babel/core@7.24.3): resolution: {integrity: sha512-gP4k85wx09q+brArVinTXhWiyzLl9UpmGva0+mWyKxk6JZequ05x3eUcIUE+FyttPKJFRRVtAvQaJ6YF9h1ZpA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.3 '@babel/helper-annotate-as-pure': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -3420,13 +3420,13 @@ packages: regenerator-transform: 0.15.1 dev: true - /@babel/plugin-transform-regenerator@7.22.5(@babel/core@7.24.4): + /@babel/plugin-transform-regenerator@7.22.5(@babel/core@7.24.3): resolution: {integrity: sha512-rR7KePOE7gfEtNTh9Qw+iO3Q/e4DEsoQ+hdvM6QUDH7JRJ5qxq5AA52ZzBWbI5i9lfNuvySgOGP8ZN7LAmaiPw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.22.5 regenerator-transform: 0.15.1 dev: true @@ -3441,13 +3441,13 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-reserved-words@7.22.5(@babel/core@7.24.4): + /@babel/plugin-transform-reserved-words@7.22.5(@babel/core@7.24.3): resolution: {integrity: sha512-DTtGKFRQUDm8svigJzZHzb/2xatPc6TzNvAIJ5GqOKDsGFYgAskjRulbR/vGsPKq3OPqtexnz327qYpP57RFyA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -3471,13 +3471,13 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-shorthand-properties@7.22.5(@babel/core@7.24.4): + /@babel/plugin-transform-shorthand-properties@7.22.5(@babel/core@7.24.3): resolution: {integrity: sha512-vM4fq9IXHscXVKzDv5itkO1X52SmdFBFcMIBZ2FRn2nqVYqw6dBexUgMvAjHW+KXpPPViD/Yo3GrDEBaRC0QYA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -3503,13 +3503,13 @@ packages: '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 dev: true - /@babel/plugin-transform-spread@7.22.5(@babel/core@7.24.4): + /@babel/plugin-transform-spread@7.22.5(@babel/core@7.24.3): resolution: {integrity: sha512-5ZzDQIGyvN4w8+dMmpohL6MBo+l2G7tfC/O2Dg7/hjpgeWvUx8FzfeOKxGog9IimPa4YekaQ9PlDqTLOljkcxg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 dev: true @@ -3524,13 +3524,13 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-sticky-regex@7.22.5(@babel/core@7.24.4): + /@babel/plugin-transform-sticky-regex@7.22.5(@babel/core@7.24.3): resolution: {integrity: sha512-zf7LuNpHG0iEeiyCNwX4j3gDg1jgt1k3ZdXBKbZSoA3BbGQGvMiSvfbZRR3Dr3aeJe3ooWFZxOOG3IRStYp2Bw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -3554,13 +3554,13 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-template-literals@7.22.5(@babel/core@7.24.4): + /@babel/plugin-transform-template-literals@7.22.5(@babel/core@7.24.3): resolution: {integrity: sha512-5ciOehRNf+EyUeewo8NkbQiUs4d6ZxiHo6BcBcnFlgiJfu16q0bQUw9Jvo0b0gBKFG1SMhDSjeKXSYuJLeFSMA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -3574,13 +3574,13 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-typeof-symbol@7.22.5(@babel/core@7.24.4): + /@babel/plugin-transform-typeof-symbol@7.22.5(@babel/core@7.24.3): resolution: {integrity: sha512-bYkI5lMzL4kPii4HHEEChkD0rkc+nvnlR6+o/qdqR6zrm0Sv/nodmyLhlq2DO0YKLUNd2VePmPRjJXSBh9OIdA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -3620,13 +3620,13 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-unicode-escapes@7.22.5(@babel/core@7.24.4): + /@babel/plugin-transform-unicode-escapes@7.22.5(@babel/core@7.24.3): resolution: {integrity: sha512-biEmVg1IYB/raUO5wT1tgfacCef15Fbzhkx493D3urBI++6hpJ+RFG4SrWMn0NEZLfvilqKf3QDrRVZHo08FYg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -3641,14 +3641,14 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-unicode-property-regex@7.22.5(@babel/core@7.24.4): + /@babel/plugin-transform-unicode-property-regex@7.22.5(@babel/core@7.24.3): resolution: {integrity: sha512-HCCIb+CbJIAE6sXn5CjFQXMwkCClcOfPCzTlilJ8cUatfzwHlWQkbtV0zD338u9dZskwvuOYTuuaMaA8J5EI5A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.4 - '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.24.4) + '@babel/core': 7.24.3 + '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.24.3) '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -3663,14 +3663,14 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-unicode-regex@7.22.5(@babel/core@7.24.4): + /@babel/plugin-transform-unicode-regex@7.22.5(@babel/core@7.24.3): resolution: {integrity: sha512-028laaOKptN5vHJf9/Arr/HiJekMd41hOEZYvNsrsXqJ7YPYuX2bQxh31fkZzGmq3YqHRJzYFFAVYvKfMPKqyg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.4 - '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.24.4) + '@babel/core': 7.24.3 + '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.24.3) '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -3685,14 +3685,14 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-unicode-sets-regex@7.22.5(@babel/core@7.24.4): + /@babel/plugin-transform-unicode-sets-regex@7.22.5(@babel/core@7.24.3): resolution: {integrity: sha512-lhMfi4FC15j13eKrh3DnYHjpGj6UKQHtNKTbtc1igvAhRy4+kLhV07OpLcsN0VgDEw/MjAvJO4BdMJsHwMhzCg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.24.4 - '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.24.4) + '@babel/core': 7.24.3 + '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.24.3) '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -3798,171 +3798,171 @@ packages: '@babel/helper-compilation-targets': 7.23.6 '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-validator-option': 7.23.5 - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.22.5(@babel/core@7.24.4) - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.22.5(@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.22.5(@babel/core@7.24.4) - '@babel/plugin-syntax-import-attributes': 7.22.5(@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.22.5(@babel/core@7.24.4) - '@babel/plugin-transform-async-generator-functions': 7.22.7(@babel/core@7.24.4) - '@babel/plugin-transform-async-to-generator': 7.22.5(@babel/core@7.24.4) - '@babel/plugin-transform-block-scoped-functions': 7.22.5(@babel/core@7.24.4) - '@babel/plugin-transform-block-scoping': 7.22.5(@babel/core@7.24.4) - '@babel/plugin-transform-class-properties': 7.22.5(@babel/core@7.24.4) - '@babel/plugin-transform-class-static-block': 7.22.5(@babel/core@7.24.4) - '@babel/plugin-transform-classes': 7.22.6(@babel/core@7.24.4) - '@babel/plugin-transform-computed-properties': 7.22.5(@babel/core@7.24.4) - '@babel/plugin-transform-destructuring': 7.22.5(@babel/core@7.24.4) - '@babel/plugin-transform-dotall-regex': 7.22.5(@babel/core@7.24.4) - '@babel/plugin-transform-duplicate-keys': 7.22.5(@babel/core@7.24.4) - '@babel/plugin-transform-dynamic-import': 7.22.5(@babel/core@7.24.4) - '@babel/plugin-transform-exponentiation-operator': 7.22.5(@babel/core@7.24.4) - '@babel/plugin-transform-export-namespace-from': 7.22.5(@babel/core@7.24.4) - '@babel/plugin-transform-for-of': 7.22.5(@babel/core@7.24.4) - '@babel/plugin-transform-function-name': 7.22.5(@babel/core@7.24.4) - '@babel/plugin-transform-json-strings': 7.22.5(@babel/core@7.24.4) - '@babel/plugin-transform-literals': 7.22.5(@babel/core@7.24.4) - '@babel/plugin-transform-logical-assignment-operators': 7.22.5(@babel/core@7.24.4) - '@babel/plugin-transform-member-expression-literals': 7.22.5(@babel/core@7.24.4) - '@babel/plugin-transform-modules-amd': 7.22.5(@babel/core@7.24.4) - '@babel/plugin-transform-modules-commonjs': 7.22.5(@babel/core@7.24.4) - '@babel/plugin-transform-modules-systemjs': 7.22.5(@babel/core@7.24.4) - '@babel/plugin-transform-modules-umd': 7.22.5(@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.22.5(@babel/core@7.24.4) - '@babel/plugin-transform-nullish-coalescing-operator': 7.22.5(@babel/core@7.24.4) - '@babel/plugin-transform-numeric-separator': 7.22.5(@babel/core@7.24.4) - '@babel/plugin-transform-object-rest-spread': 7.22.5(@babel/core@7.24.4) - '@babel/plugin-transform-object-super': 7.22.5(@babel/core@7.24.4) - '@babel/plugin-transform-optional-catch-binding': 7.22.5(@babel/core@7.24.4) - '@babel/plugin-transform-optional-chaining': 7.22.6(@babel/core@7.24.4) - '@babel/plugin-transform-parameters': 7.22.5(@babel/core@7.24.4) - '@babel/plugin-transform-private-methods': 7.22.5(@babel/core@7.24.4) - '@babel/plugin-transform-private-property-in-object': 7.22.5(@babel/core@7.24.4) - '@babel/plugin-transform-property-literals': 7.22.5(@babel/core@7.24.4) - '@babel/plugin-transform-regenerator': 7.22.5(@babel/core@7.24.4) - '@babel/plugin-transform-reserved-words': 7.22.5(@babel/core@7.24.4) - '@babel/plugin-transform-shorthand-properties': 7.22.5(@babel/core@7.24.4) - '@babel/plugin-transform-spread': 7.22.5(@babel/core@7.24.4) - '@babel/plugin-transform-sticky-regex': 7.22.5(@babel/core@7.24.4) - '@babel/plugin-transform-template-literals': 7.22.5(@babel/core@7.24.4) - '@babel/plugin-transform-typeof-symbol': 7.22.5(@babel/core@7.24.4) - '@babel/plugin-transform-unicode-escapes': 7.22.5(@babel/core@7.24.4) - '@babel/plugin-transform-unicode-property-regex': 7.22.5(@babel/core@7.24.4) - '@babel/plugin-transform-unicode-regex': 7.22.5(@babel/core@7.24.4) - '@babel/plugin-transform-unicode-sets-regex': 7.22.5(@babel/core@7.24.4) - '@babel/preset-modules': 0.1.6(@babel/core@7.24.4) + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.22.5(@babel/core@7.24.3) + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.22.5(@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.22.5(@babel/core@7.24.3) + '@babel/plugin-syntax-import-attributes': 7.22.5(@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.22.5(@babel/core@7.24.3) + '@babel/plugin-transform-async-generator-functions': 7.22.7(@babel/core@7.24.3) + '@babel/plugin-transform-async-to-generator': 7.22.5(@babel/core@7.24.3) + '@babel/plugin-transform-block-scoped-functions': 7.22.5(@babel/core@7.24.3) + '@babel/plugin-transform-block-scoping': 7.22.5(@babel/core@7.24.3) + '@babel/plugin-transform-class-properties': 7.22.5(@babel/core@7.24.3) + '@babel/plugin-transform-class-static-block': 7.22.5(@babel/core@7.24.3) + '@babel/plugin-transform-classes': 7.22.6(@babel/core@7.24.3) + '@babel/plugin-transform-computed-properties': 7.22.5(@babel/core@7.24.3) + '@babel/plugin-transform-destructuring': 7.22.5(@babel/core@7.24.3) + '@babel/plugin-transform-dotall-regex': 7.22.5(@babel/core@7.24.3) + '@babel/plugin-transform-duplicate-keys': 7.22.5(@babel/core@7.24.3) + '@babel/plugin-transform-dynamic-import': 7.22.5(@babel/core@7.24.3) + '@babel/plugin-transform-exponentiation-operator': 7.22.5(@babel/core@7.24.3) + '@babel/plugin-transform-export-namespace-from': 7.22.5(@babel/core@7.24.3) + '@babel/plugin-transform-for-of': 7.22.5(@babel/core@7.24.3) + '@babel/plugin-transform-function-name': 7.22.5(@babel/core@7.24.3) + '@babel/plugin-transform-json-strings': 7.22.5(@babel/core@7.24.3) + '@babel/plugin-transform-literals': 7.22.5(@babel/core@7.24.3) + '@babel/plugin-transform-logical-assignment-operators': 7.22.5(@babel/core@7.24.3) + '@babel/plugin-transform-member-expression-literals': 7.22.5(@babel/core@7.24.3) + '@babel/plugin-transform-modules-amd': 7.22.5(@babel/core@7.24.3) + '@babel/plugin-transform-modules-commonjs': 7.22.5(@babel/core@7.24.3) + '@babel/plugin-transform-modules-systemjs': 7.22.5(@babel/core@7.24.3) + '@babel/plugin-transform-modules-umd': 7.22.5(@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.22.5(@babel/core@7.24.3) + '@babel/plugin-transform-nullish-coalescing-operator': 7.22.5(@babel/core@7.24.3) + '@babel/plugin-transform-numeric-separator': 7.22.5(@babel/core@7.24.3) + '@babel/plugin-transform-object-rest-spread': 7.22.5(@babel/core@7.24.3) + '@babel/plugin-transform-object-super': 7.22.5(@babel/core@7.24.3) + '@babel/plugin-transform-optional-catch-binding': 7.22.5(@babel/core@7.24.3) + '@babel/plugin-transform-optional-chaining': 7.22.6(@babel/core@7.24.3) + '@babel/plugin-transform-parameters': 7.22.5(@babel/core@7.24.3) + '@babel/plugin-transform-private-methods': 7.22.5(@babel/core@7.24.3) + '@babel/plugin-transform-private-property-in-object': 7.22.5(@babel/core@7.24.3) + '@babel/plugin-transform-property-literals': 7.22.5(@babel/core@7.24.3) + '@babel/plugin-transform-regenerator': 7.22.5(@babel/core@7.24.3) + '@babel/plugin-transform-reserved-words': 7.22.5(@babel/core@7.24.3) + '@babel/plugin-transform-shorthand-properties': 7.22.5(@babel/core@7.24.3) + '@babel/plugin-transform-spread': 7.22.5(@babel/core@7.24.3) + '@babel/plugin-transform-sticky-regex': 7.22.5(@babel/core@7.24.3) + '@babel/plugin-transform-template-literals': 7.22.5(@babel/core@7.24.3) + '@babel/plugin-transform-typeof-symbol': 7.22.5(@babel/core@7.24.3) + '@babel/plugin-transform-unicode-escapes': 7.22.5(@babel/core@7.24.3) + '@babel/plugin-transform-unicode-property-regex': 7.22.5(@babel/core@7.24.3) + '@babel/plugin-transform-unicode-regex': 7.22.5(@babel/core@7.24.3) + '@babel/plugin-transform-unicode-sets-regex': 7.22.5(@babel/core@7.24.3) + '@babel/preset-modules': 0.1.6(@babel/core@7.24.3) '@babel/types': 7.24.0 - babel-plugin-polyfill-corejs2: 0.4.5(@babel/core@7.24.4) - babel-plugin-polyfill-corejs3: 0.8.3(@babel/core@7.24.4) - babel-plugin-polyfill-regenerator: 0.5.2(@babel/core@7.24.4) + babel-plugin-polyfill-corejs2: 0.4.5(@babel/core@7.24.3) + babel-plugin-polyfill-corejs3: 0.8.3(@babel/core@7.24.3) + babel-plugin-polyfill-regenerator: 0.5.2(@babel/core@7.24.3) core-js-compat: 3.32.0 semver: 7.5.4 transitivePeerDependencies: - supports-color dev: true - /@babel/preset-env@7.22.9(@babel/core@7.24.4): + /@babel/preset-env@7.22.9(@babel/core@7.24.3): resolution: {integrity: sha512-wNi5H/Emkhll/bqPjsjQorSykrlfY5OWakd6AulLvMEytpKasMVUpVy8RL4qBIBs5Ac6/5i0/Rv0b/Fg6Eag/g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/compat-data': 7.23.5 - '@babel/core': 7.24.4 + '@babel/core': 7.24.3 '@babel/helper-compilation-targets': 7.23.6 '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-validator-option': 7.23.5 - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.22.5(@babel/core@7.24.4) - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.22.5(@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.22.5(@babel/core@7.24.4) - '@babel/plugin-syntax-import-attributes': 7.22.5(@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.22.5(@babel/core@7.24.4) - '@babel/plugin-transform-async-generator-functions': 7.22.7(@babel/core@7.24.4) - '@babel/plugin-transform-async-to-generator': 7.22.5(@babel/core@7.24.4) - '@babel/plugin-transform-block-scoped-functions': 7.22.5(@babel/core@7.24.4) - '@babel/plugin-transform-block-scoping': 7.22.5(@babel/core@7.24.4) - '@babel/plugin-transform-class-properties': 7.22.5(@babel/core@7.24.4) - '@babel/plugin-transform-class-static-block': 7.22.5(@babel/core@7.24.4) - '@babel/plugin-transform-classes': 7.22.6(@babel/core@7.24.4) - '@babel/plugin-transform-computed-properties': 7.22.5(@babel/core@7.24.4) - '@babel/plugin-transform-destructuring': 7.22.5(@babel/core@7.24.4) - '@babel/plugin-transform-dotall-regex': 7.22.5(@babel/core@7.24.4) - '@babel/plugin-transform-duplicate-keys': 7.22.5(@babel/core@7.24.4) - '@babel/plugin-transform-dynamic-import': 7.22.5(@babel/core@7.24.4) - '@babel/plugin-transform-exponentiation-operator': 7.22.5(@babel/core@7.24.4) - '@babel/plugin-transform-export-namespace-from': 7.22.5(@babel/core@7.24.4) - '@babel/plugin-transform-for-of': 7.22.5(@babel/core@7.24.4) - '@babel/plugin-transform-function-name': 7.22.5(@babel/core@7.24.4) - '@babel/plugin-transform-json-strings': 7.22.5(@babel/core@7.24.4) - '@babel/plugin-transform-literals': 7.22.5(@babel/core@7.24.4) - '@babel/plugin-transform-logical-assignment-operators': 7.22.5(@babel/core@7.24.4) - '@babel/plugin-transform-member-expression-literals': 7.22.5(@babel/core@7.24.4) - '@babel/plugin-transform-modules-amd': 7.22.5(@babel/core@7.24.4) - '@babel/plugin-transform-modules-commonjs': 7.22.5(@babel/core@7.24.4) - '@babel/plugin-transform-modules-systemjs': 7.22.5(@babel/core@7.24.4) - '@babel/plugin-transform-modules-umd': 7.22.5(@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.22.5(@babel/core@7.24.4) - '@babel/plugin-transform-nullish-coalescing-operator': 7.22.5(@babel/core@7.24.4) - '@babel/plugin-transform-numeric-separator': 7.22.5(@babel/core@7.24.4) - '@babel/plugin-transform-object-rest-spread': 7.22.5(@babel/core@7.24.4) - '@babel/plugin-transform-object-super': 7.22.5(@babel/core@7.24.4) - '@babel/plugin-transform-optional-catch-binding': 7.22.5(@babel/core@7.24.4) - '@babel/plugin-transform-optional-chaining': 7.22.6(@babel/core@7.24.4) - '@babel/plugin-transform-parameters': 7.22.5(@babel/core@7.24.4) - '@babel/plugin-transform-private-methods': 7.22.5(@babel/core@7.24.4) - '@babel/plugin-transform-private-property-in-object': 7.22.5(@babel/core@7.24.4) - '@babel/plugin-transform-property-literals': 7.22.5(@babel/core@7.24.4) - '@babel/plugin-transform-regenerator': 7.22.5(@babel/core@7.24.4) - '@babel/plugin-transform-reserved-words': 7.22.5(@babel/core@7.24.4) - '@babel/plugin-transform-shorthand-properties': 7.22.5(@babel/core@7.24.4) - '@babel/plugin-transform-spread': 7.22.5(@babel/core@7.24.4) - '@babel/plugin-transform-sticky-regex': 7.22.5(@babel/core@7.24.4) - '@babel/plugin-transform-template-literals': 7.22.5(@babel/core@7.24.4) - '@babel/plugin-transform-typeof-symbol': 7.22.5(@babel/core@7.24.4) - '@babel/plugin-transform-unicode-escapes': 7.22.5(@babel/core@7.24.4) - '@babel/plugin-transform-unicode-property-regex': 7.22.5(@babel/core@7.24.4) - '@babel/plugin-transform-unicode-regex': 7.22.5(@babel/core@7.24.4) - '@babel/plugin-transform-unicode-sets-regex': 7.22.5(@babel/core@7.24.4) - '@babel/preset-modules': 0.1.6(@babel/core@7.24.4) + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.22.5(@babel/core@7.24.3) + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.22.5(@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.22.5(@babel/core@7.24.3) + '@babel/plugin-syntax-import-attributes': 7.22.5(@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.22.5(@babel/core@7.24.3) + '@babel/plugin-transform-async-generator-functions': 7.22.7(@babel/core@7.24.3) + '@babel/plugin-transform-async-to-generator': 7.22.5(@babel/core@7.24.3) + '@babel/plugin-transform-block-scoped-functions': 7.22.5(@babel/core@7.24.3) + '@babel/plugin-transform-block-scoping': 7.22.5(@babel/core@7.24.3) + '@babel/plugin-transform-class-properties': 7.22.5(@babel/core@7.24.3) + '@babel/plugin-transform-class-static-block': 7.22.5(@babel/core@7.24.3) + '@babel/plugin-transform-classes': 7.22.6(@babel/core@7.24.3) + '@babel/plugin-transform-computed-properties': 7.22.5(@babel/core@7.24.3) + '@babel/plugin-transform-destructuring': 7.22.5(@babel/core@7.24.3) + '@babel/plugin-transform-dotall-regex': 7.22.5(@babel/core@7.24.3) + '@babel/plugin-transform-duplicate-keys': 7.22.5(@babel/core@7.24.3) + '@babel/plugin-transform-dynamic-import': 7.22.5(@babel/core@7.24.3) + '@babel/plugin-transform-exponentiation-operator': 7.22.5(@babel/core@7.24.3) + '@babel/plugin-transform-export-namespace-from': 7.22.5(@babel/core@7.24.3) + '@babel/plugin-transform-for-of': 7.22.5(@babel/core@7.24.3) + '@babel/plugin-transform-function-name': 7.22.5(@babel/core@7.24.3) + '@babel/plugin-transform-json-strings': 7.22.5(@babel/core@7.24.3) + '@babel/plugin-transform-literals': 7.22.5(@babel/core@7.24.3) + '@babel/plugin-transform-logical-assignment-operators': 7.22.5(@babel/core@7.24.3) + '@babel/plugin-transform-member-expression-literals': 7.22.5(@babel/core@7.24.3) + '@babel/plugin-transform-modules-amd': 7.22.5(@babel/core@7.24.3) + '@babel/plugin-transform-modules-commonjs': 7.22.5(@babel/core@7.24.3) + '@babel/plugin-transform-modules-systemjs': 7.22.5(@babel/core@7.24.3) + '@babel/plugin-transform-modules-umd': 7.22.5(@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.22.5(@babel/core@7.24.3) + '@babel/plugin-transform-nullish-coalescing-operator': 7.22.5(@babel/core@7.24.3) + '@babel/plugin-transform-numeric-separator': 7.22.5(@babel/core@7.24.3) + '@babel/plugin-transform-object-rest-spread': 7.22.5(@babel/core@7.24.3) + '@babel/plugin-transform-object-super': 7.22.5(@babel/core@7.24.3) + '@babel/plugin-transform-optional-catch-binding': 7.22.5(@babel/core@7.24.3) + '@babel/plugin-transform-optional-chaining': 7.22.6(@babel/core@7.24.3) + '@babel/plugin-transform-parameters': 7.22.5(@babel/core@7.24.3) + '@babel/plugin-transform-private-methods': 7.22.5(@babel/core@7.24.3) + '@babel/plugin-transform-private-property-in-object': 7.22.5(@babel/core@7.24.3) + '@babel/plugin-transform-property-literals': 7.22.5(@babel/core@7.24.3) + '@babel/plugin-transform-regenerator': 7.22.5(@babel/core@7.24.3) + '@babel/plugin-transform-reserved-words': 7.22.5(@babel/core@7.24.3) + '@babel/plugin-transform-shorthand-properties': 7.22.5(@babel/core@7.24.3) + '@babel/plugin-transform-spread': 7.22.5(@babel/core@7.24.3) + '@babel/plugin-transform-sticky-regex': 7.22.5(@babel/core@7.24.3) + '@babel/plugin-transform-template-literals': 7.22.5(@babel/core@7.24.3) + '@babel/plugin-transform-typeof-symbol': 7.22.5(@babel/core@7.24.3) + '@babel/plugin-transform-unicode-escapes': 7.22.5(@babel/core@7.24.3) + '@babel/plugin-transform-unicode-property-regex': 7.22.5(@babel/core@7.24.3) + '@babel/plugin-transform-unicode-regex': 7.22.5(@babel/core@7.24.3) + '@babel/plugin-transform-unicode-sets-regex': 7.22.5(@babel/core@7.24.3) + '@babel/preset-modules': 0.1.6(@babel/core@7.24.3) '@babel/types': 7.24.0 - babel-plugin-polyfill-corejs2: 0.4.5(@babel/core@7.24.4) - babel-plugin-polyfill-corejs3: 0.8.3(@babel/core@7.24.4) - babel-plugin-polyfill-regenerator: 0.5.2(@babel/core@7.24.4) + babel-plugin-polyfill-corejs2: 0.4.5(@babel/core@7.24.3) + babel-plugin-polyfill-corejs3: 0.8.3(@babel/core@7.24.3) + babel-plugin-polyfill-regenerator: 0.5.2(@babel/core@7.24.3) core-js-compat: 3.32.0 semver: 7.5.4 transitivePeerDependencies: @@ -3981,16 +3981,16 @@ packages: '@babel/plugin-transform-flow-strip-types': 7.22.5(@babel/core@7.24.0) dev: true - /@babel/preset-flow@7.22.5(@babel/core@7.24.4): + /@babel/preset-flow@7.22.5(@babel/core@7.24.3): resolution: {integrity: sha512-ta2qZ+LSiGCrP5pgcGt8xMnnkXQrq8Sa4Ulhy06BOlF5QbLw9q5hIx7bn5MrsvyTGAfh6kTOo07Q+Pfld/8Y5Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-validator-option': 7.23.5 - '@babel/plugin-transform-flow-strip-types': 7.22.5(@babel/core@7.24.4) + '@babel/plugin-transform-flow-strip-types': 7.22.5(@babel/core@7.24.3) dev: true /@babel/preset-modules@0.1.6(@babel/core@7.23.2): @@ -4006,15 +4006,15 @@ packages: esutils: 2.0.3 dev: true - /@babel/preset-modules@0.1.6(@babel/core@7.24.4): + /@babel/preset-modules@0.1.6(@babel/core@7.24.3): resolution: {integrity: sha512-ID2yj6K/4lKfhuU3+EX4UvNbIt7eACFbHmNUjzA+ep+B5971CknnA/9DEWKbRokfbbtblxxxXFJJrH47UEAMVg==} peerDependencies: '@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0 dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.24.4) - '@babel/plugin-transform-dotall-regex': 7.22.5(@babel/core@7.24.4) + '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.24.3) + '@babel/plugin-transform-dotall-regex': 7.22.5(@babel/core@7.24.3) '@babel/types': 7.24.0 esutils: 2.0.3 dev: true @@ -4034,19 +4034,19 @@ packages: '@babel/plugin-transform-react-pure-annotations': 7.22.5(@babel/core@7.23.2) dev: true - /@babel/preset-react@7.22.5(@babel/core@7.24.4): + /@babel/preset-react@7.22.5(@babel/core@7.24.3): resolution: {integrity: sha512-M+Is3WikOpEJHgR385HbuCITPTaPRaNkibTEa9oiofmJvIsrceb4yp9RL9Kb+TE8LznmeyZqpP+Lopwcx59xPQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.3 '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-validator-option': 7.23.5 - '@babel/plugin-transform-react-display-name': 7.22.5(@babel/core@7.24.4) - '@babel/plugin-transform-react-jsx': 7.22.5(@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.22.5(@babel/core@7.24.4) + '@babel/plugin-transform-react-display-name': 7.22.5(@babel/core@7.24.3) + '@babel/plugin-transform-react-jsx': 7.22.5(@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.22.5(@babel/core@7.24.3) dev: true /@babel/preset-typescript@7.22.5(@babel/core@7.23.2): @@ -4107,13 +4107,6 @@ packages: dependencies: regenerator-runtime: 0.14.1 - /@babel/runtime@7.24.4: - resolution: {integrity: sha512-dkxf7+hn8mFBwKjs9bvBlArzLVxVbS8usaPUDd5p2a9JCL9tB8OaOVN1isD4+Xyk4ns89/xeOmbQvgdK7IIVdA==} - engines: {node: '>=6.9.0'} - dependencies: - regenerator-runtime: 0.14.1 - dev: true - /@babel/template@7.22.15: resolution: {integrity: sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==} engines: {node: '>=6.9.0'} @@ -4169,12 +4162,12 @@ packages: engines: {node: '>=6.9.0'} dependencies: '@babel/code-frame': 7.24.2 - '@babel/generator': 7.24.4 + '@babel/generator': 7.24.1 '@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.4 + '@babel/parser': 7.24.1 '@babel/types': 7.24.0 debug: 4.3.4 globals: 11.12.0 @@ -4532,7 +4525,7 @@ packages: rollup: 2.79.1 vite: 4.5.3(@types/node@20.8.4) optionalDependencies: - '@vitejs/plugin-react': 4.1.0(vite@4.5.3) + '@vitejs/plugin-react': 4.2.1(vite@4.5.3) transitivePeerDependencies: - supports-color dev: true @@ -4552,7 +4545,7 @@ packages: resolution: {integrity: sha512-SPiDHaWKQZpwR2siD0KQUwlStvIAnEyK6tAE2h2Wuoq8ue9skzhlyVQ1ddzOxX6khULnAALDiR/isSF3bnuciA==} dev: false - /@docsearch/react@3.5.2(@algolia/client-search@4.23.3)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)(search-insights@2.13.0): + /@docsearch/react@3.5.2(@algolia/client-search@4.23.2)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)(search-insights@2.13.0): resolution: {integrity: sha512-9Ahcrs5z2jq/DcAvYtvlqEBHImbm4YJI8M9y0x6Tqg598P40HTEkX7hsMcIuThI+hTFxRGZ9hll0Wygm2yEjng==} peerDependencies: '@types/react': '>= 16.8.0 < 19.0.0' @@ -4569,8 +4562,8 @@ packages: search-insights: optional: true dependencies: - '@algolia/autocomplete-core': 1.9.3(@algolia/client-search@4.23.3)(algoliasearch@4.19.1)(search-insights@2.13.0) - '@algolia/autocomplete-preset-algolia': 1.9.3(@algolia/client-search@4.23.3)(algoliasearch@4.19.1) + '@algolia/autocomplete-core': 1.9.3(@algolia/client-search@4.23.2)(algoliasearch@4.19.1)(search-insights@2.13.0) + '@algolia/autocomplete-preset-algolia': 1.9.3(@algolia/client-search@4.23.2)(algoliasearch@4.19.1) '@docsearch/css': 3.5.2 '@types/react': 18.2.28 algoliasearch: 4.19.1 @@ -5346,45 +5339,6 @@ packages: - encoding - supports-color - utf-8-validate - dev: false - - /@fuel-ts/account@0.79.0(dexie@4.0.4): - resolution: {integrity: sha512-Rj0jV7JrXAolHk6/qlgCrK0YYjSVV6ehqf2g8lxmS102ShcS+/bVHvGhxhUeefGtHOdmHuVEJEcchcbpfuiYaQ==} - engines: {node: ^18.18.2 || ^20.0.0} - dependencies: - '@fuel-ts/abi-coder': 0.79.0 - '@fuel-ts/address': 0.79.0 - '@fuel-ts/crypto': 0.79.0 - '@fuel-ts/errors': 0.79.0 - '@fuel-ts/fuel-core': 0.79.0 - '@fuel-ts/hasher': 0.79.0 - '@fuel-ts/interfaces': 0.79.0 - '@fuel-ts/math': 0.79.0 - '@fuel-ts/merkle': 0.79.0 - '@fuel-ts/transactions': 0.79.0 - '@fuel-ts/utils': 0.79.0 - '@fuel-ts/versions': 0.79.0 - '@fuels/assets': 0.1.5 - '@fuels/vm-asm': 0.42.1 - '@noble/curves': 1.4.0 - dexie-observable: 4.0.1-beta.13(dexie@4.0.4) - ethers: 6.11.1 - events: 3.3.0 - graphql: 16.8.1 - graphql-request: 5.0.0(graphql@16.8.1) - graphql-tag: 2.12.6(graphql@16.8.1) - json-rpc-2.0: 1.7.0 - portfinder: 1.0.32 - ramda: 0.29.1 - tai64: 1.0.0 - tree-kill: 1.2.2 - uuid: 9.0.1 - transitivePeerDependencies: - - bufferutil - - dexie - - encoding - - supports-color - - utf-8-validate /@fuel-ts/address@0.79.0: resolution: {integrity: sha512-KiDWMQB6cyY9sUCi7e7NPx2sCCejYjC/vLQrTnu4AxV2aVVwQ4GWcRpHO1OGYZ5RalR/yvcR9ebQhpidnU0lUw==} @@ -5423,30 +5377,6 @@ packages: - encoding - supports-color - utf-8-validate - dev: false - - /@fuel-ts/contract@0.79.0(dexie@4.0.4): - resolution: {integrity: sha512-kyC/pynI5kgTcm9R7xl1qrfUfMWsUQhXfnyv8AXeFuPIIrQMxIvKlKL4bgmQ6AUFJhTDiAv2fmc5dlbqO8RS7w==} - engines: {node: ^18.18.2 || ^20.0.0} - dependencies: - '@fuel-ts/abi-coder': 0.79.0 - '@fuel-ts/account': 0.79.0(dexie@4.0.4) - '@fuel-ts/address': 0.79.0 - '@fuel-ts/crypto': 0.79.0 - '@fuel-ts/errors': 0.79.0 - '@fuel-ts/hasher': 0.79.0 - '@fuel-ts/interfaces': 0.79.0 - '@fuel-ts/merkle': 0.79.0 - '@fuel-ts/program': 0.79.0(dexie@4.0.4) - '@fuel-ts/transactions': 0.79.0 - '@fuel-ts/utils': 0.79.0 - '@fuel-ts/versions': 0.79.0 - transitivePeerDependencies: - - bufferutil - - dexie - - encoding - - supports-color - - utf-8-validate /@fuel-ts/crypto@0.79.0: resolution: {integrity: sha512-kjXhoNK3rVrx0nDGDN9L1nZ6yU6XBVOujhrA5un9RD/hw4DdXfBL4XSIwu6HJ5ZLCcx555kabNHku9VxpIGopg==} @@ -5543,29 +5473,6 @@ packages: - encoding - supports-color - utf-8-validate - dev: false - - /@fuel-ts/program@0.79.0(dexie@4.0.4): - resolution: {integrity: sha512-TwLP2qYuR13anM57cDEUGPUlakuVGUnJ4W5h3uUGINfO5USnyQkW9vwvLcFsXL8WvqOimFGMnmRv+ElsMM4Q3A==} - engines: {node: ^18.18.2 || ^20.0.0} - dependencies: - '@fuel-ts/abi-coder': 0.79.0 - '@fuel-ts/account': 0.79.0(dexie@4.0.4) - '@fuel-ts/address': 0.79.0 - '@fuel-ts/errors': 0.79.0 - '@fuel-ts/hasher': 0.79.0 - '@fuel-ts/interfaces': 0.79.0 - '@fuel-ts/math': 0.79.0 - '@fuel-ts/transactions': 0.79.0 - '@fuel-ts/utils': 0.79.0 - '@fuel-ts/versions': 0.79.0 - '@fuels/vm-asm': 0.42.1 - transitivePeerDependencies: - - bufferutil - - dexie - - encoding - - supports-color - - utf-8-validate /@fuel-ts/script@0.79.0(dexie@3.2.4): resolution: {integrity: sha512-w3qB3oD1y/HMOzSU7pWRSMHDn+nurYB/zqk0HRDVPdF6t53hv6yaXQukSzHhsk2Fvsy+nsDEWVj63VZl0ehzAw==} @@ -5587,28 +5494,6 @@ packages: - encoding - supports-color - utf-8-validate - dev: false - - /@fuel-ts/script@0.79.0(dexie@4.0.4): - resolution: {integrity: sha512-w3qB3oD1y/HMOzSU7pWRSMHDn+nurYB/zqk0HRDVPdF6t53hv6yaXQukSzHhsk2Fvsy+nsDEWVj63VZl0ehzAw==} - engines: {node: ^18.18.2 || ^20.0.0} - dependencies: - '@fuel-ts/abi-coder': 0.79.0 - '@fuel-ts/abi-typegen': 0.79.0 - '@fuel-ts/account': 0.79.0(dexie@4.0.4) - '@fuel-ts/address': 0.79.0 - '@fuel-ts/errors': 0.79.0 - '@fuel-ts/interfaces': 0.79.0 - '@fuel-ts/math': 0.79.0 - '@fuel-ts/program': 0.79.0(dexie@4.0.4) - '@fuel-ts/transactions': 0.79.0 - '@fuel-ts/utils': 0.79.0 - transitivePeerDependencies: - - bufferutil - - dexie - - encoding - - supports-color - - utf-8-validate /@fuel-ts/transactions@0.79.0: resolution: {integrity: sha512-k7S4FSO6RrSaSjUaHnuK9KmfaH856ertn+Eall75ZhVV+00Lh+Ewe64xMzzqmKqdr7Puii2QAaKCtssHVDAfOQ==} @@ -5730,7 +5615,7 @@ packages: - immer dev: false - /@fuel-ui/test-utils@0.17.0(@babel/core@7.24.4)(@jest/types@29.6.3)(@types/node@20.8.4)(esbuild@0.19.12)(react@18.2.0)(ts-node@10.9.1)(typescript@5.2.2): + /@fuel-ui/test-utils@0.17.0(@babel/core@7.24.3)(@jest/types@29.6.3)(@types/node@20.8.4)(esbuild@0.19.12)(react@18.2.0)(ts-node@10.9.1)(typescript@5.2.2): resolution: {integrity: sha512-cQfMlrxG6gma/HSKj1v4Mcyr0hREY3w8KH0NXhtVHBOAU6rrWLlYpB26vXxriue5cv90gsRqOZU5YtgrKEHpyA==} peerDependencies: react: '*' @@ -5752,7 +5637,7 @@ packages: react: 18.2.0 react-dom: 18.2.0(react@18.2.0) resize-observer-polyfill: 1.5.1 - ts-jest: 29.1.1(@babel/core@7.24.4)(@jest/types@29.6.3)(esbuild@0.19.12)(jest@29.7.0)(typescript@5.2.2) + ts-jest: 29.1.1(@babel/core@7.24.3)(@jest/types@29.6.3)(esbuild@0.19.12)(jest@29.7.0)(typescript@5.2.2) transitivePeerDependencies: - '@babel/core' - '@jest/types' @@ -5781,7 +5666,7 @@ packages: peerDependencies: fuels: '>=0.77.0' dependencies: - fuels: 0.79.0(dexie@4.0.4) + fuels: 0.79.0(dexie@3.2.4) json-rpc-2.0: 1.7.0 /@fuels/local-storage@0.17.0: @@ -5796,7 +5681,7 @@ packages: dependencies: '@playwright/test': 1.39.0 adm-zip: 0.5.12 - fuels: 0.79.0(dexie@4.0.4) + fuels: 0.79.0(dexie@3.2.4) dev: true /@fuels/react-xstore@0.17.0(@types/react@18.2.28)(@xstate/react@3.2.2)(react-dom@18.2.0)(react@18.2.0)(ws@8.16.0)(xstate@4.38.2): @@ -5861,7 +5746,7 @@ packages: '@radix-ui/react-dialog': 1.0.5(@types/react-dom@18.2.19)(@types/react@18.2.56)(react-dom@18.2.0)(react@18.2.0) '@tanstack/react-query': 5.28.4(react@18.2.0) events: 3.3.0 - fuels: 0.79.0(dexie@4.0.4) + fuels: 0.79.0(dexie@3.2.4) react: 18.2.0 transitivePeerDependencies: - '@types/react' @@ -11085,7 +10970,7 @@ packages: '@storybook/client-logger': 7.6.17 '@storybook/components': 7.6.17(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0) '@storybook/core-events': 7.6.17 - '@storybook/csf': 0.1.4 + '@storybook/csf': 0.1.3 '@storybook/docs-tools': 7.6.17 '@storybook/global': 5.0.0 '@storybook/manager-api': 7.6.17(react-dom@18.2.0)(react@18.2.0) @@ -11096,7 +10981,7 @@ packages: color-convert: 2.0.1 dequal: 2.0.3 lodash: 4.17.21 - markdown-to-jsx: 7.4.6(react@18.2.0) + markdown-to-jsx: 7.4.5(react@18.2.0) memoizerific: 1.11.3 polished: 4.3.1 react: 18.2.0 @@ -11265,7 +11150,7 @@ packages: '@storybook/client-logger': 7.6.17 '@storybook/core-events': 7.6.17 '@storybook/global': 5.0.0 - qs: 6.12.1 + qs: 6.12.0 telejson: 7.2.0 tiny-invariant: 1.3.3 dev: true @@ -11275,7 +11160,7 @@ packages: hasBin: true dependencies: '@babel/core': 7.24.0 - '@babel/preset-env': 7.22.9(@babel/core@7.24.4) + '@babel/preset-env': 7.22.9(@babel/core@7.24.3) '@babel/types': 7.24.0 '@ndelangen/get-tarball': 3.0.9 '@storybook/codemod': 7.4.6 @@ -11402,7 +11287,7 @@ packages: '@radix-ui/react-select': 1.2.2(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0) '@radix-ui/react-toolbar': 1.0.4(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0) '@storybook/client-logger': 7.6.17 - '@storybook/csf': 0.1.4 + '@storybook/csf': 0.1.3 '@storybook/global': 5.0.0 '@storybook/theming': 7.6.17(react-dom@18.2.0)(react@18.2.0) '@storybook/types': 7.6.17 @@ -11461,7 +11346,7 @@ packages: '@storybook/node-logger': 7.6.17 '@storybook/types': 7.6.17 '@types/find-cache-dir': 3.2.1 - '@types/node': 18.19.31 + '@types/node': 18.19.26 '@types/node-fetch': 2.6.11 '@types/pretty-hrtime': 1.0.3 chalk: 4.1.2 @@ -11589,8 +11474,8 @@ packages: dependencies: type-fest: 2.19.0 - /@storybook/csf@0.1.4: - resolution: {integrity: sha512-B9UI/lsQMjF+oEfZCI6YXNoeuBcGZoOP5x8yKbe2tIEmsMjSztFKkpPzi5nLCnBk/MBtl6QJeI3ksJnbsWPkOw==} + /@storybook/csf@0.1.3: + resolution: {integrity: sha512-IPZvXXo4b3G+gpmgBSBqVM81jbp2ePOKsvhgJdhyZJtkYQCII7rg9KKLQhvBQM5sLaF1eU6r0iuwmyynC9d9SA==} dependencies: type-fest: 2.19.0 dev: true @@ -11694,7 +11579,7 @@ packages: '@storybook/channels': 7.6.17 '@storybook/client-logger': 7.6.17 '@storybook/core-events': 7.6.17 - '@storybook/csf': 0.1.4 + '@storybook/csf': 0.1.3 '@storybook/global': 5.0.0 '@storybook/router': 7.6.17 '@storybook/theming': 7.6.17(react-dom@18.2.0)(react@18.2.0) @@ -11730,7 +11615,7 @@ packages: resolution: {integrity: sha512-TqI5BucPAGRWrkh55BYiG2/gHLFtC0In4cuu0GsUzB/1jc4i51npLRorCwhmT7r7YliGl5F7JaP0Bni/qHN3Lg==} dev: true - /@storybook/preset-react-webpack@7.4.6(@babel/core@7.24.4)(@swc/core@1.3.92)(esbuild@0.19.12)(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2): + /@storybook/preset-react-webpack@7.4.6(@babel/core@7.24.3)(@swc/core@1.3.92)(esbuild@0.19.12)(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2): resolution: {integrity: sha512-FfJvlk3bJfg66t06YLiyu+1o/DZN3uNfFP37zv5cJux7TpdmJRV/4m9LKQPJOvcnWBQYem8xX8k5cRS29vdW5g==} engines: {node: '>=16.0.0'} peerDependencies: @@ -11748,9 +11633,9 @@ packages: typescript: optional: true dependencies: - '@babel/core': 7.24.4 - '@babel/preset-flow': 7.22.5(@babel/core@7.24.4) - '@babel/preset-react': 7.22.5(@babel/core@7.24.4) + '@babel/core': 7.24.3 + '@babel/preset-flow': 7.22.5(@babel/core@7.24.3) + '@babel/preset-react': 7.22.5(@babel/core@7.24.3) '@pmmmwh/react-refresh-webpack-plugin': 0.5.10(react-refresh@0.11.0)(webpack@5.88.2) '@storybook/core-webpack': 7.4.6 '@storybook/docs-tools': 7.4.6 @@ -11807,14 +11692,14 @@ packages: '@storybook/channels': 7.6.17 '@storybook/client-logger': 7.6.17 '@storybook/core-events': 7.6.17 - '@storybook/csf': 0.1.4 + '@storybook/csf': 0.1.3 '@storybook/global': 5.0.0 '@storybook/types': 7.6.17 '@types/qs': 6.9.14 dequal: 2.0.3 lodash: 4.17.21 memoizerific: 1.11.3 - qs: 6.12.1 + qs: 6.12.0 synchronous-promise: 2.0.17 ts-dedent: 2.2.0 util-deprecate: 1.0.2 @@ -11891,7 +11776,7 @@ packages: - vite-plugin-glimmerx dev: true - /@storybook/react-webpack5@7.4.6(@babel/core@7.24.4)(@swc/core@1.3.92)(@types/react-dom@18.2.13)(@types/react@18.2.28)(esbuild@0.19.12)(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2): + /@storybook/react-webpack5@7.4.6(@babel/core@7.24.3)(@swc/core@1.3.92)(@types/react-dom@18.2.13)(@types/react@18.2.28)(esbuild@0.19.12)(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2): resolution: {integrity: sha512-OSwf+E2tRcfBmzCH+WwM7JlfEYjg5Womi1yrtotfcjVXAU6ubHOk2G87zsrKLp/TeCOFM2aHohHBTyWUCejQKQ==} engines: {node: '>=16.0.0'} peerDependencies: @@ -11909,9 +11794,9 @@ packages: typescript: optional: true dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.3 '@storybook/builder-webpack5': 7.4.6(@types/react-dom@18.2.13)(@types/react@18.2.28)(esbuild@0.19.12)(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2) - '@storybook/preset-react-webpack': 7.4.6(@babel/core@7.24.4)(@swc/core@1.3.92)(esbuild@0.19.12)(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2) + '@storybook/preset-react-webpack': 7.4.6(@babel/core@7.24.3)(@swc/core@1.3.92)(esbuild@0.19.12)(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2) '@storybook/react': 7.4.6(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2) '@types/node': 16.18.68 react: 18.2.0 @@ -12001,7 +11886,7 @@ packages: dependencies: '@storybook/client-logger': 7.6.17 memoizerific: 1.11.3 - qs: 6.12.1 + qs: 6.12.0 dev: true /@storybook/source-loader@7.4.6(react-dom@18.2.0)(react@18.2.0): @@ -12384,7 +12269,7 @@ packages: /@swc/helpers@0.4.14: resolution: {integrity: sha512-4C7nX/dvpzB7za4Ql9K81xK3HPxCpHMgwTZVyf+9JQ6VUbn9jjZVN7/Nkdz/Ugzs2CSjqnL/UPXroiVBVHUWUw==} dependencies: - tslib: 2.6.1 + tslib: 2.6.2 dev: false /@swc/helpers@0.4.36: @@ -12593,7 +12478,7 @@ packages: resolution: {integrity: sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==} dependencies: '@types/connect': 3.4.38 - '@types/node': 20.12.7 + '@types/node': 20.8.4 dev: true /@types/chrome@0.0.246: @@ -12610,7 +12495,7 @@ packages: /@types/connect@3.4.38: resolution: {integrity: sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==} dependencies: - '@types/node': 20.12.7 + '@types/node': 20.8.4 dev: true /@types/cookie@0.4.1: @@ -12658,7 +12543,7 @@ packages: /@types/eslint-scope@3.7.7: resolution: {integrity: sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==} dependencies: - '@types/eslint': 8.56.9 + '@types/eslint': 8.56.6 '@types/estree': 1.0.5 dev: true @@ -12669,8 +12554,8 @@ packages: '@types/json-schema': 7.0.12 dev: true - /@types/eslint@8.56.9: - resolution: {integrity: sha512-W4W3KcqzjJ0sHg2vAq9vfml6OhsJ53TcUjUqfzzZf/EChUtwspszj/S0pzMxnfRcO55/iGq47dscXw71Fxc4Zg==} + /@types/eslint@8.56.6: + resolution: {integrity: sha512-ymwc+qb1XkjT/gfoQwxIeHZ6ixH23A+tCT2ADSA/DPVKzAjwYkTXBMCQ/f6fe4wEa85Lhp26VPeUxI7wMhAi7A==} dependencies: '@types/estree': 1.0.5 '@types/json-schema': 7.0.15 @@ -12702,10 +12587,10 @@ packages: '@types/range-parser': 1.2.4 '@types/send': 0.17.1 - /@types/express-serve-static-core@4.19.0: - resolution: {integrity: sha512-bGyep3JqPCRry1wq+O5n7oiBgGWmeIJXPjXXCo8EK0u8duZGSYar7cGqd3ML2JUsLGeB7fmc06KYo9fLGWqPvQ==} + /@types/express-serve-static-core@4.17.43: + resolution: {integrity: sha512-oaYtiBirUOPQGSWNGPWnzyAFJ0BP3cwvN4oWZQY+zUBwpVIGsKUkpBpSztp74drYcjavs7SKFZ4DX1V2QeN8rg==} dependencies: - '@types/node': 20.12.7 + '@types/node': 20.8.4 '@types/qs': 6.9.14 '@types/range-parser': 1.2.7 '@types/send': 0.17.4 @@ -12723,9 +12608,9 @@ packages: resolution: {integrity: sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==} dependencies: '@types/body-parser': 1.19.5 - '@types/express-serve-static-core': 4.19.0 + '@types/express-serve-static-core': 4.17.43 '@types/qs': 6.9.14 - '@types/serve-static': 1.15.7 + '@types/serve-static': 1.15.5 dev: true /@types/filesystem@0.0.32: @@ -12880,6 +12765,10 @@ packages: /@types/mime@3.0.1: resolution: {integrity: sha512-Y4XFY5VJAuw0FgAqPNd6NNoV44jbq9Bz2L7Rh/J6jLTiHBSBJa9fxqQIvkIld4GsoDOcCbvzOUAbLPsSKKg+uA==} + /@types/mime@3.0.4: + resolution: {integrity: sha512-iJt33IQnVRkqeqC7PzBHPTC6fDlRNRW8vjrgqtScAhrmMwe8c4Eo7+fUGTa+XdWrpEgpyKWMYmi2dIwMAYRzPw==} + dev: true + /@types/minimatch@5.1.2: resolution: {integrity: sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==} dev: true @@ -12894,7 +12783,7 @@ packages: /@types/node-fetch@2.6.11: resolution: {integrity: sha512-24xFj9R5+rfQJLRyM56qh+wnVSYhyXC2tkoBndtY0U+vubqNsYXGjufB2nn8Q6gt0LrARwL6UBtMCSVCwl4B1g==} dependencies: - '@types/node': 18.19.31 + '@types/node': 20.8.4 form-data: 4.0.0 dev: true @@ -12919,8 +12808,8 @@ packages: /@types/node@18.15.13: resolution: {integrity: sha512-N+0kuo9KgrUQ1Sn/ifDXsvg0TTleP7rIy4zOBGECxAljqvqfqpTfzx0Q1NUedOixRMBfe2Whhb056a42cWs26Q==} - /@types/node@18.19.31: - resolution: {integrity: sha512-ArgCD39YpyyrtFKIqMDvjz79jto5fcI/SVUs2HwB+f0dAzq68yqOdyaSivLiLugSziTpNXLQrVb7RZFmdZzbhA==} + /@types/node@18.19.26: + resolution: {integrity: sha512-+wiMJsIwLOYCvUqSdKTrfkS8mpTp+MPINe6+Np4TAGFWWRWiBQ5kSq9nZGCSPkzx9mvT+uEukzpX4MOSCydcvw==} dependencies: undici-types: 5.26.5 dev: true @@ -12930,12 +12819,6 @@ packages: dependencies: undici-types: 5.26.5 - /@types/node@20.12.7: - resolution: {integrity: sha512-wq0cICSkRLVaf3UGLMGItu/PtdY7oaXaI/RVU+xliKVOtRna3PRY57ZDfztpDL0n11vfymMUnXv8QwYCO7L1wg==} - dependencies: - undici-types: 5.26.5 - dev: true - /@types/node@20.8.4: resolution: {integrity: sha512-ZVPnqU58giiCjSxjVUESDtdPk4QR5WQhhINbc9UBrKLU68MX5BF6kbQzTrkwbolyr0X8ChBpXfavr5mZFKZQ5A==} dependencies: @@ -13047,7 +12930,7 @@ packages: resolution: {integrity: sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==} dependencies: '@types/mime': 1.3.5 - '@types/node': 20.12.7 + '@types/node': 20.8.4 dev: true /@types/serve-static@1.15.2: @@ -13057,12 +12940,12 @@ packages: '@types/mime': 3.0.1 '@types/node': 20.8.4 - /@types/serve-static@1.15.7: - resolution: {integrity: sha512-W8Ym+h8nhuRwaKPaDw34QUkwsGi6Rc4yYqvKFo5rm2FUEhCFbzVWrxXUxuKK8TASjWsysJY0nsmNCGhCOIsrOw==} + /@types/serve-static@1.15.5: + resolution: {integrity: sha512-PDRk21MnK70hja/YF8AHfC7yIsiQHn1rcXx7ijCFBX/k+XQJhQT/gw3xekXKJvx+5SXaMMS8oqQy09Mzvz2TuQ==} dependencies: '@types/http-errors': 2.0.4 - '@types/node': 20.12.7 - '@types/send': 0.17.4 + '@types/mime': 3.0.4 + '@types/node': 20.8.4 dev: true /@types/set-cookie-parser@2.4.3: @@ -13276,6 +13159,23 @@ packages: - supports-color dev: true + /@vitejs/plugin-react@4.2.1(vite@4.5.3): + resolution: {integrity: sha512-oojO9IDc4nCUUi8qIR11KoQm0XFFLIwsRBwHRR4d/88IWghn1y6ckz/bJ8GHDCsYEJee8mDzqtJxh15/cisJNQ==} + engines: {node: ^14.18.0 || >=16.0.0} + peerDependencies: + vite: ^4.2.0 || ^5.0.0 + dependencies: + '@babel/core': 7.24.0 + '@babel/plugin-transform-react-jsx-self': 7.23.3(@babel/core@7.24.0) + '@babel/plugin-transform-react-jsx-source': 7.23.3(@babel/core@7.24.0) + '@types/babel__core': 7.20.5 + react-refresh: 0.14.0 + vite: 4.5.3(@types/node@20.8.4) + transitivePeerDependencies: + - supports-color + dev: true + optional: true + /@vitejs/plugin-react@4.2.1(vite@5.1.4): resolution: {integrity: sha512-oojO9IDc4nCUUi8qIR11KoQm0XFFLIwsRBwHRR4d/88IWghn1y6ckz/bJ8GHDCsYEJee8mDzqtJxh15/cisJNQ==} engines: {node: ^14.18.0 || >=16.0.0} @@ -14163,14 +14063,14 @@ packages: - supports-color dev: true - /babel-plugin-polyfill-corejs2@0.4.5(@babel/core@7.24.4): + /babel-plugin-polyfill-corejs2@0.4.5(@babel/core@7.24.3): resolution: {integrity: sha512-19hwUH5FKl49JEsvyTcoHakh6BE0wgXLLptIyKZ3PijHc/Ci521wygORCUCCred+E/twuqRyAkE02BAWPmsHOg==} peerDependencies: '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 dependencies: '@babel/compat-data': 7.22.9 - '@babel/core': 7.24.4 - '@babel/helper-define-polyfill-provider': 0.4.2(@babel/core@7.24.4) + '@babel/core': 7.24.3 + '@babel/helper-define-polyfill-provider': 0.4.2(@babel/core@7.24.3) semver: 7.5.4 transitivePeerDependencies: - supports-color @@ -14188,13 +14088,13 @@ packages: - supports-color dev: true - /babel-plugin-polyfill-corejs3@0.8.3(@babel/core@7.24.4): + /babel-plugin-polyfill-corejs3@0.8.3(@babel/core@7.24.3): resolution: {integrity: sha512-z41XaniZL26WLrvjy7soabMXrfPWARN25PZoriDEiLMxAp50AUW3t35BGQUMg5xK3UrpVTtagIDklxYa+MhiNA==} peerDependencies: '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 dependencies: - '@babel/core': 7.24.4 - '@babel/helper-define-polyfill-provider': 0.4.2(@babel/core@7.24.4) + '@babel/core': 7.24.3 + '@babel/helper-define-polyfill-provider': 0.4.2(@babel/core@7.24.3) core-js-compat: 3.32.0 transitivePeerDependencies: - supports-color @@ -14211,13 +14111,13 @@ packages: - supports-color dev: true - /babel-plugin-polyfill-regenerator@0.5.2(@babel/core@7.24.4): + /babel-plugin-polyfill-regenerator@0.5.2(@babel/core@7.24.3): resolution: {integrity: sha512-tAlOptU0Xj34V1Y2PNTL4Y0FOJMDB6bZmoW39FeCQIhigGLkqu3Fj6uiXpxIf6Ij274ENdYx64y6Au+ZKlb1IA==} peerDependencies: '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 dependencies: - '@babel/core': 7.24.4 - '@babel/helper-define-polyfill-provider': 0.4.2(@babel/core@7.24.4) + '@babel/core': 7.24.3 + '@babel/helper-define-polyfill-provider': 0.4.2(@babel/core@7.24.3) transitivePeerDependencies: - supports-color dev: true @@ -14458,8 +14358,8 @@ packages: engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} hasBin: true dependencies: - caniuse-lite: 1.0.30001609 - electron-to-chromium: 1.4.736 + caniuse-lite: 1.0.30001600 + electron-to-chromium: 1.4.720 node-releases: 2.0.14 update-browserslist-db: 1.0.13(browserslist@4.23.0) dev: true @@ -14598,8 +14498,8 @@ packages: /caniuse-lite@1.0.30001579: resolution: {integrity: sha512-u5AUVkixruKHJjw/pj9wISlcMpgFWzSrczLZbrqBSxukQixmg0SJ5sZTpvaFvxU0HoQKd4yoyAogyrAz9pzJnA==} - /caniuse-lite@1.0.30001609: - resolution: {integrity: sha512-JFPQs34lHKx1B5t1EpQpWH4c+29zIyn/haGsbpfq3suuV9v56enjFt23zqijxGTMwy1p/4H2tjnQMY+p1WoAyA==} + /caniuse-lite@1.0.30001600: + resolution: {integrity: sha512-+2S9/2JFhYmYaDpZvo0lKkfvuKIglrx68MwOBqMGHhQsNkLjB5xtc/TGoEPs+MxjSyN/72qer2g97nzR641mOQ==} dev: true /capital-case@1.0.4: @@ -15604,14 +15504,6 @@ packages: dexie: ^3.0.2 || ^4.0.1-alpha.5 dependencies: dexie: 3.2.4 - dev: false - - /dexie-observable@4.0.1-beta.13(dexie@4.0.4): - resolution: {integrity: sha512-axmgPk7yjoPwj+0DdQIE5s1MBXi+6XcIFIjBKdQAmSGpsLQSth/LHvMOQ3q3Wj6pwIE5hqIxg2GL75sVqQbhEw==} - peerDependencies: - dexie: ^3.0.2 || ^4.0.1-alpha.5 - dependencies: - dexie: 4.0.4 /dexie-react-hooks@1.1.6(@types/react@18.2.28)(dexie@3.2.4)(react@18.2.0): resolution: {integrity: sha512-xSblWtmPwhafWNWMECsW7zMMmBu8goH3QqTxEfwBNoNG1mgsM0oFclippev7ss9HhKICqBwTjgqpscci5Ed4mA==} @@ -15631,10 +15523,6 @@ packages: /dexie@3.2.4: resolution: {integrity: sha512-VKoTQRSv7+RnffpOJ3Dh6ozknBqzWw/F3iqMdsZg958R0AS8AnY9x9d1lbwENr0gzeGJHXKcGhAMRaqys6SxqA==} engines: {node: '>=6.0'} - dev: false - - /dexie@4.0.4: - resolution: {integrity: sha512-wFzwWSUdi+MC3jiFeQcCp9nInR7EaX8edzYY+4wmiITkQAiSnHpe4Wo2o5Ce5tJZe2nqt7mLW91MsW4GYx3ziQ==} /diff-sequences@28.1.1: resolution: {integrity: sha512-FU0iFaH/E23a+a718l8Qa/19bF9p06kgE0KipMOMadwa3SjnaElKzPaUC0vnibs6/B/9ni97s61mcejk8W1fQw==} @@ -15792,8 +15680,8 @@ packages: /electron-to-chromium@1.4.643: resolution: {integrity: sha512-QHscvvS7gt155PtoRC0dR2ilhL8E9LHhfTQEq1uD5AL0524rBLAwpAREFH06f87/e45B9XkR6Ki5dbhbCsVEIg==} - /electron-to-chromium@1.4.736: - resolution: {integrity: sha512-Rer6wc3ynLelKNM4lOCg7/zPQj8tPOCB2hzD32PX9wd3hgRRi9MxEbmkFCokzcEhRVMiOVLjnL9ig9cefJ+6+Q==} + /electron-to-chromium@1.4.720: + resolution: {integrity: sha512-5zwcKNkOj3GN0jBzpcpGonNPkn667VJpQwRYWdo/TiJEHTQswZyA/vALhZFiAXgL5NuK9UarX1tbdvXu3hG6Yw==} dev: true /emittery@0.13.1: @@ -17035,51 +16923,6 @@ packages: - encoding - supports-color - utf-8-validate - dev: false - - /fuels@0.79.0(dexie@4.0.4): - resolution: {integrity: sha512-koo7YKNzq821FOa7aLXdSAEllCLHWd+dcNwoAqyHkPw/zGKIUmeNpPDFXuL1zMGxkibTTJEaQ22vM4zHKP2rng==} - engines: {node: ^18.18.2 || ^20.0.0} - hasBin: true - dependencies: - '@fuel-ts/abi-coder': 0.79.0 - '@fuel-ts/abi-typegen': 0.79.0 - '@fuel-ts/account': 0.79.0(dexie@4.0.4) - '@fuel-ts/address': 0.79.0 - '@fuel-ts/contract': 0.79.0(dexie@4.0.4) - '@fuel-ts/crypto': 0.79.0 - '@fuel-ts/errors': 0.79.0 - '@fuel-ts/forc': 0.79.0 - '@fuel-ts/fuel-core': 0.79.0 - '@fuel-ts/hasher': 0.79.0 - '@fuel-ts/interfaces': 0.79.0 - '@fuel-ts/math': 0.79.0 - '@fuel-ts/merkle': 0.79.0 - '@fuel-ts/program': 0.79.0(dexie@4.0.4) - '@fuel-ts/script': 0.79.0(dexie@4.0.4) - '@fuel-ts/transactions': 0.79.0 - '@fuel-ts/utils': 0.79.0 - '@fuel-ts/versions': 0.79.0 - bundle-require: 4.0.2(esbuild@0.19.12) - chalk: 4.1.2 - chokidar: 3.6.0 - commander: 9.5.0 - esbuild: 0.19.12 - glob: 10.3.12 - handlebars: 4.7.8 - joycon: 3.1.1 - lodash.camelcase: 4.3.0 - portfinder: 1.0.32 - rimraf: 3.0.2 - toml: 3.0.0 - tree-kill: 1.2.2 - yup: 0.32.11 - transitivePeerDependencies: - - bufferutil - - dexie - - encoding - - supports-color - - utf-8-validate /function-bind@1.1.1: resolution: {integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==} @@ -19264,8 +19107,8 @@ packages: json5: 2.2.3 dev: true - /loadjs@4.3.0: - resolution: {integrity: sha512-vNX4ZZLJBeDEOBvdr2v/F+0aN5oMuPu7JTqrMwp+DtgK+AryOlpy6Xtm2/HpNr+azEa828oQjOtWsB6iDtSfSQ==} + /loadjs@4.2.0: + resolution: {integrity: sha512-AgQGZisAlTPbTEzrHPb6q+NYBMD+DP9uvGSIjSUM5uG+0jG15cb8axWpxuOIqrmQjn6scaaH8JwloiP27b2KXA==} dev: false /locate-path@3.0.0: @@ -19520,8 +19363,8 @@ packages: react: 18.2.0 dev: true - /markdown-to-jsx@7.4.6(react@18.2.0): - resolution: {integrity: sha512-3cyNxI/PwotvYkjg6KmFaN1uyN/7NqETteD2DobBB8ro/FR9jsHIh4Fi7ywAz0s9QHRKCmGlOUggs5GxSWACKA==} + /markdown-to-jsx@7.4.5(react@18.2.0): + resolution: {integrity: sha512-c8NB0H/ig+FOWssE9be0PKsYbCDhcWEkicxMnpdfUuHbFljnen4LAdgUShOyR/PgO3/qKvt9cwfQ0U/zQvZ44A==} engines: {node: '>= 10'} peerDependencies: react: '*' @@ -21096,7 +20939,7 @@ packages: dependencies: core-js: 3.36.1 custom-event-polyfill: 1.0.7 - loadjs: 4.3.0 + loadjs: 4.2.0 rangetouch: 2.0.1 url-polyfill: 1.1.12 dev: false @@ -21112,7 +20955,7 @@ packages: resolution: {integrity: sha512-OBatVyC/N7SCW/FaDHrSd+vn0o5cS855TOmYi4OkdWUMSJCET/xip//ch8xGUvtr3i44X9LVyWwQlRMTN3pwSA==} engines: {node: '>=10'} dependencies: - '@babel/runtime': 7.24.4 + '@babel/runtime': 7.24.1 dev: true /portfinder@1.0.32: @@ -21463,8 +21306,8 @@ packages: dependencies: side-channel: 1.0.4 - /qs@6.12.1: - resolution: {integrity: sha512-zWmv4RSuB9r2mYQw3zxQuHWeU+42aKi1wWig/j4ele4ygELZ7PEO6MM7rim9oAQH2A5MWfsAVf/jPvTPgCbvUQ==} + /qs@6.12.0: + resolution: {integrity: sha512-trVZiI6RMOkO476zLGaBIzszOdFPnCCXHPG9kn0yuS1uz6xdVxPfZdB3vUig9pxPFDM9BRAgz/YUIVQ1/vuiUg==} engines: {node: '>=0.6'} dependencies: side-channel: 1.0.6 @@ -23468,7 +23311,7 @@ packages: jest-worker: 27.5.1 schema-utils: 3.3.0 serialize-javascript: 6.0.2 - terser: 5.30.3 + terser: 5.30.0 webpack: 5.91.0(esbuild@0.19.12) dev: true @@ -23509,8 +23352,8 @@ packages: source-map-support: 0.5.21 dev: true - /terser@5.30.3: - resolution: {integrity: sha512-STdUgOUx8rLbMGO9IOwHLpCqolkDITFFQSMYYwKE1N2lY6MVSaeoi10z/EhWxRc6ybqoVmKSkhKYH/XUpl7vSA==} + /terser@5.30.0: + resolution: {integrity: sha512-Y/SblUl5kEyEFzhMAQdsxVHh+utAxd4IuRNJzKywY/4uzSogh3G219jqbDDxYu4MXO9CzY3tSEqmZvW6AoEDJw==} engines: {node: '>=10'} hasBin: true dependencies: @@ -23686,7 +23529,7 @@ packages: peerDependencies: ts-jest: '>=20.0.0' dependencies: - ts-jest: 29.1.2(@babel/core@7.24.4)(@jest/types@29.6.3)(esbuild@0.19.12)(jest@29.7.0)(typescript@5.2.2) + ts-jest: 29.1.2(@babel/core@7.24.3)(@jest/types@29.6.3)(esbuild@0.19.12)(jest@29.7.0)(typescript@5.2.2) dev: true /ts-jest@29.1.1(@babel/core@7.23.2)(@jest/types@29.6.3)(jest@29.7.0)(typescript@5.2.2): @@ -23724,7 +23567,7 @@ packages: yargs-parser: 21.1.1 dev: true - /ts-jest@29.1.1(@babel/core@7.24.4)(@jest/types@29.6.3)(esbuild@0.19.12)(jest@29.7.0)(typescript@5.2.2): + /ts-jest@29.1.1(@babel/core@7.24.3)(@jest/types@29.6.3)(esbuild@0.19.12)(jest@29.7.0)(typescript@5.2.2): resolution: {integrity: sha512-D6xjnnbP17cC85nliwGiL+tpoKN0StpgE0TeOjXQTU6MVCfsB4v7aW05CgQ/1OywGb0x/oy9hHFnN+sczTiRaA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} hasBin: true @@ -23745,7 +23588,7 @@ packages: esbuild: optional: true dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.3 '@jest/types': 29.6.3 bs-logger: 0.2.6 esbuild: 0.19.12 @@ -23760,7 +23603,7 @@ packages: yargs-parser: 21.1.1 dev: false - /ts-jest@29.1.2(@babel/core@7.24.4)(@jest/types@29.6.3)(esbuild@0.19.12)(jest@29.7.0)(typescript@5.2.2): + /ts-jest@29.1.2(@babel/core@7.24.3)(@jest/types@29.6.3)(esbuild@0.19.12)(jest@29.7.0)(typescript@5.2.2): resolution: {integrity: sha512-br6GJoH/WUX4pu7FbZXuWGKGNDuU7b8Uj77g/Sp7puZV6EXzuByl6JrECvm0MzVzSTkSHWTihsXt+5XYER5b+g==} engines: {node: ^16.10.0 || ^18.0.0 || >=20.0.0} hasBin: true @@ -23781,7 +23624,7 @@ packages: esbuild: optional: true dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.3 '@jest/types': 29.6.3 bs-logger: 0.2.6 esbuild: 0.19.12 From 30a6938fbed5db9d3c803548ac251db7113a3802 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A9lcio=20Franco?= Date: Tue, 16 Apr 2024 21:01:39 -0400 Subject: [PATCH 2/2] fix: add publish script back (#1228) It seems the `changeset` CI needs to have a publish script in order to create pretty changesets. Let's put it back but without really publishing. --- .github/workflows/release-changeset.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release-changeset.yaml b/.github/workflows/release-changeset.yaml index 275a4234e1..00e9c3129a 100644 --- a/.github/workflows/release-changeset.yaml +++ b/.github/workflows/release-changeset.yaml @@ -62,6 +62,7 @@ jobs: id: changesets uses: FuelLabs/changesets-action@main with: + publish: pnpm changeset:release commit: "ci(changesets): versioning packages" title: "ci(changesets): versioning packages" createGithubReleases: aggregate @@ -71,7 +72,7 @@ jobs: GITHUB_TOKEN: ${{ secrets.REPO_TOKEN }} - name: Upload artifacts to Sentry - if: ${{ !steps.changesets.outputs.pullRequestNumber }} + if: steps.changesets.outputs.published == 'true' run: | pnpm sentry-cli sourcemaps inject --release ${{ env.BUILD_VERSION }} ./dist-crx pnpm sentry-cli sourcemaps upload --release ${{ env.BUILD_VERSION }} ./dist-crx @@ -82,7 +83,7 @@ jobs: working-directory: ./packages/app - name: Attach Fuel Wallet to release - if: ${{ !steps.changesets.outputs.pullRequestNumber }} + if: steps.changesets.outputs.published == 'true' uses: softprops/action-gh-release@v1 with: token: ${{ secrets.GITHUB_TOKEN }}