From c9933a43561b0dc6a4a83a1a3c3a02c8f728d84d Mon Sep 17 00:00:00 2001 From: Puyodead1 Date: Mon, 2 Oct 2023 07:53:26 -0700 Subject: [PATCH] ios --- .gitignore | 1 + app-icon.png | Bin 0 -> 6846 bytes pnpm-lock.yaml | 3213 ++++++++--------- src-tauri/Cargo.lock | 436 ++- src-tauri/Cargo.toml | 2 +- src-tauri/gen/apple/.gitignore | 3 + .../AppIcon.appiconset/AppIcon-20x20@1x.png | Bin 0 -> 630 bytes .../AppIcon.appiconset/AppIcon-20x20@2x-1.png | Bin 0 -> 1337 bytes .../AppIcon.appiconset/AppIcon-20x20@2x.png | Bin 0 -> 1337 bytes .../AppIcon.appiconset/AppIcon-20x20@3x.png | Bin 0 -> 1942 bytes .../AppIcon.appiconset/AppIcon-29x29@1x.png | Bin 0 -> 952 bytes .../AppIcon.appiconset/AppIcon-29x29@2x-1.png | Bin 0 -> 1913 bytes .../AppIcon.appiconset/AppIcon-29x29@2x.png | Bin 0 -> 1913 bytes .../AppIcon.appiconset/AppIcon-29x29@3x.png | Bin 0 -> 2730 bytes .../AppIcon.appiconset/AppIcon-40x40@1x.png | Bin 0 -> 1337 bytes .../AppIcon.appiconset/AppIcon-40x40@2x-1.png | Bin 0 -> 2548 bytes .../AppIcon.appiconset/AppIcon-40x40@2x.png | Bin 0 -> 2548 bytes .../AppIcon.appiconset/AppIcon-40x40@3x.png | Bin 0 -> 3711 bytes .../AppIcon.appiconset/AppIcon-512@2x.png | Bin 0 -> 55086 bytes .../AppIcon.appiconset/AppIcon-60x60@2x.png | Bin 0 -> 3711 bytes .../AppIcon.appiconset/AppIcon-60x60@3x.png | Bin 0 -> 5637 bytes .../AppIcon.appiconset/AppIcon-76x76@1x.png | Bin 0 -> 2415 bytes .../AppIcon.appiconset/AppIcon-76x76@2x.png | Bin 0 -> 4690 bytes .../AppIcon-83.5x83.5@2x.png | Bin 0 -> 5259 bytes .../AppIcon.appiconset/Contents.json | 116 + .../gen/apple/Assets.xcassets/Contents.json | 6 + src-tauri/gen/apple/ExportOptions.plist | 8 + src-tauri/gen/apple/Podfile | 21 + .../gen/apple/Sources/app/bindings/bindings.h | 8 + src-tauri/gen/apple/Sources/app/main.mm | 6 + .../gen/apple/app.xcodeproj/project.pbxproj | 459 +++ .../contents.xcworkspacedata | 7 + .../xcshareddata/WorkspaceSettings.xcsettings | 10 + .../xcshareddata/xcschemes/app_iOS.xcscheme | 131 + src-tauri/gen/apple/app_iOS/Info.plist | 44 + .../gen/apple/app_iOS/app_iOS.entitlements | 5 + src-tauri/gen/apple/project.yml | 88 + src-tauri/icons/icon.icns | Bin 95386 -> 95386 bytes src-tauri/tauri.ios.conf.json | 5 + 39 files changed, 2634 insertions(+), 1935 deletions(-) create mode 100644 app-icon.png create mode 100644 src-tauri/gen/apple/.gitignore create mode 100644 src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@1x.png create mode 100644 src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@2x-1.png create mode 100644 src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@2x.png create mode 100644 src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@3x.png create mode 100644 src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@1x.png create mode 100644 src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@2x-1.png create mode 100644 src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@2x.png create mode 100644 src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@3x.png create mode 100644 src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@1x.png create mode 100644 src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@2x-1.png create mode 100644 src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@2x.png create mode 100644 src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@3x.png create mode 100644 src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-512@2x.png create mode 100644 src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-60x60@2x.png create mode 100644 src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-60x60@3x.png create mode 100644 src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-76x76@1x.png create mode 100644 src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-76x76@2x.png create mode 100644 src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-83.5x83.5@2x.png create mode 100644 src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/Contents.json create mode 100644 src-tauri/gen/apple/Assets.xcassets/Contents.json create mode 100644 src-tauri/gen/apple/ExportOptions.plist create mode 100644 src-tauri/gen/apple/Podfile create mode 100644 src-tauri/gen/apple/Sources/app/bindings/bindings.h create mode 100644 src-tauri/gen/apple/Sources/app/main.mm create mode 100644 src-tauri/gen/apple/app.xcodeproj/project.pbxproj create mode 100644 src-tauri/gen/apple/app.xcodeproj/project.xcworkspace/contents.xcworkspacedata create mode 100644 src-tauri/gen/apple/app.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings create mode 100644 src-tauri/gen/apple/app.xcodeproj/xcshareddata/xcschemes/app_iOS.xcscheme create mode 100644 src-tauri/gen/apple/app_iOS/Info.plist create mode 100644 src-tauri/gen/apple/app_iOS/app_iOS.entitlements create mode 100644 src-tauri/gen/apple/project.yml diff --git a/.gitignore b/.gitignore index 4d29575..0f732ef 100644 --- a/.gitignore +++ b/.gitignore @@ -21,3 +21,4 @@ npm-debug.log* yarn-debug.log* yarn-error.log* +src-tauri/.cargo/config.toml diff --git a/app-icon.png b/app-icon.png new file mode 100644 index 0000000000000000000000000000000000000000..7d742be6546470ab1b7c6c907f0337ad2e5a1dbe GIT binary patch literal 6846 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 Ri(EGWQ$x!$#i#Ih{|6EUOK|`I literal 0 HcmV?d00001 diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 920aa64..ab01ca4 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -7,10 +7,10 @@ settings: dependencies: '@emotion/react': specifier: ^11.11.1 - version: 11.11.1(@types/react@18.2.21)(react@18.2.0) + version: 11.11.1(@types/react@18.2.24)(react@18.2.0) '@emotion/styled': specifier: ^11.11.0 - version: 11.11.0(@emotion/react@11.11.1)(@types/react@18.2.21)(react@18.2.0) + version: 11.11.0(@emotion/react@11.11.1)(@types/react@18.2.24)(react@18.2.0) '@fontsource/roboto': specifier: ^4.5.8 version: 4.5.8 @@ -31,7 +31,7 @@ dependencies: version: 1.6.1 '@mui/material': specifier: ^5.14.9 - version: 5.14.9(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@types/react@18.2.21)(react-dom@18.2.0)(react@18.2.0) + version: 5.14.11(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0) '@originjs/vite-plugin-commonjs': specifier: ^1.0.3 version: 1.0.3 @@ -79,10 +79,10 @@ dependencies: version: 13.4.0(react-dom@18.2.0)(react@18.2.0) '@testing-library/user-event': specifier: ^13.5.0 - version: 13.5.0(@testing-library/dom@9.3.1) + version: 13.5.0(@testing-library/dom@9.3.3) dayjs: specifier: ^1.11.9 - version: 1.11.9 + version: 1.11.10 framer-motion: specifier: ^10.16.4 version: 10.16.4(react-dom@18.2.0)(react@18.2.0) @@ -115,7 +115,7 @@ dependencies: version: 3.1.4(react@18.2.0) react-hook-form: specifier: ^7.46.1 - version: 7.46.1(react@18.2.0) + version: 7.46.2(react@18.2.0) react-infinite-scroll-component: specifier: ^6.1.0 version: 6.1.0(react@18.2.0) @@ -139,12 +139,12 @@ dependencies: version: 1.0.3(react-dom@18.2.0)(react@18.2.0) styled-components: specifier: ^5.3.10 - version: 5.3.11(react-dom@18.2.0)(react-is@18.2.0)(react@18.2.0) + version: 5.3.11(@babel/core@7.23.0)(react-dom@18.2.0)(react-is@18.2.0)(react@18.2.0) devDependencies: '@craco/craco': specifier: ^7.1.0 - version: 7.1.0(@types/node@16.18.50)(postcss@8.4.29)(react-scripts@5.0.1)(typescript@5.2.2) + version: 7.1.0(@types/node@16.18.55)(postcss@8.4.31)(react-scripts@5.0.1)(typescript@5.2.2) '@tauri-apps/cli': specifier: 2.0.0-alpha.14 version: 2.0.0-alpha.14 @@ -156,34 +156,34 @@ devDependencies: version: 5.13.5 '@types/node': specifier: ^16.18.50 - version: 16.18.50 + version: 16.18.55 '@types/react': specifier: ^18.2.15 - version: 18.2.21 + version: 18.2.24 '@types/react-dom': specifier: ^18.2.7 - version: 18.2.7 + version: 18.2.8 '@types/styled-components': specifier: ^5.1.27 - version: 5.1.27 + version: 5.1.28 '@typescript-eslint/eslint-plugin': specifier: ^6.7.0 - version: 6.7.0(@typescript-eslint/parser@6.7.0)(eslint@8.49.0)(typescript@5.2.2) + version: 6.7.3(@typescript-eslint/parser@6.7.3)(eslint@8.50.0)(typescript@5.2.2) '@typescript-eslint/parser': specifier: ^6.7.0 - version: 6.7.0(eslint@8.49.0)(typescript@5.2.2) + version: 6.7.3(eslint@8.50.0)(typescript@5.2.2) '@vitejs/plugin-react': specifier: ^4.0.4 - version: 4.0.4(vite@4.4.9) + version: 4.1.0(vite@4.4.9) eslint: specifier: ^8.49.0 - version: 8.49.0 + version: 8.50.0 eslint-plugin-react-hooks: specifier: ^4.6.0 - version: 4.6.0(eslint@8.49.0) + version: 4.6.0(eslint@8.50.0) eslint-plugin-react-refresh: specifier: ^0.4.3 - version: 0.4.3(eslint@8.49.0) + version: 0.4.3(eslint@8.50.0) internal-ip: specifier: ^7.0.0 version: 7.0.0 @@ -192,7 +192,7 @@ devDependencies: version: 5.2.2 vite: specifier: ^4.4.5 - version: 4.4.9(@types/node@16.18.50) + version: 4.4.9(@types/node@16.18.55) vite-plugin-chunk-split: specifier: ^0.4.7 version: 0.4.7(vite@4.4.9) @@ -207,7 +207,7 @@ devDependencies: version: 0.0.7(vite@4.4.9) vite-plugin-svgr: specifier: ^3.2.0 - version: 3.2.0(rollup@2.79.1)(typescript@5.2.2)(vite@4.4.9) + version: 3.3.0(rollup@2.79.1)(typescript@5.2.2)(vite@4.4.9) packages: @@ -230,8 +230,7 @@ packages: engines: {node: '>=6.0.0'} dependencies: '@jridgewell/gen-mapping': 0.3.3 - '@jridgewell/trace-mapping': 0.3.18 - dev: true + '@jridgewell/trace-mapping': 0.3.19 /@apideck/better-ajv-errors@0.3.6(ajv@8.12.0): resolution: {integrity: sha512-P+ZygBLZtkp0qqOAJJVX4oX/sFo5JR3eBWwwuqHHhK0GIgQOKWrAfiAaWX0aArHkRWHMuggFEgAZNxVPwPZYaA==} @@ -245,261 +244,205 @@ packages: leven: 3.1.0 dev: true - /@babel/code-frame@7.21.4: - resolution: {integrity: sha512-LYvhNKfwWSPpocw8GI7gpK2nq3HSDuEPC/uSYaALSJu9xjsalaaYFOq0Pwt5KmVqwEbZlDu81aLXwBOmD/Fv9g==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/highlight': 7.18.6 - dev: false - /@babel/code-frame@7.22.13: resolution: {integrity: sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==} engines: {node: '>=6.9.0'} dependencies: - '@babel/highlight': 7.22.13 + '@babel/highlight': 7.22.20 chalk: 2.4.2 - /@babel/compat-data@7.22.9: - resolution: {integrity: sha512-5UamI7xkUcJ3i9qVDS+KFDEK8/7oJ55/sJMB1Ge7IEapr7KfdfV/HErR+koZwOfd+SgtFKOKRhRakdg++DcJpQ==} + /@babel/compat-data@7.22.20: + resolution: {integrity: sha512-BQYjKbpXjoXwFW5jGqiizJQQT/aC7pFm9Ok1OWssonuguICi264lbgMzRp2ZMmRSlfkX6DsWDDcsrctK8Rwfiw==} engines: {node: '>=6.9.0'} - dev: true - /@babel/core@7.22.15: - resolution: {integrity: sha512-PtZqMmgRrvj8ruoEOIwVA3yoF91O+Hgw9o7DAUTNBA6Mo2jpu31clx9a7Nz/9JznqetTR6zwfC4L3LAjKQXUwA==} + /@babel/core@7.23.0: + resolution: {integrity: sha512-97z/ju/Jy1rZmDxybphrBuI+jtJjFVoz7Mr9yUQVVVi+DNZE333uFQeMOqcCIy1x3WYBIbWftUSLmbNXNT7qFQ==} engines: {node: '>=6.9.0'} dependencies: '@ampproject/remapping': 2.2.1 '@babel/code-frame': 7.22.13 - '@babel/generator': 7.22.15 + '@babel/generator': 7.23.0 '@babel/helper-compilation-targets': 7.22.15 - '@babel/helper-module-transforms': 7.22.15(@babel/core@7.22.15) - '@babel/helpers': 7.22.15 - '@babel/parser': 7.22.16 + '@babel/helper-module-transforms': 7.23.0(@babel/core@7.23.0) + '@babel/helpers': 7.23.1 + '@babel/parser': 7.23.0 '@babel/template': 7.22.15 - '@babel/traverse': 7.22.15 - '@babel/types': 7.22.15 - convert-source-map: 1.9.0 + '@babel/traverse': 7.23.0(supports-color@5.5.0) + '@babel/types': 7.23.0 + convert-source-map: 2.0.0 debug: 4.3.4(supports-color@5.5.0) gensync: 1.0.0-beta.2 json5: 2.2.3 semver: 6.3.1 transitivePeerDependencies: - supports-color - dev: true - /@babel/core@7.22.17: - resolution: {integrity: sha512-2EENLmhpwplDux5PSsZnSbnSkB3tZ6QTksgO25xwEL7pIDcNOMhF5v/s6RzwjMZzZzw9Ofc30gHv5ChCC8pifQ==} - engines: {node: '>=6.9.0'} - dependencies: - '@ampproject/remapping': 2.2.1 - '@babel/code-frame': 7.22.13 - '@babel/generator': 7.22.15 - '@babel/helper-compilation-targets': 7.22.15 - '@babel/helper-module-transforms': 7.22.17(@babel/core@7.22.17) - '@babel/helpers': 7.22.15 - '@babel/parser': 7.22.16 - '@babel/template': 7.22.15 - '@babel/traverse': 7.22.17(supports-color@5.5.0) - '@babel/types': 7.22.17 - convert-source-map: 1.9.0 - debug: 4.3.4(supports-color@5.5.0) - gensync: 1.0.0-beta.2 - json5: 2.2.3 - semver: 6.3.1 - transitivePeerDependencies: - - supports-color - dev: true - - /@babel/eslint-parser@7.22.15(@babel/core@7.22.17)(eslint@8.49.0): + /@babel/eslint-parser@7.22.15(@babel/core@7.23.0)(eslint@8.50.0): resolution: {integrity: sha512-yc8OOBIQk1EcRrpizuARSQS0TWAcOMpEJ1aafhNznaeYkeL+OhqnDObGFylB8ka8VFF/sZc+S4RzHyO+3LjQxg==} engines: {node: ^10.13.0 || ^12.13.0 || >=14.0.0} peerDependencies: '@babel/core': ^7.11.0 eslint: ^7.5.0 || ^8.0.0 dependencies: - '@babel/core': 7.22.17 + '@babel/core': 7.23.0 '@nicolo-ribaudo/eslint-scope-5-internals': 5.1.1-v1 - eslint: 8.49.0 + eslint: 8.50.0 eslint-visitor-keys: 2.1.0 semver: 6.3.1 dev: true - /@babel/generator@7.22.15: - resolution: {integrity: sha512-Zu9oWARBqeVOW0dZOjXc3JObrzuqothQ3y/n1kUtrjCoCPLkXUwMvOo/F/TCfoHMbWIFlWwpZtkZVb9ga4U2pA==} + /@babel/generator@7.23.0: + resolution: {integrity: sha512-lN85QRR+5IbYrMWM6Y4pE/noaQtg4pNiqeNGX60eqOfo6gtEj6uw/JagelB8vVztSd7R6M5n1+PQkDbHbBRU4g==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.22.15 + '@babel/types': 7.23.0 '@jridgewell/gen-mapping': 0.3.3 - '@jridgewell/trace-mapping': 0.3.18 + '@jridgewell/trace-mapping': 0.3.19 jsesc: 2.5.2 /@babel/helper-annotate-as-pure@7.22.5: resolution: {integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.22.17 + '@babel/types': 7.23.0 /@babel/helper-builder-binary-assignment-operator-visitor@7.22.15: resolution: {integrity: sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.22.17 + '@babel/types': 7.23.0 dev: true /@babel/helper-compilation-targets@7.22.15: resolution: {integrity: sha512-y6EEzULok0Qvz8yyLkCvVX+02ic+By2UdOhylwUOvOn9dvYc9mKICJuuU1n1XBI02YWsNsnrY1kc6DVbjcXbtw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/compat-data': 7.22.9 + '@babel/compat-data': 7.22.20 '@babel/helper-validator-option': 7.22.15 - browserslist: 4.21.10 + browserslist: 4.22.1 lru-cache: 5.1.1 semver: 6.3.1 - dev: true - /@babel/helper-create-class-features-plugin@7.22.15(@babel/core@7.22.17): + /@babel/helper-create-class-features-plugin@7.22.15(@babel/core@7.23.0): resolution: {integrity: sha512-jKkwA59IXcvSaiK2UN45kKwSC9o+KuoXsBDvHvU/7BecYIp8GQ2UwrVvFgJASUT+hBnwJx6MhvMCuMzwZZ7jlg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.22.17 + '@babel/core': 7.23.0 '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-environment-visitor': 7.22.5 - '@babel/helper-function-name': 7.22.5 - '@babel/helper-member-expression-to-functions': 7.22.15 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-function-name': 7.23.0 + '@babel/helper-member-expression-to-functions': 7.23.0 '@babel/helper-optimise-call-expression': 7.22.5 - '@babel/helper-replace-supers': 7.22.9(@babel/core@7.22.17) + '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.0) '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 '@babel/helper-split-export-declaration': 7.22.6 semver: 6.3.1 dev: true - /@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.22.17): + /@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.23.0): resolution: {integrity: sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.22.17 + '@babel/core': 7.23.0 '@babel/helper-annotate-as-pure': 7.22.5 regexpu-core: 5.3.2 semver: 6.3.1 dev: true - /@babel/helper-define-polyfill-provider@0.4.2(@babel/core@7.22.17): + /@babel/helper-define-polyfill-provider@0.4.2(@babel/core@7.23.0): resolution: {integrity: sha512-k0qnnOqHn5dK9pZpfD5XXZ9SojAITdCKRn2Lp6rnDGzIbaP0rHyMPk/4wsSxVBVz4RfN0q6VpXWP2pDGIoQ7hw==} peerDependencies: '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 dependencies: - '@babel/core': 7.22.17 + '@babel/core': 7.23.0 '@babel/helper-compilation-targets': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 debug: 4.3.4(supports-color@5.5.0) lodash.debounce: 4.0.8 - resolve: 1.22.4 + resolve: 1.22.6 transitivePeerDependencies: - supports-color dev: true - /@babel/helper-environment-visitor@7.22.5: - resolution: {integrity: sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q==} + /@babel/helper-environment-visitor@7.22.20: + resolution: {integrity: sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==} engines: {node: '>=6.9.0'} - /@babel/helper-function-name@7.22.5: - resolution: {integrity: sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ==} + /@babel/helper-function-name@7.23.0: + resolution: {integrity: sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==} engines: {node: '>=6.9.0'} dependencies: '@babel/template': 7.22.15 - '@babel/types': 7.22.15 + '@babel/types': 7.23.0 /@babel/helper-hoist-variables@7.22.5: resolution: {integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.22.15 + '@babel/types': 7.23.0 - /@babel/helper-member-expression-to-functions@7.22.15: - resolution: {integrity: sha512-qLNsZbgrNh0fDQBCPocSL8guki1hcPvltGDv/NxvUoABwFq7GkKSu1nRXeJkVZc+wJvne2E0RKQz+2SQrz6eAA==} + /@babel/helper-member-expression-to-functions@7.23.0: + resolution: {integrity: sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.22.17 + '@babel/types': 7.23.0 dev: true - /@babel/helper-module-imports@7.21.4: - resolution: {integrity: sha512-orajc5T2PsRYUN3ZryCEFeMDYwyw09c/pZeaQEZPH0MpKzSvn3e0uXsDBu3k03VI+9DBiRo+l22BfKTpKwa/Wg==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.21.5 - dev: false - /@babel/helper-module-imports@7.22.15: resolution: {integrity: sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.22.15 + '@babel/types': 7.23.0 - /@babel/helper-module-transforms@7.22.15(@babel/core@7.22.15): - resolution: {integrity: sha512-l1UiX4UyHSFsYt17iQ3Se5pQQZZHa22zyIXURmvkmLCD4t/aU+dvNWHatKac/D9Vm9UES7nvIqHs4jZqKviUmQ==} + /@babel/helper-module-transforms@7.23.0(@babel/core@7.23.0): + resolution: {integrity: sha512-WhDWw1tdrlT0gMgUJSlX0IQvoO1eN279zrAUbVB+KpV2c3Tylz8+GnKOLllCS6Z/iZQEyVYxhZVUdPTqs2YYPw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.22.15 - '@babel/helper-environment-visitor': 7.22.5 + '@babel/core': 7.23.0 + '@babel/helper-environment-visitor': 7.22.20 '@babel/helper-module-imports': 7.22.15 '@babel/helper-simple-access': 7.22.5 '@babel/helper-split-export-declaration': 7.22.6 - '@babel/helper-validator-identifier': 7.22.15 - dev: true - - /@babel/helper-module-transforms@7.22.17(@babel/core@7.22.17): - resolution: {integrity: sha512-XouDDhQESrLHTpnBtCKExJdyY4gJCdrvH2Pyv8r8kovX2U8G0dRUOT45T9XlbLtuu9CLXP15eusnkprhoPV5iQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.22.17 - '@babel/helper-environment-visitor': 7.22.5 - '@babel/helper-module-imports': 7.22.15 - '@babel/helper-simple-access': 7.22.5 - '@babel/helper-split-export-declaration': 7.22.6 - '@babel/helper-validator-identifier': 7.22.15 - dev: true + '@babel/helper-validator-identifier': 7.22.20 /@babel/helper-optimise-call-expression@7.22.5: resolution: {integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.22.17 + '@babel/types': 7.23.0 dev: true /@babel/helper-plugin-utils@7.22.5: resolution: {integrity: sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==} engines: {node: '>=6.9.0'} - dev: true - /@babel/helper-remap-async-to-generator@7.22.17(@babel/core@7.22.17): - resolution: {integrity: sha512-bxH77R5gjH3Nkde6/LuncQoLaP16THYPscurp1S8z7S9ZgezCyV3G8Hc+TZiCmY8pz4fp8CvKSgtJMW0FkLAxA==} + /@babel/helper-remap-async-to-generator@7.22.20(@babel/core@7.23.0): + resolution: {integrity: sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.22.17 + '@babel/core': 7.23.0 '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-environment-visitor': 7.22.5 - '@babel/helper-wrap-function': 7.22.17 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-wrap-function': 7.22.20 dev: true - /@babel/helper-replace-supers@7.22.9(@babel/core@7.22.17): - resolution: {integrity: sha512-LJIKvvpgPOPUThdYqcX6IXRuIcTkcAub0IaDRGCZH0p5GPUp7PhRU9QVgFcDDd51BaPkk77ZjqFwh6DZTAEmGg==} + /@babel/helper-replace-supers@7.22.20(@babel/core@7.23.0): + resolution: {integrity: sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.22.17 - '@babel/helper-environment-visitor': 7.22.5 - '@babel/helper-member-expression-to-functions': 7.22.15 + '@babel/core': 7.23.0 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-member-expression-to-functions': 7.23.0 '@babel/helper-optimise-call-expression': 7.22.5 dev: true @@ -507,1252 +450,1189 @@ packages: resolution: {integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.22.15 - dev: true + '@babel/types': 7.23.0 /@babel/helper-skip-transparent-expression-wrappers@7.22.5: resolution: {integrity: sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.22.17 + '@babel/types': 7.23.0 dev: true /@babel/helper-split-export-declaration@7.22.6: resolution: {integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.22.15 - - /@babel/helper-string-parser@7.21.5: - resolution: {integrity: sha512-5pTUx3hAJaZIdW99sJ6ZUUgWq/Y+Hja7TowEnLNMm1VivRgZQL3vpBY3qUACVsvw+yQU6+YgfBVmcbLaZtrA1w==} - engines: {node: '>=6.9.0'} - dev: false + '@babel/types': 7.23.0 /@babel/helper-string-parser@7.22.5: resolution: {integrity: sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==} engines: {node: '>=6.9.0'} - /@babel/helper-validator-identifier@7.19.1: - resolution: {integrity: sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==} - engines: {node: '>=6.9.0'} - dev: false - - /@babel/helper-validator-identifier@7.22.15: - resolution: {integrity: sha512-4E/F9IIEi8WR94324mbDUMo074YTheJmd7eZF5vITTeYchqAi6sYXRLHUVsmkdmY4QjfKTcB2jB7dVP3NaBElQ==} + /@babel/helper-validator-identifier@7.22.20: + resolution: {integrity: sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==} engines: {node: '>=6.9.0'} /@babel/helper-validator-option@7.22.15: resolution: {integrity: sha512-bMn7RmyFjY/mdECUbgn9eoSY4vqvacUnS9i9vGAGttgFWesO6B4CYWA7XlpbWgBt71iv/hfbPlynohStqnu5hA==} engines: {node: '>=6.9.0'} - dev: true - /@babel/helper-wrap-function@7.22.17: - resolution: {integrity: sha512-nAhoheCMlrqU41tAojw9GpVEKDlTS8r3lzFmF0lP52LwblCPbuFSO7nGIZoIcoU5NIm1ABrna0cJExE4Ay6l2Q==} + /@babel/helper-wrap-function@7.22.20: + resolution: {integrity: sha512-pms/UwkOpnQe/PDAEdV/d7dVCoBbB+R4FvYoHGZz+4VPcg7RtYy2KP7S2lbuWM6FCSgob5wshfGESbC/hzNXZw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/helper-function-name': 7.22.5 + '@babel/helper-function-name': 7.23.0 '@babel/template': 7.22.15 - '@babel/types': 7.22.17 + '@babel/types': 7.23.0 dev: true - /@babel/helpers@7.22.15: - resolution: {integrity: sha512-7pAjK0aSdxOwR+CcYAqgWOGy5dcfvzsTIfFTb2odQqW47MDfv14UaJDY6eng8ylM2EaeKXdxaSWESbkmaQHTmw==} + /@babel/helpers@7.23.1: + resolution: {integrity: sha512-chNpneuK18yW5Oxsr+t553UZzzAs3aZnFm4bxhebsNTeshrC95yA7l5yl7GBAG+JG1rF0F7zzD2EixK9mWSDoA==} engines: {node: '>=6.9.0'} dependencies: '@babel/template': 7.22.15 - '@babel/traverse': 7.22.15 - '@babel/types': 7.22.15 + '@babel/traverse': 7.23.0(supports-color@5.5.0) + '@babel/types': 7.23.0 transitivePeerDependencies: - supports-color - dev: true - /@babel/highlight@7.18.6: - resolution: {integrity: sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==} + /@babel/highlight@7.22.20: + resolution: {integrity: sha512-dkdMCN3py0+ksCgYmGG8jKeGA/8Tk+gJwSYYlFGxG5lmhfKNoAy004YpLxpS1W2J8m/EK2Ew+yOs9pVRwO89mg==} engines: {node: '>=6.9.0'} dependencies: - '@babel/helper-validator-identifier': 7.19.1 - chalk: 2.4.2 - js-tokens: 4.0.0 - dev: false - - /@babel/highlight@7.22.13: - resolution: {integrity: sha512-C/BaXcnnvBCmHTpz/VGZ8jgtE2aYlW4hxDhseJAWZb7gqGM/qtCK6iZUb0TyKFf7BOUsBH7Q7fkRsDRhg1XklQ==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/helper-validator-identifier': 7.22.15 + '@babel/helper-validator-identifier': 7.22.20 chalk: 2.4.2 js-tokens: 4.0.0 - /@babel/parser@7.22.16: - resolution: {integrity: sha512-+gPfKv8UWeKKeJTUxe59+OobVcrYHETCsORl61EmSkmgymguYk/X5bp7GuUIXaFsc6y++v8ZxPsLSSuujqDphA==} + /@babel/parser@7.23.0: + resolution: {integrity: sha512-vvPKKdMemU85V9WE/l5wZEmImpCtLqbnTvqDS2U1fJ96KrxoW7KrXhNsNCblQlg8Ck4b85yxdTyelsMUgFUXiw==} engines: {node: '>=6.0.0'} hasBin: true dependencies: - '@babel/types': 7.22.15 + '@babel/types': 7.23.0 - /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.22.15(@babel/core@7.22.17): + /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.22.15(@babel/core@7.23.0): resolution: {integrity: sha512-FB9iYlz7rURmRJyXRKEnalYPPdn87H5no108cyuQQyMwlpJ2SJtpIUBI27kdTin956pz+LPypkPVPUTlxOmrsg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.22.17 + '@babel/core': 7.23.0 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.22.15(@babel/core@7.22.17): + /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.22.15(@babel/core@7.23.0): resolution: {integrity: sha512-Hyph9LseGvAeeXzikV88bczhsrLrIZqDPxO+sSmAunMPaGrBGhfMWzCPYTtiW9t+HzSE2wtV8e5cc5P6r1xMDQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.13.0 dependencies: - '@babel/core': 7.22.17 + '@babel/core': 7.23.0 '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - '@babel/plugin-transform-optional-chaining': 7.22.15(@babel/core@7.22.17) + '@babel/plugin-transform-optional-chaining': 7.23.0(@babel/core@7.23.0) dev: true - /@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.22.17): + /@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.23.0): resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==} engines: {node: '>=6.9.0'} deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-class-properties instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.17 - '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.22.17) + '@babel/core': 7.23.0 + '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.0) '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-proposal-decorators@7.22.15(@babel/core@7.22.17): - resolution: {integrity: sha512-kc0VvbbUyKelvzcKOSyQUSVVXS5pT3UhRB0e3c9An86MvLqs+gx0dN4asllrDluqSa3m9YyooXKGOFVomnyFkg==} + /@babel/plugin-proposal-decorators@7.23.0(@babel/core@7.23.0): + resolution: {integrity: sha512-kYsT+f5ARWF6AdFmqoEEp+hpqxEB8vGmRWfw2aj78M2vTwS2uHW91EF58iFm1Z9U8Y/RrLu2XKJn46P9ca1b0w==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.17 - '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.22.17) + '@babel/core': 7.23.0 + '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.0) '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-replace-supers': 7.22.9(@babel/core@7.22.17) + '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.0) '@babel/helper-split-export-declaration': 7.22.6 - '@babel/plugin-syntax-decorators': 7.22.10(@babel/core@7.22.17) + '@babel/plugin-syntax-decorators': 7.22.10(@babel/core@7.23.0) dev: true - /@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.22.17): + /@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.23.0): resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==} engines: {node: '>=6.9.0'} deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-nullish-coalescing-operator instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.17 + '@babel/core': 7.23.0 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.22.17) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.0) dev: true - /@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.22.17): + /@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.23.0): resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==} engines: {node: '>=6.9.0'} deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-numeric-separator instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.17 + '@babel/core': 7.23.0 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.22.17) + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.0) dev: true - /@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.22.17): + /@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.23.0): resolution: {integrity: sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==} engines: {node: '>=6.9.0'} deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-chaining instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.17 + '@babel/core': 7.23.0 '@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.22.17) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.0) dev: true - /@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.22.17): + /@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.23.0): resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==} engines: {node: '>=6.9.0'} deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-private-methods instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.17 - '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.22.17) + '@babel/core': 7.23.0 + '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.0) '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.22.17): + /@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.23.0): resolution: {integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.17 + '@babel/core': 7.23.0 dev: true - /@babel/plugin-proposal-private-property-in-object@7.21.11(@babel/core@7.22.17): + /@babel/plugin-proposal-private-property-in-object@7.21.11(@babel/core@7.23.0): resolution: {integrity: sha512-0QZ8qP/3RLDVBwBFoWAwCtgcDZJVwA5LUJRZU8x2YFfKNuFq161wK3cuGrALu5yiPu+vzwTAg/sMWVNeWeNyaw==} engines: {node: '>=6.9.0'} deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-private-property-in-object instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.17 + '@babel/core': 7.23.0 '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.22.17) + '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.0) '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.22.17) + '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.0) dev: true - /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.22.17): + /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.23.0): resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.17 + '@babel/core': 7.23.0 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.22.17): + /@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.23.0): resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.17 + '@babel/core': 7.23.0 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.22.17): + /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.23.0): resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.17 + '@babel/core': 7.23.0 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.22.17): + /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.23.0): resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.17 + '@babel/core': 7.23.0 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-decorators@7.22.10(@babel/core@7.22.17): + /@babel/plugin-syntax-decorators@7.22.10(@babel/core@7.23.0): resolution: {integrity: sha512-z1KTVemBjnz+kSEilAsI4lbkPOl5TvJH7YDSY1CTIzvLWJ+KHXp+mRe8VPmfnyvqOPqar1V2gid2PleKzRUstQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.17 + '@babel/core': 7.23.0 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.22.17): + /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.23.0): resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.17 + '@babel/core': 7.23.0 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.22.17): + /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.23.0): resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.17 + '@babel/core': 7.23.0 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-flow@7.22.5(@babel/core@7.22.15): + /@babel/plugin-syntax-flow@7.22.5(@babel/core@7.23.0): resolution: {integrity: sha512-9RdCl0i+q0QExayk2nOS7853w08yLucnnPML6EN9S8fgMPVtdLDCdx/cOQ/i44Lb9UeQX9A35yaqBBOMMZxPxQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.15 + '@babel/core': 7.23.0 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-flow@7.22.5(@babel/core@7.22.17): - resolution: {integrity: sha512-9RdCl0i+q0QExayk2nOS7853w08yLucnnPML6EN9S8fgMPVtdLDCdx/cOQ/i44Lb9UeQX9A35yaqBBOMMZxPxQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.17 - '@babel/helper-plugin-utils': 7.22.5 - dev: true - - /@babel/plugin-syntax-import-assertions@7.22.5(@babel/core@7.22.17): + /@babel/plugin-syntax-import-assertions@7.22.5(@babel/core@7.23.0): resolution: {integrity: sha512-rdV97N7KqsRzeNGoWUOK6yUsWarLjE5Su/Snk9IYPU9CwkWHs4t+rTGOvffTR8XGkJMTAdLfO0xVnXm8wugIJg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.17 + '@babel/core': 7.23.0 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-import-attributes@7.22.5(@babel/core@7.22.17): + /@babel/plugin-syntax-import-attributes@7.22.5(@babel/core@7.23.0): resolution: {integrity: sha512-KwvoWDeNKPETmozyFE0P2rOLqh39EoQHNjqizrI5B8Vt0ZNS7M56s7dAiAqbYfiAYOuIzIh96z3iR2ktgu3tEg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.17 + '@babel/core': 7.23.0 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.22.17): + /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.23.0): resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.17 + '@babel/core': 7.23.0 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.22.17): + /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.23.0): resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.17 + '@babel/core': 7.23.0 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-jsx@7.22.5(@babel/core@7.22.15): + /@babel/plugin-syntax-jsx@7.22.5(@babel/core@7.23.0): resolution: {integrity: sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.15 + '@babel/core': 7.23.0 '@babel/helper-plugin-utils': 7.22.5 - dev: true - /@babel/plugin-syntax-jsx@7.22.5(@babel/core@7.22.17): - resolution: {integrity: sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.17 - '@babel/helper-plugin-utils': 7.22.5 - dev: true - - /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.22.17): + /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.23.0): resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.17 + '@babel/core': 7.23.0 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.22.17): + /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.23.0): resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.17 + '@babel/core': 7.23.0 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.22.17): + /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.23.0): resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.17 + '@babel/core': 7.23.0 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.22.17): + /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.23.0): resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.17 + '@babel/core': 7.23.0 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.22.17): + /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.23.0): resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.17 + '@babel/core': 7.23.0 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.22.17): + /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.23.0): resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.17 + '@babel/core': 7.23.0 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.22.17): + /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.23.0): resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.17 + '@babel/core': 7.23.0 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.22.17): + /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.23.0): resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.17 + '@babel/core': 7.23.0 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-typescript@7.22.5(@babel/core@7.22.17): + /@babel/plugin-syntax-typescript@7.22.5(@babel/core@7.23.0): resolution: {integrity: sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.17 + '@babel/core': 7.23.0 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.22.17): + /@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.23.0): resolution: {integrity: sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.22.17 - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.22.17) + '@babel/core': 7.23.0 + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.0) '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-arrow-functions@7.22.5(@babel/core@7.22.17): + /@babel/plugin-transform-arrow-functions@7.22.5(@babel/core@7.23.0): resolution: {integrity: sha512-26lTNXoVRdAnsaDXPpvCNUq+OVWEVC6bx7Vvz9rC53F2bagUWW4u4ii2+h8Fejfh7RYqPxn+libeFBBck9muEw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.17 + '@babel/core': 7.23.0 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-async-generator-functions@7.22.15(@babel/core@7.22.17): + /@babel/plugin-transform-async-generator-functions@7.22.15(@babel/core@7.23.0): resolution: {integrity: sha512-jBm1Es25Y+tVoTi5rfd5t1KLmL8ogLKpXszboWOTTtGFGz2RKnQe2yn7HbZ+kb/B8N0FVSGQo874NSlOU1T4+w==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.17 - '@babel/helper-environment-visitor': 7.22.5 + '@babel/core': 7.23.0 + '@babel/helper-environment-visitor': 7.22.20 '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-remap-async-to-generator': 7.22.17(@babel/core@7.22.17) - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.22.17) + '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.23.0) + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.0) dev: true - /@babel/plugin-transform-async-to-generator@7.22.5(@babel/core@7.22.17): + /@babel/plugin-transform-async-to-generator@7.22.5(@babel/core@7.23.0): resolution: {integrity: sha512-b1A8D8ZzE/VhNDoV1MSJTnpKkCG5bJo+19R4o4oy03zM7ws8yEMK755j61Dc3EyvdysbqH5BOOTquJ7ZX9C6vQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.17 + '@babel/core': 7.23.0 '@babel/helper-module-imports': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-remap-async-to-generator': 7.22.17(@babel/core@7.22.17) + '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.23.0) dev: true - /@babel/plugin-transform-block-scoped-functions@7.22.5(@babel/core@7.22.17): + /@babel/plugin-transform-block-scoped-functions@7.22.5(@babel/core@7.23.0): 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.22.17 + '@babel/core': 7.23.0 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-block-scoping@7.22.15(@babel/core@7.22.17): - resolution: {integrity: sha512-G1czpdJBZCtngoK1sJgloLiOHUnkb/bLZwqVZD8kXmq0ZnVfTTWUcs9OWtp0mBtYJ+4LQY1fllqBkOIPhXmFmw==} + /@babel/plugin-transform-block-scoping@7.23.0(@babel/core@7.23.0): + resolution: {integrity: sha512-cOsrbmIOXmf+5YbL99/S49Y3j46k/T16b9ml8bm9lP6N9US5iQ2yBK7gpui1pg0V/WMcXdkfKbTb7HXq9u+v4g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.17 + '@babel/core': 7.23.0 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-class-properties@7.22.5(@babel/core@7.22.17): + /@babel/plugin-transform-class-properties@7.22.5(@babel/core@7.23.0): resolution: {integrity: sha512-nDkQ0NfkOhPTq8YCLiWNxp1+f9fCobEjCb0n8WdbNUBc4IB5V7P1QnX9IjpSoquKrXF5SKojHleVNs2vGeHCHQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.17 - '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.22.17) + '@babel/core': 7.23.0 + '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.0) '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-class-static-block@7.22.11(@babel/core@7.22.17): + /@babel/plugin-transform-class-static-block@7.22.11(@babel/core@7.23.0): resolution: {integrity: sha512-GMM8gGmqI7guS/llMFk1bJDkKfn3v3C4KHK9Yg1ey5qcHcOlKb0QvcMrgzvxo+T03/4szNh5lghY+fEC98Kq9g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.12.0 dependencies: - '@babel/core': 7.22.17 - '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.22.17) + '@babel/core': 7.23.0 + '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.0) '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.22.17) + '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.23.0) dev: true - /@babel/plugin-transform-classes@7.22.15(@babel/core@7.22.17): + /@babel/plugin-transform-classes@7.22.15(@babel/core@7.23.0): resolution: {integrity: sha512-VbbC3PGjBdE0wAWDdHM9G8Gm977pnYI0XpqMd6LrKISj8/DJXEsWqgRuTYaNE9Bv0JGhTZUzHDlMk18IpOuoqw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.17 + '@babel/core': 7.23.0 '@babel/helper-annotate-as-pure': 7.22.5 '@babel/helper-compilation-targets': 7.22.15 - '@babel/helper-environment-visitor': 7.22.5 - '@babel/helper-function-name': 7.22.5 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-function-name': 7.23.0 '@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.22.17) + '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.0) '@babel/helper-split-export-declaration': 7.22.6 globals: 11.12.0 dev: true - /@babel/plugin-transform-computed-properties@7.22.5(@babel/core@7.22.17): + /@babel/plugin-transform-computed-properties@7.22.5(@babel/core@7.23.0): resolution: {integrity: sha512-4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.17 + '@babel/core': 7.23.0 '@babel/helper-plugin-utils': 7.22.5 '@babel/template': 7.22.15 dev: true - /@babel/plugin-transform-destructuring@7.22.15(@babel/core@7.22.17): - resolution: {integrity: sha512-HzG8sFl1ZVGTme74Nw+X01XsUTqERVQ6/RLHo3XjGRzm7XD6QTtfS3NJotVgCGy8BzkDqRjRBD8dAyJn5TuvSQ==} + /@babel/plugin-transform-destructuring@7.23.0(@babel/core@7.23.0): + resolution: {integrity: sha512-vaMdgNXFkYrB+8lbgniSYWHsgqK5gjaMNcc84bMIOMRLH0L9AqYq3hwMdvnyqj1OPqea8UtjPEuS/DCenah1wg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.17 + '@babel/core': 7.23.0 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-dotall-regex@7.22.5(@babel/core@7.22.17): + /@babel/plugin-transform-dotall-regex@7.22.5(@babel/core@7.23.0): 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.22.17 - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.22.17) + '@babel/core': 7.23.0 + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.0) '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-duplicate-keys@7.22.5(@babel/core@7.22.17): + /@babel/plugin-transform-duplicate-keys@7.22.5(@babel/core@7.23.0): resolution: {integrity: sha512-dEnYD+9BBgld5VBXHnF/DbYGp3fqGMsyxKbtD1mDyIA7AkTSpKXFhCVuj/oQVOoALfBs77DudA0BE4d5mcpmqw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.17 + '@babel/core': 7.23.0 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-dynamic-import@7.22.11(@babel/core@7.22.17): + /@babel/plugin-transform-dynamic-import@7.22.11(@babel/core@7.23.0): resolution: {integrity: sha512-g/21plo58sfteWjaO0ZNVb+uEOkJNjAaHhbejrnBmu011l/eNDScmkbjCC3l4FKb10ViaGU4aOkFznSu2zRHgA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.17 + '@babel/core': 7.23.0 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.22.17) + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.0) dev: true - /@babel/plugin-transform-exponentiation-operator@7.22.5(@babel/core@7.22.17): + /@babel/plugin-transform-exponentiation-operator@7.22.5(@babel/core@7.23.0): resolution: {integrity: sha512-vIpJFNM/FjZ4rh1myqIya9jXwrwwgFRHPjT3DkUA9ZLHuzox8jiXkOLvwm1H+PQIP3CqfC++WPKeuDi0Sjdj1g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.17 + '@babel/core': 7.23.0 '@babel/helper-builder-binary-assignment-operator-visitor': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-export-namespace-from@7.22.11(@babel/core@7.22.17): + /@babel/plugin-transform-export-namespace-from@7.22.11(@babel/core@7.23.0): resolution: {integrity: sha512-xa7aad7q7OiT8oNZ1mU7NrISjlSkVdMbNxn9IuLZyL9AJEhs1Apba3I+u5riX1dIkdptP5EKDG5XDPByWxtehw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.17 + '@babel/core': 7.23.0 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.22.17) + '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.0) dev: true - /@babel/plugin-transform-flow-strip-types@7.22.5(@babel/core@7.22.17): + /@babel/plugin-transform-flow-strip-types@7.22.5(@babel/core@7.23.0): 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.22.17 + '@babel/core': 7.23.0 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-flow': 7.22.5(@babel/core@7.22.17) + '@babel/plugin-syntax-flow': 7.22.5(@babel/core@7.23.0) dev: true - /@babel/plugin-transform-for-of@7.22.15(@babel/core@7.22.17): + /@babel/plugin-transform-for-of@7.22.15(@babel/core@7.23.0): resolution: {integrity: sha512-me6VGeHsx30+xh9fbDLLPi0J1HzmeIIyenoOQHuw2D4m2SAU3NrspX5XxJLBpqn5yrLzrlw2Iy3RA//Bx27iOA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.17 + '@babel/core': 7.23.0 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-function-name@7.22.5(@babel/core@7.22.17): + /@babel/plugin-transform-function-name@7.22.5(@babel/core@7.23.0): resolution: {integrity: sha512-UIzQNMS0p0HHiQm3oelztj+ECwFnj+ZRV4KnguvlsD2of1whUeM6o7wGNj6oLwcDoAXQ8gEqfgC24D+VdIcevg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.17 + '@babel/core': 7.23.0 '@babel/helper-compilation-targets': 7.22.15 - '@babel/helper-function-name': 7.22.5 + '@babel/helper-function-name': 7.23.0 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-json-strings@7.22.11(@babel/core@7.22.17): + /@babel/plugin-transform-json-strings@7.22.11(@babel/core@7.23.0): resolution: {integrity: sha512-CxT5tCqpA9/jXFlme9xIBCc5RPtdDq3JpkkhgHQqtDdiTnTI0jtZ0QzXhr5DILeYifDPp2wvY2ad+7+hLMW5Pw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.17 + '@babel/core': 7.23.0 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.22.17) + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.0) dev: true - /@babel/plugin-transform-literals@7.22.5(@babel/core@7.22.17): + /@babel/plugin-transform-literals@7.22.5(@babel/core@7.23.0): resolution: {integrity: sha512-fTLj4D79M+mepcw3dgFBTIDYpbcB9Sm0bpm4ppXPaO+U+PKFFyV9MGRvS0gvGw62sd10kT5lRMKXAADb9pWy8g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.17 + '@babel/core': 7.23.0 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-logical-assignment-operators@7.22.11(@babel/core@7.22.17): + /@babel/plugin-transform-logical-assignment-operators@7.22.11(@babel/core@7.23.0): resolution: {integrity: sha512-qQwRTP4+6xFCDV5k7gZBF3C31K34ut0tbEcTKxlX/0KXxm9GLcO14p570aWxFvVzx6QAfPgq7gaeIHXJC8LswQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.17 + '@babel/core': 7.23.0 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.22.17) + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.0) dev: true - /@babel/plugin-transform-member-expression-literals@7.22.5(@babel/core@7.22.17): + /@babel/plugin-transform-member-expression-literals@7.22.5(@babel/core@7.23.0): resolution: {integrity: sha512-RZEdkNtzzYCFl9SE9ATaUMTj2hqMb4StarOJLrZRbqqU4HSBE7UlBw9WBWQiDzrJZJdUWiMTVDI6Gv/8DPvfew==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.17 + '@babel/core': 7.23.0 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-modules-amd@7.22.5(@babel/core@7.22.17): - resolution: {integrity: sha512-R+PTfLTcYEmb1+kK7FNkhQ1gP4KgjpSO6HfH9+f8/yfp2Nt3ggBjiVpRwmwTlfqZLafYKJACy36yDXlEmI9HjQ==} + /@babel/plugin-transform-modules-amd@7.23.0(@babel/core@7.23.0): + resolution: {integrity: sha512-xWT5gefv2HGSm4QHtgc1sYPbseOyf+FFDo2JbpE25GWl5BqTGO9IMwTYJRoIdjsF85GE+VegHxSCUt5EvoYTAw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.17 - '@babel/helper-module-transforms': 7.22.17(@babel/core@7.22.17) + '@babel/core': 7.23.0 + '@babel/helper-module-transforms': 7.23.0(@babel/core@7.23.0) '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-modules-commonjs@7.22.15(@babel/core@7.22.17): - resolution: {integrity: sha512-jWL4eh90w0HQOTKP2MoXXUpVxilxsB2Vl4ji69rSjS3EcZ/v4sBmn+A3NpepuJzBhOaEBbR7udonlHHn5DWidg==} + /@babel/plugin-transform-modules-commonjs@7.23.0(@babel/core@7.23.0): + resolution: {integrity: sha512-32Xzss14/UVc7k9g775yMIvkVK8xwKE0DPdP5JTapr3+Z9w4tzeOuLNY6BXDQR6BdnzIlXnCGAzsk/ICHBLVWQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.17 - '@babel/helper-module-transforms': 7.22.17(@babel/core@7.22.17) + '@babel/core': 7.23.0 + '@babel/helper-module-transforms': 7.23.0(@babel/core@7.23.0) '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-simple-access': 7.22.5 dev: true - /@babel/plugin-transform-modules-systemjs@7.22.11(@babel/core@7.22.17): - resolution: {integrity: sha512-rIqHmHoMEOhI3VkVf5jQ15l539KrwhzqcBO6wdCNWPWc/JWt9ILNYNUssbRpeq0qWns8svuw8LnMNCvWBIJ8wA==} + /@babel/plugin-transform-modules-systemjs@7.23.0(@babel/core@7.23.0): + resolution: {integrity: sha512-qBej6ctXZD2f+DhlOC9yO47yEYgUh5CZNz/aBoH4j/3NOlRfJXJbY7xDQCqQVf9KbrqGzIWER1f23doHGrIHFg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.17 + '@babel/core': 7.23.0 '@babel/helper-hoist-variables': 7.22.5 - '@babel/helper-module-transforms': 7.22.17(@babel/core@7.22.17) + '@babel/helper-module-transforms': 7.23.0(@babel/core@7.23.0) '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-validator-identifier': 7.22.15 + '@babel/helper-validator-identifier': 7.22.20 dev: true - /@babel/plugin-transform-modules-umd@7.22.5(@babel/core@7.22.17): + /@babel/plugin-transform-modules-umd@7.22.5(@babel/core@7.23.0): resolution: {integrity: sha512-+S6kzefN/E1vkSsKx8kmQuqeQsvCKCd1fraCM7zXm4SFoggI099Tr4G8U81+5gtMdUeMQ4ipdQffbKLX0/7dBQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.17 - '@babel/helper-module-transforms': 7.22.17(@babel/core@7.22.17) + '@babel/core': 7.23.0 + '@babel/helper-module-transforms': 7.23.0(@babel/core@7.23.0) '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.22.17): + /@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.23.0): resolution: {integrity: sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.22.17 - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.22.17) + '@babel/core': 7.23.0 + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.0) '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-new-target@7.22.5(@babel/core@7.22.17): + /@babel/plugin-transform-new-target@7.22.5(@babel/core@7.23.0): 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.22.17 + '@babel/core': 7.23.0 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-nullish-coalescing-operator@7.22.11(@babel/core@7.22.17): + /@babel/plugin-transform-nullish-coalescing-operator@7.22.11(@babel/core@7.23.0): resolution: {integrity: sha512-YZWOw4HxXrotb5xsjMJUDlLgcDXSfO9eCmdl1bgW4+/lAGdkjaEvOnQ4p5WKKdUgSzO39dgPl0pTnfxm0OAXcg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.17 + '@babel/core': 7.23.0 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.22.17) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.0) dev: true - /@babel/plugin-transform-numeric-separator@7.22.11(@babel/core@7.22.17): + /@babel/plugin-transform-numeric-separator@7.22.11(@babel/core@7.23.0): resolution: {integrity: sha512-3dzU4QGPsILdJbASKhF/V2TVP+gJya1PsueQCxIPCEcerqF21oEcrob4mzjsp2Py/1nLfF5m+xYNMDpmA8vffg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.17 + '@babel/core': 7.23.0 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.22.17) + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.0) dev: true - /@babel/plugin-transform-object-rest-spread@7.22.15(@babel/core@7.22.17): + /@babel/plugin-transform-object-rest-spread@7.22.15(@babel/core@7.23.0): resolution: {integrity: sha512-fEB+I1+gAmfAyxZcX1+ZUwLeAuuf8VIg67CTznZE0MqVFumWkh8xWtn58I4dxdVf080wn7gzWoF8vndOViJe9Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/compat-data': 7.22.9 - '@babel/core': 7.22.17 + '@babel/compat-data': 7.22.20 + '@babel/core': 7.23.0 '@babel/helper-compilation-targets': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.22.17) - '@babel/plugin-transform-parameters': 7.22.15(@babel/core@7.22.17) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.0) + '@babel/plugin-transform-parameters': 7.22.15(@babel/core@7.23.0) dev: true - /@babel/plugin-transform-object-super@7.22.5(@babel/core@7.22.17): + /@babel/plugin-transform-object-super@7.22.5(@babel/core@7.23.0): resolution: {integrity: sha512-klXqyaT9trSjIUrcsYIfETAzmOEZL3cBYqOYLJxBHfMFFggmXOv+NYSX/Jbs9mzMVESw/WycLFPRx8ba/b2Ipw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.17 + '@babel/core': 7.23.0 '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-replace-supers': 7.22.9(@babel/core@7.22.17) + '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.0) dev: true - /@babel/plugin-transform-optional-catch-binding@7.22.11(@babel/core@7.22.17): + /@babel/plugin-transform-optional-catch-binding@7.22.11(@babel/core@7.23.0): resolution: {integrity: sha512-rli0WxesXUeCJnMYhzAglEjLWVDF6ahb45HuprcmQuLidBJFWjNnOzssk2kuc6e33FlLaiZhG/kUIzUMWdBKaQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.17 + '@babel/core': 7.23.0 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.22.17) + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.0) dev: true - /@babel/plugin-transform-optional-chaining@7.22.15(@babel/core@7.22.17): - resolution: {integrity: sha512-ngQ2tBhq5vvSJw2Q2Z9i7ealNkpDMU0rGWnHPKqRZO0tzZ5tlaoz4hDvhXioOoaE0X2vfNss1djwg0DXlfu30A==} + /@babel/plugin-transform-optional-chaining@7.23.0(@babel/core@7.23.0): + resolution: {integrity: sha512-sBBGXbLJjxTzLBF5rFWaikMnOGOk/BmK6vVByIdEggZ7Vn6CvWXZyRkkLFK6WE0IF8jSliyOkUN6SScFgzCM0g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.17 + '@babel/core': 7.23.0 '@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.22.17) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.0) dev: true - /@babel/plugin-transform-parameters@7.22.15(@babel/core@7.22.17): + /@babel/plugin-transform-parameters@7.22.15(@babel/core@7.23.0): resolution: {integrity: sha512-hjk7qKIqhyzhhUvRT683TYQOFa/4cQKwQy7ALvTpODswN40MljzNDa0YldevS6tGbxwaEKVn502JmY0dP7qEtQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.17 + '@babel/core': 7.23.0 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-private-methods@7.22.5(@babel/core@7.22.17): + /@babel/plugin-transform-private-methods@7.22.5(@babel/core@7.23.0): resolution: {integrity: sha512-PPjh4gyrQnGe97JTalgRGMuU4icsZFnWkzicB/fUtzlKUqvsWBKEpPPfr5a2JiyirZkHxnAqkQMO5Z5B2kK3fA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.17 - '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.22.17) + '@babel/core': 7.23.0 + '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.0) '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-private-property-in-object@7.22.11(@babel/core@7.22.17): + /@babel/plugin-transform-private-property-in-object@7.22.11(@babel/core@7.23.0): resolution: {integrity: sha512-sSCbqZDBKHetvjSwpyWzhuHkmW5RummxJBVbYLkGkaiTOWGxml7SXt0iWa03bzxFIx7wOj3g/ILRd0RcJKBeSQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.17 + '@babel/core': 7.23.0 '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.22.17) + '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.0) '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.22.17) + '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.0) dev: true - /@babel/plugin-transform-property-literals@7.22.5(@babel/core@7.22.17): + /@babel/plugin-transform-property-literals@7.22.5(@babel/core@7.23.0): resolution: {integrity: sha512-TiOArgddK3mK/x1Qwf5hay2pxI6wCZnvQqrFSqbtg1GLl2JcNMitVH/YnqjP+M31pLUeTfzY1HAXFDnUBV30rQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.17 + '@babel/core': 7.23.0 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-react-constant-elements@7.22.5(@babel/core@7.22.17): + /@babel/plugin-transform-react-constant-elements@7.22.5(@babel/core@7.23.0): resolution: {integrity: sha512-BF5SXoO+nX3h5OhlN78XbbDrBOffv+AxPP2ENaJOVqjWCgBDeOY3WcaUcddutGSfoap+5NEQ/q/4I3WZIvgkXA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.17 + '@babel/core': 7.23.0 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-react-display-name@7.22.5(@babel/core@7.22.17): + /@babel/plugin-transform-react-display-name@7.22.5(@babel/core@7.23.0): resolution: {integrity: sha512-PVk3WPYudRF5z4GKMEYUrLjPl38fJSKNaEOkFuoprioowGuWN6w2RKznuFNSlJx7pzzXXStPUnNSOEO0jL5EVw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.17 + '@babel/core': 7.23.0 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-react-jsx-development@7.22.5(@babel/core@7.22.17): + /@babel/plugin-transform-react-jsx-development@7.22.5(@babel/core@7.23.0): resolution: {integrity: sha512-bDhuzwWMuInwCYeDeMzyi7TaBgRQei6DqxhbyniL7/VG4RSS7HtSL2QbY4eESy1KJqlWt8g3xeEBGPuo+XqC8A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.17 - '@babel/plugin-transform-react-jsx': 7.22.15(@babel/core@7.22.17) + '@babel/core': 7.23.0 + '@babel/plugin-transform-react-jsx': 7.22.15(@babel/core@7.23.0) dev: true - /@babel/plugin-transform-react-jsx-self@7.22.5(@babel/core@7.22.15): + /@babel/plugin-transform-react-jsx-self@7.22.5(@babel/core@7.23.0): resolution: {integrity: sha512-nTh2ogNUtxbiSbxaT4Ds6aXnXEipHweN9YRgOX/oNXdf0cCrGn/+2LozFa3lnPV5D90MkjhgckCPBrsoSc1a7g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.15 + '@babel/core': 7.23.0 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-react-jsx-source@7.22.5(@babel/core@7.22.15): + /@babel/plugin-transform-react-jsx-source@7.22.5(@babel/core@7.23.0): resolution: {integrity: sha512-yIiRO6yobeEIaI0RTbIr8iAK9FcBHLtZq0S89ZPjDLQXBA4xvghaKqI0etp/tF3htTM0sazJKKLz9oEiGRtu7w==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.15 + '@babel/core': 7.23.0 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-react-jsx@7.22.15(@babel/core@7.22.15): + /@babel/plugin-transform-react-jsx@7.22.15(@babel/core@7.23.0): resolution: {integrity: sha512-oKckg2eZFa8771O/5vi7XeTvmM6+O9cxZu+kanTU7tD4sin5nO/G8jGJhq8Hvt2Z0kUoEDRayuZLaUlYl8QuGA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.15 + '@babel/core': 7.23.0 '@babel/helper-annotate-as-pure': 7.22.5 '@babel/helper-module-imports': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.22.15) - '@babel/types': 7.22.17 + '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.23.0) + '@babel/types': 7.23.0 dev: true - /@babel/plugin-transform-react-jsx@7.22.15(@babel/core@7.22.17): - resolution: {integrity: sha512-oKckg2eZFa8771O/5vi7XeTvmM6+O9cxZu+kanTU7tD4sin5nO/G8jGJhq8Hvt2Z0kUoEDRayuZLaUlYl8QuGA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.17 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-module-imports': 7.22.15 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.22.17) - '@babel/types': 7.22.17 - dev: true - - /@babel/plugin-transform-react-pure-annotations@7.22.5(@babel/core@7.22.17): + /@babel/plugin-transform-react-pure-annotations@7.22.5(@babel/core@7.23.0): resolution: {integrity: sha512-gP4k85wx09q+brArVinTXhWiyzLl9UpmGva0+mWyKxk6JZequ05x3eUcIUE+FyttPKJFRRVtAvQaJ6YF9h1ZpA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.17 + '@babel/core': 7.23.0 '@babel/helper-annotate-as-pure': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-regenerator@7.22.10(@babel/core@7.22.17): + /@babel/plugin-transform-regenerator@7.22.10(@babel/core@7.23.0): resolution: {integrity: sha512-F28b1mDt8KcT5bUyJc/U9nwzw6cV+UmTeRlXYIl2TNqMMJif0Jeey9/RQ3C4NOd2zp0/TRsDns9ttj2L523rsw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.17 + '@babel/core': 7.23.0 '@babel/helper-plugin-utils': 7.22.5 regenerator-transform: 0.15.2 dev: true - /@babel/plugin-transform-reserved-words@7.22.5(@babel/core@7.22.17): + /@babel/plugin-transform-reserved-words@7.22.5(@babel/core@7.23.0): resolution: {integrity: sha512-DTtGKFRQUDm8svigJzZHzb/2xatPc6TzNvAIJ5GqOKDsGFYgAskjRulbR/vGsPKq3OPqtexnz327qYpP57RFyA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.17 + '@babel/core': 7.23.0 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-runtime@7.22.15(@babel/core@7.22.17): + /@babel/plugin-transform-runtime@7.22.15(@babel/core@7.23.0): resolution: {integrity: sha512-tEVLhk8NRZSmwQ0DJtxxhTrCht1HVo8VaMzYT4w6lwyKBuHsgoioAUA7/6eT2fRfc5/23fuGdlwIxXhRVgWr4g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.17 + '@babel/core': 7.23.0 '@babel/helper-module-imports': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 - babel-plugin-polyfill-corejs2: 0.4.5(@babel/core@7.22.17) - babel-plugin-polyfill-corejs3: 0.8.3(@babel/core@7.22.17) - babel-plugin-polyfill-regenerator: 0.5.2(@babel/core@7.22.17) + babel-plugin-polyfill-corejs2: 0.4.5(@babel/core@7.23.0) + babel-plugin-polyfill-corejs3: 0.8.4(@babel/core@7.23.0) + babel-plugin-polyfill-regenerator: 0.5.2(@babel/core@7.23.0) semver: 6.3.1 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-transform-shorthand-properties@7.22.5(@babel/core@7.22.17): + /@babel/plugin-transform-shorthand-properties@7.22.5(@babel/core@7.23.0): resolution: {integrity: sha512-vM4fq9IXHscXVKzDv5itkO1X52SmdFBFcMIBZ2FRn2nqVYqw6dBexUgMvAjHW+KXpPPViD/Yo3GrDEBaRC0QYA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.17 + '@babel/core': 7.23.0 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-spread@7.22.5(@babel/core@7.22.17): + /@babel/plugin-transform-spread@7.22.5(@babel/core@7.23.0): resolution: {integrity: sha512-5ZzDQIGyvN4w8+dMmpohL6MBo+l2G7tfC/O2Dg7/hjpgeWvUx8FzfeOKxGog9IimPa4YekaQ9PlDqTLOljkcxg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.17 + '@babel/core': 7.23.0 '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 dev: true - /@babel/plugin-transform-sticky-regex@7.22.5(@babel/core@7.22.17): + /@babel/plugin-transform-sticky-regex@7.22.5(@babel/core@7.23.0): resolution: {integrity: sha512-zf7LuNpHG0iEeiyCNwX4j3gDg1jgt1k3ZdXBKbZSoA3BbGQGvMiSvfbZRR3Dr3aeJe3ooWFZxOOG3IRStYp2Bw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.17 + '@babel/core': 7.23.0 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-template-literals@7.22.5(@babel/core@7.22.17): + /@babel/plugin-transform-template-literals@7.22.5(@babel/core@7.23.0): resolution: {integrity: sha512-5ciOehRNf+EyUeewo8NkbQiUs4d6ZxiHo6BcBcnFlgiJfu16q0bQUw9Jvo0b0gBKFG1SMhDSjeKXSYuJLeFSMA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.17 + '@babel/core': 7.23.0 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-typeof-symbol@7.22.5(@babel/core@7.22.17): + /@babel/plugin-transform-typeof-symbol@7.22.5(@babel/core@7.23.0): resolution: {integrity: sha512-bYkI5lMzL4kPii4HHEEChkD0rkc+nvnlR6+o/qdqR6zrm0Sv/nodmyLhlq2DO0YKLUNd2VePmPRjJXSBh9OIdA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.17 + '@babel/core': 7.23.0 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-typescript@7.22.15(@babel/core@7.22.17): + /@babel/plugin-transform-typescript@7.22.15(@babel/core@7.23.0): resolution: {integrity: sha512-1uirS0TnijxvQLnlv5wQBwOX3E1wCFX7ITv+9pBV2wKEk4K+M5tqDaoNXnTH8tjEIYHLO98MwiTWO04Ggz4XuA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.17 + '@babel/core': 7.23.0 '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.22.17) + '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.0) '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-typescript': 7.22.5(@babel/core@7.22.17) + '@babel/plugin-syntax-typescript': 7.22.5(@babel/core@7.23.0) dev: true - /@babel/plugin-transform-unicode-escapes@7.22.10(@babel/core@7.22.17): + /@babel/plugin-transform-unicode-escapes@7.22.10(@babel/core@7.23.0): resolution: {integrity: sha512-lRfaRKGZCBqDlRU3UIFovdp9c9mEvlylmpod0/OatICsSfuQ9YFthRo1tpTkGsklEefZdqlEFdY4A2dwTb6ohg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.17 + '@babel/core': 7.23.0 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-unicode-property-regex@7.22.5(@babel/core@7.22.17): + /@babel/plugin-transform-unicode-property-regex@7.22.5(@babel/core@7.23.0): resolution: {integrity: sha512-HCCIb+CbJIAE6sXn5CjFQXMwkCClcOfPCzTlilJ8cUatfzwHlWQkbtV0zD338u9dZskwvuOYTuuaMaA8J5EI5A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.17 - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.22.17) + '@babel/core': 7.23.0 + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.0) '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-unicode-regex@7.22.5(@babel/core@7.22.17): + /@babel/plugin-transform-unicode-regex@7.22.5(@babel/core@7.23.0): resolution: {integrity: sha512-028laaOKptN5vHJf9/Arr/HiJekMd41hOEZYvNsrsXqJ7YPYuX2bQxh31fkZzGmq3YqHRJzYFFAVYvKfMPKqyg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.17 - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.22.17) + '@babel/core': 7.23.0 + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.0) '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-unicode-sets-regex@7.22.5(@babel/core@7.22.17): + /@babel/plugin-transform-unicode-sets-regex@7.22.5(@babel/core@7.23.0): resolution: {integrity: sha512-lhMfi4FC15j13eKrh3DnYHjpGj6UKQHtNKTbtc1igvAhRy4+kLhV07OpLcsN0VgDEw/MjAvJO4BdMJsHwMhzCg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.22.17 - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.22.17) + '@babel/core': 7.23.0 + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.0) '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/preset-env@7.22.15(@babel/core@7.22.17): - resolution: {integrity: sha512-tZFHr54GBkHk6hQuVA8w4Fmq+MSPsfvMG0vPnOYyTnJpyfMqybL8/MbNCPRT9zc2KBO2pe4tq15g6Uno4Jpoag==} + /@babel/preset-env@7.22.20(@babel/core@7.23.0): + resolution: {integrity: sha512-11MY04gGC4kSzlPHRfvVkNAZhUxOvm7DCJ37hPDnUENwe06npjIRAfInEMTGSb4LZK5ZgDFkv5hw0lGebHeTyg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/compat-data': 7.22.9 - '@babel/core': 7.22.17 + '@babel/compat-data': 7.22.20 + '@babel/core': 7.23.0 '@babel/helper-compilation-targets': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-validator-option': 7.22.15 - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.22.15(@babel/core@7.22.17) - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.22.15(@babel/core@7.22.17) - '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.22.17) - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.22.17) - '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.22.17) - '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.22.17) - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.22.17) - '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.22.17) - '@babel/plugin-syntax-import-assertions': 7.22.5(@babel/core@7.22.17) - '@babel/plugin-syntax-import-attributes': 7.22.5(@babel/core@7.22.17) - '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.22.17) - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.22.17) - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.22.17) - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.22.17) - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.22.17) - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.22.17) - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.22.17) - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.22.17) - '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.22.17) - '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.22.17) - '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.22.17) - '@babel/plugin-transform-arrow-functions': 7.22.5(@babel/core@7.22.17) - '@babel/plugin-transform-async-generator-functions': 7.22.15(@babel/core@7.22.17) - '@babel/plugin-transform-async-to-generator': 7.22.5(@babel/core@7.22.17) - '@babel/plugin-transform-block-scoped-functions': 7.22.5(@babel/core@7.22.17) - '@babel/plugin-transform-block-scoping': 7.22.15(@babel/core@7.22.17) - '@babel/plugin-transform-class-properties': 7.22.5(@babel/core@7.22.17) - '@babel/plugin-transform-class-static-block': 7.22.11(@babel/core@7.22.17) - '@babel/plugin-transform-classes': 7.22.15(@babel/core@7.22.17) - '@babel/plugin-transform-computed-properties': 7.22.5(@babel/core@7.22.17) - '@babel/plugin-transform-destructuring': 7.22.15(@babel/core@7.22.17) - '@babel/plugin-transform-dotall-regex': 7.22.5(@babel/core@7.22.17) - '@babel/plugin-transform-duplicate-keys': 7.22.5(@babel/core@7.22.17) - '@babel/plugin-transform-dynamic-import': 7.22.11(@babel/core@7.22.17) - '@babel/plugin-transform-exponentiation-operator': 7.22.5(@babel/core@7.22.17) - '@babel/plugin-transform-export-namespace-from': 7.22.11(@babel/core@7.22.17) - '@babel/plugin-transform-for-of': 7.22.15(@babel/core@7.22.17) - '@babel/plugin-transform-function-name': 7.22.5(@babel/core@7.22.17) - '@babel/plugin-transform-json-strings': 7.22.11(@babel/core@7.22.17) - '@babel/plugin-transform-literals': 7.22.5(@babel/core@7.22.17) - '@babel/plugin-transform-logical-assignment-operators': 7.22.11(@babel/core@7.22.17) - '@babel/plugin-transform-member-expression-literals': 7.22.5(@babel/core@7.22.17) - '@babel/plugin-transform-modules-amd': 7.22.5(@babel/core@7.22.17) - '@babel/plugin-transform-modules-commonjs': 7.22.15(@babel/core@7.22.17) - '@babel/plugin-transform-modules-systemjs': 7.22.11(@babel/core@7.22.17) - '@babel/plugin-transform-modules-umd': 7.22.5(@babel/core@7.22.17) - '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.22.17) - '@babel/plugin-transform-new-target': 7.22.5(@babel/core@7.22.17) - '@babel/plugin-transform-nullish-coalescing-operator': 7.22.11(@babel/core@7.22.17) - '@babel/plugin-transform-numeric-separator': 7.22.11(@babel/core@7.22.17) - '@babel/plugin-transform-object-rest-spread': 7.22.15(@babel/core@7.22.17) - '@babel/plugin-transform-object-super': 7.22.5(@babel/core@7.22.17) - '@babel/plugin-transform-optional-catch-binding': 7.22.11(@babel/core@7.22.17) - '@babel/plugin-transform-optional-chaining': 7.22.15(@babel/core@7.22.17) - '@babel/plugin-transform-parameters': 7.22.15(@babel/core@7.22.17) - '@babel/plugin-transform-private-methods': 7.22.5(@babel/core@7.22.17) - '@babel/plugin-transform-private-property-in-object': 7.22.11(@babel/core@7.22.17) - '@babel/plugin-transform-property-literals': 7.22.5(@babel/core@7.22.17) - '@babel/plugin-transform-regenerator': 7.22.10(@babel/core@7.22.17) - '@babel/plugin-transform-reserved-words': 7.22.5(@babel/core@7.22.17) - '@babel/plugin-transform-shorthand-properties': 7.22.5(@babel/core@7.22.17) - '@babel/plugin-transform-spread': 7.22.5(@babel/core@7.22.17) - '@babel/plugin-transform-sticky-regex': 7.22.5(@babel/core@7.22.17) - '@babel/plugin-transform-template-literals': 7.22.5(@babel/core@7.22.17) - '@babel/plugin-transform-typeof-symbol': 7.22.5(@babel/core@7.22.17) - '@babel/plugin-transform-unicode-escapes': 7.22.10(@babel/core@7.22.17) - '@babel/plugin-transform-unicode-property-regex': 7.22.5(@babel/core@7.22.17) - '@babel/plugin-transform-unicode-regex': 7.22.5(@babel/core@7.22.17) - '@babel/plugin-transform-unicode-sets-regex': 7.22.5(@babel/core@7.22.17) - '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.22.17) - '@babel/types': 7.22.17 - babel-plugin-polyfill-corejs2: 0.4.5(@babel/core@7.22.17) - babel-plugin-polyfill-corejs3: 0.8.3(@babel/core@7.22.17) - babel-plugin-polyfill-regenerator: 0.5.2(@babel/core@7.22.17) + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.22.15(@babel/core@7.23.0) + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.22.15(@babel/core@7.23.0) + '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.23.0) + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.0) + '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.23.0) + '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.23.0) + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.0) + '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.0) + '@babel/plugin-syntax-import-assertions': 7.22.5(@babel/core@7.23.0) + '@babel/plugin-syntax-import-attributes': 7.22.5(@babel/core@7.23.0) + '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.23.0) + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.0) + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.0) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.0) + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.0) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.0) + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.0) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.0) + '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.0) + '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.23.0) + '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.23.0) + '@babel/plugin-transform-arrow-functions': 7.22.5(@babel/core@7.23.0) + '@babel/plugin-transform-async-generator-functions': 7.22.15(@babel/core@7.23.0) + '@babel/plugin-transform-async-to-generator': 7.22.5(@babel/core@7.23.0) + '@babel/plugin-transform-block-scoped-functions': 7.22.5(@babel/core@7.23.0) + '@babel/plugin-transform-block-scoping': 7.23.0(@babel/core@7.23.0) + '@babel/plugin-transform-class-properties': 7.22.5(@babel/core@7.23.0) + '@babel/plugin-transform-class-static-block': 7.22.11(@babel/core@7.23.0) + '@babel/plugin-transform-classes': 7.22.15(@babel/core@7.23.0) + '@babel/plugin-transform-computed-properties': 7.22.5(@babel/core@7.23.0) + '@babel/plugin-transform-destructuring': 7.23.0(@babel/core@7.23.0) + '@babel/plugin-transform-dotall-regex': 7.22.5(@babel/core@7.23.0) + '@babel/plugin-transform-duplicate-keys': 7.22.5(@babel/core@7.23.0) + '@babel/plugin-transform-dynamic-import': 7.22.11(@babel/core@7.23.0) + '@babel/plugin-transform-exponentiation-operator': 7.22.5(@babel/core@7.23.0) + '@babel/plugin-transform-export-namespace-from': 7.22.11(@babel/core@7.23.0) + '@babel/plugin-transform-for-of': 7.22.15(@babel/core@7.23.0) + '@babel/plugin-transform-function-name': 7.22.5(@babel/core@7.23.0) + '@babel/plugin-transform-json-strings': 7.22.11(@babel/core@7.23.0) + '@babel/plugin-transform-literals': 7.22.5(@babel/core@7.23.0) + '@babel/plugin-transform-logical-assignment-operators': 7.22.11(@babel/core@7.23.0) + '@babel/plugin-transform-member-expression-literals': 7.22.5(@babel/core@7.23.0) + '@babel/plugin-transform-modules-amd': 7.23.0(@babel/core@7.23.0) + '@babel/plugin-transform-modules-commonjs': 7.23.0(@babel/core@7.23.0) + '@babel/plugin-transform-modules-systemjs': 7.23.0(@babel/core@7.23.0) + '@babel/plugin-transform-modules-umd': 7.22.5(@babel/core@7.23.0) + '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.23.0) + '@babel/plugin-transform-new-target': 7.22.5(@babel/core@7.23.0) + '@babel/plugin-transform-nullish-coalescing-operator': 7.22.11(@babel/core@7.23.0) + '@babel/plugin-transform-numeric-separator': 7.22.11(@babel/core@7.23.0) + '@babel/plugin-transform-object-rest-spread': 7.22.15(@babel/core@7.23.0) + '@babel/plugin-transform-object-super': 7.22.5(@babel/core@7.23.0) + '@babel/plugin-transform-optional-catch-binding': 7.22.11(@babel/core@7.23.0) + '@babel/plugin-transform-optional-chaining': 7.23.0(@babel/core@7.23.0) + '@babel/plugin-transform-parameters': 7.22.15(@babel/core@7.23.0) + '@babel/plugin-transform-private-methods': 7.22.5(@babel/core@7.23.0) + '@babel/plugin-transform-private-property-in-object': 7.22.11(@babel/core@7.23.0) + '@babel/plugin-transform-property-literals': 7.22.5(@babel/core@7.23.0) + '@babel/plugin-transform-regenerator': 7.22.10(@babel/core@7.23.0) + '@babel/plugin-transform-reserved-words': 7.22.5(@babel/core@7.23.0) + '@babel/plugin-transform-shorthand-properties': 7.22.5(@babel/core@7.23.0) + '@babel/plugin-transform-spread': 7.22.5(@babel/core@7.23.0) + '@babel/plugin-transform-sticky-regex': 7.22.5(@babel/core@7.23.0) + '@babel/plugin-transform-template-literals': 7.22.5(@babel/core@7.23.0) + '@babel/plugin-transform-typeof-symbol': 7.22.5(@babel/core@7.23.0) + '@babel/plugin-transform-unicode-escapes': 7.22.10(@babel/core@7.23.0) + '@babel/plugin-transform-unicode-property-regex': 7.22.5(@babel/core@7.23.0) + '@babel/plugin-transform-unicode-regex': 7.22.5(@babel/core@7.23.0) + '@babel/plugin-transform-unicode-sets-regex': 7.22.5(@babel/core@7.23.0) + '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.23.0) + '@babel/types': 7.23.0 + babel-plugin-polyfill-corejs2: 0.4.5(@babel/core@7.23.0) + babel-plugin-polyfill-corejs3: 0.8.4(@babel/core@7.23.0) + babel-plugin-polyfill-regenerator: 0.5.2(@babel/core@7.23.0) core-js-compat: 3.32.2 semver: 6.3.1 transitivePeerDependencies: - supports-color dev: true - /@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.22.17): + /@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.23.0): resolution: {integrity: sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==} peerDependencies: '@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0 dependencies: - '@babel/core': 7.22.17 + '@babel/core': 7.23.0 '@babel/helper-plugin-utils': 7.22.5 - '@babel/types': 7.22.17 + '@babel/types': 7.23.0 esutils: 2.0.3 dev: true - /@babel/preset-react@7.22.15(@babel/core@7.22.17): + /@babel/preset-react@7.22.15(@babel/core@7.23.0): resolution: {integrity: sha512-Csy1IJ2uEh/PecCBXXoZGAZBeCATTuePzCSB7dLYWS0vOEj6CNpjxIhW4duWwZodBNueH7QO14WbGn8YyeuN9w==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.17 + '@babel/core': 7.23.0 '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-validator-option': 7.22.15 - '@babel/plugin-transform-react-display-name': 7.22.5(@babel/core@7.22.17) - '@babel/plugin-transform-react-jsx': 7.22.15(@babel/core@7.22.17) - '@babel/plugin-transform-react-jsx-development': 7.22.5(@babel/core@7.22.17) - '@babel/plugin-transform-react-pure-annotations': 7.22.5(@babel/core@7.22.17) + '@babel/plugin-transform-react-display-name': 7.22.5(@babel/core@7.23.0) + '@babel/plugin-transform-react-jsx': 7.22.15(@babel/core@7.23.0) + '@babel/plugin-transform-react-jsx-development': 7.22.5(@babel/core@7.23.0) + '@babel/plugin-transform-react-pure-annotations': 7.22.5(@babel/core@7.23.0) dev: true - /@babel/preset-typescript@7.22.15(@babel/core@7.22.17): - resolution: {integrity: sha512-HblhNmh6yM+cU4VwbBRpxFhxsTdfS1zsvH9W+gEjD0ARV9+8B4sNfpI6GuhePti84nuvhiwKS539jKPFHskA9A==} + /@babel/preset-typescript@7.23.0(@babel/core@7.23.0): + resolution: {integrity: sha512-6P6VVa/NM/VlAYj5s2Aq/gdVg8FSENCg3wlZ6Qau9AcPaoF5LbN1nyGlR9DTRIw9PpxI94e+ReydsJHcjwAweg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.17 + '@babel/core': 7.23.0 '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-validator-option': 7.22.15 - '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.22.17) - '@babel/plugin-transform-modules-commonjs': 7.22.15(@babel/core@7.22.17) - '@babel/plugin-transform-typescript': 7.22.15(@babel/core@7.22.17) + '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.23.0) + '@babel/plugin-transform-modules-commonjs': 7.23.0(@babel/core@7.23.0) + '@babel/plugin-transform-typescript': 7.22.15(@babel/core@7.23.0) dev: true /@babel/regjsgen@0.8.0: resolution: {integrity: sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==} dev: true - /@babel/runtime@7.21.5: - resolution: {integrity: sha512-8jI69toZqqcsnqGGqwGS4Qb1VwLOEp4hz+CXPywcvjs60u3B4Pom/U/7rm4W8tMOYEB+E9wgD0mW1l3r8qlI9Q==} - engines: {node: '>=6.9.0'} - dependencies: - regenerator-runtime: 0.13.11 - - /@babel/runtime@7.22.15: - resolution: {integrity: sha512-T0O+aa+4w0u06iNmapipJXMV4HoUir03hpx3/YqXXhu9xim3w+dVphjFWl1OH8NbZHw5Lbm9k45drDkgq2VNNA==} + /@babel/runtime@7.23.1: + resolution: {integrity: sha512-hC2v6p8ZSI/W0HUzh3V8C5g+NwSKzKPtJwSpTjwl0o297GP9+ZLQSkdvHz46CM3LqyoXxq+5G9komY+eSqSO0g==} engines: {node: '>=6.9.0'} dependencies: regenerator-runtime: 0.14.0 @@ -1762,88 +1642,53 @@ packages: engines: {node: '>=6.9.0'} dependencies: '@babel/code-frame': 7.22.13 - '@babel/parser': 7.22.16 - '@babel/types': 7.22.15 + '@babel/parser': 7.23.0 + '@babel/types': 7.23.0 - /@babel/traverse@7.22.15: - resolution: {integrity: sha512-DdHPwvJY0sEeN4xJU5uRLmZjgMMDIvMPniLuYzUVXj/GGzysPl0/fwt44JBkyUIzGJPV8QgHMcQdQ34XFuKTYQ==} + /@babel/traverse@7.23.0(supports-color@5.5.0): + resolution: {integrity: sha512-t/QaEvyIoIkwzpiZ7aoSKK8kObQYeF7T2v+dazAYCb8SXtp58zEVkWW7zAnju8FNKNdr4ScAOEDmMItbyOmEYw==} engines: {node: '>=6.9.0'} dependencies: '@babel/code-frame': 7.22.13 - '@babel/generator': 7.22.15 - '@babel/helper-environment-visitor': 7.22.5 - '@babel/helper-function-name': 7.22.5 + '@babel/generator': 7.23.0 + '@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.22.16 - '@babel/types': 7.22.15 - debug: 4.3.4(supports-color@5.5.0) - globals: 11.12.0 - transitivePeerDependencies: - - supports-color - dev: true - - /@babel/traverse@7.22.17(supports-color@5.5.0): - resolution: {integrity: sha512-xK4Uwm0JnAMvxYZxOVecss85WxTEIbTa7bnGyf/+EgCL5Zt3U7htUpEOWv9detPlamGKuRzCqw74xVglDWpPdg==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/code-frame': 7.22.13 - '@babel/generator': 7.22.15 - '@babel/helper-environment-visitor': 7.22.5 - '@babel/helper-function-name': 7.22.5 - '@babel/helper-hoist-variables': 7.22.5 - '@babel/helper-split-export-declaration': 7.22.6 - '@babel/parser': 7.22.16 - '@babel/types': 7.22.17 + '@babel/parser': 7.23.0 + '@babel/types': 7.23.0 debug: 4.3.4(supports-color@5.5.0) globals: 11.12.0 transitivePeerDependencies: - supports-color - /@babel/types@7.21.5: - resolution: {integrity: sha512-m4AfNvVF2mVC/F7fDEdH2El3HzUg9It/XsCxZiOTTA3m3qYfcSVSbTfM6Q9xG+hYDniZssYhlXKKUMD5m8tF4Q==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/helper-string-parser': 7.21.5 - '@babel/helper-validator-identifier': 7.19.1 - to-fast-properties: 2.0.0 - dev: false - - /@babel/types@7.22.15: - resolution: {integrity: sha512-X+NLXr0N8XXmN5ZsaQdm9U2SSC3UbIYq/doL++sueHOTisgZHoKaQtZxGuV2cUPQHMfjKEfg/g6oy7Hm6SKFtA==} + /@babel/types@7.23.0: + resolution: {integrity: sha512-0oIyUfKoI3mSqMvsxBdclDwxXKXAUA8v/apZbc+iSyARYou1o8ZGDxbUYyLFoW2arqS2jDGqJuZvv1d/io1axg==} engines: {node: '>=6.9.0'} dependencies: '@babel/helper-string-parser': 7.22.5 - '@babel/helper-validator-identifier': 7.22.15 - to-fast-properties: 2.0.0 - - /@babel/types@7.22.17: - resolution: {integrity: sha512-YSQPHLFtQNE5xN9tHuZnzu8vPr61wVTBZdfv1meex1NBosa4iT05k/Jw06ddJugi4bk7The/oSwQGFcksmEJQg==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/helper-string-parser': 7.22.5 - '@babel/helper-validator-identifier': 7.22.15 + '@babel/helper-validator-identifier': 7.22.20 to-fast-properties: 2.0.0 /@bcoe/v8-coverage@0.2.3: resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==} dev: true - /@craco/craco@7.1.0(@types/node@16.18.50)(postcss@8.4.29)(react-scripts@5.0.1)(typescript@5.2.2): + /@craco/craco@7.1.0(@types/node@16.18.55)(postcss@8.4.31)(react-scripts@5.0.1)(typescript@5.2.2): resolution: {integrity: sha512-oRAcPIKYrfPXp9rSzlsDNeOaVtDiKhoyqSXUoqiK24jCkHr4T8m/a2f74yXIzCbIheoUWDOIfWZyRgFgT+cpqA==} engines: {node: '>=6'} hasBin: true peerDependencies: react-scripts: ^5.0.0 dependencies: - autoprefixer: 10.4.14(postcss@8.4.29) + autoprefixer: 10.4.16(postcss@8.4.31) cosmiconfig: 7.1.0 - cosmiconfig-typescript-loader: 1.0.9(@types/node@16.18.50)(cosmiconfig@7.1.0)(typescript@5.2.2) + cosmiconfig-typescript-loader: 1.0.9(@types/node@16.18.55)(cosmiconfig@7.1.0)(typescript@5.2.2) cross-spawn: 7.0.3 lodash: 4.17.21 - react-scripts: 5.0.1(@babel/plugin-syntax-flow@7.22.5)(@babel/plugin-transform-react-jsx@7.22.15)(eslint@8.49.0)(react@18.2.0)(typescript@5.2.2) - semver: 7.5.0 - webpack-merge: 5.8.0 + react-scripts: 5.0.1(@babel/plugin-syntax-flow@7.22.5)(@babel/plugin-transform-react-jsx@7.22.15)(eslint@8.50.0)(react@18.2.0)(typescript@5.2.2) + semver: 7.5.4 + webpack-merge: 5.9.0 transitivePeerDependencies: - '@swc/core' - '@swc/wasm' @@ -1863,148 +1708,148 @@ packages: resolution: {integrity: sha512-M0qqxAcwCsIVfpFQSlGN5XjXWu8l5JDZN+fPt1LeW5SZexQTgnaEvgXAY+CeygRw0EeppWHi12JxESWiWrB0Sg==} dev: true - /@csstools/postcss-cascade-layers@1.1.1(postcss@8.4.29): + /@csstools/postcss-cascade-layers@1.1.1(postcss@8.4.31): resolution: {integrity: sha512-+KdYrpKC5TgomQr2DlZF4lDEpHcoxnj5IGddYYfBWJAKfj1JtuHUIqMa+E1pJJ+z3kvDViWMqyqPlG4Ja7amQA==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: '@csstools/selector-specificity': 2.2.0(postcss-selector-parser@6.0.13) - postcss: 8.4.29 + postcss: 8.4.31 postcss-selector-parser: 6.0.13 dev: true - /@csstools/postcss-color-function@1.1.1(postcss@8.4.29): + /@csstools/postcss-color-function@1.1.1(postcss@8.4.31): resolution: {integrity: sha512-Bc0f62WmHdtRDjf5f3e2STwRAl89N2CLb+9iAwzrv4L2hncrbDwnQD9PCq0gtAt7pOI2leIV08HIBUd4jxD8cw==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: - '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.29) - postcss: 8.4.29 + '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.31) + postcss: 8.4.31 postcss-value-parser: 4.2.0 dev: true - /@csstools/postcss-font-format-keywords@1.0.1(postcss@8.4.29): + /@csstools/postcss-font-format-keywords@1.0.1(postcss@8.4.31): resolution: {integrity: sha512-ZgrlzuUAjXIOc2JueK0X5sZDjCtgimVp/O5CEqTcs5ShWBa6smhWYbS0x5cVc/+rycTDbjjzoP0KTDnUneZGOg==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: - postcss: 8.4.29 + postcss: 8.4.31 postcss-value-parser: 4.2.0 dev: true - /@csstools/postcss-hwb-function@1.0.2(postcss@8.4.29): + /@csstools/postcss-hwb-function@1.0.2(postcss@8.4.31): resolution: {integrity: sha512-YHdEru4o3Rsbjmu6vHy4UKOXZD+Rn2zmkAmLRfPet6+Jz4Ojw8cbWxe1n42VaXQhD3CQUXXTooIy8OkVbUcL+w==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: - postcss: 8.4.29 + postcss: 8.4.31 postcss-value-parser: 4.2.0 dev: true - /@csstools/postcss-ic-unit@1.0.1(postcss@8.4.29): + /@csstools/postcss-ic-unit@1.0.1(postcss@8.4.31): resolution: {integrity: sha512-Ot1rcwRAaRHNKC9tAqoqNZhjdYBzKk1POgWfhN4uCOE47ebGcLRqXjKkApVDpjifL6u2/55ekkpnFcp+s/OZUw==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: - '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.29) - postcss: 8.4.29 + '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.31) + postcss: 8.4.31 postcss-value-parser: 4.2.0 dev: true - /@csstools/postcss-is-pseudo-class@2.0.7(postcss@8.4.29): + /@csstools/postcss-is-pseudo-class@2.0.7(postcss@8.4.31): resolution: {integrity: sha512-7JPeVVZHd+jxYdULl87lvjgvWldYu+Bc62s9vD/ED6/QTGjy0jy0US/f6BG53sVMTBJ1lzKZFpYmofBN9eaRiA==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: '@csstools/selector-specificity': 2.2.0(postcss-selector-parser@6.0.13) - postcss: 8.4.29 + postcss: 8.4.31 postcss-selector-parser: 6.0.13 dev: true - /@csstools/postcss-nested-calc@1.0.0(postcss@8.4.29): + /@csstools/postcss-nested-calc@1.0.0(postcss@8.4.31): resolution: {integrity: sha512-JCsQsw1wjYwv1bJmgjKSoZNvf7R6+wuHDAbi5f/7MbFhl2d/+v+TvBTU4BJH3G1X1H87dHl0mh6TfYogbT/dJQ==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: - postcss: 8.4.29 + postcss: 8.4.31 postcss-value-parser: 4.2.0 dev: true - /@csstools/postcss-normalize-display-values@1.0.1(postcss@8.4.29): + /@csstools/postcss-normalize-display-values@1.0.1(postcss@8.4.31): resolution: {integrity: sha512-jcOanIbv55OFKQ3sYeFD/T0Ti7AMXc9nM1hZWu8m/2722gOTxFg7xYu4RDLJLeZmPUVQlGzo4jhzvTUq3x4ZUw==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: - postcss: 8.4.29 + postcss: 8.4.31 postcss-value-parser: 4.2.0 dev: true - /@csstools/postcss-oklab-function@1.1.1(postcss@8.4.29): + /@csstools/postcss-oklab-function@1.1.1(postcss@8.4.31): resolution: {integrity: sha512-nJpJgsdA3dA9y5pgyb/UfEzE7W5Ka7u0CX0/HIMVBNWzWemdcTH3XwANECU6anWv/ao4vVNLTMxhiPNZsTK6iA==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: - '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.29) - postcss: 8.4.29 + '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.31) + postcss: 8.4.31 postcss-value-parser: 4.2.0 dev: true - /@csstools/postcss-progressive-custom-properties@1.3.0(postcss@8.4.29): + /@csstools/postcss-progressive-custom-properties@1.3.0(postcss@8.4.31): resolution: {integrity: sha512-ASA9W1aIy5ygskZYuWams4BzafD12ULvSypmaLJT2jvQ8G0M3I8PRQhC0h7mG0Z3LI05+agZjqSR9+K9yaQQjA==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.3 dependencies: - postcss: 8.4.29 + postcss: 8.4.31 postcss-value-parser: 4.2.0 dev: true - /@csstools/postcss-stepped-value-functions@1.0.1(postcss@8.4.29): + /@csstools/postcss-stepped-value-functions@1.0.1(postcss@8.4.31): resolution: {integrity: sha512-dz0LNoo3ijpTOQqEJLY8nyaapl6umbmDcgj4AD0lgVQ572b2eqA1iGZYTTWhrcrHztWDDRAX2DGYyw2VBjvCvQ==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: - postcss: 8.4.29 + postcss: 8.4.31 postcss-value-parser: 4.2.0 dev: true - /@csstools/postcss-text-decoration-shorthand@1.0.0(postcss@8.4.29): + /@csstools/postcss-text-decoration-shorthand@1.0.0(postcss@8.4.31): resolution: {integrity: sha512-c1XwKJ2eMIWrzQenN0XbcfzckOLLJiczqy+YvfGmzoVXd7pT9FfObiSEfzs84bpE/VqfpEuAZ9tCRbZkZxxbdw==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: - postcss: 8.4.29 + postcss: 8.4.31 postcss-value-parser: 4.2.0 dev: true - /@csstools/postcss-trigonometric-functions@1.0.2(postcss@8.4.29): + /@csstools/postcss-trigonometric-functions@1.0.2(postcss@8.4.31): resolution: {integrity: sha512-woKaLO///4bb+zZC2s80l+7cm07M7268MsyG3M0ActXXEFi6SuhvriQYcb58iiKGbjwwIU7n45iRLEHypB47Og==} engines: {node: ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: - postcss: 8.4.29 + postcss: 8.4.31 postcss-value-parser: 4.2.0 dev: true - /@csstools/postcss-unset-value@1.0.2(postcss@8.4.29): + /@csstools/postcss-unset-value@1.0.2(postcss@8.4.31): resolution: {integrity: sha512-c8J4roPBILnelAsdLr4XOAR/GsTm0GJi4XpcfvoWk3U6KiTCqiFYc63KhRMQQX35jYMp4Ao8Ij9+IZRgMfJp1g==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: - postcss: 8.4.29 + postcss: 8.4.31 dev: true /@csstools/selector-specificity@2.2.0(postcss-selector-parser@6.0.13): @@ -2019,8 +1864,8 @@ packages: /@emotion/babel-plugin@11.11.0: resolution: {integrity: sha512-m4HEDZleaaCH+XgDDsPF15Ht6wTLsgDTeR3WYj9Q/k76JtWhrJjcP4+/XlG8LGT/Rol9qUfOIztXeA84ATpqPQ==} dependencies: - '@babel/helper-module-imports': 7.21.4 - '@babel/runtime': 7.21.5 + '@babel/helper-module-imports': 7.22.15 + '@babel/runtime': 7.23.1 '@emotion/hash': 0.9.1 '@emotion/memoize': 0.8.1 '@emotion/serialize': 1.1.2 @@ -2070,7 +1915,7 @@ packages: resolution: {integrity: sha512-W2P2c/VRW1/1tLox0mVUalvnWXxavmv/Oum2aPsRcoDJuob75FC3Y8FbpfLwUegRcxINtGUMPq0tFCvYNTBXNA==} dev: false - /@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0): + /@emotion/react@11.11.1(@types/react@18.2.24)(react@18.2.0): resolution: {integrity: sha512-5mlW1DquU5HaxjLkfkGN1GA/fvVGdyHURRiX/0FHl2cfIfRxSOfmxEH5YS43edp0OldZrZ+dkBKbngxcNCdZvA==} peerDependencies: '@types/react': '*' @@ -2079,14 +1924,14 @@ packages: '@types/react': optional: true dependencies: - '@babel/runtime': 7.22.15 + '@babel/runtime': 7.23.1 '@emotion/babel-plugin': 11.11.0 '@emotion/cache': 11.11.0 '@emotion/serialize': 1.1.2 '@emotion/use-insertion-effect-with-fallbacks': 1.0.1(react@18.2.0) '@emotion/utils': 1.2.1 '@emotion/weak-memoize': 0.3.1 - '@types/react': 18.2.21 + '@types/react': 18.2.24 hoist-non-react-statics: 3.3.2 react: 18.2.0 dev: false @@ -2105,7 +1950,7 @@ packages: resolution: {integrity: sha512-0QBtGvaqtWi+nx6doRwDdBIzhNdZrXUppvTM4dtZZWEGTXL/XE/yJxLMGlDT1Gt+UHH5IX1n+jkXyytE/av7OA==} dev: false - /@emotion/styled@11.11.0(@emotion/react@11.11.1)(@types/react@18.2.21)(react@18.2.0): + /@emotion/styled@11.11.0(@emotion/react@11.11.1)(@types/react@18.2.24)(react@18.2.0): resolution: {integrity: sha512-hM5Nnvu9P3midq5aaXj4I+lnSfNi7Pmd4EWk1fOZ3pxookaQTNew6bp4JaCBYM4HVFZF9g7UjJmsUmC2JlxOng==} peerDependencies: '@emotion/react': ^11.0.0-rc.0 @@ -2115,14 +1960,14 @@ packages: '@types/react': optional: true dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.23.1 '@emotion/babel-plugin': 11.11.0 '@emotion/is-prop-valid': 1.2.1 - '@emotion/react': 11.11.1(@types/react@18.2.21)(react@18.2.0) + '@emotion/react': 11.11.1(@types/react@18.2.24)(react@18.2.0) '@emotion/serialize': 1.1.2 '@emotion/use-insertion-effect-with-fallbacks': 1.0.1(react@18.2.0) '@emotion/utils': 1.2.1 - '@types/react': 18.2.21 + '@types/react': 18.2.24 react: 18.2.0 dev: false @@ -2360,18 +2205,18 @@ packages: dev: true optional: true - /@eslint-community/eslint-utils@4.4.0(eslint@8.49.0): + /@eslint-community/eslint-utils@4.4.0(eslint@8.50.0): resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 dependencies: - eslint: 8.49.0 + eslint: 8.50.0 eslint-visitor-keys: 3.4.3 dev: true - /@eslint-community/regexpp@4.8.1: - resolution: {integrity: sha512-PWiOzLIUAjN/w5K17PoF4n6sKBw0gqLHPhywmYHP4t1VFQQVYeb1yWsJwnMVEMl3tUHME7X/SJPZLmtG7XBDxQ==} + /@eslint-community/regexpp@4.9.0: + resolution: {integrity: sha512-zJmuCWj2VLBt4c25CfBIbMZLGLyhkvs7LznyVX5HfpzeocThgIj5XQK4L+g3U36mMcx8bPMhGyPpwCATamC4jQ==} engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} dev: true @@ -2382,7 +2227,7 @@ packages: ajv: 6.12.6 debug: 4.3.4(supports-color@5.5.0) espree: 9.6.1 - globals: 13.20.0 + globals: 13.22.0 ignore: 5.2.4 import-fresh: 3.3.0 js-yaml: 4.1.0 @@ -2392,22 +2237,22 @@ packages: - supports-color dev: true - /@eslint/js@8.49.0: - resolution: {integrity: sha512-1S8uAY/MTJqVx0SC4epBq+N2yhuwtNwLbJYNZyhL2pO1ZVKn5HFXav5T41Ryzy9K9V7ZId2JB2oy/W4aCd9/2w==} + /@eslint/js@8.50.0: + resolution: {integrity: sha512-NCC3zz2+nvYd+Ckfh87rA47zfu2QsQpvc6k1yzTk+b9KzRj0wkGa8LSoGOXN6Zv4lRf/EIoZ80biDh9HOI+RNQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dev: true - /@floating-ui/core@1.4.2: - resolution: {integrity: sha512-olUakR5nr9v2ueVr1yomoJnBTkHGqHzL/iK4AhforiJS/wKJgFphAYpZHZzADLv/zNUFuQwqLH3bcoUhFh2E1Q==} + /@floating-ui/core@1.5.0: + resolution: {integrity: sha512-kK1h4m36DQ0UHGj5Ah4db7R0rHemTqqO0QLvUqi1/mUUp3LuAWbWxdxSIf/XsnH9VS6rRVPLJCncjRzUvyCLXg==} dependencies: - '@floating-ui/utils': 0.1.3 + '@floating-ui/utils': 0.1.4 dev: false /@floating-ui/dom@1.5.3: resolution: {integrity: sha512-ClAbQnEqJAKCJOEbbLo5IUlZHkNszqhuxS4fHAVxRPXPya6Ysf2G8KypnYcOTpx6I8xcgF9bbHb6g/2KpbV8qA==} dependencies: - '@floating-ui/core': 1.4.2 - '@floating-ui/utils': 0.1.3 + '@floating-ui/core': 1.5.0 + '@floating-ui/utils': 0.1.4 dev: false /@floating-ui/react-dom@2.0.2(react-dom@18.2.0)(react@18.2.0): @@ -2421,8 +2266,8 @@ packages: react-dom: 18.2.0(react@18.2.0) dev: false - /@floating-ui/utils@0.1.3: - resolution: {integrity: sha512-uvnFKtPgzLnpzzTRfhDlvXX0kLYi9lDRQbcDmT8iXl71Rx+uwSuaUIQl3DNC7w5OweAQ7XQMDObML+KaYDQfng==} + /@floating-ui/utils@0.1.4: + resolution: {integrity: sha512-qprfWkn82Iw821mcKofJ5Pk9wgioHicxcQMxx+5zt5GSKoqdWvgG5AxVmpmUUjzTLPVSH5auBrhI93Deayn/DA==} dev: false /@fontsource/roboto@4.5.8: @@ -2439,7 +2284,7 @@ packages: react: '>= 16.3.0' react-dom: '>= 16.3.0' dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.23.1 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) dev: false @@ -2485,7 +2330,7 @@ packages: engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: '@jest/types': 27.5.1 - '@types/node': 16.18.50 + '@types/node': 16.18.55 chalk: 4.1.2 jest-message-util: 27.5.1 jest-util: 27.5.1 @@ -2497,7 +2342,7 @@ packages: engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: '@jest/types': 28.1.3 - '@types/node': 16.18.50 + '@types/node': 16.18.55 chalk: 4.1.2 jest-message-util: 28.1.3 jest-util: 28.1.3 @@ -2518,7 +2363,7 @@ packages: '@jest/test-result': 27.5.1 '@jest/transform': 27.5.1 '@jest/types': 27.5.1 - '@types/node': 16.18.50 + '@types/node': 16.18.55 ansi-escapes: 4.3.2 chalk: 4.1.2 emittery: 0.8.1 @@ -2555,7 +2400,7 @@ packages: dependencies: '@jest/fake-timers': 27.5.1 '@jest/types': 27.5.1 - '@types/node': 16.18.50 + '@types/node': 16.18.55 jest-mock: 27.5.1 dev: true @@ -2565,7 +2410,7 @@ packages: dependencies: '@jest/types': 27.5.1 '@sinonjs/fake-timers': 8.1.0 - '@types/node': 16.18.50 + '@types/node': 16.18.55 jest-message-util: 27.5.1 jest-mock: 27.5.1 jest-util: 27.5.1 @@ -2594,7 +2439,7 @@ packages: '@jest/test-result': 27.5.1 '@jest/transform': 27.5.1 '@jest/types': 27.5.1 - '@types/node': 16.18.50 + '@types/node': 16.18.55 chalk: 4.1.2 collect-v8-coverage: 1.0.2 exit: 0.1.2 @@ -2670,7 +2515,7 @@ packages: resolution: {integrity: sha512-ipON6WtYgl/1329g5AIJVbUuEh0wZVbdpGwC99Jw4LwuoBNS95MVphU6zOeD9pDkon+LLbFL7lOQRapbB8SCHw==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: - '@babel/core': 7.22.17 + '@babel/core': 7.23.0 '@jest/types': 27.5.1 babel-plugin-istanbul: 6.1.1 chalk: 4.1.2 @@ -2694,9 +2539,9 @@ packages: engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: '@types/istanbul-lib-coverage': 2.0.4 - '@types/istanbul-reports': 3.0.1 - '@types/node': 16.18.50 - '@types/yargs': 16.0.5 + '@types/istanbul-reports': 3.0.2 + '@types/node': 16.18.55 + '@types/yargs': 16.0.6 chalk: 4.1.2 dev: true @@ -2706,9 +2551,9 @@ packages: dependencies: '@jest/schemas': 28.1.3 '@types/istanbul-lib-coverage': 2.0.4 - '@types/istanbul-reports': 3.0.1 - '@types/node': 16.18.50 - '@types/yargs': 17.0.24 + '@types/istanbul-reports': 3.0.2 + '@types/node': 16.18.55 + '@types/yargs': 17.0.26 chalk: 4.1.2 dev: true @@ -2720,10 +2565,6 @@ packages: '@jridgewell/sourcemap-codec': 1.4.15 '@jridgewell/trace-mapping': 0.3.19 - /@jridgewell/resolve-uri@3.1.0: - resolution: {integrity: sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==} - engines: {node: '>=6.0.0'} - /@jridgewell/resolve-uri@3.1.1: resolution: {integrity: sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==} engines: {node: '>=6.0.0'} @@ -2739,18 +2580,9 @@ packages: '@jridgewell/trace-mapping': 0.3.19 dev: true - /@jridgewell/sourcemap-codec@1.4.14: - resolution: {integrity: sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==} - /@jridgewell/sourcemap-codec@1.4.15: resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==} - /@jridgewell/trace-mapping@0.3.18: - resolution: {integrity: sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==} - dependencies: - '@jridgewell/resolve-uri': 3.1.0 - '@jridgewell/sourcemap-codec': 1.4.14 - /@jridgewell/trace-mapping@0.3.19: resolution: {integrity: sha512-kf37QtfW+Hwx/buWGMPcR60iF9ziHa6r/CZJIHbmcm4+0qrXiVdxegAH0F6yddEVQ7zdkjcGCgCzUu+BcbhQxw==} dependencies: @@ -2787,8 +2619,8 @@ packages: prop-types: 15.8.1 dev: false - /@mui/base@5.0.0-beta.15(@types/react@18.2.21)(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-Xtom3YSdi0iwYPtyVRFUEGoRwi6IHWixPwifDKaK+4PkEPtUWMU5YOIJfTsmC59ri+dFvA3oBNSiTPUGGrklZw==} + /@mui/base@5.0.0-beta.17(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-xNbk7iOXrglNdIxFBN0k3ySsPIFLWCnFxqsAYl7CIcDkD9low4kJ7IUuy6ctwx/HAy2fenrT3KXHr1sGjAMgpQ==} engines: {node: '>=12.0.0'} peerDependencies: '@types/react': ^17.0.0 || ^18.0.0 @@ -2798,24 +2630,24 @@ packages: '@types/react': optional: true dependencies: - '@babel/runtime': 7.22.15 + '@babel/runtime': 7.23.1 '@floating-ui/react-dom': 2.0.2(react-dom@18.2.0)(react@18.2.0) - '@mui/types': 7.2.4(@types/react@18.2.21) - '@mui/utils': 5.14.9(@types/react@18.2.21)(react-dom@18.2.0)(react@18.2.0) + '@mui/types': 7.2.4(@types/react@18.2.24) + '@mui/utils': 5.14.11(@types/react@18.2.24)(react@18.2.0) '@popperjs/core': 2.11.8 - '@types/react': 18.2.21 + '@types/react': 18.2.24 clsx: 2.0.0 prop-types: 15.8.1 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) dev: false - /@mui/core-downloads-tracker@5.14.9: - resolution: {integrity: sha512-JAU/R5hM3l2zP1Q4KnioDRhq5V3vZ4mmjEZ+TwARDb2xFhg3p59McacQuzkSu0sUHJnH9aJos36+hU5sPQBcFQ==} + /@mui/core-downloads-tracker@5.14.11: + resolution: {integrity: sha512-uY8FLQURhXe3f3O4dS5OSGML9KDm9+IE226cBu78jarVIzdQGPlXwGIlSI9VJR8MvZDA6C0+6XfWDhWCHruC5Q==} dev: false - /@mui/material@5.14.9(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@types/react@18.2.21)(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-pbBy5kc5iUGXPxgbb+t+yEPvLK5nE3bPUb8WbAafJ8iZ40ZGui0xC4xiiIyzbVexzsLmyN7MaSo4LkxLmPKqUQ==} + /@mui/material@5.14.11(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-DnSdJzcR7lwG12JA5L2t8JF+RDzMygu5rCNW+logWb/KW2/TRzwLyVWO+CorHTBjBRd38DBxnwOCDiYkDd+N3A==} engines: {node: '>=12.0.0'} peerDependencies: '@emotion/react': ^11.5.0 @@ -2831,16 +2663,16 @@ packages: '@types/react': optional: true dependencies: - '@babel/runtime': 7.22.15 - '@emotion/react': 11.11.1(@types/react@18.2.21)(react@18.2.0) - '@emotion/styled': 11.11.0(@emotion/react@11.11.1)(@types/react@18.2.21)(react@18.2.0) - '@mui/base': 5.0.0-beta.15(@types/react@18.2.21)(react-dom@18.2.0)(react@18.2.0) - '@mui/core-downloads-tracker': 5.14.9 - '@mui/system': 5.14.9(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@types/react@18.2.21)(react-dom@18.2.0)(react@18.2.0) - '@mui/types': 7.2.4(@types/react@18.2.21) - '@mui/utils': 5.14.9(@types/react@18.2.21)(react-dom@18.2.0)(react@18.2.0) - '@types/react': 18.2.21 - '@types/react-transition-group': 4.4.6 + '@babel/runtime': 7.23.1 + '@emotion/react': 11.11.1(@types/react@18.2.24)(react@18.2.0) + '@emotion/styled': 11.11.0(@emotion/react@11.11.1)(@types/react@18.2.24)(react@18.2.0) + '@mui/base': 5.0.0-beta.17(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0) + '@mui/core-downloads-tracker': 5.14.11 + '@mui/system': 5.14.11(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@types/react@18.2.24)(react@18.2.0) + '@mui/types': 7.2.4(@types/react@18.2.24) + '@mui/utils': 5.14.11(@types/react@18.2.24)(react@18.2.0) + '@types/react': 18.2.24 + '@types/react-transition-group': 4.4.7 clsx: 2.0.0 csstype: 3.1.2 prop-types: 15.8.1 @@ -2850,8 +2682,8 @@ packages: react-transition-group: 4.4.5(react-dom@18.2.0)(react@18.2.0) dev: false - /@mui/private-theming@5.14.9(@types/react@18.2.21)(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-0PzoUFqFXTXiNchhR7K4b7kZunasPOjx6Qf7AagCmfZDNASHedA0x6evHVhnST918x/AHY9xykYNKfB0Z4xMBg==} + /@mui/private-theming@5.14.11(@types/react@18.2.24)(react@18.2.0): + resolution: {integrity: sha512-MSnNNzTu9pfKLCKs1ZAKwOTgE4bz+fQA0fNr8Jm7NDmuWmw0CaN9Vq2/MHsatE7+S0A25IAKby46Uv1u53rKVQ==} engines: {node: '>=12.0.0'} peerDependencies: '@types/react': ^17.0.0 || ^18.0.0 @@ -2860,17 +2692,15 @@ packages: '@types/react': optional: true dependencies: - '@babel/runtime': 7.22.15 - '@mui/utils': 5.14.9(@types/react@18.2.21)(react-dom@18.2.0)(react@18.2.0) - '@types/react': 18.2.21 + '@babel/runtime': 7.23.1 + '@mui/utils': 5.14.11(@types/react@18.2.24)(react@18.2.0) + '@types/react': 18.2.24 prop-types: 15.8.1 react: 18.2.0 - transitivePeerDependencies: - - react-dom dev: false - /@mui/styled-engine@5.14.9(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(react@18.2.0): - resolution: {integrity: sha512-LEQxLrW9oWvea33pge08+oyNeTz704jb6Nhe26xEJKojXWd34Rr327Zzx3dmo70AcS4h0b99vQjEpUzm6ASqUw==} + /@mui/styled-engine@5.14.11(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(react@18.2.0): + resolution: {integrity: sha512-jdUlqRgTYQ8RMtPX4MbRZqar6W2OiIb6J5KEFbIu4FqvPrk44Each4ppg/LAqp1qNlBYq5i+7Q10MYLMpDxX9A==} engines: {node: '>=12.0.0'} peerDependencies: '@emotion/react': ^11.4.1 @@ -2882,17 +2712,17 @@ packages: '@emotion/styled': optional: true dependencies: - '@babel/runtime': 7.22.15 + '@babel/runtime': 7.23.1 '@emotion/cache': 11.11.0 - '@emotion/react': 11.11.1(@types/react@18.2.21)(react@18.2.0) - '@emotion/styled': 11.11.0(@emotion/react@11.11.1)(@types/react@18.2.21)(react@18.2.0) + '@emotion/react': 11.11.1(@types/react@18.2.24)(react@18.2.0) + '@emotion/styled': 11.11.0(@emotion/react@11.11.1)(@types/react@18.2.24)(react@18.2.0) csstype: 3.1.2 prop-types: 15.8.1 react: 18.2.0 dev: false - /@mui/system@5.14.9(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@types/react@18.2.21)(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-Z00Wj590QXk5+SIxmxayBo7SWrao+y433LKGChneJxO4QcT/caSCeEWtyeoLs1Q8ys0zOzl2kkKee6n8TaKzhQ==} + /@mui/system@5.14.11(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@types/react@18.2.24)(react@18.2.0): + resolution: {integrity: sha512-yl8xV+y0k7j6dzBsHabKwoShmjqLa8kTxrhUI3JpqLG358VRVMJRW/ES0HhvfcCi4IVXde+Tc2P3K1akGL8zoA==} engines: {node: '>=12.0.0'} peerDependencies: '@emotion/react': ^11.5.0 @@ -2907,23 +2737,21 @@ packages: '@types/react': optional: true dependencies: - '@babel/runtime': 7.22.15 - '@emotion/react': 11.11.1(@types/react@18.2.21)(react@18.2.0) - '@emotion/styled': 11.11.0(@emotion/react@11.11.1)(@types/react@18.2.21)(react@18.2.0) - '@mui/private-theming': 5.14.9(@types/react@18.2.21)(react-dom@18.2.0)(react@18.2.0) - '@mui/styled-engine': 5.14.9(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(react@18.2.0) - '@mui/types': 7.2.4(@types/react@18.2.21) - '@mui/utils': 5.14.9(@types/react@18.2.21)(react-dom@18.2.0)(react@18.2.0) - '@types/react': 18.2.21 + '@babel/runtime': 7.23.1 + '@emotion/react': 11.11.1(@types/react@18.2.24)(react@18.2.0) + '@emotion/styled': 11.11.0(@emotion/react@11.11.1)(@types/react@18.2.24)(react@18.2.0) + '@mui/private-theming': 5.14.11(@types/react@18.2.24)(react@18.2.0) + '@mui/styled-engine': 5.14.11(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(react@18.2.0) + '@mui/types': 7.2.4(@types/react@18.2.24) + '@mui/utils': 5.14.11(@types/react@18.2.24)(react@18.2.0) + '@types/react': 18.2.24 clsx: 2.0.0 csstype: 3.1.2 prop-types: 15.8.1 react: 18.2.0 - transitivePeerDependencies: - - react-dom dev: false - /@mui/types@7.2.4(@types/react@18.2.21): + /@mui/types@7.2.4(@types/react@18.2.24): resolution: {integrity: sha512-LBcwa8rN84bKF+f5sDyku42w1NTxaPgPyYKODsh01U1fVstTClbUoSA96oyRBnSNyEiAVjKm6Gwx9vjR+xyqHA==} peerDependencies: '@types/react': '*' @@ -2931,25 +2759,24 @@ packages: '@types/react': optional: true dependencies: - '@types/react': 18.2.21 + '@types/react': 18.2.24 dev: false - /@mui/utils@5.14.9(@types/react@18.2.21)(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-9ysB5e+RwS7ofn0n3nwAg1/3c81vBTmSvauD3EuK9LmqMzhmF//BFDaC44U4yITvB/0m1kWyDqg924Ll3VHCcg==} + /@mui/utils@5.14.11(@types/react@18.2.24)(react@18.2.0): + resolution: {integrity: sha512-fmkIiCPKyDssYrJ5qk+dime1nlO3dmWfCtaPY/uVBqCRMBZ11JhddB9m8sjI2mgqQQwRJG5bq3biaosNdU/s4Q==} engines: {node: '>=12.0.0'} peerDependencies: '@types/react': ^17.0.0 || ^18.0.0 react: ^17.0.0 || ^18.0.0 - react-dom: ^17.0.0 || ^18.0.0 peerDependenciesMeta: '@types/react': optional: true dependencies: - '@babel/runtime': 7.22.15 - '@types/react': 18.2.21 + '@babel/runtime': 7.23.1 + '@types/prop-types': 15.7.8 + '@types/react': 18.2.24 prop-types: 15.8.1 react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) react-is: 18.2.0 dev: false @@ -3035,7 +2862,7 @@ packages: engines: {node: '>=14.0.0'} dev: false - /@rollup/plugin-babel@5.3.1(@babel/core@7.22.17)(rollup@2.79.1): + /@rollup/plugin-babel@5.3.1(@babel/core@7.23.0)(rollup@2.79.1): resolution: {integrity: sha512-WFfdLWU/xVWKeRQnKmIAQULUI7Il0gZnBIH/ZFO069wYIfPu+8zrfp/KMW0atmELoRDq8FbiP3VCss9MhCut7Q==} engines: {node: '>= 10.0.0'} peerDependencies: @@ -3046,7 +2873,7 @@ packages: '@types/babel__core': optional: true dependencies: - '@babel/core': 7.22.17 + '@babel/core': 7.23.0 '@babel/helper-module-imports': 7.22.15 '@rollup/pluginutils': 3.1.0(rollup@2.79.1) rollup: 2.79.1 @@ -3063,7 +2890,7 @@ packages: builtin-modules: 3.3.0 deepmerge: 4.3.1 is-module: 1.0.0 - resolve: 1.22.4 + resolve: 1.22.6 rollup: 2.79.1 dev: true @@ -3120,13 +2947,13 @@ packages: rollup: optional: true dependencies: - '@types/estree': 1.0.1 + '@types/estree': 1.0.2 estree-walker: 2.0.2 picomatch: 2.3.1 rollup: 2.79.1 - /@rushstack/eslint-patch@1.3.3: - resolution: {integrity: sha512-0xd7qez0AQ+MbHatZTlI1gu5vkG8r7MYRUJAHPAHJBmGLs16zpkrpAVLvjQKQOqaXPDUBwOiJzNc00znHSCVBw==} + /@rushstack/eslint-patch@1.5.1: + resolution: {integrity: sha512-6i/8UoL0P5y4leBIGzvkZdS85RDMG9y1ihZzmTZQ5LdHUYmZ7pKFoj8X0236s3lusPs1Fa5HTQUpwI+UfTcmeA==} dev: true /@sinclair/typebox@0.24.51: @@ -3163,13 +2990,13 @@ packages: engines: {node: '>=10'} dev: true - /@svgr/babel-plugin-add-jsx-attribute@7.0.0(@babel/core@7.22.15): - resolution: {integrity: sha512-khWbXesWIP9v8HuKCl2NU2HNAyqpSQ/vkIl36Nbn4HIwEYSRWL0H7Gs6idJdha2DkpFDWlsqMELvoCE8lfFY6Q==} + /@svgr/babel-plugin-add-jsx-attribute@8.0.0(@babel/core@7.23.0): + resolution: {integrity: sha512-b9MIk7yhdS1pMCZM8VeNfUlSKVRhsHZNMl5O9SfaX0l0t5wjdgu4IDzGB8bpnGBBOjGST3rRFVsaaEtI4W6f7g==} engines: {node: '>=14'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.15 + '@babel/core': 7.23.0 dev: true /@svgr/babel-plugin-remove-jsx-attribute@5.4.0: @@ -3177,13 +3004,13 @@ packages: engines: {node: '>=10'} dev: true - /@svgr/babel-plugin-remove-jsx-attribute@7.0.0(@babel/core@7.22.15): - resolution: {integrity: sha512-iiZaIvb3H/c7d3TH2HBeK91uI2rMhZNwnsIrvd7ZwGLkFw6mmunOCoVnjdYua662MqGFxlN9xTq4fv9hgR4VXQ==} + /@svgr/babel-plugin-remove-jsx-attribute@8.0.0(@babel/core@7.23.0): + resolution: {integrity: sha512-BcCkm/STipKvbCl6b7QFrMh/vx00vIP63k2eM66MfHJzPr6O2U0jYEViXkHJWqXqQYjdeA9cuCl5KWmlwjDvbA==} engines: {node: '>=14'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.15 + '@babel/core': 7.23.0 dev: true /@svgr/babel-plugin-remove-jsx-empty-expression@5.0.1: @@ -3191,13 +3018,13 @@ packages: engines: {node: '>=10'} dev: true - /@svgr/babel-plugin-remove-jsx-empty-expression@7.0.0(@babel/core@7.22.15): - resolution: {integrity: sha512-sQQmyo+qegBx8DfFc04PFmIO1FP1MHI1/QEpzcIcclo5OAISsOJPW76ZIs0bDyO/DBSJEa/tDa1W26pVtt0FRw==} + /@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0(@babel/core@7.23.0): + resolution: {integrity: sha512-5BcGCBfBxB5+XSDSWnhTThfI9jcO5f0Ai2V24gZpG+wXF14BzwxxdDb4g6trdOux0rhibGs385BeFMSmxtS3uA==} engines: {node: '>=14'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.15 + '@babel/core': 7.23.0 dev: true /@svgr/babel-plugin-replace-jsx-attribute-value@5.0.1: @@ -3205,13 +3032,13 @@ packages: engines: {node: '>=10'} dev: true - /@svgr/babel-plugin-replace-jsx-attribute-value@7.0.0(@babel/core@7.22.15): - resolution: {integrity: sha512-i6MaAqIZXDOJeikJuzocByBf8zO+meLwfQ/qMHIjCcvpnfvWf82PFvredEZElErB5glQFJa2KVKk8N2xV6tRRA==} + /@svgr/babel-plugin-replace-jsx-attribute-value@8.0.0(@babel/core@7.23.0): + resolution: {integrity: sha512-KVQ+PtIjb1BuYT3ht8M5KbzWBhdAjjUPdlMtpuw/VjT8coTrItWX6Qafl9+ji831JaJcu6PJNKCV0bp01lBNzQ==} engines: {node: '>=14'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.15 + '@babel/core': 7.23.0 dev: true /@svgr/babel-plugin-svg-dynamic-title@5.4.0: @@ -3219,13 +3046,13 @@ packages: engines: {node: '>=10'} dev: true - /@svgr/babel-plugin-svg-dynamic-title@7.0.0(@babel/core@7.22.15): - resolution: {integrity: sha512-BoVSh6ge3SLLpKC0pmmN9DFlqgFy4NxNgdZNLPNJWBUU7TQpDWeBuyVuDW88iXydb5Cv0ReC+ffa5h3VrKfk1w==} + /@svgr/babel-plugin-svg-dynamic-title@8.0.0(@babel/core@7.23.0): + resolution: {integrity: sha512-omNiKqwjNmOQJ2v6ge4SErBbkooV2aAWwaPFs2vUY7p7GhVkzRkJ00kILXQvRhA6miHnNpXv7MRnnSjdRjK8og==} engines: {node: '>=14'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.15 + '@babel/core': 7.23.0 dev: true /@svgr/babel-plugin-svg-em-dimensions@5.4.0: @@ -3233,13 +3060,13 @@ packages: engines: {node: '>=10'} dev: true - /@svgr/babel-plugin-svg-em-dimensions@7.0.0(@babel/core@7.22.15): - resolution: {integrity: sha512-tNDcBa+hYn0gO+GkP/AuNKdVtMufVhU9fdzu+vUQsR18RIJ9RWe7h/pSBY338RO08wArntwbDk5WhQBmhf2PaA==} + /@svgr/babel-plugin-svg-em-dimensions@8.0.0(@babel/core@7.23.0): + resolution: {integrity: sha512-mURHYnu6Iw3UBTbhGwE/vsngtCIbHE43xCRK7kCw4t01xyGqb2Pd+WXekRRoFOBIY29ZoOhUCTEweDMdrjfi9g==} engines: {node: '>=14'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.15 + '@babel/core': 7.23.0 dev: true /@svgr/babel-plugin-transform-react-native-svg@5.4.0: @@ -3247,13 +3074,13 @@ packages: engines: {node: '>=10'} dev: true - /@svgr/babel-plugin-transform-react-native-svg@7.0.0(@babel/core@7.22.15): - resolution: {integrity: sha512-qw54u8ljCJYL2KtBOjI5z7Nzg8LnSvQOP5hPKj77H4VQL4+HdKbAT5pnkkZLmHKYwzsIHSYKXxHouD8zZamCFQ==} + /@svgr/babel-plugin-transform-react-native-svg@8.1.0(@babel/core@7.23.0): + resolution: {integrity: sha512-Tx8T58CHo+7nwJ+EhUwx3LfdNSG9R2OKfaIXXs5soiy5HtgoAEkDay9LIimLOcG8dJQH1wPZp/cnAv6S9CrR1Q==} engines: {node: '>=14'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.15 + '@babel/core': 7.23.0 dev: true /@svgr/babel-plugin-transform-svg-component@5.5.0: @@ -3261,13 +3088,13 @@ packages: engines: {node: '>=10'} dev: true - /@svgr/babel-plugin-transform-svg-component@7.0.0(@babel/core@7.22.15): - resolution: {integrity: sha512-CcFECkDj98daOg9jE3Bh3uyD9kzevCAnZ+UtzG6+BQG/jOQ2OA3jHnX6iG4G1MCJkUQFnUvEv33NvQfqrb/F3A==} + /@svgr/babel-plugin-transform-svg-component@8.0.0(@babel/core@7.23.0): + resolution: {integrity: sha512-DFx8xa3cZXTdb/k3kfPeaixecQLgKh5NVBMwD0AQxOzcZawK4oo1Jh9LbrcACUivsCA7TLG8eeWgrDXjTMhRmw==} engines: {node: '>=12'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.15 + '@babel/core': 7.23.0 dev: true /@svgr/babel-preset@5.5.0: @@ -3284,21 +3111,21 @@ packages: '@svgr/babel-plugin-transform-svg-component': 5.5.0 dev: true - /@svgr/babel-preset@7.0.0(@babel/core@7.22.15): - resolution: {integrity: sha512-EX/NHeFa30j5UjldQGVQikuuQNHUdGmbh9kEpBKofGUtF0GUPJ4T4rhoYiqDAOmBOxojyot36JIFiDUHUK1ilQ==} + /@svgr/babel-preset@8.1.0(@babel/core@7.23.0): + resolution: {integrity: sha512-7EYDbHE7MxHpv4sxvnVPngw5fuR6pw79SkcrILHJ/iMpuKySNCl5W1qcwPEpU+LgyRXOaAFgH0KhwD18wwg6ug==} engines: {node: '>=14'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.15 - '@svgr/babel-plugin-add-jsx-attribute': 7.0.0(@babel/core@7.22.15) - '@svgr/babel-plugin-remove-jsx-attribute': 7.0.0(@babel/core@7.22.15) - '@svgr/babel-plugin-remove-jsx-empty-expression': 7.0.0(@babel/core@7.22.15) - '@svgr/babel-plugin-replace-jsx-attribute-value': 7.0.0(@babel/core@7.22.15) - '@svgr/babel-plugin-svg-dynamic-title': 7.0.0(@babel/core@7.22.15) - '@svgr/babel-plugin-svg-em-dimensions': 7.0.0(@babel/core@7.22.15) - '@svgr/babel-plugin-transform-react-native-svg': 7.0.0(@babel/core@7.22.15) - '@svgr/babel-plugin-transform-svg-component': 7.0.0(@babel/core@7.22.15) + '@babel/core': 7.23.0 + '@svgr/babel-plugin-add-jsx-attribute': 8.0.0(@babel/core@7.23.0) + '@svgr/babel-plugin-remove-jsx-attribute': 8.0.0(@babel/core@7.23.0) + '@svgr/babel-plugin-remove-jsx-empty-expression': 8.0.0(@babel/core@7.23.0) + '@svgr/babel-plugin-replace-jsx-attribute-value': 8.0.0(@babel/core@7.23.0) + '@svgr/babel-plugin-svg-dynamic-title': 8.0.0(@babel/core@7.23.0) + '@svgr/babel-plugin-svg-em-dimensions': 8.0.0(@babel/core@7.23.0) + '@svgr/babel-plugin-transform-react-native-svg': 8.1.0(@babel/core@7.23.0) + '@svgr/babel-plugin-transform-svg-component': 8.0.0(@babel/core@7.23.0) dev: true /@svgr/core@5.5.0: @@ -3312,14 +3139,15 @@ packages: - supports-color dev: true - /@svgr/core@7.0.0(typescript@5.2.2): - resolution: {integrity: sha512-ztAoxkaKhRVloa3XydohgQQCb0/8x9T63yXovpmHzKMkHO6pkjdsIAWKOS4bE95P/2quVh1NtjSKlMRNzSBffw==} + /@svgr/core@8.1.0(typescript@5.2.2): + resolution: {integrity: sha512-8QqtOQT5ACVlmsvKOJNEaWmRPmcojMOzCz4Hs2BGG/toAp/K38LcsMRyLp349glq5AzJbCEeimEoxaX6v/fLrA==} engines: {node: '>=14'} dependencies: - '@babel/core': 7.22.15 - '@svgr/babel-preset': 7.0.0(@babel/core@7.22.15) + '@babel/core': 7.23.0 + '@svgr/babel-preset': 8.1.0(@babel/core@7.23.0) camelcase: 6.3.0 - cosmiconfig: 8.3.4(typescript@5.2.2) + cosmiconfig: 8.3.6(typescript@5.2.2) + snake-case: 3.0.4 transitivePeerDependencies: - supports-color - typescript @@ -3329,14 +3157,14 @@ packages: resolution: {integrity: sha512-cAaR/CAiZRB8GP32N+1jocovUtvlj0+e65TB50/6Lcime+EA49m/8l+P2ko+XPJ4dw3xaPS3jOL4F2X4KWxoeQ==} engines: {node: '>=10'} dependencies: - '@babel/types': 7.22.17 + '@babel/types': 7.23.0 dev: true - /@svgr/hast-util-to-babel-ast@7.0.0: - resolution: {integrity: sha512-42Ej9sDDEmsJKjrfQ1PHmiDiHagh/u9AHO9QWbeNx4KmD9yS5d1XHmXUNINfUcykAU+4431Cn+k6Vn5mWBYimQ==} + /@svgr/hast-util-to-babel-ast@8.0.0: + resolution: {integrity: sha512-EbDKwO9GpfWP4jN9sGdYwPBU0kdomaPIL2Eu4YwmgP+sJeXT+L7bMwJUBnhzfH8Q2qMBqZ4fJwpCyYsAN3mt2Q==} engines: {node: '>=14'} dependencies: - '@babel/types': 7.22.15 + '@babel/types': 7.23.0 entities: 4.5.0 dev: true @@ -3344,7 +3172,7 @@ packages: resolution: {integrity: sha512-V/wVh33j12hGh05IDg8GpIUXbjAPnTdPTKuP4VNLggnwaHMPNQNae2pRnyTAILWCQdz5GyMqtO488g7CKM8CBA==} engines: {node: '>=10'} dependencies: - '@babel/core': 7.22.17 + '@babel/core': 7.23.0 '@svgr/babel-preset': 5.5.0 '@svgr/hast-util-to-babel-ast': 5.5.0 svg-parser: 2.0.4 @@ -3352,13 +3180,16 @@ packages: - supports-color dev: true - /@svgr/plugin-jsx@7.0.0: - resolution: {integrity: sha512-SWlTpPQmBUtLKxXWgpv8syzqIU8XgFRvyhfkam2So8b3BE0OS0HPe5UfmlJ2KIC+a7dpuuYovPR2WAQuSyMoPw==} + /@svgr/plugin-jsx@8.1.0(@svgr/core@8.1.0): + resolution: {integrity: sha512-0xiIyBsLlr8quN+WyuxooNW9RJ0Dpr8uOnH/xrCVO8GLUcwHISwj1AG0k+LFzteTkAA0GbX0kj9q6Dk70PTiPA==} engines: {node: '>=14'} + peerDependencies: + '@svgr/core': '*' dependencies: - '@babel/core': 7.22.15 - '@svgr/babel-preset': 7.0.0(@babel/core@7.22.15) - '@svgr/hast-util-to-babel-ast': 7.0.0 + '@babel/core': 7.23.0 + '@svgr/babel-preset': 8.1.0(@babel/core@7.23.0) + '@svgr/core': 8.1.0(typescript@5.2.2) + '@svgr/hast-util-to-babel-ast': 8.0.0 svg-parser: 2.0.4 transitivePeerDependencies: - supports-color @@ -3377,10 +3208,10 @@ packages: resolution: {integrity: sha512-DOBOK255wfQxguUta2INKkzPj6AIS6iafZYiYmHn6W3pHlycSRRlvWKCfLDG10fXfLWqE3DJHgRUOyJYmARa7g==} engines: {node: '>=10'} dependencies: - '@babel/core': 7.22.17 - '@babel/plugin-transform-react-constant-elements': 7.22.5(@babel/core@7.22.17) - '@babel/preset-env': 7.22.15(@babel/core@7.22.17) - '@babel/preset-react': 7.22.15(@babel/core@7.22.17) + '@babel/core': 7.23.0 + '@babel/plugin-transform-react-constant-elements': 7.22.5(@babel/core@7.23.0) + '@babel/preset-env': 7.22.20(@babel/core@7.23.0) + '@babel/preset-react': 7.22.15(@babel/core@7.23.0) '@svgr/core': 5.5.0 '@svgr/plugin-jsx': 5.5.0 '@svgr/plugin-svgo': 5.5.0 @@ -3560,13 +3391,13 @@ packages: '@tauri-apps/api': 2.0.0-alpha.6 dev: false - /@testing-library/dom@8.20.0: - resolution: {integrity: sha512-d9ULIT+a4EXLX3UU8FBjauG9NnsZHkHztXoIcTsOKoOw030fyjheN9svkTULjJxtYag9DZz5Jz5qkWZDPxTFwA==} + /@testing-library/dom@8.20.1: + resolution: {integrity: sha512-/DiOQ5xBxgdYRC8LNk7U+RWat0S3qRLeIw3ZIkMQ9kkVlRmwD/Eg8k8CqIpD6GW7u20JIUOfMKbxtiLutpjQ4g==} engines: {node: '>=12'} dependencies: - '@babel/code-frame': 7.21.4 - '@babel/runtime': 7.21.5 - '@types/aria-query': 5.0.1 + '@babel/code-frame': 7.22.13 + '@babel/runtime': 7.23.1 + '@types/aria-query': 5.0.2 aria-query: 5.1.3 chalk: 4.1.2 dom-accessibility-api: 0.5.16 @@ -3574,13 +3405,13 @@ packages: pretty-format: 27.5.1 dev: false - /@testing-library/dom@9.3.1: - resolution: {integrity: sha512-0DGPd9AR3+iDTjGoMpxIkAsUihHZ3Ai6CneU6bRRrffXMgzCdlNk43jTrD2/5LT6CBb3MWTP8v510JzYtahD2w==} + /@testing-library/dom@9.3.3: + resolution: {integrity: sha512-fB0R+fa3AUqbLHWyxXa2kGVtf1Fe1ZZFr0Zp6AIbIAzXb2mKbEXl+PCQNUOaq5lbTab5tfctfXRNsWXxa2f7Aw==} engines: {node: '>=14'} dependencies: '@babel/code-frame': 7.22.13 - '@babel/runtime': 7.22.15 - '@types/aria-query': 5.0.1 + '@babel/runtime': 7.23.1 + '@types/aria-query': 5.0.2 aria-query: 5.1.3 chalk: 4.1.2 dom-accessibility-api: 0.5.16 @@ -3593,8 +3424,8 @@ packages: engines: {node: '>=8', npm: '>=6', yarn: '>=1'} dependencies: '@adobe/css-tools': 4.3.1 - '@babel/runtime': 7.22.15 - '@types/testing-library__jest-dom': 5.14.5 + '@babel/runtime': 7.23.1 + '@types/testing-library__jest-dom': 5.14.9 aria-query: 5.3.0 chalk: 3.0.0 css.escape: 1.5.1 @@ -3610,21 +3441,21 @@ packages: react: ^18.0.0 react-dom: ^18.0.0 dependencies: - '@babel/runtime': 7.21.5 - '@testing-library/dom': 8.20.0 - '@types/react-dom': 18.2.7 + '@babel/runtime': 7.23.1 + '@testing-library/dom': 8.20.1 + '@types/react-dom': 18.2.8 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) dev: false - /@testing-library/user-event@13.5.0(@testing-library/dom@9.3.1): + /@testing-library/user-event@13.5.0(@testing-library/dom@9.3.3): resolution: {integrity: sha512-5Kwtbo3Y/NowpkbRuSepbyMFkZmHgD+vPzYB/RJ4oxt5Gj/avFFBYjhw27cqSVPVw/3a67NK1PbiIr9k4Gwmdg==} engines: {node: '>=10', npm: '>=6'} peerDependencies: '@testing-library/dom': '>=7.21.4' dependencies: - '@babel/runtime': 7.21.5 - '@testing-library/dom': 9.3.1 + '@babel/runtime': 7.23.1 + '@testing-library/dom': 9.3.3 dev: false /@tootallnate/once@1.1.2: @@ -3649,118 +3480,118 @@ packages: resolution: {integrity: sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==} dev: true - /@tsconfig/node16@1.0.3: - resolution: {integrity: sha512-yOlFc+7UtL/89t2ZhjPvvB/DeAr3r+Dq58IgzsFkOAvVC6NMJXmCGjbptdXdR9qsX7pKcTL+s87FtYREi2dEEQ==} + /@tsconfig/node16@1.0.4: + resolution: {integrity: sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==} dev: true - /@types/aria-query@5.0.1: - resolution: {integrity: sha512-XTIieEY+gvJ39ChLcB4If5zHtPxt3Syj5rgZR+e1ctpmK8NjPf0zFqsz4JpLJT0xla9GFDKjy8Cpu331nrmE1Q==} + /@types/aria-query@5.0.2: + resolution: {integrity: sha512-PHKZuMN+K5qgKIWhBodXzQslTo5P+K/6LqeKXS6O/4liIDdZqaX5RXrCK++LAw+y/nptN48YmUMFiQHRSWYwtQ==} dev: false - /@types/babel__core@7.20.1: - resolution: {integrity: sha512-aACu/U/omhdk15O4Nfb+fHgH/z3QsfQzpnvRZhYhThms83ZnAOZz7zZAWO7mn2yyNQaA4xTO8GLK3uqFU4bYYw==} + /@types/babel__core@7.20.2: + resolution: {integrity: sha512-pNpr1T1xLUc2l3xJKuPtsEky3ybxN3m4fJkknfIpTCTfIZCDW57oAg+EfCgIIp2rvCe0Wn++/FfodDS4YXxBwA==} dependencies: - '@babel/parser': 7.22.16 - '@babel/types': 7.22.17 - '@types/babel__generator': 7.6.4 - '@types/babel__template': 7.4.1 - '@types/babel__traverse': 7.20.1 + '@babel/parser': 7.23.0 + '@babel/types': 7.23.0 + '@types/babel__generator': 7.6.5 + '@types/babel__template': 7.4.2 + '@types/babel__traverse': 7.20.2 dev: true - /@types/babel__generator@7.6.4: - resolution: {integrity: sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==} + /@types/babel__generator@7.6.5: + resolution: {integrity: sha512-h9yIuWbJKdOPLJTbmSpPzkF67e659PbQDba7ifWm5BJ8xTv+sDmS7rFmywkWOvXedGTivCdeGSIIX8WLcRTz8w==} dependencies: - '@babel/types': 7.22.17 + '@babel/types': 7.23.0 dev: true - /@types/babel__template@7.4.1: - resolution: {integrity: sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==} + /@types/babel__template@7.4.2: + resolution: {integrity: sha512-/AVzPICMhMOMYoSx9MoKpGDKdBRsIXMNByh1PXSZoa+v6ZoLa8xxtsT/uLQ/NJm0XVAWl/BvId4MlDeXJaeIZQ==} dependencies: - '@babel/parser': 7.22.16 - '@babel/types': 7.22.17 + '@babel/parser': 7.23.0 + '@babel/types': 7.23.0 dev: true - /@types/babel__traverse@7.20.1: - resolution: {integrity: sha512-MitHFXnhtgwsGZWtT68URpOvLN4EREih1u3QtQiN4VdAxWKRVvGCSvw/Qth0M0Qq3pJpnGOu5JaM/ydK7OGbqg==} + /@types/babel__traverse@7.20.2: + resolution: {integrity: sha512-ojlGK1Hsfce93J0+kn3H5R73elidKUaZonirN33GSmgTUMpzI/MIFfSpF3haANe3G1bEBS9/9/QEqwTzwqFsKw==} dependencies: - '@babel/types': 7.22.17 + '@babel/types': 7.23.0 dev: true - /@types/body-parser@1.19.2: - resolution: {integrity: sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==} + /@types/body-parser@1.19.3: + resolution: {integrity: sha512-oyl4jvAfTGX9Bt6Or4H9ni1Z447/tQuxnZsytsCaExKlmJiU8sFgnIBRzJUpKwB5eWn9HuBYlUlVA74q/yN0eQ==} dependencies: '@types/connect': 3.4.36 - '@types/node': 16.18.50 + '@types/node': 16.18.55 dev: true - /@types/bonjour@3.5.10: - resolution: {integrity: sha512-p7ienRMiS41Nu2/igbJxxLDWrSZ0WxM8UQgCeO9KhoVF7cOVFkrKsiDr1EsJIla8vV3oEEjGcz11jc5yimhzZw==} + /@types/bonjour@3.5.11: + resolution: {integrity: sha512-isGhjmBtLIxdHBDl2xGwUzEM8AOyOvWsADWq7rqirdi/ZQoHnLWErHvsThcEzTX8juDRiZtzp2Qkv5bgNh6mAg==} dependencies: - '@types/node': 16.18.50 + '@types/node': 16.18.55 dev: true /@types/connect-history-api-fallback@1.5.1: resolution: {integrity: sha512-iaQslNbARe8fctL5Lk+DsmgWOM83lM+7FzP0eQUJs1jd3kBE8NWqBTIT2S8SqQOJjxvt2eyIjpOuYeRXq2AdMw==} dependencies: - '@types/express-serve-static-core': 4.17.36 - '@types/node': 16.18.50 + '@types/express-serve-static-core': 4.17.37 + '@types/node': 16.18.55 dev: true /@types/connect@3.4.36: resolution: {integrity: sha512-P63Zd/JUGq+PdrM1lv0Wv5SBYeA2+CORvbrXbngriYY0jzLUWfQMQQxOhjONEz/wlHOAxOdY7CY65rgQdTjq2w==} dependencies: - '@types/node': 16.18.50 + '@types/node': 16.18.55 dev: true - /@types/eslint-scope@3.7.4: - resolution: {integrity: sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA==} + /@types/eslint-scope@3.7.5: + resolution: {integrity: sha512-JNvhIEyxVW6EoMIFIvj93ZOywYFatlpu9deeH6eSx6PE3WHYvHaQtmHmQeNw7aA81bYGBPPQqdtBm6b1SsQMmA==} dependencies: - '@types/eslint': 8.44.2 - '@types/estree': 1.0.1 + '@types/eslint': 8.44.3 + '@types/estree': 1.0.2 dev: true - /@types/eslint@8.44.2: - resolution: {integrity: sha512-sdPRb9K6iL5XZOmBubg8yiFp5yS/JdUDQsq5e6h95km91MCYMuvp7mh1fjPEYUhvHepKpZOjnEaMBR4PxjWDzg==} + /@types/eslint@8.44.3: + resolution: {integrity: sha512-iM/WfkwAhwmPff3wZuPLYiHX18HI24jU8k1ZSH7P8FHwxTjZ2P6CoX2wnF43oprR+YXJM6UUxATkNvyv/JHd+g==} dependencies: - '@types/estree': 1.0.1 - '@types/json-schema': 7.0.12 + '@types/estree': 1.0.2 + '@types/json-schema': 7.0.13 dev: true /@types/estree@0.0.39: resolution: {integrity: sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==} dev: true - /@types/estree@1.0.1: - resolution: {integrity: sha512-LG4opVs2ANWZ1TJoKc937iMmNstM/d0ae1vNbnBvBhqCSezgVUOzcLCqbI5elV8Vy6WKwKjaqR+zO9VKirBBCA==} + /@types/estree@1.0.2: + resolution: {integrity: sha512-VeiPZ9MMwXjO32/Xu7+OwflfmeoRwkE/qzndw42gGtgJwZopBnzy2gD//NN1+go1mADzkDcqf/KnFRSjTJ8xJA==} - /@types/express-serve-static-core@4.17.36: - resolution: {integrity: sha512-zbivROJ0ZqLAtMzgzIUC4oNqDG9iF0lSsAqpOD9kbs5xcIM3dTiyuHvBc7R8MtWBp3AAWGaovJa+wzWPjLYW7Q==} + /@types/express-serve-static-core@4.17.37: + resolution: {integrity: sha512-ZohaCYTgGFcOP7u6aJOhY9uIZQgZ2vxC2yWoArY+FeDXlqeH66ZVBjgvg+RLVAS/DWNq4Ap9ZXu1+SUQiiWYMg==} dependencies: - '@types/node': 16.18.50 + '@types/node': 16.18.55 '@types/qs': 6.9.8 - '@types/range-parser': 1.2.4 - '@types/send': 0.17.1 + '@types/range-parser': 1.2.5 + '@types/send': 0.17.2 dev: true - /@types/express@4.17.17: - resolution: {integrity: sha512-Q4FmmuLGBG58btUnfS1c1r/NQdlp3DMfGDGig8WhfpA2YRUtEkxAjkZb0yvplJGYdF1fsQ81iMDcH24sSCNC/Q==} + /@types/express@4.17.18: + resolution: {integrity: sha512-Sxv8BSLLgsBYmcnGdGjjEjqET2U+AKAdCRODmMiq02FgjwuV75Ut85DRpvFjyw/Mk0vgUOliGRU0UUmuuZHByQ==} dependencies: - '@types/body-parser': 1.19.2 - '@types/express-serve-static-core': 4.17.36 + '@types/body-parser': 1.19.3 + '@types/express-serve-static-core': 4.17.37 '@types/qs': 6.9.8 - '@types/serve-static': 1.15.2 + '@types/serve-static': 1.15.3 dev: true - /@types/graceful-fs@4.1.6: - resolution: {integrity: sha512-Sig0SNORX9fdW+bQuTEovKj3uHcUL6LQKbCrrqb1X7J6/ReAbhCXRAhc+SMejhLELFj2QcyuxmUooZ4bt5ReSw==} + /@types/graceful-fs@4.1.7: + resolution: {integrity: sha512-MhzcwU8aUygZroVwL2jeYk6JisJrPl/oov/gsgGCue9mkgl9wjGbzReYQClxiUgFDnib9FuHqTndccKeZKxTRw==} dependencies: - '@types/node': 16.18.50 + '@types/node': 16.18.55 dev: true - /@types/hoist-non-react-statics@3.3.1: - resolution: {integrity: sha512-iMIqiko6ooLrTh1joXodJK5X9xeEALT1kM5G3ZLhD3hszxBdIEd5C75U834D9mLcINgD4OyZf5uQXjkuYydWvA==} + /@types/hoist-non-react-statics@3.3.2: + resolution: {integrity: sha512-YIQtIg4PKr7ZyqNPZObpxfHsHEmuB8dXCxd6qVcGuQVDK2bpsF7bYNnBJ4Nn7giuACZg+WewExgrtAJ3XnA4Xw==} dependencies: - '@types/react': 18.2.21 + '@types/react': 18.2.24 hoist-non-react-statics: 3.3.2 dev: true @@ -3768,30 +3599,30 @@ packages: resolution: {integrity: sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg==} dev: true - /@types/http-errors@2.0.1: - resolution: {integrity: sha512-/K3ds8TRAfBvi5vfjuz8y6+GiAYBZ0x4tXv1Av6CWBWn0IlADc+ZX9pMq7oU0fNQPnBwIZl3rmeLp6SBApbxSQ==} + /@types/http-errors@2.0.2: + resolution: {integrity: sha512-lPG6KlZs88gef6aD85z3HNkztpj7w2R7HmR3gygjfXCQmsLloWNARFkMuzKiiY8FGdh1XDpgBdrSf4aKDiA7Kg==} dev: true - /@types/http-proxy@1.17.11: - resolution: {integrity: sha512-HC8G7c1WmaF2ekqpnFq626xd3Zz0uvaqFmBJNRZCGEZCXkvSdJoNFn/8Ygbd9fKNQj8UzLdCETaI0UWPAjK7IA==} + /@types/http-proxy@1.17.12: + resolution: {integrity: sha512-kQtujO08dVtQ2wXAuSFfk9ASy3sug4+ogFR8Kd8UgP8PEuc1/G/8yjYRmp//PcDNJEUKOza/MrQu15bouEUCiw==} dependencies: - '@types/node': 16.18.50 + '@types/node': 16.18.55 dev: true /@types/istanbul-lib-coverage@2.0.4: resolution: {integrity: sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==} dev: true - /@types/istanbul-lib-report@3.0.0: - resolution: {integrity: sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==} + /@types/istanbul-lib-report@3.0.1: + resolution: {integrity: sha512-gPQuzaPR5h/djlAv2apEG1HVOyj1IUs7GpfMZixU0/0KXT3pm64ylHuMUI1/Akh+sq/iikxg6Z2j+fcMDXaaTQ==} dependencies: '@types/istanbul-lib-coverage': 2.0.4 dev: true - /@types/istanbul-reports@3.0.1: - resolution: {integrity: sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==} + /@types/istanbul-reports@3.0.2: + resolution: {integrity: sha512-kv43F9eb3Lhj+lr/Hn6OcLCs/sSM8bt+fIaP11rCYngfV6NVjzWXJ17owQtDQTL9tQ8WSLUrGsSJ6rJz0F1w1A==} dependencies: - '@types/istanbul-lib-report': 3.0.0 + '@types/istanbul-lib-report': 3.0.1 dev: true /@types/jest@27.5.2: @@ -3800,8 +3631,8 @@ packages: jest-matcher-utils: 27.5.1 pretty-format: 27.5.1 - /@types/json-schema@7.0.12: - resolution: {integrity: sha512-Hr5Jfhc9eYOQNPYO5WLDq/n4jqijdHNlDXjuAQkkt+mWdQR+XJToOHrsD4cPaMXpn6KO7y2+wM8AZEs8VpBLVA==} + /@types/json-schema@7.0.13: + resolution: {integrity: sha512-RbSSoHliUbnXj3ny0CNFOoxrIDV6SUGyStHsvDqosw6CkdPV8TtWGlfecuK4ToyMEAql6pzNxgCFKanovUzlgQ==} dev: true /@types/json5@0.0.29: @@ -3811,23 +3642,23 @@ packages: /@types/loadable__component@5.13.5: resolution: {integrity: sha512-YMpOC3hkzuLKi0ZBRn1LFglw4cDP70cGeQ9ZXBh5mYCLo+dJtw+DflNTx55VGl7BQ3MATiS+VNd8apEtaQcl5w==} dependencies: - '@types/react': 18.2.21 + '@types/react': 18.2.24 dev: true - /@types/mime@1.3.2: - resolution: {integrity: sha512-YATxVxgRqNH6nHEIsvg6k2Boc1JHI9ZbH5iWFFv/MTkchz3b1ieGDa5T0a9RznNdI0KhVbdbWSN+KWWrQZRxTw==} + /@types/mime@1.3.3: + resolution: {integrity: sha512-Ys+/St+2VF4+xuY6+kDIXGxbNRO0mesVg0bbxEfB97Od1Vjpjx9KD1qxs64Gcb3CWPirk9Xe+PT4YiiHQ9T+eg==} dev: true - /@types/mime@3.0.1: - resolution: {integrity: sha512-Y4XFY5VJAuw0FgAqPNd6NNoV44jbq9Bz2L7Rh/J6jLTiHBSBJa9fxqQIvkIld4GsoDOcCbvzOUAbLPsSKKg+uA==} + /@types/mime@3.0.2: + resolution: {integrity: sha512-Wj+fqpTLtTbG7c0tH47dkahefpLKEbB+xAZuLq7b4/IDHPl/n6VoXcyUQ2bypFlbSwvCr0y+bD4euTTqTJsPxQ==} dev: true /@types/node@10.17.60: resolution: {integrity: sha512-F0KIgDJfy2nA3zMLmWGKxcH2ZVEtCZXHHdOQs2gSaQ27+lNeEfGxzkIw90aXswATX7AZ33tahPbzy6KAfUreVw==} dev: true - /@types/node@16.18.50: - resolution: {integrity: sha512-OiDU5xRgYTJ203v4cprTs0RwOCd5c5Zjv+K5P8KSqfiCsB1W3LcamTUMcnQarpq5kOYbhHfSOgIEJvdPyb5xyw==} + /@types/node@16.18.55: + resolution: {integrity: sha512-Y1zz/LIuJek01+hlPNzzXQhmq/Z2BCP96j18MSXC0S0jSu/IG4FFxmBs7W4/lI2vPJ7foVfEB0hUVtnOjnCiTg==} dev: true /@types/parse-json@4.0.0: @@ -3837,8 +3668,8 @@ packages: resolution: {integrity: sha512-+68kP9yzs4LMp7VNh8gdzMSPZFL44MLGqiHWvttYJe+6qnuVr4Ek9wSBQoveqY/r+LwjCcU29kNVkidwim+kYA==} dev: true - /@types/prop-types@15.7.5: - resolution: {integrity: sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==} + /@types/prop-types@15.7.8: + resolution: {integrity: sha512-kMpQpfZKSCBqltAJwskgePRaYRFukDkm1oItcAbC3gNELR20XIBcN9VRgg4+m8DKsTfkWeA4m4Imp4DDuWy7FQ==} /@types/q@1.5.6: resolution: {integrity: sha512-IKjZ8RjTSwD4/YG+2gtj7BPFRB/lNbWKTiSj3M7U/TD2B7HfYCxvp2Zz6xA2WIY7pAuL1QOUPw8gQRbUrrq4fQ==} @@ -3848,86 +3679,86 @@ packages: resolution: {integrity: sha512-u95svzDlTysU5xecFNTgfFG5RUWu1A9P0VzgpcIiGZA9iraHOdSzcxMxQ55DyeRaGCSxQi7LxXDI4rzq/MYfdg==} dev: true - /@types/range-parser@1.2.4: - resolution: {integrity: sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==} + /@types/range-parser@1.2.5: + resolution: {integrity: sha512-xrO9OoVPqFuYyR/loIHjnbvvyRZREYKLjxV4+dY6v3FQR3stQ9ZxIGkaclF7YhI9hfjpuTbu14hZEy94qKLtOA==} dev: true - /@types/react-dom@18.2.7: - resolution: {integrity: sha512-GRaAEriuT4zp9N4p1i8BDBYmEyfo+xQ3yHjJU4eiK5NDa1RmUZG+unZABUTK4/Ox/M+GaHwb6Ow8rUITrtjszA==} + /@types/react-dom@18.2.8: + resolution: {integrity: sha512-bAIvO5lN/U8sPGvs1Xm61rlRHHaq5rp5N3kp9C+NJ/Q41P8iqjkXSu0+/qu8POsjH9pNWb0OYabFez7taP7omw==} dependencies: - '@types/react': 18.2.21 + '@types/react': 18.2.24 - /@types/react-transition-group@4.4.6: - resolution: {integrity: sha512-VnCdSxfcm08KjsJVQcfBmhEQAPnLB8G08hAxn39azX1qYBQ/5RVQuoHuKIcfKOdncuaUvEpFKFzEvbtIMsfVew==} + /@types/react-transition-group@4.4.7: + resolution: {integrity: sha512-ICCyBl5mvyqYp8Qeq9B5G/fyBSRC0zx3XM3sCC6KkcMsNeAHqXBKkmat4GqdJET5jtYUpZXrxI5flve5qhi2Eg==} dependencies: - '@types/react': 18.2.21 + '@types/react': 18.2.24 dev: false - /@types/react@18.2.21: - resolution: {integrity: sha512-neFKG/sBAwGxHgXiIxnbm3/AAVQ/cMRS93hvBpg8xYRbeQSPVABp9U2bRnPf0iI4+Ucdv3plSxKK+3CW2ENJxA==} + /@types/react@18.2.24: + resolution: {integrity: sha512-Ee0Jt4sbJxMu1iDcetZEIKQr99J1Zfb6D4F3qfUWoR1JpInkY1Wdg4WwCyBjL257D0+jGqSl1twBjV8iCaC0Aw==} dependencies: - '@types/prop-types': 15.7.5 - '@types/scheduler': 0.16.3 + '@types/prop-types': 15.7.8 + '@types/scheduler': 0.16.4 csstype: 3.1.2 /@types/resolve@1.17.1: resolution: {integrity: sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==} dependencies: - '@types/node': 16.18.50 + '@types/node': 16.18.55 dev: true /@types/retry@0.12.0: resolution: {integrity: sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==} dev: true - /@types/scheduler@0.16.3: - resolution: {integrity: sha512-5cJ8CB4yAx7BH1oMvdU0Jh9lrEXyPkar6F9G/ERswkCuvP4KQZfZkSjcMbAICCpQTN4OuZn8tz0HiKv9TGZgrQ==} + /@types/scheduler@0.16.4: + resolution: {integrity: sha512-2L9ifAGl7wmXwP4v3pN4p2FLhD0O1qsJpvKmNin5VA8+UvNVb447UDaAEV6UdrkA+m/Xs58U1RFps44x6TFsVQ==} - /@types/semver@7.5.2: - resolution: {integrity: sha512-7aqorHYgdNO4DM36stTiGO3DvKoex9TQRwsJU6vMaFGyqpBA1MNZkz+PG3gaNUPpTAOYhT1WR7M1JyA3fbS9Cw==} + /@types/semver@7.5.3: + resolution: {integrity: sha512-OxepLK9EuNEIPxWNME+C6WwbRAOOI2o2BaQEGzz5Lu2e4Z5eDnEo+/aVEDMIXywoJitJ7xWd641wrGLZdtwRyw==} dev: true - /@types/send@0.17.1: - resolution: {integrity: sha512-Cwo8LE/0rnvX7kIIa3QHCkcuF21c05Ayb0ZfxPiv0W8VRiZiNW/WuRupHKpqqGVGf7SUA44QSOUKaEd9lIrd/Q==} + /@types/send@0.17.2: + resolution: {integrity: sha512-aAG6yRf6r0wQ29bkS+x97BIs64ZLxeE/ARwyS6wrldMm3C1MdKwCcnnEwMC1slI8wuxJOpiUH9MioC0A0i+GJw==} dependencies: - '@types/mime': 1.3.2 - '@types/node': 16.18.50 + '@types/mime': 1.3.3 + '@types/node': 16.18.55 dev: true - /@types/serve-index@1.9.1: - resolution: {integrity: sha512-d/Hs3nWDxNL2xAczmOVZNj92YZCS6RGxfBPjKzuu/XirCgXdpKEb88dYNbrYGint6IVWLNP+yonwVAuRC0T2Dg==} + /@types/serve-index@1.9.2: + resolution: {integrity: sha512-asaEIoc6J+DbBKXtO7p2shWUpKacZOoMBEGBgPG91P8xhO53ohzHWGCs4ScZo5pQMf5ukQzVT9fhX1WzpHihig==} dependencies: - '@types/express': 4.17.17 + '@types/express': 4.17.18 dev: true - /@types/serve-static@1.15.2: - resolution: {integrity: sha512-J2LqtvFYCzaj8pVYKw8klQXrLLk7TBZmQ4ShlcdkELFKGwGMfevMLneMMRkMgZxotOD9wg497LpC7O8PcvAmfw==} + /@types/serve-static@1.15.3: + resolution: {integrity: sha512-yVRvFsEMrv7s0lGhzrggJjNOSmZCdgCjw9xWrPr/kNNLp6FaDfMC1KaYl3TSJ0c58bECwNBMoQrZJ8hA8E1eFg==} dependencies: - '@types/http-errors': 2.0.1 - '@types/mime': 3.0.1 - '@types/node': 16.18.50 + '@types/http-errors': 2.0.2 + '@types/mime': 3.0.2 + '@types/node': 16.18.55 dev: true - /@types/sockjs@0.3.33: - resolution: {integrity: sha512-f0KEEe05NvUnat+boPTZ0dgaLZ4SfSouXUgv5noUiefG2ajgKjmETo9ZJyuqsl7dfl2aHlLJUiki6B4ZYldiiw==} + /@types/sockjs@0.3.34: + resolution: {integrity: sha512-R+n7qBFnm/6jinlteC9DBL5dGiDGjWAvjo4viUanpnc/dG1y7uDoacXPIQ/PQEg1fI912SMHIa014ZjRpvDw4g==} dependencies: - '@types/node': 16.18.50 + '@types/node': 16.18.55 dev: true /@types/stack-utils@2.0.1: resolution: {integrity: sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==} dev: true - /@types/styled-components@5.1.27: - resolution: {integrity: sha512-oY9c1SdztRRF0QDQdwXEenfAjGN4WGUkaMpx5hvdTbYYqw01qoY2GrHi+kAR6SVofynzD6KbGoF5ITP0zh5pvg==} + /@types/styled-components@5.1.28: + resolution: {integrity: sha512-nu0VKNybkjvUqJAXWtRqKd7j3iRUl8GbYSTvZNuIBJcw/HUp1Y4QUXNLlj7gcnRV/t784JnHAlvRnSnE3nPbJA==} dependencies: - '@types/hoist-non-react-statics': 3.3.1 - '@types/react': 18.2.21 + '@types/hoist-non-react-statics': 3.3.2 + '@types/react': 18.2.24 csstype: 3.1.2 dev: true - /@types/testing-library__jest-dom@5.14.5: - resolution: {integrity: sha512-SBwbxYoyPIvxHbeHxTZX2Pe/74F/tX2/D3mMvzabdeJ25bBojfW0TyB8BHrbq/9zaaKICJZjLP+8r6AeZMFCuQ==} + /@types/testing-library__jest-dom@5.14.9: + resolution: {integrity: sha512-FSYhIjFlfOpGSRyVoMBMuS3ws5ehFQODymf3vlI7U1K8c7PHwWwFY7VREfmsuzHSOnoKs/9/Y983ayOs7eRzqw==} dependencies: '@types/jest': 27.5.2 dev: false @@ -3936,29 +3767,29 @@ packages: resolution: {integrity: sha512-IDaobHimLQhjwsQ/NMwRVfa/yL7L/wriQPMhw1ZJall0KX6E1oxk29XMDeilW5qTIg5aoiqf5Udy8U/51aNoQQ==} dev: true - /@types/ws@8.5.5: - resolution: {integrity: sha512-lwhs8hktwxSjf9UaZ9tG5M03PGogvFaH8gUgLNbN9HKIg0dvv6q+gkSuJ8HN4/VbyxkuLzCjlN7GquQ0gUJfIg==} + /@types/ws@8.5.6: + resolution: {integrity: sha512-8B5EO9jLVCy+B58PLHvLDuOD8DRVMgQzq8d55SjLCOn9kqGyqOvy27exVaTio1q1nX5zLu8/6N0n2ThSxOM6tg==} dependencies: - '@types/node': 16.18.50 + '@types/node': 16.18.55 dev: true - /@types/yargs-parser@21.0.0: - resolution: {integrity: sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==} + /@types/yargs-parser@21.0.1: + resolution: {integrity: sha512-axdPBuLuEJt0c4yI5OZssC19K2Mq1uKdrfZBzuxLvaztgqUtFYZUNw7lETExPYJR9jdEoIg4mb7RQKRQzOkeGQ==} dev: true - /@types/yargs@16.0.5: - resolution: {integrity: sha512-AxO/ADJOBFJScHbWhq2xAhlWP24rY4aCEG/NFaMvbT3X2MgRsLjhjQwsn0Zi5zn0LG9jUhCCZMeX9Dkuw6k+vQ==} + /@types/yargs@16.0.6: + resolution: {integrity: sha512-oTP7/Q13GSPrgcwEwdlnkoZSQ1Hg9THe644qq8PG6hhJzjZ3qj1JjEFPIwWV/IXVs5XGIVqtkNOS9kh63WIJ+A==} dependencies: - '@types/yargs-parser': 21.0.0 + '@types/yargs-parser': 21.0.1 dev: true - /@types/yargs@17.0.24: - resolution: {integrity: sha512-6i0aC7jV6QzQB8ne1joVZ0eSFIstHsCrobmOtghM11yGlH0j43FKL2UhWdELkyps0zuf7qVTUVCCR+tgSlyLLw==} + /@types/yargs@17.0.26: + resolution: {integrity: sha512-Y3vDy2X6zw/ZCumcwLpdhM5L7jmyGpmBCTYMHDLqT2IKVMYRRLdv6ZakA+wxhra6Z/3bwhNbNl9bDGXaFU+6rw==} dependencies: - '@types/yargs-parser': 21.0.0 + '@types/yargs-parser': 21.0.1 dev: true - /@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0)(eslint@8.49.0)(typescript@5.2.2): + /@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0)(eslint@8.50.0)(typescript@5.2.2): resolution: {integrity: sha512-TiZzBSJja/LbhNPvk6yc0JrX9XqhQ0hdh6M2svYfsHGejaKFIAGd9MQ+ERIMzLGlN/kZoYIgdxFV0PuljTKXag==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -3969,13 +3800,13 @@ packages: typescript: optional: true dependencies: - '@eslint-community/regexpp': 4.8.1 - '@typescript-eslint/parser': 5.62.0(eslint@8.49.0)(typescript@5.2.2) + '@eslint-community/regexpp': 4.9.0 + '@typescript-eslint/parser': 5.62.0(eslint@8.50.0)(typescript@5.2.2) '@typescript-eslint/scope-manager': 5.62.0 - '@typescript-eslint/type-utils': 5.62.0(eslint@8.49.0)(typescript@5.2.2) - '@typescript-eslint/utils': 5.62.0(eslint@8.49.0)(typescript@5.2.2) + '@typescript-eslint/type-utils': 5.62.0(eslint@8.50.0)(typescript@5.2.2) + '@typescript-eslint/utils': 5.62.0(eslint@8.50.0)(typescript@5.2.2) debug: 4.3.4(supports-color@5.5.0) - eslint: 8.49.0 + eslint: 8.50.0 graphemer: 1.4.0 ignore: 5.2.4 natural-compare-lite: 1.4.0 @@ -3986,8 +3817,8 @@ packages: - supports-color dev: true - /@typescript-eslint/eslint-plugin@6.7.0(@typescript-eslint/parser@6.7.0)(eslint@8.49.0)(typescript@5.2.2): - resolution: {integrity: sha512-gUqtknHm0TDs1LhY12K2NA3Rmlmp88jK9Tx8vGZMfHeNMLE3GH2e9TRub+y+SOjuYgtOmok+wt1AyDPZqxbNag==} + /@typescript-eslint/eslint-plugin@6.7.3(@typescript-eslint/parser@6.7.3)(eslint@8.50.0)(typescript@5.2.2): + resolution: {integrity: sha512-vntq452UHNltxsaaN+L9WyuMch8bMd9CqJ3zhzTPXXidwbf5mqqKCVXEuvRZUqLJSTLeWE65lQwyXsRGnXkCTA==} engines: {node: ^16.0.0 || >=18.0.0} peerDependencies: '@typescript-eslint/parser': ^6.0.0 || ^6.0.0-alpha @@ -3997,14 +3828,14 @@ packages: typescript: optional: true dependencies: - '@eslint-community/regexpp': 4.8.1 - '@typescript-eslint/parser': 6.7.0(eslint@8.49.0)(typescript@5.2.2) - '@typescript-eslint/scope-manager': 6.7.0 - '@typescript-eslint/type-utils': 6.7.0(eslint@8.49.0)(typescript@5.2.2) - '@typescript-eslint/utils': 6.7.0(eslint@8.49.0)(typescript@5.2.2) - '@typescript-eslint/visitor-keys': 6.7.0 + '@eslint-community/regexpp': 4.9.0 + '@typescript-eslint/parser': 6.7.3(eslint@8.50.0)(typescript@5.2.2) + '@typescript-eslint/scope-manager': 6.7.3 + '@typescript-eslint/type-utils': 6.7.3(eslint@8.50.0)(typescript@5.2.2) + '@typescript-eslint/utils': 6.7.3(eslint@8.50.0)(typescript@5.2.2) + '@typescript-eslint/visitor-keys': 6.7.3 debug: 4.3.4(supports-color@5.5.0) - eslint: 8.49.0 + eslint: 8.50.0 graphemer: 1.4.0 ignore: 5.2.4 natural-compare: 1.4.0 @@ -4015,20 +3846,20 @@ packages: - supports-color dev: true - /@typescript-eslint/experimental-utils@5.62.0(eslint@8.49.0)(typescript@5.2.2): + /@typescript-eslint/experimental-utils@5.62.0(eslint@8.50.0)(typescript@5.2.2): resolution: {integrity: sha512-RTXpeB3eMkpoclG3ZHft6vG/Z30azNHuqY6wKPBHlVMZFuEvrtlEDe8gMqDb+SO+9hjC/pLekeSCryf9vMZlCw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 dependencies: - '@typescript-eslint/utils': 5.62.0(eslint@8.49.0)(typescript@5.2.2) - eslint: 8.49.0 + '@typescript-eslint/utils': 5.62.0(eslint@8.50.0)(typescript@5.2.2) + eslint: 8.50.0 transitivePeerDependencies: - supports-color - typescript dev: true - /@typescript-eslint/parser@5.62.0(eslint@8.49.0)(typescript@5.2.2): + /@typescript-eslint/parser@5.62.0(eslint@8.50.0)(typescript@5.2.2): resolution: {integrity: sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -4042,14 +3873,14 @@ packages: '@typescript-eslint/types': 5.62.0 '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.2.2) debug: 4.3.4(supports-color@5.5.0) - eslint: 8.49.0 + eslint: 8.50.0 typescript: 5.2.2 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/parser@6.7.0(eslint@8.49.0)(typescript@5.2.2): - resolution: {integrity: sha512-jZKYwqNpNm5kzPVP5z1JXAuxjtl2uG+5NpaMocFPTNC2EdYIgbXIPImObOkhbONxtFTTdoZstLZefbaK+wXZng==} + /@typescript-eslint/parser@6.7.3(eslint@8.50.0)(typescript@5.2.2): + resolution: {integrity: sha512-TlutE+iep2o7R8Lf+yoer3zU6/0EAUc8QIBB3GYBc1KGz4c4TRm83xwXUZVPlZ6YCLss4r77jbu6j3sendJoiQ==} engines: {node: ^16.0.0 || >=18.0.0} peerDependencies: eslint: ^7.0.0 || ^8.0.0 @@ -4058,12 +3889,12 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/scope-manager': 6.7.0 - '@typescript-eslint/types': 6.7.0 - '@typescript-eslint/typescript-estree': 6.7.0(typescript@5.2.2) - '@typescript-eslint/visitor-keys': 6.7.0 + '@typescript-eslint/scope-manager': 6.7.3 + '@typescript-eslint/types': 6.7.3 + '@typescript-eslint/typescript-estree': 6.7.3(typescript@5.2.2) + '@typescript-eslint/visitor-keys': 6.7.3 debug: 4.3.4(supports-color@5.5.0) - eslint: 8.49.0 + eslint: 8.50.0 typescript: 5.2.2 transitivePeerDependencies: - supports-color @@ -4077,15 +3908,15 @@ packages: '@typescript-eslint/visitor-keys': 5.62.0 dev: true - /@typescript-eslint/scope-manager@6.7.0: - resolution: {integrity: sha512-lAT1Uau20lQyjoLUQ5FUMSX/dS07qux9rYd5FGzKz/Kf8W8ccuvMyldb8hadHdK/qOI7aikvQWqulnEq2nCEYA==} + /@typescript-eslint/scope-manager@6.7.3: + resolution: {integrity: sha512-wOlo0QnEou9cHO2TdkJmzF7DFGvAKEnB82PuPNHpT8ZKKaZu6Bm63ugOTn9fXNJtvuDPanBc78lGUGGytJoVzQ==} engines: {node: ^16.0.0 || >=18.0.0} dependencies: - '@typescript-eslint/types': 6.7.0 - '@typescript-eslint/visitor-keys': 6.7.0 + '@typescript-eslint/types': 6.7.3 + '@typescript-eslint/visitor-keys': 6.7.3 dev: true - /@typescript-eslint/type-utils@5.62.0(eslint@8.49.0)(typescript@5.2.2): + /@typescript-eslint/type-utils@5.62.0(eslint@8.50.0)(typescript@5.2.2): resolution: {integrity: sha512-xsSQreu+VnfbqQpW5vnCJdq1Z3Q0U31qiWmRhr98ONQmcp/yhiPJFPq8MXiJVLiksmOKSjIldZzkebzHuCGzew==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -4096,17 +3927,17 @@ packages: optional: true dependencies: '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.2.2) - '@typescript-eslint/utils': 5.62.0(eslint@8.49.0)(typescript@5.2.2) + '@typescript-eslint/utils': 5.62.0(eslint@8.50.0)(typescript@5.2.2) debug: 4.3.4(supports-color@5.5.0) - eslint: 8.49.0 + eslint: 8.50.0 tsutils: 3.21.0(typescript@5.2.2) typescript: 5.2.2 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/type-utils@6.7.0(eslint@8.49.0)(typescript@5.2.2): - resolution: {integrity: sha512-f/QabJgDAlpSz3qduCyQT0Fw7hHpmhOzY/Rv6zO3yO+HVIdPfIWhrQoAyG+uZVtWAIS85zAyzgAFfyEr+MgBpg==} + /@typescript-eslint/type-utils@6.7.3(eslint@8.50.0)(typescript@5.2.2): + resolution: {integrity: sha512-Fc68K0aTDrKIBvLnKTZ5Pf3MXK495YErrbHb1R6aTpfK5OdSFj0rVN7ib6Tx6ePrZ2gsjLqr0s98NG7l96KSQw==} engines: {node: ^16.0.0 || >=18.0.0} peerDependencies: eslint: ^7.0.0 || ^8.0.0 @@ -4115,10 +3946,10 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/typescript-estree': 6.7.0(typescript@5.2.2) - '@typescript-eslint/utils': 6.7.0(eslint@8.49.0)(typescript@5.2.2) + '@typescript-eslint/typescript-estree': 6.7.3(typescript@5.2.2) + '@typescript-eslint/utils': 6.7.3(eslint@8.50.0)(typescript@5.2.2) debug: 4.3.4(supports-color@5.5.0) - eslint: 8.49.0 + eslint: 8.50.0 ts-api-utils: 1.0.3(typescript@5.2.2) typescript: 5.2.2 transitivePeerDependencies: @@ -4130,8 +3961,8 @@ packages: engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dev: true - /@typescript-eslint/types@6.7.0: - resolution: {integrity: sha512-ihPfvOp7pOcN/ysoj0RpBPOx3HQTJTrIN8UZK+WFd3/iDeFHHqeyYxa4hQk4rMhsz9H9mXpR61IzwlBVGXtl9Q==} + /@typescript-eslint/types@6.7.3: + resolution: {integrity: sha512-4g+de6roB2NFcfkZb439tigpAMnvEIg3rIjWQ+EM7IBaYt/CdJt6em9BJ4h4UpdgaBWdmx2iWsafHTrqmgIPNw==} engines: {node: ^16.0.0 || >=18.0.0} dev: true @@ -4156,8 +3987,8 @@ packages: - supports-color dev: true - /@typescript-eslint/typescript-estree@6.7.0(typescript@5.2.2): - resolution: {integrity: sha512-dPvkXj3n6e9yd/0LfojNU8VMUGHWiLuBZvbM6V6QYD+2qxqInE7J+J/ieY2iGwR9ivf/R/haWGkIj04WVUeiSQ==} + /@typescript-eslint/typescript-estree@6.7.3(typescript@5.2.2): + resolution: {integrity: sha512-YLQ3tJoS4VxLFYHTw21oe1/vIZPRqAO91z6Uv0Ss2BKm/Ag7/RVQBcXTGcXhgJMdA4U+HrKuY5gWlJlvoaKZ5g==} engines: {node: ^16.0.0 || >=18.0.0} peerDependencies: typescript: '*' @@ -4165,8 +3996,8 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/types': 6.7.0 - '@typescript-eslint/visitor-keys': 6.7.0 + '@typescript-eslint/types': 6.7.3 + '@typescript-eslint/visitor-keys': 6.7.3 debug: 4.3.4(supports-color@5.5.0) globby: 11.1.0 is-glob: 4.0.3 @@ -4177,19 +4008,19 @@ packages: - supports-color dev: true - /@typescript-eslint/utils@5.62.0(eslint@8.49.0)(typescript@5.2.2): + /@typescript-eslint/utils@5.62.0(eslint@8.50.0)(typescript@5.2.2): resolution: {integrity: sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@8.49.0) - '@types/json-schema': 7.0.12 - '@types/semver': 7.5.2 + '@eslint-community/eslint-utils': 4.4.0(eslint@8.50.0) + '@types/json-schema': 7.0.13 + '@types/semver': 7.5.3 '@typescript-eslint/scope-manager': 5.62.0 '@typescript-eslint/types': 5.62.0 '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.2.2) - eslint: 8.49.0 + eslint: 8.50.0 eslint-scope: 5.1.1 semver: 7.5.4 transitivePeerDependencies: @@ -4197,19 +4028,19 @@ packages: - typescript dev: true - /@typescript-eslint/utils@6.7.0(eslint@8.49.0)(typescript@5.2.2): - resolution: {integrity: sha512-MfCq3cM0vh2slSikQYqK2Gq52gvOhe57vD2RM3V4gQRZYX4rDPnKLu5p6cm89+LJiGlwEXU8hkYxhqqEC/V3qA==} + /@typescript-eslint/utils@6.7.3(eslint@8.50.0)(typescript@5.2.2): + resolution: {integrity: sha512-vzLkVder21GpWRrmSR9JxGZ5+ibIUSudXlW52qeKpzUEQhRSmyZiVDDj3crAth7+5tmN1ulvgKaCU2f/bPRCzg==} engines: {node: ^16.0.0 || >=18.0.0} peerDependencies: eslint: ^7.0.0 || ^8.0.0 dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@8.49.0) - '@types/json-schema': 7.0.12 - '@types/semver': 7.5.2 - '@typescript-eslint/scope-manager': 6.7.0 - '@typescript-eslint/types': 6.7.0 - '@typescript-eslint/typescript-estree': 6.7.0(typescript@5.2.2) - eslint: 8.49.0 + '@eslint-community/eslint-utils': 4.4.0(eslint@8.50.0) + '@types/json-schema': 7.0.13 + '@types/semver': 7.5.3 + '@typescript-eslint/scope-manager': 6.7.3 + '@typescript-eslint/types': 6.7.3 + '@typescript-eslint/typescript-estree': 6.7.3(typescript@5.2.2) + eslint: 8.50.0 semver: 7.5.4 transitivePeerDependencies: - supports-color @@ -4224,25 +4055,26 @@ packages: eslint-visitor-keys: 3.4.3 dev: true - /@typescript-eslint/visitor-keys@6.7.0: - resolution: {integrity: sha512-/C1RVgKFDmGMcVGeD8HjKv2bd72oI1KxQDeY8uc66gw9R0OK0eMq48cA+jv9/2Ag6cdrsUGySm1yzYmfz0hxwQ==} + /@typescript-eslint/visitor-keys@6.7.3: + resolution: {integrity: sha512-HEVXkU9IB+nk9o63CeICMHxFWbHWr3E1mpilIQBe9+7L/lH97rleFLVtYsfnWB+JVMaiFnEaxvknvmIzX+CqVg==} engines: {node: ^16.0.0 || >=18.0.0} dependencies: - '@typescript-eslint/types': 6.7.0 + '@typescript-eslint/types': 6.7.3 eslint-visitor-keys: 3.4.3 dev: true - /@vitejs/plugin-react@4.0.4(vite@4.4.9): - resolution: {integrity: sha512-7wU921ABnNYkETiMaZy7XqpueMnpu5VxvVps13MjmCo+utBdD79sZzrApHawHtVX66cCJQQTXFcjH0y9dSUK8g==} + /@vitejs/plugin-react@4.1.0(vite@4.4.9): + resolution: {integrity: sha512-rM0SqazU9iqPUraQ2JlIvReeaxOoRj6n+PzB1C0cBzIbd8qP336nC39/R9yPi3wVcah7E7j/kdU1uCUqMEU4OQ==} engines: {node: ^14.18.0 || >=16.0.0} peerDependencies: vite: ^4.2.0 dependencies: - '@babel/core': 7.22.15 - '@babel/plugin-transform-react-jsx-self': 7.22.5(@babel/core@7.22.15) - '@babel/plugin-transform-react-jsx-source': 7.22.5(@babel/core@7.22.15) + '@babel/core': 7.23.0 + '@babel/plugin-transform-react-jsx-self': 7.22.5(@babel/core@7.23.0) + '@babel/plugin-transform-react-jsx-source': 7.22.5(@babel/core@7.23.0) + '@types/babel__core': 7.20.2 react-refresh: 0.14.0 - vite: 4.4.9(@types/node@16.18.50) + vite: 4.4.9(@types/node@16.18.55) transitivePeerDependencies: - supports-color dev: true @@ -4435,7 +4267,7 @@ packages: resolution: {integrity: sha512-Bo0fiW8F+kI4f8zEm8YXIDkGNi+aXaQPxqDijU7hY+1ETACbvFnNCxssspgAwHBy9RpFlcXMmjcq+LImUOhaqQ==} engines: {node: '>=8', npm: '>=5'} dependencies: - tslib: 2.5.0 + tslib: 2.6.2 dev: false /agent-base@6.0.2: @@ -4564,7 +4396,7 @@ packages: /aria-query@5.1.3: resolution: {integrity: sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==} dependencies: - deep-equal: 2.2.1 + deep-equal: 2.2.2 dev: false /aria-query@5.3.0: @@ -4592,7 +4424,7 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.2.1 - es-abstract: 1.22.1 + es-abstract: 1.22.2 get-intrinsic: 1.2.1 is-string: 1.0.7 dev: true @@ -4608,7 +4440,7 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.2.1 - es-abstract: 1.22.1 + es-abstract: 1.22.2 es-shim-unscopables: 1.0.0 get-intrinsic: 1.2.1 dev: true @@ -4619,7 +4451,7 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.2.1 - es-abstract: 1.22.1 + es-abstract: 1.22.2 es-shim-unscopables: 1.0.0 dev: true @@ -4629,7 +4461,7 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.2.1 - es-abstract: 1.22.1 + es-abstract: 1.22.2 es-shim-unscopables: 1.0.0 dev: true @@ -4639,7 +4471,7 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.2.1 - es-abstract: 1.22.1 + es-abstract: 1.22.2 es-array-method-boxes-properly: 1.0.0 is-string: 1.0.7 dev: true @@ -4649,7 +4481,7 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.2.1 - es-abstract: 1.22.1 + es-abstract: 1.22.2 es-shim-unscopables: 1.0.0 get-intrinsic: 1.2.1 dev: true @@ -4661,7 +4493,7 @@ packages: array-buffer-byte-length: 1.0.0 call-bind: 1.0.2 define-properties: 1.2.1 - es-abstract: 1.22.1 + es-abstract: 1.22.2 get-intrinsic: 1.2.1 is-array-buffer: 3.0.2 is-shared-array-buffer: 1.0.2 @@ -4694,35 +4526,19 @@ packages: engines: {node: '>= 4.0.0'} dev: true - /autoprefixer@10.4.14(postcss@8.4.29): - resolution: {integrity: sha512-FQzyfOsTlwVzjHxKEqRIAdJx9niO6VCBCoEwax/VLSoQF29ggECcPuBqUMZ+u8jCZOPSy8b8/8KnuFbp0SaFZQ==} + /autoprefixer@10.4.16(postcss@8.4.31): + resolution: {integrity: sha512-7vd3UC6xKp0HLfua5IjZlcXvGAGy7cBAXTg2lyQ/8WpNhd6SiZ8Be+xm3FyBSYJx5GKcpRCzBh7RH4/0dnY+uQ==} engines: {node: ^10 || ^12 || >=14} hasBin: true peerDependencies: postcss: ^8.1.0 dependencies: - browserslist: 4.21.5 - caniuse-lite: 1.0.30001486 - fraction.js: 4.2.0 - normalize-range: 0.1.2 - picocolors: 1.0.0 - postcss: 8.4.29 - postcss-value-parser: 4.2.0 - dev: true - - /autoprefixer@10.4.15(postcss@8.4.29): - resolution: {integrity: sha512-KCuPB8ZCIqFdA4HwKXsvz7j6gvSDNhDP7WnUjBleRkKjPdvCmHFuQ77ocavI8FT6NdvlBnE2UFr2H4Mycn8Vew==} - engines: {node: ^10 || ^12 || >=14} - hasBin: true - peerDependencies: - postcss: ^8.1.0 - dependencies: - browserslist: 4.21.10 - caniuse-lite: 1.0.30001534 + browserslist: 4.22.1 + caniuse-lite: 1.0.30001541 fraction.js: 4.3.6 normalize-range: 0.1.2 picocolors: 1.0.0 - postcss: 8.4.29 + postcss: 8.4.31 postcss-value-parser: 4.2.0 dev: true @@ -4730,8 +4546,8 @@ packages: resolution: {integrity: sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==} engines: {node: '>= 0.4'} - /axe-core@4.8.1: - resolution: {integrity: sha512-9l850jDDPnKq48nbad8SiEelCv4OrUWrKab/cPj0GScVg6cb6NbCCt/Ulk26QEq5jP9NnGr04Bit1BHyV6r5CQ==} + /axe-core@4.8.2: + resolution: {integrity: sha512-/dlp0fxyM3R8YW7MFzaHWXrf4zzbr0vaYb23VBFCl83R7nWNPg/yaQw2Dc8jzCMmDVLhSdzH8MjrsuIUuvX+6g==} engines: {node: '>=4'} dev: true @@ -4741,18 +4557,18 @@ packages: dequal: 2.0.3 dev: true - /babel-jest@27.5.1(@babel/core@7.22.17): + /babel-jest@27.5.1(@babel/core@7.23.0): resolution: {integrity: sha512-cdQ5dXjGRd0IBRATiQ4mZGlGlRE8kJpjPOixdNRdT+m3UcNqmYWN6rK6nvtXYfY3D76cb8s/O1Ss8ea24PIwcg==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} peerDependencies: '@babel/core': ^7.8.0 dependencies: - '@babel/core': 7.22.17 + '@babel/core': 7.23.0 '@jest/transform': 27.5.1 '@jest/types': 27.5.1 - '@types/babel__core': 7.20.1 + '@types/babel__core': 7.20.2 babel-plugin-istanbul: 6.1.1 - babel-preset-jest: 27.5.1(@babel/core@7.22.17) + babel-preset-jest: 27.5.1(@babel/core@7.23.0) chalk: 4.1.2 graceful-fs: 4.2.11 slash: 3.0.0 @@ -4760,14 +4576,14 @@ packages: - supports-color dev: true - /babel-loader@8.3.0(@babel/core@7.22.17)(webpack@5.88.2): + /babel-loader@8.3.0(@babel/core@7.23.0)(webpack@5.88.2): resolution: {integrity: sha512-H8SvsMF+m9t15HNLMipppzkC+Y2Yq+v3SonZyU70RBL/h1gxPkH08Ot8pEE9Z4Kd+czyWJClmFS8qzIP9OZ04Q==} engines: {node: '>= 8.9'} peerDependencies: '@babel/core': ^7.0.0 webpack: '>=2' dependencies: - '@babel/core': 7.22.17 + '@babel/core': 7.23.0 find-cache-dir: 3.3.2 loader-utils: 2.0.4 make-dir: 3.1.0 @@ -4793,133 +4609,131 @@ packages: engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: '@babel/template': 7.22.15 - '@babel/types': 7.22.17 - '@types/babel__core': 7.20.1 - '@types/babel__traverse': 7.20.1 + '@babel/types': 7.23.0 + '@types/babel__core': 7.20.2 + '@types/babel__traverse': 7.20.2 dev: true /babel-plugin-macros@3.1.0: resolution: {integrity: sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==} engines: {node: '>=10', npm: '>=6'} dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.23.1 cosmiconfig: 7.1.0 - resolve: 1.22.2 + resolve: 1.22.6 - /babel-plugin-named-asset-import@0.3.8(@babel/core@7.22.17): + /babel-plugin-named-asset-import@0.3.8(@babel/core@7.23.0): resolution: {integrity: sha512-WXiAc++qo7XcJ1ZnTYGtLxmBCVbddAml3CEXgWaBzNzLNoxtQ8AiGEFDMOhot9XjTCQbvP5E77Fj9Gk924f00Q==} peerDependencies: '@babel/core': ^7.1.0 dependencies: - '@babel/core': 7.22.17 + '@babel/core': 7.23.0 dev: true - /babel-plugin-polyfill-corejs2@0.4.5(@babel/core@7.22.17): + /babel-plugin-polyfill-corejs2@0.4.5(@babel/core@7.23.0): 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.22.17 - '@babel/helper-define-polyfill-provider': 0.4.2(@babel/core@7.22.17) + '@babel/compat-data': 7.22.20 + '@babel/core': 7.23.0 + '@babel/helper-define-polyfill-provider': 0.4.2(@babel/core@7.23.0) semver: 6.3.1 transitivePeerDependencies: - supports-color dev: true - /babel-plugin-polyfill-corejs3@0.8.3(@babel/core@7.22.17): - resolution: {integrity: sha512-z41XaniZL26WLrvjy7soabMXrfPWARN25PZoriDEiLMxAp50AUW3t35BGQUMg5xK3UrpVTtagIDklxYa+MhiNA==} + /babel-plugin-polyfill-corejs3@0.8.4(@babel/core@7.23.0): + resolution: {integrity: sha512-9l//BZZsPR+5XjyJMPtZSK4jv0BsTO1zDac2GC6ygx9WLGlcsnRd1Co0B2zT5fF5Ic6BZy+9m3HNZ3QcOeDKfg==} peerDependencies: '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 dependencies: - '@babel/core': 7.22.17 - '@babel/helper-define-polyfill-provider': 0.4.2(@babel/core@7.22.17) + '@babel/core': 7.23.0 + '@babel/helper-define-polyfill-provider': 0.4.2(@babel/core@7.23.0) core-js-compat: 3.32.2 transitivePeerDependencies: - supports-color dev: true - /babel-plugin-polyfill-regenerator@0.5.2(@babel/core@7.22.17): + /babel-plugin-polyfill-regenerator@0.5.2(@babel/core@7.23.0): resolution: {integrity: sha512-tAlOptU0Xj34V1Y2PNTL4Y0FOJMDB6bZmoW39FeCQIhigGLkqu3Fj6uiXpxIf6Ij274ENdYx64y6Au+ZKlb1IA==} peerDependencies: '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 dependencies: - '@babel/core': 7.22.17 - '@babel/helper-define-polyfill-provider': 0.4.2(@babel/core@7.22.17) + '@babel/core': 7.23.0 + '@babel/helper-define-polyfill-provider': 0.4.2(@babel/core@7.23.0) transitivePeerDependencies: - supports-color dev: true - /babel-plugin-styled-components@2.1.1(styled-components@5.3.11): - resolution: {integrity: sha512-c8lJlszObVQPguHkI+akXv8+Jgb9Ccujx0EetL7oIvwU100LxO6XAGe45qry37wUL40a5U9f23SYrivro2XKhA==} + /babel-plugin-styled-components@2.1.4(@babel/core@7.23.0)(styled-components@5.3.11): + resolution: {integrity: sha512-Xgp9g+A/cG47sUyRwwYxGM4bR/jDRg5N6it/8+HxCnbT5XNKSKDT9xm4oag/osgqjC2It/vH0yXsomOG6k558g==} peerDependencies: styled-components: '>= 2' dependencies: '@babel/helper-annotate-as-pure': 7.22.5 '@babel/helper-module-imports': 7.22.15 - babel-plugin-syntax-jsx: 6.18.0 + '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.23.0) lodash: 4.17.21 picomatch: 2.3.1 - styled-components: 5.3.11(react-dom@18.2.0)(react-is@18.2.0)(react@18.2.0) - dev: false - - /babel-plugin-syntax-jsx@6.18.0: - resolution: {integrity: sha512-qrPaCSo9c8RHNRHIotaufGbuOBN8rtdC4QrrFFc43vyWCCz7Kl7GL1PGaXtMGQZUXrkCjNEgxDfmAuAabr/rlw==} + styled-components: 5.3.11(@babel/core@7.23.0)(react-dom@18.2.0)(react-is@18.2.0)(react@18.2.0) + transitivePeerDependencies: + - '@babel/core' dev: false /babel-plugin-transform-react-remove-prop-types@0.4.24: resolution: {integrity: sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA==} dev: true - /babel-preset-current-node-syntax@1.0.1(@babel/core@7.22.17): + /babel-preset-current-node-syntax@1.0.1(@babel/core@7.23.0): resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.22.17 - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.22.17) - '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.22.17) - '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.22.17) - '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.22.17) - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.22.17) - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.22.17) - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.22.17) - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.22.17) - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.22.17) - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.22.17) - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.22.17) - '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.22.17) + '@babel/core': 7.23.0 + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.0) + '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.23.0) + '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.23.0) + '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.23.0) + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.0) + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.0) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.0) + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.0) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.0) + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.0) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.0) + '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.23.0) dev: true - /babel-preset-jest@27.5.1(@babel/core@7.22.17): + /babel-preset-jest@27.5.1(@babel/core@7.23.0): resolution: {integrity: sha512-Nptf2FzlPCWYuJg41HBqXVT8ym6bXOevuCTbhxlUpjwtysGaIWFvDEjp4y+G7fl13FgOdjs7P/DmErqH7da0Ag==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.22.17 + '@babel/core': 7.23.0 babel-plugin-jest-hoist: 27.5.1 - babel-preset-current-node-syntax: 1.0.1(@babel/core@7.22.17) + babel-preset-current-node-syntax: 1.0.1(@babel/core@7.23.0) dev: true /babel-preset-react-app@10.0.1: resolution: {integrity: sha512-b0D9IZ1WhhCWkrTXyFuIIgqGzSkRIH5D5AmB0bXbzYAB1OBAwHcUeyWW2LorutLWF5btNo/N7r/cIdmvvKJlYg==} dependencies: - '@babel/core': 7.22.17 - '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.22.17) - '@babel/plugin-proposal-decorators': 7.22.15(@babel/core@7.22.17) - '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.22.17) - '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.22.17) - '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.22.17) - '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.22.17) - '@babel/plugin-proposal-private-property-in-object': 7.21.11(@babel/core@7.22.17) - '@babel/plugin-transform-flow-strip-types': 7.22.5(@babel/core@7.22.17) - '@babel/plugin-transform-react-display-name': 7.22.5(@babel/core@7.22.17) - '@babel/plugin-transform-runtime': 7.22.15(@babel/core@7.22.17) - '@babel/preset-env': 7.22.15(@babel/core@7.22.17) - '@babel/preset-react': 7.22.15(@babel/core@7.22.17) - '@babel/preset-typescript': 7.22.15(@babel/core@7.22.17) - '@babel/runtime': 7.22.15 + '@babel/core': 7.23.0 + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.23.0) + '@babel/plugin-proposal-decorators': 7.23.0(@babel/core@7.23.0) + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.23.0) + '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.23.0) + '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.23.0) + '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.23.0) + '@babel/plugin-proposal-private-property-in-object': 7.21.11(@babel/core@7.23.0) + '@babel/plugin-transform-flow-strip-types': 7.22.5(@babel/core@7.23.0) + '@babel/plugin-transform-react-display-name': 7.22.5(@babel/core@7.23.0) + '@babel/plugin-transform-runtime': 7.22.15(@babel/core@7.23.0) + '@babel/preset-env': 7.22.20(@babel/core@7.23.0) + '@babel/preset-react': 7.22.15(@babel/core@7.23.0) + '@babel/preset-typescript': 7.23.0(@babel/core@7.23.0) + '@babel/runtime': 7.23.1 babel-plugin-macros: 3.1.0 babel-plugin-transform-react-remove-prop-types: 0.4.24 transitivePeerDependencies: @@ -5015,27 +4829,15 @@ packages: resolution: {integrity: sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==} dev: true - /browserslist@4.21.10: - resolution: {integrity: sha512-bipEBdZfVH5/pwrvqc+Ub0kUPVfGUhlKxbvfD+z1BDnPEO/X98ruXGA1WP5ASpAFKan7Qr6j736IacbZQuAlKQ==} + /browserslist@4.22.1: + resolution: {integrity: sha512-FEVc202+2iuClEhZhrWy6ZiAcRLvNMyYcxZ8raemul1DYVOVdFsbqckWLdsixQZCpJlwe77Z3UTalE7jsjnKfQ==} engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} hasBin: true dependencies: - caniuse-lite: 1.0.30001527 - electron-to-chromium: 1.4.508 + caniuse-lite: 1.0.30001541 + electron-to-chromium: 1.4.537 node-releases: 2.0.13 - update-browserslist-db: 1.0.11(browserslist@4.21.10) - dev: true - - /browserslist@4.21.5: - resolution: {integrity: sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w==} - engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} - hasBin: true - dependencies: - caniuse-lite: 1.0.30001486 - electron-to-chromium: 1.4.391 - node-releases: 2.0.10 - update-browserslist-db: 1.0.11(browserslist@4.21.5) - dev: true + update-browserslist-db: 1.0.13(browserslist@4.22.1) /bser@2.1.1: resolution: {integrity: sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==} @@ -5066,7 +4868,7 @@ packages: resolution: {integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==} dependencies: function-bind: 1.1.1 - get-intrinsic: 1.2.0 + get-intrinsic: 1.2.1 /callsites@3.1.0: resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} @@ -5101,23 +4903,14 @@ packages: /caniuse-api@3.0.0: resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==} dependencies: - browserslist: 4.21.10 - caniuse-lite: 1.0.30001534 + browserslist: 4.22.1 + caniuse-lite: 1.0.30001541 lodash.memoize: 4.1.2 lodash.uniq: 4.5.0 dev: true - /caniuse-lite@1.0.30001486: - resolution: {integrity: sha512-uv7/gXuHi10Whlj0pp5q/tsK/32J2QSqVRKQhs2j8VsDCjgyruAh/eEXHF822VqO9yT6iZKw3nRwZRSPBE9OQg==} - dev: true - - /caniuse-lite@1.0.30001527: - resolution: {integrity: sha512-YkJi7RwPgWtXVSgK4lG9AHH57nSzvvOp9MesgXmw4Q7n0C3H04L0foHqfxcmSAm5AcWb8dW9AYj2tR7/5GnddQ==} - dev: true - - /caniuse-lite@1.0.30001534: - resolution: {integrity: sha512-vlPVrhsCS7XaSh2VvWluIQEzVhefrUQcEsQWSS5A5V+dM07uv1qHeQzAOTGIMy9i3e9bH15+muvI/UHojVgS/Q==} - dev: true + /caniuse-lite@1.0.30001541: + resolution: {integrity: sha512-bLOsqxDgTqUBkzxbNlSBt8annkDpQB9NdzdTbO2ooJ+eC/IQcvDspDc058g84ejCelF7vHUx57KIOjEecOHXaw==} /case-sensitive-paths-webpack-plugin@2.4.0: resolution: {integrity: sha512-roIFONhcxog0JSSWbvVAh3OocukmSgpqOH6YpMkCvav/ySIV3JKg4Dc8vYtQjYi/UxpNE36r/9v+VqTQqgkYmw==} @@ -5364,6 +5157,9 @@ packages: /convert-source-map@1.9.0: resolution: {integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==} + /convert-source-map@2.0.0: + resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==} + /cookie-signature@1.0.6: resolution: {integrity: sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==} dev: true @@ -5376,7 +5172,7 @@ packages: /core-js-compat@3.32.2: resolution: {integrity: sha512-+GjlguTDINOijtVRUxrQOv3kfu9rl+qPNdX2LTbJ/ZyVTuxK+ksVSAGX1nHstu4hrv1En/uPTtWgq2gI5wt4AQ==} dependencies: - browserslist: 4.21.10 + browserslist: 4.22.1 dev: true /core-js-pure@3.32.2: @@ -5393,7 +5189,7 @@ packages: resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==} dev: true - /cosmiconfig-typescript-loader@1.0.9(@types/node@16.18.50)(cosmiconfig@7.1.0)(typescript@5.2.2): + /cosmiconfig-typescript-loader@1.0.9(@types/node@16.18.55)(cosmiconfig@7.1.0)(typescript@5.2.2): resolution: {integrity: sha512-tRuMRhxN4m1Y8hP9SNYfz7jRwt8lZdWxdjg/ohg5esKmsndJIn4yT96oJVcf5x0eA11taXl+sIp+ielu529k6g==} engines: {node: '>=12', npm: '>=6'} peerDependencies: @@ -5401,9 +5197,9 @@ packages: cosmiconfig: '>=7' typescript: '>=3' dependencies: - '@types/node': 16.18.50 + '@types/node': 16.18.55 cosmiconfig: 7.1.0 - ts-node: 10.9.1(@types/node@16.18.50)(typescript@5.2.2) + ts-node: 10.9.1(@types/node@16.18.55)(typescript@5.2.2) typescript: 5.2.2 transitivePeerDependencies: - '@swc/core' @@ -5431,8 +5227,8 @@ packages: path-type: 4.0.0 yaml: 1.10.2 - /cosmiconfig@8.3.4(typescript@5.2.2): - resolution: {integrity: sha512-SF+2P8+o/PTV05rgsAjDzL4OFdVXAulSfC/L19VaeVT7+tpOOSscCt2QLxDZ+CLxF2WOiq6y1K5asvs8qUJT/Q==} + /cosmiconfig@8.3.6(typescript@5.2.2): + resolution: {integrity: sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==} engines: {node: '>=14'} peerDependencies: typescript: '>=4.9.5' @@ -5469,14 +5265,14 @@ packages: engines: {node: '>=8'} dev: true - /css-blank-pseudo@3.0.3(postcss@8.4.29): + /css-blank-pseudo@3.0.3(postcss@8.4.31): resolution: {integrity: sha512-VS90XWtsHGqoM0t4KpH053c4ehxZ2E6HtGI7x68YFV0pTo/QmkV/YFA+NnlvK8guxZVNWGQhVNJGC39Q8XF4OQ==} engines: {node: ^12 || ^14 || >=16} hasBin: true peerDependencies: postcss: ^8.4 dependencies: - postcss: 8.4.29 + postcss: 8.4.31 postcss-selector-parser: 6.0.13 dev: true @@ -5485,23 +5281,23 @@ packages: engines: {node: '>=4'} dev: false - /css-declaration-sorter@6.4.1(postcss@8.4.29): + /css-declaration-sorter@6.4.1(postcss@8.4.31): resolution: {integrity: sha512-rtdthzxKuyq6IzqX6jEcIzQF/YqccluefyCYheovBOLhFT/drQA9zj/UbRAa9J7C0o6EG6u3E6g+vKkay7/k3g==} engines: {node: ^10 || ^12 || >=14} peerDependencies: postcss: ^8.0.9 dependencies: - postcss: 8.4.29 + postcss: 8.4.31 dev: true - /css-has-pseudo@3.0.4(postcss@8.4.29): + /css-has-pseudo@3.0.4(postcss@8.4.31): resolution: {integrity: sha512-Vse0xpR1K9MNlp2j5w1pgWIJtm1a8qS0JwS9goFYcImjlHEmywP9VUF05aGBXzGpDJF86QXk4L0ypBmwPhGArw==} engines: {node: ^12 || ^14 || >=16} hasBin: true peerDependencies: postcss: ^8.4 dependencies: - postcss: 8.4.29 + postcss: 8.4.31 postcss-selector-parser: 6.0.13 dev: true @@ -5511,12 +5307,12 @@ packages: peerDependencies: webpack: ^5.0.0 dependencies: - icss-utils: 5.1.0(postcss@8.4.29) - postcss: 8.4.29 - postcss-modules-extract-imports: 3.0.0(postcss@8.4.29) - postcss-modules-local-by-default: 4.0.3(postcss@8.4.29) - postcss-modules-scope: 3.0.0(postcss@8.4.29) - postcss-modules-values: 4.0.0(postcss@8.4.29) + icss-utils: 5.1.0(postcss@8.4.31) + postcss: 8.4.31 + postcss-modules-extract-imports: 3.0.0(postcss@8.4.31) + postcss-modules-local-by-default: 4.0.3(postcss@8.4.31) + postcss-modules-scope: 3.0.0(postcss@8.4.31) + postcss-modules-values: 4.0.0(postcss@8.4.31) postcss-value-parser: 4.2.0 semver: 7.5.4 webpack: 5.88.2 @@ -5541,23 +5337,23 @@ packages: esbuild: optional: true dependencies: - cssnano: 5.1.15(postcss@8.4.29) + cssnano: 5.1.15(postcss@8.4.31) jest-worker: 27.5.1 - postcss: 8.4.29 + postcss: 8.4.31 schema-utils: 4.2.0 serialize-javascript: 6.0.1 source-map: 0.6.1 webpack: 5.88.2 dev: true - /css-prefers-color-scheme@6.0.3(postcss@8.4.29): + /css-prefers-color-scheme@6.0.3(postcss@8.4.31): resolution: {integrity: sha512-4BqMbZksRkJQx2zAjrokiGMd07RqOa2IxIrrN10lyBe9xhn9DEvjUK79J6jkeiv9D9hQFXKb6g1jwU62jziJZA==} engines: {node: ^12 || ^14 || >=16} hasBin: true peerDependencies: postcss: ^8.4 dependencies: - postcss: 8.4.29 + postcss: 8.4.31 dev: true /css-select-base-adapter@0.1.1: @@ -5631,62 +5427,62 @@ packages: hasBin: true dev: true - /cssnano-preset-default@5.2.14(postcss@8.4.29): + /cssnano-preset-default@5.2.14(postcss@8.4.31): resolution: {integrity: sha512-t0SFesj/ZV2OTylqQVOrFgEh5uanxbO6ZAdeCrNsUQ6fVuXwYTxJPNAGvGTxHbD68ldIJNec7PyYZDBrfDQ+6A==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - css-declaration-sorter: 6.4.1(postcss@8.4.29) - cssnano-utils: 3.1.0(postcss@8.4.29) - postcss: 8.4.29 - postcss-calc: 8.2.4(postcss@8.4.29) - postcss-colormin: 5.3.1(postcss@8.4.29) - postcss-convert-values: 5.1.3(postcss@8.4.29) - postcss-discard-comments: 5.1.2(postcss@8.4.29) - postcss-discard-duplicates: 5.1.0(postcss@8.4.29) - postcss-discard-empty: 5.1.1(postcss@8.4.29) - postcss-discard-overridden: 5.1.0(postcss@8.4.29) - postcss-merge-longhand: 5.1.7(postcss@8.4.29) - postcss-merge-rules: 5.1.4(postcss@8.4.29) - postcss-minify-font-values: 5.1.0(postcss@8.4.29) - postcss-minify-gradients: 5.1.1(postcss@8.4.29) - postcss-minify-params: 5.1.4(postcss@8.4.29) - postcss-minify-selectors: 5.2.1(postcss@8.4.29) - postcss-normalize-charset: 5.1.0(postcss@8.4.29) - postcss-normalize-display-values: 5.1.0(postcss@8.4.29) - postcss-normalize-positions: 5.1.1(postcss@8.4.29) - postcss-normalize-repeat-style: 5.1.1(postcss@8.4.29) - postcss-normalize-string: 5.1.0(postcss@8.4.29) - postcss-normalize-timing-functions: 5.1.0(postcss@8.4.29) - postcss-normalize-unicode: 5.1.1(postcss@8.4.29) - postcss-normalize-url: 5.1.0(postcss@8.4.29) - postcss-normalize-whitespace: 5.1.1(postcss@8.4.29) - postcss-ordered-values: 5.1.3(postcss@8.4.29) - postcss-reduce-initial: 5.1.2(postcss@8.4.29) - postcss-reduce-transforms: 5.1.0(postcss@8.4.29) - postcss-svgo: 5.1.0(postcss@8.4.29) - postcss-unique-selectors: 5.1.1(postcss@8.4.29) + css-declaration-sorter: 6.4.1(postcss@8.4.31) + cssnano-utils: 3.1.0(postcss@8.4.31) + postcss: 8.4.31 + postcss-calc: 8.2.4(postcss@8.4.31) + postcss-colormin: 5.3.1(postcss@8.4.31) + postcss-convert-values: 5.1.3(postcss@8.4.31) + postcss-discard-comments: 5.1.2(postcss@8.4.31) + postcss-discard-duplicates: 5.1.0(postcss@8.4.31) + postcss-discard-empty: 5.1.1(postcss@8.4.31) + postcss-discard-overridden: 5.1.0(postcss@8.4.31) + postcss-merge-longhand: 5.1.7(postcss@8.4.31) + postcss-merge-rules: 5.1.4(postcss@8.4.31) + postcss-minify-font-values: 5.1.0(postcss@8.4.31) + postcss-minify-gradients: 5.1.1(postcss@8.4.31) + postcss-minify-params: 5.1.4(postcss@8.4.31) + postcss-minify-selectors: 5.2.1(postcss@8.4.31) + postcss-normalize-charset: 5.1.0(postcss@8.4.31) + postcss-normalize-display-values: 5.1.0(postcss@8.4.31) + postcss-normalize-positions: 5.1.1(postcss@8.4.31) + postcss-normalize-repeat-style: 5.1.1(postcss@8.4.31) + postcss-normalize-string: 5.1.0(postcss@8.4.31) + postcss-normalize-timing-functions: 5.1.0(postcss@8.4.31) + postcss-normalize-unicode: 5.1.1(postcss@8.4.31) + postcss-normalize-url: 5.1.0(postcss@8.4.31) + postcss-normalize-whitespace: 5.1.1(postcss@8.4.31) + postcss-ordered-values: 5.1.3(postcss@8.4.31) + postcss-reduce-initial: 5.1.2(postcss@8.4.31) + postcss-reduce-transforms: 5.1.0(postcss@8.4.31) + postcss-svgo: 5.1.0(postcss@8.4.31) + postcss-unique-selectors: 5.1.1(postcss@8.4.31) dev: true - /cssnano-utils@3.1.0(postcss@8.4.29): + /cssnano-utils@3.1.0(postcss@8.4.31): resolution: {integrity: sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.29 + postcss: 8.4.31 dev: true - /cssnano@5.1.15(postcss@8.4.29): + /cssnano@5.1.15(postcss@8.4.31): resolution: {integrity: sha512-j+BKgDcLDQA+eDifLx0EO4XSA56b7uut3BQFH+wbSaSTuGLuiyTa/wbRYthUXX8LC9mLg+WWKe8h+qJuwTAbHw==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - cssnano-preset-default: 5.2.14(postcss@8.4.29) + cssnano-preset-default: 5.2.14(postcss@8.4.31) lilconfig: 2.1.0 - postcss: 8.4.29 + postcss: 8.4.31 yaml: 1.10.2 dev: true @@ -5728,8 +5524,8 @@ packages: whatwg-url: 8.7.0 dev: true - /dayjs@1.11.9: - resolution: {integrity: sha512-QvzAURSbQ0pKdIye2txOzNaHmxtUBXerpY0FJsFXUMKbIZeFm5ht1LS/jFsrncjnmtv8HsG0W2g6c0zUjZWmpA==} + /dayjs@1.11.10: + resolution: {integrity: sha512-vjAczensTgRcqDERK0SR2XMwsF/tSvnvlv6VcF2GIhg6Sx4yOIt/irsr1RDJsKiIyBzJDpCoXiWWq28MqH2cnQ==} dev: false /debug@2.6.9: @@ -5774,13 +5570,13 @@ packages: resolution: {integrity: sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==} dev: true - /deep-equal@2.2.1: - resolution: {integrity: sha512-lKdkdV6EOGoVn65XaOsPdH4rMxTZOnmFyuIkMjM1i5HHCbfjC97dawgTAy0deYNfuqUqW+Q5VrVaQYtUpSd6yQ==} + /deep-equal@2.2.2: + resolution: {integrity: sha512-xjVyBf0w5vH0I42jdAZzOKVldmPgSulmiyPRywoyq7HXC9qdgo17kxJE+rdnif5Tz6+pIrpJI8dCpMNLIGkUiA==} dependencies: array-buffer-byte-length: 1.0.0 call-bind: 1.0.2 es-get-iterator: 1.1.3 - get-intrinsic: 1.2.0 + get-intrinsic: 1.2.1 is-arguments: 1.1.1 is-array-buffer: 3.0.2 is-date-object: 1.0.5 @@ -5790,11 +5586,11 @@ packages: object-is: 1.1.5 object-keys: 1.1.1 object.assign: 4.1.4 - regexp.prototype.flags: 1.5.0 + regexp.prototype.flags: 1.5.1 side-channel: 1.0.4 which-boxed-primitive: 1.0.2 which-collection: 1.0.1 - which-typed-array: 1.1.9 + which-typed-array: 1.1.11 dev: false /deep-is@0.1.4: @@ -5820,20 +5616,12 @@ packages: get-intrinsic: 1.2.1 gopd: 1.0.1 has-property-descriptors: 1.0.0 - dev: true /define-lazy-prop@2.0.0: resolution: {integrity: sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==} engines: {node: '>=8'} dev: true - /define-properties@1.2.0: - resolution: {integrity: sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==} - engines: {node: '>= 0.4'} - dependencies: - has-property-descriptors: 1.0.0 - object-keys: 1.1.1 - /define-properties@1.2.1: resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==} engines: {node: '>= 0.4'} @@ -5841,7 +5629,6 @@ packages: define-data-property: 1.1.0 has-property-descriptors: 1.0.0 object-keys: 1.1.1 - dev: true /delayed-stream@1.0.0: resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==} @@ -5949,7 +5736,7 @@ packages: /dom-helpers@5.2.1: resolution: {integrity: sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==} dependencies: - '@babel/runtime': 7.22.15 + '@babel/runtime': 7.23.1 csstype: 3.1.2 dev: false @@ -6047,13 +5834,8 @@ packages: jake: 10.8.7 dev: true - /electron-to-chromium@1.4.391: - resolution: {integrity: sha512-GqydVV1+kUWY5qlEzaw34/hyWTApuQrHiGrcGA2Kk/56nEK44i+YUW45VH43JuZT0Oo7uY8aVtpPhBBZXEWtSA==} - dev: true - - /electron-to-chromium@1.4.508: - resolution: {integrity: sha512-FFa8QKjQK/A5QuFr2167myhMesGrhlOBD+3cYNxO9/S4XzHEXesyTD/1/xF644gC8buFPz3ca6G1LOQD0tZrrg==} - dev: true + /electron-to-chromium@1.4.537: + resolution: {integrity: sha512-W1+g9qs9hviII0HAwOdehGYkr+zt7KKdmCcJcjH0mYg6oL8+ioT3Skjmt7BLoAQqXhjf40AXd+HlR4oAWMlXjA==} /emittery@0.10.2: resolution: {integrity: sha512-aITqOwnLanpHLNXZJENbOgjUBeHocD+xsSJmNrjovKBW5HbSpW3d1pEls7GFQPUWXiwG9+0P4GtHfEqC/4M0Iw==} @@ -6111,8 +5893,8 @@ packages: stackframe: 1.3.4 dev: true - /es-abstract@1.22.1: - resolution: {integrity: sha512-ioRRcXMO6OFyRpyzV3kE1IIBd4WG5/kltnzdxSCqoP8CMGs/Li+M1uF5o7lOkZVFjDs+NLesthnF66Pg/0q0Lw==} + /es-abstract@1.22.2: + resolution: {integrity: sha512-YoxfFcDmhjOgWPWsV13+2RNjq1F6UQnfs+8TftwNqtzlmFzEXvlUwdrNrYeaizfjQzRMxkZ6ElWMOJIFKdVqwA==} engines: {node: '>= 0.4'} dependencies: array-buffer-byte-length: 1.0.0 @@ -6164,7 +5946,7 @@ packages: resolution: {integrity: sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==} dependencies: call-bind: 1.0.2 - get-intrinsic: 1.2.0 + get-intrinsic: 1.2.1 has-symbols: 1.0.3 is-arguments: 1.1.1 is-map: 2.0.2 @@ -6180,7 +5962,7 @@ packages: asynciterator.prototype: 1.0.0 call-bind: 1.0.2 define-properties: 1.2.1 - es-abstract: 1.22.1 + es-abstract: 1.22.2 es-set-tostringtag: 2.0.1 function-bind: 1.1.1 get-intrinsic: 1.2.1 @@ -6442,7 +6224,6 @@ packages: /escalade@3.1.1: resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==} engines: {node: '>=6'} - dev: true /escape-html@1.0.3: resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==} @@ -6486,7 +6267,7 @@ packages: source-map: 0.6.1 dev: true - /eslint-config-react-app@7.0.1(@babel/plugin-syntax-flow@7.22.5)(@babel/plugin-transform-react-jsx@7.22.15)(eslint@8.49.0)(jest@27.5.1)(typescript@5.2.2): + /eslint-config-react-app@7.0.1(@babel/plugin-syntax-flow@7.22.5)(@babel/plugin-transform-react-jsx@7.22.15)(eslint@8.50.0)(jest@27.5.1)(typescript@5.2.2): resolution: {integrity: sha512-K6rNzvkIeHaTd8m/QEh1Zko0KI7BACWkkneSs6s9cKZC/J27X3eZR6Upt1jkmZ/4FK+XUOPPxMEN7+lbUXfSlA==} engines: {node: '>=14.0.0'} peerDependencies: @@ -6496,21 +6277,21 @@ packages: typescript: optional: true dependencies: - '@babel/core': 7.22.17 - '@babel/eslint-parser': 7.22.15(@babel/core@7.22.17)(eslint@8.49.0) - '@rushstack/eslint-patch': 1.3.3 - '@typescript-eslint/eslint-plugin': 5.62.0(@typescript-eslint/parser@5.62.0)(eslint@8.49.0)(typescript@5.2.2) - '@typescript-eslint/parser': 5.62.0(eslint@8.49.0)(typescript@5.2.2) + '@babel/core': 7.23.0 + '@babel/eslint-parser': 7.22.15(@babel/core@7.23.0)(eslint@8.50.0) + '@rushstack/eslint-patch': 1.5.1 + '@typescript-eslint/eslint-plugin': 5.62.0(@typescript-eslint/parser@5.62.0)(eslint@8.50.0)(typescript@5.2.2) + '@typescript-eslint/parser': 5.62.0(eslint@8.50.0)(typescript@5.2.2) babel-preset-react-app: 10.0.1 confusing-browser-globals: 1.0.11 - eslint: 8.49.0 - eslint-plugin-flowtype: 8.0.3(@babel/plugin-syntax-flow@7.22.5)(@babel/plugin-transform-react-jsx@7.22.15)(eslint@8.49.0) - eslint-plugin-import: 2.28.1(@typescript-eslint/parser@5.62.0)(eslint@8.49.0) - eslint-plugin-jest: 25.7.0(@typescript-eslint/eslint-plugin@5.62.0)(eslint@8.49.0)(jest@27.5.1)(typescript@5.2.2) - eslint-plugin-jsx-a11y: 6.7.1(eslint@8.49.0) - eslint-plugin-react: 7.33.2(eslint@8.49.0) - eslint-plugin-react-hooks: 4.6.0(eslint@8.49.0) - eslint-plugin-testing-library: 5.11.1(eslint@8.49.0)(typescript@5.2.2) + eslint: 8.50.0 + eslint-plugin-flowtype: 8.0.3(@babel/plugin-syntax-flow@7.22.5)(@babel/plugin-transform-react-jsx@7.22.15)(eslint@8.50.0) + eslint-plugin-import: 2.28.1(@typescript-eslint/parser@5.62.0)(eslint@8.50.0) + eslint-plugin-jest: 25.7.0(@typescript-eslint/eslint-plugin@5.62.0)(eslint@8.50.0)(jest@27.5.1)(typescript@5.2.2) + eslint-plugin-jsx-a11y: 6.7.1(eslint@8.50.0) + eslint-plugin-react: 7.33.2(eslint@8.50.0) + eslint-plugin-react-hooks: 4.6.0(eslint@8.50.0) + eslint-plugin-testing-library: 5.11.1(eslint@8.50.0)(typescript@5.2.2) typescript: 5.2.2 transitivePeerDependencies: - '@babel/plugin-syntax-flow' @@ -6526,12 +6307,12 @@ packages: dependencies: debug: 3.2.7 is-core-module: 2.13.0 - resolve: 1.22.4 + resolve: 1.22.6 transitivePeerDependencies: - supports-color dev: true - /eslint-module-utils@2.8.0(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint@8.49.0): + /eslint-module-utils@2.8.0(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint@8.50.0): resolution: {integrity: sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==} engines: {node: '>=4'} peerDependencies: @@ -6552,15 +6333,15 @@ packages: eslint-import-resolver-webpack: optional: true dependencies: - '@typescript-eslint/parser': 5.62.0(eslint@8.49.0)(typescript@5.2.2) + '@typescript-eslint/parser': 5.62.0(eslint@8.50.0)(typescript@5.2.2) debug: 3.2.7 - eslint: 8.49.0 + eslint: 8.50.0 eslint-import-resolver-node: 0.3.9 transitivePeerDependencies: - supports-color dev: true - /eslint-plugin-flowtype@8.0.3(@babel/plugin-syntax-flow@7.22.5)(@babel/plugin-transform-react-jsx@7.22.15)(eslint@8.49.0): + /eslint-plugin-flowtype@8.0.3(@babel/plugin-syntax-flow@7.22.5)(@babel/plugin-transform-react-jsx@7.22.15)(eslint@8.50.0): resolution: {integrity: sha512-dX8l6qUL6O+fYPtpNRideCFSpmWOUVx5QcaGLVqe/vlDiBSe4vYljDWDETwnyFzpl7By/WVIu6rcrniCgH9BqQ==} engines: {node: '>=12.0.0'} peerDependencies: @@ -6568,14 +6349,14 @@ packages: '@babel/plugin-transform-react-jsx': ^7.14.9 eslint: ^8.1.0 dependencies: - '@babel/plugin-syntax-flow': 7.22.5(@babel/core@7.22.15) - '@babel/plugin-transform-react-jsx': 7.22.15(@babel/core@7.22.15) - eslint: 8.49.0 + '@babel/plugin-syntax-flow': 7.22.5(@babel/core@7.23.0) + '@babel/plugin-transform-react-jsx': 7.22.15(@babel/core@7.23.0) + eslint: 8.50.0 lodash: 4.17.21 string-natural-compare: 3.0.1 dev: true - /eslint-plugin-import@2.28.1(@typescript-eslint/parser@5.62.0)(eslint@8.49.0): + /eslint-plugin-import@2.28.1(@typescript-eslint/parser@5.62.0)(eslint@8.50.0): resolution: {integrity: sha512-9I9hFlITvOV55alzoKBI+K9q74kv0iKMeY6av5+umsNwayt59fz692daGyjR+oStBQgx6nwR9rXldDev3Clw+A==} engines: {node: '>=4'} peerDependencies: @@ -6585,16 +6366,16 @@ packages: '@typescript-eslint/parser': optional: true dependencies: - '@typescript-eslint/parser': 5.62.0(eslint@8.49.0)(typescript@5.2.2) + '@typescript-eslint/parser': 5.62.0(eslint@8.50.0)(typescript@5.2.2) array-includes: 3.1.7 array.prototype.findlastindex: 1.2.3 array.prototype.flat: 1.3.2 array.prototype.flatmap: 1.3.2 debug: 3.2.7 doctrine: 2.1.0 - eslint: 8.49.0 + eslint: 8.50.0 eslint-import-resolver-node: 0.3.9 - eslint-module-utils: 2.8.0(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint@8.49.0) + eslint-module-utils: 2.8.0(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint@8.50.0) has: 1.0.3 is-core-module: 2.13.0 is-glob: 4.0.3 @@ -6610,7 +6391,7 @@ packages: - supports-color dev: true - /eslint-plugin-jest@25.7.0(@typescript-eslint/eslint-plugin@5.62.0)(eslint@8.49.0)(jest@27.5.1)(typescript@5.2.2): + /eslint-plugin-jest@25.7.0(@typescript-eslint/eslint-plugin@5.62.0)(eslint@8.50.0)(jest@27.5.1)(typescript@5.2.2): resolution: {integrity: sha512-PWLUEXeeF7C9QGKqvdSbzLOiLTx+bno7/HC9eefePfEb257QFHg7ye3dh80AZVkaa/RQsBB1Q/ORQvg2X7F0NQ==} engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} peerDependencies: @@ -6623,31 +6404,31 @@ packages: jest: optional: true dependencies: - '@typescript-eslint/eslint-plugin': 5.62.0(@typescript-eslint/parser@5.62.0)(eslint@8.49.0)(typescript@5.2.2) - '@typescript-eslint/experimental-utils': 5.62.0(eslint@8.49.0)(typescript@5.2.2) - eslint: 8.49.0 + '@typescript-eslint/eslint-plugin': 5.62.0(@typescript-eslint/parser@5.62.0)(eslint@8.50.0)(typescript@5.2.2) + '@typescript-eslint/experimental-utils': 5.62.0(eslint@8.50.0)(typescript@5.2.2) + eslint: 8.50.0 jest: 27.5.1 transitivePeerDependencies: - supports-color - typescript dev: true - /eslint-plugin-jsx-a11y@6.7.1(eslint@8.49.0): + /eslint-plugin-jsx-a11y@6.7.1(eslint@8.50.0): resolution: {integrity: sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA==} engines: {node: '>=4.0'} peerDependencies: eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 dependencies: - '@babel/runtime': 7.22.15 + '@babel/runtime': 7.23.1 aria-query: 5.3.0 array-includes: 3.1.7 array.prototype.flatmap: 1.3.2 ast-types-flow: 0.0.7 - axe-core: 4.8.1 + axe-core: 4.8.2 axobject-query: 3.2.1 damerau-levenshtein: 1.0.8 emoji-regex: 9.2.2 - eslint: 8.49.0 + eslint: 8.50.0 has: 1.0.3 jsx-ast-utils: 3.3.5 language-tags: 1.0.5 @@ -6657,24 +6438,24 @@ packages: semver: 6.3.1 dev: true - /eslint-plugin-react-hooks@4.6.0(eslint@8.49.0): + /eslint-plugin-react-hooks@4.6.0(eslint@8.50.0): resolution: {integrity: sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==} engines: {node: '>=10'} peerDependencies: eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 dependencies: - eslint: 8.49.0 + eslint: 8.50.0 dev: true - /eslint-plugin-react-refresh@0.4.3(eslint@8.49.0): + /eslint-plugin-react-refresh@0.4.3(eslint@8.50.0): resolution: {integrity: sha512-Hh0wv8bUNY877+sI0BlCUlsS0TYYQqvzEwJsJJPM2WF4RnTStSnSR3zdJYa2nPOJgg3UghXi54lVyMSmpCalzA==} peerDependencies: eslint: '>=7' dependencies: - eslint: 8.49.0 + eslint: 8.50.0 dev: true - /eslint-plugin-react@7.33.2(eslint@8.49.0): + /eslint-plugin-react@7.33.2(eslint@8.50.0): resolution: {integrity: sha512-73QQMKALArI8/7xGLNI/3LylrEYrlKZSb5C9+q3OtOewTnMQi5cT+aE9E41sLCmli3I9PGGmD1yiZydyo4FEPw==} engines: {node: '>=4'} peerDependencies: @@ -6685,7 +6466,7 @@ packages: array.prototype.tosorted: 1.1.2 doctrine: 2.1.0 es-iterator-helpers: 1.0.15 - eslint: 8.49.0 + eslint: 8.50.0 estraverse: 5.3.0 jsx-ast-utils: 3.3.5 minimatch: 3.1.2 @@ -6699,14 +6480,14 @@ packages: string.prototype.matchall: 4.0.10 dev: true - /eslint-plugin-testing-library@5.11.1(eslint@8.49.0)(typescript@5.2.2): + /eslint-plugin-testing-library@5.11.1(eslint@8.50.0)(typescript@5.2.2): resolution: {integrity: sha512-5eX9e1Kc2PqVRed3taaLnAAqPZGEX75C+M/rXzUAI3wIg/ZxzUm1OVAwfe/O+vE+6YXOLetSe9g5GKD2ecXipw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0, npm: '>=6'} peerDependencies: eslint: ^7.5.0 || ^8.0.0 dependencies: - '@typescript-eslint/utils': 5.62.0(eslint@8.49.0)(typescript@5.2.2) - eslint: 8.49.0 + '@typescript-eslint/utils': 5.62.0(eslint@8.50.0)(typescript@5.2.2) + eslint: 8.50.0 transitivePeerDependencies: - supports-color - typescript @@ -6738,15 +6519,15 @@ packages: engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dev: true - /eslint-webpack-plugin@3.2.0(eslint@8.49.0)(webpack@5.88.2): + /eslint-webpack-plugin@3.2.0(eslint@8.50.0)(webpack@5.88.2): resolution: {integrity: sha512-avrKcGncpPbPSUHX6B3stNGzkKFto3eL+DKM4+VyMrVnhPc3vRczVlCq3uhuFOdRvDHTVXuzwk1ZKUrqDQHQ9w==} engines: {node: '>= 12.13.0'} peerDependencies: eslint: ^7.0.0 || ^8.0.0 webpack: ^5.0.0 dependencies: - '@types/eslint': 8.44.2 - eslint: 8.49.0 + '@types/eslint': 8.44.3 + eslint: 8.50.0 jest-worker: 28.1.3 micromatch: 4.0.5 normalize-path: 3.0.0 @@ -6754,15 +6535,15 @@ packages: webpack: 5.88.2 dev: true - /eslint@8.49.0: - resolution: {integrity: sha512-jw03ENfm6VJI0jA9U+8H5zfl5b+FvuU3YYvZRdZHOlU2ggJkxrlkJH4HcDrZpj6YwD8kuYqvQM8LyesoazrSOQ==} + /eslint@8.50.0: + resolution: {integrity: sha512-FOnOGSuFuFLv/Sa+FDVRZl4GGVAAFFi8LecRsI5a1tMO5HIE8nCm4ivAlzt4dT3ol/PaaGC0rJEEXQmHJBGoOg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} hasBin: true dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@8.49.0) - '@eslint-community/regexpp': 4.8.1 + '@eslint-community/eslint-utils': 4.4.0(eslint@8.50.0) + '@eslint-community/regexpp': 4.9.0 '@eslint/eslintrc': 2.1.2 - '@eslint/js': 8.49.0 + '@eslint/js': 8.50.0 '@humanwhocodes/config-array': 0.11.11 '@humanwhocodes/module-importer': 1.0.1 '@nodelib/fs.walk': 1.2.8 @@ -6781,7 +6562,7 @@ packages: file-entry-cache: 6.0.1 find-up: 5.0.0 glob-parent: 6.0.2 - globals: 13.20.0 + globals: 13.22.0 graphemer: 1.4.0 ignore: 5.2.4 imurmurhash: 0.1.4 @@ -6986,7 +6767,7 @@ packages: resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==} engines: {node: ^10.12.0 || >=12.0.0} dependencies: - flat-cache: 3.0.4 + flat-cache: 3.1.0 dev: true /file-loader@6.2.0(webpack@5.88.2): @@ -7069,20 +6850,21 @@ packages: path-exists: 4.0.0 dev: true - /flat-cache@3.0.4: - resolution: {integrity: sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==} - engines: {node: ^10.12.0 || >=12.0.0} + /flat-cache@3.1.0: + resolution: {integrity: sha512-OHx4Qwrrt0E4jEIcI5/Xb+f+QmJYNj2rrK8wiIdQOIrB9WrrJL8cjZvXdXuBTkkEwEqLycb5BeZDV1o2i9bTew==} + engines: {node: '>=12.0.0'} dependencies: - flatted: 3.2.7 + flatted: 3.2.9 + keyv: 4.5.3 rimraf: 3.0.2 dev: true - /flatted@3.2.7: - resolution: {integrity: sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==} + /flatted@3.2.9: + resolution: {integrity: sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==} dev: true - /follow-redirects@1.15.2: - resolution: {integrity: sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==} + /follow-redirects@1.15.3: + resolution: {integrity: sha512-1VzOtuEM8pC9SFU1E+8KfTjZyMztRsgEfwQl44z8A25uy13jSzTj6dyK2Df52iV0vgHCfBwLhDWevLn95w5v6Q==} engines: {node: '>=4.0'} peerDependencies: debug: '*' @@ -7096,7 +6878,7 @@ packages: dependencies: is-callable: 1.2.7 - /fork-ts-checker-webpack-plugin@6.5.3(eslint@8.49.0)(typescript@5.2.2)(webpack@5.88.2): + /fork-ts-checker-webpack-plugin@6.5.3(eslint@8.50.0)(typescript@5.2.2)(webpack@5.88.2): resolution: {integrity: sha512-SbH/l9ikmMWycd5puHJKTkZJKddF4iRLyW3DeZ08HTI7NGyLS38MXd/KGgeWumQO7YNQbW2u/NtPT2YowbPaGQ==} engines: {node: '>=10', yarn: '>=1.0.0'} peerDependencies: @@ -7111,12 +6893,12 @@ packages: optional: true dependencies: '@babel/code-frame': 7.22.13 - '@types/json-schema': 7.0.12 + '@types/json-schema': 7.0.13 chalk: 4.1.2 chokidar: 3.5.3 cosmiconfig: 6.0.0 deepmerge: 4.3.1 - eslint: 8.49.0 + eslint: 8.50.0 fs-extra: 9.1.0 glob: 7.2.3 memfs: 3.5.3 @@ -7142,10 +6924,6 @@ packages: engines: {node: '>= 0.6'} dev: true - /fraction.js@4.2.0: - resolution: {integrity: sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==} - dev: true - /fraction.js@4.3.6: resolution: {integrity: sha512-n2aZ9tNfYDwaHhvFTkhFErqOMIb8uyzSQ+vGJBjZyanAKZVbGUQ1sngfk9FdkBw7G26O7AgNjLcecLffD1c7eg==} dev: true @@ -7192,8 +6970,8 @@ packages: universalify: 2.0.0 dev: true - /fs-monkey@1.0.4: - resolution: {integrity: sha512-INM/fWAxMICjttnD0DX1rBvinKskj5G1w+oy/pnm9u/tSlnBrzFonJMcalKJ30P8RRsPzKcCG7Q8l0jx5Fh9YQ==} + /fs-monkey@1.0.5: + resolution: {integrity: sha512-8uMbBjrhzW76TYgEV27Y5E//W2f/lTFmx78P2w19FZSxarhI/798APGQyuGCwmkNxgwGRhrLfvWyLBvNtuOmew==} dev: true /fs.realpath@1.0.0: @@ -7216,7 +6994,7 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.2.1 - es-abstract: 1.22.1 + es-abstract: 1.22.2 functions-have-names: 1.2.3 dev: true @@ -7226,20 +7004,12 @@ packages: /gensync@1.0.0-beta.2: resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==} engines: {node: '>=6.9.0'} - dev: true /get-caller-file@2.0.5: resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} engines: {node: 6.* || 8.* || >= 10.*} dev: true - /get-intrinsic@1.2.0: - resolution: {integrity: sha512-L049y6nFOuom5wGyRc3/gdTLO94dySVKRACj1RmJZBQXlbTMhtNIgkWkUHq+jYmZvKf14EW1EoJnnjbmoHij0Q==} - dependencies: - function-bind: 1.1.1 - has: 1.0.3 - has-symbols: 1.0.3 - /get-intrinsic@1.2.1: resolution: {integrity: sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==} dependencies: @@ -7247,7 +7017,6 @@ packages: has: 1.0.3 has-proto: 1.0.1 has-symbols: 1.0.3 - dev: true /get-own-enumerable-property-symbols@3.0.2: resolution: {integrity: sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g==} @@ -7331,8 +7100,8 @@ packages: resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==} engines: {node: '>=4'} - /globals@13.20.0: - resolution: {integrity: sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==} + /globals@13.22.0: + resolution: {integrity: sha512-H1Ddc/PbZHTDVJSnj8kWptIRSD6AM3pK+mKytuIVF4uoBV7rshFlhhvA58ceJ5wp3Er58w6zj7bykMpYXt3ETw==} engines: {node: '>=8'} dependencies: type-fest: 0.20.2 @@ -7360,7 +7129,7 @@ packages: /gopd@1.0.1: resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==} dependencies: - get-intrinsic: 1.2.0 + get-intrinsic: 1.2.1 /graceful-fs@4.2.11: resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} @@ -7399,12 +7168,11 @@ packages: /has-property-descriptors@1.0.0: resolution: {integrity: sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==} dependencies: - get-intrinsic: 1.2.0 + get-intrinsic: 1.2.1 /has-proto@1.0.1: resolution: {integrity: sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==} engines: {node: '>= 0.4'} - dev: true /has-symbols@1.0.3: resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==} @@ -7472,7 +7240,7 @@ packages: he: 1.2.0 param-case: 3.0.4 relateurl: 0.2.7 - terser: 5.19.4 + terser: 5.20.0 dev: true /html-webpack-plugin@5.5.3(webpack@5.88.2): @@ -7538,7 +7306,7 @@ packages: - supports-color dev: true - /http-proxy-middleware@2.0.6(@types/express@4.17.17): + /http-proxy-middleware@2.0.6(@types/express@4.17.18): resolution: {integrity: sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==} engines: {node: '>=12.0.0'} peerDependencies: @@ -7547,8 +7315,8 @@ packages: '@types/express': optional: true dependencies: - '@types/express': 4.17.17 - '@types/http-proxy': 1.17.11 + '@types/express': 4.17.18 + '@types/http-proxy': 1.17.12 http-proxy: 1.18.1 is-glob: 4.0.3 is-plain-obj: 3.0.0 @@ -7562,7 +7330,7 @@ packages: engines: {node: '>=8.0.0'} dependencies: eventemitter3: 4.0.7 - follow-redirects: 1.15.2 + follow-redirects: 1.15.3 requires-port: 1.0.0 transitivePeerDependencies: - debug @@ -7597,13 +7365,13 @@ packages: safer-buffer: 2.1.2 dev: true - /icss-utils@5.1.0(postcss@8.4.29): + /icss-utils@5.1.0(postcss@8.4.31): resolution: {integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==} engines: {node: ^10 || ^12 || >= 14} peerDependencies: postcss: ^8.1.0 dependencies: - postcss: 8.4.29 + postcss: 8.4.31 dev: true /idb@7.1.1: @@ -7676,7 +7444,7 @@ packages: engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} dependencies: default-gateway: 6.0.3 - ipaddr.js: 2.0.1 + ipaddr.js: 2.1.0 is-ip: 3.1.0 p-event: 4.2.0 dev: true @@ -7685,7 +7453,7 @@ packages: resolution: {integrity: sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==} engines: {node: '>= 0.4'} dependencies: - get-intrinsic: 1.2.0 + get-intrinsic: 1.2.1 has: 1.0.3 side-channel: 1.0.4 @@ -7699,11 +7467,6 @@ packages: engines: {node: '>= 0.10'} dev: true - /ipaddr.js@2.0.1: - resolution: {integrity: sha512-1qTgH9NG+IIJ4yfKs2e6Pp1bZg8wbDbKHT21HrLIeYBTRLgMYKnMTPAuI3Lcs61nfx5h1xlXnbJtH1kX5/d/ng==} - engines: {node: '>= 10'} - dev: true - /ipaddr.js@2.1.0: resolution: {integrity: sha512-LlbxQ7xKzfBusov6UMi4MFpEg0m+mAm9xyNGEduwXMEDuf4WfzB/RZwMVYEd7IKGvh4IUkEXYxtAVu9T3OelJQ==} engines: {node: '>= 10'} @@ -7721,8 +7484,8 @@ packages: resolution: {integrity: sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==} dependencies: call-bind: 1.0.2 - get-intrinsic: 1.2.0 - is-typed-array: 1.1.10 + get-intrinsic: 1.2.1 + is-typed-array: 1.1.12 /is-arrayish@0.2.1: resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==} @@ -7757,16 +7520,10 @@ packages: resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} engines: {node: '>= 0.4'} - /is-core-module@2.12.0: - resolution: {integrity: sha512-RECHCBCd/viahWmwj6enj19sKbHfJrddi/6cBDsNTKbNq0f7VeaUkBo60BqzvPqo/W54ChS62Z5qyun7cfOMqQ==} - dependencies: - has: 1.0.3 - /is-core-module@2.13.0: resolution: {integrity: sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==} dependencies: has: 1.0.3 - dev: true /is-date-object@1.0.5: resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==} @@ -7913,22 +7670,11 @@ packages: dependencies: has-symbols: 1.0.3 - /is-typed-array@1.1.10: - resolution: {integrity: sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==} - engines: {node: '>= 0.4'} - dependencies: - available-typed-arrays: 1.0.5 - call-bind: 1.0.2 - for-each: 0.3.3 - gopd: 1.0.1 - has-tostringtag: 1.0.0 - /is-typed-array@1.1.12: resolution: {integrity: sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==} engines: {node: '>= 0.4'} dependencies: which-typed-array: 1.1.11 - dev: true /is-typedarray@1.0.0: resolution: {integrity: sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==} @@ -7947,7 +7693,7 @@ packages: resolution: {integrity: sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==} dependencies: call-bind: 1.0.2 - get-intrinsic: 1.2.0 + get-intrinsic: 1.2.1 /is-wsl@2.2.0: resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==} @@ -7981,8 +7727,8 @@ packages: resolution: {integrity: sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==} engines: {node: '>=8'} dependencies: - '@babel/core': 7.22.17 - '@babel/parser': 7.22.16 + '@babel/core': 7.23.0 + '@babel/parser': 7.23.0 '@istanbuljs/schema': 0.1.3 istanbul-lib-coverage: 3.2.0 semver: 6.3.1 @@ -8055,7 +7801,7 @@ packages: '@jest/environment': 27.5.1 '@jest/test-result': 27.5.1 '@jest/types': 27.5.1 - '@types/node': 16.18.50 + '@types/node': 16.18.55 chalk: 4.1.2 co: 4.6.0 dedent: 0.7.0 @@ -8114,10 +7860,10 @@ packages: ts-node: optional: true dependencies: - '@babel/core': 7.22.17 + '@babel/core': 7.23.0 '@jest/test-sequencer': 27.5.1 '@jest/types': 27.5.1 - babel-jest: 27.5.1(@babel/core@7.22.17) + babel-jest: 27.5.1(@babel/core@7.23.0) chalk: 4.1.2 ci-info: 3.8.0 deepmerge: 4.3.1 @@ -8179,7 +7925,7 @@ packages: '@jest/environment': 27.5.1 '@jest/fake-timers': 27.5.1 '@jest/types': 27.5.1 - '@types/node': 16.18.50 + '@types/node': 16.18.55 jest-mock: 27.5.1 jest-util: 27.5.1 jsdom: 16.7.0 @@ -8197,7 +7943,7 @@ packages: '@jest/environment': 27.5.1 '@jest/fake-timers': 27.5.1 '@jest/types': 27.5.1 - '@types/node': 16.18.50 + '@types/node': 16.18.55 jest-mock: 27.5.1 jest-util: 27.5.1 dev: true @@ -8211,8 +7957,8 @@ packages: engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: '@jest/types': 27.5.1 - '@types/graceful-fs': 4.1.6 - '@types/node': 16.18.50 + '@types/graceful-fs': 4.1.7 + '@types/node': 16.18.55 anymatch: 3.1.3 fb-watchman: 2.0.2 graceful-fs: 4.2.11 @@ -8234,7 +7980,7 @@ packages: '@jest/source-map': 27.5.1 '@jest/test-result': 27.5.1 '@jest/types': 27.5.1 - '@types/node': 16.18.50 + '@types/node': 16.18.55 chalk: 4.1.2 co: 4.6.0 expect: 27.5.1 @@ -8303,7 +8049,7 @@ packages: engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: '@jest/types': 27.5.1 - '@types/node': 16.18.50 + '@types/node': 16.18.55 dev: true /jest-pnp-resolver@1.2.3(jest-resolve@27.5.1): @@ -8350,7 +8096,7 @@ packages: jest-pnp-resolver: 1.2.3(jest-resolve@27.5.1) jest-util: 27.5.1 jest-validate: 27.5.1 - resolve: 1.22.4 + resolve: 1.22.6 resolve.exports: 1.1.1 slash: 3.0.0 dev: true @@ -8364,7 +8110,7 @@ packages: '@jest/test-result': 27.5.1 '@jest/transform': 27.5.1 '@jest/types': 27.5.1 - '@types/node': 16.18.50 + '@types/node': 16.18.55 chalk: 4.1.2 emittery: 0.8.1 graceful-fs: 4.2.11 @@ -8421,7 +8167,7 @@ packages: resolution: {integrity: sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: - '@types/node': 16.18.50 + '@types/node': 16.18.55 graceful-fs: 4.2.11 dev: true @@ -8429,16 +8175,16 @@ packages: resolution: {integrity: sha512-yYykXI5a0I31xX67mgeLw1DZ0bJB+gpq5IpSuCAoyDi0+BhgU/RIrL+RTzDmkNTchvDFWKP8lp+w/42Z3us5sA==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: - '@babel/core': 7.22.17 - '@babel/generator': 7.22.15 - '@babel/plugin-syntax-typescript': 7.22.5(@babel/core@7.22.17) - '@babel/traverse': 7.22.17(supports-color@5.5.0) - '@babel/types': 7.22.17 + '@babel/core': 7.23.0 + '@babel/generator': 7.23.0 + '@babel/plugin-syntax-typescript': 7.22.5(@babel/core@7.23.0) + '@babel/traverse': 7.23.0(supports-color@5.5.0) + '@babel/types': 7.23.0 '@jest/transform': 27.5.1 '@jest/types': 27.5.1 - '@types/babel__traverse': 7.20.1 + '@types/babel__traverse': 7.20.2 '@types/prettier': 2.7.3 - babel-preset-current-node-syntax: 1.0.1(@babel/core@7.22.17) + babel-preset-current-node-syntax: 1.0.1(@babel/core@7.23.0) chalk: 4.1.2 expect: 27.5.1 graceful-fs: 4.2.11 @@ -8460,7 +8206,7 @@ packages: engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: '@jest/types': 27.5.1 - '@types/node': 16.18.50 + '@types/node': 16.18.55 chalk: 4.1.2 ci-info: 3.8.0 graceful-fs: 4.2.11 @@ -8472,7 +8218,7 @@ packages: engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: '@jest/types': 28.1.3 - '@types/node': 16.18.50 + '@types/node': 16.18.55 chalk: 4.1.2 ci-info: 3.8.0 graceful-fs: 4.2.11 @@ -8513,7 +8259,7 @@ packages: dependencies: '@jest/test-result': 27.5.1 '@jest/types': 27.5.1 - '@types/node': 16.18.50 + '@types/node': 16.18.55 ansi-escapes: 4.3.2 chalk: 4.1.2 jest-util: 27.5.1 @@ -8526,7 +8272,7 @@ packages: dependencies: '@jest/test-result': 28.1.3 '@jest/types': 28.1.3 - '@types/node': 16.18.50 + '@types/node': 16.18.55 ansi-escapes: 4.3.2 chalk: 4.1.2 emittery: 0.10.2 @@ -8538,7 +8284,7 @@ packages: resolution: {integrity: sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==} engines: {node: '>= 10.13.0'} dependencies: - '@types/node': 16.18.50 + '@types/node': 16.18.55 merge-stream: 2.0.0 supports-color: 7.2.0 dev: true @@ -8547,7 +8293,7 @@ packages: resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==} engines: {node: '>= 10.13.0'} dependencies: - '@types/node': 16.18.50 + '@types/node': 16.18.55 merge-stream: 2.0.0 supports-color: 8.1.1 dev: true @@ -8556,7 +8302,7 @@ packages: resolution: {integrity: sha512-CqRA220YV/6jCo8VWvAt1KKx6eek1VIHMPeLEbpcfSfkEeWyBNppynM/o6q+Wmw+sOhos2ml34wZbSX3G13//g==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: - '@types/node': 16.18.50 + '@types/node': 16.18.55 merge-stream: 2.0.0 supports-color: 8.1.1 dev: true @@ -8657,6 +8403,10 @@ packages: engines: {node: '>=4'} hasBin: true + /json-buffer@3.0.1: + resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==} + dev: true + /json-parse-even-better-errors@2.3.1: resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==} @@ -8687,7 +8437,6 @@ packages: resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==} engines: {node: '>=6'} hasBin: true - dev: true /jsonfile@6.1.0: resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==} @@ -8720,6 +8469,12 @@ packages: object.values: 1.1.7 dev: true + /keyv@4.5.3: + resolution: {integrity: sha512-QCiSav9WaX1PgETJ+SpNnx2PRRapJ/oRSXM4VO5OGYGSjrxbKPVFVhB3l2OCbLCk329N8qyAtsJjSjvVBWzEug==} + dependencies: + json-buffer: 3.0.1 + dev: true + /kind-of@6.0.3: resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==} engines: {node: '>=0.10.0'} @@ -8861,7 +8616,6 @@ packages: resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==} dependencies: yallist: 3.1.1 - dev: true /lru-cache@6.0.0: resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} @@ -8936,7 +8690,7 @@ packages: resolution: {integrity: sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw==} engines: {node: '>= 4.0.0'} dependencies: - fs-monkey: 1.0.4 + fs-monkey: 1.0.5 dev: true /merge-descriptors@1.0.1: @@ -9133,13 +8887,8 @@ packages: resolution: {integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==} dev: true - /node-releases@2.0.10: - resolution: {integrity: sha512-5GFldHPXVG/YZmFzJvKK2zDSzPKhEp0+ZR5SVaoSag9fsL5YgHbUHDfnG5494ISANDcK4KwPXAx2xqVEydmd7w==} - dev: true - /node-releases@2.0.13: resolution: {integrity: sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==} - dev: true /normalize-path@3.0.0: resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} @@ -9196,7 +8945,7 @@ packages: engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.2 - define-properties: 1.2.0 + define-properties: 1.2.1 dev: false /object-keys@1.1.1: @@ -9208,7 +8957,7 @@ packages: engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.2 - define-properties: 1.2.0 + define-properties: 1.2.1 has-symbols: 1.0.3 object-keys: 1.1.1 @@ -9218,7 +8967,7 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.2.1 - es-abstract: 1.22.1 + es-abstract: 1.22.2 dev: true /object.fromentries@2.0.7: @@ -9227,7 +8976,7 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.2.1 - es-abstract: 1.22.1 + es-abstract: 1.22.2 dev: true /object.getownpropertydescriptors@2.1.7: @@ -9237,7 +8986,7 @@ packages: array.prototype.reduce: 1.0.6 call-bind: 1.0.2 define-properties: 1.2.1 - es-abstract: 1.22.1 + es-abstract: 1.22.2 safe-array-concat: 1.0.1 dev: true @@ -9246,7 +8995,7 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.2.1 - es-abstract: 1.22.1 + es-abstract: 1.22.2 get-intrinsic: 1.2.1 dev: true @@ -9254,7 +9003,7 @@ packages: resolution: {integrity: sha512-fFI4VcYpRHvSLXxP7yiZOMAd331cPfd2p7PFDVbgUsYOfCT3tICVqXWngbjr4m49OvsBwUBQ6O2uQoJvy3RexA==} dependencies: define-properties: 1.2.1 - es-abstract: 1.22.1 + es-abstract: 1.22.2 dev: true /object.values@1.1.7: @@ -9263,7 +9012,7 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.2.1 - es-abstract: 1.22.1 + es-abstract: 1.22.2 dev: true /obuf@1.1.2: @@ -9478,7 +9227,6 @@ packages: /picocolors@1.0.0: resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==} - dev: true /picomatch@2.3.1: resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} @@ -9508,295 +9256,295 @@ packages: find-up: 3.0.0 dev: true - /postcss-attribute-case-insensitive@5.0.2(postcss@8.4.29): + /postcss-attribute-case-insensitive@5.0.2(postcss@8.4.31): resolution: {integrity: sha512-XIidXV8fDr0kKt28vqki84fRK8VW8eTuIa4PChv2MqKuT6C9UjmSKzen6KaWhWEoYvwxFCa7n/tC1SZ3tyq4SQ==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: - postcss: 8.4.29 + postcss: 8.4.31 postcss-selector-parser: 6.0.13 dev: true - /postcss-browser-comments@4.0.0(browserslist@4.21.10)(postcss@8.4.29): + /postcss-browser-comments@4.0.0(browserslist@4.22.1)(postcss@8.4.31): resolution: {integrity: sha512-X9X9/WN3KIvY9+hNERUqX9gncsgBA25XaeR+jshHz2j8+sYyHktHw1JdKuMjeLpGktXidqDhA7b/qm1mrBDmgg==} engines: {node: '>=8'} peerDependencies: browserslist: '>=4' postcss: '>=8' dependencies: - browserslist: 4.21.10 - postcss: 8.4.29 + browserslist: 4.22.1 + postcss: 8.4.31 dev: true - /postcss-calc@8.2.4(postcss@8.4.29): + /postcss-calc@8.2.4(postcss@8.4.31): resolution: {integrity: sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==} peerDependencies: postcss: ^8.2.2 dependencies: - postcss: 8.4.29 + postcss: 8.4.31 postcss-selector-parser: 6.0.13 postcss-value-parser: 4.2.0 dev: true - /postcss-clamp@4.1.0(postcss@8.4.29): + /postcss-clamp@4.1.0(postcss@8.4.31): resolution: {integrity: sha512-ry4b1Llo/9zz+PKC+030KUnPITTJAHeOwjfAyyB60eT0AorGLdzp52s31OsPRHRf8NchkgFoG2y6fCfn1IV1Ow==} engines: {node: '>=7.6.0'} peerDependencies: postcss: ^8.4.6 dependencies: - postcss: 8.4.29 + postcss: 8.4.31 postcss-value-parser: 4.2.0 dev: true - /postcss-color-functional-notation@4.2.4(postcss@8.4.29): + /postcss-color-functional-notation@4.2.4(postcss@8.4.31): resolution: {integrity: sha512-2yrTAUZUab9s6CpxkxC4rVgFEVaR6/2Pipvi6qcgvnYiVqZcbDHEoBDhrXzyb7Efh2CCfHQNtcqWcIruDTIUeg==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: - postcss: 8.4.29 + postcss: 8.4.31 postcss-value-parser: 4.2.0 dev: true - /postcss-color-hex-alpha@8.0.4(postcss@8.4.29): + /postcss-color-hex-alpha@8.0.4(postcss@8.4.31): resolution: {integrity: sha512-nLo2DCRC9eE4w2JmuKgVA3fGL3d01kGq752pVALF68qpGLmx2Qrk91QTKkdUqqp45T1K1XV8IhQpcu1hoAQflQ==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.4 dependencies: - postcss: 8.4.29 + postcss: 8.4.31 postcss-value-parser: 4.2.0 dev: true - /postcss-color-rebeccapurple@7.1.1(postcss@8.4.29): + /postcss-color-rebeccapurple@7.1.1(postcss@8.4.31): resolution: {integrity: sha512-pGxkuVEInwLHgkNxUc4sdg4g3py7zUeCQ9sMfwyHAT+Ezk8a4OaaVZ8lIY5+oNqA/BXXgLyXv0+5wHP68R79hg==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: - postcss: 8.4.29 + postcss: 8.4.31 postcss-value-parser: 4.2.0 dev: true - /postcss-colormin@5.3.1(postcss@8.4.29): + /postcss-colormin@5.3.1(postcss@8.4.31): resolution: {integrity: sha512-UsWQG0AqTFQmpBegeLLc1+c3jIqBNB0zlDGRWR+dQ3pRKJL1oeMzyqmH3o2PIfn9MBdNrVPWhDbT769LxCTLJQ==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - browserslist: 4.21.10 + browserslist: 4.22.1 caniuse-api: 3.0.0 colord: 2.9.3 - postcss: 8.4.29 + postcss: 8.4.31 postcss-value-parser: 4.2.0 dev: true - /postcss-convert-values@5.1.3(postcss@8.4.29): + /postcss-convert-values@5.1.3(postcss@8.4.31): resolution: {integrity: sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - browserslist: 4.21.10 - postcss: 8.4.29 + browserslist: 4.22.1 + postcss: 8.4.31 postcss-value-parser: 4.2.0 dev: true - /postcss-custom-media@8.0.2(postcss@8.4.29): + /postcss-custom-media@8.0.2(postcss@8.4.31): resolution: {integrity: sha512-7yi25vDAoHAkbhAzX9dHx2yc6ntS4jQvejrNcC+csQJAXjj15e7VcWfMgLqBNAbOvqi5uIa9huOVwdHbf+sKqg==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.3 dependencies: - postcss: 8.4.29 + postcss: 8.4.31 postcss-value-parser: 4.2.0 dev: true - /postcss-custom-properties@12.1.11(postcss@8.4.29): + /postcss-custom-properties@12.1.11(postcss@8.4.31): resolution: {integrity: sha512-0IDJYhgU8xDv1KY6+VgUwuQkVtmYzRwu+dMjnmdMafXYv86SWqfxkc7qdDvWS38vsjaEtv8e0vGOUQrAiMBLpQ==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: - postcss: 8.4.29 + postcss: 8.4.31 postcss-value-parser: 4.2.0 dev: true - /postcss-custom-selectors@6.0.3(postcss@8.4.29): + /postcss-custom-selectors@6.0.3(postcss@8.4.31): resolution: {integrity: sha512-fgVkmyiWDwmD3JbpCmB45SvvlCD6z9CG6Ie6Iere22W5aHea6oWa7EM2bpnv2Fj3I94L3VbtvX9KqwSi5aFzSg==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.3 dependencies: - postcss: 8.4.29 + postcss: 8.4.31 postcss-selector-parser: 6.0.13 dev: true - /postcss-dir-pseudo-class@6.0.5(postcss@8.4.29): + /postcss-dir-pseudo-class@6.0.5(postcss@8.4.31): resolution: {integrity: sha512-eqn4m70P031PF7ZQIvSgy9RSJ5uI2171O/OO/zcRNYpJbvaeKFUlar1aJ7rmgiQtbm0FSPsRewjpdS0Oew7MPA==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: - postcss: 8.4.29 + postcss: 8.4.31 postcss-selector-parser: 6.0.13 dev: true - /postcss-discard-comments@5.1.2(postcss@8.4.29): + /postcss-discard-comments@5.1.2(postcss@8.4.31): resolution: {integrity: sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.29 + postcss: 8.4.31 dev: true - /postcss-discard-duplicates@5.1.0(postcss@8.4.29): + /postcss-discard-duplicates@5.1.0(postcss@8.4.31): resolution: {integrity: sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.29 + postcss: 8.4.31 dev: true - /postcss-discard-empty@5.1.1(postcss@8.4.29): + /postcss-discard-empty@5.1.1(postcss@8.4.31): resolution: {integrity: sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.29 + postcss: 8.4.31 dev: true - /postcss-discard-overridden@5.1.0(postcss@8.4.29): + /postcss-discard-overridden@5.1.0(postcss@8.4.31): resolution: {integrity: sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.29 + postcss: 8.4.31 dev: true - /postcss-double-position-gradients@3.1.2(postcss@8.4.29): + /postcss-double-position-gradients@3.1.2(postcss@8.4.31): resolution: {integrity: sha512-GX+FuE/uBR6eskOK+4vkXgT6pDkexLokPaz/AbJna9s5Kzp/yl488pKPjhy0obB475ovfT1Wv8ho7U/cHNaRgQ==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: - '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.29) - postcss: 8.4.29 + '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.31) + postcss: 8.4.31 postcss-value-parser: 4.2.0 dev: true - /postcss-env-function@4.0.6(postcss@8.4.29): + /postcss-env-function@4.0.6(postcss@8.4.31): resolution: {integrity: sha512-kpA6FsLra+NqcFnL81TnsU+Z7orGtDTxcOhl6pwXeEq1yFPpRMkCDpHhrz8CFQDr/Wfm0jLiNQ1OsGGPjlqPwA==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.4 dependencies: - postcss: 8.4.29 + postcss: 8.4.31 postcss-value-parser: 4.2.0 dev: true - /postcss-flexbugs-fixes@5.0.2(postcss@8.4.29): + /postcss-flexbugs-fixes@5.0.2(postcss@8.4.31): resolution: {integrity: sha512-18f9voByak7bTktR2QgDveglpn9DTbBWPUzSOe9g0N4WR/2eSt6Vrcbf0hmspvMI6YWGywz6B9f7jzpFNJJgnQ==} peerDependencies: postcss: ^8.1.4 dependencies: - postcss: 8.4.29 + postcss: 8.4.31 dev: true - /postcss-focus-visible@6.0.4(postcss@8.4.29): + /postcss-focus-visible@6.0.4(postcss@8.4.31): resolution: {integrity: sha512-QcKuUU/dgNsstIK6HELFRT5Y3lbrMLEOwG+A4s5cA+fx3A3y/JTq3X9LaOj3OC3ALH0XqyrgQIgey/MIZ8Wczw==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.4 dependencies: - postcss: 8.4.29 + postcss: 8.4.31 postcss-selector-parser: 6.0.13 dev: true - /postcss-focus-within@5.0.4(postcss@8.4.29): + /postcss-focus-within@5.0.4(postcss@8.4.31): resolution: {integrity: sha512-vvjDN++C0mu8jz4af5d52CB184ogg/sSxAFS+oUJQq2SuCe7T5U2iIsVJtsCp2d6R4j0jr5+q3rPkBVZkXD9fQ==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.4 dependencies: - postcss: 8.4.29 + postcss: 8.4.31 postcss-selector-parser: 6.0.13 dev: true - /postcss-font-variant@5.0.0(postcss@8.4.29): + /postcss-font-variant@5.0.0(postcss@8.4.31): resolution: {integrity: sha512-1fmkBaCALD72CK2a9i468mA/+tr9/1cBxRRMXOUaZqO43oWPR5imcyPjXwuv7PXbCid4ndlP5zWhidQVVa3hmA==} peerDependencies: postcss: ^8.1.0 dependencies: - postcss: 8.4.29 + postcss: 8.4.31 dev: true - /postcss-gap-properties@3.0.5(postcss@8.4.29): + /postcss-gap-properties@3.0.5(postcss@8.4.31): resolution: {integrity: sha512-IuE6gKSdoUNcvkGIqdtjtcMtZIFyXZhmFd5RUlg97iVEvp1BZKV5ngsAjCjrVy+14uhGBQl9tzmi1Qwq4kqVOg==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: - postcss: 8.4.29 + postcss: 8.4.31 dev: true - /postcss-image-set-function@4.0.7(postcss@8.4.29): + /postcss-image-set-function@4.0.7(postcss@8.4.31): resolution: {integrity: sha512-9T2r9rsvYzm5ndsBE8WgtrMlIT7VbtTfE7b3BQnudUqnBcBo7L758oc+o+pdj/dUV0l5wjwSdjeOH2DZtfv8qw==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: - postcss: 8.4.29 + postcss: 8.4.31 postcss-value-parser: 4.2.0 dev: true - /postcss-import@15.1.0(postcss@8.4.29): + /postcss-import@15.1.0(postcss@8.4.31): resolution: {integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==} engines: {node: '>=14.0.0'} peerDependencies: postcss: ^8.0.0 dependencies: - postcss: 8.4.29 + postcss: 8.4.31 postcss-value-parser: 4.2.0 read-cache: 1.0.0 - resolve: 1.22.4 + resolve: 1.22.6 dev: true - /postcss-initial@4.0.1(postcss@8.4.29): + /postcss-initial@4.0.1(postcss@8.4.31): resolution: {integrity: sha512-0ueD7rPqX8Pn1xJIjay0AZeIuDoF+V+VvMt/uOnn+4ezUKhZM/NokDeP6DwMNyIoYByuN/94IQnt5FEkaN59xQ==} peerDependencies: postcss: ^8.0.0 dependencies: - postcss: 8.4.29 + postcss: 8.4.31 dev: true - /postcss-js@4.0.1(postcss@8.4.29): + /postcss-js@4.0.1(postcss@8.4.31): resolution: {integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==} engines: {node: ^12 || ^14 || >= 16} peerDependencies: postcss: ^8.4.21 dependencies: camelcase-css: 2.0.1 - postcss: 8.4.29 + postcss: 8.4.31 dev: true - /postcss-lab-function@4.2.1(postcss@8.4.29): + /postcss-lab-function@4.2.1(postcss@8.4.31): resolution: {integrity: sha512-xuXll4isR03CrQsmxyz92LJB2xX9n+pZJ5jE9JgcnmsCammLyKdlzrBin+25dy6wIjfhJpKBAN80gsTlCgRk2w==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: - '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.29) - postcss: 8.4.29 + '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.31) + postcss: 8.4.31 postcss-value-parser: 4.2.0 dev: true - /postcss-load-config@4.0.1(postcss@8.4.29): + /postcss-load-config@4.0.1(postcss@8.4.31): resolution: {integrity: sha512-vEJIc8RdiBRu3oRAI0ymerOn+7rPuMvRXslTvZUKZonDHFIczxztIyJ1urxM1x9JXEikvpWWTUUqal5j/8QgvA==} engines: {node: '>= 14'} peerDependencies: @@ -9809,11 +9557,11 @@ packages: optional: true dependencies: lilconfig: 2.1.0 - postcss: 8.4.29 + postcss: 8.4.31 yaml: 2.3.2 dev: true - /postcss-loader@6.2.1(postcss@8.4.29)(webpack@5.88.2): + /postcss-loader@6.2.1(postcss@8.4.31)(webpack@5.88.2): resolution: {integrity: sha512-WbbYpmAaKcux/P66bZ40bpWsBucjx/TTgVVzRZ9yUO8yQfVBlameJ0ZGVaPfH64hNSBh63a+ICP5nqOpBA0w+Q==} engines: {node: '>= 12.13.0'} peerDependencies: @@ -9822,251 +9570,251 @@ packages: dependencies: cosmiconfig: 7.1.0 klona: 2.0.6 - postcss: 8.4.29 + postcss: 8.4.31 semver: 7.5.4 webpack: 5.88.2 dev: true - /postcss-logical@5.0.4(postcss@8.4.29): + /postcss-logical@5.0.4(postcss@8.4.31): resolution: {integrity: sha512-RHXxplCeLh9VjinvMrZONq7im4wjWGlRJAqmAVLXyZaXwfDWP73/oq4NdIp+OZwhQUMj0zjqDfM5Fj7qby+B4g==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.4 dependencies: - postcss: 8.4.29 + postcss: 8.4.31 dev: true - /postcss-media-minmax@5.0.0(postcss@8.4.29): + /postcss-media-minmax@5.0.0(postcss@8.4.31): resolution: {integrity: sha512-yDUvFf9QdFZTuCUg0g0uNSHVlJ5X1lSzDZjPSFaiCWvjgsvu8vEVxtahPrLMinIDEEGnx6cBe6iqdx5YWz08wQ==} engines: {node: '>=10.0.0'} peerDependencies: postcss: ^8.1.0 dependencies: - postcss: 8.4.29 + postcss: 8.4.31 dev: true - /postcss-merge-longhand@5.1.7(postcss@8.4.29): + /postcss-merge-longhand@5.1.7(postcss@8.4.31): resolution: {integrity: sha512-YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.29 + postcss: 8.4.31 postcss-value-parser: 4.2.0 - stylehacks: 5.1.1(postcss@8.4.29) + stylehacks: 5.1.1(postcss@8.4.31) dev: true - /postcss-merge-rules@5.1.4(postcss@8.4.29): + /postcss-merge-rules@5.1.4(postcss@8.4.31): resolution: {integrity: sha512-0R2IuYpgU93y9lhVbO/OylTtKMVcHb67zjWIfCiKR9rWL3GUk1677LAqD/BcHizukdZEjT8Ru3oHRoAYoJy44g==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - browserslist: 4.21.10 + browserslist: 4.22.1 caniuse-api: 3.0.0 - cssnano-utils: 3.1.0(postcss@8.4.29) - postcss: 8.4.29 + cssnano-utils: 3.1.0(postcss@8.4.31) + postcss: 8.4.31 postcss-selector-parser: 6.0.13 dev: true - /postcss-minify-font-values@5.1.0(postcss@8.4.29): + /postcss-minify-font-values@5.1.0(postcss@8.4.31): resolution: {integrity: sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.29 + postcss: 8.4.31 postcss-value-parser: 4.2.0 dev: true - /postcss-minify-gradients@5.1.1(postcss@8.4.29): + /postcss-minify-gradients@5.1.1(postcss@8.4.31): resolution: {integrity: sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: colord: 2.9.3 - cssnano-utils: 3.1.0(postcss@8.4.29) - postcss: 8.4.29 + cssnano-utils: 3.1.0(postcss@8.4.31) + postcss: 8.4.31 postcss-value-parser: 4.2.0 dev: true - /postcss-minify-params@5.1.4(postcss@8.4.29): + /postcss-minify-params@5.1.4(postcss@8.4.31): resolution: {integrity: sha512-+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - browserslist: 4.21.10 - cssnano-utils: 3.1.0(postcss@8.4.29) - postcss: 8.4.29 + browserslist: 4.22.1 + cssnano-utils: 3.1.0(postcss@8.4.31) + postcss: 8.4.31 postcss-value-parser: 4.2.0 dev: true - /postcss-minify-selectors@5.2.1(postcss@8.4.29): + /postcss-minify-selectors@5.2.1(postcss@8.4.31): resolution: {integrity: sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.29 + postcss: 8.4.31 postcss-selector-parser: 6.0.13 dev: true - /postcss-modules-extract-imports@3.0.0(postcss@8.4.29): + /postcss-modules-extract-imports@3.0.0(postcss@8.4.31): resolution: {integrity: sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==} engines: {node: ^10 || ^12 || >= 14} peerDependencies: postcss: ^8.1.0 dependencies: - postcss: 8.4.29 + postcss: 8.4.31 dev: true - /postcss-modules-local-by-default@4.0.3(postcss@8.4.29): + /postcss-modules-local-by-default@4.0.3(postcss@8.4.31): resolution: {integrity: sha512-2/u2zraspoACtrbFRnTijMiQtb4GW4BvatjaG/bCjYQo8kLTdevCUlwuBHx2sCnSyrI3x3qj4ZK1j5LQBgzmwA==} engines: {node: ^10 || ^12 || >= 14} peerDependencies: postcss: ^8.1.0 dependencies: - icss-utils: 5.1.0(postcss@8.4.29) - postcss: 8.4.29 + icss-utils: 5.1.0(postcss@8.4.31) + postcss: 8.4.31 postcss-selector-parser: 6.0.13 postcss-value-parser: 4.2.0 dev: true - /postcss-modules-scope@3.0.0(postcss@8.4.29): + /postcss-modules-scope@3.0.0(postcss@8.4.31): resolution: {integrity: sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==} engines: {node: ^10 || ^12 || >= 14} peerDependencies: postcss: ^8.1.0 dependencies: - postcss: 8.4.29 + postcss: 8.4.31 postcss-selector-parser: 6.0.13 dev: true - /postcss-modules-values@4.0.0(postcss@8.4.29): + /postcss-modules-values@4.0.0(postcss@8.4.31): resolution: {integrity: sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==} engines: {node: ^10 || ^12 || >= 14} peerDependencies: postcss: ^8.1.0 dependencies: - icss-utils: 5.1.0(postcss@8.4.29) - postcss: 8.4.29 + icss-utils: 5.1.0(postcss@8.4.31) + postcss: 8.4.31 dev: true - /postcss-nested@6.0.1(postcss@8.4.29): + /postcss-nested@6.0.1(postcss@8.4.31): resolution: {integrity: sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==} engines: {node: '>=12.0'} peerDependencies: postcss: ^8.2.14 dependencies: - postcss: 8.4.29 + postcss: 8.4.31 postcss-selector-parser: 6.0.13 dev: true - /postcss-nesting@10.2.0(postcss@8.4.29): + /postcss-nesting@10.2.0(postcss@8.4.31): resolution: {integrity: sha512-EwMkYchxiDiKUhlJGzWsD9b2zvq/r2SSubcRrgP+jujMXFzqvANLt16lJANC+5uZ6hjI7lpRmI6O8JIl+8l1KA==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: '@csstools/selector-specificity': 2.2.0(postcss-selector-parser@6.0.13) - postcss: 8.4.29 + postcss: 8.4.31 postcss-selector-parser: 6.0.13 dev: true - /postcss-normalize-charset@5.1.0(postcss@8.4.29): + /postcss-normalize-charset@5.1.0(postcss@8.4.31): resolution: {integrity: sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.29 + postcss: 8.4.31 dev: true - /postcss-normalize-display-values@5.1.0(postcss@8.4.29): + /postcss-normalize-display-values@5.1.0(postcss@8.4.31): resolution: {integrity: sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.29 + postcss: 8.4.31 postcss-value-parser: 4.2.0 dev: true - /postcss-normalize-positions@5.1.1(postcss@8.4.29): + /postcss-normalize-positions@5.1.1(postcss@8.4.31): resolution: {integrity: sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.29 + postcss: 8.4.31 postcss-value-parser: 4.2.0 dev: true - /postcss-normalize-repeat-style@5.1.1(postcss@8.4.29): + /postcss-normalize-repeat-style@5.1.1(postcss@8.4.31): resolution: {integrity: sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.29 + postcss: 8.4.31 postcss-value-parser: 4.2.0 dev: true - /postcss-normalize-string@5.1.0(postcss@8.4.29): + /postcss-normalize-string@5.1.0(postcss@8.4.31): resolution: {integrity: sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.29 + postcss: 8.4.31 postcss-value-parser: 4.2.0 dev: true - /postcss-normalize-timing-functions@5.1.0(postcss@8.4.29): + /postcss-normalize-timing-functions@5.1.0(postcss@8.4.31): resolution: {integrity: sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.29 + postcss: 8.4.31 postcss-value-parser: 4.2.0 dev: true - /postcss-normalize-unicode@5.1.1(postcss@8.4.29): + /postcss-normalize-unicode@5.1.1(postcss@8.4.31): resolution: {integrity: sha512-qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - browserslist: 4.21.10 - postcss: 8.4.29 + browserslist: 4.22.1 + postcss: 8.4.31 postcss-value-parser: 4.2.0 dev: true - /postcss-normalize-url@5.1.0(postcss@8.4.29): + /postcss-normalize-url@5.1.0(postcss@8.4.31): resolution: {integrity: sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: normalize-url: 6.1.0 - postcss: 8.4.29 + postcss: 8.4.31 postcss-value-parser: 4.2.0 dev: true - /postcss-normalize-whitespace@5.1.1(postcss@8.4.29): + /postcss-normalize-whitespace@5.1.1(postcss@8.4.31): resolution: {integrity: sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.29 + postcss: 8.4.31 postcss-value-parser: 4.2.0 dev: true - /postcss-normalize@10.0.1(browserslist@4.21.10)(postcss@8.4.29): + /postcss-normalize@10.0.1(browserslist@4.22.1)(postcss@8.4.31): resolution: {integrity: sha512-+5w18/rDev5mqERcG3W5GZNMJa1eoYYNGo8gB7tEwaos0ajk3ZXAI4mHGcNT47NE+ZnZD1pEpUOFLvltIwmeJA==} engines: {node: '>= 12'} peerDependencies: @@ -10074,164 +9822,164 @@ packages: postcss: '>= 8' dependencies: '@csstools/normalize.css': 12.0.0 - browserslist: 4.21.10 - postcss: 8.4.29 - postcss-browser-comments: 4.0.0(browserslist@4.21.10)(postcss@8.4.29) + browserslist: 4.22.1 + postcss: 8.4.31 + postcss-browser-comments: 4.0.0(browserslist@4.22.1)(postcss@8.4.31) sanitize.css: 13.0.0 dev: true - /postcss-opacity-percentage@1.1.3(postcss@8.4.29): + /postcss-opacity-percentage@1.1.3(postcss@8.4.31): resolution: {integrity: sha512-An6Ba4pHBiDtyVpSLymUUERMo2cU7s+Obz6BTrS+gxkbnSBNKSuD0AVUc+CpBMrpVPKKfoVz0WQCX+Tnst0i4A==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: - postcss: 8.4.29 + postcss: 8.4.31 dev: true - /postcss-ordered-values@5.1.3(postcss@8.4.29): + /postcss-ordered-values@5.1.3(postcss@8.4.31): resolution: {integrity: sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - cssnano-utils: 3.1.0(postcss@8.4.29) - postcss: 8.4.29 + cssnano-utils: 3.1.0(postcss@8.4.31) + postcss: 8.4.31 postcss-value-parser: 4.2.0 dev: true - /postcss-overflow-shorthand@3.0.4(postcss@8.4.29): + /postcss-overflow-shorthand@3.0.4(postcss@8.4.31): resolution: {integrity: sha512-otYl/ylHK8Y9bcBnPLo3foYFLL6a6Ak+3EQBPOTR7luMYCOsiVTUk1iLvNf6tVPNGXcoL9Hoz37kpfriRIFb4A==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: - postcss: 8.4.29 + postcss: 8.4.31 postcss-value-parser: 4.2.0 dev: true - /postcss-page-break@3.0.4(postcss@8.4.29): + /postcss-page-break@3.0.4(postcss@8.4.31): resolution: {integrity: sha512-1JGu8oCjVXLa9q9rFTo4MbeeA5FMe00/9C7lN4va606Rdb+HkxXtXsmEDrIraQ11fGz/WvKWa8gMuCKkrXpTsQ==} peerDependencies: postcss: ^8 dependencies: - postcss: 8.4.29 + postcss: 8.4.31 dev: true - /postcss-place@7.0.5(postcss@8.4.29): + /postcss-place@7.0.5(postcss@8.4.31): resolution: {integrity: sha512-wR8igaZROA6Z4pv0d+bvVrvGY4GVHihBCBQieXFY3kuSuMyOmEnnfFzHl/tQuqHZkfkIVBEbDvYcFfHmpSet9g==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: - postcss: 8.4.29 + postcss: 8.4.31 postcss-value-parser: 4.2.0 dev: true - /postcss-preset-env@7.8.3(postcss@8.4.29): + /postcss-preset-env@7.8.3(postcss@8.4.31): resolution: {integrity: sha512-T1LgRm5uEVFSEF83vHZJV2z19lHg4yJuZ6gXZZkqVsqv63nlr6zabMH3l4Pc01FQCyfWVrh2GaUeCVy9Po+Aag==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: - '@csstools/postcss-cascade-layers': 1.1.1(postcss@8.4.29) - '@csstools/postcss-color-function': 1.1.1(postcss@8.4.29) - '@csstools/postcss-font-format-keywords': 1.0.1(postcss@8.4.29) - '@csstools/postcss-hwb-function': 1.0.2(postcss@8.4.29) - '@csstools/postcss-ic-unit': 1.0.1(postcss@8.4.29) - '@csstools/postcss-is-pseudo-class': 2.0.7(postcss@8.4.29) - '@csstools/postcss-nested-calc': 1.0.0(postcss@8.4.29) - '@csstools/postcss-normalize-display-values': 1.0.1(postcss@8.4.29) - '@csstools/postcss-oklab-function': 1.1.1(postcss@8.4.29) - '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.29) - '@csstools/postcss-stepped-value-functions': 1.0.1(postcss@8.4.29) - '@csstools/postcss-text-decoration-shorthand': 1.0.0(postcss@8.4.29) - '@csstools/postcss-trigonometric-functions': 1.0.2(postcss@8.4.29) - '@csstools/postcss-unset-value': 1.0.2(postcss@8.4.29) - autoprefixer: 10.4.15(postcss@8.4.29) - browserslist: 4.21.10 - css-blank-pseudo: 3.0.3(postcss@8.4.29) - css-has-pseudo: 3.0.4(postcss@8.4.29) - css-prefers-color-scheme: 6.0.3(postcss@8.4.29) + '@csstools/postcss-cascade-layers': 1.1.1(postcss@8.4.31) + '@csstools/postcss-color-function': 1.1.1(postcss@8.4.31) + '@csstools/postcss-font-format-keywords': 1.0.1(postcss@8.4.31) + '@csstools/postcss-hwb-function': 1.0.2(postcss@8.4.31) + '@csstools/postcss-ic-unit': 1.0.1(postcss@8.4.31) + '@csstools/postcss-is-pseudo-class': 2.0.7(postcss@8.4.31) + '@csstools/postcss-nested-calc': 1.0.0(postcss@8.4.31) + '@csstools/postcss-normalize-display-values': 1.0.1(postcss@8.4.31) + '@csstools/postcss-oklab-function': 1.1.1(postcss@8.4.31) + '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.31) + '@csstools/postcss-stepped-value-functions': 1.0.1(postcss@8.4.31) + '@csstools/postcss-text-decoration-shorthand': 1.0.0(postcss@8.4.31) + '@csstools/postcss-trigonometric-functions': 1.0.2(postcss@8.4.31) + '@csstools/postcss-unset-value': 1.0.2(postcss@8.4.31) + autoprefixer: 10.4.16(postcss@8.4.31) + browserslist: 4.22.1 + css-blank-pseudo: 3.0.3(postcss@8.4.31) + css-has-pseudo: 3.0.4(postcss@8.4.31) + css-prefers-color-scheme: 6.0.3(postcss@8.4.31) cssdb: 7.7.2 - postcss: 8.4.29 - postcss-attribute-case-insensitive: 5.0.2(postcss@8.4.29) - postcss-clamp: 4.1.0(postcss@8.4.29) - postcss-color-functional-notation: 4.2.4(postcss@8.4.29) - postcss-color-hex-alpha: 8.0.4(postcss@8.4.29) - postcss-color-rebeccapurple: 7.1.1(postcss@8.4.29) - postcss-custom-media: 8.0.2(postcss@8.4.29) - postcss-custom-properties: 12.1.11(postcss@8.4.29) - postcss-custom-selectors: 6.0.3(postcss@8.4.29) - postcss-dir-pseudo-class: 6.0.5(postcss@8.4.29) - postcss-double-position-gradients: 3.1.2(postcss@8.4.29) - postcss-env-function: 4.0.6(postcss@8.4.29) - postcss-focus-visible: 6.0.4(postcss@8.4.29) - postcss-focus-within: 5.0.4(postcss@8.4.29) - postcss-font-variant: 5.0.0(postcss@8.4.29) - postcss-gap-properties: 3.0.5(postcss@8.4.29) - postcss-image-set-function: 4.0.7(postcss@8.4.29) - postcss-initial: 4.0.1(postcss@8.4.29) - postcss-lab-function: 4.2.1(postcss@8.4.29) - postcss-logical: 5.0.4(postcss@8.4.29) - postcss-media-minmax: 5.0.0(postcss@8.4.29) - postcss-nesting: 10.2.0(postcss@8.4.29) - postcss-opacity-percentage: 1.1.3(postcss@8.4.29) - postcss-overflow-shorthand: 3.0.4(postcss@8.4.29) - postcss-page-break: 3.0.4(postcss@8.4.29) - postcss-place: 7.0.5(postcss@8.4.29) - postcss-pseudo-class-any-link: 7.1.6(postcss@8.4.29) - postcss-replace-overflow-wrap: 4.0.0(postcss@8.4.29) - postcss-selector-not: 6.0.1(postcss@8.4.29) + postcss: 8.4.31 + postcss-attribute-case-insensitive: 5.0.2(postcss@8.4.31) + postcss-clamp: 4.1.0(postcss@8.4.31) + postcss-color-functional-notation: 4.2.4(postcss@8.4.31) + postcss-color-hex-alpha: 8.0.4(postcss@8.4.31) + postcss-color-rebeccapurple: 7.1.1(postcss@8.4.31) + postcss-custom-media: 8.0.2(postcss@8.4.31) + postcss-custom-properties: 12.1.11(postcss@8.4.31) + postcss-custom-selectors: 6.0.3(postcss@8.4.31) + postcss-dir-pseudo-class: 6.0.5(postcss@8.4.31) + postcss-double-position-gradients: 3.1.2(postcss@8.4.31) + postcss-env-function: 4.0.6(postcss@8.4.31) + postcss-focus-visible: 6.0.4(postcss@8.4.31) + postcss-focus-within: 5.0.4(postcss@8.4.31) + postcss-font-variant: 5.0.0(postcss@8.4.31) + postcss-gap-properties: 3.0.5(postcss@8.4.31) + postcss-image-set-function: 4.0.7(postcss@8.4.31) + postcss-initial: 4.0.1(postcss@8.4.31) + postcss-lab-function: 4.2.1(postcss@8.4.31) + postcss-logical: 5.0.4(postcss@8.4.31) + postcss-media-minmax: 5.0.0(postcss@8.4.31) + postcss-nesting: 10.2.0(postcss@8.4.31) + postcss-opacity-percentage: 1.1.3(postcss@8.4.31) + postcss-overflow-shorthand: 3.0.4(postcss@8.4.31) + postcss-page-break: 3.0.4(postcss@8.4.31) + postcss-place: 7.0.5(postcss@8.4.31) + postcss-pseudo-class-any-link: 7.1.6(postcss@8.4.31) + postcss-replace-overflow-wrap: 4.0.0(postcss@8.4.31) + postcss-selector-not: 6.0.1(postcss@8.4.31) postcss-value-parser: 4.2.0 dev: true - /postcss-pseudo-class-any-link@7.1.6(postcss@8.4.29): + /postcss-pseudo-class-any-link@7.1.6(postcss@8.4.31): resolution: {integrity: sha512-9sCtZkO6f/5ML9WcTLcIyV1yz9D1rf0tWc+ulKcvV30s0iZKS/ONyETvoWsr6vnrmW+X+KmuK3gV/w5EWnT37w==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: - postcss: 8.4.29 + postcss: 8.4.31 postcss-selector-parser: 6.0.13 dev: true - /postcss-reduce-initial@5.1.2(postcss@8.4.29): + /postcss-reduce-initial@5.1.2(postcss@8.4.31): resolution: {integrity: sha512-dE/y2XRaqAi6OvjzD22pjTUQ8eOfc6m/natGHgKFBK9DxFmIm69YmaRVQrGgFlEfc1HePIurY0TmDeROK05rIg==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - browserslist: 4.21.10 + browserslist: 4.22.1 caniuse-api: 3.0.0 - postcss: 8.4.29 + postcss: 8.4.31 dev: true - /postcss-reduce-transforms@5.1.0(postcss@8.4.29): + /postcss-reduce-transforms@5.1.0(postcss@8.4.31): resolution: {integrity: sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.29 + postcss: 8.4.31 postcss-value-parser: 4.2.0 dev: true - /postcss-replace-overflow-wrap@4.0.0(postcss@8.4.29): + /postcss-replace-overflow-wrap@4.0.0(postcss@8.4.31): resolution: {integrity: sha512-KmF7SBPphT4gPPcKZc7aDkweHiKEEO8cla/GjcBK+ckKxiZslIu3C4GCRW3DNfL0o7yW7kMQu9xlZ1kXRXLXtw==} peerDependencies: postcss: ^8.0.3 dependencies: - postcss: 8.4.29 + postcss: 8.4.31 dev: true - /postcss-selector-not@6.0.1(postcss@8.4.29): + /postcss-selector-not@6.0.1(postcss@8.4.31): resolution: {integrity: sha512-1i9affjAe9xu/y9uqWH+tD4r6/hDaXJruk8xn2x1vzxC2U3J3LKO3zJW4CyxlNhA56pADJ/djpEwpH1RClI2rQ==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: - postcss: 8.4.29 + postcss: 8.4.31 postcss-selector-parser: 6.0.13 dev: true @@ -10243,24 +9991,24 @@ packages: util-deprecate: 1.0.2 dev: true - /postcss-svgo@5.1.0(postcss@8.4.29): + /postcss-svgo@5.1.0(postcss@8.4.31): resolution: {integrity: sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.29 + postcss: 8.4.31 postcss-value-parser: 4.2.0 svgo: 2.8.0 dev: true - /postcss-unique-selectors@5.1.1(postcss@8.4.29): + /postcss-unique-selectors@5.1.1(postcss@8.4.31): resolution: {integrity: sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.29 + postcss: 8.4.31 postcss-selector-parser: 6.0.13 dev: true @@ -10275,8 +10023,8 @@ packages: source-map: 0.6.1 dev: true - /postcss@8.4.29: - resolution: {integrity: sha512-cbI+jaqIeu/VGqXEarWkRCCffhjgXc0qjBtXpqJhTBohMUjUQnbBr0xqX3vEKudc4iviTewcJo5ajcec5+wdJw==} + /postcss@8.4.31: + resolution: {integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==} engines: {node: ^10 || ^12 || >=14} dependencies: nanoid: 3.3.6 @@ -10433,7 +10181,7 @@ packages: advanced-cropper: 0.18.0 classnames: 2.3.2 react: 18.2.0 - tslib: 2.5.0 + tslib: 2.6.2 dev: false /react-app-polyfill@3.0.0: @@ -10458,7 +10206,7 @@ packages: react-dom: 18.2.0(react@18.2.0) dev: false - /react-dev-utils@12.0.1(eslint@8.49.0)(typescript@5.2.2)(webpack@5.88.2): + /react-dev-utils@12.0.1(eslint@8.50.0)(typescript@5.2.2)(webpack@5.88.2): resolution: {integrity: sha512-84Ivxmr17KjUupyqzFode6xKhjwuEJDROWKJy/BthkL7Wn6NJ8h4WE6k/exAv6ImS+0oZLRRW5j/aINMHyeGeQ==} engines: {node: '>=14'} peerDependencies: @@ -10470,14 +10218,14 @@ packages: dependencies: '@babel/code-frame': 7.22.13 address: 1.2.2 - browserslist: 4.21.10 + browserslist: 4.22.1 chalk: 4.1.2 cross-spawn: 7.0.3 detect-port-alt: 1.1.6 escape-string-regexp: 4.0.0 filesize: 8.0.7 find-up: 5.0.0 - fork-ts-checker-webpack-plugin: 6.5.3(eslint@8.49.0)(typescript@5.2.2)(webpack@5.88.2) + fork-ts-checker-webpack-plugin: 6.5.3(eslint@8.50.0)(typescript@5.2.2)(webpack@5.88.2) global-modules: 2.0.0 globby: 11.1.0 gzip-size: 6.0.0 @@ -10527,7 +10275,7 @@ packages: peerDependencies: react: '>=16.13.1' dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.23.1 react: 18.2.0 dev: false @@ -10535,8 +10283,8 @@ packages: resolution: {integrity: sha512-/6UZ2qgEyH2aqzYZgQPxEnz33NJ2gNsnHA2o5+o4wW9bLM/JYQitNP9xPhsXwC08hMMovfGe/8retsdDsczPRg==} dev: true - /react-hook-form@7.46.1(react@18.2.0): - resolution: {integrity: sha512-0GfI31LRTBd5tqbXMGXT1Rdsv3rnvy0FjEk8Gn9/4tp6+s77T7DPZuGEpBRXOauL+NhyGT5iaXzdIM2R6F/E+w==} + /react-hook-form@7.46.2(react@18.2.0): + resolution: {integrity: sha512-x1DWmHQchV7x2Rq9l99M/cQHC8JGchAnw9Z0uTz5KrPa0bTl/Inm1NR7ceOARfIrkNuQNAhuSuZPYa6k7QYn3Q==} engines: {node: '>=12.22.0'} peerDependencies: react: ^16.8.0 || ^17 || ^18 @@ -10603,7 +10351,7 @@ packages: react: 18.2.0 dev: false - /react-scripts@5.0.1(@babel/plugin-syntax-flow@7.22.5)(@babel/plugin-transform-react-jsx@7.22.15)(eslint@8.49.0)(react@18.2.0)(typescript@5.2.2): + /react-scripts@5.0.1(@babel/plugin-syntax-flow@7.22.5)(@babel/plugin-transform-react-jsx@7.22.15)(eslint@8.50.0)(react@18.2.0)(typescript@5.2.2): resolution: {integrity: sha512-8VAmEm/ZAwQzJ+GOMLbBsTdDKOpuZh7RPs0UymvBR2vRk4iZWCskjbFnxqjrzoIvlNNRZ3QJFx6/qDSi6zSnaQ==} engines: {node: '>=14.0.0'} hasBin: true @@ -10615,24 +10363,24 @@ packages: typescript: optional: true dependencies: - '@babel/core': 7.22.17 + '@babel/core': 7.23.0 '@pmmmwh/react-refresh-webpack-plugin': 0.5.11(react-refresh@0.11.0)(webpack-dev-server@4.15.1)(webpack@5.88.2) '@svgr/webpack': 5.5.0 - babel-jest: 27.5.1(@babel/core@7.22.17) - babel-loader: 8.3.0(@babel/core@7.22.17)(webpack@5.88.2) - babel-plugin-named-asset-import: 0.3.8(@babel/core@7.22.17) + babel-jest: 27.5.1(@babel/core@7.23.0) + babel-loader: 8.3.0(@babel/core@7.23.0)(webpack@5.88.2) + babel-plugin-named-asset-import: 0.3.8(@babel/core@7.23.0) babel-preset-react-app: 10.0.1 bfj: 7.1.0 - browserslist: 4.21.10 + browserslist: 4.22.1 camelcase: 6.3.0 case-sensitive-paths-webpack-plugin: 2.4.0 css-loader: 6.8.1(webpack@5.88.2) css-minimizer-webpack-plugin: 3.4.1(webpack@5.88.2) dotenv: 10.0.0 dotenv-expand: 5.1.0 - eslint: 8.49.0 - eslint-config-react-app: 7.0.1(@babel/plugin-syntax-flow@7.22.5)(@babel/plugin-transform-react-jsx@7.22.15)(eslint@8.49.0)(jest@27.5.1)(typescript@5.2.2) - eslint-webpack-plugin: 3.2.0(eslint@8.49.0)(webpack@5.88.2) + eslint: 8.50.0 + eslint-config-react-app: 7.0.1(@babel/plugin-syntax-flow@7.22.5)(@babel/plugin-transform-react-jsx@7.22.15)(eslint@8.50.0)(jest@27.5.1)(typescript@5.2.2) + eslint-webpack-plugin: 3.2.0(eslint@8.50.0)(webpack@5.88.2) file-loader: 6.2.0(webpack@5.88.2) fs-extra: 10.1.0 html-webpack-plugin: 5.5.3(webpack@5.88.2) @@ -10641,17 +10389,17 @@ packages: jest-resolve: 27.5.1 jest-watch-typeahead: 1.1.0(jest@27.5.1) mini-css-extract-plugin: 2.7.6(webpack@5.88.2) - postcss: 8.4.29 - postcss-flexbugs-fixes: 5.0.2(postcss@8.4.29) - postcss-loader: 6.2.1(postcss@8.4.29)(webpack@5.88.2) - postcss-normalize: 10.0.1(browserslist@4.21.10)(postcss@8.4.29) - postcss-preset-env: 7.8.3(postcss@8.4.29) + postcss: 8.4.31 + postcss-flexbugs-fixes: 5.0.2(postcss@8.4.31) + postcss-loader: 6.2.1(postcss@8.4.31)(webpack@5.88.2) + postcss-normalize: 10.0.1(browserslist@4.22.1)(postcss@8.4.31) + postcss-preset-env: 7.8.3(postcss@8.4.31) prompts: 2.4.2 react: 18.2.0 react-app-polyfill: 3.0.0 - react-dev-utils: 12.0.1(eslint@8.49.0)(typescript@5.2.2)(webpack@5.88.2) + react-dev-utils: 12.0.1(eslint@8.50.0)(typescript@5.2.2)(webpack@5.88.2) react-refresh: 0.11.0 - resolve: 1.22.4 + resolve: 1.22.6 resolve-url-loader: 4.0.0 sass-loader: 12.6.0(webpack@5.88.2) semver: 7.5.4 @@ -10735,7 +10483,7 @@ packages: react: '>=16.6.0' react-dom: '>=16.6.0' dependencies: - '@babel/runtime': 7.22.15 + '@babel/runtime': 7.23.1 dom-helpers: 5.2.1 loose-envify: 1.4.0 prop-types: 15.8.1 @@ -10804,14 +10552,14 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.2.1 - es-abstract: 1.22.1 + es-abstract: 1.22.2 get-intrinsic: 1.2.1 globalthis: 1.0.3 which-builtin-type: 1.1.3 dev: true - /regenerate-unicode-properties@10.1.0: - resolution: {integrity: sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ==} + /regenerate-unicode-properties@10.1.1: + resolution: {integrity: sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==} engines: {node: '>=4'} dependencies: regenerate: 1.4.2 @@ -10823,6 +10571,7 @@ packages: /regenerator-runtime@0.13.11: resolution: {integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==} + dev: true /regenerator-runtime@0.14.0: resolution: {integrity: sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==} @@ -10830,22 +10579,13 @@ packages: /regenerator-transform@0.15.2: resolution: {integrity: sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==} dependencies: - '@babel/runtime': 7.22.15 + '@babel/runtime': 7.23.1 dev: true /regex-parser@2.2.11: resolution: {integrity: sha512-jbD/FT0+9MBU2XAZluI7w2OBs1RBi6p9M83nkoZayQXXU9e8Robt69FcZc7wU4eJD/YFTjn1JdCk3rbMJajz8Q==} dev: true - /regexp.prototype.flags@1.5.0: - resolution: {integrity: sha512-0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA==} - engines: {node: '>= 0.4'} - dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - functions-have-names: 1.2.3 - dev: false - /regexp.prototype.flags@1.5.1: resolution: {integrity: sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==} engines: {node: '>= 0.4'} @@ -10853,7 +10593,6 @@ packages: call-bind: 1.0.2 define-properties: 1.2.1 set-function-name: 2.0.1 - dev: true /regexpu-core@5.3.2: resolution: {integrity: sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==} @@ -10861,7 +10600,7 @@ packages: dependencies: '@babel/regjsgen': 0.8.0 regenerate: 1.4.2 - regenerate-unicode-properties: 10.1.0 + regenerate-unicode-properties: 10.1.1 regjsparser: 0.9.1 unicode-match-property-ecmascript: 2.0.0 unicode-match-property-value-ecmascript: 2.1.0 @@ -10955,22 +10694,13 @@ packages: engines: {node: '>=10'} dev: true - /resolve@1.22.2: - resolution: {integrity: sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==} - hasBin: true - dependencies: - is-core-module: 2.12.0 - path-parse: 1.0.7 - supports-preserve-symlinks-flag: 1.0.0 - - /resolve@1.22.4: - resolution: {integrity: sha512-PXNdCiPqDqeUou+w1C2eTQbNfxKSuMxqTCuvlmmMsk1NWHL5fRrhY6Pl0qEYYc6+QqGClco1Qj8XnjPego4wfg==} + /resolve@1.22.6: + resolution: {integrity: sha512-njhxM7mV12JfufShqGy3Rz8j11RPdLy4xi15UurGJeoHLfJpVXKdh3ueuOqbYUcDZnffr6X739JBo5LzyahEsw==} hasBin: true dependencies: is-core-module: 2.13.0 path-parse: 1.0.7 supports-preserve-symlinks-flag: 1.0.0 - dev: true /resolve@2.0.0-next.4: resolution: {integrity: sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==} @@ -11008,7 +10738,7 @@ packages: jest-worker: 26.6.2 rollup: 2.79.1 serialize-javascript: 4.0.0 - terser: 5.19.4 + terser: 5.20.0 dev: true /rollup@2.77.3: @@ -11026,8 +10756,8 @@ packages: optionalDependencies: fsevents: 2.3.3 - /rollup@3.29.0: - resolution: {integrity: sha512-nszM8DINnx1vSS+TpbWKMkxem0CDWk3cSit/WWCBVs9/JZ1I/XLwOsiUglYuYReaeWWSsW9kge5zE5NZtf/a4w==} + /rollup@3.29.4: + resolution: {integrity: sha512-oWzmBZwvYrU0iJHtDmhsm662rC15FRXmcjCk1xD771dFDx5jJ02ufAQQTn0etB2emNk4J9EZg/yWKpsn9BWGRw==} engines: {node: '>=14.18.0', npm: '>=8.0.0'} hasBin: true optionalDependencies: @@ -11119,7 +10849,7 @@ packages: resolution: {integrity: sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A==} engines: {node: '>= 8.9.0'} dependencies: - '@types/json-schema': 7.0.12 + '@types/json-schema': 7.0.13 ajv: 6.12.6 ajv-keywords: 3.5.2(ajv@6.12.6) dev: true @@ -11128,7 +10858,7 @@ packages: resolution: {integrity: sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==} engines: {node: '>= 8.9.0'} dependencies: - '@types/json-schema': 7.0.12 + '@types/json-schema': 7.0.13 ajv: 6.12.6 ajv-keywords: 3.5.2(ajv@6.12.6) dev: true @@ -11137,7 +10867,7 @@ packages: resolution: {integrity: sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==} engines: {node: '>= 10.13.0'} dependencies: - '@types/json-schema': 7.0.12 + '@types/json-schema': 7.0.13 ajv: 6.12.6 ajv-keywords: 3.5.2(ajv@6.12.6) dev: true @@ -11146,7 +10876,7 @@ packages: resolution: {integrity: sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==} engines: {node: '>= 12.13.0'} dependencies: - '@types/json-schema': 7.0.12 + '@types/json-schema': 7.0.13 ajv: 8.12.0 ajv-formats: 2.1.1(ajv@8.12.0) ajv-keywords: 5.1.0(ajv@8.12.0) @@ -11166,15 +10896,6 @@ packages: /semver@6.3.1: resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} hasBin: true - dev: true - - /semver@7.5.0: - resolution: {integrity: sha512-+XC0AD/R7Q2mPSRuy2Id0+CGTZ98+8f+KvwirxOKIEyid+XSx6HbC63p+O4IndTHuX5Z+JxQ0TghCkO5Cg/2HA==} - engines: {node: '>=10'} - hasBin: true - dependencies: - lru-cache: 6.0.0 - dev: true /semver@7.5.4: resolution: {integrity: sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==} @@ -11251,7 +10972,6 @@ packages: define-data-property: 1.1.0 functions-have-names: 1.2.3 has-property-descriptors: 1.0.0 - dev: true /setprototypeof@1.1.0: resolution: {integrity: sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==} @@ -11292,7 +11012,7 @@ packages: resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==} dependencies: call-bind: 1.0.2 - get-intrinsic: 1.2.0 + get-intrinsic: 1.2.1 object-inspect: 1.12.3 /signal-exit@3.0.7: @@ -11313,6 +11033,13 @@ packages: engines: {node: '>=12'} dev: true + /snake-case@3.0.4: + resolution: {integrity: sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==} + dependencies: + dot-case: 3.0.4 + tslib: 2.6.2 + dev: true + /sockjs@0.3.24: resolution: {integrity: sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==} dependencies: @@ -11479,7 +11206,7 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.2.1 - es-abstract: 1.22.1 + es-abstract: 1.22.2 get-intrinsic: 1.2.1 has-symbols: 1.0.3 internal-slot: 1.0.5 @@ -11494,7 +11221,7 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.2.1 - es-abstract: 1.22.1 + es-abstract: 1.22.2 dev: true /string.prototype.trimend@1.0.7: @@ -11502,7 +11229,7 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.2.1 - es-abstract: 1.22.1 + es-abstract: 1.22.2 dev: true /string.prototype.trimstart@1.0.7: @@ -11510,7 +11237,7 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.2.1 - es-abstract: 1.22.1 + es-abstract: 1.22.2 dev: true /string_decoder@1.1.1: @@ -11589,7 +11316,7 @@ packages: webpack: 5.88.2 dev: true - /styled-components@5.3.11(react-dom@18.2.0)(react-is@18.2.0)(react@18.2.0): + /styled-components@5.3.11(@babel/core@7.23.0)(react-dom@18.2.0)(react-is@18.2.0)(react@18.2.0): resolution: {integrity: sha512-uuzIIfnVkagcVHv9nE0VPlHPSCmXIUGKfJ42LNjxCCTDTL5sgnJ8Z7GZBq0EnLYGln77tPpEpExt2+qa+cZqSw==} engines: {node: '>=10'} peerDependencies: @@ -11598,11 +11325,11 @@ packages: react-is: '>= 16.8.0' dependencies: '@babel/helper-module-imports': 7.22.15 - '@babel/traverse': 7.22.17(supports-color@5.5.0) + '@babel/traverse': 7.23.0(supports-color@5.5.0) '@emotion/is-prop-valid': 1.2.1 '@emotion/stylis': 0.8.5 '@emotion/unitless': 0.7.5 - babel-plugin-styled-components: 2.1.1(styled-components@5.3.11) + babel-plugin-styled-components: 2.1.4(@babel/core@7.23.0)(styled-components@5.3.11) css-to-react-native: 3.2.0 hoist-non-react-statics: 3.3.2 react: 18.2.0 @@ -11610,16 +11337,18 @@ packages: react-is: 18.2.0 shallowequal: 1.1.0 supports-color: 5.5.0 + transitivePeerDependencies: + - '@babel/core' dev: false - /stylehacks@5.1.1(postcss@8.4.29): + /stylehacks@5.1.1(postcss@8.4.31): resolution: {integrity: sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw==} engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 dependencies: - browserslist: 4.21.10 - postcss: 8.4.29 + browserslist: 4.22.1 + postcss: 8.4.31 postcss-selector-parser: 6.0.13 dev: true @@ -11734,13 +11463,13 @@ packages: normalize-path: 3.0.0 object-hash: 3.0.0 picocolors: 1.0.0 - postcss: 8.4.29 - postcss-import: 15.1.0(postcss@8.4.29) - postcss-js: 4.0.1(postcss@8.4.29) - postcss-load-config: 4.0.1(postcss@8.4.29) - postcss-nested: 6.0.1(postcss@8.4.29) + postcss: 8.4.31 + postcss-import: 15.1.0(postcss@8.4.31) + postcss-js: 4.0.1(postcss@8.4.31) + postcss-load-config: 4.0.1(postcss@8.4.31) + postcss-nested: 6.0.1(postcss@8.4.31) postcss-selector-parser: 6.0.13 - resolve: 1.22.4 + resolve: 1.22.6 sucrase: 3.34.0 transitivePeerDependencies: - ts-node @@ -11799,12 +11528,12 @@ packages: jest-worker: 27.5.1 schema-utils: 3.3.0 serialize-javascript: 6.0.1 - terser: 5.19.4 + terser: 5.20.0 webpack: 5.88.2 dev: true - /terser@5.19.4: - resolution: {integrity: sha512-6p1DjHeuluwxDXcuT9VR8p64klWJKo1ILiy19s6C9+0Bh2+NWTX6nD9EPppiER4ICkHDVB1RkVpin/YW2nQn/g==} + /terser@5.20.0: + resolution: {integrity: sha512-e56ETryaQDyebBwJIWYB2TT6f2EZ0fL0sW/JRXNMN26zZdKi2u/E/5my5lG6jNxym6qsrVXfFRmOdV42zlAgLQ==} engines: {node: '>=10'} hasBin: true dependencies: @@ -11913,7 +11642,7 @@ packages: resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==} dev: true - /ts-node@10.9.1(@types/node@16.18.50)(typescript@5.2.2): + /ts-node@10.9.1(@types/node@16.18.55)(typescript@5.2.2): resolution: {integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==} hasBin: true peerDependencies: @@ -11931,8 +11660,8 @@ packages: '@tsconfig/node10': 1.0.9 '@tsconfig/node12': 1.0.11 '@tsconfig/node14': 1.0.3 - '@tsconfig/node16': 1.0.3 - '@types/node': 16.18.50 + '@tsconfig/node16': 1.0.4 + '@types/node': 16.18.55 acorn: 8.10.0 acorn-walk: 8.2.0 arg: 4.1.3 @@ -11957,10 +11686,6 @@ packages: resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==} dev: true - /tslib@2.5.0: - resolution: {integrity: sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==} - dev: false - /tslib@2.6.2: resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==} @@ -12137,27 +11862,15 @@ packages: engines: {node: '>=4'} dev: true - /update-browserslist-db@1.0.11(browserslist@4.21.10): - resolution: {integrity: sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==} + /update-browserslist-db@1.0.13(browserslist@4.22.1): + resolution: {integrity: sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==} hasBin: true peerDependencies: browserslist: '>= 4.21.0' dependencies: - browserslist: 4.21.10 + browserslist: 4.22.1 escalade: 3.1.1 picocolors: 1.0.0 - dev: true - - /update-browserslist-db@1.0.11(browserslist@4.21.5): - resolution: {integrity: sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==} - hasBin: true - peerDependencies: - browserslist: '>= 4.21.0' - dependencies: - browserslist: 4.21.5 - escalade: 3.1.1 - picocolors: 1.0.0 - dev: true /uri-js@4.4.1: resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} @@ -12180,7 +11893,7 @@ packages: resolution: {integrity: sha512-g9JpC/3He3bm38zsLupWryXHoEcS22YHthuPQSJdMy6KNrzIRzWqcsHzD/WUnqe45whVou4VIsPew37DoXWNrA==} dependencies: define-properties: 1.2.1 - es-abstract: 1.22.1 + es-abstract: 1.22.2 has-symbols: 1.0.3 object.getownpropertydescriptors: 2.1.7 dev: true @@ -12224,7 +11937,7 @@ packages: dependencies: es-module-lexer: 1.3.1 magic-string: 0.26.7 - vite: 4.4.9(@types/node@16.18.50) + vite: 4.4.9(@types/node@16.18.55) dev: true /vite-plugin-clean@1.0.0: @@ -12255,7 +11968,7 @@ packages: html-minifier-terser: 6.1.0 node-html-parser: 5.4.2 pathe: 0.2.0 - vite: 4.4.9(@types/node@16.18.50) + vite: 4.4.9(@types/node@16.18.55) dev: true /vite-plugin-progress@0.0.7(vite@4.4.9): @@ -12267,18 +11980,18 @@ packages: picocolors: 1.0.0 progress: 2.0.3 rd: 2.0.1 - vite: 4.4.9(@types/node@16.18.50) + vite: 4.4.9(@types/node@16.18.55) dev: true - /vite-plugin-svgr@3.2.0(rollup@2.79.1)(typescript@5.2.2)(vite@4.4.9): - resolution: {integrity: sha512-Uvq6niTvhqJU6ga78qLKBFJSDvxWhOnyfQSoKpDPMAGxJPo5S3+9hyjExE5YDj6Lpa4uaLkGc1cBgxXov+LjSw==} + /vite-plugin-svgr@3.3.0(rollup@2.79.1)(typescript@5.2.2)(vite@4.4.9): + resolution: {integrity: sha512-vWZMCcGNdPqgziYFKQ3Y95XP0d0YGp28+MM3Dp9cTa/px5CKcHHrIoPl2Jw81rgVm6/ZUNONzjXbZQZ7Kw66og==} peerDependencies: vite: ^2.6.0 || 3 || 4 dependencies: '@rollup/pluginutils': 5.0.4(rollup@2.79.1) - '@svgr/core': 7.0.0(typescript@5.2.2) - '@svgr/plugin-jsx': 7.0.0 - vite: 4.4.9(@types/node@16.18.50) + '@svgr/core': 8.1.0(typescript@5.2.2) + '@svgr/plugin-jsx': 8.1.0(@svgr/core@8.1.0) + vite: 4.4.9(@types/node@16.18.55) transitivePeerDependencies: - rollup - supports-color @@ -12302,14 +12015,14 @@ packages: optional: true dependencies: esbuild: 0.14.54 - postcss: 8.4.29 - resolve: 1.22.4 + postcss: 8.4.31 + resolve: 1.22.6 rollup: 2.77.3 optionalDependencies: fsevents: 2.3.3 dev: true - /vite@4.4.9(@types/node@16.18.50): + /vite@4.4.9(@types/node@16.18.55): resolution: {integrity: sha512-2mbUn2LlUmNASWwSCNSJ/EG2HuSRTnVNaydp6vMCm5VIqJsjMfbIWtbH2kDuwUVW5mMUKKZvGPX/rqeqVvv1XA==} engines: {node: ^14.18.0 || >=16.0.0} hasBin: true @@ -12337,10 +12050,10 @@ packages: terser: optional: true dependencies: - '@types/node': 16.18.50 + '@types/node': 16.18.55 esbuild: 0.18.20 - postcss: 8.4.29 - rollup: 3.29.0 + postcss: 8.4.31 + rollup: 3.29.4 optionalDependencies: fsevents: 2.3.3 dev: true @@ -12420,13 +12133,13 @@ packages: webpack-cli: optional: true dependencies: - '@types/bonjour': 3.5.10 + '@types/bonjour': 3.5.11 '@types/connect-history-api-fallback': 1.5.1 - '@types/express': 4.17.17 - '@types/serve-index': 1.9.1 - '@types/serve-static': 1.15.2 - '@types/sockjs': 0.3.33 - '@types/ws': 8.5.5 + '@types/express': 4.17.18 + '@types/serve-index': 1.9.2 + '@types/serve-static': 1.15.3 + '@types/sockjs': 0.3.34 + '@types/ws': 8.5.6 ansi-html-community: 0.0.8 bonjour-service: 1.1.1 chokidar: 3.5.3 @@ -12437,7 +12150,7 @@ packages: express: 4.18.2 graceful-fs: 4.2.11 html-entities: 2.4.0 - http-proxy-middleware: 2.0.6(@types/express@4.17.17) + http-proxy-middleware: 2.0.6(@types/express@4.17.18) ipaddr.js: 2.1.0 launch-editor: 2.6.0 open: 8.4.2 @@ -12450,7 +12163,7 @@ packages: spdy: 4.0.2 webpack: 5.88.2 webpack-dev-middleware: 5.3.3(webpack@5.88.2) - ws: 8.14.1 + ws: 8.14.2 transitivePeerDependencies: - bufferutil - debug @@ -12469,8 +12182,8 @@ packages: webpack-sources: 2.3.1 dev: true - /webpack-merge@5.8.0: - resolution: {integrity: sha512-/SaI7xY0831XwP6kzuwhKWVKDP9t1QY1h65lAFLbZqMPIuYcD9QAW4u9STIbU9kaJbPBB/geU/gLr1wDjOhQ+Q==} + /webpack-merge@5.9.0: + resolution: {integrity: sha512-6NbRQw4+Sy50vYNTw7EyOn41OZItPiXB8GNv3INSoe3PSFaHJEz3SHTrYVaRm2LilNGnFUzh0FAwqPEmU/CwDg==} engines: {node: '>=10.0.0'} dependencies: clone-deep: 4.0.1 @@ -12507,14 +12220,14 @@ packages: webpack-cli: optional: true dependencies: - '@types/eslint-scope': 3.7.4 - '@types/estree': 1.0.1 + '@types/eslint-scope': 3.7.5 + '@types/estree': 1.0.2 '@webassemblyjs/ast': 1.11.6 '@webassemblyjs/wasm-edit': 1.11.6 '@webassemblyjs/wasm-parser': 1.11.6 acorn: 8.10.0 acorn-import-assertions: 1.9.0(acorn@8.10.0) - browserslist: 4.21.10 + browserslist: 4.22.1 chrome-trace-event: 1.0.3 enhanced-resolve: 5.15.0 es-module-lexer: 1.3.1 @@ -12626,19 +12339,6 @@ packages: for-each: 0.3.3 gopd: 1.0.1 has-tostringtag: 1.0.0 - dev: true - - /which-typed-array@1.1.9: - resolution: {integrity: sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==} - engines: {node: '>= 0.4'} - dependencies: - available-typed-arrays: 1.0.5 - call-bind: 1.0.2 - for-each: 0.3.3 - gopd: 1.0.1 - has-tostringtag: 1.0.0 - is-typed-array: 1.1.10 - dev: false /which@1.3.1: resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==} @@ -12682,10 +12382,10 @@ packages: engines: {node: '>=10.0.0'} dependencies: '@apideck/better-ajv-errors': 0.3.6(ajv@8.12.0) - '@babel/core': 7.22.17 - '@babel/preset-env': 7.22.15(@babel/core@7.22.17) - '@babel/runtime': 7.22.15 - '@rollup/plugin-babel': 5.3.1(@babel/core@7.22.17)(rollup@2.79.1) + '@babel/core': 7.23.0 + '@babel/preset-env': 7.22.20(@babel/core@7.23.0) + '@babel/runtime': 7.23.1 + '@rollup/plugin-babel': 5.3.1(@babel/core@7.23.0)(rollup@2.79.1) '@rollup/plugin-node-resolve': 11.2.1(rollup@2.79.1) '@rollup/plugin-replace': 2.4.2(rollup@2.79.1) '@surma/rollup-plugin-off-main-thread': 2.2.3 @@ -12863,8 +12563,8 @@ packages: optional: true dev: true - /ws@8.14.1: - resolution: {integrity: sha512-4OOseMUq8AzRBI/7SLMUwO+FEDnguetSk7KMb1sHwvF2w2Wv5Hoj0nlifx8vtGsftE/jWHojPy8sMMzYLJ2G/A==} + /ws@8.14.2: + resolution: {integrity: sha512-wEBG1ftX4jcglPxgFCMJmZ2PLtSbJ2Peg6TmpJFTbe9GZYOQCDPdMYu/Tm0/bGZkw8paZnJY45J4K2PZrLYq8g==} engines: {node: '>=10.0.0'} peerDependencies: bufferutil: ^4.0.1 @@ -12891,7 +12591,6 @@ packages: /yallist@3.1.1: resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==} - dev: true /yallist@4.0.0: resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock index 3ff6a9a..b94ba91 100644 --- a/src-tauri/Cargo.lock +++ b/src-tauri/Cargo.lock @@ -19,9 +19,9 @@ checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" [[package]] name = "aho-corasick" -version = "1.0.5" +version = "1.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0c378d78423fdad8089616f827526ee33c19f2fddbd5de1629152c9593ba4783" +checksum = "ea5d730647d4fadd988536d06fecce94b7b4f2a7efdae548f1cf4b63205518ab" dependencies = [ "memchr", ] @@ -62,6 +62,16 @@ version = "1.0.75" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a4668cab20f66d8d020e1fbc0ebe47217433c1b6c8f2040faf858554e394ace6" +[[package]] +name = "app" +version = "0.1.0" +dependencies = [ + "serde", + "serde_json", + "tauri", + "tauri-build 2.0.0-alpha.8 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "async-broadcast" version = "0.5.1" @@ -85,14 +95,14 @@ dependencies = [ [[package]] name = "async-executor" -version = "1.5.1" +version = "1.5.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6fa3dc5f2a8564f07759c008b9109dc0d39de92a88d5588b8a5036d286383afb" +checksum = "2c1da3ae8dabd9c00f453a329dfe1fb28da3c0a72e2478cdcd93171740c20499" dependencies = [ "async-lock", "async-task", "concurrent-queue", - "fastrand 1.9.0", + "fastrand 2.0.1", "futures-lite", "slab", ] @@ -123,7 +133,7 @@ dependencies = [ "log", "parking", "polling", - "rustix 0.37.23", + "rustix 0.37.24", "slab", "socket2 0.4.9", "waker-fn", @@ -151,7 +161,7 @@ dependencies = [ "cfg-if", "event-listener", "futures-lite", - "rustix 0.37.23", + "rustix 0.37.24", "signal-hook", "windows-sys 0.48.0", ] @@ -164,14 +174,14 @@ checksum = "5fd55a5ba1179988837d24ab4c7cc8ed6efdeff578ede0416b4225a5fca35bd0" dependencies = [ "proc-macro2", "quote", - "syn 2.0.33", + "syn 2.0.37", ] [[package]] name = "async-task" -version = "4.4.0" +version = "4.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ecc7ab41815b3c653ccd2978ec3255c81349336702dfdf62ee6f7069b12a3aae" +checksum = "b9441c6b2fe128a7c2bf680a44c34d0df31ce09e5b7e401fcca3faa483dbc921" [[package]] name = "async-trait" @@ -181,7 +191,7 @@ checksum = "bc00ceb34980c03614e35a3a4e218276a0a824e911d07651cd0d858a51e8c0f0" dependencies = [ "proc-macro2", "quote", - "syn 2.0.33", + "syn 2.0.37", ] [[package]] @@ -192,7 +202,7 @@ checksum = "39991bc421ddf72f70159011b323ff49b0f783cc676a7287c59453da2e2531cf" dependencies = [ "atk-sys", "bitflags 1.3.2", - "glib", + "glib 0.16.9", "libc", ] @@ -202,17 +212,17 @@ version = "0.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "11ad703eb64dc058024f0e57ccfa069e15a413b98dbd50a1a950e743b7f11148" dependencies = [ - "glib-sys", - "gobject-sys", + "glib-sys 0.16.3", + "gobject-sys 0.16.3", "libc", "system-deps", ] [[package]] name = "atomic-waker" -version = "1.1.1" +version = "1.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1181e1e0d1fce796a03db1ae795d67167da795f9cf4a39c37589e85ef57f26d3" +checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" [[package]] name = "autocfg" @@ -270,24 +280,25 @@ dependencies = [ [[package]] name = "blocking" -version = "1.3.1" +version = "1.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "77231a1c8f801696fc0123ec6150ce92cffb8e164a02afb9c8ddee0e9b65ad65" +checksum = "94c4ef1f913d78636d78d538eec1f18de81e481f44b1be0a81060090530846e1" dependencies = [ "async-channel", "async-lock", "async-task", - "atomic-waker", - "fastrand 1.9.0", + "fastrand 2.0.1", + "futures-io", "futures-lite", - "log", + "piper", + "tracing", ] [[package]] name = "brotli" -version = "3.3.4" +version = "3.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a1a0b1dbcc8ae29329621f8d4f0d835787c1c38bb1401979b49d13b0b305ff68" +checksum = "516074a47ef4bce09577a3b379392300159ce5b1ba2e501ff1c819950066100f" dependencies = [ "alloc-no-stdlib", "alloc-stdlib", @@ -296,9 +307,9 @@ dependencies = [ [[package]] name = "brotli-decompressor" -version = "2.3.4" +version = "2.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4b6561fd3f895a11e8f72af2cb7d22e08366bebc2b6b57f7744c4bda27034744" +checksum = "da74e2b81409b1b743f8f0c62cc6254afefb8b8e50bbfe3735550f7aeefa3448" dependencies = [ "alloc-no-stdlib", "alloc-stdlib", @@ -339,7 +350,7 @@ checksum = "f3125b15ec28b84c238f6f476c6034016a5f6cc0221cb514ca46c532139fc97d" dependencies = [ "bitflags 1.3.2", "cairo-sys-rs", - "glib", + "glib 0.16.9", "libc", "once_cell", "thiserror", @@ -351,7 +362,7 @@ version = "0.16.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7c48f4af05fabdcfa9658178e1326efa061853f040ce7d72e33af6885196f421" dependencies = [ - "glib-sys", + "glib-sys 0.16.3", "libc", "system-deps", ] @@ -410,9 +421,9 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" [[package]] name = "chrono" -version = "0.4.30" +version = "0.4.31" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "defd4e7873dbddba6c7c91e199c7fcb946abc4a6a4ac3195400bcfb01b5de877" +checksum = "7f2c685bad3eb3d45a01354cedb7d5faa66194d1d58ba6e267a8de788f79db38" dependencies = [ "android-tzdata", "iana-time-zone", @@ -455,15 +466,14 @@ dependencies = [ [[package]] name = "cocoa-foundation" -version = "0.1.1" +version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "931d3837c286f56e3c58423ce4eba12d08db2374461a785c86f672b08b5650d6" +checksum = "8c6234cbb2e4c785b456c0644748b1ac416dd045799740356f8363dfe00c93f7" dependencies = [ "bitflags 1.3.2", "block", "core-foundation", "core-graphics-types", - "foreign-types 0.3.2", "libc", "objc", ] @@ -486,9 +496,9 @@ dependencies = [ [[package]] name = "concurrent-queue" -version = "2.2.0" +version = "2.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "62ec6771ecfa0762d24683ee5a32ad78487a3d3afdc0fb8cae19d2c5deb50b7c" +checksum = "f057a694a54f12365049b0958a1685bb52d567f5593b355fbf685838e873d400" dependencies = [ "crossbeam-utils", ] @@ -623,7 +633,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "13b588ba4ac1a99f7f2964d24b3d896ddc6bf847ee3855dbd4366f058cfcd331" dependencies = [ "quote", - "syn 2.0.33", + "syn 2.0.37", ] [[package]] @@ -657,7 +667,7 @@ dependencies = [ "proc-macro2", "quote", "strsim", - "syn 2.0.33", + "syn 2.0.37", ] [[package]] @@ -668,7 +678,7 @@ checksum = "836a9bbc7ad63342d6d6e7b815ccab164bc77a2d95d84bc3117a8c0d5c98e2d5" dependencies = [ "darling_core", "quote", - "syn 2.0.33", + "syn 2.0.37", ] [[package]] @@ -808,7 +818,7 @@ checksum = "f95e2801cd355d4a1a3e3953ce6ee5ae9603a5c833455343a8bfe3f44d418246" dependencies = [ "proc-macro2", "quote", - "syn 2.0.33", + "syn 2.0.37", ] [[package]] @@ -819,9 +829,9 @@ checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5" [[package]] name = "errno" -version = "0.3.3" +version = "0.3.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "136526188508e25c6fef639d7927dfb3e0e3084488bf202267829cf7fc23dbdd" +checksum = "add4f07d43996f76ef320709726a556a9d4f965d9410d8d0271132d2f8293480" dependencies = [ "errno-dragonfly", "libc", @@ -855,9 +865,9 @@ dependencies = [ [[package]] name = "fastrand" -version = "2.0.0" +version = "2.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6999dc1837253364c2ebb0704ba97994bd874e8f195d665c50b7548f6ea92764" +checksum = "25cbce373ec4653f1a01a31e8a5e5ec0c622dc27ff9c4e6606eefef5cbbed4a5" [[package]] name = "fdeflate" @@ -921,7 +931,7 @@ checksum = "1a5c6c585bc94aaf2c7b51dd4c2ba22680844aba4c687be581871a6f518c5742" dependencies = [ "proc-macro2", "quote", - "syn 2.0.33", + "syn 2.0.37", ] [[package]] @@ -1010,7 +1020,7 @@ checksum = "89ca545a94061b6365f2c7355b4b32bd20df3ff95f02da9329b34ccc3bd6ee72" dependencies = [ "proc-macro2", "quote", - "syn 2.0.33", + "syn 2.0.37", ] [[package]] @@ -1062,7 +1072,7 @@ dependencies = [ "gdk-pixbuf", "gdk-sys", "gio", - "glib", + "glib 0.16.9", "libc", "pango", ] @@ -1076,7 +1086,7 @@ dependencies = [ "bitflags 1.3.2", "gdk-pixbuf-sys", "gio", - "glib", + "glib 0.16.9", "libc", ] @@ -1086,9 +1096,9 @@ version = "0.16.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3092cf797a5f1210479ea38070d9ae8a5b8e9f8f1be9f32f4643c529c7d70016" dependencies = [ - "gio-sys", - "glib-sys", - "gobject-sys", + "gio-sys 0.16.3", + "glib-sys 0.16.3", + "gobject-sys 0.16.3", "libc", "system-deps", ] @@ -1101,9 +1111,9 @@ checksum = "d76354f97a913e55b984759a997b693aa7dc71068c9e98bcce51aa167a0a5c5a" dependencies = [ "cairo-sys-rs", "gdk-pixbuf-sys", - "gio-sys", - "glib-sys", - "gobject-sys", + "gio-sys 0.16.3", + "glib-sys 0.16.3", + "gobject-sys 0.16.3", "libc", "pango-sys", "pkg-config", @@ -1117,8 +1127,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4511710212ed3020b61a8622a37aa6f0dd2a84516575da92e9b96928dcbe83ba" dependencies = [ "gdk-sys", - "glib-sys", - "gobject-sys", + "glib-sys 0.16.3", + "gobject-sys 0.16.3", "libc", "pkg-config", "system-deps", @@ -1131,7 +1141,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9fa2bf8b5b8c414bc5d05e48b271896d0fd3ddb57464a3108438082da61de6af" dependencies = [ "gdk-sys", - "glib-sys", + "glib-sys 0.16.3", "libc", "system-deps", "x11", @@ -1199,8 +1209,8 @@ dependencies = [ "futures-core", "futures-io", "futures-util", - "gio-sys", - "glib", + "gio-sys 0.16.3", + "glib 0.16.9", "libc", "once_cell", "pin-project-lite", @@ -1214,8 +1224,21 @@ version = "0.16.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e9b693b8e39d042a95547fc258a7b07349b1f0b48f4b2fa3108ba3c51c0b5229" dependencies = [ - "glib-sys", - "gobject-sys", + "glib-sys 0.16.3", + "gobject-sys 0.16.3", + "libc", + "system-deps", + "winapi", +] + +[[package]] +name = "gio-sys" +version = "0.18.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "37566df850baf5e4cb0dfb78af2e4b9898d817ed9263d1090a2df958c64737d2" +dependencies = [ + "glib-sys 0.18.1", + "gobject-sys 0.18.0", "libc", "system-deps", "winapi", @@ -1233,16 +1256,39 @@ dependencies = [ "futures-executor", "futures-task", "futures-util", - "gio-sys", - "glib-macros", - "glib-sys", - "gobject-sys", + "gio-sys 0.16.3", + "glib-macros 0.16.8", + "glib-sys 0.16.3", + "gobject-sys 0.16.3", "libc", "once_cell", "smallvec", "thiserror", ] +[[package]] +name = "glib" +version = "0.18.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1c316afb01ce8067c5eaab1fc4f2cd47dc21ce7b6296358605e2ffab23ccbd19" +dependencies = [ + "bitflags 2.4.0", + "futures-channel", + "futures-core", + "futures-executor", + "futures-task", + "futures-util", + "gio-sys 0.18.1", + "glib-macros 0.18.2", + "glib-sys 0.18.1", + "gobject-sys 0.18.0", + "libc", + "memchr", + "once_cell", + "smallvec", + "thiserror", +] + [[package]] name = "glib-macros" version = "0.16.8" @@ -1258,6 +1304,20 @@ dependencies = [ "syn 1.0.109", ] +[[package]] +name = "glib-macros" +version = "0.18.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f8da903822b136d42360518653fcf154455defc437d3e7a81475bf9a95ff1e47" +dependencies = [ + "heck", + "proc-macro-crate", + "proc-macro-error", + "proc-macro2", + "quote", + "syn 2.0.37", +] + [[package]] name = "glib-sys" version = "0.16.3" @@ -1268,6 +1328,16 @@ dependencies = [ "system-deps", ] +[[package]] +name = "glib-sys" +version = "0.18.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "063ce2eb6a8d0ea93d2bf8ba1957e78dbab6be1c2220dd3daca57d5a9d869898" +dependencies = [ + "libc", + "system-deps", +] + [[package]] name = "glob" version = "0.3.1" @@ -1280,7 +1350,18 @@ version = "0.16.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3520bb9c07ae2a12c7f2fbb24d4efc11231c8146a86956413fb1a79bb760a0f1" dependencies = [ - "glib-sys", + "glib-sys 0.16.3", + "libc", + "system-deps", +] + +[[package]] +name = "gobject-sys" +version = "0.18.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0850127b514d1c4a4654ead6dedadb18198999985908e6ffe4436f53c785ce44" +dependencies = [ + "glib-sys 0.18.1", "libc", "system-deps", ] @@ -1299,7 +1380,7 @@ dependencies = [ "gdk", "gdk-pixbuf", "gio", - "glib", + "glib 0.16.9", "gtk-sys", "gtk3-macros", "libc", @@ -1318,9 +1399,9 @@ dependencies = [ "cairo-sys-rs", "gdk-pixbuf-sys", "gdk-sys", - "gio-sys", - "glib-sys", - "gobject-sys", + "gio-sys 0.16.3", + "glib-sys 0.16.3", + "gobject-sys 0.16.3", "libc", "pango-sys", "system-deps", @@ -1367,9 +1448,9 @@ checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" [[package]] name = "hashbrown" -version = "0.14.0" +version = "0.14.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2c6201b9ff9fd90a5a3bac2e56a830d0caa509576f0e503818ee82c181b3437a" +checksum = "7dfda62a12f55daeae5015f81b0baea145391cb4520f86c248fc615d72640d12" [[package]] name = "heck" @@ -1379,9 +1460,9 @@ checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" [[package]] name = "hermit-abi" -version = "0.3.2" +version = "0.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "443144c8cdadd93ebf52ddb4056d257f5b52c04d3c804e657d19eb73fc33668b" +checksum = "d77f7ec81a6d05a3abb01ab6eb7590f6083d08449fe5a1c8b1e620283546ccb7" [[package]] name = "hex" @@ -1536,12 +1617,12 @@ dependencies = [ [[package]] name = "indexmap" -version = "2.0.0" +version = "2.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d5477fe2230a79769d8dc68e0eabf5437907c0457a5614a9e8dddb67f65eb65d" +checksum = "8adf3ddd720272c6ea8bf59463c04e0f93d0bbf7c5439b691bca2987e0270897" dependencies = [ "equivalent", - "hashbrown 0.14.0", + "hashbrown 0.14.1", "serde", ] @@ -1594,23 +1675,23 @@ checksum = "af150ab688ff2122fcef229be89cb50dd66af9e01a4ff320cc137eecc9bacc38" [[package]] name = "javascriptcore-rs" -version = "1.0.0" +version = "1.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4cfcc681b896b083864a4a3c3b3ea196f14ff66b8641a68fde209c6d84434056" +checksum = "c3e411dbc2288d2e66373abb4ebe35e198af770c1c61f795b8fa25a398c24006" dependencies = [ "bitflags 1.3.2", - "glib", + "glib 0.18.2", "javascriptcore-rs-sys", ] [[package]] name = "javascriptcore-rs-sys" -version = "1.0.0" +version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b0983ba5b3ab9a0c0918de02c42dc71f795d6de08092f88a98ce9fdfdee4ba91" +checksum = "f3e2b173d4e1f4653dec2ffaf83c7d92842b04573bf04af0e75a086219e45298" dependencies = [ - "glib-sys", - "gobject-sys", + "glib-sys 0.18.1", + "gobject-sys 0.18.0", "libc", "system-deps", ] @@ -1694,7 +1775,7 @@ version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "89e1edfdc9b0853358306c6dfb4b77c79c779174256fe93d80c0b5ebca451a2f" dependencies = [ - "glib", + "glib 0.16.9", "gtk", "gtk-sys", "libappindicator-sys", @@ -1745,9 +1826,9 @@ checksum = "ef53942eb7bf7ff43a617b3e2c1c4a5ecf5944a7c1bc12d7ee39bbb15e5c1519" [[package]] name = "linux-raw-sys" -version = "0.4.7" +version = "0.4.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1a9bad9f94746442c783ca431b22403b519cd7fbeed0533fdd6328b2f2212128" +checksum = "3852614a3bd9ca9804678ba6be5e3b8ce76dfc902cae004e3e0c44051b6e88db" [[package]] name = "lock_api" @@ -1826,9 +1907,9 @@ checksum = "2532096657941c2fea9c289d370a250971c689d4f143798ff67113ec042024a5" [[package]] name = "memchr" -version = "2.6.3" +version = "2.6.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8f232d6ef707e1956a43342693d2a31e72989554d58299d7a88738cc95b0d35c" +checksum = "f665ee40bc4a3c5590afb1e9677db74a508659dfd71e126420da8274909a0167" [[package]] name = "memoffset" @@ -2085,7 +2166,7 @@ checksum = "cdff66b271861037b89d028656184059e03b0b6ccb36003820be19f7200b1e94" dependencies = [ "bitflags 1.3.2", "gio", - "glib", + "glib 0.16.9", "libc", "once_cell", "pango-sys", @@ -2097,17 +2178,17 @@ version = "0.16.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9e134909a9a293e04d2cc31928aa95679c5e4df954d0b85483159bd20d8f047f" dependencies = [ - "glib-sys", - "gobject-sys", + "glib-sys 0.16.3", + "gobject-sys 0.16.3", "libc", "system-deps", ] [[package]] name = "parking" -version = "2.1.0" +version = "2.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "14f2252c834a40ed9bb5422029649578e63aa341ac401f74e719dd1afda8394e" +checksum = "e52c774a4c39359c1d1c52e43f73dd91a75a614652c825408eec30c95a9b2067" [[package]] name = "parking_lot" @@ -2258,6 +2339,17 @@ version = "0.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" +[[package]] +name = "piper" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "668d31b1c4eba19242f2088b2bf3316b82ca31082a8335764db4e083db7485d4" +dependencies = [ + "atomic-waker", + "fastrand 2.0.1", + "futures-io", +] + [[package]] name = "pkg-config" version = "0.3.27" @@ -2504,13 +2596,13 @@ dependencies = [ [[package]] name = "regex" -version = "1.9.5" +version = "1.9.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "697061221ea1b4a94a624f67d0ae2bfe4e22b8a17b6a192afb11046542cc8c47" +checksum = "ebee201405406dbf528b8b672104ae6d6d63e6d118cb10e4d51abbc7b58044ff" dependencies = [ "aho-corasick", "memchr", - "regex-automata 0.3.8", + "regex-automata 0.3.9", "regex-syntax 0.7.5", ] @@ -2525,9 +2617,9 @@ dependencies = [ [[package]] name = "regex-automata" -version = "0.3.8" +version = "0.3.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c2f401f4955220693b56f8ec66ee9c78abffd8d1c4f23dc41a23839eb88f0795" +checksum = "59b23e92ee4318893fa3fe3e6fb365258efbfe6ac6ab30f090cdcbb7aa37efa9" dependencies = [ "aho-corasick", "memchr", @@ -2599,9 +2691,9 @@ dependencies = [ [[package]] name = "rustix" -version = "0.37.23" +version = "0.37.24" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4d69718bf81c6127a49dc64e44a742e8bb9213c0ff8869a22c308f84c1d4ab06" +checksum = "4279d76516df406a8bd37e7dff53fd37d1a093f997a3c34a5c21658c126db06d" dependencies = [ "bitflags 1.3.2", "errno", @@ -2613,14 +2705,14 @@ dependencies = [ [[package]] name = "rustix" -version = "0.38.13" +version = "0.38.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d7db8590df6dfcd144d22afd1b83b36c21a18d7cbc1dc4bb5295a8712e9eb662" +checksum = "d2f9da0cbd88f9f09e7814e388301c8414c51c62aa6ce1e4b5c551d49d96e531" dependencies = [ "bitflags 2.4.0", "errno", "libc", - "linux-raw-sys 0.4.7", + "linux-raw-sys 0.4.8", "windows-sys 0.48.0", ] @@ -2685,9 +2777,9 @@ dependencies = [ [[package]] name = "semver" -version = "1.0.18" +version = "1.0.19" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b0293b4b29daaf487284529cc2f5675b8e57c61f70167ba415a463651fd6a918" +checksum = "ad977052201c6de01a8ef2aa3378c4bd23217a056337d1d6da40468d267a4fb0" [[package]] name = "serde" @@ -2706,7 +2798,7 @@ checksum = "4eca7ac642d82aa35b60049a6eccb4be6be75e599bd2e9adb5f875a737654af2" dependencies = [ "proc-macro2", "quote", - "syn 2.0.33", + "syn 2.0.37", ] [[package]] @@ -2728,7 +2820,7 @@ checksum = "8725e1dfadb3a50f7e5ce0b1a540466f6ed3fe7a0fca2ac2b8b831d31316bd00" dependencies = [ "proc-macro2", "quote", - "syn 2.0.33", + "syn 2.0.37", ] [[package]] @@ -2762,7 +2854,7 @@ dependencies = [ "chrono", "hex", "indexmap 1.9.3", - "indexmap 2.0.0", + "indexmap 2.0.2", "serde", "serde_json", "serde_with_macros", @@ -2778,7 +2870,7 @@ dependencies = [ "darling", "proc-macro2", "quote", - "syn 2.0.33", + "syn 2.0.37", ] [[package]] @@ -2815,9 +2907,9 @@ dependencies = [ [[package]] name = "sha1" -version = "0.10.5" +version = "0.10.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f04293dc80c3993519f2d7f6f511707ee7094fe0c6d3406feb330cdb3540eba3" +checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba" dependencies = [ "cfg-if", "cpufeatures", @@ -2826,9 +2918,9 @@ dependencies = [ [[package]] name = "sha2" -version = "0.10.7" +version = "0.10.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "479fb9d862239e610720565ca91403019f2f00410f1864c5aa7479b950a76ed8" +checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8" dependencies = [ "cfg-if", "cpufeatures", @@ -2837,9 +2929,9 @@ dependencies = [ [[package]] name = "sharded-slab" -version = "0.1.4" +version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "900fba806f70c630b0a382d0d825e17a0f19fcd059a2ade1ff237bcddf446b31" +checksum = "c1b21f559e07218024e7e9f90f96f601825397de0e25420135f7f952453fed0b" dependencies = [ "lazy_static", ] @@ -2886,9 +2978,9 @@ dependencies = [ [[package]] name = "smallvec" -version = "1.11.0" +version = "1.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "62bb4feee49fdd9f707ef802e22365a35de4b7b299de4763d44bfea899442ff9" +checksum = "942b4a808e05215192e39f4ab80813e599068285906cc91aa64f923db842bd5a" [[package]] name = "socket2" @@ -2919,7 +3011,7 @@ dependencies = [ "bitflags 1.3.2", "futures-channel", "gio", - "glib", + "glib 0.16.9", "libc", "once_cell", "soup3-sys", @@ -2931,23 +3023,13 @@ version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "014bbeb1c4cdb30739dc181e8d98b7908f124d9555843afa89b5570aaf4ec62b" dependencies = [ - "gio-sys", - "glib-sys", - "gobject-sys", + "gio-sys 0.16.3", + "glib-sys 0.16.3", + "gobject-sys 0.16.3", "libc", "system-deps", ] -[[package]] -name = "spacebar" -version = "0.1.0" -dependencies = [ - "serde", - "serde_json", - "tauri", - "tauri-build 2.0.0-alpha.8 (registry+https://github.com/rust-lang/crates.io-index)", -] - [[package]] name = "stable_deref_trait" version = "1.2.0" @@ -3025,9 +3107,9 @@ dependencies = [ [[package]] name = "syn" -version = "2.0.33" +version = "2.0.37" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9caece70c63bfba29ec2fed841a09851b14a235c60010fa4de58089b6c025668" +checksum = "7303ef2c05cd654186cb250d29049a24840ca25d2747c25c0381c8d9e2f582e8" dependencies = [ "proc-macro2", "quote", @@ -3067,8 +3149,8 @@ dependencies = [ "gdkwayland-sys", "gdkx11-sys", "gio", - "glib", - "glib-sys", + "glib 0.16.9", + "glib-sys 0.16.3", "gtk", "image", "instant", @@ -3116,7 +3198,7 @@ checksum = "9d0e916b1148c8e263850e1ebcbd046f333e0683c724876bb0da63ea4373dc8a" [[package]] name = "tauri" version = "2.0.0-alpha.14" -source = "git+https://github.com/tauri-apps/tauri.git?branch=dev#9a2b2f49a5e1748ca4e095118e663ef025c5b87d" +source = "git+https://github.com/tauri-apps/tauri.git?branch=dev#1bce7397a496ca0cecf67fb5e3ec69d90fc871b0" dependencies = [ "anyhow", "bytes", @@ -3124,7 +3206,7 @@ dependencies = [ "dirs-next", "embed_plist", "futures-util", - "glib", + "glib 0.16.9", "glob", "gtk", "heck", @@ -3184,7 +3266,7 @@ dependencies = [ [[package]] name = "tauri-build" version = "2.0.0-alpha.8" -source = "git+https://github.com/tauri-apps/tauri.git?branch=dev#9a2b2f49a5e1748ca4e095118e663ef025c5b87d" +source = "git+https://github.com/tauri-apps/tauri.git?branch=dev#1bce7397a496ca0cecf67fb5e3ec69d90fc871b0" dependencies = [ "anyhow", "cargo_toml", @@ -3203,7 +3285,7 @@ dependencies = [ [[package]] name = "tauri-codegen" version = "2.0.0-alpha.7" -source = "git+https://github.com/tauri-apps/tauri.git?branch=dev#9a2b2f49a5e1748ca4e095118e663ef025c5b87d" +source = "git+https://github.com/tauri-apps/tauri.git?branch=dev#1bce7397a496ca0cecf67fb5e3ec69d90fc871b0" dependencies = [ "base64", "brotli", @@ -3228,7 +3310,7 @@ dependencies = [ [[package]] name = "tauri-macros" version = "2.0.0-alpha.7" -source = "git+https://github.com/tauri-apps/tauri.git?branch=dev#9a2b2f49a5e1748ca4e095118e663ef025c5b87d" +source = "git+https://github.com/tauri-apps/tauri.git?branch=dev#1bce7397a496ca0cecf67fb5e3ec69d90fc871b0" dependencies = [ "heck", "proc-macro2", @@ -3241,12 +3323,11 @@ dependencies = [ [[package]] name = "tauri-runtime" version = "1.0.0-alpha.1" -source = "git+https://github.com/tauri-apps/tauri.git?branch=dev#9a2b2f49a5e1748ca4e095118e663ef025c5b87d" +source = "git+https://github.com/tauri-apps/tauri.git?branch=dev#1bce7397a496ca0cecf67fb5e3ec69d90fc871b0" dependencies = [ "gtk", "http", "jni", - "rand 0.8.5", "raw-window-handle", "serde", "serde_json", @@ -3260,7 +3341,7 @@ dependencies = [ [[package]] name = "tauri-runtime-wry" version = "1.0.0-alpha.2" -source = "git+https://github.com/tauri-apps/tauri.git?branch=dev#9a2b2f49a5e1748ca4e095118e663ef025c5b87d" +source = "git+https://github.com/tauri-apps/tauri.git?branch=dev#1bce7397a496ca0cecf67fb5e3ec69d90fc871b0" dependencies = [ "cocoa 0.24.1", "gtk", @@ -3309,7 +3390,7 @@ dependencies = [ [[package]] name = "tauri-utils" version = "2.0.0-alpha.7" -source = "git+https://github.com/tauri-apps/tauri.git?branch=dev#9a2b2f49a5e1748ca4e095118e663ef025c5b87d" +source = "git+https://github.com/tauri-apps/tauri.git?branch=dev#1bce7397a496ca0cecf67fb5e3ec69d90fc871b0" dependencies = [ "brotli", "ctor", @@ -3320,6 +3401,7 @@ dependencies = [ "infer", "json-patch", "kuchikiki", + "log", "memchr", "phf 0.10.1", "proc-macro2", @@ -3351,9 +3433,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cb94d2f3cc536af71caac6b6fcebf65860b347e7ce0cc9ebe8f70d3e521054ef" dependencies = [ "cfg-if", - "fastrand 2.0.0", + "fastrand 2.0.1", "redox_syscall 0.3.5", - "rustix 0.38.13", + "rustix 0.38.15", "windows-sys 0.48.0", ] @@ -3376,22 +3458,22 @@ checksum = "8eaa81235c7058867fa8c0e7314f33dcce9c215f535d1913822a2b3f5e289f3c" [[package]] name = "thiserror" -version = "1.0.48" +version = "1.0.49" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9d6d7a740b8a666a7e828dd00da9c0dc290dff53154ea77ac109281de90589b7" +checksum = "1177e8c6d7ede7afde3585fd2513e611227efd6481bd78d2e82ba1ce16557ed4" dependencies = [ "thiserror-impl", ] [[package]] name = "thiserror-impl" -version = "1.0.48" +version = "1.0.49" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "49922ecae66cc8a249b77e68d1d0623c1b2c514f0060c27cdc68bd62a1219d35" +checksum = "10712f02019e9288794769fba95cd6847df9874d49d871d062172f9dd41bc4cc" dependencies = [ "proc-macro2", "quote", - "syn 2.0.33", + "syn 2.0.37", ] [[package]] @@ -3406,9 +3488,9 @@ dependencies = [ [[package]] name = "time" -version = "0.3.28" +version = "0.3.29" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "17f6bb557fd245c28e6411aa56b6403c689ad95061f50e4be16c274e70a17e48" +checksum = "426f806f4089c493dcac0d24c29c01e2c38baf8e30f1b716ee37e83d200b18fe" dependencies = [ "deranged", "itoa 1.0.9", @@ -3419,15 +3501,15 @@ dependencies = [ [[package]] name = "time-core" -version = "0.1.1" +version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7300fbefb4dadc1af235a9cef3737cea692a9d97e1b9cbcd4ebdae6f8868e6fb" +checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3" [[package]] name = "time-macros" -version = "0.2.14" +version = "0.2.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1a942f44339478ef67935ab2bbaec2fb0322496cf3cbe84b261e06ac3814c572" +checksum = "4ad70d68dba9e1f8aceda7aa6711965dfec1cac869f311a51bd08b3a2ccbce20" dependencies = [ "time-core", ] @@ -3465,9 +3547,9 @@ dependencies = [ [[package]] name = "tokio-util" -version = "0.7.8" +version = "0.7.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "806fe8c2c87eccc8b3267cbae29ed3ab2d0bd37fca70ab622e46aaa9375ddb7d" +checksum = "1d68074620f57a0b21594d9735eb2e98ab38b17f80d3fcb189fca266771ca60d" dependencies = [ "bytes", "futures-core", @@ -3504,7 +3586,7 @@ version = "0.19.15" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421" dependencies = [ - "indexmap 2.0.0", + "indexmap 2.0.2", "serde", "serde_spanned", "toml_datetime", @@ -3537,7 +3619,7 @@ checksum = "5f4f31f56159e98206da9efd823404b79b6ef3143b4a7ab76e67b1751b25a4ab" dependencies = [ "proc-macro2", "quote", - "syn 2.0.33", + "syn 2.0.37", ] [[package]] @@ -3615,9 +3697,9 @@ checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed" [[package]] name = "typenum" -version = "1.16.0" +version = "1.17.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba" +checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825" [[package]] name = "uds_windows" @@ -3723,9 +3805,9 @@ dependencies = [ [[package]] name = "waker-fn" -version = "1.1.0" +version = "1.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9d5b2c62b4012a3e1eca5a7e077d13b3bf498c4073e33ccd58626607748ceeca" +checksum = "f3c4517f54858c779bbcbf228f4fca63d121bf85fbecb2dc578cdf4a39395690" [[package]] name = "walkdir" @@ -3779,7 +3861,7 @@ dependencies = [ "once_cell", "proc-macro2", "quote", - "syn 2.0.33", + "syn 2.0.37", "wasm-bindgen-shared", ] @@ -3813,7 +3895,7 @@ checksum = "54681b18a46765f095758388f2d0cf16eb8d4169b639ab575a8f5693af210c7b" dependencies = [ "proc-macro2", "quote", - "syn 2.0.33", + "syn 2.0.37", "wasm-bindgen-backend", "wasm-bindgen-shared", ] @@ -3858,10 +3940,10 @@ dependencies = [ "gdk", "gdk-sys", "gio", - "gio-sys", - "glib", - "glib-sys", - "gobject-sys", + "gio-sys 0.16.3", + "glib 0.16.9", + "glib-sys 0.16.3", + "gobject-sys 0.16.3", "gtk", "gtk-sys", "javascriptcore-rs", @@ -3880,9 +3962,9 @@ dependencies = [ "bitflags 1.3.2", "cairo-sys-rs", "gdk-sys", - "gio-sys", - "glib-sys", - "gobject-sys", + "gio-sys 0.16.3", + "glib-sys 0.16.3", + "gobject-sys 0.16.3", "gtk-sys", "javascriptcore-rs-sys", "libc", @@ -3912,7 +3994,7 @@ checksum = "ac1345798ecd8122468840bcdf1b95e5dc6d2206c5e4b0eafa078d061f59c9bc" dependencies = [ "proc-macro2", "quote", - "syn 2.0.33", + "syn 2.0.37", ] [[package]] @@ -3948,9 +4030,9 @@ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" [[package]] name = "winapi-util" -version = "0.1.5" +version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178" +checksum = "f29e6f9198ba0d26b4c9f07dbe6f9ed633e1f3d5b8b414090084349e46a52596" dependencies = [ "winapi", ] @@ -4191,7 +4273,7 @@ dependencies = [ "dunce", "gdk", "gio", - "glib", + "glib 0.16.9", "gtk", "html5ever", "http", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 0f5cde1..bd30e45 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,5 +1,5 @@ [package] -name = "spacebar" +name = "app" version = "0.1.0" description = "Spacebar Client" authors = ["Puyodead1"] diff --git a/src-tauri/gen/apple/.gitignore b/src-tauri/gen/apple/.gitignore new file mode 100644 index 0000000..6726e2f --- /dev/null +++ b/src-tauri/gen/apple/.gitignore @@ -0,0 +1,3 @@ +xcuserdata/ +build/ +Externals/ diff --git a/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@1x.png b/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@1x.png new file mode 100644 index 0000000000000000000000000000000000000000..8a789fcadc5167051b4fcf35d950805f0ca86f3e GIT binary patch literal 630 zcmV-+0*U>JP)Oyc`{R2wfi7OFwr9VNpu5?v@ffS?Q zwxGC|N;g`oV=^@J|5A_L{oI@7g!`x#{(m{wLxb#S4EjV*oF%6iw zpgF%Y*7#YI)tCBN_qe7&zldCa0H?1y(&jlmGji{$WjL(Z2Rh6+x7mQYU!)jz)mW2anb^JX;)Io|>b3?yJadQb8-*haTJ|9rISSuC zDaVkt#p@EH-KtMP$#*4Z#wFMPY;Eye4neomy^;;WC^71c@sl?YE!ULH^sS_mip%9; z>ZUeV4XudFvF1v`WR`;gn_;aTL+*csa?UoKQi2N-W&fL`P?g)59J8bkg*TadI|U z4C||IsJ-FL*ht?#G-|Ap&Nj=&Pnr{Mvkw#Lc=@dfP3arR1{0Ty@-y#UzjM!h^Owxan?y0KElZmalp_^sPO>siT~`mNw!QdeCuY0T|gvBYdpz zd4{100+>e*5cD^|*lq$j$NpIjr3)uR82<%~KEN?w!|Z;EdQs51F>MH*k=w=KvSALE z4{rz~08`Hh0P)sE8s9Vu^UQlNd*226M--Ga^33dc2jR_4fDpI~Zp`7mee zpt#=j14B3KuB#H^i9hc{ddFihH{B0=>}8Itz&!LSu$G~nNfba3HAY1oH#Dx)5RW?0 zwoMK?Ng(M4#$fh;t059EEEST3D@FuS@ZSZ%LZuPdqTpEAgLeUcp5(Zm8h>+#*m-MC zciO|12;OI7Z598neoS*@O0>0ULf6O;?;umZ7*{jAO=#E{0`X*lQ;T&i z2-IAf!S#JI*4jpHi}t%jNsyH&tz+PJUDOPYQ8Oa9kRMaO(o=KZQ(SOxl-9f^iZ{=m z@*>aYkajk1Q7qO+N1lgo<41SP@MZus%B$ia4d3Y1z=w<;u}7H%Ctjz+NXw}_ zPako-vxlFc#vQNgXZ6`ZEqwG9pICv~+;9U!y^*>~y$lLXUd{@!;{ zHDo6n)iNTv3*;B(92FU{)RjCU(*}apSQ{xKm#6Wy+Jg zr=*#gZhNL&3wcOymI{v64N>Z%&0oHQJ#-)K_bw?n8A-AL`}3#1o;Mwb#0ygTx>=%% zC2b-f);mC+-TNLLBV*^5s3xK;KYgZ((IQD&)Z$cNBbdprfNLoQ7v^grT`F-F$waGu z>kbs?V;Fuv!+N}fz9?&ia_gWwfk-k;!@j+bRpAV!-FY&0eO)|2Y|aLVa6W@uDW{VzwX>Qa*AQ4kbilQVdvQ~?8`h+n`Qsq zatXs^z`ty3NcMHB16ZcVAgy1s*T&h)=lc8232vzM*;cTs%lMxK0?aPIbd-DNDX^fh vI)Gv;$-l{HMGIWQtMlhk2Ve)_l@9Pf(AK)Y)e@#M00000NkvXXu0mjf9RZ2T literal 0 HcmV?d00001 diff --git a/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@2x.png b/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@2x.png new file mode 100644 index 0000000000000000000000000000000000000000..1e2406ce7614479ac609d50b2e93268797ce0540 GIT binary patch literal 1337 zcmV-91;+Y`P)Ty@-y#UzjM!h^Owxan?y0KElZmalp_^sPO>siT~`mNw!QdeCuY0T|gvBYdpz zd4{100+>e*5cD^|*lq$j$NpIjr3)uR82<%~KEN?w!|Z;EdQs51F>MH*k=w=KvSALE z4{rz~08`Hh0P)sE8s9Vu^UQlNd*226M--Ga^33dc2jR_4fDpI~Zp`7mee zpt#=j14B3KuB#H^i9hc{ddFihH{B0=>}8Itz&!LSu$G~nNfba3HAY1oH#Dx)5RW?0 zwoMK?Ng(M4#$fh;t059EEEST3D@FuS@ZSZ%LZuPdqTpEAgLeUcp5(Zm8h>+#*m-MC zciO|12;OI7Z598neoS*@O0>0ULf6O;?;umZ7*{jAO=#E{0`X*lQ;T&i z2-IAf!S#JI*4jpHi}t%jNsyH&tz+PJUDOPYQ8Oa9kRMaO(o=KZQ(SOxl-9f^iZ{=m z@*>aYkajk1Q7qO+N1lgo<41SP@MZus%B$ia4d3Y1z=w<;u}7H%Ctjz+NXw}_ zPako-vxlFc#vQNgXZ6`ZEqwG9pICv~+;9U!y^*>~y$lLXUd{@!;{ zHDo6n)iNTv3*;B(92FU{)RjCU(*}apSQ{xKm#6Wy+Jg zr=*#gZhNL&3wcOymI{v64N>Z%&0oHQJ#-)K_bw?n8A-AL`}3#1o;Mwb#0ygTx>=%% zC2b-f);mC+-TNLLBV*^5s3xK;KYgZ((IQD&)Z$cNBbdprfNLoQ7v^grT`F-F$waGu z>kbs?V;Fuv!+N}fz9?&ia_gWwfk-k;!@j+bRpAV!-FY&0eO)|2Y|aLVa6W@uDW{VzwX>Qa*AQ4kbilQVdvQ~?8`h+n`Qsq zatXs^z`ty3NcMHB16ZcVAgy1s*T&h)=lc8232vzM*;cTs%lMxK0?aPIbd-DNDX^fh vI)Gv;$-l{HMGIWQtMlhk2Ve)_l@9Pf(AK)Y)e@#M00000NkvXXu0mjf9RZ2T literal 0 HcmV?d00001 diff --git a/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@3x.png b/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@3x.png new file mode 100644 index 0000000000000000000000000000000000000000..6b072d1590ce0f86ae365511474adf8998e38382 GIT binary patch literal 1942 zcmV;H2Wj|;P)O2hZi6qjL~QbOE(ZwC3ru zEUGlXM&l&J{ClA`?}ysB4{FVJVDdZ?=yzhmwZO};9Jn&qB{QK`Z-d%IYivFMEPO~5 zTcS0o(EYFhJ1l~1`kEM~Yh-Pxr*nj++VukTuIEVDzkt{T0#%S3v)hBwJd79N$+qmGSq?8DVzO28snVcJV4=(v>;# z1E5h1eRj^Fd#&_by2^lgK}}|rmA@271X9Gbcq* zRvfe1y@VM34C=0Dfrf-UQz*spTD<1OX+T?#$P&`5LjrchcRH>lk~u}V7&iqO2CbR* z&V^d{G1P6Zlkc}tifM$p^(9ior{uE>1!zVW@popJ6xBdurp$(kWFb>j$lSq`lVI$> z{N#vRT*JnE<6`1GcIj#;4m!+oH?cHCAX8z|m=^c#UH}~4im*99Bw%eGQM{OoaEo~X z>ns7CI8`3y?+i3l^(21GK~tlynrVp_A^~G$j#I8G?7u}0c2MA)9@>w?17>y`9Gjke7Ge|QdphrQ?U{dg z*K@~ZKMR;E-y>@_sS)8KbqJecaIW~T^8DEcY^@`+x;~HdF_L$^F?K#Y`l=KUX zGFWwA1N{v`9l-$`ZP!bL_6t}Z*kgyFzj%?1VNe9so~}q)eH5J+-*2C%8*#d^XAAWA zJ1-o|)fIJNs{avS`T{9LazUGV+he#%ETW=-*_=5z)K8|4Xr}ew906FsIQ{+S3Fuc> z5Q{&FaxS3RAz*JorHSGj*9o$LH=(z$v14;-R>oBI;T=+!PwJ5%mtE5qAnli%aukEd zY5H1`qcT3M#1?shmUfA6&(l{@L+uGDn))!yk4_N0#f)CUDW;&CNmpMg#kCuu*0*Vz_Ib0P`~;?fn-!UpnTV zTp^jt-C=3da?erIXU6(`GxT;w%@J-0P59x{7p2*31ennhn7|*T!SfEi4!F zFrimY9jpKeKot*3N`=+fVA6|!!2#K1V}Ih-(A3B|XRJo<@uy>_jn~OFr)KPUQ(x1) zx~2k5E0Lu>W-G2#Ai%}bl9_`iP824?ab(YlyP%$1fM0gPMz`~0xb>qbt@_v5ziGPu zwGy>c$MXO&d!*z}+Pj*yOo|mhH!`~+^jVj{*h;5Vz}m7rdUl*SS=%(Qwg&2f_kn{S zl8~o`X%93DcUeCvg!aiH`CmT(9Q}N(8P`$Fm_s?eu`w?P=b1Ij#IgkpM*#{C zSJ*m5#l-MA)3{55S3W_6DhF$+2)&w{jKjgv}LH^bae^1%{D_=md!eBXbu>T(Y zmdH3FG6v|40~Q|AIOu_w3pWnAR60IE%WU2`{z~v0>uvTGB*Hc6R}Z{`%2!&fP2MFu z@&WMWHcC<4#3xb8Hfco;Ub}@N`vD4$2j8}NI9LM_{LO<25b`oh-S;lNX1SiWXtb1> zo=;Zwux~Kf%oDWMcl)7VTS+c4EY_fPg#ml!$8Yh-Fx2vAfa@NXMkfV{ZPg-N!RBqq zYn{DsK!5av>}NaS_O(iUx5VZ{8|WR2pcdXkJu9V~#1vaxRN>&V@$3oHjp_ZgQ~4{U zG9)as;WqJ9X+JJiQfy?X$v0I&LiU=SD*d2<70h{^mCSoPv4jBCx&+C~`893!Wpzeg zrBu_Vy>it6bxWS9JW6sGcdGnz5v@ylmsDB6`2zh9j_7Ag5#R`L1ULd50geDifFr;W c;0hi808(0r!t*?Kg8%>k07*qoM6N<$f=M2uX#fBK literal 0 HcmV?d00001 diff --git a/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@1x.png b/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@1x.png new file mode 100644 index 0000000000000000000000000000000000000000..2ceb6dbceeb8c52f5064a77ef1af3d14539ad1d9 GIT binary patch literal 952 zcmV;p14sOcP)(} z?;zCRYhe2Tv8VZ8=89Eunz6CRe*^7DIe!$`dy(rG9i}p+6zbYIP*(+n zY5wpGdgKN$`-xMk0gsPBG0tT$<=dbR-voM20L7d;Jr8}mgX=;Pl-7ANH8g>d*R=tq z1Psw}m_hU&gSz|{IB;Epiv8d<3hcWIb%pjl1dNdS5N&}VP~R?oY(eC!sZB`)Xk?@% zyj@TtkOhMK15hV#0i6TTV|StUUm*3p;@dnoSt$bhId1F(CSN+GvI-NDYUy_FbdvTM z9nUh$P2Esi?{iFZh}x^|a_L*a*~ak;Nv9I2TU50-}pTRZ9}0&3_s$+qm~sZLr4{2OOMzg$g9w!KE?#gpq$)5=q+OHAoIl9_C=HfKkG zoqeP)E)I>)nV(E*Ns_Omh~hv*}i)~jyyvIhF& zW2i2IE^?x!CF_d%Brh=}wwl!H9W3%r$@O$XziO_HS>RfxT-8M^519yPF(-OH} zRTi~M2B~%>6~Ndd=%<4m`&~87vf*1IoQ_ja9mlybRHg4s?j0rhYybp;Fr{^O5^=rI1gQY)t1k*1rb- aKhQrzY%72U?{(1t00000;Q literal 0 HcmV?d00001 diff --git a/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@2x-1.png b/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@2x-1.png new file mode 100644 index 0000000000000000000000000000000000000000..3c164c8e30ba280f315d4669816fd83af186726f GIT binary patch literal 1913 zcmV-<2Zs2GP)M~VoXd_ zeB#B3CK4~iSZ_fRgA%3sAR=Kd3p)9S%tYof&96}Q)Dh&1+3Wt)3zA)$AiF69}sLE=Z^0=CU%)7n$G=UXOx+BayIzNRgbJHO zko{R*gSgCku8G=!4`S*tzRL~)^#sz~2@LaEs#+~E#Kki_*WC@X`)gqBZjKcJ&+C1k zw8ofE?&bS<_R~#w^4YI|^;>nmi#ffYuGY1t%_bG_w3)Hzn>>rkaJp8@0$?iLCzl^x zP%I*+SfKVQn0udx+3_(j>n637xUrXxx~aII+-qM0^Uy(c{z?oTC<|YY)t$ zhk%9a^qH)UDr6*N@=Bc@EBPm@;4hy=B`8xcvsR93x|~8pSaCf8eanODlFPU0mLyxo z5|Y`IUjiG0SRc%lckvOcB3Qc$arf+a+l#oGp=H{y3zS+xtD)-&Sv9u8-1iD_WHW&> z&adCBaVPh@RAthVwPek!7gK7wcQ&Km;Rx6rsGlGVk`U&Rh~~NhEp+EB%`r@&R&=Q& z4CF`exvnp3HqF-cPaowq_dV6!b$w77)o2}AFqexLCn33riw@*Q$t$i$)$p@@X+TKs z>&IA0Ce3M#q{4W;gu}&6$Kwb|oMx?pAFweL?e4lh!&WQnliBsxjm^7fCs#r)s$e=%0 zh= zBp&paj`h2KgIa9YHbu!hVpaZ?P=Z@x?*KH2m2^!3vZ6&L@2z2brR!O(EOK-wI~<(S z$s_owi@3EstNbFVA``+`FD3QP=6*Mc1BCPa`8o4hvx0K$OP?A1SNF4ILnp;Tc^3t&)dnR9z zWbCg;;CfUB>XQa7(enxLSFiSTN^;N;tfwhk){gBNg@XGTja92v8XJ+v>VAEm;UK+U zkHmo%xrzsD}X>4fiVa4`2Q_8*`?H@ZN_3;|m zBnz|c9bnl8YIG>*@x*TpU(z9-B^g%(+4zUUuzS0r8P=o$^;;l?tzTeXxL zp1|t|*F)A$ds-`e*A4q7`@R{zE%2r|uN}{#Ay{FHwcE9G-a1DkJzn=Qh9#jycJ?>e zZZ_AtUkrk7N-PD(fA3n}$O%l^xGNFTROUw_1XaW!F}p$#grEiUax&;@@Tl*PrJb00000NkvXXu0mjfz?iB6 literal 0 HcmV?d00001 diff --git a/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@2x.png b/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@2x.png new file mode 100644 index 0000000000000000000000000000000000000000..3c164c8e30ba280f315d4669816fd83af186726f GIT binary patch literal 1913 zcmV-<2Zs2GP)M~VoXd_ zeB#B3CK4~iSZ_fRgA%3sAR=Kd3p)9S%tYof&96}Q)Dh&1+3Wt)3zA)$AiF69}sLE=Z^0=CU%)7n$G=UXOx+BayIzNRgbJHO zko{R*gSgCku8G=!4`S*tzRL~)^#sz~2@LaEs#+~E#Kki_*WC@X`)gqBZjKcJ&+C1k zw8ofE?&bS<_R~#w^4YI|^;>nmi#ffYuGY1t%_bG_w3)Hzn>>rkaJp8@0$?iLCzl^x zP%I*+SfKVQn0udx+3_(j>n637xUrXxx~aII+-qM0^Uy(c{z?oTC<|YY)t$ zhk%9a^qH)UDr6*N@=Bc@EBPm@;4hy=B`8xcvsR93x|~8pSaCf8eanODlFPU0mLyxo z5|Y`IUjiG0SRc%lckvOcB3Qc$arf+a+l#oGp=H{y3zS+xtD)-&Sv9u8-1iD_WHW&> z&adCBaVPh@RAthVwPek!7gK7wcQ&Km;Rx6rsGlGVk`U&Rh~~NhEp+EB%`r@&R&=Q& z4CF`exvnp3HqF-cPaowq_dV6!b$w77)o2}AFqexLCn33riw@*Q$t$i$)$p@@X+TKs z>&IA0Ce3M#q{4W;gu}&6$Kwb|oMx?pAFweL?e4lh!&WQnliBsxjm^7fCs#r)s$e=%0 zh= zBp&paj`h2KgIa9YHbu!hVpaZ?P=Z@x?*KH2m2^!3vZ6&L@2z2brR!O(EOK-wI~<(S z$s_owi@3EstNbFVA``+`FD3QP=6*Mc1BCPa`8o4hvx0K$OP?A1SNF4ILnp;Tc^3t&)dnR9z zWbCg;;CfUB>XQa7(enxLSFiSTN^;N;tfwhk){gBNg@XGTja92v8XJ+v>VAEm;UK+U zkHmo%xrzsD}X>4fiVa4`2Q_8*`?H@ZN_3;|m zBnz|c9bnl8YIG>*@x*TpU(z9-B^g%(+4zUUuzS0r8P=o$^;;l?tzTeXxL zp1|t|*F)A$ds-`e*A4q7`@R{zE%2r|uN}{#Ay{FHwcE9G-a1DkJzn=Qh9#jycJ?>e zZZ_AtUkrk7N-PD(fA3n}$O%l^xGNFTROUw_1XaW!F}p$#grEiUax&;@@Tl*PrJb00000NkvXXu0mjfz?iB6 literal 0 HcmV?d00001 diff --git a/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@3x.png b/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@3x.png new file mode 100644 index 0000000000000000000000000000000000000000..f4b921929530f136bc3e62d65a9648d5c8b45dc0 GIT binary patch literal 2730 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 literal 0 HcmV?d00001 diff --git a/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@2x-1.png b/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@2x-1.png new file mode 100644 index 0000000000000000000000000000000000000000..176a0a9213ec017a9b5b4e0e25f1829b18e1d2c3 GIT binary patch literal 2548 zcmV)qw*$=M&bfDHA)J#v zGduTj&Ub$2d!668GX>%$hC=Z!g#bYSFaQ_;3;>1_01N;I00V%b1ONko0l)xYC;`9# zU;r=xn7T0QyIEkqw#9N}4RTxX zh$fHgxqLs)m31(!MGj!)iOMhHfArV8Qa?`|cjtOC1u;7SEqE^x4Xh-7{~n^T>-6~X zBV_j7PxS2X@nH}^cH+8HYp@fbr0wzxL__1m+jkSK-m1q>{DsUTJBeO+I#Uoin@uHF zf$|;1cmIay^0yIPaHqtAMJXSDfXu;fKsnFgy2a{~veE>ZJn?nqb9nC~x?v~rw$Bk2 z3);7gu!ws46qyIN;MjS9SjfaL=CYZ2X=Z|G{msxkfOl@z0fai`v~9<|#GgGvwDxu# zsA#JUf;eU01@&{~vqW#bnfTtr#P7WilZ4|JN)9B{^SEYYlxX7z@Ocv5=Cc`kMk;_B z5nr}hXWIhGS}jO8_#y_gWCigZ4-tRlXRzkWG3e*@T+U-Ka*x$Iw9&VW`1Xg1??SsH zYqT!`ZhnHC9B_$NMtdw9Uz`nqMuNj4qS1|3$obTv5?~p?98C5lTrdtz+4%>eEnieK zE<2Or1lq_k7!#^_@7jg7{)G42h-T2%Y*bydE!cQpwgE4FE}*?002INZIp8-84O?Ra zaLs1LSBd6`S$A|1-})uudkzt;x)FneZ;WQ$;Om)dNwseI^~9e!2+jLC`tDV8wZ1S{ zTTYQ}2%0~*91}O2Y{FWvfg%JnVaXLl{g+^HrmXlD`m;P6_NnbQwH0}YfW=G1&UVslQYxiaXP zvYOrXA12=QN21O5Xn-kC>Uj$`LVASH8$YSnZ2OdgHeF6``qtG%nz)T_B2~xNg$5cc z2rnP6(8y*cAg_}knp7Ml{?H!cJNLs^ZB~sFja+gS@h2W7{`mKiXD(IECH4qDqJ?-} zel^+I&LE9RpGaG0+^^2LME-uo1_li10@_=1Ez%L>lLx*H<%Txi_yrd2H|Y}U6dK5y z)OHLJUAi{C|7%-ueo*q(o?%@Cq>$SmKz0fAVg!$YQ3qgx=0t1757nym9J-vVdvBCX zZi)7NmneufLixksZ^9P9SxsN!6r--AckE1OuD-lb2r5-+O8_e1SVx^c1ix8RAzv*~ z&{hYAJ_0lT-+sN;GZ3fnfy!uDXUqBfX~qCn8PP?J z7R~AgaFbw}|MLVisEXOiHN8l(FWaC%)?HHSagp7mWM=#UY{fx?lJz6_N)DTXneo&>5iajo4Qkvu*Zh#|rdT^T zp=_Mw;!0+w(|Z-=2cS4z&VYewI7uzMH6|8@uY?sj*WjUr%>yVMn;CV!i&wpYRv@n) zhx5&YqZ&*+{b0_k6+3=Q?M6LT`hPXI1 zA5^LM7QNnXF4Y0X?w<(XhrT*l_gd=acP>MaojObLHy=ov*Fd8HQde(tdVAenD)8J{ zWwB-B=rt9|Tj>;1i>*XgY_nEn*S2HWA6dN}=T7T2RqsVDowM%6_LZZ?S{NII9g81f z+q?#{K7~N#*@RP+*LCf>8;C#l2$|pR!HVK+ZGW@k8shhS8Ip;UcMP}uee}m<9vdV2 z@8KH27~S&Rg5}~n-lu&wVzFbZwRxsr)b}u9$3mYwm4HNuZ^`LX0~>E5-f$ECuSNzq z+I~^aF)|hASHijOBG$Oy!hVU-l%v}HogF%&=_vWq%s$q0nly;?HjSgF56qD{b=0|| zgpOARB%4L@E(`ryWvcwzCk$c^Z^~&^t@{P&xu}W#6Gh9MJgQdJmLOssZI7DL

JT zr#9?6B*TD_$ue>Ia_F?!_XzLiZP%XXRt{{>J)iLpJqQC#bu^!FRL0qS% zxxa}bZa`#z8ieYZzX6G2n*f~GfNnAezo{GH`D`9mY+H%_Eqtvx@HGd6pZuNx3X_2u zJNqP=z4uv*wv5ah0z?;tdYR0=uM(X;tQ?~!nShMAxZ4{>{h5ezH$johOUj*jD28w*b(0!d#YNnYn0T04!n2IPrhDnZJ_x=cCxs zJ4lvE$`3fQBK^=g)8EdL$Y%F8CP|kQ2sE7#w$QaO0LpT6Mke)wPON+dLLPvRvU4xo zk{=&q_XNH89?SGDpbg7jbNsYdl)YbW&6f>rN)wNvuyD^D8TZnvZ$?pDzV2!kP669c z!uN#(fC0b&U;r?b0AK(x02lxaB>)%z3;+fILkR!|00V$;p7JulfpvQZ7J4QC0000< KMNUMnLSTYTPS6Sf literal 0 HcmV?d00001 diff --git a/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@2x.png b/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@2x.png new file mode 100644 index 0000000000000000000000000000000000000000..176a0a9213ec017a9b5b4e0e25f1829b18e1d2c3 GIT binary patch literal 2548 zcmV)qw*$=M&bfDHA)J#v zGduTj&Ub$2d!668GX>%$hC=Z!g#bYSFaQ_;3;>1_01N;I00V%b1ONko0l)xYC;`9# zU;r=xn7T0QyIEkqw#9N}4RTxX zh$fHgxqLs)m31(!MGj!)iOMhHfArV8Qa?`|cjtOC1u;7SEqE^x4Xh-7{~n^T>-6~X zBV_j7PxS2X@nH}^cH+8HYp@fbr0wzxL__1m+jkSK-m1q>{DsUTJBeO+I#Uoin@uHF zf$|;1cmIay^0yIPaHqtAMJXSDfXu;fKsnFgy2a{~veE>ZJn?nqb9nC~x?v~rw$Bk2 z3);7gu!ws46qyIN;MjS9SjfaL=CYZ2X=Z|G{msxkfOl@z0fai`v~9<|#GgGvwDxu# zsA#JUf;eU01@&{~vqW#bnfTtr#P7WilZ4|JN)9B{^SEYYlxX7z@Ocv5=Cc`kMk;_B z5nr}hXWIhGS}jO8_#y_gWCigZ4-tRlXRzkWG3e*@T+U-Ka*x$Iw9&VW`1Xg1??SsH zYqT!`ZhnHC9B_$NMtdw9Uz`nqMuNj4qS1|3$obTv5?~p?98C5lTrdtz+4%>eEnieK zE<2Or1lq_k7!#^_@7jg7{)G42h-T2%Y*bydE!cQpwgE4FE}*?002INZIp8-84O?Ra zaLs1LSBd6`S$A|1-})uudkzt;x)FneZ;WQ$;Om)dNwseI^~9e!2+jLC`tDV8wZ1S{ zTTYQ}2%0~*91}O2Y{FWvfg%JnVaXLl{g+^HrmXlD`m;P6_NnbQwH0}YfW=G1&UVslQYxiaXP zvYOrXA12=QN21O5Xn-kC>Uj$`LVASH8$YSnZ2OdgHeF6``qtG%nz)T_B2~xNg$5cc z2rnP6(8y*cAg_}knp7Ml{?H!cJNLs^ZB~sFja+gS@h2W7{`mKiXD(IECH4qDqJ?-} zel^+I&LE9RpGaG0+^^2LME-uo1_li10@_=1Ez%L>lLx*H<%Txi_yrd2H|Y}U6dK5y z)OHLJUAi{C|7%-ueo*q(o?%@Cq>$SmKz0fAVg!$YQ3qgx=0t1757nym9J-vVdvBCX zZi)7NmneufLixksZ^9P9SxsN!6r--AckE1OuD-lb2r5-+O8_e1SVx^c1ix8RAzv*~ z&{hYAJ_0lT-+sN;GZ3fnfy!uDXUqBfX~qCn8PP?J z7R~AgaFbw}|MLVisEXOiHN8l(FWaC%)?HHSagp7mWM=#UY{fx?lJz6_N)DTXneo&>5iajo4Qkvu*Zh#|rdT^T zp=_Mw;!0+w(|Z-=2cS4z&VYewI7uzMH6|8@uY?sj*WjUr%>yVMn;CV!i&wpYRv@n) zhx5&YqZ&*+{b0_k6+3=Q?M6LT`hPXI1 zA5^LM7QNnXF4Y0X?w<(XhrT*l_gd=acP>MaojObLHy=ov*Fd8HQde(tdVAenD)8J{ zWwB-B=rt9|Tj>;1i>*XgY_nEn*S2HWA6dN}=T7T2RqsVDowM%6_LZZ?S{NII9g81f z+q?#{K7~N#*@RP+*LCf>8;C#l2$|pR!HVK+ZGW@k8shhS8Ip;UcMP}uee}m<9vdV2 z@8KH27~S&Rg5}~n-lu&wVzFbZwRxsr)b}u9$3mYwm4HNuZ^`LX0~>E5-f$ECuSNzq z+I~^aF)|hASHijOBG$Oy!hVU-l%v}HogF%&=_vWq%s$q0nly;?HjSgF56qD{b=0|| zgpOARB%4L@E(`ryWvcwzCk$c^Z^~&^t@{P&xu}W#6Gh9MJgQdJmLOssZI7DL

JT zr#9?6B*TD_$ue>Ia_F?!_XzLiZP%XXRt{{>J)iLpJqQC#bu^!FRL0qS% zxxa}bZa`#z8ieYZzX6G2n*f~GfNnAezo{GH`D`9mY+H%_Eqtvx@HGd6pZuNx3X_2u zJNqP=z4uv*wv5ah0z?;tdYR0=uM(X;tQ?~!nShMAxZ4{>{h5ezH$johOUj*jD28w*b(0!d#YNnYn0T04!n2IPrhDnZJ_x=cCxs zJ4lvE$`3fQBK^=g)8EdL$Y%F8CP|kQ2sE7#w$QaO0LpT6Mke)wPON+dLLPvRvU4xo zk{=&q_XNH89?SGDpbg7jbNsYdl)YbW&6f>rN)wNvuyD^D8TZnvZ$?pDzV2!kP669c z!uN#(fC0b&U;r?b0AK(x02lxaB>)%z3;+fILkR!|00V$;p7JulfpvQZ7J4QC0000< KMNUMnLSTYTPS6Sf literal 0 HcmV?d00001 diff --git a/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@3x.png b/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-40x40@3x.png new file mode 100644 index 0000000000000000000000000000000000000000..e6b8df043795887a960f2ebddc7d150d5d10cea2 GIT binary patch literal 3711 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%0A6JYJu7KniSii~PzZ43zgNeh74_ITU}z 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 literal 0 HcmV?d00001 diff --git a/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-76x76@1x.png b/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-76x76@1x.png new file mode 100644 index 0000000000000000000000000000000000000000..84868137ed6d4a8fe8e28a88e54029e4999b83a2 GIT binary patch literal 2415 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 h<^XemIl%tYBcjFxkLvS^A)T%Q-uje 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 literal 0 HcmV?d00001 diff --git a/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-83.5x83.5@2x.png b/src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-83.5x83.5@2x.png new file mode 100644 index 0000000000000000000000000000000000000000..80dda578698b46f7c8ed6873a0d1a1bdf8aa2174 GIT binary patch literal 5259 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 + + + + method + development + + diff --git a/src-tauri/gen/apple/Podfile b/src-tauri/gen/apple/Podfile new file mode 100644 index 0000000..c34954c --- /dev/null +++ b/src-tauri/gen/apple/Podfile @@ -0,0 +1,21 @@ +# Uncomment the next line to define a global platform for your project + +target 'app_iOS' do +platform :ios, '13.0' + # Pods for app_iOS +end + +target 'app_macOS' do +platform :osx, '11.0' + # Pods for app_macOS +end + +# Delete the deployment target for iOS and macOS, causing it to be inherited from the Podfile +post_install do |installer| + installer.pods_project.targets.each do |target| + target.build_configurations.each do |config| + config.build_settings.delete 'IPHONEOS_DEPLOYMENT_TARGET' + config.build_settings.delete 'MACOSX_DEPLOYMENT_TARGET' + end + end +end diff --git a/src-tauri/gen/apple/Sources/app/bindings/bindings.h b/src-tauri/gen/apple/Sources/app/bindings/bindings.h new file mode 100644 index 0000000..5152200 --- /dev/null +++ b/src-tauri/gen/apple/Sources/app/bindings/bindings.h @@ -0,0 +1,8 @@ +#pragma once + +namespace ffi { + extern "C" { + void start_app(); + } +} + diff --git a/src-tauri/gen/apple/Sources/app/main.mm b/src-tauri/gen/apple/Sources/app/main.mm new file mode 100644 index 0000000..7793a9d --- /dev/null +++ b/src-tauri/gen/apple/Sources/app/main.mm @@ -0,0 +1,6 @@ +#include "bindings/bindings.h" + +int main(int argc, char * argv[]) { + ffi::start_app(); + return 0; +} diff --git a/src-tauri/gen/apple/app.xcodeproj/project.pbxproj b/src-tauri/gen/apple/app.xcodeproj/project.pbxproj new file mode 100644 index 0000000..5e1b855 --- /dev/null +++ b/src-tauri/gen/apple/app.xcodeproj/project.pbxproj @@ -0,0 +1,459 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 54; + objects = { + +/* Begin PBXBuildFile section */ + 1E66B65D7A273E2840503E59 /* libspacebar.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 76712C9FE213727E94478C24 /* libspacebar.a */; }; + 299814393FFBF154FAD94CA8 /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F3673D372C5ABDD1AD6E7067 /* QuartzCore.framework */; }; + 31585529C029A01BE249A285 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1E81BD6B453D87B7F7B1597B /* CoreGraphics.framework */; }; + 324A1E9A4258E7911D4DAC39 /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9FACFFCB6E3743955F72464C /* Security.framework */; }; + 53CDD0ACFBE8BDF1550B2E53 /* main.mm in Sources */ = {isa = PBXBuildFile; fileRef = 682535EEFE1DA20BE07B123C /* main.mm */; }; + 5C516481BCA83A182C2BCC94 /* assets in Resources */ = {isa = PBXBuildFile; fileRef = 3842AE2A64FB9933D0400EA4 /* assets */; }; + 618672DC8A5E0605441C9935 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0E2B15F176E4B041AE33EEEA /* UIKit.framework */; }; + 836D84C5F07860664DAF79C8 /* WebKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D8F57162F5CC7AEDD55F173D /* WebKit.framework */; }; + 9D59FB167BB4E699DA17D1E9 /* MetalKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 04B56F58E2E44DDE1D67E7B7 /* MetalKit.framework */; }; + C6BD59C055C986EA4A77FDA2 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = AF1DE57E7D9CF13BB2E0E038 /* Assets.xcassets */; }; + E68F6CFDAED6503ABB4044A5 /* Metal.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CE1209BFDECB28E00189B168 /* Metal.framework */; }; +/* End PBXBuildFile section */ + +/* Begin PBXFileReference section */ + 007E478DB8BC37A788C4730F /* app_iOS.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = app_iOS.entitlements; sourceTree = ""; }; + 04B56F58E2E44DDE1D67E7B7 /* MetalKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MetalKit.framework; path = System/Library/Frameworks/MetalKit.framework; sourceTree = SDKROOT; }; + 0E2B15F176E4B041AE33EEEA /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; }; + 1631E4CFBB715FFDBF919C8C /* main.rs */ = {isa = PBXFileReference; path = main.rs; sourceTree = ""; }; + 17B52554D60D361AFE791C3E /* lib.rs */ = {isa = PBXFileReference; path = lib.rs; sourceTree = ""; }; + 1E81BD6B453D87B7F7B1597B /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; }; + 306B9C1792E7B1C53FA262A6 /* bindings.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = bindings.h; sourceTree = ""; }; + 3842AE2A64FB9933D0400EA4 /* assets */ = {isa = PBXFileReference; lastKnownFileType = folder; path = assets; sourceTree = SOURCE_ROOT; }; + 682535EEFE1DA20BE07B123C /* main.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; path = main.mm; sourceTree = ""; }; + 76712C9FE213727E94478C24 /* libspacebar.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libspacebar.a; sourceTree = ""; }; + 81E326B61ED92E1D1EECF952 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; + 9FACFFCB6E3743955F72464C /* Security.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Security.framework; path = System/Library/Frameworks/Security.framework; sourceTree = SDKROOT; }; + AF1DE57E7D9CF13BB2E0E038 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; + CE1209BFDECB28E00189B168 /* Metal.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Metal.framework; path = System/Library/Frameworks/Metal.framework; sourceTree = SDKROOT; }; + D8F57162F5CC7AEDD55F173D /* WebKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = WebKit.framework; path = System/Library/Frameworks/WebKit.framework; sourceTree = SDKROOT; }; + F3673D372C5ABDD1AD6E7067 /* QuartzCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = System/Library/Frameworks/QuartzCore.framework; sourceTree = SDKROOT; }; + FBC720DFA1D01F55B0A32344 /* app_iOS.app */ = {isa = PBXFileReference; includeInIndex = 0; lastKnownFileType = wrapper.application; path = app_iOS.app; sourceTree = BUILT_PRODUCTS_DIR; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + 4825CF6C55516D374210C8E1 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 1E66B65D7A273E2840503E59 /* libspacebar.a in Frameworks */, + 31585529C029A01BE249A285 /* CoreGraphics.framework in Frameworks */, + E68F6CFDAED6503ABB4044A5 /* Metal.framework in Frameworks */, + 9D59FB167BB4E699DA17D1E9 /* MetalKit.framework in Frameworks */, + 299814393FFBF154FAD94CA8 /* QuartzCore.framework in Frameworks */, + 324A1E9A4258E7911D4DAC39 /* Security.framework in Frameworks */, + 618672DC8A5E0605441C9935 /* UIKit.framework in Frameworks */, + 836D84C5F07860664DAF79C8 /* WebKit.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 1BBF8C620E54F8C028CA130C /* Frameworks */ = { + isa = PBXGroup; + children = ( + 1E81BD6B453D87B7F7B1597B /* CoreGraphics.framework */, + 76712C9FE213727E94478C24 /* libspacebar.a */, + CE1209BFDECB28E00189B168 /* Metal.framework */, + 04B56F58E2E44DDE1D67E7B7 /* MetalKit.framework */, + F3673D372C5ABDD1AD6E7067 /* QuartzCore.framework */, + 9FACFFCB6E3743955F72464C /* Security.framework */, + 0E2B15F176E4B041AE33EEEA /* UIKit.framework */, + D8F57162F5CC7AEDD55F173D /* WebKit.framework */, + ); + name = Frameworks; + sourceTree = ""; + }; + 2867E55E70187711EE923EBD /* app_iOS */ = { + isa = PBXGroup; + children = ( + 007E478DB8BC37A788C4730F /* app_iOS.entitlements */, + 81E326B61ED92E1D1EECF952 /* Info.plist */, + ); + path = app_iOS; + sourceTree = ""; + }; + 329C38BE5E8B40354375D0D0 /* bindings */ = { + isa = PBXGroup; + children = ( + 306B9C1792E7B1C53FA262A6 /* bindings.h */, + ); + path = bindings; + sourceTree = ""; + }; + 78CBE3E5873199C0066F12DF /* Sources */ = { + isa = PBXGroup; + children = ( + FB1C68C0357A1866B3D27465 /* app */, + ); + path = Sources; + sourceTree = ""; + }; + 855775165ACE55D883F89EB3 /* src */ = { + isa = PBXGroup; + children = ( + 17B52554D60D361AFE791C3E /* lib.rs */, + 1631E4CFBB715FFDBF919C8C /* main.rs */, + ); + name = src; + path = ../../src; + sourceTree = ""; + }; + 87648061424F20D5D4871E9E = { + isa = PBXGroup; + children = ( + 3842AE2A64FB9933D0400EA4 /* assets */, + AF1DE57E7D9CF13BB2E0E038 /* Assets.xcassets */, + 2867E55E70187711EE923EBD /* app_iOS */, + BAFB695BB8415511FEC74542 /* Externals */, + 78CBE3E5873199C0066F12DF /* Sources */, + 855775165ACE55D883F89EB3 /* src */, + 1BBF8C620E54F8C028CA130C /* Frameworks */, + EE72B6AC647386A11F795E44 /* Products */, + ); + sourceTree = ""; + }; + BAFB695BB8415511FEC74542 /* Externals */ = { + isa = PBXGroup; + children = ( + ); + path = Externals; + sourceTree = ""; + }; + EE72B6AC647386A11F795E44 /* Products */ = { + isa = PBXGroup; + children = ( + FBC720DFA1D01F55B0A32344 /* app_iOS.app */, + ); + name = Products; + sourceTree = ""; + }; + FB1C68C0357A1866B3D27465 /* app */ = { + isa = PBXGroup; + children = ( + 682535EEFE1DA20BE07B123C /* main.mm */, + 329C38BE5E8B40354375D0D0 /* bindings */, + ); + path = app; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXNativeTarget section */ + E86255CB8A1836C0BF0C0E14 /* app_iOS */ = { + isa = PBXNativeTarget; + buildConfigurationList = CDCB6DFA1AEBFEE3F608BA27 /* Build configuration list for PBXNativeTarget "app_iOS" */; + buildPhases = ( + E028F843270D8815FCE2B491 /* Build Rust Code */, + 81BE6BC5B603407AF570E994 /* Sources */, + 2FBCB8C3ED193E9C4A9FDB59 /* Resources */, + 4825CF6C55516D374210C8E1 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = app_iOS; + productName = app_iOS; + productReference = FBC720DFA1D01F55B0A32344 /* app_iOS.app */; + productType = "com.apple.product-type.application"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + A9B1B09F1872768368ACECE2 /* Project object */ = { + isa = PBXProject; + attributes = { + BuildIndependentTargetsInParallel = YES; + LastUpgradeCheck = 1430; + TargetAttributes = { + E86255CB8A1836C0BF0C0E14 = { + DevelopmentTeam = 47RXBB8X9K; + }; + }; + }; + buildConfigurationList = B302E784349268C93E6F0A36 /* Build configuration list for PBXProject "app" */; + compatibilityVersion = "Xcode 14.0"; + developmentRegion = en; + hasScannedForEncodings = 0; + knownRegions = ( + Base, + en, + ); + mainGroup = 87648061424F20D5D4871E9E; + projectDirPath = ""; + projectRoot = ""; + targets = ( + E86255CB8A1836C0BF0C0E14 /* app_iOS */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXResourcesBuildPhase section */ + 2FBCB8C3ED193E9C4A9FDB59 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + C6BD59C055C986EA4A77FDA2 /* Assets.xcassets in Resources */, + 5C516481BCA83A182C2BCC94 /* assets in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXShellScriptBuildPhase section */ + E028F843270D8815FCE2B491 /* Build Rust Code */ = { + isa = PBXShellScriptBuildPhase; + alwaysOutOfDate = 1; + buildActionMask = 2147483647; + files = ( + ); + inputFileListPaths = ( + ); + inputPaths = ( + ); + name = "Build Rust Code"; + outputFileListPaths = ( + ); + outputPaths = ( + "$(SRCROOT)/target/aarch64-apple-ios/${CONFIGURATION}/deps/libspacebar.a", + "$(SRCROOT)/target/x86_64-apple-ios/${CONFIGURATION}/deps/libspacebar.a", + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "node /Users/rileyzicafoose/Documents/client/./node_modules/.bin/../@tauri-apps/cli/tauri.js ios xcode-script -v --platform ${PLATFORM_DISPLAY_NAME:?} --sdk-root ${SDKROOT:?} --framework-search-paths \"${FRAMEWORK_SEARCH_PATHS:?}\" --header-search-paths \"${HEADER_SEARCH_PATHS:?}\" --gcc-preprocessor-definitions \"${GCC_PREPROCESSOR_DEFINITIONS:-}\" --configuration ${CONFIGURATION:?} ${FORCE_COLOR} ${ARCHS:?}"; + }; +/* End PBXShellScriptBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + 81BE6BC5B603407AF570E994 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 53CDD0ACFBE8BDF1550B2E53 /* main.mm in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin XCBuildConfiguration section */ + 1B9D5B8D34E6E0C88D0207F2 /* release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; + ARCHS = ( + arm64, + x86_64, + ); + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CODE_SIGN_ENTITLEMENTS = app_iOS/app_iOS.entitlements; + CODE_SIGN_IDENTITY = "iPhone Developer"; + DEVELOPMENT_TEAM = 47RXBB8X9K; + ENABLE_BITCODE = NO; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "\".\"", + ); + INFOPLIST_FILE = app_iOS/Info.plist; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + "LIBRARY_SEARCH_PATHS[arch=arm64-sim]" = "$(inherited) $(PROJECT_DIR)/Externals/$(CONFIGURATION) $(SDKROOT)/usr/lib/swift $(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME) $(TOOLCHAIN_DIR)/usr/lib/swift-5.0/$(PLATFORM_NAME)"; + "LIBRARY_SEARCH_PATHS[arch=arm64]" = "$(inherited) $(PROJECT_DIR)/Externals/$(CONFIGURATION) $(SDKROOT)/usr/lib/swift $(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME) $(TOOLCHAIN_DIR)/usr/lib/swift-5.0/$(PLATFORM_NAME)"; + "LIBRARY_SEARCH_PATHS[arch=x86_64]" = "$(inherited) $(PROJECT_DIR)/Externals/$(CONFIGURATION) $(SDKROOT)/usr/lib/swift $(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME) $(TOOLCHAIN_DIR)/usr/lib/swift-5.0/$(PLATFORM_NAME)"; + PRODUCT_BUNDLE_IDENTIFIER = chat.spacebar.app; + PRODUCT_NAME = Spacebar; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + VALID_ARCHS = "arm64 x86_64"; + }; + name = release; + }; + 3C6497CF9EADFA373F12EF5C /* release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_NO_COMMON_BLOCKS = YES; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + MTL_ENABLE_DEBUG_INFO = NO; + MTL_FAST_MATH = YES; + PRODUCT_NAME = "$(TARGET_NAME)"; + SDKROOT = iphoneos; + SWIFT_COMPILATION_MODE = wholemodule; + SWIFT_OPTIMIZATION_LEVEL = "-O"; + SWIFT_VERSION = 5.0; + }; + name = release; + }; + 4AC19FD47C6011940ACEB467 /* debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; + ARCHS = ( + arm64, + x86_64, + ); + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CODE_SIGN_ENTITLEMENTS = app_iOS/app_iOS.entitlements; + CODE_SIGN_IDENTITY = "iPhone Developer"; + DEVELOPMENT_TEAM = 47RXBB8X9K; + ENABLE_BITCODE = NO; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "\".\"", + ); + INFOPLIST_FILE = app_iOS/Info.plist; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + "LIBRARY_SEARCH_PATHS[arch=arm64-sim]" = "$(inherited) $(PROJECT_DIR)/Externals/$(CONFIGURATION) $(SDKROOT)/usr/lib/swift $(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME) $(TOOLCHAIN_DIR)/usr/lib/swift-5.0/$(PLATFORM_NAME)"; + "LIBRARY_SEARCH_PATHS[arch=arm64]" = "$(inherited) $(PROJECT_DIR)/Externals/$(CONFIGURATION) $(SDKROOT)/usr/lib/swift $(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME) $(TOOLCHAIN_DIR)/usr/lib/swift-5.0/$(PLATFORM_NAME)"; + "LIBRARY_SEARCH_PATHS[arch=x86_64]" = "$(inherited) $(PROJECT_DIR)/Externals/$(CONFIGURATION) $(SDKROOT)/usr/lib/swift $(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME) $(TOOLCHAIN_DIR)/usr/lib/swift-5.0/$(PLATFORM_NAME)"; + PRODUCT_BUNDLE_IDENTIFIER = chat.spacebar.app; + PRODUCT_NAME = Spacebar; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + VALID_ARCHS = "arm64 x86_64"; + }; + name = debug; + }; + CAA806262C53A2E15E5DB0CA /* debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = dwarf; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_TESTABILITY = YES; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_DYNAMIC_NO_PIC = NO; + GCC_NO_COMMON_BLOCKS = YES; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "DEBUG=1", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; + MTL_FAST_MATH = YES; + ONLY_ACTIVE_ARCH = YES; + PRODUCT_NAME = "$(TARGET_NAME)"; + SDKROOT = iphoneos; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + SWIFT_VERSION = 5.0; + }; + name = debug; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + B302E784349268C93E6F0A36 /* Build configuration list for PBXProject "app" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + CAA806262C53A2E15E5DB0CA /* debug */, + 3C6497CF9EADFA373F12EF5C /* release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = debug; + }; + CDCB6DFA1AEBFEE3F608BA27 /* Build configuration list for PBXNativeTarget "app_iOS" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 4AC19FD47C6011940ACEB467 /* debug */, + 1B9D5B8D34E6E0C88D0207F2 /* release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = debug; + }; +/* End XCConfigurationList section */ + }; + rootObject = A9B1B09F1872768368ACECE2 /* Project object */; +} diff --git a/src-tauri/gen/apple/app.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/src-tauri/gen/apple/app.xcodeproj/project.xcworkspace/contents.xcworkspacedata new file mode 100644 index 0000000..919434a --- /dev/null +++ b/src-tauri/gen/apple/app.xcodeproj/project.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,7 @@ + + + + + diff --git a/src-tauri/gen/apple/app.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings b/src-tauri/gen/apple/app.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings new file mode 100644 index 0000000..ac90d5a --- /dev/null +++ b/src-tauri/gen/apple/app.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings @@ -0,0 +1,10 @@ + + + + + BuildSystemType + Original + DisableBuildSystemDeprecationDiagnostic + + + diff --git a/src-tauri/gen/apple/app.xcodeproj/xcshareddata/xcschemes/app_iOS.xcscheme b/src-tauri/gen/apple/app.xcodeproj/xcshareddata/xcschemes/app_iOS.xcscheme new file mode 100644 index 0000000..e8a9f97 --- /dev/null +++ b/src-tauri/gen/apple/app.xcodeproj/xcshareddata/xcschemes/app_iOS.xcscheme @@ -0,0 +1,131 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src-tauri/gen/apple/app_iOS/Info.plist b/src-tauri/gen/apple/app_iOS/Info.plist new file mode 100644 index 0000000..f690114 --- /dev/null +++ b/src-tauri/gen/apple/app_iOS/Info.plist @@ -0,0 +1,44 @@ + + + + + CFBundleDevelopmentRegion + $(DEVELOPMENT_LANGUAGE) + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + $(PRODUCT_NAME) + CFBundlePackageType + APPL + CFBundleShortVersionString + 0.1.1 + CFBundleVersion + 0.1.1 + LSRequiresIPhoneOS + + UILaunchStoryboardName + LaunchScreen + UIRequiredDeviceCapabilities + + arm64 + metal + + UISupportedInterfaceOrientations + + UIInterfaceOrientationPortrait + UIInterfaceOrientationLandscapeLeft + UIInterfaceOrientationLandscapeRight + + UISupportedInterfaceOrientations~ipad + + UIInterfaceOrientationPortrait + UIInterfaceOrientationPortraitUpsideDown + UIInterfaceOrientationLandscapeLeft + UIInterfaceOrientationLandscapeRight + + + diff --git a/src-tauri/gen/apple/app_iOS/app_iOS.entitlements b/src-tauri/gen/apple/app_iOS/app_iOS.entitlements new file mode 100644 index 0000000..0c67376 --- /dev/null +++ b/src-tauri/gen/apple/app_iOS/app_iOS.entitlements @@ -0,0 +1,5 @@ + + + + + diff --git a/src-tauri/gen/apple/project.yml b/src-tauri/gen/apple/project.yml new file mode 100644 index 0000000..f2183ea --- /dev/null +++ b/src-tauri/gen/apple/project.yml @@ -0,0 +1,88 @@ +name: app +options: + bundleIdPrefix: chat.spacebar + deploymentTarget: + iOS: 13.0 +fileGroups: [../../src] +configs: + debug: debug + release: release +settingGroups: + app: + base: + PRODUCT_NAME: Spacebar + PRODUCT_BUNDLE_IDENTIFIER: chat.spacebar.app + DEVELOPMENT_TEAM: 47RXBB8X9K +targetTemplates: + app: + type: application + sources: + - path: Sources + scheme: + environmentVariables: + RUST_BACKTRACE: full + RUST_LOG: info + settings: + groups: [app] +targets: + app_iOS: + type: application + platform: iOS + sources: + - path: Sources + - path: Assets.xcassets + - path: Externals + - path: app_iOS + - path: assets + buildPhase: resources + type: folder + info: + path: app_iOS/Info.plist + properties: + LSRequiresIPhoneOS: true + UILaunchStoryboardName: LaunchScreen + UIRequiredDeviceCapabilities: [arm64, metal] + UISupportedInterfaceOrientations: + - UIInterfaceOrientationPortrait + - UIInterfaceOrientationLandscapeLeft + - UIInterfaceOrientationLandscapeRight + UISupportedInterfaceOrientations~ipad: + - UIInterfaceOrientationPortrait + - UIInterfaceOrientationPortraitUpsideDown + - UIInterfaceOrientationLandscapeLeft + - UIInterfaceOrientationLandscapeRight + CFBundleShortVersionString: 0.1.1 + CFBundleVersion: 0.1.1 + entitlements: + path: app_iOS/app_iOS.entitlements + scheme: + environmentVariables: + RUST_BACKTRACE: full + RUST_LOG: info + settings: + base: + ENABLE_BITCODE: false + ARCHS: [arm64, x86_64] + VALID_ARCHS: arm64 x86_64 + LIBRARY_SEARCH_PATHS[arch=x86_64]: $(inherited) $(PROJECT_DIR)/Externals/$(CONFIGURATION) $(SDKROOT)/usr/lib/swift $(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME) $(TOOLCHAIN_DIR)/usr/lib/swift-5.0/$(PLATFORM_NAME) + LIBRARY_SEARCH_PATHS[arch=arm64]: $(inherited) $(PROJECT_DIR)/Externals/$(CONFIGURATION) $(SDKROOT)/usr/lib/swift $(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME) $(TOOLCHAIN_DIR)/usr/lib/swift-5.0/$(PLATFORM_NAME) + LIBRARY_SEARCH_PATHS[arch=arm64-sim]: $(inherited) $(PROJECT_DIR)/Externals/$(CONFIGURATION) $(SDKROOT)/usr/lib/swift $(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME) $(TOOLCHAIN_DIR)/usr/lib/swift-5.0/$(PLATFORM_NAME) + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES: true + groups: [app] + dependencies: + - framework: libspacebar.a + embed: false + - sdk: CoreGraphics.framework + - sdk: Metal.framework + - sdk: MetalKit.framework + - sdk: QuartzCore.framework + - sdk: Security.framework + - sdk: UIKit.framework + - sdk: WebKit.framework + preBuildScripts: + - script: node /Users/rileyzicafoose/Documents/client/./node_modules/.bin/../@tauri-apps/cli/tauri.js ios xcode-script -v --platform ${PLATFORM_DISPLAY_NAME:?} --sdk-root ${SDKROOT:?} --framework-search-paths "${FRAMEWORK_SEARCH_PATHS:?}" --header-search-paths "${HEADER_SEARCH_PATHS:?}" --gcc-preprocessor-definitions "${GCC_PREPROCESSOR_DEFINITIONS:-}" --configuration ${CONFIGURATION:?} ${FORCE_COLOR} ${ARCHS:?} + name: Build Rust Code + basedOnDependencyAnalysis: false + outputFiles: + - $(SRCROOT)/target/aarch64-apple-ios/${CONFIGURATION}/deps/libspacebar.a + - $(SRCROOT)/target/x86_64-apple-ios/${CONFIGURATION}/deps/libspacebar.a \ No newline at end of file diff --git a/src-tauri/icons/icon.icns b/src-tauri/icons/icon.icns index cdefd7b822df1ac46a1ee9039122bfe369509683..3ec5381fa787ef267ac9d9bd56f4be5522175249 100644 GIT binary patch delta 70 zcmV-M0J;B~=>?kU1qf+lZgT(ubegk0L^#*Ca#;Z=8@C}d0bmHR3Hu+j{Xatlw{{x= c6$rOTJ^?BlvjZUcAGeDm0hbTAfja@k0+4SQdH?_b delta 70 zcmV-M0J;B~=>?kU1qf+lZgT(ubeglr`urcaMnVDjAGg990Yn6`3pLlb1s?$x2)90B c0hbT6Y4TqPx7Be0#R9h(Cjl%Qvq0A<8~2GC-2eap diff --git a/src-tauri/tauri.ios.conf.json b/src-tauri/tauri.ios.conf.json index c8515f1..61fd3f0 100644 --- a/src-tauri/tauri.ios.conf.json +++ b/src-tauri/tauri.ios.conf.json @@ -1,5 +1,10 @@ { "tauri": { + "bundle": { + "iOS": { + "developmentTeam": "47RXBB8X9K" + } + }, "windows": [ { "fullscreen": false,