diff --git a/.eslintignore b/.eslintignore
deleted file mode 100644
index 9ce6769..0000000
--- a/.eslintignore
+++ /dev/null
@@ -1,5 +0,0 @@
-dist
-node_modules
-coverage
-.next
-build
\ No newline at end of file
diff --git a/.eslintrc.js b/.eslintrc.js
new file mode 100644
index 0000000..696cd38
--- /dev/null
+++ b/.eslintrc.js
@@ -0,0 +1,7 @@
+// This configuration only applies to the package manager root.
+/** @type {import("eslint").Linter.Config} */
+module.exports = {
+ root: true,
+ extends: ["@storykit/eslint-config/library.js"],
+ ignorePattern: ["apps/**", "packages/**"],
+};
diff --git a/.eslintrc.json b/.eslintrc.json
deleted file mode 100644
index 7d2a258..0000000
--- a/.eslintrc.json
+++ /dev/null
@@ -1,24 +0,0 @@
-{
- "env": {
- "browser": true,
- "node": true,
- "es6": true
- },
- "root": true,
- "parser": "@typescript-eslint/parser",
- "plugins": ["@typescript-eslint"],
- "extends": [
- "eslint:recommended",
- "plugin:react/recommended",
- "plugin:@typescript-eslint/recommended",
- "plugin:@typescript-eslint/eslint-recommended",
- "prettier",
- "plugin:prettier/recommended",
- "plugin:react-hooks/recommended",
- "plugin:storybook/recommended"
- ],
- "rules": {
- "react/react-in-jsx-scope": "off",
- "react/prop-types": "off"
- }
-}
diff --git a/.github/workflows/publish-package.yml b/.github/workflows/publish-package.yml
index 5252078..5fb5cd2 100644
--- a/.github/workflows/publish-package.yml
+++ b/.github/workflows/publish-package.yml
@@ -29,6 +29,8 @@ jobs:
run: pnpm build
- name: Publish to npm
- run: npm publish
+ run: |
+ cd packages/storykit
+ npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}
diff --git a/.gitignore b/.gitignore
index 400d652..985bb07 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,32 +1,43 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
-# dependencies
+# Dependencies
node_modules
-/.pnp
+.pnp
.pnp.js
-# testing
-/coverage
-
-# production
-build
-dist
-
-# misc
-.DS_Store
+# Local env files
+.env
.env.local
.env.development.local
.env.test.local
.env.production.local
+# Testing
+coverage
+
+# Turbo
+.turbo
+
+# Vercel
+.vercel
+
+# Build Outputs
+.next/
+out/
+build
+dist
+
+
+# Debug
npm-debug.log*
yarn-debug.log*
yarn-error.log*
-*storybook.log
-storybook-static
+# Misc
+.DS_Store
+*.pem
.yalc
yalc.lock
-__archive
\ No newline at end of file
+__archive
diff --git a/README.md b/README.md
index c670040..264e41e 100644
--- a/README.md
+++ b/README.md
@@ -1,45 +1,119 @@
+import { Meta } from "@storybook/blocks"
+
+
+
# Storykit
Plug-and-play React components for Story Protocol.
## Installation
-_Storykit is a private package so you need repo access and a personal access token to use_
+_Storykit is currently a private github package so you need repo access and a personal access token to use_
-1. Create a personal access token: [github.com/settings/tokens](https://github.com/settings/tokens)
+1 . Create a personal access token: [github.com/settings/tokens](https://github.com/settings/tokens)
-2. Login with Story Protocol scope:
+2 . Create an `.npmrc` file in the root of your project and add the following, replacing `NPM_TOKEN` with yout access token:
```bash
-npm login --scope=@storyprotocol --registry=https://npm.pkg.github.com
+//npm.pkg.github.com/:_authToken=NPM_TOKEN
+@storyprotocol/storykit:registry=https://npm.pkg.github.com
```
-3. Use your github username and personal access token (for password) to login
+The first line authenticates you with the github package registry, the second line tells npm to use the Storykit package from the Story Protocol github registry.
+
+3 . Add `.npmrc` to your `.gitignore` to keep your access token private.
-4. Install the package and the required react-query dependencies
+4 . Install the package and the required dependencies:
```bash
npm install @storyprotocol/storykit @tanstack/react-query
```
-## Usage
+5 . Currently Story Protocol api credetials must be defined in the environment variables, add them to your `.env.local`:
-Using Storykit in your React app
+```bash
+NEXT_PUBLIC_API_BASE_URL="https://edge.stg.storyprotocol.net"
+NEXT_PUBLIC_STORY_PROTOCOL_X_API_KEY="SP_API_KEY_HERE"
+NEXT_PUBLIC_SIMPLE_HASH_API_KEY="SIMPLEHASH_API_KEY_HERE"
+```
-### Import the css
+## Deploying on vercel
-```typescript
-import "@storyprotocol/storykit/dist/build.css"
+To deploy on vercel, you can either include an `.npmrc` file with the following contents (note the curly braces) in the root, and add your access token to the `NPM_TOKEN` vercel environment variable:
+
+```bash
+//npm.pkg.github.com/:_authToken=${NPM_TOKEN}
+@storyprotocol/storykit:registry=https://npm.pkg.github.com
+```
+
+#### OR...
+
+You can add all the content of the `.npmrc` file, including your personal access token, to a `NPM_RC` vercel environment variable.
+
+See the [vercel docs](https://vercel.com/guides/using-private-dependencies-with-vercel) for more information.
+
+## Dependencies
+
+Storkykit requires [@tanstack/react-query](https://tanstack.com/query/latest), some components have additional dependencies including:
+
+- [react-apexcharts](https://www.npmjs.com/package/react-apexcharts)
+- [react-force-graph-2d](https://www.npmjs.com/package/react-force-graph-2d)
+
+See the individual component docs ro see if they require an additional dependency or install them all at once with:
+
+```bash
+npm install @storyprotocol/storykit @tanstack/react-query react-apexcharts react-force-graph-2d
```
+## Run locally
+
+### Storybook
+
+Run Storybook locally for component development and documentation:
+
+```bash
+pnpm dev
+```
+
+Find the Storybook at [http://localhost:6006](http://localhost:6006)
+
+### Example app
+
+Run the next.js [example app](./examples/next-app/):
+
+```bash
+pnpm build
+pnpm dev-example
+```
+
+The dev server will be running at [http://localhost:3000](http://localhost:3000)
+
+### Linting and formatting
+
+Lint with eslint:
+
+```bash
+pnpm lint
+```
+
+Format with prettier:
+
+```bash
+pnpm format
+```
+
+## Usage
+
+Using Storykit in your React app
+
### Include React Query
-Don't forget that react query is a dependency, you will need to wrap Storykit components with a `QueryClientProvider`, you can do this once at the root of the app.
+React Query is a dependency, you will need to wrap Storykit components with a `QueryClientProvider`, we recommend doing this once in the root of the app.
```typescript
-import Providers from "./Providers"
+// app/layout.tsx
-import "@storyprotocol/storykit/dist/build.css"
+import Providers from "./Providers"
export default function Layout({children}) {
return (
@@ -53,6 +127,8 @@ export default function Layout({children}) {
```
```typescript
+// app/Providers.tsx
+
"use client"
import { QueryClient, QueryClientProvider } from "@tanstack/react-query"
@@ -69,23 +145,23 @@ export default function Providers({ children }) {
```
-### The IPAssetProvider
+### The IpProvider
-The IPAssetProvider provides IP Asset data to child components.
+The IpProvider provides IP Asset data to child components.
```typescript
-import { IPAssetProvider, useIPAssetContext } from "@storyprotocol/storykit"
+import { IpProvider, useIpContext } from "@storyprotocol/storykit"
const ExamplePage = () => {
return (
-
-
-
+
+
+
);
};
const ExampleComponent = () => {
- const { nftData, isNftDataLoading } = useIPAssetContext()
+ const { nftData, isNftDataLoading } = useIpContext()
return (
@@ -99,95 +175,35 @@ const ExampleComponent = () => {
};
```
-### The IPAGraph
+### The IpGraph
-Some components require the IPAssetProvider to supply asset data
+Some components require the IpProvider to supply asset data
```typescript
-import { IPAssetProvider, IPAGraph } from "@storyprotocol/storykit"
+import { IpProvider, IpGraph } from "@storyprotocol/storykit"
const ExamplePage = () => {
return (
-
-
-
+
+
+
);
};
```
-### The IPAssetWidget
+### The IpWidget
-The IPAssetProvider is already included in the IPAssetWidget
+The IpProvider is already included in the IpWidget
```typescript
-import { IPAssetWidget } from "@storyprotocol/storykit"
+import { IpWidget } from "@storyprotocol/storykit"
const ExamplePage = () => {
return (
-
+
)
}
```
-See [the example app](/examples/next-app/app/page.tsx).
-
-## Contributing
-
-### Installation
-
-```bash
-pnpm install
-```
-
-### Run Storybook
-
-Build components within the Storybook workshop environment.
-
-```bash
-pnpm storybook
-```
-
-### Formatting w\ prettier, linting w\ eslint & running tests
-
-```bash
-pnpm format
-pnpm lint
-pnpm test
-```
-
-### Bundle `/dist` package
-
-```bash
-pnpm build
-```
-
-## Running examples
-
-From the root, build a package
-
-```bash
-pnpm build
-```
-
-Link `storykit` for use locally
-
-```bash
-pnpm link --global
-```
-
-Install the example app
-
-```bash
-cd examples/next-app
-pnpm install
-```
-
-Link the `storykit` package and start the app
-
-```bash
-pnpm link --global @storyprotocol/storykit
-pnpm dev
-```
-
-Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
+See [the github repo](https://github.com/storyprotocol/storykit) and [the example app](https://github.com/storyprotocol/storykit/tree/main/examples/next-app).
diff --git a/examples/next-app/.eslintrc.js b/examples/next-app/.eslintrc.js
new file mode 100644
index 0000000..044ac2f
--- /dev/null
+++ b/examples/next-app/.eslintrc.js
@@ -0,0 +1,9 @@
+/** @type {import("eslint").Linter.Config} */
+module.exports = {
+ root: true,
+ extends: ["@storykit/eslint-config/next.js"],
+ parser: "@typescript-eslint/parser",
+ // parserOptions: {
+ // project: true,
+ // },
+}
diff --git a/examples/next-app/app/page.tsx b/examples/next-app/app/page.tsx
index 917e661..abb3363 100644
--- a/examples/next-app/app/page.tsx
+++ b/examples/next-app/app/page.tsx
@@ -1,18 +1,10 @@
-import dynamic from "next/dynamic"
-const DynamicHomePage = dynamic(
- () => {
- return import("@/components/HomePage")
- },
- { ssr: false }
- )
-
-import '@storyprotocol/storykit/dist/build.css'
+import HomePage from "../components/HomePage"
export default function Home() {
return (
-
+
)
}
diff --git a/examples/next-app/components/HomePage.tsx b/examples/next-app/components/HomePage.tsx
index b4e793a..6a95fab 100644
--- a/examples/next-app/components/HomePage.tsx
+++ b/examples/next-app/components/HomePage.tsx
@@ -1,31 +1,55 @@
"use client"
-// import { Button, IPAssetProvider, IPAssetWidget, useIPAssetContext } from "@storyprotocol/storykit"
-import { Button, IPAssetProvider, useIPAssetContext } from "@storyprotocol/storykit"
+import { IpProvider, useIpContext, IpWidget, IpPolicyAccordion, IpRoyaltyPieChart, IpGraph, Button } from "@storyprotocol/storykit"
+import { QueryClient, QueryClientProvider } from "@tanstack/react-query"
import React from "react"
import styles from "./home.module.css"
+const queryClient = new QueryClient()
+
const ExampleComponent = () => {
- const { nftData, isNftDataLoading } = useIPAssetContext()
+ const { nftData, isNftDataLoading } = useIpContext()
return (
<>
{isNftDataLoading &&
Fetching Asset...
}
- {nftData && !isNftDataLoading ? (
-
nft_id: {nftData.nft_id}
- ) : null}
+ {nftData && !isNftDataLoading ?
nft_id: {nftData?.nft_id}
: null}
>
)
}
export default function Home() {
return (
-
- Click me
- Click me
-
-
-
-
+ <>
+
+
+
+
+
+
+
+
+
+ {/* Primary Button */}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ >
)
}
diff --git a/examples/next-app/components/home.module.css b/examples/next-app/components/home.module.css
index f03ac16..ee1e8e6 100644
--- a/examples/next-app/components/home.module.css
+++ b/examples/next-app/components/home.module.css
@@ -5,5 +5,18 @@
justify-content: center;
gap: 1rem;
width: 100%;
- height: 100vh;
+ padding: 4rem 0;
+}
+
+.block {
+ background-color: #f9f9f9;
+ border-radius: 0.5rem;
+ box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
+ border: 1px solid #ddd;
+ overflow: hidden;
+
+}
+
+.padded {
+ padding: 1rem;
}
diff --git a/examples/next-app/next.config.mjs b/examples/next-app/next.config.mjs
index 1d61478..96254fc 100644
--- a/examples/next-app/next.config.mjs
+++ b/examples/next-app/next.config.mjs
@@ -1,4 +1,6 @@
/** @type {import('next').NextConfig} */
-const nextConfig = {}
+const nextConfig = {
+ // transpilePackages: ["@storyprotocol/storykit"],
+}
export default nextConfig
diff --git a/examples/next-app/package.json b/examples/next-app/package.json
index b5ebe72..8215bf4 100644
--- a/examples/next-app/package.json
+++ b/examples/next-app/package.json
@@ -8,16 +8,27 @@
"start": "next start",
"lint": "next lint"
},
+ "prettier": "@storykit/prettier-config",
"dependencies": {
+ "@storyprotocol/storykit": "workspace:*",
"@tanstack/react-query": "^5.28.9",
"next": "14.1.4",
"react": "^18",
- "react-dom": "^18"
+ "react-apexcharts": "^1.4.1",
+ "react-dom": "^18",
+ "react-force-graph-2d": "^1.25.4"
},
"devDependencies": {
+ "@next/eslint-plugin-next": "^14.1.1",
+ "@storykit/eslint-config": "workspace:*",
+ "@storykit/prettier-config": "workspace:*",
+ "@storykit/typescript-config": "workspace:*",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
+ "eslint": "^8.57.0",
+ "eslint-config-next": "14.2.1",
+ "prettier": "^3.2.5",
"typescript": "^5"
}
}
diff --git a/examples/next-app/pnpm-lock.yaml b/examples/next-app/pnpm-lock.yaml
deleted file mode 100644
index efb2f45..0000000
--- a/examples/next-app/pnpm-lock.yaml
+++ /dev/null
@@ -1,318 +0,0 @@
-lockfileVersion: '6.0'
-
-settings:
- autoInstallPeers: true
- excludeLinksFromLockfile: false
-
-dependencies:
- '@tanstack/react-query':
- specifier: ^5.28.9
- version: 5.28.9(react@18.2.0)
- next:
- specifier: 14.1.4
- version: 14.1.4(react-dom@18.2.0)(react@18.2.0)
- react:
- specifier: ^18
- version: 18.2.0
- react-dom:
- specifier: ^18
- version: 18.2.0(react@18.2.0)
-
-devDependencies:
- '@types/node':
- specifier: ^20
- version: 20.11.30
- '@types/react':
- specifier: ^18
- version: 18.2.72
- '@types/react-dom':
- specifier: ^18
- version: 18.2.22
- typescript:
- specifier: ^5
- version: 5.4.3
-
-packages:
-
- /@next/env@14.1.4:
- resolution: {integrity: sha512-e7X7bbn3Z6DWnDi75UWn+REgAbLEqxI8Tq2pkFOFAMpWAWApz/YCUhtWMWn410h8Q2fYiYL7Yg5OlxMOCfFjJQ==}
- dev: false
-
- /@next/swc-darwin-arm64@14.1.4:
- resolution: {integrity: sha512-ubmUkbmW65nIAOmoxT1IROZdmmJMmdYvXIe8211send9ZYJu+SqxSnJM4TrPj9wmL6g9Atvj0S/2cFmMSS99jg==}
- engines: {node: '>= 10'}
- cpu: [arm64]
- os: [darwin]
- requiresBuild: true
- dev: false
- optional: true
-
- /@next/swc-darwin-x64@14.1.4:
- resolution: {integrity: sha512-b0Xo1ELj3u7IkZWAKcJPJEhBop117U78l70nfoQGo4xUSvv0PJSTaV4U9xQBLvZlnjsYkc8RwQN1HoH/oQmLlQ==}
- engines: {node: '>= 10'}
- cpu: [x64]
- os: [darwin]
- requiresBuild: true
- dev: false
- optional: true
-
- /@next/swc-linux-arm64-gnu@14.1.4:
- resolution: {integrity: sha512-457G0hcLrdYA/u1O2XkRMsDKId5VKe3uKPvrKVOyuARa6nXrdhJOOYU9hkKKyQTMru1B8qEP78IAhf/1XnVqKA==}
- engines: {node: '>= 10'}
- cpu: [arm64]
- os: [linux]
- requiresBuild: true
- dev: false
- optional: true
-
- /@next/swc-linux-arm64-musl@14.1.4:
- resolution: {integrity: sha512-l/kMG+z6MB+fKA9KdtyprkTQ1ihlJcBh66cf0HvqGP+rXBbOXX0dpJatjZbHeunvEHoBBS69GYQG5ry78JMy3g==}
- engines: {node: '>= 10'}
- cpu: [arm64]
- os: [linux]
- requiresBuild: true
- dev: false
- optional: true
-
- /@next/swc-linux-x64-gnu@14.1.4:
- resolution: {integrity: sha512-BapIFZ3ZRnvQ1uWbmqEGJuPT9cgLwvKtxhK/L2t4QYO7l+/DxXuIGjvp1x8rvfa/x1FFSsipERZK70pewbtJtw==}
- engines: {node: '>= 10'}
- cpu: [x64]
- os: [linux]
- requiresBuild: true
- dev: false
- optional: true
-
- /@next/swc-linux-x64-musl@14.1.4:
- resolution: {integrity: sha512-mqVxTwk4XuBl49qn2A5UmzFImoL1iLm0KQQwtdRJRKl21ylQwwGCxJtIYo2rbfkZHoSKlh/YgztY0qH3wG1xIg==}
- engines: {node: '>= 10'}
- cpu: [x64]
- os: [linux]
- requiresBuild: true
- dev: false
- optional: true
-
- /@next/swc-win32-arm64-msvc@14.1.4:
- resolution: {integrity: sha512-xzxF4ErcumXjO2Pvg/wVGrtr9QQJLk3IyQX1ddAC/fi6/5jZCZ9xpuL9Tzc4KPWMFq8GGWFVDMshZOdHGdkvag==}
- engines: {node: '>= 10'}
- cpu: [arm64]
- os: [win32]
- requiresBuild: true
- dev: false
- optional: true
-
- /@next/swc-win32-ia32-msvc@14.1.4:
- resolution: {integrity: sha512-WZiz8OdbkpRw6/IU/lredZWKKZopUMhcI2F+XiMAcPja0uZYdMTZQRoQ0WZcvinn9xZAidimE7tN9W5v9Yyfyw==}
- engines: {node: '>= 10'}
- cpu: [ia32]
- os: [win32]
- requiresBuild: true
- dev: false
- optional: true
-
- /@next/swc-win32-x64-msvc@14.1.4:
- resolution: {integrity: sha512-4Rto21sPfw555sZ/XNLqfxDUNeLhNYGO2dlPqsnuCg8N8a2a9u1ltqBOPQ4vj1Gf7eJC0W2hHG2eYUHuiXgY2w==}
- engines: {node: '>= 10'}
- cpu: [x64]
- os: [win32]
- requiresBuild: true
- dev: false
- optional: true
-
- /@swc/helpers@0.5.2:
- resolution: {integrity: sha512-E4KcWTpoLHqwPHLxidpOqQbcrZVgi0rsmmZXUle1jXmJfuIf/UWpczUJ7MZZ5tlxytgJXyp0w4PGkkeLiuIdZw==}
- dependencies:
- tslib: 2.6.2
- dev: false
-
- /@tanstack/query-core@5.28.9:
- resolution: {integrity: sha512-hNlfCiqZevr3GRVPXS3MhaGW5hjcxvCsIQ4q6ff7EPlvFwYZaS+0d9EIIgofnegDaU2BbCDlyURoYfRl5rmzow==}
- dev: false
-
- /@tanstack/react-query@5.28.9(react@18.2.0):
- resolution: {integrity: sha512-vwifBkGXsydsLxFOBMe3+f8kvtDoqDRDwUNjPHVDDt+FoBetCbOWAUHgZn4k+CVeZgLmy7bx6aKeDbe3e8koOQ==}
- peerDependencies:
- react: ^18.0.0
- dependencies:
- '@tanstack/query-core': 5.28.9
- react: 18.2.0
- dev: false
-
- /@types/node@20.11.30:
- resolution: {integrity: sha512-dHM6ZxwlmuZaRmUPfv1p+KrdD1Dci04FbdEm/9wEMouFqxYoFl5aMkt0VMAUtYRQDyYvD41WJLukhq/ha3YuTw==}
- dependencies:
- undici-types: 5.26.5
- dev: true
-
- /@types/prop-types@15.7.12:
- resolution: {integrity: sha512-5zvhXYtRNRluoE/jAp4GVsSduVUzNWKkOZrCDBWYtE7biZywwdC2AcEzg+cSMLFRfVgeAFqpfNabiPjxFddV1Q==}
- dev: true
-
- /@types/react-dom@18.2.22:
- resolution: {integrity: sha512-fHkBXPeNtfvri6gdsMYyW+dW7RXFo6Ad09nLFK0VQWR7yGLai/Cyvyj696gbwYvBnhGtevUG9cET0pmUbMtoPQ==}
- dependencies:
- '@types/react': 18.2.72
- dev: true
-
- /@types/react@18.2.72:
- resolution: {integrity: sha512-/e7GWxGzXQF7OJAua7UAYqYi/4VpXEfbGtmYQcAQwP3SjjjAXfybTf/JK5S+SaetB/ChXl8Y2g1hCsj7jDXxcg==}
- dependencies:
- '@types/prop-types': 15.7.12
- csstype: 3.1.3
- dev: true
-
- /busboy@1.6.0:
- resolution: {integrity: sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==}
- engines: {node: '>=10.16.0'}
- dependencies:
- streamsearch: 1.1.0
- dev: false
-
- /caniuse-lite@1.0.30001600:
- resolution: {integrity: sha512-+2S9/2JFhYmYaDpZvo0lKkfvuKIglrx68MwOBqMGHhQsNkLjB5xtc/TGoEPs+MxjSyN/72qer2g97nzR641mOQ==}
- dev: false
-
- /client-only@0.0.1:
- resolution: {integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==}
- dev: false
-
- /csstype@3.1.3:
- resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==}
- dev: true
-
- /graceful-fs@4.2.11:
- resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
- dev: false
-
- /js-tokens@4.0.0:
- resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
- dev: false
-
- /loose-envify@1.4.0:
- resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==}
- hasBin: true
- dependencies:
- js-tokens: 4.0.0
- dev: false
-
- /nanoid@3.3.7:
- resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==}
- engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
- hasBin: true
- dev: false
-
- /next@14.1.4(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-1WTaXeSrUwlz/XcnhGTY7+8eiaFvdet5z9u3V2jb+Ek1vFo0VhHKSAIJvDWfQpttWjnyw14kBeq28TPq7bTeEQ==}
- engines: {node: '>=18.17.0'}
- hasBin: true
- peerDependencies:
- '@opentelemetry/api': ^1.1.0
- react: ^18.2.0
- react-dom: ^18.2.0
- sass: ^1.3.0
- peerDependenciesMeta:
- '@opentelemetry/api':
- optional: true
- sass:
- optional: true
- dependencies:
- '@next/env': 14.1.4
- '@swc/helpers': 0.5.2
- busboy: 1.6.0
- caniuse-lite: 1.0.30001600
- graceful-fs: 4.2.11
- postcss: 8.4.31
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
- styled-jsx: 5.1.1(react@18.2.0)
- optionalDependencies:
- '@next/swc-darwin-arm64': 14.1.4
- '@next/swc-darwin-x64': 14.1.4
- '@next/swc-linux-arm64-gnu': 14.1.4
- '@next/swc-linux-arm64-musl': 14.1.4
- '@next/swc-linux-x64-gnu': 14.1.4
- '@next/swc-linux-x64-musl': 14.1.4
- '@next/swc-win32-arm64-msvc': 14.1.4
- '@next/swc-win32-ia32-msvc': 14.1.4
- '@next/swc-win32-x64-msvc': 14.1.4
- transitivePeerDependencies:
- - '@babel/core'
- - babel-plugin-macros
- dev: false
-
- /picocolors@1.0.0:
- resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==}
- dev: false
-
- /postcss@8.4.31:
- resolution: {integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==}
- engines: {node: ^10 || ^12 || >=14}
- dependencies:
- nanoid: 3.3.7
- picocolors: 1.0.0
- source-map-js: 1.2.0
- dev: false
-
- /react-dom@18.2.0(react@18.2.0):
- resolution: {integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==}
- peerDependencies:
- react: ^18.2.0
- dependencies:
- loose-envify: 1.4.0
- react: 18.2.0
- scheduler: 0.23.0
- dev: false
-
- /react@18.2.0:
- resolution: {integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==}
- engines: {node: '>=0.10.0'}
- dependencies:
- loose-envify: 1.4.0
- dev: false
-
- /scheduler@0.23.0:
- resolution: {integrity: sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==}
- dependencies:
- loose-envify: 1.4.0
- dev: false
-
- /source-map-js@1.2.0:
- resolution: {integrity: sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==}
- engines: {node: '>=0.10.0'}
- dev: false
-
- /streamsearch@1.1.0:
- resolution: {integrity: sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==}
- engines: {node: '>=10.0.0'}
- dev: false
-
- /styled-jsx@5.1.1(react@18.2.0):
- resolution: {integrity: sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==}
- engines: {node: '>= 12.0.0'}
- peerDependencies:
- '@babel/core': '*'
- babel-plugin-macros: '*'
- react: '>= 16.8.0 || 17.x.x || ^18.0.0-0'
- peerDependenciesMeta:
- '@babel/core':
- optional: true
- babel-plugin-macros:
- optional: true
- dependencies:
- client-only: 0.0.1
- react: 18.2.0
- dev: false
-
- /tslib@2.6.2:
- resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==}
- dev: false
-
- /typescript@5.4.3:
- resolution: {integrity: sha512-KrPd3PKaCLr78MalgiwJnA25Nm8HAmdwN3mYUYZgG/wizIo9EainNVQI9/yDavtVFRN2h3k8uf3GLHuhDMgEHg==}
- engines: {node: '>=14.17'}
- hasBin: true
- dev: true
-
- /undici-types@5.26.5:
- resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==}
- dev: true
diff --git a/examples/next-app/tsconfig.json b/examples/next-app/tsconfig.json
index 4cac796..01d27bc 100644
--- a/examples/next-app/tsconfig.json
+++ b/examples/next-app/tsconfig.json
@@ -1,26 +1,30 @@
{
+ "extends": "@storykit/typescript-config/nextjs.json",
"compilerOptions": {
- "lib": ["dom", "dom.iterable", "esnext"],
- "allowJs": true,
- "skipLibCheck": true,
- "strict": false,
- "noEmit": true,
- "esModuleInterop": true,
- "module": "esnext",
- "moduleResolution": "bundler",
- "resolveJsonModule": true,
- "isolatedModules": true,
- "jsx": "preserve",
- "incremental": true,
"plugins": [
{
"name": "next"
}
],
"paths": {
- "@/*": ["./*"]
- }
+ "@/*": [
+ "./*"
+ ]
+ },
+ "allowJs": true,
+ "noEmit": true,
+ "incremental": true,
+ "resolveJsonModule": true,
+ "jsx": "preserve"
},
- "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
- "exclude": ["node_modules"]
+ "include": [
+ "next-env.d.ts",
+ "**/*.ts",
+ "**/*.tsx",
+ ".next/types/**/*.ts",
+ "next.config.js"
+ ],
+ "exclude": [
+ "node_modules"
+ ]
}
diff --git a/package.json b/package.json
index dfe8070..d1ac415 100644
--- a/package.json
+++ b/package.json
@@ -1,126 +1,27 @@
{
- "name": "@storyprotocol/storykit",
- "author": "storyprotocol engineering
",
- "version": "0.1.6",
- "type": "module",
- "main": "dist/storyprotocol-storykit.cjs.js",
- "module": "dist/storyprotocol-storykit.esm.js",
- "exports": {
- ".": {
- "module": "./dist/storyprotocol-storykit.esm.js",
- "default": "./dist/storyprotocol-storykit.cjs.js",
- "types": "./dist/types.d.ts"
- },
- "./package.json": "./package.json",
- "./dist/build.css": "./dist/build.css"
- },
- "types": "dist/types.d.ts",
- "files": [
- "dist"
- ],
- "publishConfig": {
- "registry": "https://npm.pkg.github.com/@storyprotocol"
- },
+ "private": true,
"scripts": {
- "test": "react-scripts test",
- "format": "prettier --write --parser typescript '**/*.{ts,tsx}'",
- "lint": "eslint . --ext .ts,.tsx --ignore-path .gitignore --fix",
- "storybook": "storybook dev -p 6006",
- "build-storybook": "storybook build",
- "build-tailwind": "pnpm exec tailwindcss -o dist/build.css --minify",
- "build": "rollup -c --bundleConfigAsCjs && pnpm build-tailwind",
+ "build": "turbo run build --filter @storyprotocol/storykit",
+ "dev": "turbo run dev --filter @storyprotocol/storykit",
+ "dev-example": "turbo run dev --filter next-app",
+ "lint": "turbo run lint --filter @storyprotocol/storykit",
+ "lint-all": "turbo run lint",
+ "format": "turbo run format --filter @storyprotocol/storykit",
"prepare": "husky"
},
- "lint-staged": {
- "*.{ts,tsx}": [
- "npm run format",
- "npm run lint"
- ]
- },
- "browserslist": {
- "production": [
- ">0.2%",
- "not dead",
- "not op_mini all"
- ],
- "development": [
- "last 1 chrome version",
- "last 1 firefox version",
- "last 1 safari version"
- ]
- },
- "dependencies": {
- "@emotion/is-prop-valid": "^1.2.2",
- "@emotion/react": "^11.11.4",
- "@headlessui/react": "^1.7.18",
- "class-variance-authority": "^0.7.0",
- "clsx": "^2.1.0",
- "lucide-react": "^0.364.0",
- "react-apexcharts": "^1.4.1",
- "react-force-graph-2d": "^1.25.4",
- "react-icons": "^5.0.1",
- "tailwind-merge": "^2.2.2",
- "tailwindcss": "^3.4.1",
- "tailwindcss-animate": "^1.0.7",
- "viem": "^2.7.19"
- },
"devDependencies": {
- "@chromatic-com/storybook": "^1.2.25",
- "@rollup/plugin-commonjs": "^25.0.7",
- "@rollup/plugin-node-resolve": "^15.2.3",
- "@rollup/plugin-terser": "^0.4.4",
- "@rollup/plugin-typescript": "^11.1.6",
- "@storybook/addon-essentials": "^8.0.4",
- "@storybook/addon-interactions": "^8.0.4",
- "@storybook/addon-links": "^8.0.4",
- "@storybook/addon-onboarding": "^8.0.4",
- "@storybook/addon-styling-webpack": "^1.0.0",
- "@storybook/addon-themes": "^8.0.4",
- "@storybook/blocks": "^8.0.4",
- "@storybook/manager-api": "^8.0.4",
- "@storybook/preset-create-react-app": "^8.0.4",
- "@storybook/react": "^8.0.4",
- "@storybook/react-webpack5": "^8.0.4",
- "@storybook/test": "^8.0.4",
- "@storybook/theming": "^8.0.4",
- "@tanstack/react-query": "^5.32.1",
- "@testing-library/jest-dom": "^5.17.0",
- "@testing-library/react": "^13.4.0",
- "@testing-library/user-event": "^13.5.0",
- "@trivago/prettier-plugin-sort-imports": "^4.3.0",
- "@types/jest": "^29.5.12",
- "@types/node": "^16.18.91",
- "@types/react": "^18.2.70",
- "@types/react-dom": "^18.2.22",
- "@typescript-eslint/eslint-plugin": "^7.4.0",
- "@typescript-eslint/parser": "^7.4.0",
+ "@storykit/eslint-config": "workspace:*",
"eslint": "^8.57.0",
- "eslint-config-prettier": "^9.1.0",
- "eslint-plugin-prettier": "^5.1.3",
- "eslint-plugin-react": "^7.34.1",
- "eslint-plugin-react-hooks": "^4.6.0",
- "eslint-plugin-storybook": "^0.8.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
- "postcss": "^8.4.38",
"prettier": "^3.2.5",
- "prop-types": "^15.8.1",
- "react": "^18.2.0",
- "react-dom": "^18.2.0",
- "react-scripts": "5.0.1",
- "rollup": "^4.13.1",
- "rollup-plugin-dts": "^6.1.0",
- "rollup-plugin-peer-deps-external": "^2.2.4",
- "rollup-plugin-postcss": "^4.0.2",
- "storybook": "^8.0.4",
- "typescript": "^5.4.3",
- "viem": "^2.7.19",
- "webpack": "^5.91.0"
+ "turbo": "^1.12.2"
+ },
+ "lint-staged": {
+ "packages/*.{ts,tsx}": [
+ "pnpm format",
+ "pnpm lint"
+ ]
},
- "peerDependencies": {
- "@tanstack/react-query": "^5.32.1",
- "react": ">=18.2.0",
- "react-dom": ">=18.2.0",
- "typescript": "^5.4.3"
- }
+ "packageManager": "pnpm@8.9.0"
}
diff --git a/packages/config-eslint/README.md b/packages/config-eslint/README.md
new file mode 100644
index 0000000..d521cce
--- /dev/null
+++ b/packages/config-eslint/README.md
@@ -0,0 +1,3 @@
+# `@storykit/eslint-config`
+
+Collection of internal eslint configurations.
diff --git a/packages/config-eslint/library.js b/packages/config-eslint/library.js
new file mode 100644
index 0000000..b93219d
--- /dev/null
+++ b/packages/config-eslint/library.js
@@ -0,0 +1,34 @@
+const { resolve } = require("node:path");
+
+const project = resolve(process.cwd(), "tsconfig.json");
+
+/** @type {import("eslint").Linter.Config} */
+module.exports = {
+ extends: ["eslint:recommended", "prettier", "eslint-config-turbo"],
+ plugins: ["only-warn"],
+ globals: {
+ React: true,
+ JSX: true,
+ },
+ env: {
+ node: true,
+ },
+ settings: {
+ "import/resolver": {
+ typescript: {
+ project,
+ },
+ },
+ },
+ ignorePatterns: [
+ // Ignore dotfiles
+ ".*.js",
+ "node_modules/",
+ "dist/",
+ ],
+ overrides: [
+ {
+ files: ["*.js?(x)", "*.cjs?(x)", "*.mjs?(x)", "*.ts?(x)"],
+ },
+ ],
+};
diff --git a/packages/config-eslint/next.js b/packages/config-eslint/next.js
new file mode 100644
index 0000000..4c5c2d9
--- /dev/null
+++ b/packages/config-eslint/next.js
@@ -0,0 +1,35 @@
+const { resolve } = require("node:path");
+
+const project = resolve(process.cwd(), "tsconfig.json");
+
+/** @type {import("eslint").Linter.Config} */
+module.exports = {
+ // extends: [
+ // "eslint:recommended",
+ // "prettier",
+ // require.resolve("@vercel/style-guide/eslint/next"),
+ // "eslint-config-turbo",
+ // ],
+ extends: ["next/core-web-vitals", "prettier"],
+ globals: {
+ React: true,
+ JSX: true,
+ },
+ env: {
+ node: true,
+ },
+ plugins: ["only-warn"],
+ settings: {
+ "import/resolver": {
+ typescript: {
+ project,
+ },
+ },
+ },
+ ignorePatterns: [
+ // Ignore dotfiles
+ ".*.js",
+ "node_modules/",
+ ],
+ overrides: [{ files: ["*.js?(x)", "*.ts?(x)"] }],
+};
diff --git a/packages/config-eslint/package.json b/packages/config-eslint/package.json
new file mode 100644
index 0000000..ba694b5
--- /dev/null
+++ b/packages/config-eslint/package.json
@@ -0,0 +1,19 @@
+{
+ "name": "@storykit/eslint-config",
+ "version": "0.0.0",
+ "private": true,
+ "files": [
+ "library.js",
+ "next.js",
+ "react-internal.js"
+ ],
+ "devDependencies": {
+ "@vercel/style-guide": "^5.2.0",
+ "eslint-config-turbo": "^1.12.4",
+ "eslint-config-prettier": "^9.1.0",
+ "eslint-plugin-only-warn": "^1.1.0",
+ "@typescript-eslint/parser": "^7.1.0",
+ "@typescript-eslint/eslint-plugin": "^7.1.0",
+ "typescript": "^5.3.3"
+ }
+}
diff --git a/packages/config-eslint/react-internal.js b/packages/config-eslint/react-internal.js
new file mode 100644
index 0000000..2639034
--- /dev/null
+++ b/packages/config-eslint/react-internal.js
@@ -0,0 +1,58 @@
+const { resolve } = require("node:path");
+
+const project = resolve(process.cwd(), "tsconfig.json");
+
+/*
+ * This is a custom ESLint configuration for use with
+ * internal (bundled by their consumer) libraries
+ * that utilize React.
+ *
+ * This config extends the Vercel Engineering Style Guide.
+ * For more information, see https://github.com/vercel/style-guide
+ *
+ */
+
+/** @type {import("eslint").Linter.Config} */
+module.exports = {
+ extends: [
+ "eslint:recommended",
+ "plugin:react/recommended",
+ "plugin:@typescript-eslint/recommended",
+ "plugin:@typescript-eslint/eslint-recommended",
+ "prettier",
+ "plugin:prettier/recommended",
+ "plugin:react-hooks/recommended",
+ "plugin:storybook/recommended",
+ ],
+ // extends: ["eslint:recommended", "prettier", "eslint-config-turbo"],
+ plugins: ["@typescript-eslint", "only-warn"],
+ globals: {
+ React: true,
+ JSX: true,
+ },
+ env: {
+ browser: true,
+ },
+ settings: {
+ "import/resolver": {
+ typescript: {
+ project,
+ },
+ },
+ },
+ ignorePatterns: [
+ // Ignore dotfiles
+ ".*.js",
+ ".*.cjs",
+ "node_modules/",
+ "dist/",
+ ],
+ overrides: [
+ // Force ESLint to detect .tsx files
+ { files: ["*.js?(x)", "*.ts?(x)"] },
+ ],
+ rules: {
+ "react/react-in-jsx-scope": "off",
+ "react/prop-types": "off",
+ },
+};
diff --git a/.prettierrc.json b/packages/config-prettier/index.json
similarity index 100%
rename from .prettierrc.json
rename to packages/config-prettier/index.json
diff --git a/packages/config-prettier/package.json b/packages/config-prettier/package.json
new file mode 100644
index 0000000..85a26b5
--- /dev/null
+++ b/packages/config-prettier/package.json
@@ -0,0 +1,13 @@
+{
+ "name": "@storykit/prettier-config",
+ "version": "0.1.0",
+ "private": true,
+ "main": "./index.json",
+ "devDependencies": {
+ "@trivago/prettier-plugin-sort-imports": "^4.3.0",
+ "prettier": "^3.2.5"
+ },
+ "peerDependencies": {
+ "prettier": "^3.2.5"
+ }
+}
diff --git a/packages/config-typescript/base.json b/packages/config-typescript/base.json
new file mode 100644
index 0000000..2c7114f
--- /dev/null
+++ b/packages/config-typescript/base.json
@@ -0,0 +1,20 @@
+{
+ "$schema": "https://json.schemastore.org/tsconfig",
+ "display": "Default",
+ "compilerOptions": {
+ "composite": false,
+ "declaration": true,
+ "declarationMap": true,
+ "esModuleInterop": true,
+ "forceConsistentCasingInFileNames": true,
+ "inlineSources": false,
+ "isolatedModules": true,
+ "moduleResolution": "Bundler",
+ "noUnusedLocals": false,
+ "noUnusedParameters": false,
+ "preserveWatchOutput": true,
+ "skipLibCheck": true,
+ "strict": true
+ },
+ "exclude": ["node_modules"]
+}
diff --git a/packages/config-typescript/nextjs.json b/packages/config-typescript/nextjs.json
new file mode 100644
index 0000000..242e6c9
--- /dev/null
+++ b/packages/config-typescript/nextjs.json
@@ -0,0 +1,21 @@
+{
+ "$schema": "https://json.schemastore.org/tsconfig",
+ "display": "Next.js",
+ "extends": "./base.json",
+ "compilerOptions": {
+ "plugins": [{ "name": "next" }],
+
+ "declaration": false,
+ "declarationMap": false,
+ "incremental": true,
+ "jsx": "preserve",
+ "module": "esnext",
+ "noEmit": true,
+ "resolveJsonModule": true,
+ "target": "es5",
+ "lib": ["dom", "dom.iterable", "esnext"],
+ "moduleResolution": "node"
+ },
+ "include": ["src", "next-env.d.ts"],
+ "exclude": ["node_modules"]
+}
diff --git a/packages/config-typescript/package.json b/packages/config-typescript/package.json
new file mode 100644
index 0000000..2f09e5a
--- /dev/null
+++ b/packages/config-typescript/package.json
@@ -0,0 +1,9 @@
+{
+ "name": "@storykit/typescript-config",
+ "version": "0.0.0",
+ "private": true,
+ "license": "MIT",
+ "publishConfig": {
+ "access": "public"
+ }
+}
diff --git a/packages/config-typescript/react-library.json b/packages/config-typescript/react-library.json
new file mode 100644
index 0000000..6d2a3bb
--- /dev/null
+++ b/packages/config-typescript/react-library.json
@@ -0,0 +1,13 @@
+{
+ "$schema": "https://json.schemastore.org/tsconfig",
+ "display": "React Library",
+ "extends": "./base.json",
+ "compilerOptions": {
+ "jsx": "react-jsx",
+ "module": "ESNext",
+ "outDir": "dist",
+ "declaration": true,
+ "target": "es5",
+ "lib": ["dom", "dom.iterable", "esnext"]
+ }
+}
diff --git a/packages/storykit/.eslintrc.cjs b/packages/storykit/.eslintrc.cjs
new file mode 100644
index 0000000..fc3bf2f
--- /dev/null
+++ b/packages/storykit/.eslintrc.cjs
@@ -0,0 +1,13 @@
+/** @type {import("eslint").Linter.Config} */
+module.exports = {
+ root: true,
+ extends: ["@storykit/eslint-config/react-internal.js"],
+ parser: "@typescript-eslint/parser",
+ // parserOptions: {
+ // project: true,
+ // },
+ // parserOptions: {
+ // project: "./tsconfig.json",
+ // tsconfigRootDir: __dirname,
+ // },
+}
diff --git a/packages/storykit/.gitignore b/packages/storykit/.gitignore
new file mode 100644
index 0000000..694a99f
--- /dev/null
+++ b/packages/storykit/.gitignore
@@ -0,0 +1,30 @@
+# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
+
+# dependencies
+node_modules
+/.pnp
+.pnp.js
+
+# testing
+/coverage
+
+# production
+build
+dist
+
+# misc
+.DS_Store
+.env.local
+.env.development.local
+.env.test.local
+.env.production.local
+
+npm-debug.log*
+yarn-debug.log*
+yarn-error.log*
+
+*storybook.log
+storybook-static
+
+.yalc
+yalc.lock
\ No newline at end of file
diff --git a/.storybook/assets/story-logo.png b/packages/storykit/.storybook/assets/story-logo.png
similarity index 100%
rename from .storybook/assets/story-logo.png
rename to packages/storykit/.storybook/assets/story-logo.png
diff --git a/packages/storykit/.storybook/global.css b/packages/storykit/.storybook/global.css
new file mode 100644
index 0000000..5ac59a8
--- /dev/null
+++ b/packages/storykit/.storybook/global.css
@@ -0,0 +1,7 @@
+@tailwind base;
+@tailwind components;
+@tailwind utilities;
+
+.sb-show-main {
+ @apply bg-white dark:bg-gray-900;
+}
diff --git a/.storybook/main.ts b/packages/storykit/.storybook/main.ts
similarity index 100%
rename from .storybook/main.ts
rename to packages/storykit/.storybook/main.ts
diff --git a/.storybook/manager-head.html b/packages/storykit/.storybook/manager-head.html
similarity index 100%
rename from .storybook/manager-head.html
rename to packages/storykit/.storybook/manager-head.html
diff --git a/.storybook/manager.ts b/packages/storykit/.storybook/manager.ts
similarity index 100%
rename from .storybook/manager.ts
rename to packages/storykit/.storybook/manager.ts
diff --git a/.storybook/preview.ts b/packages/storykit/.storybook/preview.ts
similarity index 95%
rename from .storybook/preview.ts
rename to packages/storykit/.storybook/preview.ts
index 5ce8caf..7d21660 100644
--- a/.storybook/preview.ts
+++ b/packages/storykit/.storybook/preview.ts
@@ -1,7 +1,7 @@
import { withThemeByClassName } from "@storybook/addon-themes"
import type { Preview } from "@storybook/react"
-import "../src/global.css"
+import "./global.css"
import theme from "./theme"
const preview: Preview = {
diff --git a/.storybook/theme.ts b/packages/storykit/.storybook/theme.ts
similarity index 100%
rename from .storybook/theme.ts
rename to packages/storykit/.storybook/theme.ts
diff --git a/packages/storykit/package.json b/packages/storykit/package.json
new file mode 100644
index 0000000..a71796b
--- /dev/null
+++ b/packages/storykit/package.json
@@ -0,0 +1,108 @@
+{
+ "name": "@storyprotocol/storykit",
+ "author": "storyprotocol engineering ",
+ "version": "0.1.8",
+ "type": "module",
+ "exports": {
+ ".": {
+ "module": "./dist/storyprotocol-storykit.esm.js",
+ "default": "./dist/storyprotocol-storykit.cjs.js",
+ "types": "./dist/types.d.ts"
+ },
+ "./package.json": "./package.json"
+ },
+ "types": "dist/types.d.ts",
+ "files": [
+ "dist"
+ ],
+ "publishConfig": {
+ "registry": "https://npm.pkg.github.com/@storyprotocol"
+ },
+ "scripts": {
+ "test": "react-scripts test",
+ "lint": "eslint . --ext .ts,.tsx --ignore-path ../../.prettierignore --fix",
+ "format": "prettier --write --parser typescript '**/*.{ts,tsx}'",
+ "dev": "storybook dev -p 6006",
+ "build-storybook": "storybook build",
+ "build": "rollup -c --bundleConfigAsCjs --inlineDynamicImports"
+ },
+ "prettier": "@storykit/prettier-config",
+ "dependencies": {
+ "@emotion/is-prop-valid": "^1.2.2",
+ "@emotion/react": "^11.11.4",
+ "@headlessui/react": "^1.7.18",
+ "@radix-ui/react-accordion": "^1.1.2",
+ "class-variance-authority": "^0.7.0",
+ "clsx": "^2.1.0",
+ "lucide-react": "^0.364.0",
+ "react-icons": "^5.0.1",
+ "tailwind-merge": "^2.2.2",
+ "tailwindcss": "^3.4.1",
+ "tailwindcss-animate": "^1.0.7",
+ "viem": "^2.7.19"
+ },
+ "devDependencies": {
+ "@chromatic-com/storybook": "^1.2.25",
+ "@rollup/plugin-commonjs": "^25.0.7",
+ "@rollup/plugin-node-resolve": "^15.2.3",
+ "@rollup/plugin-terser": "^0.4.4",
+ "@rollup/plugin-typescript": "^11.1.6",
+ "@storybook/addon-essentials": "^8.0.4",
+ "@storybook/addon-interactions": "^8.0.4",
+ "@storybook/addon-links": "^8.0.4",
+ "@storybook/addon-onboarding": "^8.0.4",
+ "@storybook/addon-styling-webpack": "^1.0.0",
+ "@storybook/addon-themes": "^8.0.4",
+ "@storybook/blocks": "^8.0.4",
+ "@storybook/manager-api": "^8.0.4",
+ "@storybook/preset-create-react-app": "^8.0.4",
+ "@storybook/react": "^8.0.4",
+ "@storybook/react-webpack5": "^8.0.4",
+ "@storybook/test": "^8.0.4",
+ "@storybook/theming": "^8.0.4",
+ "@storykit/eslint-config": "workspace:*",
+ "@storykit/prettier-config": "workspace:*",
+ "@storykit/typescript-config": "workspace:*",
+ "@tailwindcss/nesting": "0.0.0-insiders.565cd3e",
+ "@tanstack/react-query": "^5.25.0",
+ "@testing-library/jest-dom": "^5.17.0",
+ "@testing-library/react": "^13.4.0",
+ "@testing-library/user-event": "^13.5.0",
+ "@turbo/gen": "^1.12.4",
+ "@types/eslint": "^8.56.5",
+ "@types/jest": "^29.5.12",
+ "@types/node": "^20.11.24",
+ "@types/react": "^18.2.61",
+ "@types/react-dom": "^18.2.19",
+ "eslint": "^8.57.0",
+ "eslint-config-prettier": "^9.1.0",
+ "eslint-plugin-prettier": "^5.1.3",
+ "eslint-plugin-react": "^7.34.1",
+ "eslint-plugin-react-hooks": "^4.6.0",
+ "eslint-plugin-storybook": "^0.8.0",
+ "postcss": "^8.4.38",
+ "postcss-nesting": "^12.1.2",
+ "prettier": "^3.2.5",
+ "prop-types": "^15.8.1",
+ "react": "^18.2.0",
+ "react-apexcharts": "^1.4.1",
+ "react-dom": "^18.2.0",
+ "react-force-graph-2d": "^1.25.4",
+ "react-scripts": "5.0.1",
+ "rollup": "^4.13.1",
+ "rollup-plugin-dts": "^6.1.0",
+ "rollup-plugin-peer-deps-external": "^2.2.4",
+ "rollup-plugin-postcss": "^4.0.2",
+ "storybook": "^8.0.4",
+ "typescript": "^5.3.3",
+ "webpack": "^5.91.0"
+ },
+ "peerDependencies": {
+ "@tanstack/react-query": "^5.25.0",
+ "react": ">=18.2.0",
+ "react-apexcharts": "^1.4.1",
+ "react-dom": ">=18.2.0",
+ "react-force-graph-2d": "^1.25.4",
+ "typescript": "^5.4.3"
+ }
+}
diff --git a/packages/storykit/postcss.config.cjs b/packages/storykit/postcss.config.cjs
new file mode 100644
index 0000000..9615734
--- /dev/null
+++ b/packages/storykit/postcss.config.cjs
@@ -0,0 +1,7 @@
+module.exports = {
+ plugins: {
+ "@tailwindcss/nesting": "postcss-nesting",
+ tailwindcss: {},
+ autoprefixer: {},
+ },
+}
diff --git a/rollup.config.mjs b/packages/storykit/rollup.config.js
similarity index 64%
rename from rollup.config.mjs
rename to packages/storykit/rollup.config.js
index 88713d6..45f453e 100644
--- a/rollup.config.mjs
+++ b/packages/storykit/rollup.config.js
@@ -6,7 +6,7 @@ import dts from "rollup-plugin-dts"
import peerDepsExternal from "rollup-plugin-peer-deps-external"
import postcss from "rollup-plugin-postcss"
-// eslint-disable-next-line @typescript-eslint/no-var-requires
+// eslint-disable-next-line
const packageJson = require("./package.json")
const config = [
@@ -14,17 +14,33 @@ const config = [
input: "src/index.ts",
output: [
{
- file: packageJson.main,
+ file: packageJson.exports["."].default,
format: "cjs",
sourcemap: true,
},
{
- file: packageJson.module,
+ file: packageJson.exports["."].module,
format: "esm",
sourcemap: true,
},
],
- plugins: [peerDepsExternal(), resolve(), commonjs(), typescript(), terser(), postcss()],
+ plugins: [
+ peerDepsExternal(),
+ resolve(),
+ commonjs(),
+ typescript(),
+ terser(),
+ postcss({
+ config: {
+ path: "./postcss.config.cjs",
+ },
+ extensions: [".css"],
+ minimize: true,
+ inject: {
+ insertAt: "top",
+ },
+ }),
+ ],
external: ["react/jsx-runtime"],
},
{
diff --git a/packages/storykit/src/components/Button/Button-css-modules.tsx b/packages/storykit/src/components/Button/Button-css-modules.tsx
new file mode 100644
index 0000000..987c681
--- /dev/null
+++ b/packages/storykit/src/components/Button/Button-css-modules.tsx
@@ -0,0 +1,45 @@
+import { cn } from "@/lib/utils"
+import { type VariantProps, cva } from "class-variance-authority"
+import React from "react"
+
+import "../../global.css"
+import styles from "./styles.module.css"
+
+const button = cva(styles.skButton, {
+ variants: {
+ variant: {
+ primary: styles.primary,
+ secondary: styles.secondary,
+ },
+ size: {
+ small: styles.small,
+ medium: styles.medium,
+ large: styles.large,
+ },
+ },
+ defaultVariants: {
+ variant: "primary",
+ size: "medium",
+ },
+})
+
+export type ButtonProps = React.ButtonHTMLAttributes &
+ VariantProps & {
+ variant?: "primary" | "secondary"
+ size?: "small" | "medium" | "large"
+ }
+
+type ButtonRef = React.ForwardedRef
+
+const Button = React.forwardRef(({ children, className, variant, size, ...rest }: ButtonProps, ref: ButtonRef) => {
+ return (
+ //
+
+ {children}
+
+ )
+})
+
+Button.displayName = "Button"
+
+export default Button
diff --git a/packages/storykit/src/components/Button/Button.tsx b/packages/storykit/src/components/Button/Button.tsx
new file mode 100644
index 0000000..7ea8640
--- /dev/null
+++ b/packages/storykit/src/components/Button/Button.tsx
@@ -0,0 +1,44 @@
+import { cn } from "@/lib/utils"
+import { type VariantProps, cva } from "class-variance-authority"
+import React from "react"
+
+import "../../global.css"
+import "./styles.css"
+
+const button = cva("skButton", {
+ variants: {
+ variant: {
+ primary: "skButton--primary",
+ secondary: "skButton--secondary",
+ },
+ size: {
+ small: "skButton--small",
+ medium: "skButton--medium",
+ large: "skButton--large",
+ },
+ },
+ defaultVariants: {
+ variant: "primary",
+ size: "medium",
+ },
+})
+
+export type ButtonProps = React.ButtonHTMLAttributes &
+ VariantProps & {
+ variant?: "primary" | "secondary"
+ size?: "small" | "medium" | "large"
+ }
+
+type ButtonRef = React.ForwardedRef
+
+const Button = React.forwardRef(({ children, className, variant, size, ...rest }: ButtonProps, ref: ButtonRef) => {
+ return (
+
+ {children}
+
+ )
+})
+
+Button.displayName = "Button"
+
+export default Button
diff --git a/packages/storykit/src/components/Button/__docs__/Button.mdx b/packages/storykit/src/components/Button/__docs__/Button.mdx
new file mode 100644
index 0000000..d204fc3
--- /dev/null
+++ b/packages/storykit/src/components/Button/__docs__/Button.mdx
@@ -0,0 +1,37 @@
+import * as ButtonStory from "./Button.stories"
+import { Canvas, Meta } from "@storybook/blocks"
+
+
+
+# Button
+
+Button component with different props.
+
+#### Example
+
+
+
+## Usage
+
+```ts
+import { Button } from "@storyprotocol/storykit";
+
+const Example = () => {
+ return (
+ console.log("Clicked")}
+ >hello
+ );
+};
+
+export default Example;
+```
+
+#### Arguments
+
+- **children** - The content of the button. It can be a string, a ReactNode, or an array of ReactNodes.
+- **variant** - A string, 'primary' or 'secondary', that defines the color scheme of the button.
+- **size** - A string with one of three possible values: "small," "medium," or "large." It defines the size or dimensions of the button.
+- Other normal button props, such as `onClick`, `disabled`, etc.
diff --git a/packages/storykit/src/components/Button/__docs__/Button.stories.tsx b/packages/storykit/src/components/Button/__docs__/Button.stories.tsx
new file mode 100644
index 0000000..5661c8e
--- /dev/null
+++ b/packages/storykit/src/components/Button/__docs__/Button.stories.tsx
@@ -0,0 +1,35 @@
+import type { Meta, StoryObj } from "@storybook/react"
+
+import Button from "../Button"
+
+const meta = {
+ title: "Example/Button",
+ component: Button,
+ parameters: {
+ layout: "centered",
+ },
+ // tags: ["autodocs"],
+ argTypes: {},
+ args: {},
+} satisfies Meta
+
+export default meta
+type Story = StoryObj
+
+export const Primary: Story = {
+ args: {
+ children: "Button",
+ variant: "primary",
+ size: "medium",
+ disabled: false,
+ },
+}
+
+export const Secondary: Story = {
+ args: {
+ children: "Button",
+ variant: "secondary",
+ size: "medium",
+ disabled: false,
+ },
+}
diff --git a/packages/storykit/src/components/Button/__tests__/Button.test.tsx b/packages/storykit/src/components/Button/__tests__/Button.test.tsx
new file mode 100644
index 0000000..8f57dae
--- /dev/null
+++ b/packages/storykit/src/components/Button/__tests__/Button.test.tsx
@@ -0,0 +1,9 @@
+import { render } from "@testing-library/react"
+
+import Button from "../Button"
+
+describe("Button", () => {
+ test("renders the Button component", () => {
+ render(hi )
+ })
+})
diff --git a/packages/storykit/src/components/Button/index.ts b/packages/storykit/src/components/Button/index.ts
new file mode 100644
index 0000000..ae0694c
--- /dev/null
+++ b/packages/storykit/src/components/Button/index.ts
@@ -0,0 +1 @@
+export { default as Button } from "./Button"
diff --git a/packages/storykit/src/components/Button/styles.css b/packages/storykit/src/components/Button/styles.css
new file mode 100644
index 0000000..384f0fc
--- /dev/null
+++ b/packages/storykit/src/components/Button/styles.css
@@ -0,0 +1,21 @@
+.skButton {
+ @apply rounded-md border focus:outline-none focus:ring focus:ring-gray-300 disabled:pointer-events-none disabled:opacity-50;
+
+ &.skButton--primary {
+ @apply border-blue-500 bg-blue-500 text-white hover:bg-blue-700 dark:border-white dark:bg-white dark:text-blue-700 dark:hover:bg-blue-500 dark:hover:text-white;
+ }
+
+ &.skButton--secondary {
+ @apply border-blue-500 text-blue-500 hover:bg-blue-500 hover:text-white;
+ }
+
+ &.skButton--small {
+ @apply text-xs px-2 py-1;
+ }
+ &.skButton--medium {
+ @apply text-base px-4 py-2;
+ }
+ &.skButton--large {
+ @apply text-xl px-6 py-3;
+ }
+}
diff --git a/packages/storykit/src/components/Button/styles.module.css b/packages/storykit/src/components/Button/styles.module.css
new file mode 100644
index 0000000..d024632
--- /dev/null
+++ b/packages/storykit/src/components/Button/styles.module.css
@@ -0,0 +1,21 @@
+.skButton {
+ @apply rounded-md border focus:outline-none focus:ring focus:ring-gray-300 disabled:pointer-events-none disabled:opacity-50;
+
+ &.primary {
+ @apply border-blue-500 bg-blue-500 text-white hover:bg-blue-700 dark:border-white dark:bg-white dark:text-blue-700 dark:hover:bg-blue-500 dark:hover:text-white;
+ }
+
+ &.secondary {
+ @apply border-blue-500 text-blue-500 hover:bg-blue-500 hover:text-white;
+ }
+
+ &.small {
+ @apply text-xs px-2 py-1;
+ }
+ &.medium {
+ @apply text-base px-4 py-2;
+ }
+ &.large {
+ @apply text-xl px-6 py-3;
+ }
+}
diff --git a/packages/storykit/src/components/IpGraph/IpGraph.tsx b/packages/storykit/src/components/IpGraph/IpGraph.tsx
new file mode 100644
index 0000000..56f869a
--- /dev/null
+++ b/packages/storykit/src/components/IpGraph/IpGraph.tsx
@@ -0,0 +1,90 @@
+import React, { useEffect, useMemo, useState } from "react"
+
+import "../../global.css"
+import { convertAssetToGraphFormat } from "../../lib/graph"
+import { Asset } from "../../lib/types"
+import { useIpContext } from "../../providers"
+import "./styles.css"
+
+export type IpGraphProps = {
+ width?: number
+ height?: number
+}
+
+function IpGraph({ width = 500, height = 500 }: IpGraphProps) {
+ const { assetData } = useIpContext()
+ const formattedGraphData = useMemo(() => assetData && convertAssetToGraphFormat(assetData as Asset), [assetData])
+
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
+ const [ForceGraph, setForceGraph] = useState(null)
+
+ useEffect(() => {
+ // ForceGraph will break SSR, and needs to be loaded dynamically
+ async function importForceGraphModule() {
+ const fg = await import("react-force-graph-2d")
+ setForceGraph(fg.default)
+ }
+ importForceGraphModule()
+ }, [])
+
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
+ const nodeCanvasObject = (node: any, ctx: any, globalScale: any) => {
+ const isParent = node.level < 0
+ const isSelf = node.level === 0
+ const isChild = node.level > 0
+
+ let label
+
+ if (node.isRoot) {
+ if (isParent) {
+ label = `${node.name} (Root / Parent)`
+ } else {
+ label = `${node.name} (Root)`
+ }
+ } else if (isParent) {
+ label = `${node.name} (Parent)`
+ } else if (isChild) {
+ label = `${node.name} (Child)`
+ } else {
+ label = `${node.name}`
+ }
+
+ const fontSize = 12 / globalScale
+ const circleRadius = isSelf ? 6 : 3 // Radius of the circle
+
+ // Set the font for the text
+ ctx.font = `${fontSize}px Sans-Serif`
+
+ // Draw the circle
+ ctx.beginPath()
+ ctx.arc(node.x, node.y, circleRadius, 0, 2 * Math.PI, false)
+ if (isSelf) {
+ ctx.fillStyle = "black" // Color of the circle
+ } else if (isParent) {
+ ctx.fillStyle = "grey" // Color of the circle
+ } else {
+ ctx.fillStyle = "lightgrey" // Color of the circle
+ }
+
+ ctx.fill()
+ if (isSelf) {
+ ctx.strokeStyle = "lightblue" // Border color of the circle
+ ctx.stroke()
+ }
+
+ // Draw the text next to the circle
+ ctx.fillText(label, node.x, node.y + 10)
+ }
+
+ return (
+
+ {ForceGraph ? (
+
+ ) : null}
+
+ )
+}
+
+IpGraph.displayName = "IpGraph"
+
+export default IpGraph
diff --git a/packages/storykit/src/components/IpGraph/__docs__/Example.tsx b/packages/storykit/src/components/IpGraph/__docs__/Example.tsx
new file mode 100644
index 0000000..6bed236
--- /dev/null
+++ b/packages/storykit/src/components/IpGraph/__docs__/Example.tsx
@@ -0,0 +1,26 @@
+import { PREVIEW_IP_ASSETS } from "@/stories/data"
+import { QueryClient, QueryClientProvider } from "@tanstack/react-query"
+import React, { FC } from "react"
+import { Address } from "viem"
+
+import { IpProvider } from "../../../providers"
+import IpGraph from "../IpGraph"
+
+const Example: FC<{ ipId: Address; width?: number; height?: number }> = ({
+ ipId = PREVIEW_IP_ASSETS[0] as `0x${string}`,
+ width = 400,
+ height = 300,
+}) => {
+ const queryClient = new QueryClient()
+ return (
+
+
+
+
+
+
+
+ )
+}
+
+export default Example
diff --git a/packages/storykit/src/components/IpGraph/__docs__/IpGraph.mdx b/packages/storykit/src/components/IpGraph/__docs__/IpGraph.mdx
new file mode 100644
index 0000000..24db60d
--- /dev/null
+++ b/packages/storykit/src/components/IpGraph/__docs__/IpGraph.mdx
@@ -0,0 +1,45 @@
+import { Canvas, Controls, Meta } from "@storybook/blocks"
+
+import * as IpGraphStory from "./IpGraph.stories"
+
+
+
+# IpGraph
+
+Show IP Asset derivatives graph.
+
+#### Example
+
+
+
+
+
+## Dependencies
+
+The IP Graph also requires [react-force-graph-2d](https://www.npmjs.com/package/react-force-graph-2d).
+
+```bash
+npm install react-force-graph-2d
+```
+
+## Usage
+
+```ts
+import { IpProvider } from "@storyprotocol/storykit"
+import { IpGraph } from "@storyprotocol/storykit"
+
+const ExamplePage = () => {
+ return (
+
+
+
+ );
+};
+
+export default ExamplePage;
+```
+
+#### Arguments
+
+- **width**: _number_ - The width of the canvas
+- **height**: _number_ - The height of the canvas
diff --git a/packages/storykit/src/components/IpGraph/__docs__/IpGraph.stories.tsx b/packages/storykit/src/components/IpGraph/__docs__/IpGraph.stories.tsx
new file mode 100644
index 0000000..049a105
--- /dev/null
+++ b/packages/storykit/src/components/IpGraph/__docs__/IpGraph.stories.tsx
@@ -0,0 +1,38 @@
+import { PREVIEW_IP_ASSETS } from "@/stories/data"
+import type { Meta, StoryObj } from "@storybook/react"
+
+import Example from "./Example"
+
+const meta = {
+ title: "IP Assets/IpGraph",
+ component: Example,
+ parameters: {
+ layout: "centered",
+ },
+ // tags: ["autodocs"],
+ argTypes: {},
+ args: {},
+ // tags: ["isHidden"],
+} satisfies Meta
+
+export default meta
+type Story = StoryObj
+
+export const Select: Story = {
+ argTypes: {
+ ipId: {
+ options: PREVIEW_IP_ASSETS,
+ },
+ },
+ args: {
+ ipId: PREVIEW_IP_ASSETS[0] as `0x${string}`,
+ },
+}
+export const Input: Story = {
+ argTypes: {
+ ipId: { control: "text" },
+ },
+ args: {
+ ipId: PREVIEW_IP_ASSETS[0] as `0x${string}`,
+ },
+}
diff --git a/packages/storykit/src/components/IpGraph/index.ts b/packages/storykit/src/components/IpGraph/index.ts
new file mode 100644
index 0000000..d038069
--- /dev/null
+++ b/packages/storykit/src/components/IpGraph/index.ts
@@ -0,0 +1 @@
+export { default as IpGraph } from "./IpGraph"
diff --git a/packages/storykit/src/components/IpGraph/styles.css b/packages/storykit/src/components/IpGraph/styles.css
new file mode 100644
index 0000000..1bae73e
--- /dev/null
+++ b/packages/storykit/src/components/IpGraph/styles.css
@@ -0,0 +1,3 @@
+.skIpGraph {
+ @apply relative;
+}
diff --git a/packages/storykit/src/components/IpPolicyAccordion/IpPolicyAccordion.tsx b/packages/storykit/src/components/IpPolicyAccordion/IpPolicyAccordion.tsx
new file mode 100644
index 0000000..a4a5c10
--- /dev/null
+++ b/packages/storykit/src/components/IpPolicyAccordion/IpPolicyAccordion.tsx
@@ -0,0 +1,144 @@
+import { POLICY_TYPE } from "@/lib/types"
+import { cn, getPolicyTypeByPILData } from "@/lib/utils"
+import { useIpContext } from "@/providers"
+import { cva } from "class-variance-authority"
+import { CircleCheck, CircleMinus } from "lucide-react"
+import { useState } from "react"
+import { FaCaretDown, FaCaretUp } from "react-icons/fa6"
+
+import "../../global.css"
+import "./styles.css"
+
+const CANS = {
+ REMIX: "Remix this work",
+ INCLUDE: "Include this work in their own work(s)",
+ CREDIT: "Credit you appropriately",
+ DISTRIBUTE: "Distribute their remix anywhere",
+ PURCHASE_RIGHTS: "Purchase the right to use your creation (for a price you set) and register it into Story Protocol",
+ CREATOR_CREDIT: "Credit you as the creator",
+ PUBLISH: "Display / publish the work in any medium",
+}
+
+const ShowCans = ({ type }: { type: string }) => {
+ switch (type) {
+ case POLICY_TYPE.NON_COMMERCIAL_SOCIAL_REMIXING:
+ return [CANS.REMIX, CANS.INCLUDE, CANS.CREDIT, CANS.DISTRIBUTE]
+ break
+ case POLICY_TYPE.COMMERCIAL_USE:
+ return [CANS.PURCHASE_RIGHTS, CANS.CREATOR_CREDIT, CANS.PUBLISH]
+ break
+ case POLICY_TYPE.COMMERCIAL_REMIX:
+ return [CANS.REMIX, CANS.INCLUDE, CANS.CREDIT, CANS.DISTRIBUTE]
+ break
+ case POLICY_TYPE.OPEN_DOMAIN:
+ return [CANS.REMIX, CANS.INCLUDE, CANS.DISTRIBUTE, CANS.PUBLISH]
+ break
+ default:
+ return []
+ break
+ }
+}
+
+const CANNOTS = {
+ RESELL: "Resell your original work",
+ COMMERCIALIZE: "Commercialize the remix",
+ CLAIM_AS_ORIGINAL: "Claim credit for the remix (as original work)",
+ CLAIM: "Claim your work as their own",
+ REMIX: "Create remixes of the commercial use.",
+}
+
+const ShowCannots = ({ type }: { type: string }) => {
+ switch (type) {
+ case POLICY_TYPE.NON_COMMERCIAL_SOCIAL_REMIXING:
+ return [CANNOTS.RESELL, CANNOTS.COMMERCIALIZE, CANNOTS.CLAIM_AS_ORIGINAL]
+ break
+ case POLICY_TYPE.COMMERCIAL_USE:
+ return [CANNOTS.CLAIM, CANNOTS.REMIX, CANNOTS.RESELL]
+ break
+ case POLICY_TYPE.COMMERCIAL_REMIX:
+ return [CANNOTS.RESELL, CANNOTS.COMMERCIALIZE, CANNOTS.CLAIM_AS_ORIGINAL]
+ break
+ case POLICY_TYPE.OPEN_DOMAIN:
+ return [CANNOTS.RESELL, CANNOTS.COMMERCIALIZE, CANNOTS.CLAIM_AS_ORIGINAL, CANNOTS.CLAIM]
+ break
+ default:
+ return [CANNOTS.RESELL, CANNOTS.CLAIM, CANNOTS.REMIX]
+ break
+ }
+}
+
+const policiesStyles = cva("", {
+ variants: {
+ size: {
+ small: "skIpPolicyAccordion--small",
+ medium: "skIpPolicyAccordion--medium",
+ large: "skIpPolicyAccordion--large",
+ },
+ },
+})
+
+export type IpPolicyAccordionProps = {
+ size?: "small" | "medium" | "large"
+}
+
+function IpPolicyAccordion({ size = "medium" }: IpPolicyAccordionProps) {
+ const { policyData } = useIpContext()
+ const [expanded, setExpanded] = useState(0)
+
+ const iconWidth = size === "small" ? 16 : size === "medium" ? 20 : 24
+
+ return policyData?.length ? (
+
+ {/* eslint-disable-next-line @typescript-eslint/no-explicit-any */}
+ {(policyData as unknown as any[])?.map((policy, index) => (
+
+
setExpanded(expanded === index ? null : index)}
+ >
+ {getPolicyTypeByPILData(policy.licenseTerms)}
+ {expanded === index ? : }
+
+
+
+
+ {ShowCans({ type: getPolicyTypeByPILData(policy.licenseTerms) }).length ? (
+ <>
+
Others Can
+
+ {ShowCans({ type: getPolicyTypeByPILData(policy.licenseTerms) }).map((can, index) => (
+
+
+ {can}
+
+ ))}
+
+ >
+ ) : null}
+
Others Cannot
+
+ {ShowCannots({ type: getPolicyTypeByPILData(policy.licenseTerms) }).map((can, index) => (
+
+
+ {can}
+
+ ))}
+
+
+
+
+ {index < policyData.length - 1 &&
}
+
+ ))}
+
+ ) : (
+ No Policy
+ )
+}
+
+export default IpPolicyAccordion
diff --git a/packages/storykit/src/components/IpPolicyAccordion/__docs__/Example.tsx b/packages/storykit/src/components/IpPolicyAccordion/__docs__/Example.tsx
new file mode 100644
index 0000000..47d5db2
--- /dev/null
+++ b/packages/storykit/src/components/IpPolicyAccordion/__docs__/Example.tsx
@@ -0,0 +1,27 @@
+import { PREVIEW_IP_ASSETS } from "@/stories/data"
+import { QueryClient, QueryClientProvider } from "@tanstack/react-query"
+import React, { FC } from "react"
+import { Address } from "viem"
+
+import { IpProvider } from "../../../providers"
+import IpPolicyAccordion from "../IpPolicyAccordion"
+
+type Size = "small" | "medium" | "large"
+
+const Example: FC<{ ipId: Address; size: Size }> = ({
+ ipId = PREVIEW_IP_ASSETS[0] as `0x${string}`,
+ size = "medium",
+}) => {
+ const queryClient = new QueryClient()
+ return (
+
+
+
+
+
+
+
+ )
+}
+
+export default Example
diff --git a/packages/storykit/src/components/IpPolicyAccordion/__docs__/IpPolicyAccordion.mdx b/packages/storykit/src/components/IpPolicyAccordion/__docs__/IpPolicyAccordion.mdx
new file mode 100644
index 0000000..15cd6ad
--- /dev/null
+++ b/packages/storykit/src/components/IpPolicyAccordion/__docs__/IpPolicyAccordion.mdx
@@ -0,0 +1,32 @@
+import { Canvas, Controls, Meta } from "@storybook/blocks"
+
+import * as IpPolicyAccordionStory from "./IpPolicyAccordion.stories"
+
+
+
+# IpPolicyAccordion
+
+Displays the IP Asset policies in a readable format (cans & cannots).
+
+#### Example
+
+
+
+
+
+## Usage
+
+```ts
+import { IpProvider } from "@storyprotocol/storykit"
+import { IpPolicyAccordion } from "@storyprotocol/storykit"
+
+const ExamplePage = () => {
+ return (
+
+
+
+ );
+};
+
+export default ExamplePage;
+```
diff --git a/packages/storykit/src/components/IpPolicyAccordion/__docs__/IpPolicyAccordion.stories.tsx b/packages/storykit/src/components/IpPolicyAccordion/__docs__/IpPolicyAccordion.stories.tsx
new file mode 100644
index 0000000..00db34b
--- /dev/null
+++ b/packages/storykit/src/components/IpPolicyAccordion/__docs__/IpPolicyAccordion.stories.tsx
@@ -0,0 +1,40 @@
+import { PREVIEW_IP_ASSETS } from "@/stories/data"
+import type { Meta, StoryObj } from "@storybook/react"
+
+import Example from "./Example"
+
+const meta = {
+ title: "IP Assets/IpPolicyAccordion",
+ component: Example,
+ parameters: {
+ layout: "centered",
+ },
+ // tags: ["autodocs"],
+ argTypes: {},
+ args: {},
+ // tags: ["isHidden"],
+} satisfies Meta
+
+export default meta
+type Story = StoryObj
+
+export const Select: Story = {
+ argTypes: {
+ ipId: {
+ options: PREVIEW_IP_ASSETS,
+ },
+ },
+ args: {
+ ipId: PREVIEW_IP_ASSETS[0] as `0x${string}`,
+ size: "medium",
+ },
+}
+export const Input: Story = {
+ argTypes: {
+ ipId: { control: "text" },
+ },
+ args: {
+ ipId: PREVIEW_IP_ASSETS[0] as `0x${string}`,
+ size: "medium",
+ },
+}
diff --git a/packages/storykit/src/components/IpPolicyAccordion/index.tsx b/packages/storykit/src/components/IpPolicyAccordion/index.tsx
new file mode 100644
index 0000000..f05ad5a
--- /dev/null
+++ b/packages/storykit/src/components/IpPolicyAccordion/index.tsx
@@ -0,0 +1 @@
+export { default as IpPolicyAccordion } from "./IpPolicyAccordion"
diff --git a/packages/storykit/src/components/IpPolicyAccordion/styles.css b/packages/storykit/src/components/IpPolicyAccordion/styles.css
new file mode 100644
index 0000000..0cefe8e
--- /dev/null
+++ b/packages/storykit/src/components/IpPolicyAccordion/styles.css
@@ -0,0 +1,70 @@
+.skIpPolicyAccordion {
+ @apply flex flex-col w-full min-w-48;
+
+ .skIpPolicyAccordion__item {
+ @apply flex flex-col w-full;
+ }
+
+ .skIpPolicyAccordion__item-header {
+ @apply flex w-full items-center justify-between cursor-pointer;
+ }
+
+ .skIpPolicyAccordion__item-list {
+ @apply flex w-full items-center justify-between overflow-hidden h-0;
+
+ &.skIpPolicyAccordion__item-list--expanded {
+ @apply h-auto;
+ }
+ }
+
+ .skIpPolicyAccordion__properties {
+ @apply flex flex-col pt-2 gap-2;
+ }
+
+ .skIpPolicyAccordion__item-list-title {
+ @apply font-bold;
+ }
+
+ .skIpPolicyAccordion__list {
+ @apply flex flex-col;
+ }
+
+ .skIpPolicyAccordion__property {
+ @apply flex w-full items-center gap-2;
+
+ &.skIpPolicyAccordion__property--can > svg {
+ @apply text-green-500;
+ }
+
+ &.skIpPolicyAccordion__property--cannot > svg {
+ @apply text-red-500;
+ }
+ }
+
+ .skIpPolicyAccordion__divider {
+ @apply border-b border-gray-200 w-full my-2;
+ }
+
+ &.skIpPolicyAccordion--small {
+ @apply text-sm;
+ }
+
+ &.skIpPolicyAccordion--medium {
+ @apply text-base;
+
+ .policy-list {
+ @apply gap-1;
+ }
+ }
+
+ &.skIpPolicyAccordion--large {
+ @apply text-lg;
+ .policy-list {
+ @apply gap-2;
+ }
+ }
+
+ &.skIpPolicyAccordion--no-policy {
+ @apply text-slate-400;
+ }
+}
diff --git a/packages/storykit/src/components/IpRoyaltyPieChart/IpRoyaltyPieChart.tsx b/packages/storykit/src/components/IpRoyaltyPieChart/IpRoyaltyPieChart.tsx
new file mode 100644
index 0000000..291e418
--- /dev/null
+++ b/packages/storykit/src/components/IpRoyaltyPieChart/IpRoyaltyPieChart.tsx
@@ -0,0 +1,104 @@
+import { shortenAddress } from "@/lib/utils"
+import { useIpContext } from "@/providers"
+import { useEffect, useState } from "react"
+import { Address } from "viem"
+
+import "../../global.css"
+import "./styles.css"
+
+function IpRoyaltyPieChart() {
+ const { royaltyData } = useIpContext()
+
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
+ const [Chart, setChart] = useState(null)
+ useEffect(() => {
+ import("react-apexcharts").then((Component) => setChart(Component))
+ }, [])
+
+ let ApexChart = Chart
+ if (ApexChart?.default) ApexChart = ApexChart.default
+ if (ApexChart?.default) ApexChart = ApexChart.default
+
+ if (royaltyData?.targetAncestors) {
+ const chart = {
+ options: {
+ chart: {
+ width: 300,
+ type: "pie" as `pie`,
+ },
+ dataLabels: {
+ style: {
+ fontSize: "20px",
+ // fontFamily: "Inter, ui-sans-serif",
+ fontWeight: "400",
+ colors: ["#fff", "#fff", "#1f2937"],
+ },
+ dropShadow: {
+ enabled: false,
+ },
+ formatter: (value: number) => `${value.toFixed(1)} %`,
+ },
+ // labels: ["Direct", "Organic search"],
+ plotOptions: {
+ pie: {
+ dataLabels: {
+ offset: -20,
+ },
+ },
+ },
+ colors: ["#5f6060", "#494848"],
+ tooltip: {
+ enabled: true,
+ y: {
+ title: {
+ formatter: (value: Address) => shortenAddress(value),
+ },
+ },
+ },
+ legend: {
+ show: false,
+ },
+ labels: royaltyData?.targetAncestors,
+ responsive: [
+ {
+ breakpoint: 480,
+ options: {
+ chart: {
+ width: 300,
+ },
+ legend: {
+ position: "bottom",
+ },
+ },
+ },
+ ],
+ },
+ series: royaltyData?.targetRoyaltyAmount.map(Number),
+ }
+
+ return (
+
+
+ {ApexChart ? (
+
+ ) : null}
+
+
+
+ {/* eslint-disable-next-line @typescript-eslint/no-explicit-any */}
+ {royaltyData?.targetAncestors.map((target: any, i: any) => (
+
+
{shortenAddress(target)}
+ {royaltyData.targetRoyaltyAmount[i]}
+
+ ))}
+
+
+
+ )
+ }
+
+ return No Royalty Data
+}
+
+export default IpRoyaltyPieChart
diff --git a/packages/storykit/src/components/IpRoyaltyPieChart/__docs__/Example.tsx b/packages/storykit/src/components/IpRoyaltyPieChart/__docs__/Example.tsx
new file mode 100644
index 0000000..eadfd05
--- /dev/null
+++ b/packages/storykit/src/components/IpRoyaltyPieChart/__docs__/Example.tsx
@@ -0,0 +1,22 @@
+import { PREVIEW_IP_ASSETS } from "@/stories/data"
+import { QueryClient, QueryClientProvider } from "@tanstack/react-query"
+import React, { FC } from "react"
+import { Address } from "viem"
+
+import { IpProvider } from "../../../providers"
+import IpRoyaltyPieChart from "../IpRoyaltyPieChart"
+
+const Example: FC<{ ipId: Address }> = ({ ipId = PREVIEW_IP_ASSETS[1] as `0x${string}` }) => {
+ const queryClient = new QueryClient()
+ return (
+
+
+
+
+
+
+
+ )
+}
+
+export default Example
diff --git a/packages/storykit/src/components/IpRoyaltyPieChart/__docs__/IpRoyaltyPieChart.mdx b/packages/storykit/src/components/IpRoyaltyPieChart/__docs__/IpRoyaltyPieChart.mdx
new file mode 100644
index 0000000..0e5989e
--- /dev/null
+++ b/packages/storykit/src/components/IpRoyaltyPieChart/__docs__/IpRoyaltyPieChart.mdx
@@ -0,0 +1,40 @@
+import { Canvas, Controls, Meta } from "@storybook/blocks"
+
+import * as IpRoyaltyPieChartStory from "./IpRoyaltyPieChart.stories"
+
+
+
+# IpRoyaltyPieChart
+
+Displays the divisions of royalties for an IP Asset in a pie chart.
+
+#### Example
+
+
+
+
+
+## Dependencies
+
+The IP Royalty Pie Chart also requires [react-apexcharts](https://www.npmjs.com/package/react-apexcharts).
+
+```bash
+npm install react-apexcharts
+```
+
+## Usage
+
+```ts
+import { IpProvider } from "@storyprotocol/storykit"
+import { IpRoyaltyPieChart } from "@storyprotocol/storykit"
+
+const ExamplePage = () => {
+ return (
+
+
+
+ );
+};
+
+export default ExamplePage;
+```
diff --git a/packages/storykit/src/components/IpRoyaltyPieChart/__docs__/IpRoyaltyPieChart.stories.tsx b/packages/storykit/src/components/IpRoyaltyPieChart/__docs__/IpRoyaltyPieChart.stories.tsx
new file mode 100644
index 0000000..c218f3f
--- /dev/null
+++ b/packages/storykit/src/components/IpRoyaltyPieChart/__docs__/IpRoyaltyPieChart.stories.tsx
@@ -0,0 +1,38 @@
+import { PREVIEW_IP_ASSETS } from "@/stories/data"
+import type { Meta, StoryObj } from "@storybook/react"
+
+import Example from "./Example"
+
+const meta = {
+ title: "IP Assets/IpRoyaltyPieChart",
+ component: Example,
+ parameters: {
+ layout: "centered",
+ },
+ // tags: ["autodocs"],
+ argTypes: {},
+ args: {},
+ // tags: ["isHidden"],
+} satisfies Meta
+
+export default meta
+type Story = StoryObj
+
+export const Select: Story = {
+ argTypes: {
+ ipId: {
+ options: PREVIEW_IP_ASSETS,
+ },
+ },
+ args: {
+ ipId: PREVIEW_IP_ASSETS[1] as `0x${string}`,
+ },
+}
+export const Input: Story = {
+ argTypes: {
+ ipId: { control: "text" },
+ },
+ args: {
+ ipId: PREVIEW_IP_ASSETS[1] as `0x${string}`,
+ },
+}
diff --git a/packages/storykit/src/components/IpRoyaltyPieChart/index.tsx b/packages/storykit/src/components/IpRoyaltyPieChart/index.tsx
new file mode 100644
index 0000000..80b6af8
--- /dev/null
+++ b/packages/storykit/src/components/IpRoyaltyPieChart/index.tsx
@@ -0,0 +1 @@
+export { default as IpRoyaltyPieChart } from "./IpRoyaltyPieChart"
diff --git a/packages/storykit/src/components/IpRoyaltyPieChart/styles.css b/packages/storykit/src/components/IpRoyaltyPieChart/styles.css
new file mode 100644
index 0000000..d59f690
--- /dev/null
+++ b/packages/storykit/src/components/IpRoyaltyPieChart/styles.css
@@ -0,0 +1,30 @@
+.skIpRoyaltyPieChart {
+ @apply flex flex-col items-center justify-between;
+
+ .skIpRoyaltyPieChart__chart {
+ @apply min-h-[230px];
+ }
+
+ .skIpRoyaltyPieChart__key {
+ @apply w-full min-w-[300px] px-2;
+ }
+
+ .skIpRoyaltyPieChart__list {
+ @apply divide-y divide-gray-100 overflow-x-hidden text-sm leading-6;
+ }
+
+ .skIpRoyaltyPieChart__item {
+ @apply flex justify-between gap-x-4 py-1;
+ }
+
+ .skIpRoyaltyPieChart__address {
+ @apply text-xs capitalize text-gray-500;
+ }
+ .skIpRoyaltyPieChart__value {
+ @apply truncate text-gray-700;
+ }
+
+ &.skIpRoyaltyPieChart--empty {
+ @apply items-start text-slate-400;
+ }
+}
diff --git a/packages/storykit/src/components/IpWidget/IpWidget.tsx b/packages/storykit/src/components/IpWidget/IpWidget.tsx
new file mode 100644
index 0000000..19bf6a7
--- /dev/null
+++ b/packages/storykit/src/components/IpWidget/IpWidget.tsx
@@ -0,0 +1,394 @@
+import { Menu, Transition } from "@headlessui/react"
+import React, { Fragment, useState } from "react"
+import { FaWandMagicSparkles } from "react-icons/fa6"
+import { IoIosShareAlt } from "react-icons/io"
+import { SiOpensea } from "react-icons/si"
+import { TbLicense } from "react-icons/tb"
+import { Address } from "viem"
+
+import "../../global.css"
+import { cn, shortenAddress } from "../../lib/utils"
+import { IpProvider, useIpContext } from "../../providers"
+import { IpGraph } from "../IpGraph"
+import { IpPolicyAccordion } from "../IpPolicyAccordion"
+import { IpRoyaltyPieChart } from "../IpRoyaltyPieChart"
+import "./styles.css"
+
+export type IpWidgetProps = {
+ ipId: Address
+ isBottomNav?: boolean
+}
+
+export const IPA_CARD_TABS = [
+ { id: "overview", label: "Overview" },
+ { id: "licensing", label: "Licensing" },
+ { id: "derivatives", label: "IP Graph" },
+ { id: "royalty", label: "Royalty" },
+]
+
+const IpWidget = ({ ipId, isBottomNav, ...rest }: IpWidgetProps) => {
+ return
+}
+
+function IPAssetCardWrapper({ ipId, isBottomNav = true }: { ipId: Address; isBottomNav?: boolean }) {
+ const [activeTab, setActiveTab] = useState(IPA_CARD_TABS[0].id)
+
+ const _Tabs = () => (
+
+
+
+ )
+
+ const _Card = () => (
+
+
+
+ )
+
+ return (
+
+
+ {isBottomNav ? <_Card /> : <_Tabs />}
+ {isBottomNav ? <_Tabs /> : <_Card />}
+
+
+ )
+}
+
+function Tabs({
+ ipId,
+ activeTab,
+ setActiveTab,
+}: {
+ ipId: Address
+ activeTab: string
+ setActiveTab: (tab: string) => void
+}) {
+ return (
+
+
+ {IPA_CARD_TABS.map((tab) => (
+ setActiveTab(tab.id)}
+ className={cn("skIpWidget__tab", activeTab !== tab.id && "skIpWidget__tab--active")}
+ style={{
+ WebkitTapHighlightColor: "transparent",
+ }}
+ >
+ {activeTab === tab.id && }
+ {tab.label}
+
+ ))}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ )
+}
+
+function IPAssetCard({ isBottomNav, activeTab }: { isBottomNav?: boolean; activeTab: string }) {
+ switch (activeTab) {
+ case "overview":
+ return
+ case "licensing":
+ return (
+
+
+
+
+
+ )
+ case "derivatives":
+ return (
+
+
+
+ )
+ case "royalty":
+ return (
+
+
+
+ )
+ default:
+ return
+ }
+}
+
+function IPAssetLayout({ children, isBottomNav }: { children: React.ReactNode; isBottomNav?: boolean }) {
+ return (
+
+
+ {children}
+
+ )
+}
+
+function IPAssetDropdownMenu() {
+ const { assetData } = useIpContext()
+ return (
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {assetData?.rootIpIds?.[0]?.id && (
+
+
Root IP
+
+
+
{shortenAddress(assetData?.rootIpIds?.[0]?.id as Address)}
+
+
+ )}
+ {assetData?.parentIpIds && assetData?.parentIpIds?.length > 0 && (
+
+
Parent IPs
+
+
+ {assetData?.parentIpIds?.slice(0, 5).map((asset, index) => (
+
+ ))}
+
+
+ {assetData?.parentIpIds?.length === 1
+ ? shortenAddress(assetData?.parentIpIds?.[0]?.id as Address)
+ : `${assetData?.parentIpIds?.length} total `}
+
+
+
+ )}
+ {assetData?.childIpIds && assetData?.childIpIds?.length > 0 && (
+
+
Child IPs
+
+
+ {assetData?.childIpIds?.slice(0, 5).map((asset, index) => (
+
+ ))}
+
+
+ {assetData?.childIpIds?.length === 1
+ ? shortenAddress(assetData?.childIpIds?.[0]?.id as Address)
+ : `${assetData?.childIpIds?.length} total `}
+
+
+
+ )}
+
+
+
+
+ )
+}
+
+function IPAssetHeader({ hideImage }: { hideImage?: boolean }) {
+ const { nftData, assetData } = useIpContext()
+ return (
+
+
+
+
+
+
+
+
+ {assetData?.nftMetadata.name || nftData?.name || "Untitled"}
+
+
+ Owned by{" "}
+
+ {shortenAddress(nftData?.owners[0].owner_address as string)}
+
+
+
+
+
+
+
+ )
+}
+
+function IPAssetOverview({ isBottomNav }: { isBottomNav?: boolean }) {
+ const { nftData, isAssetDataLoading, isNftDataLoading } = useIpContext()
+
+ const isLoading = isAssetDataLoading || isNftDataLoading
+
+ const Title = () =>
+ isLoading ? (
+
+ ) : (
+
+ )
+
+ const AssetImage = () =>
+ isLoading ? (
+
+ ) : (
+
+
+
+ )
+
+ const TitleBar = () => (
+
+
+
+ )
+
+ return (
+
+ {isBottomNav &&
}
+
+ {!isBottomNav &&
}
+
+ )
+}
+
+IpWidget.displayName = "IpWidget"
+
+export default IpWidget
diff --git a/packages/storykit/src/components/IpWidget/__docs__/Example.tsx b/packages/storykit/src/components/IpWidget/__docs__/Example.tsx
new file mode 100644
index 0000000..c23faf9
--- /dev/null
+++ b/packages/storykit/src/components/IpWidget/__docs__/Example.tsx
@@ -0,0 +1,29 @@
+import { PREVIEW_IP_ASSETS } from "@/stories/data"
+import { QueryClient, QueryClientProvider } from "@tanstack/react-query"
+import React, { FC } from "react"
+import { Address } from "viem"
+
+import IpWidget from "../IpWidget"
+
+const Example: FC<{ ipId: Address; isBottomNav?: boolean }> = ({
+ ipId = PREVIEW_IP_ASSETS[1] as "0x${string}",
+ isBottomNav = false,
+}) => {
+ const queryClient = new QueryClient()
+ return (
+
+
+
+
+
+ )
+}
+
+export default Example
diff --git a/packages/storykit/src/components/IpWidget/__docs__/IpWidget.mdx b/packages/storykit/src/components/IpWidget/__docs__/IpWidget.mdx
new file mode 100644
index 0000000..e7797aa
--- /dev/null
+++ b/packages/storykit/src/components/IpWidget/__docs__/IpWidget.mdx
@@ -0,0 +1,34 @@
+import { Canvas, Controls, Meta } from "@storybook/blocks"
+
+import * as IpWidgetStory from "./IpWidget.stories"
+
+
+
+# IP Asset Widget
+
+IP Asset card widget that displays IP data including the IpGraph, IpRoyaltyPieChart, and IpPolicyAccordion.
+
+#### Example
+
+
+
+
+
+## Usage
+
+```ts
+import { IpWidget } from "@storyprotocol/storykit"
+
+const ExamplePage = () => {
+ return (
+
+ );
+};
+
+export default ExamplePage;
+```
+
+#### Arguments
+
+- **ipId**: _string_ - The IP Asset Id, an Address starting 0x.
+- **isBottomNav**: _boolean_ - Position of Tabs
diff --git a/packages/storykit/src/components/IpWidget/__docs__/IpWidget.stories.tsx b/packages/storykit/src/components/IpWidget/__docs__/IpWidget.stories.tsx
new file mode 100644
index 0000000..0385ca9
--- /dev/null
+++ b/packages/storykit/src/components/IpWidget/__docs__/IpWidget.stories.tsx
@@ -0,0 +1,41 @@
+import { PREVIEW_IP_ASSETS } from "@/stories/data"
+import type { Meta, StoryObj } from "@storybook/react"
+
+import Example from "./Example"
+
+const meta = {
+ title: "IP Assets/IpWidget",
+ component: Example,
+ parameters: {
+ layout: "centered",
+ },
+ // tags: ["autodocs"],
+ argTypes: {
+ isBottomNav: { control: "boolean", defaultValue: true },
+ },
+ args: {},
+} satisfies Meta
+
+export default meta
+type Story = StoryObj
+
+export const Select: Story = {
+ argTypes: {
+ ipId: {
+ options: PREVIEW_IP_ASSETS,
+ },
+ },
+ args: {
+ ipId: PREVIEW_IP_ASSETS[0] as `0x${string}`,
+ isBottomNav: true,
+ },
+}
+export const Input: Story = {
+ argTypes: {
+ ipId: { control: "text" },
+ },
+ args: {
+ ipId: PREVIEW_IP_ASSETS[0] as `0x${string}`,
+ isBottomNav: true,
+ },
+}
diff --git a/packages/storykit/src/components/IpWidget/__tests__/IPAssetWidget.test.tsx b/packages/storykit/src/components/IpWidget/__tests__/IPAssetWidget.test.tsx
new file mode 100644
index 0000000..86d2dd2
--- /dev/null
+++ b/packages/storykit/src/components/IpWidget/__tests__/IPAssetWidget.test.tsx
@@ -0,0 +1,9 @@
+import { render } from "@testing-library/react"
+
+import IpWidget from "../IpWidget"
+
+describe("IpWidget", () => {
+ test("renders the IpWidget component", () => {
+ render( )
+ })
+})
diff --git a/packages/storykit/src/components/IpWidget/index.ts b/packages/storykit/src/components/IpWidget/index.ts
new file mode 100644
index 0000000..00d52ff
--- /dev/null
+++ b/packages/storykit/src/components/IpWidget/index.ts
@@ -0,0 +1 @@
+export { default as IpWidget } from "./IpWidget"
diff --git a/packages/storykit/src/components/IpWidget/styles.css b/packages/storykit/src/components/IpWidget/styles.css
new file mode 100644
index 0000000..e120f5a
--- /dev/null
+++ b/packages/storykit/src/components/IpWidget/styles.css
@@ -0,0 +1,218 @@
+.skIpWidget {
+ @apply flex min-h-[410px] w-[390px] flex-col items-start justify-between gap-0 rounded-xl border-2 bg-white shadow-lg;
+
+ .skIpWidget__card {
+ @apply flex size-full flex-auto flex-col p-2;
+ }
+
+ .skIpWidget__tabs {
+ @apply w-full px-2 pt-2;
+
+ &.skIpWidget__tabs--bottom {
+ @apply pb-2 pt-0;
+ }
+
+ .skIpWidget__tabsContainer {
+ @apply flex space-x-1;
+ }
+
+ .skIpWidget__tabsInner {
+ @apply flex w-full justify-between;
+ }
+
+ .skIpWidget__tab {
+ @apply relative rounded-full px-2.5 py-1.5 text-sm font-medium text-black outline-gray-400 transition focus-visible:outline-2;
+
+ &.skIpWidget__tab--active {
+ @apply hover:text-black/60;
+ }
+ }
+
+ .skIpWidget__activeTab {
+ @apply absolute inset-0 z-10 bg-white mix-blend-difference rounded-full;
+ }
+ }
+
+ .skIpWidget__policyContainer {
+ @apply p-2;
+
+ .skIpPolicyAccordion--no-policy {
+ @apply w-full items-center py-32;
+ }
+ }
+
+ .skIpWidget__ipAssetLayout {
+ @apply flex gap-2 flex-col;
+
+ .skIpWidget__ipAssetLayout--topNav {
+ @apply flex-col-reverse justify-between h-full flex-auto;
+ }
+
+ .skIpRoyaltyPieChart--empty {
+ @apply w-full items-center py-32;
+ }
+ }
+
+ .skIpWidget__ipAssetDropdownMenu {
+ @apply relative inline-block text-left;
+
+ .skIpWidget__ipAssetDropdownMenu__button {
+ @apply inline-flex w-full justify-center gap-x-1.5 rounded-md bg-white p-2 text-sm font-semibold text-gray-900 hover:bg-gray-100 hover:shadow-sm;
+
+ svg {
+ @apply size-4 flex-none text-gray-600;
+ }
+ }
+
+ .skIpWidget__ipAssetDropdownMenu__items {
+ @apply absolute right-0 z-10 mt-2 w-48 origin-top-right divide-y divide-gray-100 rounded-md bg-white shadow-lg ring-1 ring-black/5 focus:outline-none;
+ }
+
+ .skIpWidget__ipAssetDropdownMenu__rootIp {
+ @apply px-4 py-2;
+
+ .skIpWidget__ipAssetDropdownMenu__rootIp__title {
+ @apply text-xs text-slate-400;
+ }
+
+ .skIpWidget__ipAssetDropdownMenu__rootIp__item {
+ @apply flex items-center;
+
+ > img {
+ @apply relative z-10 mr-3 inline-block size-5 rounded-full ring-2 ring-white;
+ }
+
+ > p {
+ @apply truncate text-sm text-gray-900;
+ }
+ }
+ }
+
+ .skIpWidget__ipAssetDropdownMenu__parentIp {
+ @apply px-4 py-2;
+
+ .skIpWidget__ipAssetDropdownMenu__parentIp__title {
+ @apply text-xs text-slate-400;
+ }
+
+ .skIpWidget__ipAssetDropdownMenu__parentIp__avatars {
+ @apply mr-3 -space-x-3;
+
+ img {
+ @apply relative inline-block h-5 w-5 rounded-full ring-2 ring-white;
+ }
+ }
+ .skIpWidget__ipAssetDropdownMenu__parentIp__addresses {
+ @apply truncate text-sm text-gray-900;
+ }
+ }
+
+ .skIpWidget__ipAssetDropdownMenu__childIp {
+ @apply px-4 py-2;
+
+ .skIpWidget__ipAssetDropdownMenu__childIp__title {
+ @apply text-xs text-slate-400;
+ }
+ .skIpWidget__ipAssetDropdownMenu__childIp__container {
+ @apply flex items-center;
+ }
+ .skIpWidget__ipAssetDropdownMenu__childIp__avatars {
+ @apply mr-3 -space-x-3;
+
+ img {
+ @apply relative inline-block h-5 w-5 rounded-full ring-2 ring-white;
+ }
+ }
+ .skIpWidget__ipAssetDropdownMenu__childIp__addresses {
+ @apply truncate text-sm text-gray-900;
+ }
+ }
+
+ .skIpWidget__ipAssetDropdownMenu__menu {
+ @apply py-1;
+
+ .skIpWidget__ipAssetDropdownMenu__menu__link {
+ @apply flex items-center px-4 py-2 text-sm text-gray-700;
+
+ .skIpWidget__ipAssetDropdownMenu__menu__icon {
+ @apply mr-3 size-5 text-gray-400;
+ }
+
+ &.skIpWidget__ipAssetDropdownMenu__menu__link--active {
+ @apply bg-gray-100 text-gray-900;
+
+ .skIpWidget__ipAssetDropdownMenu__menu__icon {
+ @apply text-gray-500;
+ }
+ }
+ }
+ }
+ }
+
+ .skIpWidget__ipAssetHeader {
+ @apply flex w-full flex-row justify-between;
+
+ .skIpWidget__ipAssetHeader__inner {
+ @apply flex w-full flex-row justify-start gap-2;
+ }
+
+ .skIpWidget__ipAssetHeader__image {
+ &.skIpWidget__ipAssetHeader__image--hidden {
+ @apply hidden;
+ }
+ img {
+ @apply size-10 rounded-md object-cover;
+ }
+ }
+ .skIpWidget__ipAssetHeader__name {
+ @apply font-semibold;
+ }
+ .skIpWidget__ipAssetHeader__owner {
+ @apply text-xs;
+ .skIpWidget__ipAssetHeader__owner__address {
+ @apply text-slate-400;
+ }
+ }
+ }
+
+ .skIpWidget__ipAssetOverview {
+ @apply flex w-full flex-col items-start justify-start;
+
+ .skIpWidget__ipAssetOverview__titleBar {
+ @apply flex w-full flex-row justify-between pt-1;
+
+ &.skIpWidget__ipAssetOverview__titleBar--bottom {
+ @apply pb-1 pt-0;
+ }
+ }
+
+ .skIpWidget__ipAssetOverview__titleLoading {
+ @apply flex animate-pulse flex-col gap-2;
+ div:nth-child(1) {
+ @apply h-4 w-20 rounded bg-slate-200;
+ }
+ div:nth-child(2) {
+ @apply h-3 w-32 rounded bg-slate-200;
+ }
+ }
+
+ .skIpWidget__ipAssetOverview__assetImage {
+ @apply flex w-full justify-center text-center;
+
+ img {
+ @apply rounded-md object-contain;
+ }
+ }
+ .skIpWidget__ipAssetOverview__assetImage__loading {
+ @apply w-full animate-pulse py-1;
+
+ > div {
+ @apply flex h-64 items-center justify-center rounded bg-slate-200 dark:bg-slate-700;
+
+ > svg {
+ @apply size-10 text-slate-100 dark:text-slate-600;
+ }
+ }
+ }
+ }
+}
diff --git a/packages/storykit/src/components/index.ts b/packages/storykit/src/components/index.ts
new file mode 100644
index 0000000..db39fd2
--- /dev/null
+++ b/packages/storykit/src/components/index.ts
@@ -0,0 +1,5 @@
+export * from "./Button"
+export * from "./IpWidget"
+export * from "./IpGraph"
+export * from "./IpPolicyAccordion"
+export * from "./IpRoyaltyPieChart"
diff --git a/packages/storykit/src/declarations.d.ts b/packages/storykit/src/declarations.d.ts
new file mode 100644
index 0000000..a5ad056
--- /dev/null
+++ b/packages/storykit/src/declarations.d.ts
@@ -0,0 +1,4 @@
+declare module "*.module.css" {
+ const classes: { [key: string]: string }
+ export default classes
+}
diff --git a/packages/storykit/src/global.css b/packages/storykit/src/global.css
new file mode 100644
index 0000000..413f711
--- /dev/null
+++ b/packages/storykit/src/global.css
@@ -0,0 +1,67 @@
+@tailwind base;
+@tailwind components;
+@tailwind utilities;
+
+/* @layer base {
+ :root {
+ --background: 0 0% 100%;
+ --foreground: 222.2 84% 4.9%;
+
+ --card: 0 0% 100%;
+ --card-foreground: 222.2 84% 4.9%;
+
+ --popover: 0 0% 100%;
+ --popover-foreground: 222.2 84% 4.9%;
+
+ --primary: 222.2 47.4% 11.2%;
+ --primary-foreground: 210 40% 98%;
+
+ --secondary: 210 40% 96.1%;
+ --secondary-foreground: 222.2 47.4% 11.2%;
+
+ --muted: 210 40% 96.1%;
+ --muted-foreground: 215.4 16.3% 46.9%;
+
+ --accent: 210 40% 96.1%;
+ --accent-foreground: 222.2 47.4% 11.2%;
+
+ --destructive: 0 84.2% 60.2%;
+ --destructive-foreground: 210 40% 98%;
+
+ --border: 214.3 31.8% 91.4%;
+ --input: 214.3 31.8% 91.4%;
+ --ring: 222.2 84% 4.9%;
+
+ --radius: 0.5rem;
+ }
+
+ .dark {
+ --background: 222.2 84% 4.9%;
+ --foreground: 210 40% 98%;
+
+ --card: 222.2 84% 4.9%;
+ --card-foreground: 210 40% 98%;
+
+ --popover: 222.2 84% 4.9%;
+ --popover-foreground: 210 40% 98%;
+
+ --primary: 210 40% 98%;
+ --primary-foreground: 222.2 47.4% 11.2%;
+
+ --secondary: 217.2 32.6% 17.5%;
+ --secondary-foreground: 210 40% 98%;
+
+ --muted: 217.2 32.6% 17.5%;
+ --muted-foreground: 215 20.2% 65.1%;
+
+ --accent: 217.2 32.6% 17.5%;
+ --accent-foreground: 210 40% 98%;
+
+ --destructive: 0 62.8% 30.6%;
+ --destructive-foreground: 210 40% 98%;
+
+ --border: 217.2 32.6% 17.5%;
+ --input: 217.2 32.6% 17.5%;
+ --ring: 212.7 26.8% 83.9%;
+ }
+} */
diff --git a/packages/storykit/src/index.ts b/packages/storykit/src/index.ts
new file mode 100644
index 0000000..6efd0b2
--- /dev/null
+++ b/packages/storykit/src/index.ts
@@ -0,0 +1,2 @@
+export * from "./components"
+export * from "./providers"
diff --git a/packages/storykit/src/lib/api.ts b/packages/storykit/src/lib/api.ts
new file mode 100644
index 0000000..562f0cb
--- /dev/null
+++ b/packages/storykit/src/lib/api.ts
@@ -0,0 +1,49 @@
+import { QueryOptions, ResourceType } from "./types"
+
+const API_BASE_URL =
+ process.env.STORYBOOK_API_BASE_URL || process.env.NEXT_PUBLIC_API_BASE_URL || process.env.API_BASE_URL || ""
+const API_KEY =
+ process.env.STORYBOOK_STORY_PROTOCOL_X_API_KEY ||
+ process.env.NEXT_PUBLIC_STORY_PROTOCOL_X_API_KEY ||
+ process.env.STORY_PROTOCOL_X_API_KEY ||
+ ""
+
+export async function getResource(resourceName: ResourceType, resourceId: string) {
+ try {
+ const res = await fetch(`${API_BASE_URL}/api/v1/${resourceName}/${resourceId}`, {
+ method: "GET",
+ headers: {
+ "Content-Type": "application/json",
+ "x-api-key": API_KEY as string,
+ "X-CHAIN": "sepolia",
+ },
+ })
+ if (res.ok) {
+ return res.json()
+ }
+ } catch (error) {
+ console.error(error)
+ }
+}
+
+export async function listResource(resourceName: ResourceType, options?: QueryOptions) {
+ try {
+ const res = await fetch(`${API_BASE_URL}/api/v1/${resourceName}`, {
+ method: "POST",
+ headers: {
+ "Content-Type": "application/json",
+ "x-api-key": API_KEY as string,
+ "X-CHAIN": "sepolia",
+ },
+ cache: "no-cache",
+ ...(options && { body: JSON.stringify({ options }) }),
+ })
+ if (res.ok) {
+ return res.json()
+ } else {
+ return res
+ }
+ } catch (error) {
+ console.error(error)
+ }
+}
diff --git a/packages/storykit/src/lib/graph.ts b/packages/storykit/src/lib/graph.ts
new file mode 100644
index 0000000..09852aa
--- /dev/null
+++ b/packages/storykit/src/lib/graph.ts
@@ -0,0 +1,122 @@
+import { Asset } from "@/lib/types"
+import { Address } from "viem"
+
+export interface GraphNode {
+ id: string
+ name: string
+ val: number
+ tokenContract?: string | Address
+ tokenId?: string
+ level?: number
+ isRoot?: boolean
+}
+
+interface Link {
+ source: string
+ target: string
+}
+
+export interface GraphData {
+ nodes: GraphNode[]
+ links: Link[]
+}
+
+export function convertJsonToGraphFormat(ipAssets: Asset[]): GraphData {
+ const nodes: GraphNode[] = []
+ const links: Link[] = []
+
+ // Map ids to their corresponding objects for quick access
+ const idToObjectMap: { [id: string]: Asset } = {}
+ for (const obj of ipAssets) {
+ idToObjectMap[obj.id] = obj
+ }
+
+ // Create nodes
+ for (const asset of ipAssets) {
+ const nodeName = asset.nftMetadata.name || "Untitled"
+ const node: GraphNode = {
+ id: asset.id,
+ name: nodeName,
+ val: 1,
+ tokenContract: asset.nftMetadata.tokenContract,
+ }
+ nodes.push(node)
+
+ // Create links
+ if (asset.childIpIds) {
+ for (const childId of asset.childIpIds) {
+ const childObj = idToObjectMap[childId.id]
+ if (childObj && childObj.parentIpIds) {
+ for (const parentObj of childObj.parentIpIds) {
+ links.push({
+ source: parentObj.id,
+ target: childObj.id,
+ })
+ }
+ }
+ }
+ }
+ }
+
+ return { nodes, links }
+}
+
+export function convertAssetToGraphFormat(jsonData: Asset): GraphData {
+ const rootIpId = jsonData.rootIpIds?.[0]?.id
+ const nodes: GraphNode[] = []
+ const links: Link[] = []
+
+ // Create node for the main object
+ const mainNode: GraphNode = {
+ id: jsonData.id,
+ name: jsonData.nftMetadata.name || "Untitled",
+ tokenContract: jsonData.nftMetadata.tokenContract,
+ tokenId: jsonData.nftMetadata.tokenId,
+ val: 1,
+ level: 0,
+ isRoot: rootIpId === undefined,
+ }
+ nodes.push(mainNode)
+
+ // Add all childIpIds to nodes array and create links
+ if (jsonData.childIpIds) {
+ for (const child of jsonData.childIpIds) {
+ const childNode: GraphNode = {
+ id: child.id,
+ name: child.nftMetadata.name || "Untitled",
+ tokenContract: child.nftMetadata.tokenContract,
+ tokenId: child.nftMetadata.tokenId,
+ val: 1,
+ level: 1,
+ }
+ nodes.push(childNode)
+
+ links.push({
+ source: jsonData.id,
+ target: child.id,
+ })
+ }
+ }
+
+ // Add all parentIpIds to nodes array and create links
+ if (jsonData.parentIpIds) {
+ for (const parent of jsonData.parentIpIds) {
+ const parentNode: GraphNode = {
+ id: parent.id,
+ name: parent.nftMetadata.name || "Untitled",
+ tokenContract: parent.nftMetadata.tokenContract,
+ tokenId: parent.nftMetadata.tokenId,
+ val: 1,
+ level: -1, // assuming parent is one level up
+ isRoot: parent.id === rootIpId,
+ }
+ nodes.push(parentNode)
+ links.push({
+ source: parent.id,
+ target: jsonData.id,
+ })
+ }
+ }
+
+ return { nodes, links }
+}
diff --git a/packages/storykit/src/lib/simplehash/index.ts b/packages/storykit/src/lib/simplehash/index.ts
new file mode 100644
index 0000000..3e28a76
--- /dev/null
+++ b/packages/storykit/src/lib/simplehash/index.ts
@@ -0,0 +1,39 @@
+import { Address } from "viem"
+
+import { CollectionMetadata, NFTMetadata, NFTWalletResponse } from "./types/simplehash"
+
+const createRequestOptions = (): RequestInit => ({
+ method: "GET",
+ headers: {
+ accept: "application/json",
+ "X-API-KEY":
+ process.env.STORYBOOK_SIMPLE_HASH_API_KEY ||
+ process.env.NEXT_PUBLIC_SIMPLE_HASH_API_KEY ||
+ process.env.SIMPLE_HASH_API_KEY ||
+ "",
+ },
+})
+
+export const getNFTByTokenId = async (contractAddress: Address, tokenId: string): Promise => {
+ const options = createRequestOptions()
+ const url = `https://api.simplehash.com/api/v0/nfts/ethereum-sepolia/${contractAddress}/${tokenId}`
+ const response = await fetch(url, options)
+ const data = await response.json()
+ return data
+}
+
+export const getCollectionByAddress = async (contractAddress: Address): Promise => {
+ const options = createRequestOptions()
+ const url = `https://api.simplehash.com/api/v0/nfts/collections/ethereum-sepolia/${contractAddress}`
+ const response = await fetch(url, options)
+ const data = await response.json()
+ return data.collections[0]
+}
+
+export const getNFTByWallet = async (walletAddress: Address): Promise => {
+ const options = createRequestOptions()
+ const url = `https://api.simplehash.com/api/v0/nfts/owners?chains=ethereum-sepolia&wallet_addresses=${walletAddress}`
+ const response = await fetch(url, options)
+ const data = await response.json()
+ return data
+}
diff --git a/packages/storykit/src/lib/simplehash/types/simplehash.d.ts b/packages/storykit/src/lib/simplehash/types/simplehash.d.ts
new file mode 100644
index 0000000..c3dc429
--- /dev/null
+++ b/packages/storykit/src/lib/simplehash/types/simplehash.d.ts
@@ -0,0 +1,143 @@
+/* eslint-disable @typescript-eslint/no-explicit-any */
+
+export type NFTWalletResponse = {
+ next_cursor: string | null
+ next: string | null
+ previous: string | null
+ nfts: NFTMetadata[]
+}
+
+export type NFTMetadata = {
+ nft_id: string
+ chain: string
+ contract_address: string
+ token_id: string
+ name: string
+ description: string
+ previews: {
+ image_small_url: string
+ image_medium_url: string
+ image_large_url: string
+ image_opengraph_url: string
+ blurhash: string
+ predominant_color: string
+ }
+ image_url: string
+ image_properties: {
+ width: number
+ height: number
+ size: number
+ mime_type: string
+ }
+ video_url: string | null
+ video_properties: any
+ audio_url: string | null
+ audio_properties: any
+ model_url: string | null
+ model_properties: any
+ other_url: string | null
+ other_properties: any
+ background_color: string | null
+ external_url: string | null
+ created_date: string
+ status: string
+ token_count: number
+ owner_count: number
+ owners: {
+ owner_address: string
+ quantity: number
+ quantity_string: string
+ first_acquired_date: string
+ last_acquired_date: string
+ }[]
+ contract: {
+ type: string
+ name: string
+ symbol: string
+ deployed_by: string
+ deployed_via_contract: string | null
+ owned_by: string
+ has_multiple_collections: boolean
+ }
+ collection: CollectionMetadata
+ last_sale: any
+ first_created: {
+ minted_to: string
+ quantity: number
+ quantity_string: string
+ timestamp: string
+ block_number: number
+ transaction: string
+ transaction_initiator: string
+ }
+ rarity: {
+ rank: number
+ score: number
+ unique_attributes: number
+ }
+ royalty: CollectionRoyalties[]
+ extra_metadata: {
+ attributes: {
+ trait_type: string
+ value: string
+ display_type: string | null
+ }[]
+ image_original_url: string
+ animation_original_url: string
+ metadata_original_url: string
+ }
+}
+
+export type SPExtendedNFTMetadata = NFTMetadata & {
+ isRegistered?: boolean
+ ipId?: string
+}
+
+export type CollectionResponse = {
+ next_cursor: string | null
+ next: string | null
+ previous: string | null
+ collections: CollectionMetadata[]
+}
+
+export type CollectionMetadata = {
+ collection_id: string
+ name: string
+ description: string
+ image_url: string
+ banner_image_url: string
+ category: string
+ is_nsfw: boolean
+ external_url: string
+ twitter_username: string
+ discord_url: string
+ instagram_username: string
+ medium_username: string
+ telegram_url: string
+ marketplace_pages: MarketplacePage[]
+ metaplex_mint: string
+ metaplex_candy_machine: string
+ metaplex_first_verified_creator: string
+ floor_prices: any[]
+ top_bids: any[]
+ distinct_owner_count: number
+ distinct_nft_count: number
+ total_quantity: number
+ chains: string[]
+ top_contracts: string[]
+ collection_royalties: CollectionRoyalties[]
+}
+
+export type MarketplacePage = {
+ marketplace_id: string
+ marketplace_name: string
+ marketplace_collection_id: string
+ collection_url: string
+ verified: boolean
+}
+
+export type CollectionRoyalties = {
+ source: string
+ total_creator_fee_basis_points: number
+ recipients: any[]
+}
diff --git a/packages/storykit/src/lib/types.ts b/packages/storykit/src/lib/types.ts
new file mode 100644
index 0000000..c5d6b4a
--- /dev/null
+++ b/packages/storykit/src/lib/types.ts
@@ -0,0 +1,325 @@
+import { Address } from "viem"
+
+export const POLICY_TYPE = {
+ NON_COMMERCIAL_SOCIAL_REMIXING: "Non-Commercial Social Remixing",
+ COMMERCIAL_USE: "Commercial Use",
+ COMMERCIAL_REMIX: "Commercial Remix",
+ OPEN_DOMAIN: "Open Domain",
+ NO_DERIVATIVE: "No Derivative",
+}
+
+export enum RESOURCE_TYPE {
+ ASSET = "assets",
+ COLLECTION = "collections",
+ DISPUTE = "disputes",
+ IPA_POLICY = "licenses/ip/terms",
+ LICENSE = "licenses/tokens",
+ LICENSE_MINT_FEES = "licenses/mintingfees",
+ LICENSE_OWNER = "licenses/owners",
+ MODULE = "modules",
+ PERMISSION = "permissions",
+ POLICY = "licenses/terms",
+ POLICY_FRAMEWORK = "licenses/templates",
+ ROYALTY = "royalties",
+ ROYALTY_PAY = "royalties/payments",
+ ROYALTY_POLICY = "royalties/policies",
+ ROYALTY_SPLIT = "royalties/splits",
+ TAGS = "tags",
+ TRANSACTION = "transactions",
+}
+
+export type ResourceType =
+ | RESOURCE_TYPE.ASSET
+ | RESOURCE_TYPE.COLLECTION
+ | RESOURCE_TYPE.TRANSACTION
+ | RESOURCE_TYPE.LICENSE
+ | RESOURCE_TYPE.LICENSE_MINT_FEES
+ | RESOURCE_TYPE.LICENSE_OWNER
+ | RESOURCE_TYPE.MODULE
+ | RESOURCE_TYPE.POLICY
+ | RESOURCE_TYPE.PERMISSION
+ | RESOURCE_TYPE.POLICY_FRAMEWORK
+ | RESOURCE_TYPE.TAGS
+ | RESOURCE_TYPE.IPA_POLICY
+ | RESOURCE_TYPE.ROYALTY
+ | RESOURCE_TYPE.ROYALTY_PAY
+ | RESOURCE_TYPE.ROYALTY_POLICY
+ | RESOURCE_TYPE.ROYALTY_SPLIT
+ | RESOURCE_TYPE.DISPUTE
+
+export type PaginationOptions = {
+ limit?: number
+ offset?: number
+}
+
+export type AssetFilterOptions = {
+ chainId?: string
+ metadataResolverAddress?: string
+ tokenContract?: string
+ tokenId?: string
+}
+
+export type DisputeFilterOptions = {
+ currentTag?: string
+ initiator?: string
+ targetIpId?: string
+ targetTag?: string
+}
+
+export type PermissionFilterOptions = {
+ signer?: string
+ to?: string
+}
+
+export type PolicyFilterOptions = {
+ policyFrameworkManager?: string
+}
+
+export type PolicyFrameworkFilterOptions = {
+ address?: string
+ name?: string
+}
+
+export type RoyaltyFilterOptions = {
+ ipId?: string | null
+ royaltyPolicy?: string | null
+}
+
+export type TagFilterOptions = {
+ ipId?: string
+ tag?: string
+}
+export type RoyaltyPayFilterOptions = {
+ ipId?: string
+ payerIpId?: string
+ receiverIpId?: string
+ sender?: string
+ token?: string
+}
+
+export type ModuleFilterOptions = {
+ name?: string
+}
+
+export type LicenseFilterOptions = {
+ licensorIpdId?: Address
+ policyId?: string
+}
+
+export type LicenseFrameworkFilterOptions = {
+ creator?: string
+}
+
+export type LicenseOwnerFilterOptions = {
+ owner?: string
+}
+
+export type IPAPolicyFilterOptions = {
+ active?: string
+ inherited?: string
+ policyId?: string
+}
+
+export type TransactionFilterOptions = {
+ actionType?: string
+ resourceId?: string
+}
+
+export type FilterOptions =
+ | AssetFilterOptions
+ | DisputeFilterOptions
+ | PermissionFilterOptions
+ | PolicyFilterOptions
+ | PolicyFrameworkFilterOptions
+ | RoyaltyFilterOptions
+ | TagFilterOptions
+ | RoyaltyPayFilterOptions
+ | ModuleFilterOptions
+ | LicenseFilterOptions
+ | LicenseFrameworkFilterOptions
+ | LicenseOwnerFilterOptions
+ | IPAPolicyFilterOptions
+ | TransactionFilterOptions
+
+export type QueryOptions = {
+ pagination: PaginationOptions
+ where?: FilterOptions
+}
+
+export type Transaction = {
+ id: string
+ createdAt: string
+ actionType: string
+ initiator: Address
+ ipId: Address
+ resourceId: Address
+ resourceType: string
+}
+
+export type Asset = {
+ id: Address
+ parentIpIds: Asset[] | null
+ childIpIds: Asset[] | null
+ rootIpIds: Asset[] | null
+ nftMetadata: {
+ name: string
+ chainId: string
+ tokenContract: Address
+ tokenId: string
+ tokenUri: string
+ imageUrl: string
+ }
+ blockNumber: string
+ blockTimestamp: string
+}
+
+export type Permission = {
+ id: string
+ permission: string
+ signer: Address
+ to: Address
+ func: string
+ blockNumber: string
+ blockTimestamp: string
+}
+
+export type License = {
+ id: string
+ licensorIpId: Address
+ licenseTemplate: string
+ licenseTermsId: string
+ transferable: boolean
+ owner: Address
+ mintedAt: string
+ expiresAt: string
+ burntAt: string
+ blockNumber: string
+ blockTime: string
+}
+
+export type PolicyFramework = {
+ id: string
+ name: string
+ metadataUri: string
+ blockNumber: string
+ blockTime: string
+}
+
+export type Module = {
+ id: string
+ name: string
+ module: string
+ blockNumber: string
+ blockTimestamp: string
+ deletedAt: string
+}
+
+export type Tag = {
+ id: string
+ uuid: string
+ ipId: Address
+ tag: string
+ deletedAt: string
+ blockNumber: string
+ blockTimestamp: string
+}
+
+export type IPAPolicy = {
+ id: string
+ ipId: Address
+ licenseTemplate: string
+ licenseTermsId: string
+ blockNumber: string
+ blockTime: string
+}
+
+export type RoyaltyPay = {
+ id: string
+ receiverIpId: Address
+ payerIpId: Address
+ sender: Address
+ token: Address
+ amount: string
+ blockNumber: string
+ blockTimestamp: string
+}
+
+export type Royalty = {
+ id: string
+ ipId: Address
+ data: string
+ royaltyPolicy: Address
+ blockNumber: string
+ blockTimestamp: string
+}
+
+export type RoyaltyPolicy = {
+ id: Address
+ ancestorsVault: Address
+ splitClone: Address
+ royaltyStack: string
+ targetAncestors: Address[]
+ targetRoyaltyAmount: string[]
+ blockNumber: string
+ blockTimestamp: string
+}
+
+export type Dispute = {
+ id: string
+ targetIpId: Address
+ targetTag: Address
+ currentTag: Address
+ arbitrationPolicy: Address
+ evidenceLink: string
+ initiator: Address
+ data: string
+ blockNumber: string
+ blockTimestamp: string
+}
+
+export type Collection = {
+ id: string
+ assetCount: string
+ licensesCount: string
+ resolvedDisputeCount: string
+ cancelledDisputeCount: string
+ raisedDisputeCount: string
+ judgedDisputeCount: string
+ blockNumber: string
+ blockTimestamp: string
+}
+
+export type Policy = {
+ id: string
+ json: string
+ licenseTemplate: Address
+ blockNumber: string
+ blockTime: string
+}
+
+export type PILType = {
+ commercialAttribution: boolean
+ commercialRevenueCelling: number
+ commercialRevenueShare: number
+ commercialUse: boolean
+ commercializerCheck: Address
+ currency: Address
+ derivativesAllowed: boolean
+ derivativesApproval: boolean
+ derivativesAttribution: boolean
+ derivativesReciprocal: boolean
+ derivativesRevenueCelling: number
+ expiration: string
+ URI: string
+}
+
+export type RoyaltySplit = {
+ id: Address
+ holders: RoyaltyHolder[]
+ claimFromIPPoolArg: string
+}
+
+export type RoyaltyHolder = {
+ id: Address
+ ownership: string
+}
diff --git a/packages/storykit/src/lib/utils.ts b/packages/storykit/src/lib/utils.ts
new file mode 100644
index 0000000..4d6d29e
--- /dev/null
+++ b/packages/storykit/src/lib/utils.ts
@@ -0,0 +1,51 @@
+import { type ClassValue, clsx } from "clsx"
+import { twMerge } from "tailwind-merge"
+
+import { PILType, POLICY_TYPE } from "./types"
+
+export function cn(...inputs: ClassValue[]) {
+ return twMerge(clsx(inputs))
+}
+
+export function shortenAddress(address: string, length = 4): string {
+ if (!address) {
+ return ""
+ }
+ if (address.length < 2 * length + 2) {
+ // Check if the address is too short to be shortened.
+ return address
+ }
+
+ const start = address.substring(0, length + 2)
+ const end = address.substring(address.length - length)
+ return `${start}...${end}`
+}
+
+export function camelize(str: string) {
+ return str.replace(/(?:^\w|[A-Z]|\b\w|\s+)/g, function (match, index) {
+ if (+match === 0) return "" // or if (/\s+/.test(match)) for white spaces
+ return index === 0 ? match.toLowerCase() : match.toUpperCase()
+ })
+}
+
+export function getPolicyTypeByPILData(pilData: PILType) {
+ const { derivativesAttribution, derivativesAllowed, commercialUse, derivativesReciprocal } = pilData
+
+ if (commercialUse) {
+ if (!derivativesReciprocal) {
+ return POLICY_TYPE.COMMERCIAL_USE
+ } else {
+ return POLICY_TYPE.COMMERCIAL_REMIX
+ }
+ } else {
+ if (!derivativesAllowed) {
+ return POLICY_TYPE.NO_DERIVATIVE
+ } else {
+ if (derivativesAttribution) {
+ return POLICY_TYPE.NON_COMMERCIAL_SOCIAL_REMIXING
+ } else {
+ return POLICY_TYPE.OPEN_DOMAIN
+ }
+ }
+ }
+}
diff --git a/packages/storykit/src/providers/IpProvider/IpProvider.tsx b/packages/storykit/src/providers/IpProvider/IpProvider.tsx
new file mode 100644
index 0000000..8f4657a
--- /dev/null
+++ b/packages/storykit/src/providers/IpProvider/IpProvider.tsx
@@ -0,0 +1,153 @@
+import { useQuery } from "@tanstack/react-query"
+import React from "react"
+import { Address } from "viem"
+
+import { getResource, listResource } from "../../lib/api"
+import { getNFTByTokenId } from "../../lib/simplehash"
+import { NFTMetadata } from "../../lib/simplehash/types/simplehash"
+import { Asset, IPAPolicy, License, Policy, RESOURCE_TYPE, RoyaltyPolicy } from "../../lib/types"
+import { camelize } from "../../lib/utils"
+
+const IpContext = React.createContext<{
+ // activeTab: string
+ // setActiveTab: React.Dispatch>
+ assetData: Asset | undefined
+ nftData: NFTMetadata | undefined
+ isNftDataLoading: boolean
+ isAssetDataLoading: boolean
+ ipPolicyData: IPAPolicy[] | undefined
+ isIPAPolicyDataLoading: boolean
+ policyData: Policy[] | undefined
+ isPolicyDataLoading: boolean
+ licenseData: License[] | undefined
+ isLicenseDataLoading: boolean
+ royaltyData: RoyaltyPolicy | undefined
+ isRoyaltyDataLoading: boolean
+} | null>(null)
+
+export const IpProvider = ({ children, ipId }: { children: React.ReactNode; ipId: Address }) => {
+ // Fetch asset data
+ const { isLoading: isAssetDataLoading, data: assetData } = useQuery({
+ queryKey: [RESOURCE_TYPE.ASSET, ipId],
+ queryFn: () => getResource(RESOURCE_TYPE.ASSET, ipId),
+ })
+
+ const ipaPolicyQueryOptions = {
+ pagination: {
+ limit: 0,
+ offset: 0,
+ },
+ where: {
+ ipId,
+ },
+ }
+ // Fetch IPPolicy data
+ const { isLoading: isIPAPolicyDataLoading, data: ipPolicyData } = useQuery({
+ queryKey: [RESOURCE_TYPE.IPA_POLICY, ipaPolicyQueryOptions],
+ queryFn: () => listResource(RESOURCE_TYPE.IPA_POLICY, ipaPolicyQueryOptions),
+ })
+
+ async function fetchPolicyDetails(data: IPAPolicy[]) {
+ const uniquePolicies = data.filter((item) => item.ipId.toLowerCase() === ipId.toLowerCase())
+
+ const requests = uniquePolicies.map((item) => getResource(RESOURCE_TYPE.POLICY, item.licenseTermsId))
+ const results = await Promise.all(requests)
+
+ return results.map((result) => {
+ return {
+ ...result.data,
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
+ licenseTerms: result.data.licenseTerms.reduce((acc: any, option: any) => {
+ return {
+ ...acc,
+ [camelize(option.trait_type)]:
+ option.value === "true" ? true : option.value === "false" ? false : option.value,
+ }
+ }, {}),
+ }
+ })
+ }
+
+ const { isLoading: isPolicyDataLoading, data: policyData } = useQuery({
+ queryKey: ["fetchPolicyDetails", ipPolicyData?.data],
+ queryFn: () => fetchPolicyDetails(ipPolicyData?.data),
+ enabled: Boolean(ipPolicyData) && Boolean(ipPolicyData.data),
+ })
+
+ const licenseQueryOptions = {
+ pagination: {
+ limit: 0,
+ offset: 0,
+ },
+ where: {
+ licensorIpdId: ipId,
+ },
+ }
+ // Fetch License Data
+ const { isLoading: isLicenseDataLoading, data: licenseData } = useQuery({
+ queryKey: [RESOURCE_TYPE.LICENSE, licenseQueryOptions],
+ queryFn: () => listResource(RESOURCE_TYPE.LICENSE, licenseQueryOptions),
+ })
+
+ // Fetch Royalty Data
+ const { isLoading: isRoyaltyDataLoading, data: royaltyData } = useQuery({
+ queryKey: [
+ RESOURCE_TYPE.ROYALTY_POLICY,
+ {
+ pagination: {
+ limit: 0,
+ offset: 0,
+ },
+ where: {
+ ipId,
+ },
+ },
+ ],
+ queryFn: () => getResource(RESOURCE_TYPE.ROYALTY_POLICY, ipId),
+ })
+
+ // const { isLoading: isNftDataLoading, data: nftData } = useQuery({
+ // queryKey: ["getNFTByTokenId", assetData?.data?.tokenContract, assetData?.data?.tokenId],
+ // queryFn: () => getNFTByTokenId(assetData.data.tokenContract, assetData.data.tokenId),
+ // enabled: Boolean(assetData) && Boolean(assetData.data.tokenContract) && Boolean(assetData.data.tokenId),
+ // })
+ const { isLoading: isNftDataLoading, data: nftData } = useQuery({
+ queryKey: ["getNFTByTokenId", assetData?.data?.nftMetadata?.tokenContract, assetData?.data?.nftMetadata?.tokenId],
+ queryFn: () => getNFTByTokenId(assetData.data.nftMetadata.tokenContract, assetData.data.nftMetadata.tokenId),
+ enabled:
+ Boolean(assetData) &&
+ Boolean(assetData.data.nftMetadata.tokenContract) &&
+ Boolean(assetData.data.nftMetadata.tokenId),
+ })
+
+ return (
+
+ {children}
+
+ )
+}
+
+export const useIpContext = () => {
+ const context = React.useContext(IpContext)
+ if (!context) {
+ throw new Error("useAccount must be used within an IpProvider")
+ }
+ return context
+}
diff --git a/packages/storykit/src/providers/IpProvider/__docs__/Example.tsx b/packages/storykit/src/providers/IpProvider/__docs__/Example.tsx
new file mode 100644
index 0000000..0226737
--- /dev/null
+++ b/packages/storykit/src/providers/IpProvider/__docs__/Example.tsx
@@ -0,0 +1,59 @@
+import { QueryClient, QueryClientProvider } from "@tanstack/react-query"
+import React, { FC } from "react"
+import { Address } from "viem"
+
+import { IpProvider, useIpContext } from "../IpProvider"
+
+const Example: FC<{ ipId: Address }> = ({ ipId = "0xbbf08a30b9ff0f717a024a75963d3196aaf0f0dd" }) => {
+ const queryClient = new QueryClient()
+ return (
+
+
+
+
+
+
+
+ )
+}
+
+const ExampleComponent = () => {
+ const { nftData, isNftDataLoading } = useIpContext()
+ return (
+ <>
+ {isNftDataLoading && Fetching Asset...
}
+ {nftData && !isNftDataLoading ? (
+
+ <>
+
nft_id
+
{nftData.nft_id}
+
+
chain
+
{nftData.chain}
+
+
contract_address
+
{nftData.contract_address}
+
+
token_id
+
{nftData.token_id}
+
+
name
+
{nftData.name}
+
+
description
+
{nftData.description}
+ >
+
+ ) : null}
+ >
+ )
+}
+
+export default Example
diff --git a/packages/storykit/src/providers/IpProvider/__docs__/IpProvider.mdx b/packages/storykit/src/providers/IpProvider/__docs__/IpProvider.mdx
new file mode 100644
index 0000000..95e5d92
--- /dev/null
+++ b/packages/storykit/src/providers/IpProvider/__docs__/IpProvider.mdx
@@ -0,0 +1,79 @@
+import { Canvas, Controls, Meta } from "@storybook/blocks"
+
+import * as IpProviderStory from "./IpProvider.stories"
+
+
+
+# IpProvider
+
+Provides IP Asset data to children components.
+
+#### Example
+
+
+
+
+
+## Usage
+
+```ts
+// wrap your component with the IpProvider
+
+import { IpProvider } from "@storyprotocol/storykit"
+import ExampleComponent from './ExampleComponent'
+
+const ExamplePage = () => {
+ return (
+
+
+
+ );
+};
+
+export default ExamplePage;
+```
+
+```ts
+// in your component file, context provides IP asset state
+
+import { useIpContext } from "@storyprotocol/storykit"
+
+const ExampleComponent = () => {
+
+ const { nftData, isNftDataLoading } = useIpContext()
+
+ return (
+
+ {isNftDataLoading &&
Fetching Asset...
}
+
+ {nftData && !isNftDataLoading ? (
+
nft id: {nftData.nft_id}
+ ) : null}
+
+ );
+};
+
+export default ExampleComponent;
+```
+
+#### Provider data
+
+The IpProvider provides the following data to its children:
+
+- **assetData** - The IP Asset data.
+- **isAssetDataLoading** - IP Asset data loading state.
+- **nftData** - The NFT Metadata.
+- **isNftDataLoading** - NFT Metadata loading state.
+- **ipPolicyData** - Policies attached to the IP Asset.
+- **isIPAPolicyDataLoading** - Policy data loading state.
+- **policyData** - The Policy details including the template id, address and terms.
+- **isPolicyDataLoading** - Policy data loading state.
+- **licenseData** - IP Asset minted Licenses.
+- **isLicenseDataLoading** - License data loading state.
+- **royaltyData** - The Royalty Policy data.
+- **isRoyaltyDataLoading** - Royalty Policy data loading state.
+
+#### Arguments
+
+- **children** - The child component to provide the IP Asset context to.
+- **ipId** - The IP Asset Id, an Address starting 0x.
diff --git a/packages/storykit/src/providers/IpProvider/__docs__/IpProvider.stories.tsx b/packages/storykit/src/providers/IpProvider/__docs__/IpProvider.stories.tsx
new file mode 100644
index 0000000..0b7bcf8
--- /dev/null
+++ b/packages/storykit/src/providers/IpProvider/__docs__/IpProvider.stories.tsx
@@ -0,0 +1,49 @@
+import { PREVIEW_IP_ASSETS } from "@/stories/data"
+import type { Meta, StoryObj } from "@storybook/react"
+
+import Example from "./Example"
+
+const meta = {
+ title: "Providers/IpProvider",
+ component: Example,
+ parameters: {
+ layout: "centered",
+ },
+ // tags: ["autodocs"],
+ // argTypes: {},
+ // argTypes: {
+ // ipId: {
+ // options: [
+ // "0xbbf08a30b9ff0f717a024a75963d3196aaf0f0dd",
+ // "0xa4ad3f18c2a37f1fb8d86bcd5922739f53e57bae",
+ // "0x05aae0c68d33bc1fd3cc2241a6af2f5866271726",
+ // ],
+ // // control: { type: "select" }, // Automatically inferred when 'options' is defined
+ // },
+ // },
+ // args: {
+ // ipId: "0xbbf08a30b9ff0f717a024a75963d3196aaf0f0dd",
+ // },
+} satisfies Meta
+
+export default meta
+type Story = StoryObj
+
+export const Select: Story = {
+ argTypes: {
+ ipId: {
+ options: PREVIEW_IP_ASSETS,
+ },
+ },
+ args: {
+ ipId: PREVIEW_IP_ASSETS[0] as `0x${string}`,
+ },
+}
+export const Input: Story = {
+ argTypes: {
+ ipId: { control: "text" },
+ },
+ args: {
+ ipId: PREVIEW_IP_ASSETS[0] as `0x${string}`,
+ },
+}
diff --git a/packages/storykit/src/providers/IpProvider/index.tsx b/packages/storykit/src/providers/IpProvider/index.tsx
new file mode 100644
index 0000000..ebfbbfd
--- /dev/null
+++ b/packages/storykit/src/providers/IpProvider/index.tsx
@@ -0,0 +1 @@
+export * from "./IpProvider"
diff --git a/packages/storykit/src/providers/index.ts b/packages/storykit/src/providers/index.ts
new file mode 100644
index 0000000..ebfbbfd
--- /dev/null
+++ b/packages/storykit/src/providers/index.ts
@@ -0,0 +1 @@
+export * from "./IpProvider"
diff --git a/packages/storykit/src/stories/Introduction.mdx b/packages/storykit/src/stories/Introduction.mdx
new file mode 100644
index 0000000..aafbacc
--- /dev/null
+++ b/packages/storykit/src/stories/Introduction.mdx
@@ -0,0 +1,209 @@
+import { Meta } from "@storybook/blocks"
+
+
+
+# Storykit
+
+Plug-and-play React components for Story Protocol.
+
+## Installation
+
+_Storykit is currently a private github package so you need repo access and a personal access token to use_
+
+1 . Create a personal access token: [github.com/settings/tokens](https://github.com/settings/tokens)
+
+2 . Create an `.npmrc` file in the root of your project and add the following, replacing `NPM_TOKEN` with yout access token:
+
+```bash
+//npm.pkg.github.com/:_authToken=NPM_TOKEN
+@storyprotocol/storykit:registry=https://npm.pkg.github.com
+```
+
+The first line authenticates you with the github package registry, the second line tells npm to use the Storykit package from the Story Protocol github registry.
+
+3 . Add `.npmrc` to your `.gitignore` to keep your access token private.
+
+4 . Install the package and the required dependencies:
+
+```bash
+npm install @storyprotocol/storykit @tanstack/react-query
+```
+
+5 . Currently Story Protocol api credetials must be defined in the environment variables, add them to your `.env.local`:
+
+```bash
+NEXT_PUBLIC_API_BASE_URL="https://edge.stg.storyprotocol.net"
+NEXT_PUBLIC_STORY_PROTOCOL_X_API_KEY="SP_API_KEY_HERE"
+NEXT_PUBLIC_SIMPLE_HASH_API_KEY="SIMPLEHASH_API_KEY_HERE"
+```
+
+## Deploying on vercel
+
+To deploy on vercel, you can either include an `.npmrc` file with the following contents (note the curly braces) in the root, and add your access token to the `NPM_TOKEN` vercel environment variable:
+
+```bash
+//npm.pkg.github.com/:_authToken=${NPM_TOKEN}
+@storyprotocol/storykit:registry=https://npm.pkg.github.com
+```
+
+OR...
+
+You can add all the content of the `.npmrc` file, including your personal access token, to a `NPM_RC` vercel environment variable.
+
+See the [vercel docs](https://vercel.com/guides/using-private-dependencies-with-vercel) for more information.
+
+## Dependencies
+
+Storkykit requires [@tanstack/react-query](https://tanstack.com/query/latest), some components have additional dependencies including:
+
+- [react-apexcharts](https://www.npmjs.com/package/react-apexcharts)
+- [react-force-graph-2d](https://www.npmjs.com/package/react-force-graph-2d)
+
+See the individual component docs ro see if they require an additional dependency or install them all at once with:
+
+```bash
+npm install @storyprotocol/storykit @tanstack/react-query react-apexcharts react-force-graph-2d
+```
+
+## Run locally
+
+### Storybook
+
+Run Storybook locally for component development and documentation:
+
+```bash
+pnpm dev
+```
+
+Find the Storybook at [http://localhost:6006](http://localhost:6006)
+
+### Example app
+
+Run the next.js [example app](../examples/next-app/):
+
+```bash
+pnpm build
+pnpm dev-example
+```
+
+The dev server will be running at [http://localhost:3000](http://localhost:3000)
+
+### Linting and formatting
+
+Lint with eslint:
+
+```bash
+pnpm lint
+```
+
+Format with prettier:
+
+```bash
+pnpm format
+```
+
+## Usage
+
+Using Storykit in your React app
+
+### Include React Query
+
+React Query is a dependency, you will need to wrap Storykit components with a `QueryClientProvider`, we recommend doing this once in the root of the app.
+
+```typescript
+// app/layout.tsx
+
+import Providers from "./Providers"
+
+export default function Layout({children}) {
+ return (
+
+
+ {children}
+
+
+ )
+}
+```
+
+```typescript
+// app/Providers.tsx
+
+"use client"
+
+import { QueryClient, QueryClientProvider } from "@tanstack/react-query"
+
+const queryClient = new QueryClient()
+
+export default function Providers({ children }) {
+ return (
+
+ {children}
+
+ )
+}
+
+```
+
+### The IpProvider
+
+The IpProvider provides IP Asset data to child components.
+
+```typescript
+import { IpProvider, useIpContext } from "@storyprotocol/storykit"
+
+const ExamplePage = () => {
+ return (
+
+
+
+ );
+};
+
+const ExampleComponent = () => {
+ const { nftData, isNftDataLoading } = useIpContext()
+
+ return (
+
+ {isNftDataLoading &&
Fetching Asset...
}
+
+ {nftData && !isNftDataLoading ? (
+
nft id: {nftData.nft_id}
+ ) : null}
+
+ );
+};
+```
+
+### The IpGraph
+
+Some components require the IpProvider to supply asset data
+
+```typescript
+import { IpProvider, IpGraph } from "@storyprotocol/storykit"
+
+const ExamplePage = () => {
+ return (
+
+
+
+ );
+};
+```
+
+### The IpWidget
+
+The IpProvider is already included in the IpWidget
+
+```typescript
+import { IpWidget } from "@storyprotocol/storykit"
+
+const ExamplePage = () => {
+ return (
+
+ )
+}
+
+```
+
+See [the github repo](https://github.com/storyprotocol/storykit) and [the example app](https://github.com/storyprotocol/storykit/tree/main/examples/next-app).
diff --git a/packages/storykit/src/stories/data/index.ts b/packages/storykit/src/stories/data/index.ts
new file mode 100644
index 0000000..ec9074b
--- /dev/null
+++ b/packages/storykit/src/stories/data/index.ts
@@ -0,0 +1,8 @@
+export const PREVIEW_IP_ASSETS = [
+ "0xb56831B7cDab9De9e4D3B38C88DdD7B6a57e8287",
+ "0x6833490Ea60121F507f5Bf41AD0b17A6Ae537e6e",
+ "0x0aEcA721aDceb65fbE81F450a1C59978fF903124",
+ "0x5FCeDadBbDF710Ac3C528F6Aac9D1bD9ac18D9a8",
+ "0xF9dC0EB9B48429C090aA05383A490e16b2bF9CCB",
+ "0xcFBa04b0c8a5fD24C2eB3D9E0eE34c0C0797395b",
+]
diff --git a/packages/storykit/tailwind.config.js b/packages/storykit/tailwind.config.js
new file mode 100644
index 0000000..6211183
--- /dev/null
+++ b/packages/storykit/tailwind.config.js
@@ -0,0 +1,72 @@
+/** @type {import('tailwindcss').Config} */
+module.exports = {
+ darkMode: ["class"],
+ content: ["./pages/**/*.{ts,tsx}", "./components/**/*.{ts,tsx}", "./app/**/*.{ts,tsx}", "./src/**/*.{ts,tsx}"],
+ prefix: "",
+ theme: {
+ container: {
+ center: true,
+ padding: "2rem",
+ screens: {
+ "2xl": "1400px",
+ },
+ },
+ // extend: {
+ // colors: {
+ // border: "hsl(var(--border))",
+ // input: "hsl(var(--input))",
+ // ring: "hsl(var(--ring))",
+ // background: "hsl(var(--background))",
+ // foreground: "hsl(var(--foreground))",
+ // primary: {
+ // DEFAULT: "hsl(var(--primary))",
+ // foreground: "hsl(var(--primary-foreground))",
+ // },
+ // secondary: {
+ // DEFAULT: "hsl(var(--secondary))",
+ // foreground: "hsl(var(--secondary-foreground))",
+ // },
+ // destructive: {
+ // DEFAULT: "hsl(var(--destructive))",
+ // foreground: "hsl(var(--destructive-foreground))",
+ // },
+ // muted: {
+ // DEFAULT: "hsl(var(--muted))",
+ // foreground: "hsl(var(--muted-foreground))",
+ // },
+ // accent: {
+ // DEFAULT: "hsl(var(--accent))",
+ // foreground: "hsl(var(--accent-foreground))",
+ // },
+ // popover: {
+ // DEFAULT: "hsl(var(--popover))",
+ // foreground: "hsl(var(--popover-foreground))",
+ // },
+ // card: {
+ // DEFAULT: "hsl(var(--card))",
+ // foreground: "hsl(var(--card-foreground))",
+ // },
+ // },
+ // borderRadius: {
+ // lg: "var(--radius)",
+ // md: "calc(var(--radius) - 2px)",
+ // sm: "calc(var(--radius) - 4px)",
+ // },
+ // keyframes: {
+ // "accordion-down": {
+ // from: { height: "0" },
+ // to: { height: "var(--radix-accordion-content-height)" },
+ // },
+ // "accordion-up": {
+ // from: { height: "var(--radix-accordion-content-height)" },
+ // to: { height: "0" },
+ // },
+ // },
+ // animation: {
+ // "accordion-down": "accordion-down 0.2s ease-out",
+ // "accordion-up": "accordion-up 0.2s ease-out",
+ // },
+ // },
+ },
+ plugins: [require("tailwindcss-animate")],
+}
diff --git a/packages/storykit/tsconfig.json b/packages/storykit/tsconfig.json
new file mode 100644
index 0000000..ca92804
--- /dev/null
+++ b/packages/storykit/tsconfig.json
@@ -0,0 +1,10 @@
+{
+ "extends": "@storykit/typescript-config/react-library.json",
+ "include": ["src"],
+ "compilerOptions": {
+ "paths": {
+ "@/*": ["./src/*"]
+ }
+ },
+ "exclude": ["dist", "build", "node_modules"]
+}
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 3cc53cf..c2d139e 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -4,198 +4,323 @@ settings:
autoInstallPeers: true
excludeLinksFromLockfile: false
-dependencies:
- '@emotion/is-prop-valid':
- specifier: ^1.2.2
- version: 1.2.2
- '@emotion/react':
- specifier: ^11.11.4
- version: 11.11.4(@types/react@18.2.73)(react@18.2.0)
- '@headlessui/react':
- specifier: ^1.7.18
- version: 1.7.18(react-dom@18.2.0)(react@18.2.0)
- class-variance-authority:
- specifier: ^0.7.0
- version: 0.7.0
- clsx:
- specifier: ^2.1.0
- version: 2.1.0
- lucide-react:
- specifier: ^0.364.0
- version: 0.364.0(react@18.2.0)
- react-apexcharts:
- specifier: ^1.4.1
- version: 1.4.1(apexcharts@3.48.0)(react@18.2.0)
- react-force-graph-2d:
- specifier: ^1.25.4
- version: 1.25.4(react@18.2.0)
- react-icons:
- specifier: ^5.0.1
- version: 5.0.1(react@18.2.0)
- tailwind-merge:
- specifier: ^2.2.2
- version: 2.2.2
- tailwindcss:
- specifier: ^3.4.1
- version: 3.4.3
- tailwindcss-animate:
- specifier: ^1.0.7
- version: 1.0.7(tailwindcss@3.4.3)
- viem:
- specifier: ^2.7.19
- version: 2.9.6(typescript@5.4.3)
-
-devDependencies:
- '@chromatic-com/storybook':
- specifier: ^1.2.25
- version: 1.2.25(react@18.2.0)
- '@rollup/plugin-commonjs':
- specifier: ^25.0.7
- version: 25.0.7(rollup@4.13.2)
- '@rollup/plugin-node-resolve':
- specifier: ^15.2.3
- version: 15.2.3(rollup@4.13.2)
- '@rollup/plugin-terser':
- specifier: ^0.4.4
- version: 0.4.4(rollup@4.13.2)
- '@rollup/plugin-typescript':
- specifier: ^11.1.6
- version: 11.1.6(rollup@4.13.2)(typescript@5.4.3)
- '@storybook/addon-essentials':
- specifier: ^8.0.4
- version: 8.0.5(@types/react@18.2.73)(react-dom@18.2.0)(react@18.2.0)
- '@storybook/addon-interactions':
- specifier: ^8.0.4
- version: 8.0.5(@types/jest@29.5.12)(jest@27.5.1)
- '@storybook/addon-links':
- specifier: ^8.0.4
- version: 8.0.5(react@18.2.0)
- '@storybook/addon-onboarding':
- specifier: ^8.0.4
- version: 8.0.5
- '@storybook/addon-styling-webpack':
- specifier: ^1.0.0
- version: 1.0.0(webpack@5.91.0)
- '@storybook/addon-themes':
- specifier: ^8.0.4
- version: 8.0.5
- '@storybook/blocks':
- specifier: ^8.0.4
- version: 8.0.5(@types/react@18.2.73)(react-dom@18.2.0)(react@18.2.0)
- '@storybook/manager-api':
- specifier: ^8.0.4
- version: 8.0.5(react-dom@18.2.0)(react@18.2.0)
- '@storybook/preset-create-react-app':
- specifier: ^8.0.4
- version: 8.0.5(react-refresh@0.14.0)(react-scripts@5.0.1)(typescript@5.4.3)(webpack@5.91.0)
- '@storybook/react':
- specifier: ^8.0.4
- version: 8.0.5(react-dom@18.2.0)(react@18.2.0)(typescript@5.4.3)
- '@storybook/react-webpack5':
- specifier: ^8.0.4
- version: 8.0.5(esbuild@0.20.2)(react-dom@18.2.0)(react@18.2.0)(typescript@5.4.3)
- '@storybook/test':
- specifier: ^8.0.4
- version: 8.0.5(@types/jest@29.5.12)(jest@27.5.1)
- '@storybook/theming':
- specifier: ^8.0.4
- version: 8.0.5(react-dom@18.2.0)(react@18.2.0)
- '@tanstack/react-query':
- specifier: ^5.32.1
- version: 5.32.1(react@18.2.0)
- '@testing-library/jest-dom':
- specifier: ^5.17.0
- version: 5.17.0
- '@testing-library/react':
- specifier: ^13.4.0
- 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.4)
- '@trivago/prettier-plugin-sort-imports':
- specifier: ^4.3.0
- version: 4.3.0(prettier@3.2.5)
- '@types/jest':
- specifier: ^29.5.12
- version: 29.5.12
- '@types/node':
- specifier: ^16.18.91
- version: 16.18.93
- '@types/react':
- specifier: ^18.2.70
- version: 18.2.73
- '@types/react-dom':
- specifier: ^18.2.22
- version: 18.2.23
- '@typescript-eslint/eslint-plugin':
- specifier: ^7.4.0
- version: 7.4.0(@typescript-eslint/parser@7.4.0)(eslint@8.57.0)(typescript@5.4.3)
- '@typescript-eslint/parser':
- specifier: ^7.4.0
- version: 7.4.0(eslint@8.57.0)(typescript@5.4.3)
- eslint:
- specifier: ^8.57.0
- version: 8.57.0
- eslint-config-prettier:
- specifier: ^9.1.0
- version: 9.1.0(eslint@8.57.0)
- eslint-plugin-prettier:
- specifier: ^5.1.3
- version: 5.1.3(eslint-config-prettier@9.1.0)(eslint@8.57.0)(prettier@3.2.5)
- eslint-plugin-react:
- specifier: ^7.34.1
- version: 7.34.1(eslint@8.57.0)
- eslint-plugin-react-hooks:
- specifier: ^4.6.0
- version: 4.6.0(eslint@8.57.0)
- eslint-plugin-storybook:
- specifier: ^0.8.0
- version: 0.8.0(eslint@8.57.0)(typescript@5.4.3)
- husky:
- specifier: ^9.0.11
- version: 9.0.11
- lint-staged:
- specifier: ^15.2.2
- version: 15.2.2
- postcss:
- specifier: ^8.4.38
- version: 8.4.38
- prettier:
- specifier: ^3.2.5
- version: 3.2.5
- prop-types:
- specifier: ^15.8.1
- version: 15.8.1
- react:
- specifier: ^18.2.0
- version: 18.2.0
- react-dom:
- specifier: ^18.2.0
- version: 18.2.0(react@18.2.0)
- react-scripts:
- specifier: 5.0.1
- version: 5.0.1(@babel/plugin-syntax-flow@7.24.1)(@babel/plugin-transform-react-jsx@7.23.4)(esbuild@0.20.2)(eslint@8.57.0)(react@18.2.0)(typescript@5.4.3)
- rollup:
- specifier: ^4.13.1
- version: 4.13.2
- rollup-plugin-dts:
- specifier: ^6.1.0
- version: 6.1.0(rollup@4.13.2)(typescript@5.4.3)
- rollup-plugin-peer-deps-external:
- specifier: ^2.2.4
- version: 2.2.4(rollup@4.13.2)
- rollup-plugin-postcss:
- specifier: ^4.0.2
- version: 4.0.2(postcss@8.4.38)
- storybook:
- specifier: ^8.0.4
- version: 8.0.5(react-dom@18.2.0)(react@18.2.0)
- typescript:
- specifier: ^5.4.3
- version: 5.4.3
- webpack:
- specifier: ^5.91.0
- version: 5.91.0(esbuild@0.20.2)
+importers:
+
+ .:
+ devDependencies:
+ '@storykit/eslint-config':
+ specifier: workspace:*
+ version: link:packages/config-eslint
+ eslint:
+ specifier: ^8.57.0
+ version: 8.57.0
+ husky:
+ specifier: ^9.0.11
+ version: 9.0.11
+ lint-staged:
+ specifier: ^15.2.2
+ version: 15.2.2
+ prettier:
+ specifier: ^3.2.5
+ version: 3.2.5
+ turbo:
+ specifier: ^1.12.2
+ version: 1.13.3
+
+ examples/next-app:
+ dependencies:
+ '@storyprotocol/storykit':
+ specifier: workspace:*
+ version: link:../../packages/storykit
+ '@tanstack/react-query':
+ specifier: ^5.28.9
+ version: 5.32.0(react@18.3.0)
+ next:
+ specifier: 14.1.4
+ version: 14.1.4(react-dom@18.3.0)(react@18.3.0)
+ react:
+ specifier: ^18
+ version: 18.3.0
+ react-apexcharts:
+ specifier: ^1.4.1
+ version: 1.4.1(apexcharts@3.49.0)(react@18.3.0)
+ react-dom:
+ specifier: ^18
+ version: 18.3.0(react@18.3.0)
+ react-force-graph-2d:
+ specifier: ^1.25.4
+ version: 1.25.4(react@18.3.0)
+ devDependencies:
+ '@next/eslint-plugin-next':
+ specifier: ^14.1.1
+ version: 14.2.3
+ '@storykit/eslint-config':
+ specifier: workspace:*
+ version: link:../../packages/config-eslint
+ '@storykit/prettier-config':
+ specifier: workspace:*
+ version: link:../../packages/config-prettier
+ '@storykit/typescript-config':
+ specifier: workspace:*
+ version: link:../../packages/config-typescript
+ '@types/node':
+ specifier: ^20
+ version: 20.12.7
+ '@types/react':
+ specifier: ^18
+ version: 18.3.0
+ '@types/react-dom':
+ specifier: ^18
+ version: 18.3.0
+ eslint:
+ specifier: ^8.57.0
+ version: 8.57.0
+ eslint-config-next:
+ specifier: 14.2.1
+ version: 14.2.1(eslint@8.57.0)(typescript@5.4.5)
+ prettier:
+ specifier: ^3.2.5
+ version: 3.2.5
+ typescript:
+ specifier: ^5
+ version: 5.4.5
+
+ packages/config-eslint:
+ devDependencies:
+ '@typescript-eslint/eslint-plugin':
+ specifier: ^7.1.0
+ version: 7.7.1(@typescript-eslint/parser@7.7.1)(eslint@8.57.0)(typescript@5.4.5)
+ '@typescript-eslint/parser':
+ specifier: ^7.1.0
+ version: 7.7.1(eslint@8.57.0)(typescript@5.4.5)
+ '@vercel/style-guide':
+ specifier: ^5.2.0
+ version: 5.2.0(eslint@8.57.0)(prettier@3.2.5)(typescript@5.4.5)
+ eslint-config-prettier:
+ specifier: ^9.1.0
+ version: 9.1.0(eslint@8.57.0)
+ eslint-config-turbo:
+ specifier: ^1.12.4
+ version: 1.13.3(eslint@8.57.0)
+ eslint-plugin-only-warn:
+ specifier: ^1.1.0
+ version: 1.1.0
+ typescript:
+ specifier: ^5.3.3
+ version: 5.4.5
+
+ packages/config-prettier:
+ devDependencies:
+ '@trivago/prettier-plugin-sort-imports':
+ specifier: ^4.3.0
+ version: 4.3.0(prettier@3.2.5)
+ prettier:
+ specifier: ^3.2.5
+ version: 3.2.5
+
+ packages/config-typescript: {}
+
+ packages/storykit:
+ dependencies:
+ '@emotion/is-prop-valid':
+ specifier: ^1.2.2
+ version: 1.2.2
+ '@emotion/react':
+ specifier: ^11.11.4
+ version: 11.11.4(@types/react@18.3.0)(react@18.3.0)
+ '@headlessui/react':
+ specifier: ^1.7.18
+ version: 1.7.19(react-dom@18.3.0)(react@18.3.0)
+ '@radix-ui/react-accordion':
+ specifier: ^1.1.2
+ version: 1.1.2(@types/react-dom@18.3.0)(@types/react@18.3.0)(react-dom@18.3.0)(react@18.3.0)
+ class-variance-authority:
+ specifier: ^0.7.0
+ version: 0.7.0
+ clsx:
+ specifier: ^2.1.0
+ version: 2.1.1
+ lucide-react:
+ specifier: ^0.364.0
+ version: 0.364.0(react@18.3.0)
+ react-icons:
+ specifier: ^5.0.1
+ version: 5.1.0(react@18.3.0)
+ tailwind-merge:
+ specifier: ^2.2.2
+ version: 2.3.0
+ tailwindcss:
+ specifier: ^3.4.1
+ version: 3.4.3
+ tailwindcss-animate:
+ specifier: ^1.0.7
+ version: 1.0.7(tailwindcss@3.4.3)
+ viem:
+ specifier: ^2.7.19
+ version: 2.9.27(typescript@5.4.5)
+ devDependencies:
+ '@chromatic-com/storybook':
+ specifier: ^1.2.25
+ version: 1.3.3(react@18.3.0)
+ '@rollup/plugin-commonjs':
+ specifier: ^25.0.7
+ version: 25.0.7(rollup@4.16.4)
+ '@rollup/plugin-node-resolve':
+ specifier: ^15.2.3
+ version: 15.2.3(rollup@4.16.4)
+ '@rollup/plugin-terser':
+ specifier: ^0.4.4
+ version: 0.4.4(rollup@4.16.4)
+ '@rollup/plugin-typescript':
+ specifier: ^11.1.6
+ version: 11.1.6(rollup@4.16.4)(typescript@5.4.5)
+ '@storybook/addon-essentials':
+ specifier: ^8.0.4
+ version: 8.0.9(@types/react@18.3.0)(react-dom@18.3.0)(react@18.3.0)
+ '@storybook/addon-interactions':
+ specifier: ^8.0.4
+ version: 8.0.9(@types/jest@29.5.12)(jest@27.5.1)
+ '@storybook/addon-links':
+ specifier: ^8.0.4
+ version: 8.0.9(react@18.3.0)
+ '@storybook/addon-onboarding':
+ specifier: ^8.0.4
+ version: 8.0.9
+ '@storybook/addon-styling-webpack':
+ specifier: ^1.0.0
+ version: 1.0.0(webpack@5.91.0)
+ '@storybook/addon-themes':
+ specifier: ^8.0.4
+ version: 8.0.9
+ '@storybook/blocks':
+ specifier: ^8.0.4
+ version: 8.0.9(@types/react@18.3.0)(react-dom@18.3.0)(react@18.3.0)
+ '@storybook/manager-api':
+ specifier: ^8.0.4
+ version: 8.0.9(react-dom@18.3.0)(react@18.3.0)
+ '@storybook/preset-create-react-app':
+ specifier: ^8.0.4
+ version: 8.0.9(react-refresh@0.14.1)(react-scripts@5.0.1)(typescript@5.4.5)(webpack@5.91.0)
+ '@storybook/react':
+ specifier: ^8.0.4
+ version: 8.0.9(react-dom@18.3.0)(react@18.3.0)(typescript@5.4.5)
+ '@storybook/react-webpack5':
+ specifier: ^8.0.4
+ version: 8.0.9(esbuild@0.20.2)(react-dom@18.3.0)(react@18.3.0)(typescript@5.4.5)
+ '@storybook/test':
+ specifier: ^8.0.4
+ version: 8.0.9(@types/jest@29.5.12)(jest@27.5.1)
+ '@storybook/theming':
+ specifier: ^8.0.4
+ version: 8.0.9(react-dom@18.3.0)(react@18.3.0)
+ '@storykit/eslint-config':
+ specifier: workspace:*
+ version: link:../config-eslint
+ '@storykit/prettier-config':
+ specifier: workspace:*
+ version: link:../config-prettier
+ '@storykit/typescript-config':
+ specifier: workspace:*
+ version: link:../config-typescript
+ '@tailwindcss/nesting':
+ specifier: 0.0.0-insiders.565cd3e
+ version: 0.0.0-insiders.565cd3e(postcss@8.4.38)
+ '@tanstack/react-query':
+ specifier: ^5.25.0
+ version: 5.32.0(react@18.3.0)
+ '@testing-library/jest-dom':
+ specifier: ^5.17.0
+ version: 5.17.0
+ '@testing-library/react':
+ specifier: ^13.4.0
+ version: 13.4.0(react-dom@18.3.0)(react@18.3.0)
+ '@testing-library/user-event':
+ specifier: ^13.5.0
+ version: 13.5.0(@testing-library/dom@10.0.0)
+ '@turbo/gen':
+ specifier: ^1.12.4
+ version: 1.13.3(@types/node@20.12.7)(typescript@5.4.5)
+ '@types/eslint':
+ specifier: ^8.56.5
+ version: 8.56.10
+ '@types/jest':
+ specifier: ^29.5.12
+ version: 29.5.12
+ '@types/node':
+ specifier: ^20.11.24
+ version: 20.12.7
+ '@types/react':
+ specifier: ^18.2.61
+ version: 18.3.0
+ '@types/react-dom':
+ specifier: ^18.2.19
+ version: 18.3.0
+ eslint:
+ specifier: ^8.57.0
+ version: 8.57.0
+ eslint-config-prettier:
+ specifier: ^9.1.0
+ version: 9.1.0(eslint@8.57.0)
+ eslint-plugin-prettier:
+ specifier: ^5.1.3
+ version: 5.1.3(@types/eslint@8.56.10)(eslint-config-prettier@9.1.0)(eslint@8.57.0)(prettier@3.2.5)
+ eslint-plugin-react:
+ specifier: ^7.34.1
+ version: 7.34.1(eslint@8.57.0)
+ eslint-plugin-react-hooks:
+ specifier: ^4.6.0
+ version: 4.6.1(eslint@8.57.0)
+ eslint-plugin-storybook:
+ specifier: ^0.8.0
+ version: 0.8.0(eslint@8.57.0)(typescript@5.4.5)
+ postcss:
+ specifier: ^8.4.38
+ version: 8.4.38
+ postcss-nesting:
+ specifier: ^12.1.2
+ version: 12.1.2(postcss@8.4.38)
+ prettier:
+ specifier: ^3.2.5
+ version: 3.2.5
+ prop-types:
+ specifier: ^15.8.1
+ version: 15.8.1
+ react:
+ specifier: ^18.2.0
+ version: 18.3.0
+ react-apexcharts:
+ specifier: ^1.4.1
+ version: 1.4.1(apexcharts@3.49.0)(react@18.3.0)
+ react-dom:
+ specifier: ^18.2.0
+ version: 18.3.0(react@18.3.0)
+ react-force-graph-2d:
+ specifier: ^1.25.4
+ version: 1.25.4(react@18.3.0)
+ react-scripts:
+ specifier: 5.0.1
+ version: 5.0.1(@babel/plugin-syntax-flow@7.24.1)(@babel/plugin-transform-react-jsx@7.23.4)(esbuild@0.20.2)(eslint@8.57.0)(react@18.3.0)(typescript@5.4.5)
+ rollup:
+ specifier: ^4.13.1
+ version: 4.16.4
+ rollup-plugin-dts:
+ specifier: ^6.1.0
+ version: 6.1.0(rollup@4.16.4)(typescript@5.4.5)
+ rollup-plugin-peer-deps-external:
+ specifier: ^2.2.4
+ version: 2.2.4(rollup@4.16.4)
+ rollup-plugin-postcss:
+ specifier: ^4.0.2
+ version: 4.0.2(postcss@8.4.38)
+ storybook:
+ specifier: ^8.0.4
+ version: 8.0.9(react-dom@18.3.0)(react@18.3.0)
+ typescript:
+ specifier: ^5.3.3
+ version: 5.4.5
+ webpack:
+ specifier: ^5.91.0
+ version: 5.91.0(esbuild@0.20.2)
packages:
@@ -250,22 +375,22 @@ packages:
'@babel/highlight': 7.24.2
picocolors: 1.0.0
- /@babel/compat-data@7.24.1:
- resolution: {integrity: sha512-Pc65opHDliVpRHuKfzI+gSA4zcgr65O4cl64fFJIWEEh8JoHIHh0Oez1Eo8Arz8zq/JhgKodQaxEwUPRtZylVA==}
+ /@babel/compat-data@7.24.4:
+ resolution: {integrity: sha512-vg8Gih2MLK+kOkHJp4gBEIkyaIi00jgWot2D9QOmmfLC8jINSOzmCLta6Bvz/JSBCqnegV0L80jhxkol5GWNfQ==}
engines: {node: '>=6.9.0'}
dev: true
- /@babel/core@7.24.3:
- resolution: {integrity: sha512-5FcvN1JHw2sHJChotgx8Ek0lyuh4kCKelgMTTqhYJJtloNvUfpAFMeNQUtdlIaktwrSV9LtCdqwk48wL2wBacQ==}
+ /@babel/core@7.24.4:
+ resolution: {integrity: sha512-MBVlMXP+kkl5394RBLSxxk/iLTeVGuXTV3cIDXavPpMMqnSnt6apKgan/U8O3USWZCWZT/TbgfEpKa4uMgN4Dg==}
engines: {node: '>=6.9.0'}
dependencies:
'@ampproject/remapping': 2.3.0
'@babel/code-frame': 7.24.2
- '@babel/generator': 7.24.1
+ '@babel/generator': 7.24.4
'@babel/helper-compilation-targets': 7.23.6
- '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.3)
- '@babel/helpers': 7.24.1
- '@babel/parser': 7.24.1
+ '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.4)
+ '@babel/helpers': 7.24.4
+ '@babel/parser': 7.24.4
'@babel/template': 7.24.0
'@babel/traverse': 7.24.1
'@babel/types': 7.24.0
@@ -278,14 +403,14 @@ packages:
- supports-color
dev: true
- /@babel/eslint-parser@7.24.1(@babel/core@7.24.3)(eslint@8.57.0):
+ /@babel/eslint-parser@7.24.1(@babel/core@7.24.4)(eslint@8.57.0):
resolution: {integrity: sha512-d5guuzMlPeDfZIbpQ8+g1NaCNuAGBBGNECh0HVqz1sjOeVLh2CEaifuOysCH18URW6R7pqXINvf5PaR/dC6jLQ==}
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.24.3
+ '@babel/core': 7.24.4
'@nicolo-ribaudo/eslint-scope-5-internals': 5.1.1-v1
eslint: 8.57.0
eslint-visitor-keys: 2.1.0
@@ -301,8 +426,8 @@ packages:
source-map: 0.5.7
dev: true
- /@babel/generator@7.24.1:
- resolution: {integrity: sha512-DfCRfZsBcrPEHUfuBMgbJ1Ut01Y/itOs+hY2nFLgqsqXd52/iSiVq5TITtUasIUgm+IIKdY2/1I7auiQOEeC9A==}
+ /@babel/generator@7.24.4:
+ resolution: {integrity: sha512-Xd6+v6SnjWVx/nus+y0l1sxMOTOMBkyL4+BIdbALyatQnAe/SRVjANeDPSCYaX+i1iJmuGSKf3Z+E+V/va1Hvw==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.24.0
@@ -329,49 +454,49 @@ packages:
resolution: {integrity: sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/compat-data': 7.24.1
+ '@babel/compat-data': 7.24.4
'@babel/helper-validator-option': 7.23.5
browserslist: 4.23.0
lru-cache: 5.1.1
semver: 6.3.1
dev: true
- /@babel/helper-create-class-features-plugin@7.24.1(@babel/core@7.24.3):
- resolution: {integrity: sha512-1yJa9dX9g//V6fDebXoEfEsxkZHk3Hcbm+zLhyu6qVgYFLvmTALTeV+jNU9e5RnYtioBrGEOdoI2joMSNQ/+aA==}
+ /@babel/helper-create-class-features-plugin@7.24.4(@babel/core@7.24.4):
+ resolution: {integrity: sha512-lG75yeuUSVu0pIcbhiYMXBXANHrpUPaOfu7ryAzskCgKUHuAxRQI5ssrtmF0X9UXldPlvT0XM/A4F44OXRt6iQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.24.3
+ '@babel/core': 7.24.4
'@babel/helper-annotate-as-pure': 7.22.5
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-function-name': 7.23.0
'@babel/helper-member-expression-to-functions': 7.23.0
'@babel/helper-optimise-call-expression': 7.22.5
- '@babel/helper-replace-supers': 7.24.1(@babel/core@7.24.3)
+ '@babel/helper-replace-supers': 7.24.1(@babel/core@7.24.4)
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
'@babel/helper-split-export-declaration': 7.22.6
semver: 6.3.1
dev: true
- /@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.24.3):
+ /@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.24.4):
resolution: {integrity: sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.24.3
+ '@babel/core': 7.24.4
'@babel/helper-annotate-as-pure': 7.22.5
regexpu-core: 5.3.2
semver: 6.3.1
dev: true
- /@babel/helper-define-polyfill-provider@0.6.1(@babel/core@7.24.3):
- resolution: {integrity: sha512-o7SDgTJuvx5vLKD6SFvkydkSMBvahDKGiNJzG22IZYXhiqoe9efY7zocICBgzHV4IRg5wdgl2nEL/tulKIEIbA==}
+ /@babel/helper-define-polyfill-provider@0.6.2(@babel/core@7.24.4):
+ resolution: {integrity: sha512-LV76g+C502biUK6AyZ3LK10vDpDyCzZnhZFXkH1L75zHPj68+qc8Zfpx2th+gzwA2MzyK+1g/3EPl62yFnVttQ==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
dependencies:
- '@babel/core': 7.24.3
+ '@babel/core': 7.24.4
'@babel/helper-compilation-targets': 7.23.6
'@babel/helper-plugin-utils': 7.24.0
debug: 4.3.4
@@ -414,13 +539,13 @@ packages:
dependencies:
'@babel/types': 7.24.0
- /@babel/helper-module-transforms@7.23.3(@babel/core@7.24.3):
+ /@babel/helper-module-transforms@7.23.3(@babel/core@7.24.4):
resolution: {integrity: sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.24.3
+ '@babel/core': 7.24.4
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-module-imports': 7.24.3
'@babel/helper-simple-access': 7.22.5
@@ -440,25 +565,25 @@ packages:
engines: {node: '>=6.9.0'}
dev: true
- /@babel/helper-remap-async-to-generator@7.22.20(@babel/core@7.24.3):
+ /@babel/helper-remap-async-to-generator@7.22.20(@babel/core@7.24.4):
resolution: {integrity: sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.24.3
+ '@babel/core': 7.24.4
'@babel/helper-annotate-as-pure': 7.22.5
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-wrap-function': 7.22.20
dev: true
- /@babel/helper-replace-supers@7.24.1(@babel/core@7.24.3):
+ /@babel/helper-replace-supers@7.24.1(@babel/core@7.24.4):
resolution: {integrity: sha512-QCR1UqC9BzG5vZl8BMicmZ28RuUBnHhAMddD8yHFHDRH9lLTZ9uUPehX8ctVPT8l0TKblJidqcgUUKGVrePleQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.24.3
+ '@babel/core': 7.24.4
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-member-expression-to-functions': 7.23.0
'@babel/helper-optimise-call-expression': 7.22.5
@@ -507,8 +632,8 @@ packages:
'@babel/types': 7.24.0
dev: true
- /@babel/helpers@7.24.1:
- resolution: {integrity: sha512-BpU09QqEe6ZCHuIHFphEFgvNSrubve1FtyMton26ekZ85gRGi6LrTF7zArARp2YvyFxloeiRmtSCq5sjh1WqIg==}
+ /@babel/helpers@7.24.4:
+ resolution: {integrity: sha512-FewdlZbSiwaVGlgT1DPANDuCHaDMiOo+D/IDYRFYjHOuv66xMSJ7fQwwODwRNAPkADIO/z1EoF/l2BCWlWABDw==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/template': 7.24.0
@@ -528,1138 +653,1150 @@ packages:
js-tokens: 4.0.0
picocolors: 1.0.0
- /@babel/parser@7.24.1:
- resolution: {integrity: sha512-Zo9c7N3xdOIQrNip7Lc9wvRPzlRtovHVE4lkz8WEDr7uYh/GMQhSiIgFxGIArRHYdJE5kxtZjAf8rT0xhdLCzg==}
+ /@babel/parser@7.24.4:
+ resolution: {integrity: sha512-zTvEBcghmeBma9QIGunWevvBAp4/Qu9Bdq+2k0Ot4fVMD6v3dsC9WOcRSKk7tRRyBM/53yKMJko9xOatGQAwSg==}
engines: {node: '>=6.0.0'}
hasBin: true
dependencies:
'@babel/types': 7.24.0
dev: true
- /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.24.1(@babel/core@7.24.3):
+ /@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.24.4(@babel/core@7.24.4):
+ resolution: {integrity: sha512-qpl6vOOEEzTLLcsuqYYo8yDtrTocmu2xkGvgNebvPjT9DTtfFYGmgDqY+rBYXNlqL4s9qLDn6xkrJv4RxAPiTA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ dependencies:
+ '@babel/core': 7.24.4
+ '@babel/helper-environment-visitor': 7.22.20
+ '@babel/helper-plugin-utils': 7.24.0
+ dev: true
+
+ /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.24.1(@babel/core@7.24.4):
resolution: {integrity: sha512-y4HqEnkelJIOQGd+3g1bTeKsA5c6qM7eOn7VggGVbBc0y8MLSKHacwcIE2PplNlQSj0PqS9rrXL/nkPVK+kUNg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.24.3
+ '@babel/core': 7.24.4
'@babel/helper-plugin-utils': 7.24.0
dev: true
- /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.1(@babel/core@7.24.3):
+ /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.1(@babel/core@7.24.4):
resolution: {integrity: sha512-Hj791Ii4ci8HqnaKHAlLNs+zaLXb0EzSDhiAWp5VNlyvCNymYfacs64pxTxbH1znW/NcArSmwpmG9IKE/TUVVQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.13.0
dependencies:
- '@babel/core': 7.24.3
+ '@babel/core': 7.24.4
'@babel/helper-plugin-utils': 7.24.0
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
- '@babel/plugin-transform-optional-chaining': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-transform-optional-chaining': 7.24.1(@babel/core@7.24.4)
dev: true
- /@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.24.1(@babel/core@7.24.3):
+ /@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.24.1(@babel/core@7.24.4):
resolution: {integrity: sha512-m9m/fXsXLiHfwdgydIFnpk+7jlVbnvlK5B2EKiPdLUb6WX654ZaaEWJUjk8TftRbZpK0XibovlLWX4KIZhV6jw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.24.3
+ '@babel/core': 7.24.4
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-plugin-utils': 7.24.0
dev: true
- /@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.24.3):
+ /@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.24.4):
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.24.3
- '@babel/helper-create-class-features-plugin': 7.24.1(@babel/core@7.24.3)
+ '@babel/core': 7.24.4
+ '@babel/helper-create-class-features-plugin': 7.24.4(@babel/core@7.24.4)
'@babel/helper-plugin-utils': 7.24.0
dev: true
- /@babel/plugin-proposal-decorators@7.24.1(@babel/core@7.24.3):
+ /@babel/plugin-proposal-decorators@7.24.1(@babel/core@7.24.4):
resolution: {integrity: sha512-zPEvzFijn+hRvJuX2Vu3KbEBN39LN3f7tW3MQO2LsIs57B26KU+kUc82BdAktS1VCM6libzh45eKGI65lg0cpA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.3
- '@babel/helper-create-class-features-plugin': 7.24.1(@babel/core@7.24.3)
+ '@babel/core': 7.24.4
+ '@babel/helper-create-class-features-plugin': 7.24.4(@babel/core@7.24.4)
'@babel/helper-plugin-utils': 7.24.0
- '@babel/plugin-syntax-decorators': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-syntax-decorators': 7.24.1(@babel/core@7.24.4)
dev: true
- /@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.24.3):
+ /@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.24.4):
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.24.3
+ '@babel/core': 7.24.4
'@babel/helper-plugin-utils': 7.24.0
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.3)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.4)
dev: true
- /@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.24.3):
+ /@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.24.4):
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.24.3
+ '@babel/core': 7.24.4
'@babel/helper-plugin-utils': 7.24.0
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.3)
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.4)
dev: true
- /@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.24.3):
+ /@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.24.4):
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.24.3
+ '@babel/core': 7.24.4
'@babel/helper-plugin-utils': 7.24.0
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.3)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.4)
dev: true
- /@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.24.3):
+ /@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.24.4):
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.24.3
- '@babel/helper-create-class-features-plugin': 7.24.1(@babel/core@7.24.3)
+ '@babel/core': 7.24.4
+ '@babel/helper-create-class-features-plugin': 7.24.4(@babel/core@7.24.4)
'@babel/helper-plugin-utils': 7.24.0
dev: true
- /@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.3):
+ /@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.4):
resolution: {integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.3
+ '@babel/core': 7.24.4
dev: true
- /@babel/plugin-proposal-private-property-in-object@7.21.11(@babel/core@7.24.3):
+ /@babel/plugin-proposal-private-property-in-object@7.21.11(@babel/core@7.24.4):
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.24.3
+ '@babel/core': 7.24.4
'@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-create-class-features-plugin': 7.24.1(@babel/core@7.24.3)
+ '@babel/helper-create-class-features-plugin': 7.24.4(@babel/core@7.24.4)
'@babel/helper-plugin-utils': 7.24.0
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.3)
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.4)
dev: true
- /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.24.3):
+ /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.24.4):
resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.3
+ '@babel/core': 7.24.4
'@babel/helper-plugin-utils': 7.24.0
dev: true
- /@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.24.3):
+ /@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.24.4):
resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.3
+ '@babel/core': 7.24.4
'@babel/helper-plugin-utils': 7.24.0
dev: true
- /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.24.3):
+ /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.24.4):
resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.3
+ '@babel/core': 7.24.4
'@babel/helper-plugin-utils': 7.24.0
dev: true
- /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.24.3):
+ /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.24.4):
resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.3
+ '@babel/core': 7.24.4
'@babel/helper-plugin-utils': 7.24.0
dev: true
- /@babel/plugin-syntax-decorators@7.24.1(@babel/core@7.24.3):
+ /@babel/plugin-syntax-decorators@7.24.1(@babel/core@7.24.4):
resolution: {integrity: sha512-05RJdO/cCrtVWuAaSn1tS3bH8jbsJa/Y1uD186u6J4C/1mnHFxseeuWpsqr9anvo7TUulev7tm7GDwRV+VuhDw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.3
+ '@babel/core': 7.24.4
'@babel/helper-plugin-utils': 7.24.0
dev: true
- /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.24.3):
+ /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.24.4):
resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.3
+ '@babel/core': 7.24.4
'@babel/helper-plugin-utils': 7.24.0
dev: true
- /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.24.3):
+ /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.24.4):
resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.3
+ '@babel/core': 7.24.4
'@babel/helper-plugin-utils': 7.24.0
dev: true
- /@babel/plugin-syntax-flow@7.24.1(@babel/core@7.24.3):
+ /@babel/plugin-syntax-flow@7.24.1(@babel/core@7.24.4):
resolution: {integrity: sha512-sxi2kLTI5DeW5vDtMUsk4mTPwvlUDbjOnoWayhynCwrw4QXRld4QEYwqzY8JmQXaJUtgUuCIurtSRH5sn4c7mA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.3
+ '@babel/core': 7.24.4
'@babel/helper-plugin-utils': 7.24.0
dev: true
- /@babel/plugin-syntax-import-assertions@7.24.1(@babel/core@7.24.3):
+ /@babel/plugin-syntax-import-assertions@7.24.1(@babel/core@7.24.4):
resolution: {integrity: sha512-IuwnI5XnuF189t91XbxmXeCDz3qs6iDRO7GJ++wcfgeXNs/8FmIlKcpDSXNVyuLQxlwvskmI3Ct73wUODkJBlQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.3
+ '@babel/core': 7.24.4
'@babel/helper-plugin-utils': 7.24.0
dev: true
- /@babel/plugin-syntax-import-attributes@7.24.1(@babel/core@7.24.3):
+ /@babel/plugin-syntax-import-attributes@7.24.1(@babel/core@7.24.4):
resolution: {integrity: sha512-zhQTMH0X2nVLnb04tz+s7AMuasX8U0FnpE+nHTOhSOINjWMnopoZTxtIKsd45n4GQ/HIZLyfIpoul8e2m0DnRA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.3
+ '@babel/core': 7.24.4
'@babel/helper-plugin-utils': 7.24.0
dev: true
- /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.24.3):
+ /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.24.4):
resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.3
+ '@babel/core': 7.24.4
'@babel/helper-plugin-utils': 7.24.0
dev: true
- /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.24.3):
+ /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.24.4):
resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.3
+ '@babel/core': 7.24.4
'@babel/helper-plugin-utils': 7.24.0
dev: true
- /@babel/plugin-syntax-jsx@7.24.1(@babel/core@7.24.3):
+ /@babel/plugin-syntax-jsx@7.24.1(@babel/core@7.24.4):
resolution: {integrity: sha512-2eCtxZXf+kbkMIsXS4poTvT4Yu5rXiRa+9xGVT56raghjmBTKMpFNc9R4IDiB4emao9eO22Ox7CxuJG7BgExqA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.3
+ '@babel/core': 7.24.4
'@babel/helper-plugin-utils': 7.24.0
dev: true
- /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.24.3):
+ /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.24.4):
resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.3
+ '@babel/core': 7.24.4
'@babel/helper-plugin-utils': 7.24.0
dev: true
- /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.24.3):
+ /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.24.4):
resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.3
+ '@babel/core': 7.24.4
'@babel/helper-plugin-utils': 7.24.0
dev: true
- /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.24.3):
+ /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.24.4):
resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.3
+ '@babel/core': 7.24.4
'@babel/helper-plugin-utils': 7.24.0
dev: true
- /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.24.3):
+ /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.24.4):
resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.3
+ '@babel/core': 7.24.4
'@babel/helper-plugin-utils': 7.24.0
dev: true
- /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.24.3):
+ /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.24.4):
resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.3
+ '@babel/core': 7.24.4
'@babel/helper-plugin-utils': 7.24.0
dev: true
- /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.24.3):
+ /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.24.4):
resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.3
+ '@babel/core': 7.24.4
'@babel/helper-plugin-utils': 7.24.0
dev: true
- /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.24.3):
+ /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.24.4):
resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.3
+ '@babel/core': 7.24.4
'@babel/helper-plugin-utils': 7.24.0
dev: true
- /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.24.3):
+ /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.24.4):
resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.3
+ '@babel/core': 7.24.4
'@babel/helper-plugin-utils': 7.24.0
dev: true
- /@babel/plugin-syntax-typescript@7.24.1(@babel/core@7.24.3):
+ /@babel/plugin-syntax-typescript@7.24.1(@babel/core@7.24.4):
resolution: {integrity: sha512-Yhnmvy5HZEnHUty6i++gcfH1/l68AHnItFHnaCv6hn9dNh0hQvvQJsxpi4BMBFN5DLeHBuucT/0DgzXif/OyRw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.3
+ '@babel/core': 7.24.4
'@babel/helper-plugin-utils': 7.24.0
dev: true
- /@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.24.3):
+ /@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.24.4):
resolution: {integrity: sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.24.3
- '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.3)
+ '@babel/core': 7.24.4
+ '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.4)
'@babel/helper-plugin-utils': 7.24.0
dev: true
- /@babel/plugin-transform-arrow-functions@7.24.1(@babel/core@7.24.3):
+ /@babel/plugin-transform-arrow-functions@7.24.1(@babel/core@7.24.4):
resolution: {integrity: sha512-ngT/3NkRhsaep9ck9uj2Xhv9+xB1zShY3tM3g6om4xxCELwCDN4g4Aq5dRn48+0hasAql7s2hdBOysCfNpr4fw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.3
+ '@babel/core': 7.24.4
'@babel/helper-plugin-utils': 7.24.0
dev: true
- /@babel/plugin-transform-async-generator-functions@7.24.3(@babel/core@7.24.3):
+ /@babel/plugin-transform-async-generator-functions@7.24.3(@babel/core@7.24.4):
resolution: {integrity: sha512-Qe26CMYVjpQxJ8zxM1340JFNjZaF+ISWpr1Kt/jGo+ZTUzKkfw/pphEWbRCb+lmSM6k/TOgfYLvmbHkUQ0asIg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.3
+ '@babel/core': 7.24.4
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-plugin-utils': 7.24.0
- '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.24.3)
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.3)
+ '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.24.4)
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.4)
dev: true
- /@babel/plugin-transform-async-to-generator@7.24.1(@babel/core@7.24.3):
+ /@babel/plugin-transform-async-to-generator@7.24.1(@babel/core@7.24.4):
resolution: {integrity: sha512-AawPptitRXp1y0n4ilKcGbRYWfbbzFWz2NqNu7dacYDtFtz0CMjG64b3LQsb3KIgnf4/obcUL78hfaOS7iCUfw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.3
+ '@babel/core': 7.24.4
'@babel/helper-module-imports': 7.24.3
'@babel/helper-plugin-utils': 7.24.0
- '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.24.3)
+ '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.24.4)
dev: true
- /@babel/plugin-transform-block-scoped-functions@7.24.1(@babel/core@7.24.3):
+ /@babel/plugin-transform-block-scoped-functions@7.24.1(@babel/core@7.24.4):
resolution: {integrity: sha512-TWWC18OShZutrv9C6mye1xwtam+uNi2bnTOCBUd5sZxyHOiWbU6ztSROofIMrK84uweEZC219POICK/sTYwfgg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.3
+ '@babel/core': 7.24.4
'@babel/helper-plugin-utils': 7.24.0
dev: true
- /@babel/plugin-transform-block-scoping@7.24.1(@babel/core@7.24.3):
- resolution: {integrity: sha512-h71T2QQvDgM2SmT29UYU6ozjMlAt7s7CSs5Hvy8f8cf/GM/Z4a2zMfN+fjVGaieeCrXR3EdQl6C4gQG+OgmbKw==}
+ /@babel/plugin-transform-block-scoping@7.24.4(@babel/core@7.24.4):
+ resolution: {integrity: sha512-nIFUZIpGKDf9O9ttyRXpHFpKC+X3Y5mtshZONuEUYBomAKoM4y029Jr+uB1bHGPhNmK8YXHevDtKDOLmtRrp6g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.3
+ '@babel/core': 7.24.4
'@babel/helper-plugin-utils': 7.24.0
dev: true
- /@babel/plugin-transform-class-properties@7.24.1(@babel/core@7.24.3):
+ /@babel/plugin-transform-class-properties@7.24.1(@babel/core@7.24.4):
resolution: {integrity: sha512-OMLCXi0NqvJfORTaPQBwqLXHhb93wkBKZ4aNwMl6WtehO7ar+cmp+89iPEQPqxAnxsOKTaMcs3POz3rKayJ72g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.3
- '@babel/helper-create-class-features-plugin': 7.24.1(@babel/core@7.24.3)
+ '@babel/core': 7.24.4
+ '@babel/helper-create-class-features-plugin': 7.24.4(@babel/core@7.24.4)
'@babel/helper-plugin-utils': 7.24.0
dev: true
- /@babel/plugin-transform-class-static-block@7.24.1(@babel/core@7.24.3):
- resolution: {integrity: sha512-FUHlKCn6J3ERiu8Dv+4eoz7w8+kFLSyeVG4vDAikwADGjUCoHw/JHokyGtr8OR4UjpwPVivyF+h8Q5iv/JmrtA==}
+ /@babel/plugin-transform-class-static-block@7.24.4(@babel/core@7.24.4):
+ resolution: {integrity: sha512-B8q7Pz870Hz/q9UgP8InNpY01CSLDSCyqX7zcRuv3FcPl87A2G17lASroHWaCtbdIcbYzOZ7kWmXFKbijMSmFg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.12.0
dependencies:
- '@babel/core': 7.24.3
- '@babel/helper-create-class-features-plugin': 7.24.1(@babel/core@7.24.3)
+ '@babel/core': 7.24.4
+ '@babel/helper-create-class-features-plugin': 7.24.4(@babel/core@7.24.4)
'@babel/helper-plugin-utils': 7.24.0
- '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.24.3)
+ '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.24.4)
dev: true
- /@babel/plugin-transform-classes@7.24.1(@babel/core@7.24.3):
+ /@babel/plugin-transform-classes@7.24.1(@babel/core@7.24.4):
resolution: {integrity: sha512-ZTIe3W7UejJd3/3R4p7ScyyOoafetUShSf4kCqV0O7F/RiHxVj/wRaRnQlrGwflvcehNA8M42HkAiEDYZu2F1Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.3
+ '@babel/core': 7.24.4
'@babel/helper-annotate-as-pure': 7.22.5
'@babel/helper-compilation-targets': 7.23.6
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-function-name': 7.23.0
'@babel/helper-plugin-utils': 7.24.0
- '@babel/helper-replace-supers': 7.24.1(@babel/core@7.24.3)
+ '@babel/helper-replace-supers': 7.24.1(@babel/core@7.24.4)
'@babel/helper-split-export-declaration': 7.22.6
globals: 11.12.0
dev: true
- /@babel/plugin-transform-computed-properties@7.24.1(@babel/core@7.24.3):
+ /@babel/plugin-transform-computed-properties@7.24.1(@babel/core@7.24.4):
resolution: {integrity: sha512-5pJGVIUfJpOS+pAqBQd+QMaTD2vCL/HcePooON6pDpHgRp4gNRmzyHTPIkXntwKsq3ayUFVfJaIKPw2pOkOcTw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.3
+ '@babel/core': 7.24.4
'@babel/helper-plugin-utils': 7.24.0
'@babel/template': 7.24.0
dev: true
- /@babel/plugin-transform-destructuring@7.24.1(@babel/core@7.24.3):
+ /@babel/plugin-transform-destructuring@7.24.1(@babel/core@7.24.4):
resolution: {integrity: sha512-ow8jciWqNxR3RYbSNVuF4U2Jx130nwnBnhRw6N6h1bOejNkABmcI5X5oz29K4alWX7vf1C+o6gtKXikzRKkVdw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.3
+ '@babel/core': 7.24.4
'@babel/helper-plugin-utils': 7.24.0
dev: true
- /@babel/plugin-transform-dotall-regex@7.24.1(@babel/core@7.24.3):
+ /@babel/plugin-transform-dotall-regex@7.24.1(@babel/core@7.24.4):
resolution: {integrity: sha512-p7uUxgSoZwZ2lPNMzUkqCts3xlp8n+o05ikjy7gbtFJSt9gdU88jAmtfmOxHM14noQXBxfgzf2yRWECiNVhTCw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.3
- '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.3)
+ '@babel/core': 7.24.4
+ '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.4)
'@babel/helper-plugin-utils': 7.24.0
dev: true
- /@babel/plugin-transform-duplicate-keys@7.24.1(@babel/core@7.24.3):
+ /@babel/plugin-transform-duplicate-keys@7.24.1(@babel/core@7.24.4):
resolution: {integrity: sha512-msyzuUnvsjsaSaocV6L7ErfNsa5nDWL1XKNnDePLgmz+WdU4w/J8+AxBMrWfi9m4IxfL5sZQKUPQKDQeeAT6lA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.3
+ '@babel/core': 7.24.4
'@babel/helper-plugin-utils': 7.24.0
dev: true
- /@babel/plugin-transform-dynamic-import@7.24.1(@babel/core@7.24.3):
+ /@babel/plugin-transform-dynamic-import@7.24.1(@babel/core@7.24.4):
resolution: {integrity: sha512-av2gdSTyXcJVdI+8aFZsCAtR29xJt0S5tas+Ef8NvBNmD1a+N/3ecMLeMBgfcK+xzsjdLDT6oHt+DFPyeqUbDA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.3
+ '@babel/core': 7.24.4
'@babel/helper-plugin-utils': 7.24.0
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.3)
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.4)
dev: true
- /@babel/plugin-transform-exponentiation-operator@7.24.1(@babel/core@7.24.3):
+ /@babel/plugin-transform-exponentiation-operator@7.24.1(@babel/core@7.24.4):
resolution: {integrity: sha512-U1yX13dVBSwS23DEAqU+Z/PkwE9/m7QQy8Y9/+Tdb8UWYaGNDYwTLi19wqIAiROr8sXVum9A/rtiH5H0boUcTw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.3
+ '@babel/core': 7.24.4
'@babel/helper-builder-binary-assignment-operator-visitor': 7.22.15
'@babel/helper-plugin-utils': 7.24.0
dev: true
- /@babel/plugin-transform-export-namespace-from@7.24.1(@babel/core@7.24.3):
+ /@babel/plugin-transform-export-namespace-from@7.24.1(@babel/core@7.24.4):
resolution: {integrity: sha512-Ft38m/KFOyzKw2UaJFkWG9QnHPG/Q/2SkOrRk4pNBPg5IPZ+dOxcmkK5IyuBcxiNPyyYowPGUReyBvrvZs7IlQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.3
+ '@babel/core': 7.24.4
'@babel/helper-plugin-utils': 7.24.0
- '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.3)
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.4)
dev: true
- /@babel/plugin-transform-flow-strip-types@7.24.1(@babel/core@7.24.3):
+ /@babel/plugin-transform-flow-strip-types@7.24.1(@babel/core@7.24.4):
resolution: {integrity: sha512-iIYPIWt3dUmUKKE10s3W+jsQ3icFkw0JyRVyY1B7G4yK/nngAOHLVx8xlhA6b/Jzl/Y0nis8gjqhqKtRDQqHWQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.3
+ '@babel/core': 7.24.4
'@babel/helper-plugin-utils': 7.24.0
- '@babel/plugin-syntax-flow': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-syntax-flow': 7.24.1(@babel/core@7.24.4)
dev: true
- /@babel/plugin-transform-for-of@7.24.1(@babel/core@7.24.3):
+ /@babel/plugin-transform-for-of@7.24.1(@babel/core@7.24.4):
resolution: {integrity: sha512-OxBdcnF04bpdQdR3i4giHZNZQn7cm8RQKcSwA17wAAqEELo1ZOwp5FFgeptWUQXFyT9kwHo10aqqauYkRZPCAg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.3
+ '@babel/core': 7.24.4
'@babel/helper-plugin-utils': 7.24.0
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
dev: true
- /@babel/plugin-transform-function-name@7.24.1(@babel/core@7.24.3):
+ /@babel/plugin-transform-function-name@7.24.1(@babel/core@7.24.4):
resolution: {integrity: sha512-BXmDZpPlh7jwicKArQASrj8n22/w6iymRnvHYYd2zO30DbE277JO20/7yXJT3QxDPtiQiOxQBbZH4TpivNXIxA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.3
+ '@babel/core': 7.24.4
'@babel/helper-compilation-targets': 7.23.6
'@babel/helper-function-name': 7.23.0
'@babel/helper-plugin-utils': 7.24.0
dev: true
- /@babel/plugin-transform-json-strings@7.24.1(@babel/core@7.24.3):
+ /@babel/plugin-transform-json-strings@7.24.1(@babel/core@7.24.4):
resolution: {integrity: sha512-U7RMFmRvoasscrIFy5xA4gIp8iWnWubnKkKuUGJjsuOH7GfbMkB+XZzeslx2kLdEGdOJDamEmCqOks6e8nv8DQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.3
+ '@babel/core': 7.24.4
'@babel/helper-plugin-utils': 7.24.0
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.3)
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.4)
dev: true
- /@babel/plugin-transform-literals@7.24.1(@babel/core@7.24.3):
+ /@babel/plugin-transform-literals@7.24.1(@babel/core@7.24.4):
resolution: {integrity: sha512-zn9pwz8U7nCqOYIiBaOxoQOtYmMODXTJnkxG4AtX8fPmnCRYWBOHD0qcpwS9e2VDSp1zNJYpdnFMIKb8jmwu6g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.3
+ '@babel/core': 7.24.4
'@babel/helper-plugin-utils': 7.24.0
dev: true
- /@babel/plugin-transform-logical-assignment-operators@7.24.1(@babel/core@7.24.3):
+ /@babel/plugin-transform-logical-assignment-operators@7.24.1(@babel/core@7.24.4):
resolution: {integrity: sha512-OhN6J4Bpz+hIBqItTeWJujDOfNP+unqv/NJgyhlpSqgBTPm37KkMmZV6SYcOj+pnDbdcl1qRGV/ZiIjX9Iy34w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.3
+ '@babel/core': 7.24.4
'@babel/helper-plugin-utils': 7.24.0
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.3)
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.4)
dev: true
- /@babel/plugin-transform-member-expression-literals@7.24.1(@babel/core@7.24.3):
+ /@babel/plugin-transform-member-expression-literals@7.24.1(@babel/core@7.24.4):
resolution: {integrity: sha512-4ojai0KysTWXzHseJKa1XPNXKRbuUrhkOPY4rEGeR+7ChlJVKxFa3H3Bz+7tWaGKgJAXUWKOGmltN+u9B3+CVg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.3
+ '@babel/core': 7.24.4
'@babel/helper-plugin-utils': 7.24.0
dev: true
- /@babel/plugin-transform-modules-amd@7.24.1(@babel/core@7.24.3):
+ /@babel/plugin-transform-modules-amd@7.24.1(@babel/core@7.24.4):
resolution: {integrity: sha512-lAxNHi4HVtjnHd5Rxg3D5t99Xm6H7b04hUS7EHIXcUl2EV4yl1gWdqZrNzXnSrHveL9qMdbODlLF55mvgjAfaQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.3
- '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.3)
+ '@babel/core': 7.24.4
+ '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.4)
'@babel/helper-plugin-utils': 7.24.0
dev: true
- /@babel/plugin-transform-modules-commonjs@7.24.1(@babel/core@7.24.3):
+ /@babel/plugin-transform-modules-commonjs@7.24.1(@babel/core@7.24.4):
resolution: {integrity: sha512-szog8fFTUxBfw0b98gEWPaEqF42ZUD/T3bkynW/wtgx2p/XCP55WEsb+VosKceRSd6njipdZvNogqdtI4Q0chw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.3
- '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.3)
+ '@babel/core': 7.24.4
+ '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.4)
'@babel/helper-plugin-utils': 7.24.0
'@babel/helper-simple-access': 7.22.5
dev: true
- /@babel/plugin-transform-modules-systemjs@7.24.1(@babel/core@7.24.3):
+ /@babel/plugin-transform-modules-systemjs@7.24.1(@babel/core@7.24.4):
resolution: {integrity: sha512-mqQ3Zh9vFO1Tpmlt8QPnbwGHzNz3lpNEMxQb1kAemn/erstyqw1r9KeOlOfo3y6xAnFEcOv2tSyrXfmMk+/YZA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.3
+ '@babel/core': 7.24.4
'@babel/helper-hoist-variables': 7.22.5
- '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.3)
+ '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.4)
'@babel/helper-plugin-utils': 7.24.0
'@babel/helper-validator-identifier': 7.22.20
dev: true
- /@babel/plugin-transform-modules-umd@7.24.1(@babel/core@7.24.3):
+ /@babel/plugin-transform-modules-umd@7.24.1(@babel/core@7.24.4):
resolution: {integrity: sha512-tuA3lpPj+5ITfcCluy6nWonSL7RvaG0AOTeAuvXqEKS34lnLzXpDb0dcP6K8jD0zWZFNDVly90AGFJPnm4fOYg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.3
- '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.3)
+ '@babel/core': 7.24.4
+ '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.4)
'@babel/helper-plugin-utils': 7.24.0
dev: true
- /@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.24.3):
+ /@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.24.4):
resolution: {integrity: sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.24.3
- '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.3)
+ '@babel/core': 7.24.4
+ '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.4)
'@babel/helper-plugin-utils': 7.24.0
dev: true
- /@babel/plugin-transform-new-target@7.24.1(@babel/core@7.24.3):
+ /@babel/plugin-transform-new-target@7.24.1(@babel/core@7.24.4):
resolution: {integrity: sha512-/rurytBM34hYy0HKZQyA0nHbQgQNFm4Q/BOc9Hflxi2X3twRof7NaE5W46j4kQitm7SvACVRXsa6N/tSZxvPug==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.3
+ '@babel/core': 7.24.4
'@babel/helper-plugin-utils': 7.24.0
dev: true
- /@babel/plugin-transform-nullish-coalescing-operator@7.24.1(@babel/core@7.24.3):
+ /@babel/plugin-transform-nullish-coalescing-operator@7.24.1(@babel/core@7.24.4):
resolution: {integrity: sha512-iQ+caew8wRrhCikO5DrUYx0mrmdhkaELgFa+7baMcVuhxIkN7oxt06CZ51D65ugIb1UWRQ8oQe+HXAVM6qHFjw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.3
+ '@babel/core': 7.24.4
'@babel/helper-plugin-utils': 7.24.0
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.3)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.4)
dev: true
- /@babel/plugin-transform-numeric-separator@7.24.1(@babel/core@7.24.3):
+ /@babel/plugin-transform-numeric-separator@7.24.1(@babel/core@7.24.4):
resolution: {integrity: sha512-7GAsGlK4cNL2OExJH1DzmDeKnRv/LXq0eLUSvudrehVA5Rgg4bIrqEUW29FbKMBRT0ztSqisv7kjP+XIC4ZMNw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.3
+ '@babel/core': 7.24.4
'@babel/helper-plugin-utils': 7.24.0
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.3)
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.4)
dev: true
- /@babel/plugin-transform-object-rest-spread@7.24.1(@babel/core@7.24.3):
+ /@babel/plugin-transform-object-rest-spread@7.24.1(@babel/core@7.24.4):
resolution: {integrity: sha512-XjD5f0YqOtebto4HGISLNfiNMTTs6tbkFf2TOqJlYKYmbo+mN9Dnpl4SRoofiziuOWMIyq3sZEUqLo3hLITFEA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.3
+ '@babel/core': 7.24.4
'@babel/helper-compilation-targets': 7.23.6
'@babel/helper-plugin-utils': 7.24.0
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.3)
- '@babel/plugin-transform-parameters': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.4)
+ '@babel/plugin-transform-parameters': 7.24.1(@babel/core@7.24.4)
dev: true
- /@babel/plugin-transform-object-super@7.24.1(@babel/core@7.24.3):
+ /@babel/plugin-transform-object-super@7.24.1(@babel/core@7.24.4):
resolution: {integrity: sha512-oKJqR3TeI5hSLRxudMjFQ9re9fBVUU0GICqM3J1mi8MqlhVr6hC/ZN4ttAyMuQR6EZZIY6h/exe5swqGNNIkWQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.3
+ '@babel/core': 7.24.4
'@babel/helper-plugin-utils': 7.24.0
- '@babel/helper-replace-supers': 7.24.1(@babel/core@7.24.3)
+ '@babel/helper-replace-supers': 7.24.1(@babel/core@7.24.4)
dev: true
- /@babel/plugin-transform-optional-catch-binding@7.24.1(@babel/core@7.24.3):
+ /@babel/plugin-transform-optional-catch-binding@7.24.1(@babel/core@7.24.4):
resolution: {integrity: sha512-oBTH7oURV4Y+3EUrf6cWn1OHio3qG/PVwO5J03iSJmBg6m2EhKjkAu/xuaXaYwWW9miYtvbWv4LNf0AmR43LUA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.3
+ '@babel/core': 7.24.4
'@babel/helper-plugin-utils': 7.24.0
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.3)
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.4)
dev: true
- /@babel/plugin-transform-optional-chaining@7.24.1(@babel/core@7.24.3):
+ /@babel/plugin-transform-optional-chaining@7.24.1(@babel/core@7.24.4):
resolution: {integrity: sha512-n03wmDt+987qXwAgcBlnUUivrZBPZ8z1plL0YvgQalLm+ZE5BMhGm94jhxXtA1wzv1Cu2aaOv1BM9vbVttrzSg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.3
+ '@babel/core': 7.24.4
'@babel/helper-plugin-utils': 7.24.0
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.3)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.4)
dev: true
- /@babel/plugin-transform-parameters@7.24.1(@babel/core@7.24.3):
+ /@babel/plugin-transform-parameters@7.24.1(@babel/core@7.24.4):
resolution: {integrity: sha512-8Jl6V24g+Uw5OGPeWNKrKqXPDw2YDjLc53ojwfMcKwlEoETKU9rU0mHUtcg9JntWI/QYzGAXNWEcVHZ+fR+XXg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.3
+ '@babel/core': 7.24.4
'@babel/helper-plugin-utils': 7.24.0
dev: true
- /@babel/plugin-transform-private-methods@7.24.1(@babel/core@7.24.3):
+ /@babel/plugin-transform-private-methods@7.24.1(@babel/core@7.24.4):
resolution: {integrity: sha512-tGvisebwBO5em4PaYNqt4fkw56K2VALsAbAakY0FjTYqJp7gfdrgr7YX76Or8/cpik0W6+tj3rZ0uHU9Oil4tw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.3
- '@babel/helper-create-class-features-plugin': 7.24.1(@babel/core@7.24.3)
+ '@babel/core': 7.24.4
+ '@babel/helper-create-class-features-plugin': 7.24.4(@babel/core@7.24.4)
'@babel/helper-plugin-utils': 7.24.0
dev: true
- /@babel/plugin-transform-private-property-in-object@7.24.1(@babel/core@7.24.3):
+ /@babel/plugin-transform-private-property-in-object@7.24.1(@babel/core@7.24.4):
resolution: {integrity: sha512-pTHxDVa0BpUbvAgX3Gat+7cSciXqUcY9j2VZKTbSB6+VQGpNgNO9ailxTGHSXlqOnX1Hcx1Enme2+yv7VqP9bg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.3
+ '@babel/core': 7.24.4
'@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-create-class-features-plugin': 7.24.1(@babel/core@7.24.3)
+ '@babel/helper-create-class-features-plugin': 7.24.4(@babel/core@7.24.4)
'@babel/helper-plugin-utils': 7.24.0
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.3)
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.4)
dev: true
- /@babel/plugin-transform-property-literals@7.24.1(@babel/core@7.24.3):
+ /@babel/plugin-transform-property-literals@7.24.1(@babel/core@7.24.4):
resolution: {integrity: sha512-LetvD7CrHmEx0G442gOomRr66d7q8HzzGGr4PMHGr+5YIm6++Yke+jxj246rpvsbyhJwCLxcTn6zW1P1BSenqA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.3
+ '@babel/core': 7.24.4
'@babel/helper-plugin-utils': 7.24.0
dev: true
- /@babel/plugin-transform-react-constant-elements@7.24.1(@babel/core@7.24.3):
+ /@babel/plugin-transform-react-constant-elements@7.24.1(@babel/core@7.24.4):
resolution: {integrity: sha512-QXp1U9x0R7tkiGB0FOk8o74jhnap0FlZ5gNkRIWdG3eP+SvMFg118e1zaWewDzgABb106QSKpVsD3Wgd8t6ifA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.3
+ '@babel/core': 7.24.4
'@babel/helper-plugin-utils': 7.24.0
dev: true
- /@babel/plugin-transform-react-display-name@7.24.1(@babel/core@7.24.3):
+ /@babel/plugin-transform-react-display-name@7.24.1(@babel/core@7.24.4):
resolution: {integrity: sha512-mvoQg2f9p2qlpDQRBC7M3c3XTr0k7cp/0+kFKKO/7Gtu0LSw16eKB+Fabe2bDT/UpsyasTBBkAnbdsLrkD5XMw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.3
+ '@babel/core': 7.24.4
'@babel/helper-plugin-utils': 7.24.0
dev: true
- /@babel/plugin-transform-react-jsx-development@7.22.5(@babel/core@7.24.3):
+ /@babel/plugin-transform-react-jsx-development@7.22.5(@babel/core@7.24.4):
resolution: {integrity: sha512-bDhuzwWMuInwCYeDeMzyi7TaBgRQei6DqxhbyniL7/VG4RSS7HtSL2QbY4eESy1KJqlWt8g3xeEBGPuo+XqC8A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.3
- '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.24.3)
+ '@babel/core': 7.24.4
+ '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.24.4)
dev: true
- /@babel/plugin-transform-react-jsx@7.23.4(@babel/core@7.24.3):
+ /@babel/plugin-transform-react-jsx@7.23.4(@babel/core@7.24.4):
resolution: {integrity: sha512-5xOpoPguCZCRbo/JeHlloSkTA8Bld1J/E1/kLfD1nsuiW1m8tduTA1ERCgIZokDflX/IBzKcqR3l7VlRgiIfHA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.3
+ '@babel/core': 7.24.4
'@babel/helper-annotate-as-pure': 7.22.5
'@babel/helper-module-imports': 7.24.3
'@babel/helper-plugin-utils': 7.24.0
- '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.4)
'@babel/types': 7.24.0
dev: true
- /@babel/plugin-transform-react-pure-annotations@7.24.1(@babel/core@7.24.3):
+ /@babel/plugin-transform-react-pure-annotations@7.24.1(@babel/core@7.24.4):
resolution: {integrity: sha512-+pWEAaDJvSm9aFvJNpLiM2+ktl2Sn2U5DdyiWdZBxmLc6+xGt88dvFqsHiAiDS+8WqUwbDfkKz9jRxK3M0k+kA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.3
+ '@babel/core': 7.24.4
'@babel/helper-annotate-as-pure': 7.22.5
'@babel/helper-plugin-utils': 7.24.0
dev: true
- /@babel/plugin-transform-regenerator@7.24.1(@babel/core@7.24.3):
+ /@babel/plugin-transform-regenerator@7.24.1(@babel/core@7.24.4):
resolution: {integrity: sha512-sJwZBCzIBE4t+5Q4IGLaaun5ExVMRY0lYwos/jNecjMrVCygCdph3IKv0tkP5Fc87e/1+bebAmEAGBfnRD+cnw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.3
+ '@babel/core': 7.24.4
'@babel/helper-plugin-utils': 7.24.0
regenerator-transform: 0.15.2
dev: true
- /@babel/plugin-transform-reserved-words@7.24.1(@babel/core@7.24.3):
+ /@babel/plugin-transform-reserved-words@7.24.1(@babel/core@7.24.4):
resolution: {integrity: sha512-JAclqStUfIwKN15HrsQADFgeZt+wexNQ0uLhuqvqAUFoqPMjEcFCYZBhq0LUdz6dZK/mD+rErhW71fbx8RYElg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.3
+ '@babel/core': 7.24.4
'@babel/helper-plugin-utils': 7.24.0
dev: true
- /@babel/plugin-transform-runtime@7.24.3(@babel/core@7.24.3):
+ /@babel/plugin-transform-runtime@7.24.3(@babel/core@7.24.4):
resolution: {integrity: sha512-J0BuRPNlNqlMTRJ72eVptpt9VcInbxO6iP3jaxr+1NPhC0UkKL+6oeX6VXMEYdADnuqmMmsBspt4d5w8Y/TCbQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.3
+ '@babel/core': 7.24.4
'@babel/helper-module-imports': 7.24.3
'@babel/helper-plugin-utils': 7.24.0
- babel-plugin-polyfill-corejs2: 0.4.10(@babel/core@7.24.3)
- babel-plugin-polyfill-corejs3: 0.10.4(@babel/core@7.24.3)
- babel-plugin-polyfill-regenerator: 0.6.1(@babel/core@7.24.3)
+ babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.24.4)
+ babel-plugin-polyfill-corejs3: 0.10.4(@babel/core@7.24.4)
+ babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.24.4)
semver: 6.3.1
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-transform-shorthand-properties@7.24.1(@babel/core@7.24.3):
+ /@babel/plugin-transform-shorthand-properties@7.24.1(@babel/core@7.24.4):
resolution: {integrity: sha512-LyjVB1nsJ6gTTUKRjRWx9C1s9hE7dLfP/knKdrfeH9UPtAGjYGgxIbFfx7xyLIEWs7Xe1Gnf8EWiUqfjLhInZA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.3
+ '@babel/core': 7.24.4
'@babel/helper-plugin-utils': 7.24.0
dev: true
- /@babel/plugin-transform-spread@7.24.1(@babel/core@7.24.3):
+ /@babel/plugin-transform-spread@7.24.1(@babel/core@7.24.4):
resolution: {integrity: sha512-KjmcIM+fxgY+KxPVbjelJC6hrH1CgtPmTvdXAfn3/a9CnWGSTY7nH4zm5+cjmWJybdcPSsD0++QssDsjcpe47g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.3
+ '@babel/core': 7.24.4
'@babel/helper-plugin-utils': 7.24.0
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
dev: true
- /@babel/plugin-transform-sticky-regex@7.24.1(@babel/core@7.24.3):
+ /@babel/plugin-transform-sticky-regex@7.24.1(@babel/core@7.24.4):
resolution: {integrity: sha512-9v0f1bRXgPVcPrngOQvLXeGNNVLc8UjMVfebo9ka0WF3/7+aVUHmaJVT3sa0XCzEFioPfPHZiOcYG9qOsH63cw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.3
+ '@babel/core': 7.24.4
'@babel/helper-plugin-utils': 7.24.0
dev: true
- /@babel/plugin-transform-template-literals@7.24.1(@babel/core@7.24.3):
+ /@babel/plugin-transform-template-literals@7.24.1(@babel/core@7.24.4):
resolution: {integrity: sha512-WRkhROsNzriarqECASCNu/nojeXCDTE/F2HmRgOzi7NGvyfYGq1NEjKBK3ckLfRgGc6/lPAqP0vDOSw3YtG34g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.3
+ '@babel/core': 7.24.4
'@babel/helper-plugin-utils': 7.24.0
dev: true
- /@babel/plugin-transform-typeof-symbol@7.24.1(@babel/core@7.24.3):
+ /@babel/plugin-transform-typeof-symbol@7.24.1(@babel/core@7.24.4):
resolution: {integrity: sha512-CBfU4l/A+KruSUoW+vTQthwcAdwuqbpRNB8HQKlZABwHRhsdHZ9fezp4Sn18PeAlYxTNiLMlx4xUBV3AWfg1BA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.3
+ '@babel/core': 7.24.4
'@babel/helper-plugin-utils': 7.24.0
dev: true
- /@babel/plugin-transform-typescript@7.24.1(@babel/core@7.24.3):
- resolution: {integrity: sha512-liYSESjX2fZ7JyBFkYG78nfvHlMKE6IpNdTVnxmlYUR+j5ZLsitFbaAE+eJSK2zPPkNWNw4mXL51rQ8WrvdK0w==}
+ /@babel/plugin-transform-typescript@7.24.4(@babel/core@7.24.4):
+ resolution: {integrity: sha512-79t3CQ8+oBGk/80SQ8MN3Bs3obf83zJ0YZjDmDaEZN8MqhMI760apl5z6a20kFeMXBwJX99VpKT8CKxEBp5H1g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.3
+ '@babel/core': 7.24.4
'@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-create-class-features-plugin': 7.24.1(@babel/core@7.24.3)
+ '@babel/helper-create-class-features-plugin': 7.24.4(@babel/core@7.24.4)
'@babel/helper-plugin-utils': 7.24.0
- '@babel/plugin-syntax-typescript': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-syntax-typescript': 7.24.1(@babel/core@7.24.4)
dev: true
- /@babel/plugin-transform-unicode-escapes@7.24.1(@babel/core@7.24.3):
+ /@babel/plugin-transform-unicode-escapes@7.24.1(@babel/core@7.24.4):
resolution: {integrity: sha512-RlkVIcWT4TLI96zM660S877E7beKlQw7Ig+wqkKBiWfj0zH5Q4h50q6er4wzZKRNSYpfo6ILJ+hrJAGSX2qcNw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.3
+ '@babel/core': 7.24.4
'@babel/helper-plugin-utils': 7.24.0
dev: true
- /@babel/plugin-transform-unicode-property-regex@7.24.1(@babel/core@7.24.3):
+ /@babel/plugin-transform-unicode-property-regex@7.24.1(@babel/core@7.24.4):
resolution: {integrity: sha512-Ss4VvlfYV5huWApFsF8/Sq0oXnGO+jB+rijFEFugTd3cwSObUSnUi88djgR5528Csl0uKlrI331kRqe56Ov2Ng==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.3
- '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.3)
+ '@babel/core': 7.24.4
+ '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.4)
'@babel/helper-plugin-utils': 7.24.0
dev: true
- /@babel/plugin-transform-unicode-regex@7.24.1(@babel/core@7.24.3):
+ /@babel/plugin-transform-unicode-regex@7.24.1(@babel/core@7.24.4):
resolution: {integrity: sha512-2A/94wgZgxfTsiLaQ2E36XAOdcZmGAaEEgVmxQWwZXWkGhvoHbaqXcKnU8zny4ycpu3vNqg0L/PcCiYtHtA13g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.3
- '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.3)
+ '@babel/core': 7.24.4
+ '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.4)
'@babel/helper-plugin-utils': 7.24.0
dev: true
- /@babel/plugin-transform-unicode-sets-regex@7.24.1(@babel/core@7.24.3):
+ /@babel/plugin-transform-unicode-sets-regex@7.24.1(@babel/core@7.24.4):
resolution: {integrity: sha512-fqj4WuzzS+ukpgerpAoOnMfQXwUHFxXUZUE84oL2Kao2N8uSlvcpnAidKASgsNgzZHBsHWvcm8s9FPWUhAb8fA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.24.3
- '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.3)
+ '@babel/core': 7.24.4
+ '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.4)
'@babel/helper-plugin-utils': 7.24.0
dev: true
- /@babel/preset-env@7.24.3(@babel/core@7.24.3):
- resolution: {integrity: sha512-fSk430k5c2ff8536JcPvPWK4tZDwehWLGlBp0wrsBUjZVdeQV6lePbwKWZaZfK2vnh/1kQX1PzAJWsnBmVgGJA==}
+ /@babel/preset-env@7.24.4(@babel/core@7.24.4):
+ resolution: {integrity: sha512-7Kl6cSmYkak0FK/FXjSEnLJ1N9T/WA2RkMhu17gZ/dsxKJUuTYNIylahPTzqpLyJN4WhDif8X0XK1R8Wsguo/A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/compat-data': 7.24.1
- '@babel/core': 7.24.3
+ '@babel/compat-data': 7.24.4
+ '@babel/core': 7.24.4
'@babel/helper-compilation-targets': 7.23.6
'@babel/helper-plugin-utils': 7.24.0
'@babel/helper-validator-option': 7.23.5
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.24.1(@babel/core@7.24.3)
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.24.1(@babel/core@7.24.3)
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.24.1(@babel/core@7.24.3)
- '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.3)
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.3)
- '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.24.3)
- '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.24.3)
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.3)
- '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.3)
- '@babel/plugin-syntax-import-assertions': 7.24.1(@babel/core@7.24.3)
- '@babel/plugin-syntax-import-attributes': 7.24.1(@babel/core@7.24.3)
- '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.24.3)
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.3)
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.3)
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.3)
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.3)
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.3)
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.3)
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.3)
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.3)
- '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.24.3)
- '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.24.3)
- '@babel/plugin-transform-arrow-functions': 7.24.1(@babel/core@7.24.3)
- '@babel/plugin-transform-async-generator-functions': 7.24.3(@babel/core@7.24.3)
- '@babel/plugin-transform-async-to-generator': 7.24.1(@babel/core@7.24.3)
- '@babel/plugin-transform-block-scoped-functions': 7.24.1(@babel/core@7.24.3)
- '@babel/plugin-transform-block-scoping': 7.24.1(@babel/core@7.24.3)
- '@babel/plugin-transform-class-properties': 7.24.1(@babel/core@7.24.3)
- '@babel/plugin-transform-class-static-block': 7.24.1(@babel/core@7.24.3)
- '@babel/plugin-transform-classes': 7.24.1(@babel/core@7.24.3)
- '@babel/plugin-transform-computed-properties': 7.24.1(@babel/core@7.24.3)
- '@babel/plugin-transform-destructuring': 7.24.1(@babel/core@7.24.3)
- '@babel/plugin-transform-dotall-regex': 7.24.1(@babel/core@7.24.3)
- '@babel/plugin-transform-duplicate-keys': 7.24.1(@babel/core@7.24.3)
- '@babel/plugin-transform-dynamic-import': 7.24.1(@babel/core@7.24.3)
- '@babel/plugin-transform-exponentiation-operator': 7.24.1(@babel/core@7.24.3)
- '@babel/plugin-transform-export-namespace-from': 7.24.1(@babel/core@7.24.3)
- '@babel/plugin-transform-for-of': 7.24.1(@babel/core@7.24.3)
- '@babel/plugin-transform-function-name': 7.24.1(@babel/core@7.24.3)
- '@babel/plugin-transform-json-strings': 7.24.1(@babel/core@7.24.3)
- '@babel/plugin-transform-literals': 7.24.1(@babel/core@7.24.3)
- '@babel/plugin-transform-logical-assignment-operators': 7.24.1(@babel/core@7.24.3)
- '@babel/plugin-transform-member-expression-literals': 7.24.1(@babel/core@7.24.3)
- '@babel/plugin-transform-modules-amd': 7.24.1(@babel/core@7.24.3)
- '@babel/plugin-transform-modules-commonjs': 7.24.1(@babel/core@7.24.3)
- '@babel/plugin-transform-modules-systemjs': 7.24.1(@babel/core@7.24.3)
- '@babel/plugin-transform-modules-umd': 7.24.1(@babel/core@7.24.3)
- '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.24.3)
- '@babel/plugin-transform-new-target': 7.24.1(@babel/core@7.24.3)
- '@babel/plugin-transform-nullish-coalescing-operator': 7.24.1(@babel/core@7.24.3)
- '@babel/plugin-transform-numeric-separator': 7.24.1(@babel/core@7.24.3)
- '@babel/plugin-transform-object-rest-spread': 7.24.1(@babel/core@7.24.3)
- '@babel/plugin-transform-object-super': 7.24.1(@babel/core@7.24.3)
- '@babel/plugin-transform-optional-catch-binding': 7.24.1(@babel/core@7.24.3)
- '@babel/plugin-transform-optional-chaining': 7.24.1(@babel/core@7.24.3)
- '@babel/plugin-transform-parameters': 7.24.1(@babel/core@7.24.3)
- '@babel/plugin-transform-private-methods': 7.24.1(@babel/core@7.24.3)
- '@babel/plugin-transform-private-property-in-object': 7.24.1(@babel/core@7.24.3)
- '@babel/plugin-transform-property-literals': 7.24.1(@babel/core@7.24.3)
- '@babel/plugin-transform-regenerator': 7.24.1(@babel/core@7.24.3)
- '@babel/plugin-transform-reserved-words': 7.24.1(@babel/core@7.24.3)
- '@babel/plugin-transform-shorthand-properties': 7.24.1(@babel/core@7.24.3)
- '@babel/plugin-transform-spread': 7.24.1(@babel/core@7.24.3)
- '@babel/plugin-transform-sticky-regex': 7.24.1(@babel/core@7.24.3)
- '@babel/plugin-transform-template-literals': 7.24.1(@babel/core@7.24.3)
- '@babel/plugin-transform-typeof-symbol': 7.24.1(@babel/core@7.24.3)
- '@babel/plugin-transform-unicode-escapes': 7.24.1(@babel/core@7.24.3)
- '@babel/plugin-transform-unicode-property-regex': 7.24.1(@babel/core@7.24.3)
- '@babel/plugin-transform-unicode-regex': 7.24.1(@babel/core@7.24.3)
- '@babel/plugin-transform-unicode-sets-regex': 7.24.1(@babel/core@7.24.3)
- '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.24.3)
- babel-plugin-polyfill-corejs2: 0.4.10(@babel/core@7.24.3)
- babel-plugin-polyfill-corejs3: 0.10.4(@babel/core@7.24.3)
- babel-plugin-polyfill-regenerator: 0.6.1(@babel/core@7.24.3)
- core-js-compat: 3.36.1
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.24.4(@babel/core@7.24.4)
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.24.1(@babel/core@7.24.4)
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.24.1(@babel/core@7.24.4)
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.24.1(@babel/core@7.24.4)
+ '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.4)
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.4)
+ '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.24.4)
+ '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.24.4)
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.4)
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.4)
+ '@babel/plugin-syntax-import-assertions': 7.24.1(@babel/core@7.24.4)
+ '@babel/plugin-syntax-import-attributes': 7.24.1(@babel/core@7.24.4)
+ '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.24.4)
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.4)
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.4)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.4)
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.4)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.4)
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.4)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.4)
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.4)
+ '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.24.4)
+ '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.24.4)
+ '@babel/plugin-transform-arrow-functions': 7.24.1(@babel/core@7.24.4)
+ '@babel/plugin-transform-async-generator-functions': 7.24.3(@babel/core@7.24.4)
+ '@babel/plugin-transform-async-to-generator': 7.24.1(@babel/core@7.24.4)
+ '@babel/plugin-transform-block-scoped-functions': 7.24.1(@babel/core@7.24.4)
+ '@babel/plugin-transform-block-scoping': 7.24.4(@babel/core@7.24.4)
+ '@babel/plugin-transform-class-properties': 7.24.1(@babel/core@7.24.4)
+ '@babel/plugin-transform-class-static-block': 7.24.4(@babel/core@7.24.4)
+ '@babel/plugin-transform-classes': 7.24.1(@babel/core@7.24.4)
+ '@babel/plugin-transform-computed-properties': 7.24.1(@babel/core@7.24.4)
+ '@babel/plugin-transform-destructuring': 7.24.1(@babel/core@7.24.4)
+ '@babel/plugin-transform-dotall-regex': 7.24.1(@babel/core@7.24.4)
+ '@babel/plugin-transform-duplicate-keys': 7.24.1(@babel/core@7.24.4)
+ '@babel/plugin-transform-dynamic-import': 7.24.1(@babel/core@7.24.4)
+ '@babel/plugin-transform-exponentiation-operator': 7.24.1(@babel/core@7.24.4)
+ '@babel/plugin-transform-export-namespace-from': 7.24.1(@babel/core@7.24.4)
+ '@babel/plugin-transform-for-of': 7.24.1(@babel/core@7.24.4)
+ '@babel/plugin-transform-function-name': 7.24.1(@babel/core@7.24.4)
+ '@babel/plugin-transform-json-strings': 7.24.1(@babel/core@7.24.4)
+ '@babel/plugin-transform-literals': 7.24.1(@babel/core@7.24.4)
+ '@babel/plugin-transform-logical-assignment-operators': 7.24.1(@babel/core@7.24.4)
+ '@babel/plugin-transform-member-expression-literals': 7.24.1(@babel/core@7.24.4)
+ '@babel/plugin-transform-modules-amd': 7.24.1(@babel/core@7.24.4)
+ '@babel/plugin-transform-modules-commonjs': 7.24.1(@babel/core@7.24.4)
+ '@babel/plugin-transform-modules-systemjs': 7.24.1(@babel/core@7.24.4)
+ '@babel/plugin-transform-modules-umd': 7.24.1(@babel/core@7.24.4)
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.24.4)
+ '@babel/plugin-transform-new-target': 7.24.1(@babel/core@7.24.4)
+ '@babel/plugin-transform-nullish-coalescing-operator': 7.24.1(@babel/core@7.24.4)
+ '@babel/plugin-transform-numeric-separator': 7.24.1(@babel/core@7.24.4)
+ '@babel/plugin-transform-object-rest-spread': 7.24.1(@babel/core@7.24.4)
+ '@babel/plugin-transform-object-super': 7.24.1(@babel/core@7.24.4)
+ '@babel/plugin-transform-optional-catch-binding': 7.24.1(@babel/core@7.24.4)
+ '@babel/plugin-transform-optional-chaining': 7.24.1(@babel/core@7.24.4)
+ '@babel/plugin-transform-parameters': 7.24.1(@babel/core@7.24.4)
+ '@babel/plugin-transform-private-methods': 7.24.1(@babel/core@7.24.4)
+ '@babel/plugin-transform-private-property-in-object': 7.24.1(@babel/core@7.24.4)
+ '@babel/plugin-transform-property-literals': 7.24.1(@babel/core@7.24.4)
+ '@babel/plugin-transform-regenerator': 7.24.1(@babel/core@7.24.4)
+ '@babel/plugin-transform-reserved-words': 7.24.1(@babel/core@7.24.4)
+ '@babel/plugin-transform-shorthand-properties': 7.24.1(@babel/core@7.24.4)
+ '@babel/plugin-transform-spread': 7.24.1(@babel/core@7.24.4)
+ '@babel/plugin-transform-sticky-regex': 7.24.1(@babel/core@7.24.4)
+ '@babel/plugin-transform-template-literals': 7.24.1(@babel/core@7.24.4)
+ '@babel/plugin-transform-typeof-symbol': 7.24.1(@babel/core@7.24.4)
+ '@babel/plugin-transform-unicode-escapes': 7.24.1(@babel/core@7.24.4)
+ '@babel/plugin-transform-unicode-property-regex': 7.24.1(@babel/core@7.24.4)
+ '@babel/plugin-transform-unicode-regex': 7.24.1(@babel/core@7.24.4)
+ '@babel/plugin-transform-unicode-sets-regex': 7.24.1(@babel/core@7.24.4)
+ '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.24.4)
+ babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.24.4)
+ babel-plugin-polyfill-corejs3: 0.10.4(@babel/core@7.24.4)
+ babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.24.4)
+ core-js-compat: 3.37.0
semver: 6.3.1
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/preset-flow@7.24.1(@babel/core@7.24.3):
+ /@babel/preset-flow@7.24.1(@babel/core@7.24.4):
resolution: {integrity: sha512-sWCV2G9pcqZf+JHyv/RyqEIpFypxdCSxWIxQjpdaQxenNog7cN1pr76hg8u0Fz8Qgg0H4ETkGcJnXL8d4j0PPA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.3
+ '@babel/core': 7.24.4
'@babel/helper-plugin-utils': 7.24.0
'@babel/helper-validator-option': 7.23.5
- '@babel/plugin-transform-flow-strip-types': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-transform-flow-strip-types': 7.24.1(@babel/core@7.24.4)
dev: true
- /@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.24.3):
+ /@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.24.4):
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.24.3
+ '@babel/core': 7.24.4
'@babel/helper-plugin-utils': 7.24.0
'@babel/types': 7.24.0
esutils: 2.0.3
dev: true
- /@babel/preset-react@7.24.1(@babel/core@7.24.3):
+ /@babel/preset-react@7.24.1(@babel/core@7.24.4):
resolution: {integrity: sha512-eFa8up2/8cZXLIpkafhaADTXSnl7IsUFCYenRWrARBz0/qZwcT0RBXpys0LJU4+WfPoF2ZG6ew6s2V6izMCwRA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.3
+ '@babel/core': 7.24.4
'@babel/helper-plugin-utils': 7.24.0
'@babel/helper-validator-option': 7.23.5
- '@babel/plugin-transform-react-display-name': 7.24.1(@babel/core@7.24.3)
- '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.24.3)
- '@babel/plugin-transform-react-jsx-development': 7.22.5(@babel/core@7.24.3)
- '@babel/plugin-transform-react-pure-annotations': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-transform-react-display-name': 7.24.1(@babel/core@7.24.4)
+ '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.24.4)
+ '@babel/plugin-transform-react-jsx-development': 7.22.5(@babel/core@7.24.4)
+ '@babel/plugin-transform-react-pure-annotations': 7.24.1(@babel/core@7.24.4)
dev: true
- /@babel/preset-typescript@7.24.1(@babel/core@7.24.3):
+ /@babel/preset-typescript@7.24.1(@babel/core@7.24.4):
resolution: {integrity: sha512-1DBaMmRDpuYQBPWD8Pf/WEwCrtgRHxsZnP4mIy9G/X+hFfbI47Q2G4t1Paakld84+qsk2fSsUPMKg71jkoOOaQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.3
+ '@babel/core': 7.24.4
'@babel/helper-plugin-utils': 7.24.0
'@babel/helper-validator-option': 7.23.5
- '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.3)
- '@babel/plugin-transform-modules-commonjs': 7.24.1(@babel/core@7.24.3)
- '@babel/plugin-transform-typescript': 7.24.1(@babel/core@7.24.3)
+ '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.4)
+ '@babel/plugin-transform-modules-commonjs': 7.24.1(@babel/core@7.24.4)
+ '@babel/plugin-transform-typescript': 7.24.4(@babel/core@7.24.4)
dev: true
- /@babel/register@7.23.7(@babel/core@7.24.3):
+ /@babel/register@7.23.7(@babel/core@7.24.4):
resolution: {integrity: sha512-EjJeB6+kvpk+Y5DAkEAmbOBEFkh9OASx0huoEkqYTFxAZHzOAX2Oh5uwAUuL2rUddqfM0SA+KPXV2TbzoZ2kvQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.3
+ '@babel/core': 7.24.4
clone-deep: 4.0.1
find-cache-dir: 2.1.0
make-dir: 2.1.0
@@ -1671,8 +1808,16 @@ packages:
resolution: {integrity: sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==}
dev: true
- /@babel/runtime@7.24.1:
- resolution: {integrity: sha512-+BIznRzyqBf+2wCTxcKE3wDjfGeCoVE61KSHGpkzqrLi8qxqFwBeUFyId2cxkTmm55fzDGnm0+yCxaxygrLUnQ==}
+ /@babel/runtime-corejs3@7.24.4:
+ resolution: {integrity: sha512-VOQOexSilscN24VEY810G/PqtpFvx/z6UqDIjIWbDe2368HhDLkYN5TYwaEz/+eRCUkhJ2WaNLLmQAlxzfWj4w==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ core-js-pure: 3.37.0
+ regenerator-runtime: 0.14.1
+ dev: true
+
+ /@babel/runtime@7.24.4:
+ resolution: {integrity: sha512-dkxf7+hn8mFBwKjs9bvBlArzLVxVbS8usaPUDd5p2a9JCL9tB8OaOVN1isD4+Xyk4ns89/xeOmbQvgdK7IIVdA==}
engines: {node: '>=6.9.0'}
dependencies:
regenerator-runtime: 0.14.1
@@ -1682,7 +1827,7 @@ packages:
engines: {node: '>=6.9.0'}
dependencies:
'@babel/code-frame': 7.24.2
- '@babel/parser': 7.24.1
+ '@babel/parser': 7.24.4
'@babel/types': 7.24.0
dev: true
@@ -1691,12 +1836,12 @@ packages:
engines: {node: '>=6.9.0'}
dependencies:
'@babel/code-frame': 7.24.2
- '@babel/generator': 7.24.1
+ '@babel/generator': 7.24.4
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-function-name': 7.23.0
'@babel/helper-hoist-variables': 7.22.5
'@babel/helper-split-export-declaration': 7.22.6
- '@babel/parser': 7.24.1
+ '@babel/parser': 7.24.4
'@babel/types': 7.24.0
debug: 4.3.4
globals: 11.12.0
@@ -1709,12 +1854,12 @@ packages:
engines: {node: '>=6.9.0'}
dependencies:
'@babel/code-frame': 7.24.2
- '@babel/generator': 7.24.1
+ '@babel/generator': 7.24.4
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-function-name': 7.23.0
'@babel/helper-hoist-variables': 7.22.5
'@babel/helper-split-export-declaration': 7.22.6
- '@babel/parser': 7.24.1
+ '@babel/parser': 7.24.4
'@babel/types': 7.24.0
debug: 4.3.4
globals: 11.12.0
@@ -1746,14 +1891,14 @@ packages:
resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==}
dev: true
- /@chromatic-com/storybook@1.2.25(react@18.2.0):
- resolution: {integrity: sha512-3ga2sWa39PeFZxV6gqJoFQh1c60v2rCh92TPE8KrBg+WwEdcrKijDIq+BILGCSg0oVUVplx8siQOrknBL5af6g==}
+ /@chromatic-com/storybook@1.3.3(react@18.3.0):
+ resolution: {integrity: sha512-1y9r691T5vVGDZ0HY3YrCXUnvtrT2YrhDuvDZSvYSNUVpM/Imz6i1dnNMKb3eoI1qRsH55mI4zCt+Iq94NLedQ==}
engines: {node: '>=16.0.0', yarn: '>=1.22.18'}
dependencies:
chromatic: 11.3.0
filesize: 10.1.1
jsonfile: 6.1.0
- react-confetti: 6.1.0(react@18.2.0)
+ react-confetti: 6.1.0(react@18.3.0)
strip-ansi: 7.1.0
transitivePeerDependencies:
- '@chromatic-com/cypress'
@@ -1768,6 +1913,13 @@ packages:
dev: true
optional: true
+ /@cspotcode/source-map-support@0.8.1:
+ resolution: {integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==}
+ engines: {node: '>=12'}
+ dependencies:
+ '@jridgewell/trace-mapping': 0.3.9
+ dev: true
+
/@csstools/normalize.css@12.1.1:
resolution: {integrity: sha512-YAYeJ+Xqh7fUou1d1j9XHl44BmsuThiTr4iNrgCQ3J27IbhXsxXDGZ1cXv8Qvs99d4rBbLiSKy3+WZiet32PcQ==}
dev: true
@@ -1916,6 +2068,15 @@ packages:
postcss: 8.4.38
dev: true
+ /@csstools/selector-resolve-nested@1.1.0(postcss-selector-parser@6.0.16):
+ resolution: {integrity: sha512-uWvSaeRcHyeNenKg8tp17EVDRkpflmdyvbE0DHo6D/GdBb6PDnCYYU6gRpXhtICMGMcahQmj2zGxwFM/WC8hCg==}
+ engines: {node: ^14 || ^16 || >=18}
+ peerDependencies:
+ postcss-selector-parser: ^6.0.13
+ dependencies:
+ postcss-selector-parser: 6.0.16
+ dev: true
+
/@csstools/selector-specificity@2.2.0(postcss-selector-parser@6.0.16):
resolution: {integrity: sha512-+OJ9konv95ClSTOJCmMZqpd5+YGsB2S+x6w3E1oaM8UuR5j8nTNHYSz8c9BEPGDOCMQYIEEGlVPj/VY64iTbGw==}
engines: {node: ^14 || ^16 || >=18}
@@ -1925,6 +2086,15 @@ packages:
postcss-selector-parser: 6.0.16
dev: true
+ /@csstools/selector-specificity@3.0.3(postcss-selector-parser@6.0.16):
+ resolution: {integrity: sha512-KEPNw4+WW5AVEIyzC80rTbWEUatTW2lXpN8+8ILC8PiPeWPjwUzrPZDIOZ2wwqDmeqOYTdSGyL3+vE5GC3FB3Q==}
+ engines: {node: ^14 || ^16 || >=18}
+ peerDependencies:
+ postcss-selector-parser: ^6.0.13
+ dependencies:
+ postcss-selector-parser: 6.0.16
+ dev: true
+
/@discoveryjs/json-ext@0.5.7:
resolution: {integrity: sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==}
engines: {node: '>=10.0.0'}
@@ -1934,7 +2104,7 @@ packages:
resolution: {integrity: sha512-m4HEDZleaaCH+XgDDsPF15Ht6wTLsgDTeR3WYj9Q/k76JtWhrJjcP4+/XlG8LGT/Rol9qUfOIztXeA84ATpqPQ==}
dependencies:
'@babel/helper-module-imports': 7.24.3
- '@babel/runtime': 7.24.1
+ '@babel/runtime': 7.24.4
'@emotion/hash': 0.9.1
'@emotion/memoize': 0.8.1
'@emotion/serialize': 1.1.4
@@ -1970,7 +2140,7 @@ packages:
resolution: {integrity: sha512-W2P2c/VRW1/1tLox0mVUalvnWXxavmv/Oum2aPsRcoDJuob75FC3Y8FbpfLwUegRcxINtGUMPq0tFCvYNTBXNA==}
dev: false
- /@emotion/react@11.11.4(@types/react@18.2.73)(react@18.2.0):
+ /@emotion/react@11.11.4(@types/react@18.3.0)(react@18.3.0):
resolution: {integrity: sha512-t8AjMlF0gHpvvxk5mAtCqR4vmxiGHCeJBaQO6gncUSdklELOgtwjerNY2yuJNfwnc6vi16U/+uMF+afIawJ9iw==}
peerDependencies:
'@types/react': '*'
@@ -1979,16 +2149,16 @@ packages:
'@types/react':
optional: true
dependencies:
- '@babel/runtime': 7.24.1
+ '@babel/runtime': 7.24.4
'@emotion/babel-plugin': 11.11.0
'@emotion/cache': 11.11.0
'@emotion/serialize': 1.1.4
- '@emotion/use-insertion-effect-with-fallbacks': 1.0.1(react@18.2.0)
+ '@emotion/use-insertion-effect-with-fallbacks': 1.0.1(react@18.3.0)
'@emotion/utils': 1.2.1
'@emotion/weak-memoize': 0.3.1
- '@types/react': 18.2.73
+ '@types/react': 18.3.0
hoist-non-react-statics: 3.3.2
- react: 18.2.0
+ react: 18.3.0
dev: false
/@emotion/serialize@1.1.4:
@@ -2009,12 +2179,12 @@ packages:
resolution: {integrity: sha512-KOEGMu6dmJZtpadb476IsZBclKvILjopjUii3V+7MnXIQCYh8W3NgNcgwo21n9LXZX6EDIKvqfjYxXebDwxKmQ==}
dev: false
- /@emotion/use-insertion-effect-with-fallbacks@1.0.1(react@18.2.0):
+ /@emotion/use-insertion-effect-with-fallbacks@1.0.1(react@18.3.0):
resolution: {integrity: sha512-jT/qyKZ9rzLErtrjGgdkMBn2OP8wl0G3sQlBb3YPryvKHsjvINUhVaPFfP+fpBcOkmrVOVEEHQFJ7nbj2TH2gw==}
peerDependencies:
react: '>=16.8.0'
dependencies:
- react: 18.2.0
+ react: 18.3.0
/@emotion/utils@1.2.1:
resolution: {integrity: sha512-Y2tGf3I+XVnajdItskUCn6LX+VUDmP6lTL4fcqsXAv43dnlbZiuW4MWQW38rW/BVWSE7Q/7+XQocmpnRYILUmg==}
@@ -2272,24 +2442,24 @@ packages:
resolution: {integrity: sha512-cEee/Z+I12mZcFJshKcCqC8tuX5hG3s+d+9nZ3LabqKF1vKdF41B92pJVCBggjAGORAeOzyyDDKrZwIkLffeOQ==}
dev: true
- /@headlessui/react@1.7.18(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-4i5DOrzwN4qSgNsL4Si61VMkUcWbcSKueUV7sFhpHzQcSShdlHENE5+QBntMSRvHt8NyoFO2AGG8si9lq+w4zQ==}
+ /@headlessui/react@1.7.19(react-dom@18.3.0)(react@18.3.0):
+ resolution: {integrity: sha512-Ll+8q3OlMJfJbAKM/+/Y2q6PPYbryqNTXDbryx7SXLIDamkF6iQFbriYHga0dY44PvDhvvBWCx1Xj4U5+G4hOw==}
engines: {node: '>=10'}
peerDependencies:
react: ^16 || ^17 || ^18
react-dom: ^16 || ^17 || ^18
dependencies:
- '@tanstack/react-virtual': 3.2.0(react-dom@18.2.0)(react@18.2.0)
+ '@tanstack/react-virtual': 3.4.0(react-dom@18.3.0)(react@18.3.0)
client-only: 0.0.1
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
+ react: 18.3.0
+ react-dom: 18.3.0(react@18.3.0)
dev: false
/@humanwhocodes/config-array@0.11.14:
resolution: {integrity: sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==}
engines: {node: '>=10.10.0'}
dependencies:
- '@humanwhocodes/object-schema': 2.0.2
+ '@humanwhocodes/object-schema': 2.0.3
debug: 4.3.4
minimatch: 3.1.2
transitivePeerDependencies:
@@ -2301,8 +2471,8 @@ packages:
engines: {node: '>=12.22'}
dev: true
- /@humanwhocodes/object-schema@2.0.2:
- resolution: {integrity: sha512-6EwiSjwWYP7pTckG6I5eyFANjPhmPjUX9JRLUSfNPC7FX7zK9gyZAfUEaECL6ALTpGX5AjnBq3C9XmVWPitNpw==}
+ /@humanwhocodes/object-schema@2.0.3:
+ resolution: {integrity: sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==}
dev: true
/@isaacs/cliui@8.0.2:
@@ -2337,7 +2507,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.93
+ '@types/node': 20.12.7
chalk: 4.1.2
jest-message-util: 27.5.1
jest-util: 27.5.1
@@ -2349,7 +2519,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.93
+ '@types/node': 20.12.7
chalk: 4.1.2
jest-message-util: 28.1.3
jest-util: 28.1.3
@@ -2370,7 +2540,7 @@ packages:
'@jest/test-result': 27.5.1
'@jest/transform': 27.5.1
'@jest/types': 27.5.1
- '@types/node': 16.18.93
+ '@types/node': 20.12.7
ansi-escapes: 4.3.2
chalk: 4.1.2
emittery: 0.8.1
@@ -2407,7 +2577,7 @@ packages:
dependencies:
'@jest/fake-timers': 27.5.1
'@jest/types': 27.5.1
- '@types/node': 16.18.93
+ '@types/node': 20.12.7
jest-mock: 27.5.1
dev: true
@@ -2424,7 +2594,7 @@ packages:
dependencies:
'@jest/types': 27.5.1
'@sinonjs/fake-timers': 8.1.0
- '@types/node': 16.18.93
+ '@types/node': 20.12.7
jest-message-util: 27.5.1
jest-mock: 27.5.1
jest-util: 27.5.1
@@ -2453,7 +2623,7 @@ packages:
'@jest/test-result': 27.5.1
'@jest/transform': 27.5.1
'@jest/types': 27.5.1
- '@types/node': 16.18.93
+ '@types/node': 20.12.7
chalk: 4.1.2
collect-v8-coverage: 1.0.2
exit: 0.1.2
@@ -2536,7 +2706,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.24.3
+ '@babel/core': 7.24.4
'@jest/types': 27.5.1
babel-plugin-istanbul: 6.1.1
chalk: 4.1.2
@@ -2561,7 +2731,7 @@ packages:
dependencies:
'@types/istanbul-lib-coverage': 2.0.6
'@types/istanbul-reports': 3.0.4
- '@types/node': 16.18.93
+ '@types/node': 20.12.7
'@types/yargs': 16.0.9
chalk: 4.1.2
dev: true
@@ -2573,7 +2743,7 @@ packages:
'@jest/schemas': 28.1.3
'@types/istanbul-lib-coverage': 2.0.6
'@types/istanbul-reports': 3.0.4
- '@types/node': 16.18.93
+ '@types/node': 20.12.7
'@types/yargs': 17.0.32
chalk: 4.1.2
dev: true
@@ -2585,7 +2755,7 @@ packages:
'@jest/schemas': 29.6.3
'@types/istanbul-lib-coverage': 2.0.6
'@types/istanbul-reports': 3.0.4
- '@types/node': 16.18.93
+ '@types/node': 20.12.7
'@types/yargs': 17.0.32
chalk: 4.1.2
dev: true
@@ -2622,19 +2792,39 @@ packages:
'@jridgewell/resolve-uri': 3.1.2
'@jridgewell/sourcemap-codec': 1.4.15
+ /@jridgewell/trace-mapping@0.3.9:
+ resolution: {integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==}
+ dependencies:
+ '@jridgewell/resolve-uri': 3.1.2
+ '@jridgewell/sourcemap-codec': 1.4.15
+ dev: true
+
/@leichtgewicht/ip-codec@2.0.5:
resolution: {integrity: sha512-Vo+PSpZG2/fmgmiNzYK9qWRh8h/CHrwD0mo1h1DzL4yzHNSfWYujGTYsWGreD000gcgmZ7K4Ys6Tx9TxtsKdDw==}
dev: true
- /@mdx-js/react@3.0.1(@types/react@18.2.73)(react@18.2.0):
+ /@mdx-js/react@3.0.1(@types/react@18.3.0)(react@18.3.0):
resolution: {integrity: sha512-9ZrPIU4MGf6et1m1ov3zKf+q9+deetI51zprKB1D/z3NOb+rUxxtEl3mCjW5wTGh6VhRdwPueh1oRzi6ezkA8A==}
peerDependencies:
'@types/react': '>=16'
react: '>=16'
dependencies:
- '@types/mdx': 2.0.12
- '@types/react': 18.2.73
- react: 18.2.0
+ '@types/mdx': 2.0.13
+ '@types/react': 18.3.0
+ react: 18.3.0
+ dev: true
+
+ /@microsoft/tsdoc-config@0.16.2:
+ resolution: {integrity: sha512-OGiIzzoBLgWWR0UdRJX98oYO+XKGf7tiK4Zk6tQ/E4IJqGCe7dvkTvgDZV5cFJUzLGDOjeAXrnZoA6QkVySuxw==}
+ dependencies:
+ '@microsoft/tsdoc': 0.14.2
+ ajv: 6.12.6
+ jju: 1.4.0
+ resolve: 1.19.0
+ dev: true
+
+ /@microsoft/tsdoc@0.14.2:
+ resolution: {integrity: sha512-9b8mPpKrfeGRuhFH5iO1iwCLeIIsV6+H1sRfxbkoGXIyQE2BTsPd9zqSqQJ+pv5sJ/hT5M1zvOFL02MnEezFug==}
dev: true
/@ndelangen/get-tarball@3.0.9:
@@ -2645,6 +2835,103 @@ packages:
tar-fs: 2.1.1
dev: true
+ /@next/env@14.1.4:
+ resolution: {integrity: sha512-e7X7bbn3Z6DWnDi75UWn+REgAbLEqxI8Tq2pkFOFAMpWAWApz/YCUhtWMWn410h8Q2fYiYL7Yg5OlxMOCfFjJQ==}
+ dev: false
+
+ /@next/eslint-plugin-next@14.2.1:
+ resolution: {integrity: sha512-Fp+mthEBjkn8r9qd6o4JgxKp0IDEzW0VYHD8ZC05xS5/lFNwHKuOdr2kVhWG7BQCO9L6eeepshM1Wbs2T+LgSg==}
+ dependencies:
+ glob: 10.3.10
+ dev: true
+
+ /@next/eslint-plugin-next@14.2.3:
+ resolution: {integrity: sha512-L3oDricIIjgj1AVnRdRor21gI7mShlSwU/1ZGHmqM3LzHhXXhdkrfeNY5zif25Bi5Dd7fiJHsbhoZCHfXYvlAw==}
+ dependencies:
+ glob: 10.3.10
+ dev: true
+
+ /@next/swc-darwin-arm64@14.1.4:
+ resolution: {integrity: sha512-ubmUkbmW65nIAOmoxT1IROZdmmJMmdYvXIe8211send9ZYJu+SqxSnJM4TrPj9wmL6g9Atvj0S/2cFmMSS99jg==}
+ engines: {node: '>= 10'}
+ cpu: [arm64]
+ os: [darwin]
+ requiresBuild: true
+ dev: false
+ optional: true
+
+ /@next/swc-darwin-x64@14.1.4:
+ resolution: {integrity: sha512-b0Xo1ELj3u7IkZWAKcJPJEhBop117U78l70nfoQGo4xUSvv0PJSTaV4U9xQBLvZlnjsYkc8RwQN1HoH/oQmLlQ==}
+ engines: {node: '>= 10'}
+ cpu: [x64]
+ os: [darwin]
+ requiresBuild: true
+ dev: false
+ optional: true
+
+ /@next/swc-linux-arm64-gnu@14.1.4:
+ resolution: {integrity: sha512-457G0hcLrdYA/u1O2XkRMsDKId5VKe3uKPvrKVOyuARa6nXrdhJOOYU9hkKKyQTMru1B8qEP78IAhf/1XnVqKA==}
+ engines: {node: '>= 10'}
+ cpu: [arm64]
+ os: [linux]
+ requiresBuild: true
+ dev: false
+ optional: true
+
+ /@next/swc-linux-arm64-musl@14.1.4:
+ resolution: {integrity: sha512-l/kMG+z6MB+fKA9KdtyprkTQ1ihlJcBh66cf0HvqGP+rXBbOXX0dpJatjZbHeunvEHoBBS69GYQG5ry78JMy3g==}
+ engines: {node: '>= 10'}
+ cpu: [arm64]
+ os: [linux]
+ requiresBuild: true
+ dev: false
+ optional: true
+
+ /@next/swc-linux-x64-gnu@14.1.4:
+ resolution: {integrity: sha512-BapIFZ3ZRnvQ1uWbmqEGJuPT9cgLwvKtxhK/L2t4QYO7l+/DxXuIGjvp1x8rvfa/x1FFSsipERZK70pewbtJtw==}
+ engines: {node: '>= 10'}
+ cpu: [x64]
+ os: [linux]
+ requiresBuild: true
+ dev: false
+ optional: true
+
+ /@next/swc-linux-x64-musl@14.1.4:
+ resolution: {integrity: sha512-mqVxTwk4XuBl49qn2A5UmzFImoL1iLm0KQQwtdRJRKl21ylQwwGCxJtIYo2rbfkZHoSKlh/YgztY0qH3wG1xIg==}
+ engines: {node: '>= 10'}
+ cpu: [x64]
+ os: [linux]
+ requiresBuild: true
+ dev: false
+ optional: true
+
+ /@next/swc-win32-arm64-msvc@14.1.4:
+ resolution: {integrity: sha512-xzxF4ErcumXjO2Pvg/wVGrtr9QQJLk3IyQX1ddAC/fi6/5jZCZ9xpuL9Tzc4KPWMFq8GGWFVDMshZOdHGdkvag==}
+ engines: {node: '>= 10'}
+ cpu: [arm64]
+ os: [win32]
+ requiresBuild: true
+ dev: false
+ optional: true
+
+ /@next/swc-win32-ia32-msvc@14.1.4:
+ resolution: {integrity: sha512-WZiz8OdbkpRw6/IU/lredZWKKZopUMhcI2F+XiMAcPja0uZYdMTZQRoQ0WZcvinn9xZAidimE7tN9W5v9Yyfyw==}
+ engines: {node: '>= 10'}
+ cpu: [ia32]
+ os: [win32]
+ requiresBuild: true
+ dev: false
+ optional: true
+
+ /@next/swc-win32-x64-msvc@14.1.4:
+ resolution: {integrity: sha512-4Rto21sPfw555sZ/XNLqfxDUNeLhNYGO2dlPqsnuCg8N8a2a9u1ltqBOPQ4vj1Gf7eJC0W2hHG2eYUHuiXgY2w==}
+ engines: {node: '>= 10'}
+ cpu: [x64]
+ os: [win32]
+ requiresBuild: true
+ dev: false
+ optional: true
+
/@nicolo-ribaudo/eslint-scope-5-internals@5.1.1-v1:
resolution: {integrity: sha512-54/JRvkLIzzDWshCWfuhadfrfZVPiElY8Fcgmg1HroEly/EDSszzhBAsarCux+D/kOslTRquNzuyGSmUSTTHGg==}
dependencies:
@@ -2719,7 +3006,7 @@ packages:
dependencies:
ansi-html-community: 0.0.8
common-path-prefix: 3.0.0
- core-js-pure: 3.36.1
+ core-js-pure: 3.37.0
error-stack-parser: 2.1.4
find-up: 5.0.0
html-entities: 2.5.2
@@ -2731,7 +3018,7 @@ packages:
webpack-dev-server: 4.15.2(webpack@5.91.0)
dev: true
- /@pmmmwh/react-refresh-webpack-plugin@0.5.11(react-refresh@0.14.0)(webpack@5.91.0):
+ /@pmmmwh/react-refresh-webpack-plugin@0.5.11(react-refresh@0.14.1)(webpack@5.91.0):
resolution: {integrity: sha512-7j/6vdTym0+qZ6u4XbSAxrWBGYSdCfTzySkj7WAFgDLmSyWlOrWvpyzxlFh5jtw9dn0oL/jtW+06XfFiisN3JQ==}
engines: {node: '>= 10.13'}
peerDependencies:
@@ -2759,18 +3046,105 @@ packages:
dependencies:
ansi-html-community: 0.0.8
common-path-prefix: 3.0.0
- core-js-pure: 3.36.1
+ core-js-pure: 3.37.0
error-stack-parser: 2.1.4
find-up: 5.0.0
html-entities: 2.5.2
loader-utils: 2.0.4
- react-refresh: 0.14.0
+ react-refresh: 0.14.1
schema-utils: 3.3.0
source-map: 0.7.4
webpack: 5.91.0(esbuild@0.20.2)
dev: true
- /@radix-ui/react-compose-refs@1.0.1(@types/react@18.2.73)(react@18.2.0):
+ /@radix-ui/primitive@1.0.1:
+ resolution: {integrity: sha512-yQ8oGX2GVsEYMWGxcovu1uGWPCxV5BFfeeYxqPmuAzUyLT9qmaMXSAhXpb0WrspIeqYzdJpkh2vHModJPgRIaw==}
+ dependencies:
+ '@babel/runtime': 7.24.4
+ dev: false
+
+ /@radix-ui/react-accordion@1.1.2(@types/react-dom@18.3.0)(@types/react@18.3.0)(react-dom@18.3.0)(react@18.3.0):
+ resolution: {integrity: sha512-fDG7jcoNKVjSK6yfmuAs0EnPDro0WMXIhMtXdTBWqEioVW206ku+4Lw07e+13lUkFkpoEQ2PdeMIAGpdqEAmDg==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0
+ react-dom: ^16.8 || ^17.0 || ^18.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+ dependencies:
+ '@babel/runtime': 7.24.4
+ '@radix-ui/primitive': 1.0.1
+ '@radix-ui/react-collapsible': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.0)(react-dom@18.3.0)(react@18.3.0)
+ '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.0)(react-dom@18.3.0)(react@18.3.0)
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.0)(react@18.3.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.3.0)(react@18.3.0)
+ '@radix-ui/react-direction': 1.0.1(@types/react@18.3.0)(react@18.3.0)
+ '@radix-ui/react-id': 1.0.1(@types/react@18.3.0)(react@18.3.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.0)(react-dom@18.3.0)(react@18.3.0)
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.0)(react@18.3.0)
+ '@types/react': 18.3.0
+ '@types/react-dom': 18.3.0
+ react: 18.3.0
+ react-dom: 18.3.0(react@18.3.0)
+ dev: false
+
+ /@radix-ui/react-collapsible@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.0)(react-dom@18.3.0)(react@18.3.0):
+ resolution: {integrity: sha512-UBmVDkmR6IvDsloHVN+3rtx4Mi5TFvylYXpluuv0f37dtaz3H99bp8No0LGXRigVpl3UAT4l9j6bIchh42S/Gg==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0
+ react-dom: ^16.8 || ^17.0 || ^18.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+ dependencies:
+ '@babel/runtime': 7.24.4
+ '@radix-ui/primitive': 1.0.1
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.0)(react@18.3.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.3.0)(react@18.3.0)
+ '@radix-ui/react-id': 1.0.1(@types/react@18.3.0)(react@18.3.0)
+ '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.0)(react-dom@18.3.0)(react@18.3.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.0)(react-dom@18.3.0)(react@18.3.0)
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.0)(react@18.3.0)
+ '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.0)(react@18.3.0)
+ '@types/react': 18.3.0
+ '@types/react-dom': 18.3.0
+ react: 18.3.0
+ react-dom: 18.3.0(react@18.3.0)
+ dev: false
+
+ /@radix-ui/react-collection@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.0)(react-dom@18.3.0)(react@18.3.0):
+ resolution: {integrity: sha512-3SzW+0PW7yBBoQlT8wNcGtaxaD0XSu0uLUFgrtHY08Acx05TaHaOmVLR73c0j/cqpDy53KBMO7s0dx2wmOIDIA==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0
+ react-dom: ^16.8 || ^17.0 || ^18.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+ dependencies:
+ '@babel/runtime': 7.24.4
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.0)(react@18.3.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.3.0)(react@18.3.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.0)(react-dom@18.3.0)(react@18.3.0)
+ '@radix-ui/react-slot': 1.0.2(@types/react@18.3.0)(react@18.3.0)
+ '@types/react': 18.3.0
+ '@types/react-dom': 18.3.0
+ react: 18.3.0
+ react-dom: 18.3.0(react@18.3.0)
+ dev: false
+
+ /@radix-ui/react-compose-refs@1.0.1(@types/react@18.3.0)(react@18.3.0):
resolution: {integrity: sha512-fDSBgd44FKHa1FRMU59qBMPFcl2PZE+2nmqunj+BWFyYYjnhIDWL2ItDs3rrbJDQOtzt5nIebLCQc4QRfz6LJw==}
peerDependencies:
'@types/react': '*'
@@ -2779,12 +3153,97 @@ packages:
'@types/react':
optional: true
dependencies:
- '@babel/runtime': 7.24.1
- '@types/react': 18.2.73
- react: 18.2.0
- dev: true
+ '@babel/runtime': 7.24.4
+ '@types/react': 18.3.0
+ react: 18.3.0
+
+ /@radix-ui/react-context@1.0.1(@types/react@18.3.0)(react@18.3.0):
+ resolution: {integrity: sha512-ebbrdFoYTcuZ0v4wG5tedGnp9tzcV8awzsxYph7gXUyvnNLuTIcCk1q17JEbnVhXAKG9oX3KtchwiMIAYp9NLg==}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8 || ^17.0 || ^18.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ dependencies:
+ '@babel/runtime': 7.24.4
+ '@types/react': 18.3.0
+ react: 18.3.0
+ dev: false
+
+ /@radix-ui/react-direction@1.0.1(@types/react@18.3.0)(react@18.3.0):
+ resolution: {integrity: sha512-RXcvnXgyvYvBEOhCBuddKecVkoMiI10Jcm5cTI7abJRAHYfFxeu+FBQs/DvdxSYucxR5mna0dNsL6QFlds5TMA==}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8 || ^17.0 || ^18.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ dependencies:
+ '@babel/runtime': 7.24.4
+ '@types/react': 18.3.0
+ react: 18.3.0
+ dev: false
+
+ /@radix-ui/react-id@1.0.1(@types/react@18.3.0)(react@18.3.0):
+ resolution: {integrity: sha512-tI7sT/kqYp8p96yGWY1OAnLHrqDgzHefRBKQ2YAkBS5ja7QLcZ9Z/uY7bEjPUatf8RomoXM8/1sMj1IJaE5UzQ==}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8 || ^17.0 || ^18.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ dependencies:
+ '@babel/runtime': 7.24.4
+ '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.0)(react@18.3.0)
+ '@types/react': 18.3.0
+ react: 18.3.0
+ dev: false
+
+ /@radix-ui/react-presence@1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.0)(react-dom@18.3.0)(react@18.3.0):
+ resolution: {integrity: sha512-UXLW4UAbIY5ZjcvzjfRFo5gxva8QirC9hF7wRE4U5gz+TP0DbRk+//qyuAQ1McDxBt1xNMBTaciFGvEmJvAZCg==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0
+ react-dom: ^16.8 || ^17.0 || ^18.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+ dependencies:
+ '@babel/runtime': 7.24.4
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.0)(react@18.3.0)
+ '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.0)(react@18.3.0)
+ '@types/react': 18.3.0
+ '@types/react-dom': 18.3.0
+ react: 18.3.0
+ react-dom: 18.3.0(react@18.3.0)
+ dev: false
+
+ /@radix-ui/react-primitive@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.0)(react-dom@18.3.0)(react@18.3.0):
+ resolution: {integrity: sha512-yi58uVyoAcK/Nq1inRY56ZSjKypBNKTa/1mcL8qdl6oJeEaDbOldlzrGn7P6Q3Id5d+SYNGc5AJgc4vGhjs5+g==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0
+ react-dom: ^16.8 || ^17.0 || ^18.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+ dependencies:
+ '@babel/runtime': 7.24.4
+ '@radix-ui/react-slot': 1.0.2(@types/react@18.3.0)(react@18.3.0)
+ '@types/react': 18.3.0
+ '@types/react-dom': 18.3.0
+ react: 18.3.0
+ react-dom: 18.3.0(react@18.3.0)
+ dev: false
- /@radix-ui/react-slot@1.0.2(@types/react@18.2.73)(react@18.2.0):
+ /@radix-ui/react-slot@1.0.2(@types/react@18.3.0)(react@18.3.0):
resolution: {integrity: sha512-YeTpuq4deV+6DusvVUW4ivBgnkHwECUu0BiN43L5UCDFgdhsRUWAghhTF5MbvNTPzmiFOx90asDSUjWuCNapwg==}
peerDependencies:
'@types/react': '*'
@@ -2793,13 +3252,55 @@ packages:
'@types/react':
optional: true
dependencies:
- '@babel/runtime': 7.24.1
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.73)(react@18.2.0)
- '@types/react': 18.2.73
- react: 18.2.0
- dev: true
+ '@babel/runtime': 7.24.4
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.0)(react@18.3.0)
+ '@types/react': 18.3.0
+ react: 18.3.0
+
+ /@radix-ui/react-use-callback-ref@1.0.1(@types/react@18.3.0)(react@18.3.0):
+ resolution: {integrity: sha512-D94LjX4Sp0xJFVaoQOd3OO9k7tpBYNOXdVhkltUbGv2Qb9OXdrg/CpsjlZv7ia14Sylv398LswWBVVu5nqKzAQ==}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8 || ^17.0 || ^18.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ dependencies:
+ '@babel/runtime': 7.24.4
+ '@types/react': 18.3.0
+ react: 18.3.0
+ dev: false
+
+ /@radix-ui/react-use-controllable-state@1.0.1(@types/react@18.3.0)(react@18.3.0):
+ resolution: {integrity: sha512-Svl5GY5FQeN758fWKrjM6Qb7asvXeiZltlT4U2gVfl8Gx5UAv2sMR0LWo8yhsIZh2oQ0eFdZ59aoOOMV7b47VA==}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8 || ^17.0 || ^18.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ dependencies:
+ '@babel/runtime': 7.24.4
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.0)(react@18.3.0)
+ '@types/react': 18.3.0
+ react: 18.3.0
+ dev: false
+
+ /@radix-ui/react-use-layout-effect@1.0.1(@types/react@18.3.0)(react@18.3.0):
+ resolution: {integrity: sha512-v/5RegiJWYdoCvMnITBkNNx6bCj20fiaJnWtRkU18yITptraXjffz5Qbn05uOiQnOvi+dbkznkoaMltz1GnszQ==}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8 || ^17.0 || ^18.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ dependencies:
+ '@babel/runtime': 7.24.4
+ '@types/react': 18.3.0
+ react: 18.3.0
+ dev: false
- /@rollup/plugin-babel@5.3.1(@babel/core@7.24.3)(rollup@2.79.1):
+ /@rollup/plugin-babel@5.3.1(@babel/core@7.24.4)(rollup@2.79.1):
resolution: {integrity: sha512-WFfdLWU/xVWKeRQnKmIAQULUI7Il0gZnBIH/ZFO069wYIfPu+8zrfp/KMW0atmELoRDq8FbiP3VCss9MhCut7Q==}
engines: {node: '>= 10.0.0'}
peerDependencies:
@@ -2810,13 +3311,13 @@ packages:
'@types/babel__core':
optional: true
dependencies:
- '@babel/core': 7.24.3
+ '@babel/core': 7.24.4
'@babel/helper-module-imports': 7.24.3
'@rollup/pluginutils': 3.1.0(rollup@2.79.1)
rollup: 2.79.1
dev: true
- /@rollup/plugin-commonjs@25.0.7(rollup@4.13.2):
+ /@rollup/plugin-commonjs@25.0.7(rollup@4.16.4):
resolution: {integrity: sha512-nEvcR+LRjEjsaSsc4x3XZfCCvZIaSMenZu/OiwOKGN2UhQpAYI7ru7czFvyWbErlpoGjnSX3D5Ch5FcMA3kRWQ==}
engines: {node: '>=14.0.0'}
peerDependencies:
@@ -2825,13 +3326,13 @@ packages:
rollup:
optional: true
dependencies:
- '@rollup/pluginutils': 5.1.0(rollup@4.13.2)
+ '@rollup/pluginutils': 5.1.0(rollup@4.16.4)
commondir: 1.0.1
estree-walker: 2.0.2
glob: 8.1.0
is-reference: 1.2.1
- magic-string: 0.30.8
- rollup: 4.13.2
+ magic-string: 0.30.10
+ rollup: 4.16.4
dev: true
/@rollup/plugin-node-resolve@11.2.1(rollup@2.79.1):
@@ -2849,7 +3350,7 @@ packages:
rollup: 2.79.1
dev: true
- /@rollup/plugin-node-resolve@15.2.3(rollup@4.13.2):
+ /@rollup/plugin-node-resolve@15.2.3(rollup@4.16.4):
resolution: {integrity: sha512-j/lym8nf5E21LwBT4Df1VD6hRO2L2iwUeUmP7litikRsVp1H6NWx20NEp0Y7su+7XGc476GnXXc4kFeZNGmaSQ==}
engines: {node: '>=14.0.0'}
peerDependencies:
@@ -2858,13 +3359,13 @@ packages:
rollup:
optional: true
dependencies:
- '@rollup/pluginutils': 5.1.0(rollup@4.13.2)
+ '@rollup/pluginutils': 5.1.0(rollup@4.16.4)
'@types/resolve': 1.20.2
deepmerge: 4.3.1
is-builtin-module: 3.2.1
is-module: 1.0.0
resolve: 1.22.8
- rollup: 4.13.2
+ rollup: 4.16.4
dev: true
/@rollup/plugin-replace@2.4.2(rollup@2.79.1):
@@ -2877,7 +3378,7 @@ packages:
rollup: 2.79.1
dev: true
- /@rollup/plugin-terser@0.4.4(rollup@4.13.2):
+ /@rollup/plugin-terser@0.4.4(rollup@4.16.4):
resolution: {integrity: sha512-XHeJC5Bgvs8LfukDwWZp7yeqin6ns8RTl2B9avbejt6tZqsqvVoWI7ZTQrcNsfKEDWBTnTxM8nMDkO2IFFbd0A==}
engines: {node: '>=14.0.0'}
peerDependencies:
@@ -2886,13 +3387,13 @@ packages:
rollup:
optional: true
dependencies:
- rollup: 4.13.2
+ rollup: 4.16.4
serialize-javascript: 6.0.2
smob: 1.5.0
- terser: 5.30.0
+ terser: 5.30.4
dev: true
- /@rollup/plugin-typescript@11.1.6(rollup@4.13.2)(typescript@5.4.3):
+ /@rollup/plugin-typescript@11.1.6(rollup@4.16.4)(typescript@5.4.5):
resolution: {integrity: sha512-R92yOmIACgYdJ7dJ97p4K69I8gg6IEHt8M7dUBxN3W6nrO8uUxX5ixl0yU/N3aZTi8WhPuICvOHXQvF6FaykAA==}
engines: {node: '>=14.0.0'}
peerDependencies:
@@ -2905,10 +3406,10 @@ packages:
tslib:
optional: true
dependencies:
- '@rollup/pluginutils': 5.1.0(rollup@4.13.2)
+ '@rollup/pluginutils': 5.1.0(rollup@4.16.4)
resolve: 1.22.8
- rollup: 4.13.2
- typescript: 5.4.3
+ rollup: 4.16.4
+ typescript: 5.4.5
dev: true
/@rollup/pluginutils@3.1.0(rollup@2.79.1):
@@ -2923,7 +3424,7 @@ packages:
rollup: 2.79.1
dev: true
- /@rollup/pluginutils@5.1.0(rollup@4.13.2):
+ /@rollup/pluginutils@5.1.0(rollup@4.16.4):
resolution: {integrity: sha512-XTIWOPPcpvyKI6L1NHo0lFlCyznUEyPmPY1mc3KpPVDYulHSTvyeLNVW00QTLIAFNhR3kYnJTQHeGqU4M3n09g==}
engines: {node: '>=14.0.0'}
peerDependencies:
@@ -2935,131 +3436,139 @@ packages:
'@types/estree': 1.0.5
estree-walker: 2.0.2
picomatch: 2.3.1
- rollup: 4.13.2
+ rollup: 4.16.4
dev: true
- /@rollup/rollup-android-arm-eabi@4.13.2:
- resolution: {integrity: sha512-3XFIDKWMFZrMnao1mJhnOT1h2g0169Os848NhhmGweEcfJ4rCi+3yMCOLG4zA61rbJdkcrM/DjVZm9Hg5p5w7g==}
+ /@rollup/rollup-android-arm-eabi@4.16.4:
+ resolution: {integrity: sha512-GkhjAaQ8oUTOKE4g4gsZ0u8K/IHU1+2WQSgS1TwTcYvL+sjbaQjNHFXbOJ6kgqGHIO1DfUhI/Sphi9GkRT9K+Q==}
cpu: [arm]
os: [android]
requiresBuild: true
dev: true
optional: true
- /@rollup/rollup-android-arm64@4.13.2:
- resolution: {integrity: sha512-GdxxXbAuM7Y/YQM9/TwwP+L0omeE/lJAR1J+olu36c3LqqZEBdsIWeQ91KBe6nxwOnb06Xh7JS2U5ooWU5/LgQ==}
+ /@rollup/rollup-android-arm64@4.16.4:
+ resolution: {integrity: sha512-Bvm6D+NPbGMQOcxvS1zUl8H7DWlywSXsphAeOnVeiZLQ+0J6Is8T7SrjGTH29KtYkiY9vld8ZnpV3G2EPbom+w==}
cpu: [arm64]
os: [android]
requiresBuild: true
dev: true
optional: true
- /@rollup/rollup-darwin-arm64@4.13.2:
- resolution: {integrity: sha512-mCMlpzlBgOTdaFs83I4XRr8wNPveJiJX1RLfv4hggyIVhfB5mJfN4P8Z6yKh+oE4Luz+qq1P3kVdWrCKcMYrrA==}
+ /@rollup/rollup-darwin-arm64@4.16.4:
+ resolution: {integrity: sha512-i5d64MlnYBO9EkCOGe5vPR/EeDwjnKOGGdd7zKFhU5y8haKhQZTN2DgVtpODDMxUr4t2K90wTUJg7ilgND6bXw==}
cpu: [arm64]
os: [darwin]
requiresBuild: true
dev: true
optional: true
- /@rollup/rollup-darwin-x64@4.13.2:
- resolution: {integrity: sha512-yUoEvnH0FBef/NbB1u6d3HNGyruAKnN74LrPAfDQL3O32e3k3OSfLrPgSJmgb3PJrBZWfPyt6m4ZhAFa2nZp2A==}
+ /@rollup/rollup-darwin-x64@4.16.4:
+ resolution: {integrity: sha512-WZupV1+CdUYehaZqjaFTClJI72fjJEgTXdf4NbW69I9XyvdmztUExBtcI2yIIU6hJtYvtwS6pkTkHJz+k08mAQ==}
cpu: [x64]
os: [darwin]
requiresBuild: true
dev: true
optional: true
- /@rollup/rollup-linux-arm-gnueabihf@4.13.2:
- resolution: {integrity: sha512-GYbLs5ErswU/Xs7aGXqzc3RrdEjKdmoCrgzhJWyFL0r5fL3qd1NPcDKDowDnmcoSiGJeU68/Vy+OMUluRxPiLQ==}
+ /@rollup/rollup-linux-arm-gnueabihf@4.16.4:
+ resolution: {integrity: sha512-ADm/xt86JUnmAfA9mBqFcRp//RVRt1ohGOYF6yL+IFCYqOBNwy5lbEK05xTsEoJq+/tJzg8ICUtS82WinJRuIw==}
+ cpu: [arm]
+ os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /@rollup/rollup-linux-arm-musleabihf@4.16.4:
+ resolution: {integrity: sha512-tJfJaXPiFAG+Jn3cutp7mCs1ePltuAgRqdDZrzb1aeE3TktWWJ+g7xK9SNlaSUFw6IU4QgOxAY4rA+wZUT5Wfg==}
cpu: [arm]
os: [linux]
requiresBuild: true
dev: true
optional: true
- /@rollup/rollup-linux-arm64-gnu@4.13.2:
- resolution: {integrity: sha512-L1+D8/wqGnKQIlh4Zre9i4R4b4noxzH5DDciyahX4oOz62CphY7WDWqJoQ66zNR4oScLNOqQJfNSIAe/6TPUmQ==}
+ /@rollup/rollup-linux-arm64-gnu@4.16.4:
+ resolution: {integrity: sha512-7dy1BzQkgYlUTapDTvK997cgi0Orh5Iu7JlZVBy1MBURk7/HSbHkzRnXZa19ozy+wwD8/SlpJnOOckuNZtJR9w==}
cpu: [arm64]
os: [linux]
requiresBuild: true
dev: true
optional: true
- /@rollup/rollup-linux-arm64-musl@4.13.2:
- resolution: {integrity: sha512-tK5eoKFkXdz6vjfkSTCupUzCo40xueTOiOO6PeEIadlNBkadH1wNOH8ILCPIl8by/Gmb5AGAeQOFeLev7iZDOA==}
+ /@rollup/rollup-linux-arm64-musl@4.16.4:
+ resolution: {integrity: sha512-zsFwdUw5XLD1gQe0aoU2HVceI6NEW7q7m05wA46eUAyrkeNYExObfRFQcvA6zw8lfRc5BHtan3tBpo+kqEOxmg==}
cpu: [arm64]
os: [linux]
requiresBuild: true
dev: true
optional: true
- /@rollup/rollup-linux-powerpc64le-gnu@4.13.2:
- resolution: {integrity: sha512-zvXvAUGGEYi6tYhcDmb9wlOckVbuD+7z3mzInCSTACJ4DQrdSLPNUeDIcAQW39M3q6PDquqLWu7pnO39uSMRzQ==}
- cpu: [ppc64le]
+ /@rollup/rollup-linux-powerpc64le-gnu@4.16.4:
+ resolution: {integrity: sha512-p8C3NnxXooRdNrdv6dBmRTddEapfESEUflpICDNKXpHvTjRRq1J82CbU5G3XfebIZyI3B0s074JHMWD36qOW6w==}
+ cpu: [ppc64]
os: [linux]
requiresBuild: true
dev: true
optional: true
- /@rollup/rollup-linux-riscv64-gnu@4.13.2:
- resolution: {integrity: sha512-C3GSKvMtdudHCN5HdmAMSRYR2kkhgdOfye4w0xzyii7lebVr4riCgmM6lRiSCnJn2w1Xz7ZZzHKuLrjx5620kw==}
+ /@rollup/rollup-linux-riscv64-gnu@4.16.4:
+ resolution: {integrity: sha512-Lh/8ckoar4s4Id2foY7jNgitTOUQczwMWNYi+Mjt0eQ9LKhr6sK477REqQkmy8YHY3Ca3A2JJVdXnfb3Rrwkng==}
cpu: [riscv64]
os: [linux]
requiresBuild: true
dev: true
optional: true
- /@rollup/rollup-linux-s390x-gnu@4.13.2:
- resolution: {integrity: sha512-l4U0KDFwzD36j7HdfJ5/TveEQ1fUTjFFQP5qIt9gBqBgu1G8/kCaq5Ok05kd5TG9F8Lltf3MoYsUMw3rNlJ0Yg==}
+ /@rollup/rollup-linux-s390x-gnu@4.16.4:
+ resolution: {integrity: sha512-1xwwn9ZCQYuqGmulGsTZoKrrn0z2fAur2ujE60QgyDpHmBbXbxLaQiEvzJWDrscRq43c8DnuHx3QorhMTZgisQ==}
cpu: [s390x]
os: [linux]
requiresBuild: true
dev: true
optional: true
- /@rollup/rollup-linux-x64-gnu@4.13.2:
- resolution: {integrity: sha512-xXMLUAMzrtsvh3cZ448vbXqlUa7ZL8z0MwHp63K2IIID2+DeP5iWIT6g1SN7hg1VxPzqx0xZdiDM9l4n9LRU1A==}
+ /@rollup/rollup-linux-x64-gnu@4.16.4:
+ resolution: {integrity: sha512-LuOGGKAJ7dfRtxVnO1i3qWc6N9sh0Em/8aZ3CezixSTM+E9Oq3OvTsvC4sm6wWjzpsIlOCnZjdluINKESflJLA==}
cpu: [x64]
os: [linux]
requiresBuild: true
dev: true
optional: true
- /@rollup/rollup-linux-x64-musl@4.13.2:
- resolution: {integrity: sha512-M/JYAWickafUijWPai4ehrjzVPKRCyDb1SLuO+ZyPfoXgeCEAlgPkNXewFZx0zcnoIe3ay4UjXIMdXQXOZXWqA==}
+ /@rollup/rollup-linux-x64-musl@4.16.4:
+ resolution: {integrity: sha512-ch86i7KkJKkLybDP2AtySFTRi5fM3KXp0PnHocHuJMdZwu7BuyIKi35BE9guMlmTpwwBTB3ljHj9IQXnTCD0vA==}
cpu: [x64]
os: [linux]
requiresBuild: true
dev: true
optional: true
- /@rollup/rollup-win32-arm64-msvc@4.13.2:
- resolution: {integrity: sha512-2YWwoVg9KRkIKaXSh0mz3NmfurpmYoBBTAXA9qt7VXk0Xy12PoOP40EFuau+ajgALbbhi4uTj3tSG3tVseCjuA==}
+ /@rollup/rollup-win32-arm64-msvc@4.16.4:
+ resolution: {integrity: sha512-Ma4PwyLfOWZWayfEsNQzTDBVW8PZ6TUUN1uFTBQbF2Chv/+sjenE86lpiEwj2FiviSmSZ4Ap4MaAfl1ciF4aSA==}
cpu: [arm64]
os: [win32]
requiresBuild: true
dev: true
optional: true
- /@rollup/rollup-win32-ia32-msvc@4.13.2:
- resolution: {integrity: sha512-2FSsE9aQ6OWD20E498NYKEQLneShWes0NGMPQwxWOdws35qQXH+FplabOSP5zEe1pVjurSDOGEVCE2agFwSEsw==}
+ /@rollup/rollup-win32-ia32-msvc@4.16.4:
+ resolution: {integrity: sha512-9m/ZDrQsdo/c06uOlP3W9G2ENRVzgzbSXmXHT4hwVaDQhYcRpi9bgBT0FTG9OhESxwK0WjQxYOSfv40cU+T69w==}
cpu: [ia32]
os: [win32]
requiresBuild: true
dev: true
optional: true
- /@rollup/rollup-win32-x64-msvc@4.13.2:
- resolution: {integrity: sha512-7h7J2nokcdPePdKykd8wtc8QqqkqxIrUz7MHj6aNr8waBRU//NLDVnNjQnqQO6fqtjrtCdftpbTuOKAyrAQETQ==}
+ /@rollup/rollup-win32-x64-msvc@4.16.4:
+ resolution: {integrity: sha512-YunpoOAyGLDseanENHmbFvQSfVL5BxW3k7hhy0eN4rb3gS/ct75dVD0EXOWIqFT/nE8XYW6LP6vz6ctKRi0k9A==}
cpu: [x64]
os: [win32]
requiresBuild: true
dev: true
optional: true
- /@rushstack/eslint-patch@1.10.1:
- resolution: {integrity: sha512-S3Kq8e7LqxkA9s7HKLqXGTGck1uwis5vAXan3FnU5yw1Ec5hsSGnq4s/UCaSqABPOnOTg7zASLyst7+ohgWexg==}
+ /@rushstack/eslint-patch@1.10.2:
+ resolution: {integrity: sha512-hw437iINopmQuxWPSUEvqE56NCPsiU8N4AYtfHmJFckclktzK9YQJieD3XkDCDH4OjL+C7zgPUh73R/nrcHrqw==}
dev: true
/@scure/base@1.1.6:
@@ -3101,10 +3610,10 @@ packages:
'@sinonjs/commons': 1.8.6
dev: true
- /@storybook/addon-actions@8.0.5:
- resolution: {integrity: sha512-l1UBvD61DRcfuBTkdqMp2K+60M1QpvhNpYxMmJ/JEYQjzWTg/s9gLmX8eSjgA5bi0sjjJ5i1ddr9d8nHrmwfPA==}
+ /@storybook/addon-actions@8.0.9:
+ resolution: {integrity: sha512-+I3VTvlKdj8puHeS2tyaOVv9syDiNLneVZbTfqN+UDOK2i42NwvZr8PVwjTzMlEj9eePJdCZgiipz55xwts5bw==}
dependencies:
- '@storybook/core-events': 8.0.5
+ '@storybook/core-events': 8.0.9
'@storybook/global': 5.0.0
'@types/uuid': 9.0.8
dequal: 2.0.3
@@ -3112,18 +3621,18 @@ packages:
uuid: 9.0.1
dev: true
- /@storybook/addon-backgrounds@8.0.5:
- resolution: {integrity: sha512-XKSnJm6bGVkG9hv6VSK+djz7ZbxEHwVpsSEUKtOEt/ScLFxU0mlsH8dd5aMy9/MAYuB93Y+bJ2SR5kyOjmi1zQ==}
+ /@storybook/addon-backgrounds@8.0.9:
+ resolution: {integrity: sha512-pCDecACrVyxPaJKEWS0sHsRb8xw+IPCSxDM1TkjaAQ6zZ468A/dcUnqW+LVK8bSXgQwWzn23wqnqPFSy5yptuQ==}
dependencies:
'@storybook/global': 5.0.0
memoizerific: 1.11.3
ts-dedent: 2.2.0
dev: true
- /@storybook/addon-controls@8.0.5(@types/react@18.2.73)(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-iUL89OJQse9DlZkwY8jhyl12L/qziUkwbdSgQJxRIEceW6vrHAmc5VGwneS7N3pBuiOIKQQmMhAQ660JXHM7eQ==}
+ /@storybook/addon-controls@8.0.9(@types/react@18.3.0)(react-dom@18.3.0)(react@18.3.0):
+ resolution: {integrity: sha512-wWdmd62UP/sfPm8M7aJjEA+kEXTUIR/QsYi9PoYBhBZcXiikZ4kNan7oD7GfsnzGGKHrBVfwQhO+TqaENGYytA==}
dependencies:
- '@storybook/blocks': 8.0.5(@types/react@18.2.73)(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/blocks': 8.0.9(@types/react@18.3.0)(react-dom@18.3.0)(react@18.3.0)
lodash: 4.17.21
ts-dedent: 2.2.0
transitivePeerDependencies:
@@ -3134,26 +3643,26 @@ packages:
- supports-color
dev: true
- /@storybook/addon-docs@8.0.5:
- resolution: {integrity: sha512-FMlJLPjyNpqY68/9SJH7350/ncySKMGBQQAQnPrMtGVBld8eeOo3DB+GSffOSbmitomq+t16HOprvPSekTMlPw==}
+ /@storybook/addon-docs@8.0.9:
+ resolution: {integrity: sha512-x7hX7UuzJtClu6XwU3SfpyFhuckVcgqgD6BU6Ihxl0zs+i4xp6iKVXYSnHFMRM1sgoeT8TjPxab35Ke8w8BVRw==}
dependencies:
- '@babel/core': 7.24.3
- '@mdx-js/react': 3.0.1(@types/react@18.2.73)(react@18.2.0)
- '@storybook/blocks': 8.0.5(@types/react@18.2.73)(react-dom@18.2.0)(react@18.2.0)
- '@storybook/client-logger': 8.0.5
- '@storybook/components': 8.0.5(@types/react@18.2.73)(react-dom@18.2.0)(react@18.2.0)
- '@storybook/csf-plugin': 8.0.5
- '@storybook/csf-tools': 8.0.5
+ '@babel/core': 7.24.4
+ '@mdx-js/react': 3.0.1(@types/react@18.3.0)(react@18.3.0)
+ '@storybook/blocks': 8.0.9(@types/react@18.3.0)(react-dom@18.3.0)(react@18.3.0)
+ '@storybook/client-logger': 8.0.9
+ '@storybook/components': 8.0.9(@types/react@18.3.0)(react-dom@18.3.0)(react@18.3.0)
+ '@storybook/csf-plugin': 8.0.9
+ '@storybook/csf-tools': 8.0.9
'@storybook/global': 5.0.0
- '@storybook/node-logger': 8.0.5
- '@storybook/preview-api': 8.0.5
- '@storybook/react-dom-shim': 8.0.5(react-dom@18.2.0)(react@18.2.0)
- '@storybook/theming': 8.0.5(react-dom@18.2.0)(react@18.2.0)
- '@storybook/types': 8.0.5
- '@types/react': 18.2.73
+ '@storybook/node-logger': 8.0.9
+ '@storybook/preview-api': 8.0.9
+ '@storybook/react-dom-shim': 8.0.9(react-dom@18.3.0)(react@18.3.0)
+ '@storybook/theming': 8.0.9(react-dom@18.3.0)(react@18.3.0)
+ '@storybook/types': 8.0.9
+ '@types/react': 18.3.0
fs-extra: 11.2.0
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
+ react: 18.3.0
+ react-dom: 18.3.0(react@18.3.0)
rehype-external-links: 3.0.0
rehype-slug: 6.0.0
ts-dedent: 2.2.0
@@ -3162,22 +3671,22 @@ packages:
- supports-color
dev: true
- /@storybook/addon-essentials@8.0.5(@types/react@18.2.73)(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-1yjwf9ibKn2rVqv+fqxACoIjsaUsimSEx8QwjIl2krDNhMULXzFeVubTQ09gXSVEnHUR1nKX3X9qOXJQ2bOFlQ==}
- dependencies:
- '@storybook/addon-actions': 8.0.5
- '@storybook/addon-backgrounds': 8.0.5
- '@storybook/addon-controls': 8.0.5(@types/react@18.2.73)(react-dom@18.2.0)(react@18.2.0)
- '@storybook/addon-docs': 8.0.5
- '@storybook/addon-highlight': 8.0.5
- '@storybook/addon-measure': 8.0.5
- '@storybook/addon-outline': 8.0.5
- '@storybook/addon-toolbars': 8.0.5
- '@storybook/addon-viewport': 8.0.5
- '@storybook/core-common': 8.0.5
- '@storybook/manager-api': 8.0.5(react-dom@18.2.0)(react@18.2.0)
- '@storybook/node-logger': 8.0.5
- '@storybook/preview-api': 8.0.5
+ /@storybook/addon-essentials@8.0.9(@types/react@18.3.0)(react-dom@18.3.0)(react@18.3.0):
+ resolution: {integrity: sha512-mwAgdfrOsTuTDcagvM7veBh+iayZIWmKOazzkhrIWbhYcrXOsweigD2UOVeHgAiAzJK49znr4FXTCKcE1hOWcw==}
+ dependencies:
+ '@storybook/addon-actions': 8.0.9
+ '@storybook/addon-backgrounds': 8.0.9
+ '@storybook/addon-controls': 8.0.9(@types/react@18.3.0)(react-dom@18.3.0)(react@18.3.0)
+ '@storybook/addon-docs': 8.0.9
+ '@storybook/addon-highlight': 8.0.9
+ '@storybook/addon-measure': 8.0.9
+ '@storybook/addon-outline': 8.0.9
+ '@storybook/addon-toolbars': 8.0.9
+ '@storybook/addon-viewport': 8.0.9
+ '@storybook/core-common': 8.0.9
+ '@storybook/manager-api': 8.0.9(react-dom@18.3.0)(react@18.3.0)
+ '@storybook/node-logger': 8.0.9
+ '@storybook/preview-api': 8.0.9
ts-dedent: 2.2.0
transitivePeerDependencies:
- '@types/react'
@@ -3187,19 +3696,19 @@ packages:
- supports-color
dev: true
- /@storybook/addon-highlight@8.0.5:
- resolution: {integrity: sha512-z4Aad6Dcf9gQIEPkR8WVIdRj/5RARI6SeIX3JRJoZ4l6fu7AvTZKDWPRpwLXSpEQqdeOb7l7FrZHISmXdrPoiQ==}
+ /@storybook/addon-highlight@8.0.9:
+ resolution: {integrity: sha512-vaRHGDbx7dpNpQECAHk5wczlZO3ntstprGlqnZt0o7ylz6xB5+pTQwTuIFty0hwKv+3TPcskzzifATUyEOEmyg==}
dependencies:
'@storybook/global': 5.0.0
dev: true
- /@storybook/addon-interactions@8.0.5(@types/jest@29.5.12)(jest@27.5.1):
- resolution: {integrity: sha512-o0wcWAeQR8pN5T1l87i+CH/xSp70/0uyQAmJ9xPxg/60dHbDgjTvn/pwg+hhKu+olrFVpt85yQPzQ4pNhAFlUw==}
+ /@storybook/addon-interactions@8.0.9(@types/jest@29.5.12)(jest@27.5.1):
+ resolution: {integrity: sha512-AMIdNcyM6DDAWvMitBJMqp1iPZND8AXB4QT4VZHGMKG2ngHNKktriEKpTfcRkfKPGTJs9T+71dWfm6/R4tticw==}
dependencies:
'@storybook/global': 5.0.0
- '@storybook/instrumenter': 8.0.5
- '@storybook/test': 8.0.5(@types/jest@29.5.12)(jest@27.5.1)
- '@storybook/types': 8.0.5
+ '@storybook/instrumenter': 8.0.9
+ '@storybook/test': 8.0.9(@types/jest@29.5.12)(jest@27.5.1)
+ '@storybook/types': 8.0.9
polished: 4.3.1
ts-dedent: 2.2.0
transitivePeerDependencies:
@@ -3210,33 +3719,33 @@ packages:
- vitest
dev: true
- /@storybook/addon-links@8.0.5(react@18.2.0):
- resolution: {integrity: sha512-B5EAs0+LxgYH59GSVVAfgW8rAzGUmzdAAR3XJKbTXp3/d9e27uXwpLVYhi/VQHKLIsshDQRbc0s109APHs/SjQ==}
+ /@storybook/addon-links@8.0.9(react@18.3.0):
+ resolution: {integrity: sha512-FVt+AdW3JFSqbJzkKiqKsMRWqHXqEvCBqFs7lNfk3OW0w0jfv1iREtrxE0dVdJoUFQC9V/2Im/EpJ7UB3C2bNQ==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
peerDependenciesMeta:
react:
optional: true
dependencies:
- '@storybook/csf': 0.1.3
+ '@storybook/csf': 0.1.5
'@storybook/global': 5.0.0
- react: 18.2.0
+ react: 18.3.0
ts-dedent: 2.2.0
dev: true
- /@storybook/addon-measure@8.0.5:
- resolution: {integrity: sha512-B5c33aREHbTA+An7Q5Q1yEXUB0ETE5yPnGgsXuxVl6LyYqyqjai1qE48vcmkA7S+vt5MR6Sf9Lmy3UL+kkyYzQ==}
+ /@storybook/addon-measure@8.0.9:
+ resolution: {integrity: sha512-91svOOGEXmGG4USglwXLE3wtlUVgtbKJVxTKX7xRI+AC5JEEaKByVzP17/X8Qn/8HilUL7AfSQ0kCoqtPSJ5cA==}
dependencies:
'@storybook/global': 5.0.0
tiny-invariant: 1.3.3
dev: true
- /@storybook/addon-onboarding@8.0.5:
- resolution: {integrity: sha512-EZknQHmQfm/jmQu6u97Tb6FXuhOexLUOQ/onsHeZ5yNIFa+m1mXg8StZXzCXNm2xUGsC5ISwTi9NMQ6e7Cg+nQ==}
+ /@storybook/addon-onboarding@8.0.9:
+ resolution: {integrity: sha512-gRPn8ooxTmdamfJgdkQR48pza67S83l2DDlZ3C1kuus19UO+eIFUEVZJbud9qQojq7jc8ztaYXiNObWdxKu29A==}
dev: true
- /@storybook/addon-outline@8.0.5:
- resolution: {integrity: sha512-ouQ4IOBw7AAyukkaQwNe2MRTpDbCv+j4z76BRE7qvu9PckifsWsm00pTQwvbNdjiogS8c3EPMV5aBGIPoK/zAQ==}
+ /@storybook/addon-outline@8.0.9:
+ resolution: {integrity: sha512-fQ+jm356TgUnz81IxsC99/aOesbLw3N5OQRJpo/A6kqbLMzlq3ybVzuXYCKC3f0ArgQRNh4NoMeJBMRFMtaWRw==}
dependencies:
'@storybook/global': 5.0.0
ts-dedent: 2.2.0
@@ -3247,28 +3756,28 @@ packages:
peerDependencies:
webpack: ^5.0.0
dependencies:
- '@storybook/node-logger': 8.0.5
+ '@storybook/node-logger': 8.0.9
webpack: 5.91.0(esbuild@0.20.2)
dev: true
- /@storybook/addon-themes@8.0.5:
- resolution: {integrity: sha512-NIqjpdU3XwuaUYMp0woE8d8S6d2nlddTU/Q727VqrBJIkMYyqSD1NmoafpHEXiLiPX0bfOxGyD5uhPQCyGUVAw==}
+ /@storybook/addon-themes@8.0.9:
+ resolution: {integrity: sha512-aAbKIT//bqKbMeRLKtVStwndi+XrYxeg94tDKTFrIv2W1It6QJlO/5FMjI+cgtHHBi6w/4ThKDYwjupasaBdlg==}
dependencies:
ts-dedent: 2.2.0
dev: true
- /@storybook/addon-toolbars@8.0.5:
- resolution: {integrity: sha512-1QrvHtsQI1RNzDrkTMUFaEzZRRKHYrkj/rYpf6B2QyFvaZ6XY4urxSrmssLENuPsoDF4ABU2j6j4BAUgWjIe4A==}
+ /@storybook/addon-toolbars@8.0.9:
+ resolution: {integrity: sha512-nNSBnnBOhQ+EJwkrIkK4ZBYPcozNmEH770CZ/6NK85SUJ6WEBZapE6ru33jIUokFGEvlOlNCeai0GUc++cQP8w==}
dev: true
- /@storybook/addon-viewport@8.0.5:
- resolution: {integrity: sha512-Y2sTsNeQctfLBPQYuOjMGSQY4lUycZRZblToU0q6siJ030QjgpuEMcu1yDt654T6jnp/s4VwRS6yaZHnqZ97Mw==}
+ /@storybook/addon-viewport@8.0.9:
+ resolution: {integrity: sha512-Ao4+D56cO7biaw+iTlMU1FBec1idX0cmdosDeCFZin06MSawcPkeBlRBeruaSQYdLes8TBMdZPFgfuqI5yIk6g==}
dependencies:
memoizerific: 1.11.3
dev: true
- /@storybook/blocks@8.0.5(@types/react@18.2.73)(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-zfcwJ0yE5HM28BxZeNU4SYF8zxq2PEqLP1aWCdRuZT9k8lgnBwAKzlvt50LtPzOfGtKuGnvIEriELx/i+Qh4Sw==}
+ /@storybook/blocks@8.0.9(@types/react@18.3.0)(react-dom@18.3.0)(react@18.3.0):
+ resolution: {integrity: sha512-F2zSrfSwzTFN7qW3zB80tG+EXtmfmCDC6Ird0F7tolszb6tOqJcAcBOwQbE2O0wI63sLu21qxzXgaKBMkiWvJg==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
@@ -3278,30 +3787,30 @@ packages:
react-dom:
optional: true
dependencies:
- '@storybook/channels': 8.0.5
- '@storybook/client-logger': 8.0.5
- '@storybook/components': 8.0.5(@types/react@18.2.73)(react-dom@18.2.0)(react@18.2.0)
- '@storybook/core-events': 8.0.5
- '@storybook/csf': 0.1.3
- '@storybook/docs-tools': 8.0.5
+ '@storybook/channels': 8.0.9
+ '@storybook/client-logger': 8.0.9
+ '@storybook/components': 8.0.9(@types/react@18.3.0)(react-dom@18.3.0)(react@18.3.0)
+ '@storybook/core-events': 8.0.9
+ '@storybook/csf': 0.1.5
+ '@storybook/docs-tools': 8.0.9
'@storybook/global': 5.0.0
- '@storybook/icons': 1.2.9(react-dom@18.2.0)(react@18.2.0)
- '@storybook/manager-api': 8.0.5(react-dom@18.2.0)(react@18.2.0)
- '@storybook/preview-api': 8.0.5
- '@storybook/theming': 8.0.5(react-dom@18.2.0)(react@18.2.0)
- '@storybook/types': 8.0.5
+ '@storybook/icons': 1.2.9(react-dom@18.3.0)(react@18.3.0)
+ '@storybook/manager-api': 8.0.9(react-dom@18.3.0)(react@18.3.0)
+ '@storybook/preview-api': 8.0.9
+ '@storybook/theming': 8.0.9(react-dom@18.3.0)(react@18.3.0)
+ '@storybook/types': 8.0.9
'@types/lodash': 4.17.0
color-convert: 2.0.1
dequal: 2.0.3
lodash: 4.17.21
- markdown-to-jsx: 7.3.2(react@18.2.0)
+ markdown-to-jsx: 7.3.2(react@18.3.0)
memoizerific: 1.11.3
polished: 4.3.1
- react: 18.2.0
- react-colorful: 5.6.1(react-dom@18.2.0)(react@18.2.0)
- react-dom: 18.2.0(react@18.2.0)
+ react: 18.3.0
+ react-colorful: 5.6.1(react-dom@18.3.0)(react@18.3.0)
+ react-dom: 18.3.0(react@18.3.0)
telejson: 7.2.0
- tocbot: 4.25.0
+ tocbot: 4.27.13
ts-dedent: 2.2.0
util-deprecate: 1.0.2
transitivePeerDependencies:
@@ -3310,17 +3819,17 @@ packages:
- supports-color
dev: true
- /@storybook/builder-manager@8.0.5:
- resolution: {integrity: sha512-63gIHfgdhpL3rcHkOcGm29PbIkgx2bLRxi2RYa0osGMtfBIePFXJh7nol+4KpaRkNR8RZg+N9omVGjyhLj7IWg==}
+ /@storybook/builder-manager@8.0.9:
+ resolution: {integrity: sha512-/PxDwZIfMc/PSRZcasb6SIdGr3azIlenzx7dBF7Imt8i4jLHiAf1t00GvghlfJsvsrn4DNp95rbRbXTDyTj7tQ==}
dependencies:
'@fal-works/esbuild-plugin-global-externals': 2.1.2
- '@storybook/core-common': 8.0.5
- '@storybook/manager': 8.0.5
- '@storybook/node-logger': 8.0.5
+ '@storybook/core-common': 8.0.9
+ '@storybook/manager': 8.0.9
+ '@storybook/node-logger': 8.0.9
'@types/ejs': 3.1.5
'@yarnpkg/esbuild-plugin-pnp': 3.0.0-rc.15(esbuild@0.20.2)
browser-assert: 1.2.1
- ejs: 3.1.9
+ ejs: 3.1.10
esbuild: 0.20.2
esbuild-plugin-alias: 0.2.1
express: 4.19.2
@@ -3332,42 +3841,42 @@ packages:
- supports-color
dev: true
- /@storybook/builder-webpack5@8.0.5(esbuild@0.20.2)(typescript@5.4.3):
- resolution: {integrity: sha512-tt7ZrRscsg+AJayOLXYCsDleNzNy0UHjfs7FnDzh331Ulyt2WeGkcELTZmHnBg5WwVBgjGTYmxYKSgGXF0hKXQ==}
+ /@storybook/builder-webpack5@8.0.9(esbuild@0.20.2)(typescript@5.4.5):
+ resolution: {integrity: sha512-bFxlxOO2x8n3TmmA9ACxzhmHxtRd0e68dA0w4AYkvEwBf2wScRQdWJIeS5k4JgRwtcUyFYAt+VcKyE1WMgyaVg==}
peerDependencies:
typescript: '*'
peerDependenciesMeta:
typescript:
optional: true
dependencies:
- '@storybook/channels': 8.0.5
- '@storybook/client-logger': 8.0.5
- '@storybook/core-common': 8.0.5
- '@storybook/core-events': 8.0.5
- '@storybook/core-webpack': 8.0.5
- '@storybook/node-logger': 8.0.5
- '@storybook/preview': 8.0.5
- '@storybook/preview-api': 8.0.5
- '@types/node': 18.19.28
+ '@storybook/channels': 8.0.9
+ '@storybook/client-logger': 8.0.9
+ '@storybook/core-common': 8.0.9
+ '@storybook/core-events': 8.0.9
+ '@storybook/core-webpack': 8.0.9
+ '@storybook/node-logger': 8.0.9
+ '@storybook/preview': 8.0.9
+ '@storybook/preview-api': 8.0.9
+ '@types/node': 18.19.31
'@types/semver': 7.5.8
browser-assert: 1.2.1
case-sensitive-paths-webpack-plugin: 2.4.0
cjs-module-lexer: 1.2.3
constants-browserify: 1.0.0
- css-loader: 6.10.0(webpack@5.91.0)
+ css-loader: 6.11.0(webpack@5.91.0)
es-module-lexer: 1.5.0
express: 4.19.2
- fork-ts-checker-webpack-plugin: 8.0.0(typescript@5.4.3)(webpack@5.91.0)
+ fork-ts-checker-webpack-plugin: 8.0.0(typescript@5.4.5)(webpack@5.91.0)
fs-extra: 11.2.0
html-webpack-plugin: 5.6.0(webpack@5.91.0)
- magic-string: 0.30.8
+ magic-string: 0.30.10
path-browserify: 1.0.1
process: 0.11.10
semver: 7.6.0
style-loader: 3.3.4(webpack@5.91.0)
terser-webpack-plugin: 5.3.10(esbuild@0.20.2)(webpack@5.91.0)
ts-dedent: 2.2.0
- typescript: 5.4.3
+ typescript: 5.4.5
url: 0.11.3
util: 0.12.5
util-deprecate: 1.0.2
@@ -3385,31 +3894,31 @@ packages:
- webpack-cli
dev: true
- /@storybook/channels@8.0.5:
- resolution: {integrity: sha512-UWzjt4STzBgg28Q6FxqyJWwXLWYM6oSz9gGKMUJbn2vRAlEJaG3XwvpT39YFVDUIuiFSHguV5cisXY5Be4nOZw==}
+ /@storybook/channels@8.0.9:
+ resolution: {integrity: sha512-7Lcfyy5CsLWWGhMPO9WG4jZ/Alzp0AjepFhEreYHRPtQrfttp6qMAjE/g1aHgun0qHCYWxwqIG4NLR/hqDNrXQ==}
dependencies:
- '@storybook/client-logger': 8.0.5
- '@storybook/core-events': 8.0.5
+ '@storybook/client-logger': 8.0.9
+ '@storybook/core-events': 8.0.9
'@storybook/global': 5.0.0
telejson: 7.2.0
tiny-invariant: 1.3.3
dev: true
- /@storybook/cli@8.0.5(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-6t0d2ILXonC7bsq6Dx6tFTls2a/JeOR7lr3UgoVaiFu5l1M5pOB6uI9JG14F+UmsCifXGJdvxR38CBwVSKtg/Q==}
+ /@storybook/cli@8.0.9(react-dom@18.3.0)(react@18.3.0):
+ resolution: {integrity: sha512-lilYTKn8F5YOePijqfRYFa5v2mHVIJxPCIgTn+OXAmAFbcizZ6P8P6niU4J/NXulgx68Ln1M7hYhFtTP25hVTw==}
hasBin: true
dependencies:
- '@babel/core': 7.24.3
+ '@babel/core': 7.24.4
'@babel/types': 7.24.0
'@ndelangen/get-tarball': 3.0.9
- '@storybook/codemod': 8.0.5
- '@storybook/core-common': 8.0.5
- '@storybook/core-events': 8.0.5
- '@storybook/core-server': 8.0.5(react-dom@18.2.0)(react@18.2.0)
- '@storybook/csf-tools': 8.0.5
- '@storybook/node-logger': 8.0.5
- '@storybook/telemetry': 8.0.5
- '@storybook/types': 8.0.5
+ '@storybook/codemod': 8.0.9
+ '@storybook/core-common': 8.0.9
+ '@storybook/core-events': 8.0.9
+ '@storybook/core-server': 8.0.9(react-dom@18.3.0)(react@18.3.0)
+ '@storybook/csf-tools': 8.0.9
+ '@storybook/node-logger': 8.0.9
+ '@storybook/telemetry': 8.0.9
+ '@storybook/types': 8.0.9
'@types/semver': 7.5.8
'@yarnpkg/fslib': 2.10.3
'@yarnpkg/libzip': 2.3.0
@@ -3417,14 +3926,14 @@ packages:
commander: 6.2.1
cross-spawn: 7.0.3
detect-indent: 6.1.0
- envinfo: 7.11.1
+ envinfo: 7.12.0
execa: 5.1.1
find-up: 5.0.0
fs-extra: 11.2.0
get-npm-tarball-url: 2.1.0
giget: 1.2.3
globby: 11.1.0
- jscodeshift: 0.15.2(@babel/preset-env@7.24.3)
+ jscodeshift: 0.15.2(@babel/preset-env@7.24.4)
leven: 3.1.0
ora: 5.4.1
prettier: 3.2.5
@@ -3445,26 +3954,26 @@ packages:
- utf-8-validate
dev: true
- /@storybook/client-logger@8.0.5:
- resolution: {integrity: sha512-6D7zvPPnLuTVlBNpZSdzEbk5xfWKhEG0gejtPnhjG9R5YzC/dFckdUI0gtvwGWUVMWhL3H/0gjRjhKujUMRY1Q==}
+ /@storybook/client-logger@8.0.9:
+ resolution: {integrity: sha512-LzV/RHkbf07sRc1Jc0ff36RlapKf9Ul7/+9VMvVbI3hshH1CpmrZK4t/tsIdpX/EVOdJ1Gg5cES06PnleOAIPA==}
dependencies:
'@storybook/global': 5.0.0
dev: true
- /@storybook/codemod@8.0.5:
- resolution: {integrity: sha512-1ub3RRT+/ziJUdS2rz5UkQWu6teGULxHDMDRFhTrGYHVOgkc/lLnFuF0rgrLxsFdTmKIBTKN2xFfSE7z9Palsg==}
+ /@storybook/codemod@8.0.9:
+ resolution: {integrity: sha512-VBeGpSZSQpL6iyLLqceJSNGhdCqcNwv+xC/aWdDFOkmuE1YfbmNNwpa9QYv4ZFJ2QjUsm4iTWG60qK+9NXeSKA==}
dependencies:
- '@babel/core': 7.24.3
- '@babel/preset-env': 7.24.3(@babel/core@7.24.3)
+ '@babel/core': 7.24.4
+ '@babel/preset-env': 7.24.4(@babel/core@7.24.4)
'@babel/types': 7.24.0
- '@storybook/csf': 0.1.3
- '@storybook/csf-tools': 8.0.5
- '@storybook/node-logger': 8.0.5
- '@storybook/types': 8.0.5
+ '@storybook/csf': 0.1.5
+ '@storybook/csf-tools': 8.0.9
+ '@storybook/node-logger': 8.0.9
+ '@storybook/types': 8.0.9
'@types/cross-spawn': 6.0.6
cross-spawn: 7.0.3
globby: 11.1.0
- jscodeshift: 0.15.2(@babel/preset-env@7.24.3)
+ jscodeshift: 0.15.2(@babel/preset-env@7.24.4)
lodash: 4.17.21
prettier: 3.2.5
recast: 0.23.6
@@ -3473,34 +3982,34 @@ packages:
- supports-color
dev: true
- /@storybook/components@8.0.5(@types/react@18.2.73)(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-trBWV9gc4YhFhMKUevkBY9Mdk9WmYmthpBfmF0Y2vgrJQidUqkkQqfAMQThSJ0KLpV8k3fB27s5d93rgrr50Rg==}
+ /@storybook/components@8.0.9(@types/react@18.3.0)(react-dom@18.3.0)(react@18.3.0):
+ resolution: {integrity: sha512-JcwBGADzIJs0PSzqykrrD2KHzNG9wtexUOKuidt+FSv9szpUhe3qBAXIHpdfBRl7mOJ9TRZ5rt+mukEnfncdzA==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
dependencies:
- '@radix-ui/react-slot': 1.0.2(@types/react@18.2.73)(react@18.2.0)
- '@storybook/client-logger': 8.0.5
- '@storybook/csf': 0.1.3
+ '@radix-ui/react-slot': 1.0.2(@types/react@18.3.0)(react@18.3.0)
+ '@storybook/client-logger': 8.0.9
+ '@storybook/csf': 0.1.5
'@storybook/global': 5.0.0
- '@storybook/icons': 1.2.9(react-dom@18.2.0)(react@18.2.0)
- '@storybook/theming': 8.0.5(react-dom@18.2.0)(react@18.2.0)
- '@storybook/types': 8.0.5
+ '@storybook/icons': 1.2.9(react-dom@18.3.0)(react@18.3.0)
+ '@storybook/theming': 8.0.9(react-dom@18.3.0)(react@18.3.0)
+ '@storybook/types': 8.0.9
memoizerific: 1.11.3
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
+ react: 18.3.0
+ react-dom: 18.3.0(react@18.3.0)
util-deprecate: 1.0.2
transitivePeerDependencies:
- '@types/react'
dev: true
- /@storybook/core-common@8.0.5:
- resolution: {integrity: sha512-WCu2ZPMq1FuO33tYuCPb9joWaZGtJgfKvXXVGLYYg6LufpbWOI+IB7OWmHahtEdKuaNoIr3CEf1p3zm12NNiYA==}
+ /@storybook/core-common@8.0.9:
+ resolution: {integrity: sha512-Jmue+sfHFb4GTYBzyWYw1MygoJiQSfISIrKmNIzAmZ+oR9EOr+jpu/i/bH+uetZ2Hqg1AGhj1VB7OtJp9HQyWw==}
dependencies:
- '@storybook/core-events': 8.0.5
- '@storybook/csf-tools': 8.0.5
- '@storybook/node-logger': 8.0.5
- '@storybook/types': 8.0.5
+ '@storybook/core-events': 8.0.9
+ '@storybook/csf-tools': 8.0.9
+ '@storybook/node-logger': 8.0.9
+ '@storybook/types': 8.0.9
'@yarnpkg/fslib': 2.10.3
'@yarnpkg/libzip': 2.3.0
chalk: 4.1.2
@@ -3512,7 +4021,7 @@ packages:
find-cache-dir: 3.3.2
find-up: 5.0.0
fs-extra: 11.2.0
- glob: 10.3.12
+ glob: 10.3.10
handlebars: 4.7.8
lazy-universal-dotenv: 4.0.0
node-fetch: 2.7.0
@@ -3530,34 +4039,34 @@ packages:
- supports-color
dev: true
- /@storybook/core-events@8.0.5:
- resolution: {integrity: sha512-26c0m7P7qt9zUKcD1noWLPJmZ+iS6MKXNngUgNBSxTtG20NFV3nxD0/tx9FzNfDVZDF6cHINkWj+FVBAaVuBVQ==}
+ /@storybook/core-events@8.0.9:
+ resolution: {integrity: sha512-DxSUx7wG9Qe3OFUBnv3OrYq48J8UWNo2DUR5/JecJCtp3n++L4fAEW3J0IF5FfxpQDMQSp1yTNjZ2PaWCMd2ag==}
dependencies:
ts-dedent: 2.2.0
dev: true
- /@storybook/core-server@8.0.5(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-aQGHRQZF4jbMqBT0sGptql+S3hiNksi4n6pPJPxGf6TE8TyRA1x7USjmvXHwv59vpmMm9HaRpGWzWCo4SqwNqw==}
+ /@storybook/core-server@8.0.9(react-dom@18.3.0)(react@18.3.0):
+ resolution: {integrity: sha512-BIe1T5YUBl0GYxEjRoTQsvXD2pyuzL8rPTUD41zlzSQM0R8U6Iant9SzRms4u0+rKUm2mGxxKuODlUo5ewqaGA==}
dependencies:
'@aw-web-design/x-default-browser': 1.4.126
- '@babel/core': 7.24.3
+ '@babel/core': 7.24.4
'@discoveryjs/json-ext': 0.5.7
- '@storybook/builder-manager': 8.0.5
- '@storybook/channels': 8.0.5
- '@storybook/core-common': 8.0.5
- '@storybook/core-events': 8.0.5
- '@storybook/csf': 0.1.3
- '@storybook/csf-tools': 8.0.5
+ '@storybook/builder-manager': 8.0.9
+ '@storybook/channels': 8.0.9
+ '@storybook/core-common': 8.0.9
+ '@storybook/core-events': 8.0.9
+ '@storybook/csf': 0.1.5
+ '@storybook/csf-tools': 8.0.9
'@storybook/docs-mdx': 3.0.0
'@storybook/global': 5.0.0
- '@storybook/manager': 8.0.5
- '@storybook/manager-api': 8.0.5(react-dom@18.2.0)(react@18.2.0)
- '@storybook/node-logger': 8.0.5
- '@storybook/preview-api': 8.0.5
- '@storybook/telemetry': 8.0.5
- '@storybook/types': 8.0.5
+ '@storybook/manager': 8.0.9
+ '@storybook/manager-api': 8.0.9(react-dom@18.3.0)(react@18.3.0)
+ '@storybook/node-logger': 8.0.9
+ '@storybook/preview-api': 8.0.9
+ '@storybook/telemetry': 8.0.9
+ '@storybook/types': 8.0.9
'@types/detect-port': 1.3.5
- '@types/node': 18.19.28
+ '@types/node': 18.19.31
'@types/pretty-hrtime': 1.0.3
'@types/semver': 7.5.8
better-opn: 3.0.2
@@ -3591,37 +4100,37 @@ packages:
- utf-8-validate
dev: true
- /@storybook/core-webpack@8.0.5:
- resolution: {integrity: sha512-xGjOgMFPEiQeofXyUM1rlnpqSJ3FVcuPkrbh8rDLC8mTzGeEqqhNH5hluywk1H8UqYlaNrVhPi6/iGWhRUvlgw==}
+ /@storybook/core-webpack@8.0.9:
+ resolution: {integrity: sha512-lehuuAmHt/p5z8lZkMW16Y/+uDEh+Z/tExItVadtjEY8jXDe2Ilr1Cts2lvzVNuuESEKd5bqsGJ1L4t9Bf25pg==}
dependencies:
- '@storybook/core-common': 8.0.5
- '@storybook/node-logger': 8.0.5
- '@storybook/types': 8.0.5
- '@types/node': 18.19.28
+ '@storybook/core-common': 8.0.9
+ '@storybook/node-logger': 8.0.9
+ '@storybook/types': 8.0.9
+ '@types/node': 18.19.31
ts-dedent: 2.2.0
transitivePeerDependencies:
- encoding
- supports-color
dev: true
- /@storybook/csf-plugin@8.0.5:
- resolution: {integrity: sha512-R6VjQl+I9k4oc3OfOHOFzz5T20WROHOZ5/zkkFKM/1YUa6QNpMcuStOtr/qcAx+QizmQqmxgJwTFapFBP5yWjg==}
+ /@storybook/csf-plugin@8.0.9:
+ resolution: {integrity: sha512-pXaNCNi++kxKsqSWwvx215fPx8cNqvepLVxQ7B69qXLHj80DHn0Q3DFBO3sLXNiQMJ2JK4OYcTxMfuOiyzszKw==}
dependencies:
- '@storybook/csf-tools': 8.0.5
+ '@storybook/csf-tools': 8.0.9
unplugin: 1.10.1
transitivePeerDependencies:
- supports-color
dev: true
- /@storybook/csf-tools@8.0.5:
- resolution: {integrity: sha512-fW2hAO57ayq7eHjpS5jXy/AKm3oZxApngd9QU/bC800EyTWENwLPxFnHLAE86N57Dc3bcE4PTFCyqpxzE4Uc7g==}
+ /@storybook/csf-tools@8.0.9:
+ resolution: {integrity: sha512-PiNMhL97giLytTdQwuhsZ92buVk4gy9H/8DtrDhUc45/1OmF95gogm6T2Yap729SIFwgpOcuq/U3aVo6d6swVQ==}
dependencies:
- '@babel/generator': 7.24.1
- '@babel/parser': 7.24.1
+ '@babel/generator': 7.24.4
+ '@babel/parser': 7.24.4
'@babel/traverse': 7.24.1
'@babel/types': 7.24.0
- '@storybook/csf': 0.1.3
- '@storybook/types': 8.0.5
+ '@storybook/csf': 0.1.5
+ '@storybook/types': 8.0.9
fs-extra: 11.2.0
recast: 0.23.6
ts-dedent: 2.2.0
@@ -3635,8 +4144,8 @@ packages:
lodash: 4.17.21
dev: true
- /@storybook/csf@0.1.3:
- resolution: {integrity: sha512-IPZvXXo4b3G+gpmgBSBqVM81jbp2ePOKsvhgJdhyZJtkYQCII7rg9KKLQhvBQM5sLaF1eU6r0iuwmyynC9d9SA==}
+ /@storybook/csf@0.1.5:
+ resolution: {integrity: sha512-pW7Dtk/bE2JGrAe/KuBY4Io02NBe/2CLP2DkgVgWlSwvEVdm/rbQyiwy8RaL0lQlJCv9CsGBY+n9HQG8d4bZjQ==}
dependencies:
type-fest: 2.19.0
dev: true
@@ -3645,12 +4154,13 @@ packages:
resolution: {integrity: sha512-NmiGXl2HU33zpwTv1XORe9XG9H+dRUC1Jl11u92L4xr062pZtrShLmD4VKIsOQujxhhOrbxpwhNOt+6TdhyIdQ==}
dev: true
- /@storybook/docs-tools@8.0.5:
- resolution: {integrity: sha512-IzQMlsumiBgHAh5TTZTinNcedU98l0S0hczbTgjXQWgTp3//RHO36LYowAeFrB6V9SACYs/Q47iB15K4b2dqUg==}
+ /@storybook/docs-tools@8.0.9:
+ resolution: {integrity: sha512-OzogAeOmeHea/MxSPKRBWtOQVNSpoq+OOpimO9YRA5h5GBRJ2TUOGT44Gny6QT4ll5AvQA8fIiq9KezKcLekAg==}
dependencies:
- '@storybook/core-common': 8.0.5
- '@storybook/preview-api': 8.0.5
- '@storybook/types': 8.0.5
+ '@storybook/core-common': 8.0.9
+ '@storybook/core-events': 8.0.9
+ '@storybook/preview-api': 8.0.9
+ '@storybook/types': 8.0.9
'@types/doctrine': 0.0.3
assert: 2.1.0
doctrine: 3.0.0
@@ -3664,41 +4174,41 @@ packages:
resolution: {integrity: sha512-FcOqPAXACP0I3oJ/ws6/rrPT9WGhu915Cg8D02a9YxLo0DE9zI+a9A5gRGvmQ09fiWPukqI8ZAEoQEdWUKMQdQ==}
dev: true
- /@storybook/icons@1.2.9(react-dom@18.2.0)(react@18.2.0):
+ /@storybook/icons@1.2.9(react-dom@18.3.0)(react@18.3.0):
resolution: {integrity: sha512-cOmylsz25SYXaJL/gvTk/dl3pyk7yBFRfeXTsHvTA3dfhoU/LWSq0NKL9nM7WBasJyn6XPSGnLS4RtKXLw5EUg==}
engines: {node: '>=14.0.0'}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
dependencies:
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
+ react: 18.3.0
+ react-dom: 18.3.0(react@18.3.0)
dev: true
- /@storybook/instrumenter@8.0.5:
- resolution: {integrity: sha512-ccGFGSquIPZBcf3dP+I5kwSblAOlQNH7+4vunYJtUrlXN+VROS9LAf87W/btwxQVI1Zj17BUH9CoBrDxWbJ2VA==}
+ /@storybook/instrumenter@8.0.9:
+ resolution: {integrity: sha512-Gw74dgpTU/2p7FG0s7DuVdqCbJ2MEcSuRJjDo7HcXRYcvWp7I6Ly+C0v7N5VaoS+kbBVerAhLKIHZgG/LZf1og==}
dependencies:
- '@storybook/channels': 8.0.5
- '@storybook/client-logger': 8.0.5
- '@storybook/core-events': 8.0.5
+ '@storybook/channels': 8.0.9
+ '@storybook/client-logger': 8.0.9
+ '@storybook/core-events': 8.0.9
'@storybook/global': 5.0.0
- '@storybook/preview-api': 8.0.5
- '@vitest/utils': 1.4.0
+ '@storybook/preview-api': 8.0.9
+ '@vitest/utils': 1.5.2
util: 0.12.5
dev: true
- /@storybook/manager-api@8.0.5(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-2Q+DI9XU1U4EBrihnyfo+kuRK7T3Ce2eSlWEHHkTZ3OYSf+EhFxLUA6AOfMoA1B0nzNEr6SUkW8DBvMrtdTQMA==}
+ /@storybook/manager-api@8.0.9(react-dom@18.3.0)(react@18.3.0):
+ resolution: {integrity: sha512-99b3yKArDSvfabXL7QE3nA95e4DdW/5H/ZCcr6/E2qCQJayZ6G1v/WWamKXbiaTpkndulFmcb/+ZmnDXcweIIQ==}
dependencies:
- '@storybook/channels': 8.0.5
- '@storybook/client-logger': 8.0.5
- '@storybook/core-events': 8.0.5
- '@storybook/csf': 0.1.3
+ '@storybook/channels': 8.0.9
+ '@storybook/client-logger': 8.0.9
+ '@storybook/core-events': 8.0.9
+ '@storybook/csf': 0.1.5
'@storybook/global': 5.0.0
- '@storybook/icons': 1.2.9(react-dom@18.2.0)(react@18.2.0)
- '@storybook/router': 8.0.5
- '@storybook/theming': 8.0.5(react-dom@18.2.0)(react@18.2.0)
- '@storybook/types': 8.0.5
+ '@storybook/icons': 1.2.9(react-dom@18.3.0)(react@18.3.0)
+ '@storybook/router': 8.0.9
+ '@storybook/theming': 8.0.9(react-dom@18.3.0)(react@18.3.0)
+ '@storybook/types': 8.0.9
dequal: 2.0.3
lodash: 4.17.21
memoizerific: 1.11.3
@@ -3710,24 +4220,24 @@ packages:
- react-dom
dev: true
- /@storybook/manager@8.0.5:
- resolution: {integrity: sha512-eJtf2SaAzOmRV03zn/pFRTqBua8/qy+VDtgaaCFmAyrjsUHO/bcHpbu9vnwP8a+C8ojJnthooi3yz755UTDYYg==}
+ /@storybook/manager@8.0.9:
+ resolution: {integrity: sha512-+NnRo+5JQFGNqveKrLtC0b+Z08Tae4m44iq292bPeZMpr9OkFsIkU0PBPsHTHPkrqC/zZXRNsCsTEgvu3p2OIA==}
dev: true
- /@storybook/node-logger@8.0.5:
- resolution: {integrity: sha512-ssT8YCcCqgc89ee+EeExCxcOpueOsU05iek2roR+NCZnoCL1DmzcUp8H9t0utLaK/ngPV8zatlzSDVgKTHSIJw==}
+ /@storybook/node-logger@8.0.9:
+ resolution: {integrity: sha512-5ajMdZFrYrjGLJOVDq7dlEQNFsgeLHymt4dCK9MulL/ciXykmXUZXE3Bye0wFy+I2qqDVvrvR8uzCvSFvm5MAQ==}
dev: true
- /@storybook/preset-create-react-app@8.0.5(react-refresh@0.14.0)(react-scripts@5.0.1)(typescript@5.4.3)(webpack@5.91.0):
- resolution: {integrity: sha512-i8BkOhGM10EkeJW69Pfu7tOZUy1NQoFDz+aimWZRJ4msnGj0MyLj/1M5nN0ZqHh+Rdgwd0onAixn+uyH6hkTYg==}
+ /@storybook/preset-create-react-app@8.0.9(react-refresh@0.14.1)(react-scripts@5.0.1)(typescript@5.4.5)(webpack@5.91.0):
+ resolution: {integrity: sha512-7IjDztstczSFoLlzhWt6MAE2IKVA1B2CLiXRVlw1aK9+dv5n0ctZQzRCwwvTQXdlI3ABSqB7Gn6khKJOBYUhlg==}
peerDependencies:
react-scripts: '>=5.0.0'
dependencies:
- '@pmmmwh/react-refresh-webpack-plugin': 0.5.11(react-refresh@0.14.0)(webpack@5.91.0)
- '@storybook/types': 8.0.5
+ '@pmmmwh/react-refresh-webpack-plugin': 0.5.11(react-refresh@0.14.1)(webpack@5.91.0)
+ '@storybook/types': 8.0.9
'@types/semver': 7.5.8
- pnp-webpack-plugin: 1.7.0(typescript@5.4.3)
- react-scripts: 5.0.1(@babel/plugin-syntax-flow@7.24.1)(@babel/plugin-transform-react-jsx@7.23.4)(esbuild@0.20.2)(eslint@8.57.0)(react@18.2.0)(typescript@5.4.3)
+ pnp-webpack-plugin: 1.7.0(typescript@5.4.5)
+ react-scripts: 5.0.1(@babel/plugin-syntax-flow@7.24.1)(@babel/plugin-transform-react-jsx@7.23.4)(esbuild@0.20.2)(eslint@8.57.0)(react@18.3.0)(typescript@5.4.5)
semver: 7.6.0
transitivePeerDependencies:
- '@types/webpack'
@@ -3741,8 +4251,8 @@ packages:
- webpack-plugin-serve
dev: true
- /@storybook/preset-react-webpack@8.0.5(esbuild@0.20.2)(react-dom@18.2.0)(react@18.2.0)(typescript@5.4.3):
- resolution: {integrity: sha512-+V4eEtbsaDcSgRFP6/8ZAUcmyEyF2o6iBVZ72prs2GO4rInrYFMUZZRIXRSvH92x8BurJck2ap9EGjFt08o0Ag==}
+ /@storybook/preset-react-webpack@8.0.9(esbuild@0.20.2)(react-dom@18.3.0)(react@18.3.0)(typescript@5.4.5):
+ resolution: {integrity: sha512-kkJG03ZOJXM8fhYJuvAX9+3QVwoOMnz1tj75M/45c9i6XafPrBi2imGZWjXzuKXMxg/KO9fS/Y0JZmDh7vPM9g==}
engines: {node: '>=18.0.0'}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
@@ -3752,23 +4262,23 @@ packages:
typescript:
optional: true
dependencies:
- '@storybook/core-webpack': 8.0.5
- '@storybook/docs-tools': 8.0.5
- '@storybook/node-logger': 8.0.5
- '@storybook/react': 8.0.5(react-dom@18.2.0)(react@18.2.0)(typescript@5.4.3)
- '@storybook/react-docgen-typescript-plugin': 1.0.6--canary.9.0c3f3b7.0(typescript@5.4.3)(webpack@5.91.0)
- '@types/node': 18.19.28
+ '@storybook/core-webpack': 8.0.9
+ '@storybook/docs-tools': 8.0.9
+ '@storybook/node-logger': 8.0.9
+ '@storybook/react': 8.0.9(react-dom@18.3.0)(react@18.3.0)(typescript@5.4.5)
+ '@storybook/react-docgen-typescript-plugin': 1.0.6--canary.9.0c3f3b7.0(typescript@5.4.5)(webpack@5.91.0)
+ '@types/node': 18.19.31
'@types/semver': 7.5.8
find-up: 5.0.0
fs-extra: 11.2.0
- magic-string: 0.30.8
- react: 18.2.0
+ magic-string: 0.30.10
+ react: 18.3.0
react-docgen: 7.0.3
- react-dom: 18.2.0(react@18.2.0)
+ react-dom: 18.3.0(react@18.3.0)
resolve: 1.22.8
semver: 7.6.0
tsconfig-paths: 4.2.0
- typescript: 5.4.3
+ typescript: 5.4.5
webpack: 5.91.0(esbuild@0.20.2)
transitivePeerDependencies:
- '@swc/core'
@@ -3779,30 +4289,30 @@ packages:
- webpack-cli
dev: true
- /@storybook/preview-api@8.0.5:
- resolution: {integrity: sha512-BSDVTR9/X6DHVA4rIhN6d/SB6PiaRdns8ky/TKTzwFEyO3NOASHe8051O+uNtXzgCtMUj/8imNrTdMTYgUm1LA==}
+ /@storybook/preview-api@8.0.9:
+ resolution: {integrity: sha512-zHfX34bkAMzzmE7vbDzaqFwSW6ExiBD0HiO1L/IsHF55f0f7xV7IH8uJyFRrDTvAoW3ReSxZDMvvPpeydFPKGA==}
dependencies:
- '@storybook/channels': 8.0.5
- '@storybook/client-logger': 8.0.5
- '@storybook/core-events': 8.0.5
- '@storybook/csf': 0.1.3
+ '@storybook/channels': 8.0.9
+ '@storybook/client-logger': 8.0.9
+ '@storybook/core-events': 8.0.9
+ '@storybook/csf': 0.1.5
'@storybook/global': 5.0.0
- '@storybook/types': 8.0.5
- '@types/qs': 6.9.14
+ '@storybook/types': 8.0.9
+ '@types/qs': 6.9.15
dequal: 2.0.3
lodash: 4.17.21
memoizerific: 1.11.3
- qs: 6.12.0
+ qs: 6.12.1
tiny-invariant: 1.3.3
ts-dedent: 2.2.0
util-deprecate: 1.0.2
dev: true
- /@storybook/preview@8.0.5:
- resolution: {integrity: sha512-D2uY0LTjkGbpNwJJeqtv1NieBTtvt0IEEKH+srMNXOOM+KascTYGbBlEPkYSf5bZdMft5c1GXglVIhJIqTZntg==}
+ /@storybook/preview@8.0.9:
+ resolution: {integrity: sha512-tFsR8xc8AYBZZrZw8enklFbSQt7ZAV+rv20BoxwDhd3q7fjXyK7O4moGPqUwBZ7rukTG13nPoISxr+VXAk/HYA==}
dev: true
- /@storybook/react-docgen-typescript-plugin@1.0.6--canary.9.0c3f3b7.0(typescript@5.4.3)(webpack@5.91.0):
+ /@storybook/react-docgen-typescript-plugin@1.0.6--canary.9.0c3f3b7.0(typescript@5.4.5)(webpack@5.91.0):
resolution: {integrity: sha512-KUqXC3oa9JuQ0kZJLBhVdS4lOneKTOopnNBK4tUAgoxWQ3u/IjzdueZjFr7gyBrXMoU6duutk3RQR9u8ZpYJ4Q==}
peerDependencies:
typescript: '>= 4.x'
@@ -3813,26 +4323,26 @@ packages:
find-cache-dir: 3.3.2
flat-cache: 3.2.0
micromatch: 4.0.5
- react-docgen-typescript: 2.2.2(typescript@5.4.3)
+ react-docgen-typescript: 2.2.2(typescript@5.4.5)
tslib: 2.6.2
- typescript: 5.4.3
+ typescript: 5.4.5
webpack: 5.91.0(esbuild@0.20.2)
transitivePeerDependencies:
- supports-color
dev: true
- /@storybook/react-dom-shim@8.0.5(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-KIcLkCml5dIiVeChMyudz8Q/pZ/T86Y1LrHZvYD/t3iXH+HOOvg6KNsY6TZFM93Rqhk10AIEUNCgYzj2/QjddA==}
+ /@storybook/react-dom-shim@8.0.9(react-dom@18.3.0)(react@18.3.0):
+ resolution: {integrity: sha512-8011KlRuG3obr5pZZ7bcEyYYNWF3tR596YadoMd267NPoHKvwAbKL1L/DNgb6kiYjZDUf9QfaKSCWW31k0kcRQ==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
dependencies:
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
+ react: 18.3.0
+ react-dom: 18.3.0(react@18.3.0)
dev: true
- /@storybook/react-webpack5@8.0.5(esbuild@0.20.2)(react-dom@18.2.0)(react@18.2.0)(typescript@5.4.3):
- resolution: {integrity: sha512-EFhCxt2oEH69glk5CXMipO/my/EzqF8c4uqriKyiTCQr7wPAFRkEJT3+HaRrjiOiuafwtvxfDQHgTC2fg1DNwA==}
+ /@storybook/react-webpack5@8.0.9(esbuild@0.20.2)(react-dom@18.3.0)(react@18.3.0)(typescript@5.4.5):
+ resolution: {integrity: sha512-JJIEL7fXrSurzc/pUhvZMjwVZpKuWNwjq3N9jTjwy0GxN2lDEu6glHCyMglvij/GURWvm4eXsATHUfNf47B1AA==}
engines: {node: '>=18.0.0'}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
@@ -3842,13 +4352,13 @@ packages:
typescript:
optional: true
dependencies:
- '@storybook/builder-webpack5': 8.0.5(esbuild@0.20.2)(typescript@5.4.3)
- '@storybook/preset-react-webpack': 8.0.5(esbuild@0.20.2)(react-dom@18.2.0)(react@18.2.0)(typescript@5.4.3)
- '@storybook/react': 8.0.5(react-dom@18.2.0)(react@18.2.0)(typescript@5.4.3)
- '@types/node': 18.19.28
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
- typescript: 5.4.3
+ '@storybook/builder-webpack5': 8.0.9(esbuild@0.20.2)(typescript@5.4.5)
+ '@storybook/preset-react-webpack': 8.0.9(esbuild@0.20.2)(react-dom@18.3.0)(react@18.3.0)(typescript@5.4.5)
+ '@storybook/react': 8.0.9(react-dom@18.3.0)(react@18.3.0)(typescript@5.4.5)
+ '@types/node': 18.19.31
+ react: 18.3.0
+ react-dom: 18.3.0(react@18.3.0)
+ typescript: 5.4.5
transitivePeerDependencies:
- '@rspack/core'
- '@swc/core'
@@ -3859,8 +4369,8 @@ packages:
- webpack-cli
dev: true
- /@storybook/react@8.0.5(react-dom@18.2.0)(react@18.2.0)(typescript@5.4.3):
- resolution: {integrity: sha512-Vwq4xt8eSKE/PLPvunOFDlzBki6L3mP7LNVWCLkQba7vzuCOPjSZ0+95v/K8XQn3jVRXAMUnlPW1SKg21aKJdw==}
+ /@storybook/react@8.0.9(react-dom@18.3.0)(react@18.3.0)(typescript@5.4.5):
+ resolution: {integrity: sha512-NeQ6suZG3HKikwe3Tx9cAIaRx7uP8FKCmlVvIiBg4LTTI5orCt94PPakvuZukZcbkqvcCnEBkebAzwUpn8PiJw==}
engines: {node: '>=18.0.0'}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
@@ -3870,15 +4380,15 @@ packages:
typescript:
optional: true
dependencies:
- '@storybook/client-logger': 8.0.5
- '@storybook/docs-tools': 8.0.5
+ '@storybook/client-logger': 8.0.9
+ '@storybook/docs-tools': 8.0.9
'@storybook/global': 5.0.0
- '@storybook/preview-api': 8.0.5
- '@storybook/react-dom-shim': 8.0.5(react-dom@18.2.0)(react@18.2.0)
- '@storybook/types': 8.0.5
+ '@storybook/preview-api': 8.0.9
+ '@storybook/react-dom-shim': 8.0.9(react-dom@18.3.0)(react@18.3.0)
+ '@storybook/types': 8.0.9
'@types/escodegen': 0.0.6
'@types/estree': 0.0.51
- '@types/node': 18.19.28
+ '@types/node': 18.19.31
acorn: 7.4.1
acorn-jsx: 5.3.2(acorn@7.4.1)
acorn-walk: 7.2.0
@@ -3886,33 +4396,33 @@ packages:
html-tags: 3.3.1
lodash: 4.17.21
prop-types: 15.8.1
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
- react-element-to-jsx-string: 15.0.0(react-dom@18.2.0)(react@18.2.0)
+ react: 18.3.0
+ react-dom: 18.3.0(react@18.3.0)
+ react-element-to-jsx-string: 15.0.0(react-dom@18.3.0)(react@18.3.0)
semver: 7.6.0
ts-dedent: 2.2.0
type-fest: 2.19.0
- typescript: 5.4.3
+ typescript: 5.4.5
util-deprecate: 1.0.2
transitivePeerDependencies:
- encoding
- supports-color
dev: true
- /@storybook/router@8.0.5:
- resolution: {integrity: sha512-1d4CqNJB5sA25HCd7jZ4eVqMsdlD4r4SuFA/eR6fas0lk7yjVCpG1zWfvSSk5tKoVcNLSptc/TYBiSr2rcGRvw==}
+ /@storybook/router@8.0.9:
+ resolution: {integrity: sha512-aAOWxbM9J4mt+cp4o88T2PB29mgBBTOzU37/pUsTHYnKnR9XI4npXEXdN8Gv+ryqM0kj0AbBpz/llFlnR2MNNA==}
dependencies:
- '@storybook/client-logger': 8.0.5
+ '@storybook/client-logger': 8.0.9
memoizerific: 1.11.3
- qs: 6.12.0
+ qs: 6.12.1
dev: true
- /@storybook/telemetry@8.0.5:
- resolution: {integrity: sha512-KTt6wP78dn9hfsc0sR2CcFT/DWJgYqYuFBhc3NDgtT41ATLGgGniCQW9PtKLQc+FMofKejz1S+XXk0W322Pjxg==}
+ /@storybook/telemetry@8.0.9:
+ resolution: {integrity: sha512-AGGfcup06t+wxhBIkHd0iybieOh9PDVZQJ9oPct5JGB39+ni9wvs0WOD+MYlHbsjp8id7+aGkh6mYuYOvfck+Q==}
dependencies:
- '@storybook/client-logger': 8.0.5
- '@storybook/core-common': 8.0.5
- '@storybook/csf-tools': 8.0.5
+ '@storybook/client-logger': 8.0.9
+ '@storybook/core-common': 8.0.9
+ '@storybook/csf-tools': 8.0.9
chalk: 4.1.2
detect-package-manager: 2.0.1
fetch-retry: 5.0.6
@@ -3923,19 +4433,18 @@ packages:
- supports-color
dev: true
- /@storybook/test@8.0.5(@types/jest@29.5.12)(jest@27.5.1):
- resolution: {integrity: sha512-XpiRLsmZlkjoAGf3d7zcInByR25evYIzm3W4ST8+EPoI4Tcd/U+dGUQ9A6aNUuC6fJQ8Jh0M+EqNAZtcDT8lrA==}
+ /@storybook/test@8.0.9(@types/jest@29.5.12)(jest@27.5.1):
+ resolution: {integrity: sha512-bRd5tBJnPzR6UKbDXONWnFWtdkNOY99HMLDUWe5fTRo50GwkrpFBVqPflhdkruEeof0kAbBUbnoN2CIYgtnAFw==}
dependencies:
- '@storybook/client-logger': 8.0.5
- '@storybook/core-events': 8.0.5
- '@storybook/instrumenter': 8.0.5
- '@storybook/preview-api': 8.0.5
+ '@storybook/client-logger': 8.0.9
+ '@storybook/core-events': 8.0.9
+ '@storybook/instrumenter': 8.0.9
+ '@storybook/preview-api': 8.0.9
'@testing-library/dom': 9.3.4
'@testing-library/jest-dom': 6.4.2(@types/jest@29.5.12)(jest@27.5.1)
'@testing-library/user-event': 14.5.2(@testing-library/dom@9.3.4)
'@vitest/expect': 1.3.1
- '@vitest/spy': 1.4.0
- chai: 4.4.1
+ '@vitest/spy': 1.5.2
util: 0.12.5
transitivePeerDependencies:
- '@jest/globals'
@@ -3945,8 +4454,8 @@ packages:
- vitest
dev: true
- /@storybook/theming@8.0.5(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-Hy4hJaKg6UUyivkUM77nCHccv4/lO++ZG9F88qBFVPdBlCwMHHnUrR7Hgje5cCVAy0jK6LyYlD3cWO6nS9OR8w==}
+ /@storybook/theming@8.0.9(react-dom@18.3.0)(react@18.3.0):
+ resolution: {integrity: sha512-jgfDuYoiNMMirQiASN3Eg0hGDXsEtpdAcMxyShqYGwu9elxgD9yUnYC2nSckYsM74a3ZQ3JaViZ9ZFSe2FHmeQ==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
@@ -3956,18 +4465,18 @@ packages:
react-dom:
optional: true
dependencies:
- '@emotion/use-insertion-effect-with-fallbacks': 1.0.1(react@18.2.0)
- '@storybook/client-logger': 8.0.5
+ '@emotion/use-insertion-effect-with-fallbacks': 1.0.1(react@18.3.0)
+ '@storybook/client-logger': 8.0.9
'@storybook/global': 5.0.0
memoizerific: 1.11.3
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
+ react: 18.3.0
+ react-dom: 18.3.0(react@18.3.0)
dev: true
- /@storybook/types@8.0.5:
- resolution: {integrity: sha512-lYXwYF9qooQhYJkg3HWr6PD/vnQK+iO8fSKS8jtntwgJUKJvTbGZKAhNnS8WzNEI9jIp5QXFsSA367NjIDPaeQ==}
+ /@storybook/types@8.0.9:
+ resolution: {integrity: sha512-ew0EXzk9k4B557P1qIWYrnvUcgaE0WWA5qQS0AU8l+fRTp5nvl9O3SP/zNIB0SN1qDFO7dXr3idTNTyIikTcEQ==}
dependencies:
- '@storybook/channels': 8.0.5
+ '@storybook/channels': 8.0.9
'@types/express': 4.17.21
file-system-cache: 2.3.0
dev: true
@@ -3975,7 +4484,7 @@ packages:
/@surma/rollup-plugin-off-main-thread@2.2.3:
resolution: {integrity: sha512-lR8q/9W7hZpMWweNiAKU7NQerBnzQQLvi8qnTDU/fxItPhtZVMbPV3lbCwjhIlNBe9Bbr5V+KHshvWmVSG9cxQ==}
dependencies:
- ejs: 3.1.9
+ ejs: 3.1.10
json5: 2.2.3
magic-string: 0.25.9
string.prototype.matchall: 4.0.11
@@ -4057,7 +4566,7 @@ packages:
resolution: {integrity: sha512-V/wVh33j12hGh05IDg8GpIUXbjAPnTdPTKuP4VNLggnwaHMPNQNae2pRnyTAILWCQdz5GyMqtO488g7CKM8CBA==}
engines: {node: '>=10'}
dependencies:
- '@babel/core': 7.24.3
+ '@babel/core': 7.24.4
'@svgr/babel-preset': 5.5.0
'@svgr/hast-util-to-babel-ast': 5.5.0
svg-parser: 2.0.4
@@ -4078,10 +4587,10 @@ packages:
resolution: {integrity: sha512-DOBOK255wfQxguUta2INKkzPj6AIS6iafZYiYmHn6W3pHlycSRRlvWKCfLDG10fXfLWqE3DJHgRUOyJYmARa7g==}
engines: {node: '>=10'}
dependencies:
- '@babel/core': 7.24.3
- '@babel/plugin-transform-react-constant-elements': 7.24.1(@babel/core@7.24.3)
- '@babel/preset-env': 7.24.3(@babel/core@7.24.3)
- '@babel/preset-react': 7.24.1(@babel/core@7.24.3)
+ '@babel/core': 7.24.4
+ '@babel/plugin-transform-react-constant-elements': 7.24.1(@babel/core@7.24.4)
+ '@babel/preset-env': 7.24.4(@babel/core@7.24.4)
+ '@babel/preset-react': 7.24.1(@babel/core@7.24.4)
'@svgr/core': 5.5.0
'@svgr/plugin-jsx': 5.5.0
'@svgr/plugin-svgo': 5.5.0
@@ -4090,40 +4599,67 @@ packages:
- supports-color
dev: true
- /@tanstack/query-core@5.32.1:
- resolution: {integrity: sha512-mCWa1wdGb1jiny4+qYegbSeadcFj+Nq65KFSs4A1DRveoIq7SrTwUhqu7hrB6d54cQH5x59DfJvxusn3w1Cj/g==}
- dev: true
+ /@swc/helpers@0.5.2:
+ resolution: {integrity: sha512-E4KcWTpoLHqwPHLxidpOqQbcrZVgi0rsmmZXUle1jXmJfuIf/UWpczUJ7MZZ5tlxytgJXyp0w4PGkkeLiuIdZw==}
+ dependencies:
+ tslib: 2.6.2
+ dev: false
- /@tanstack/react-query@5.32.1(react@18.2.0):
- resolution: {integrity: sha512-+nXLMB0JK0XwTJ+lQt49DPNLrbSppni9N5W5yMR085yW3YaRKRUFhfVTER3TvQd1UycHpoGPFnt1gHiijXERAg==}
+ /@tailwindcss/nesting@0.0.0-insiders.565cd3e(postcss@8.4.38):
+ resolution: {integrity: sha512-WhHoFBx19TnH/c+xLwT/sxei6+4RpdfiyG3MYXfmLaMsADmVqBkF7B6lDalgZD9YdM459MF7DtxVbWkOrV7IaQ==}
peerDependencies:
- react: ^18.0.0
+ postcss: ^8.2.15
dependencies:
- '@tanstack/query-core': 5.32.1
- react: 18.2.0
+ postcss: 8.4.38
+ postcss-nested: 5.0.6(postcss@8.4.38)
dev: true
- /@tanstack/react-virtual@3.2.0(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-OEdMByf2hEfDa6XDbGlZN8qO6bTjlNKqjM3im9JG+u3mCL8jALy0T/67oDI001raUUPh1Bdmfn4ZvPOV5knpcg==}
+ /@tanstack/query-core@5.32.0:
+ resolution: {integrity: sha512-Z3flEgCat55DRXU5UMwYU1U+DgFZKA3iufyOKs+II7iRAo0uXkeU7PH5e6sOH1CGEag0IpKmZxlUFpCg6roSKw==}
+
+ /@tanstack/react-query@5.32.0(react@18.3.0):
+ resolution: {integrity: sha512-+E3UudQtarnx9A6xhpgMZapyF+aJfNBGFMgI459FnduEZqT/9KhOWnMOneZahLRt52yzskSA0AuOyLkXHK0yBA==}
+ peerDependencies:
+ react: ^18.0.0
+ dependencies:
+ '@tanstack/query-core': 5.32.0
+ react: 18.3.0
+
+ /@tanstack/react-virtual@3.4.0(react-dom@18.3.0)(react@18.3.0):
+ resolution: {integrity: sha512-GZN4xn/Tg5w7gvYeVcMVCeL4pEyUhvg+Cp6KX2Z01C4FRNxIWMgIQ9ibgMarNQfo+gt0PVLcEER4A9sNv/jlow==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
dependencies:
- '@tanstack/virtual-core': 3.2.0
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
+ '@tanstack/virtual-core': 3.4.0
+ react: 18.3.0
+ react-dom: 18.3.0(react@18.3.0)
dev: false
- /@tanstack/virtual-core@3.2.0:
- resolution: {integrity: sha512-P5XgYoAw/vfW65byBbJQCw+cagdXDT/qH6wmABiLt4v4YBT2q2vqCOhihe+D1Nt325F/S/0Tkv6C5z0Lv+VBQQ==}
+ /@tanstack/virtual-core@3.4.0:
+ resolution: {integrity: sha512-75jXqXxqq5M5Veb9KP1STi8kA5u408uOOAefk2ftHDGCpUk3RP6zX++QqfbmHJTBiU72NQ+ghgCZVts/Wocz8Q==}
dev: false
+ /@testing-library/dom@10.0.0:
+ resolution: {integrity: sha512-PmJPnogldqoVFf+EwbHvbBJ98MmqASV8kLrBYgsDNxQcFMeIS7JFL48sfyXvuMtgmWO/wMhh25odr+8VhDmn4g==}
+ engines: {node: '>=18'}
+ dependencies:
+ '@babel/code-frame': 7.24.2
+ '@babel/runtime': 7.24.4
+ '@types/aria-query': 5.0.4
+ aria-query: 5.3.0
+ chalk: 4.1.2
+ dom-accessibility-api: 0.5.16
+ lz-string: 1.5.0
+ pretty-format: 27.5.1
+ dev: true
+
/@testing-library/dom@8.20.1:
resolution: {integrity: sha512-/DiOQ5xBxgdYRC8LNk7U+RWat0S3qRLeIw3ZIkMQ9kkVlRmwD/Eg8k8CqIpD6GW7u20JIUOfMKbxtiLutpjQ4g==}
engines: {node: '>=12'}
dependencies:
'@babel/code-frame': 7.24.2
- '@babel/runtime': 7.24.1
+ '@babel/runtime': 7.24.4
'@types/aria-query': 5.0.4
aria-query: 5.1.3
chalk: 4.1.2
@@ -4137,7 +4673,7 @@ packages:
engines: {node: '>=14'}
dependencies:
'@babel/code-frame': 7.24.2
- '@babel/runtime': 7.24.1
+ '@babel/runtime': 7.24.4
'@types/aria-query': 5.0.4
aria-query: 5.1.3
chalk: 4.1.2
@@ -4151,7 +4687,7 @@ packages:
engines: {node: '>=8', npm: '>=6', yarn: '>=1'}
dependencies:
'@adobe/css-tools': 4.3.3
- '@babel/runtime': 7.24.1
+ '@babel/runtime': 7.24.4
'@types/testing-library__jest-dom': 5.14.9
aria-query: 5.3.0
chalk: 3.0.0
@@ -4183,7 +4719,7 @@ packages:
optional: true
dependencies:
'@adobe/css-tools': 4.3.3
- '@babel/runtime': 7.24.1
+ '@babel/runtime': 7.24.4
'@types/jest': 29.5.12
aria-query: 5.3.0
chalk: 3.0.0
@@ -4194,28 +4730,28 @@ packages:
redent: 3.0.0
dev: true
- /@testing-library/react@13.4.0(react-dom@18.2.0)(react@18.2.0):
+ /@testing-library/react@13.4.0(react-dom@18.3.0)(react@18.3.0):
resolution: {integrity: sha512-sXOGON+WNTh3MLE9rve97ftaZukN3oNf2KjDy7YTx6hcTO2uuLHuCGynMDhFwGw/jYf4OJ2Qk0i4i79qMNNkyw==}
engines: {node: '>=12'}
peerDependencies:
react: ^18.0.0
react-dom: ^18.0.0
dependencies:
- '@babel/runtime': 7.24.1
+ '@babel/runtime': 7.24.4
'@testing-library/dom': 8.20.1
- '@types/react-dom': 18.2.23
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
+ '@types/react-dom': 18.3.0
+ react: 18.3.0
+ react-dom: 18.3.0(react@18.3.0)
dev: true
- /@testing-library/user-event@13.5.0(@testing-library/dom@9.3.4):
+ /@testing-library/user-event@13.5.0(@testing-library/dom@10.0.0):
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.24.1
- '@testing-library/dom': 9.3.4
+ '@babel/runtime': 7.24.4
+ '@testing-library/dom': 10.0.0
dev: true
/@testing-library/user-event@14.5.2(@testing-library/dom@9.3.4):
@@ -4232,6 +4768,10 @@ packages:
engines: {node: '>= 6'}
dev: true
+ /@tootallnate/quickjs-emscripten@0.23.0:
+ resolution: {integrity: sha512-C5Mc6rdnsaJDjO3UpGW/CQTHtCKaYlScZTly4JIu97Jxo/odCiH0ITnDXSJPTOrEKk/ycSZ0AOgTmkDtkOsvIA==}
+ dev: true
+
/@trivago/prettier-plugin-sort-imports@4.3.0(prettier@3.2.5):
resolution: {integrity: sha512-r3n0onD3BTOVUNPhR4lhVK4/pABGpbA7bW3eumZnYdKaHkf1qEC+Mag6DPbGNuuh0eG8AaYj+YqmVHSiGslaTQ==}
peerDependencies:
@@ -4242,7 +4782,7 @@ packages:
optional: true
dependencies:
'@babel/generator': 7.17.7
- '@babel/parser': 7.24.1
+ '@babel/parser': 7.24.4
'@babel/traverse': 7.23.2
'@babel/types': 7.17.0
javascript-natural-sort: 0.7.1
@@ -4257,9 +4797,65 @@ packages:
engines: {node: '>=10.13.0'}
dev: true
- /@tweenjs/tween.js@23.1.1:
- resolution: {integrity: sha512-ZpboH7pCPPeyBWKf8c7TJswtCEQObFo3bOBYalm99NzZarATALYCo5OhbCa/n4RQyJyHfhkdx+hNrdL5ByFYDw==}
- dev: false
+ /@tsconfig/node10@1.0.11:
+ resolution: {integrity: sha512-DcRjDCujK/kCk/cUe8Xz8ZSpm8mS3mNNpta+jGCA6USEDfktlNvm1+IuZ9eTcDbNk41BHwpHHeW+N1lKCz4zOw==}
+ dev: true
+
+ /@tsconfig/node12@1.0.11:
+ resolution: {integrity: sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==}
+ dev: true
+
+ /@tsconfig/node14@1.0.3:
+ resolution: {integrity: sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==}
+ dev: true
+
+ /@tsconfig/node16@1.0.4:
+ resolution: {integrity: sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==}
+ dev: true
+
+ /@turbo/gen@1.13.3(@types/node@20.12.7)(typescript@5.4.5):
+ resolution: {integrity: sha512-l+EM1gGzckFMaaVQyj3BVRa0QJ+tpp8HfiHOhGpBWW3Vc0Hfj92AY87Di/7HGABa+HVY7ueatMi7DJG+zkJBYg==}
+ hasBin: true
+ dependencies:
+ '@turbo/workspaces': 1.13.3
+ chalk: 2.4.2
+ commander: 10.0.1
+ fs-extra: 10.1.0
+ inquirer: 8.2.6
+ minimatch: 9.0.4
+ node-plop: 0.26.3
+ proxy-agent: 6.4.0
+ ts-node: 10.9.2(@types/node@20.12.7)(typescript@5.4.5)
+ update-check: 1.5.4
+ validate-npm-package-name: 5.0.0
+ transitivePeerDependencies:
+ - '@swc/core'
+ - '@swc/wasm'
+ - '@types/node'
+ - supports-color
+ - typescript
+ dev: true
+
+ /@turbo/workspaces@1.13.3:
+ resolution: {integrity: sha512-QYZ8g3IVQebqNM8IsBlWYOWmOKjBZY55e6lx4EDOLuch1iWmyk+U8CLAI9UomMrSaKTs1Sx+PDkt63EgakvhUw==}
+ hasBin: true
+ dependencies:
+ chalk: 2.4.2
+ commander: 10.0.1
+ execa: 5.1.1
+ fast-glob: 3.3.2
+ fs-extra: 10.1.0
+ gradient-string: 2.0.2
+ inquirer: 8.2.6
+ js-yaml: 4.1.0
+ ora: 4.1.1
+ rimraf: 3.0.2
+ semver: 7.6.0
+ update-check: 1.5.4
+ dev: true
+
+ /@tweenjs/tween.js@23.1.2:
+ resolution: {integrity: sha512-kMCNaZCJugWI86xiEHaY338CU5JpD0B97p1j1IKNn/Zto8PgACjQx0UxbHjmOcLl/dDOBnItwD07KmCs75pxtQ==}
/@types/aria-query@5.0.4:
resolution: {integrity: sha512-rfT93uj5s0PRL7EzccGMs3brplhcrghnDoV26NqKhCAS1hVo+WdNsPvE/yb6ilfr5hi2MEk6d5EWJTKdxg8jVw==}
@@ -4268,7 +4864,7 @@ packages:
/@types/babel__core@7.20.5:
resolution: {integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==}
dependencies:
- '@babel/parser': 7.24.1
+ '@babel/parser': 7.24.4
'@babel/types': 7.24.0
'@types/babel__generator': 7.6.8
'@types/babel__template': 7.4.4
@@ -4284,7 +4880,7 @@ packages:
/@types/babel__template@7.4.4:
resolution: {integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==}
dependencies:
- '@babel/parser': 7.24.1
+ '@babel/parser': 7.24.4
'@babel/types': 7.24.0
dev: true
@@ -4298,32 +4894,32 @@ packages:
resolution: {integrity: sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==}
dependencies:
'@types/connect': 3.4.38
- '@types/node': 16.18.93
+ '@types/node': 20.12.7
dev: true
/@types/bonjour@3.5.13:
resolution: {integrity: sha512-z9fJ5Im06zvUL548KvYNecEVlA7cVDkGUi6kZusb04mpyEFKCIZJvloCcmpmLaIahDpOQGHaHmG6imtPMmPXGQ==}
dependencies:
- '@types/node': 16.18.93
+ '@types/node': 20.12.7
dev: true
/@types/connect-history-api-fallback@1.5.4:
resolution: {integrity: sha512-n6Cr2xS1h4uAulPRdlw6Jl6s1oG8KrVilPN2yUITEs+K48EzMJJ3W1xy8K5eWuFvjp3R74AOIGSmp2UfBJ8HFw==}
dependencies:
- '@types/express-serve-static-core': 4.17.43
- '@types/node': 16.18.93
+ '@types/express-serve-static-core': 4.19.0
+ '@types/node': 20.12.7
dev: true
/@types/connect@3.4.38:
resolution: {integrity: sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==}
dependencies:
- '@types/node': 16.18.93
+ '@types/node': 20.12.7
dev: true
/@types/cross-spawn@6.0.6:
resolution: {integrity: sha512-fXRhhUkG4H3TQk5dBhQ7m/JDdSNHKwR2BBia62lhwEIq9xGiQKLxd6LymNhn47SjXhsUEPmxi+PKw2OkW4LLjA==}
dependencies:
- '@types/node': 16.18.93
+ '@types/node': 20.12.7
dev: true
/@types/detect-port@1.3.5:
@@ -4353,12 +4949,12 @@ packages:
/@types/eslint-scope@3.7.7:
resolution: {integrity: sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==}
dependencies:
- '@types/eslint': 8.56.6
+ '@types/eslint': 8.56.10
'@types/estree': 1.0.5
dev: true
- /@types/eslint@8.56.6:
- resolution: {integrity: sha512-ymwc+qb1XkjT/gfoQwxIeHZ6ixH23A+tCT2ADSA/DPVKzAjwYkTXBMCQ/f6fe4wEa85Lhp26VPeUxI7wMhAi7A==}
+ /@types/eslint@8.56.10:
+ resolution: {integrity: sha512-Shavhk87gCtY2fhXDctcfS3e6FdxWkCx1iUZ9eEUbh7rTqlZT0/IzOkCOVt0fCjcFuZ9FPYfuezTBImfHCDBGQ==}
dependencies:
'@types/estree': 1.0.5
'@types/json-schema': 7.0.15
@@ -4376,11 +4972,11 @@ packages:
resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==}
dev: true
- /@types/express-serve-static-core@4.17.43:
- resolution: {integrity: sha512-oaYtiBirUOPQGSWNGPWnzyAFJ0BP3cwvN4oWZQY+zUBwpVIGsKUkpBpSztp74drYcjavs7SKFZ4DX1V2QeN8rg==}
+ /@types/express-serve-static-core@4.19.0:
+ resolution: {integrity: sha512-bGyep3JqPCRry1wq+O5n7oiBgGWmeIJXPjXXCo8EK0u8duZGSYar7cGqd3ML2JUsLGeB7fmc06KYo9fLGWqPvQ==}
dependencies:
- '@types/node': 16.18.93
- '@types/qs': 6.9.14
+ '@types/node': 20.12.7
+ '@types/qs': 6.9.15
'@types/range-parser': 1.2.7
'@types/send': 0.17.4
dev: true
@@ -4389,15 +4985,22 @@ packages:
resolution: {integrity: sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==}
dependencies:
'@types/body-parser': 1.19.5
- '@types/express-serve-static-core': 4.17.43
- '@types/qs': 6.9.14
- '@types/serve-static': 1.15.5
+ '@types/express-serve-static-core': 4.19.0
+ '@types/qs': 6.9.15
+ '@types/serve-static': 1.15.7
+ dev: true
+
+ /@types/glob@7.2.0:
+ resolution: {integrity: sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==}
+ dependencies:
+ '@types/minimatch': 5.1.2
+ '@types/node': 20.12.7
dev: true
/@types/graceful-fs@4.1.9:
resolution: {integrity: sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==}
dependencies:
- '@types/node': 16.18.93
+ '@types/node': 20.12.7
dev: true
/@types/hast@3.0.4:
@@ -4417,7 +5020,14 @@ packages:
/@types/http-proxy@1.17.14:
resolution: {integrity: sha512-SSrD0c1OQzlFX7pGu1eXxSEjemej64aaNPRhhVYUGqXh0BtldAAx37MG8btcumvpgKyZp1F5Gn3JkktdxiFv6w==}
dependencies:
- '@types/node': 16.18.93
+ '@types/node': 20.12.7
+ dev: true
+
+ /@types/inquirer@6.5.0:
+ resolution: {integrity: sha512-rjaYQ9b9y/VFGOpqBEXRavc3jh0a+e6evAbI31tMda8VlPaSy0AZJfXsvmIe3wklc7W6C3zCSfleuMXR7NOyXw==}
+ dependencies:
+ '@types/through': 0.0.33
+ rxjs: 6.6.7
dev: true
/@types/istanbul-lib-coverage@2.0.6:
@@ -4455,33 +5065,32 @@ packages:
resolution: {integrity: sha512-t7dhREVv6dbNj0q17X12j7yDG4bD/DHYX7o5/DbDxobP0HnGPgpRz2Ej77aL7TZT3DSw13fqUTj8J4mMnqa7WA==}
dev: true
- /@types/mdx@2.0.12:
- resolution: {integrity: sha512-H9VZ9YqE+H28FQVchC83RCs5xQ2J7mAAv6qdDEaWmXEVl3OpdH+xfrSUzQ1lp7U7oSTRZ0RvW08ASPJsYBi7Cw==}
+ /@types/mdx@2.0.13:
+ resolution: {integrity: sha512-+OWZQfAYyio6YkJb3HLxDrvnx6SWWDbC0zVPfBRzUk0/nqoDyf6dNxQi3eArPe8rJ473nobTMQ/8Zk+LxJ+Yuw==}
dev: true
/@types/mime@1.3.5:
resolution: {integrity: sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==}
dev: true
- /@types/mime@4.0.0:
- resolution: {integrity: sha512-5eEkJZ/BLvTE3vXGKkWlyTSUVZuzj23Wj8PoyOq2lt5I3CYbiLBOPb3XmCW6QcuOibIUE6emHXHt9E/F/rCa6w==}
- deprecated: This is a stub types definition. mime provides its own type definitions, so you do not need this installed.
- dependencies:
- mime: 4.0.1
+ /@types/minimatch@5.1.2:
+ resolution: {integrity: sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==}
dev: true
/@types/node-forge@1.3.11:
resolution: {integrity: sha512-FQx220y22OKNTqaByeBGqHWYz4cl94tpcxeFdvBo3wjG6XPBuZ0BNgNZRV5J5TFmmcsJ4IzsLkmGRiQbnYsBEQ==}
dependencies:
- '@types/node': 16.18.93
+ '@types/node': 20.12.7
dev: true
- /@types/node@16.18.93:
- resolution: {integrity: sha512-epWuohp6c0bQt0j3RYCiP9x52axHVn+CjS1Rx1VjPwF+ySg8lrigH3yXGs88XqnA+jGM2qnSMuFTsBxft+hO1Q==}
+ /@types/node@18.19.31:
+ resolution: {integrity: sha512-ArgCD39YpyyrtFKIqMDvjz79jto5fcI/SVUs2HwB+f0dAzq68yqOdyaSivLiLugSziTpNXLQrVb7RZFmdZzbhA==}
+ dependencies:
+ undici-types: 5.26.5
dev: true
- /@types/node@18.19.28:
- resolution: {integrity: sha512-J5cOGD9n4x3YGgVuaND6khm5x07MMdAKkRyXnjVR6KFhLMNh2yONGiP7Z+4+tBOt5mK+GvDTiacTOVGGpqiecw==}
+ /@types/node@20.12.7:
+ resolution: {integrity: sha512-wq0cICSkRLVaf3UGLMGItu/PtdY7oaXaI/RVU+xliKVOtRna3PRY57ZDfztpDL0n11vfymMUnXv8QwYCO7L1wg==}
dependencies:
undici-types: 5.26.5
dev: true
@@ -4508,22 +5117,21 @@ packages:
resolution: {integrity: sha512-hroOstUScF6zhIi+5+x0dzqrHA1EJi+Irri6b1fxolMTqqHIV/Cg77EtnQcZqZCu8hR3mX2BzIxN4/GzI68Kfw==}
dev: true
- /@types/qs@6.9.14:
- resolution: {integrity: sha512-5khscbd3SwWMhFqylJBLQ0zIu7c1K6Vz0uBIt915BI3zV0q1nfjRQD3RqSBcPaO6PHEF4ov/t9y89fSiyThlPA==}
+ /@types/qs@6.9.15:
+ resolution: {integrity: sha512-uXHQKES6DQKKCLh441Xv/dwxOq1TVS3JPUMlEqoEglvlhR6Mxnlew/Xq/LRVHpLyk7iK3zODe1qYHIMltO7XGg==}
dev: true
/@types/range-parser@1.2.7:
resolution: {integrity: sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==}
dev: true
- /@types/react-dom@18.2.23:
- resolution: {integrity: sha512-ZQ71wgGOTmDYpnav2knkjr3qXdAFu0vsk8Ci5w3pGAIdj7/kKAyn+VsQDhXsmzzzepAiI9leWMmubXz690AI/A==}
+ /@types/react-dom@18.3.0:
+ resolution: {integrity: sha512-EhwApuTmMBmXuFOikhQLIBUn6uFg81SwLMOAUgodJF14SOBOCMdU04gDoYi0WOJJHD144TL32z4yDqCW3dnkQg==}
dependencies:
- '@types/react': 18.2.73
- dev: true
+ '@types/react': 18.3.0
- /@types/react@18.2.73:
- resolution: {integrity: sha512-XcGdod0Jjv84HOC7N5ziY3x+qL0AfmubvKOZ9hJjJ2yd5EE+KYjWhdOjt387e9HPheHkdggF9atTifMRtyAaRA==}
+ /@types/react@18.3.0:
+ resolution: {integrity: sha512-DiUcKjzE6soLyln8NNZmyhcQjVv+WsUIFSqetMN0p8927OztKT4VTfFTqsbAi5oAGIcgOmOajlfBqyptDDjZRw==}
dependencies:
'@types/prop-types': 15.7.12
csstype: 3.1.3
@@ -4531,7 +5139,7 @@ packages:
/@types/resolve@1.17.1:
resolution: {integrity: sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==}
dependencies:
- '@types/node': 16.18.93
+ '@types/node': 20.12.7
dev: true
/@types/resolve@1.20.2:
@@ -4554,7 +5162,7 @@ packages:
resolution: {integrity: sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==}
dependencies:
'@types/mime': 1.3.5
- '@types/node': 16.18.93
+ '@types/node': 20.12.7
dev: true
/@types/serve-index@1.9.4:
@@ -4563,18 +5171,18 @@ packages:
'@types/express': 4.17.21
dev: true
- /@types/serve-static@1.15.5:
- resolution: {integrity: sha512-PDRk21MnK70hja/YF8AHfC7yIsiQHn1rcXx7ijCFBX/k+XQJhQT/gw3xekXKJvx+5SXaMMS8oqQy09Mzvz2TuQ==}
+ /@types/serve-static@1.15.7:
+ resolution: {integrity: sha512-W8Ym+h8nhuRwaKPaDw34QUkwsGi6Rc4yYqvKFo5rm2FUEhCFbzVWrxXUxuKK8TASjWsysJY0nsmNCGhCOIsrOw==}
dependencies:
'@types/http-errors': 2.0.4
- '@types/mime': 4.0.0
- '@types/node': 16.18.93
+ '@types/node': 20.12.7
+ '@types/send': 0.17.4
dev: true
/@types/sockjs@0.3.36:
resolution: {integrity: sha512-MK9V6NzAS1+Ud7JV9lJLFqW85VbC9dq3LmwZCuBe4wBDgKC0Kj/jd8Xl+nSviU+Qc3+m7umHHyHg//2KSa0a0Q==}
dependencies:
- '@types/node': 16.18.93
+ '@types/node': 20.12.7
dev: true
/@types/stack-utils@2.0.3:
@@ -4587,6 +5195,16 @@ packages:
'@types/jest': 29.5.12
dev: true
+ /@types/through@0.0.33:
+ resolution: {integrity: sha512-HsJ+z3QuETzP3cswwtzt2vEIiHBk/dCcHGhbmG5X3ecnwFD/lPrMpliGXxSCg03L9AhrdwA4Oz/qfspkDW+xGQ==}
+ dependencies:
+ '@types/node': 20.12.7
+ dev: true
+
+ /@types/tinycolor2@1.4.6:
+ resolution: {integrity: sha512-iEN8J0BoMnsWBqjVbWH/c0G0Hh7O21lpR2/+PrvAVgWdzL7eexIFm4JN/Wn10PTcmNdtS6U67r499mlWMXOxNw==}
+ dev: true
+
/@types/trusted-types@2.0.7:
resolution: {integrity: sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw==}
dev: true
@@ -4602,7 +5220,7 @@ packages:
/@types/ws@8.5.10:
resolution: {integrity: sha512-vmQSUcfalpIq0R9q7uTo2lXs6eGIpt9wtnLdMv9LVpIjCA/+ufZRozlVoVelIYixx1ugCBKDhn89vnsEGOCx9A==}
dependencies:
- '@types/node': 16.18.93
+ '@types/node': 20.12.7
dev: true
/@types/yargs-parser@21.0.3:
@@ -4621,7 +5239,7 @@ packages:
'@types/yargs-parser': 21.0.3
dev: true
- /@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0)(eslint@8.57.0)(typescript@5.4.3):
+ /@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0)(eslint@8.57.0)(typescript@5.4.5):
resolution: {integrity: sha512-TiZzBSJja/LbhNPvk6yc0JrX9XqhQ0hdh6M2svYfsHGejaKFIAGd9MQ+ERIMzLGlN/kZoYIgdxFV0PuljTKXag==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
@@ -4633,24 +5251,53 @@ packages:
optional: true
dependencies:
'@eslint-community/regexpp': 4.10.0
- '@typescript-eslint/parser': 5.62.0(eslint@8.57.0)(typescript@5.4.3)
+ '@typescript-eslint/parser': 5.62.0(eslint@8.57.0)(typescript@5.4.5)
'@typescript-eslint/scope-manager': 5.62.0
- '@typescript-eslint/type-utils': 5.62.0(eslint@8.57.0)(typescript@5.4.3)
- '@typescript-eslint/utils': 5.62.0(eslint@8.57.0)(typescript@5.4.3)
+ '@typescript-eslint/type-utils': 5.62.0(eslint@8.57.0)(typescript@5.4.5)
+ '@typescript-eslint/utils': 5.62.0(eslint@8.57.0)(typescript@5.4.5)
debug: 4.3.4
eslint: 8.57.0
graphemer: 1.4.0
ignore: 5.3.1
natural-compare-lite: 1.4.0
semver: 7.6.0
- tsutils: 3.21.0(typescript@5.4.3)
- typescript: 5.4.3
+ tsutils: 3.21.0(typescript@5.4.5)
+ typescript: 5.4.5
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /@typescript-eslint/eslint-plugin@6.21.0(@typescript-eslint/parser@6.21.0)(eslint@8.57.0)(typescript@5.4.5):
+ resolution: {integrity: sha512-oy9+hTPCUFpngkEZUSzbf9MxI65wbKFoQYsgPdILTfbUldp5ovUuphZVe4i30emU9M/kP+T64Di0mxl7dSw3MA==}
+ engines: {node: ^16.0.0 || >=18.0.0}
+ peerDependencies:
+ '@typescript-eslint/parser': ^6.0.0 || ^6.0.0-alpha
+ eslint: ^7.0.0 || ^8.0.0
+ typescript: '*'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+ dependencies:
+ '@eslint-community/regexpp': 4.10.0
+ '@typescript-eslint/parser': 6.21.0(eslint@8.57.0)(typescript@5.4.5)
+ '@typescript-eslint/scope-manager': 6.21.0
+ '@typescript-eslint/type-utils': 6.21.0(eslint@8.57.0)(typescript@5.4.5)
+ '@typescript-eslint/utils': 6.21.0(eslint@8.57.0)(typescript@5.4.5)
+ '@typescript-eslint/visitor-keys': 6.21.0
+ debug: 4.3.4
+ eslint: 8.57.0
+ graphemer: 1.4.0
+ ignore: 5.3.1
+ natural-compare: 1.4.0
+ semver: 7.6.0
+ ts-api-utils: 1.3.0(typescript@5.4.5)
+ typescript: 5.4.5
transitivePeerDependencies:
- supports-color
dev: true
- /@typescript-eslint/eslint-plugin@7.4.0(@typescript-eslint/parser@7.4.0)(eslint@8.57.0)(typescript@5.4.3):
- resolution: {integrity: sha512-yHMQ/oFaM7HZdVrVm/M2WHaNPgyuJH4WelkSVEWSSsir34kxW2kDJCxlXRhhGWEsMN0WAW/vLpKfKVcm8k+MPw==}
+ /@typescript-eslint/eslint-plugin@7.7.1(@typescript-eslint/parser@7.7.1)(eslint@8.57.0)(typescript@5.4.5):
+ resolution: {integrity: sha512-KwfdWXJBOviaBVhxO3p5TJiLpNuh2iyXyjmWN0f1nU87pwyvfS0EmjC6ukQVYVFJd/K1+0NWGPDXiyEyQorn0Q==}
engines: {node: ^18.18.0 || >=20.0.0}
peerDependencies:
'@typescript-eslint/parser': ^7.0.0
@@ -4661,37 +5308,37 @@ packages:
optional: true
dependencies:
'@eslint-community/regexpp': 4.10.0
- '@typescript-eslint/parser': 7.4.0(eslint@8.57.0)(typescript@5.4.3)
- '@typescript-eslint/scope-manager': 7.4.0
- '@typescript-eslint/type-utils': 7.4.0(eslint@8.57.0)(typescript@5.4.3)
- '@typescript-eslint/utils': 7.4.0(eslint@8.57.0)(typescript@5.4.3)
- '@typescript-eslint/visitor-keys': 7.4.0
+ '@typescript-eslint/parser': 7.7.1(eslint@8.57.0)(typescript@5.4.5)
+ '@typescript-eslint/scope-manager': 7.7.1
+ '@typescript-eslint/type-utils': 7.7.1(eslint@8.57.0)(typescript@5.4.5)
+ '@typescript-eslint/utils': 7.7.1(eslint@8.57.0)(typescript@5.4.5)
+ '@typescript-eslint/visitor-keys': 7.7.1
debug: 4.3.4
eslint: 8.57.0
graphemer: 1.4.0
ignore: 5.3.1
natural-compare: 1.4.0
semver: 7.6.0
- ts-api-utils: 1.3.0(typescript@5.4.3)
- typescript: 5.4.3
+ ts-api-utils: 1.3.0(typescript@5.4.5)
+ typescript: 5.4.5
transitivePeerDependencies:
- supports-color
dev: true
- /@typescript-eslint/experimental-utils@5.62.0(eslint@8.57.0)(typescript@5.4.3):
+ /@typescript-eslint/experimental-utils@5.62.0(eslint@8.57.0)(typescript@5.4.5):
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.57.0)(typescript@5.4.3)
+ '@typescript-eslint/utils': 5.62.0(eslint@8.57.0)(typescript@5.4.5)
eslint: 8.57.0
transitivePeerDependencies:
- supports-color
- typescript
dev: true
- /@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.4.3):
+ /@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.4.5):
resolution: {integrity: sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
@@ -4703,16 +5350,58 @@ packages:
dependencies:
'@typescript-eslint/scope-manager': 5.62.0
'@typescript-eslint/types': 5.62.0
- '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.4.3)
+ '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.4.5)
+ debug: 4.3.4
+ eslint: 8.57.0
+ typescript: 5.4.5
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.5):
+ resolution: {integrity: sha512-tbsV1jPne5CkFQCgPBcDOt30ItF7aJoZL997JSF7MhGQqOeT3svWRYxiqlfA5RUdlHN6Fi+EI9bxqbdyAUZjYQ==}
+ engines: {node: ^16.0.0 || >=18.0.0}
+ peerDependencies:
+ eslint: ^7.0.0 || ^8.0.0
+ typescript: '*'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+ dependencies:
+ '@typescript-eslint/scope-manager': 6.21.0
+ '@typescript-eslint/types': 6.21.0
+ '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.4.5)
+ '@typescript-eslint/visitor-keys': 6.21.0
+ debug: 4.3.4
+ eslint: 8.57.0
+ typescript: 5.4.5
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.4.5):
+ resolution: {integrity: sha512-5FKsVcHTk6TafQKQbuIVkXq58Fnbkd2wDL4LB7AURN7RUOu1utVP+G8+6u3ZhEroW3DF6hyo3ZEXxgKgp4KeCg==}
+ engines: {node: ^16.0.0 || >=18.0.0}
+ peerDependencies:
+ eslint: ^8.56.0
+ typescript: '*'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+ dependencies:
+ '@typescript-eslint/scope-manager': 7.2.0
+ '@typescript-eslint/types': 7.2.0
+ '@typescript-eslint/typescript-estree': 7.2.0(typescript@5.4.5)
+ '@typescript-eslint/visitor-keys': 7.2.0
debug: 4.3.4
eslint: 8.57.0
- typescript: 5.4.3
+ typescript: 5.4.5
transitivePeerDependencies:
- supports-color
dev: true
- /@typescript-eslint/parser@7.4.0(eslint@8.57.0)(typescript@5.4.3):
- resolution: {integrity: sha512-ZvKHxHLusweEUVwrGRXXUVzFgnWhigo4JurEj0dGF1tbcGh6buL+ejDdjxOQxv6ytcY1uhun1p2sm8iWStlgLQ==}
+ /@typescript-eslint/parser@7.7.1(eslint@8.57.0)(typescript@5.4.5):
+ resolution: {integrity: sha512-vmPzBOOtz48F6JAGVS/kZYk4EkXao6iGrD838sp1w3NQQC0W8ry/q641KU4PrG7AKNAf56NOcR8GOpH8l9FPCw==}
engines: {node: ^18.18.0 || >=20.0.0}
peerDependencies:
eslint: ^8.56.0
@@ -4721,13 +5410,13 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/scope-manager': 7.4.0
- '@typescript-eslint/types': 7.4.0
- '@typescript-eslint/typescript-estree': 7.4.0(typescript@5.4.3)
- '@typescript-eslint/visitor-keys': 7.4.0
+ '@typescript-eslint/scope-manager': 7.7.1
+ '@typescript-eslint/types': 7.7.1
+ '@typescript-eslint/typescript-estree': 7.7.1(typescript@5.4.5)
+ '@typescript-eslint/visitor-keys': 7.7.1
debug: 4.3.4
eslint: 8.57.0
- typescript: 5.4.3
+ typescript: 5.4.5
transitivePeerDependencies:
- supports-color
dev: true
@@ -4740,15 +5429,31 @@ packages:
'@typescript-eslint/visitor-keys': 5.62.0
dev: true
- /@typescript-eslint/scope-manager@7.4.0:
- resolution: {integrity: sha512-68VqENG5HK27ypafqLVs8qO+RkNc7TezCduYrx8YJpXq2QGZ30vmNZGJJJC48+MVn4G2dCV8m5ZTVnzRexTVtw==}
+ /@typescript-eslint/scope-manager@6.21.0:
+ resolution: {integrity: sha512-OwLUIWZJry80O99zvqXVEioyniJMa+d2GrqpUTqi5/v5D5rOrppJVBPa0yKCblcigC0/aYAzxxqQ1B+DS2RYsg==}
+ engines: {node: ^16.0.0 || >=18.0.0}
+ dependencies:
+ '@typescript-eslint/types': 6.21.0
+ '@typescript-eslint/visitor-keys': 6.21.0
+ dev: true
+
+ /@typescript-eslint/scope-manager@7.2.0:
+ resolution: {integrity: sha512-Qh976RbQM/fYtjx9hs4XkayYujB/aPwglw2choHmf3zBjB4qOywWSdt9+KLRdHubGcoSwBnXUH2sR3hkyaERRg==}
+ engines: {node: ^16.0.0 || >=18.0.0}
+ dependencies:
+ '@typescript-eslint/types': 7.2.0
+ '@typescript-eslint/visitor-keys': 7.2.0
+ dev: true
+
+ /@typescript-eslint/scope-manager@7.7.1:
+ resolution: {integrity: sha512-PytBif2SF+9SpEUKynYn5g1RHFddJUcyynGpztX3l/ik7KmZEv19WCMhUBkHXPU9es/VWGD3/zg3wg90+Dh2rA==}
engines: {node: ^18.18.0 || >=20.0.0}
dependencies:
- '@typescript-eslint/types': 7.4.0
- '@typescript-eslint/visitor-keys': 7.4.0
+ '@typescript-eslint/types': 7.7.1
+ '@typescript-eslint/visitor-keys': 7.7.1
dev: true
- /@typescript-eslint/type-utils@5.62.0(eslint@8.57.0)(typescript@5.4.3):
+ /@typescript-eslint/type-utils@5.62.0(eslint@8.57.0)(typescript@5.4.5):
resolution: {integrity: sha512-xsSQreu+VnfbqQpW5vnCJdq1Z3Q0U31qiWmRhr98ONQmcp/yhiPJFPq8MXiJVLiksmOKSjIldZzkebzHuCGzew==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
@@ -4758,18 +5463,38 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.4.3)
- '@typescript-eslint/utils': 5.62.0(eslint@8.57.0)(typescript@5.4.3)
+ '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.4.5)
+ '@typescript-eslint/utils': 5.62.0(eslint@8.57.0)(typescript@5.4.5)
+ debug: 4.3.4
+ eslint: 8.57.0
+ tsutils: 3.21.0(typescript@5.4.5)
+ typescript: 5.4.5
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /@typescript-eslint/type-utils@6.21.0(eslint@8.57.0)(typescript@5.4.5):
+ resolution: {integrity: sha512-rZQI7wHfao8qMX3Rd3xqeYSMCL3SoiSQLBATSiVKARdFGCYSRvmViieZjqc58jKgs8Y8i9YvVVhRbHSTA4VBag==}
+ engines: {node: ^16.0.0 || >=18.0.0}
+ peerDependencies:
+ eslint: ^7.0.0 || ^8.0.0
+ typescript: '*'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+ dependencies:
+ '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.4.5)
+ '@typescript-eslint/utils': 6.21.0(eslint@8.57.0)(typescript@5.4.5)
debug: 4.3.4
eslint: 8.57.0
- tsutils: 3.21.0(typescript@5.4.3)
- typescript: 5.4.3
+ ts-api-utils: 1.3.0(typescript@5.4.5)
+ typescript: 5.4.5
transitivePeerDependencies:
- supports-color
dev: true
- /@typescript-eslint/type-utils@7.4.0(eslint@8.57.0)(typescript@5.4.3):
- resolution: {integrity: sha512-247ETeHgr9WTRMqHbbQdzwzhuyaJ8dPTuyuUEMANqzMRB1rj/9qFIuIXK7l0FX9i9FXbHeBQl/4uz6mYuCE7Aw==}
+ /@typescript-eslint/type-utils@7.7.1(eslint@8.57.0)(typescript@5.4.5):
+ resolution: {integrity: sha512-ZksJLW3WF7o75zaBPScdW1Gbkwhd/lyeXGf1kQCxJaOeITscoSl0MjynVvCzuV5boUz/3fOI06Lz8La55mu29Q==}
engines: {node: ^18.18.0 || >=20.0.0}
peerDependencies:
eslint: ^8.56.0
@@ -4778,12 +5503,12 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/typescript-estree': 7.4.0(typescript@5.4.3)
- '@typescript-eslint/utils': 7.4.0(eslint@8.57.0)(typescript@5.4.3)
+ '@typescript-eslint/typescript-estree': 7.7.1(typescript@5.4.5)
+ '@typescript-eslint/utils': 7.7.1(eslint@8.57.0)(typescript@5.4.5)
debug: 4.3.4
eslint: 8.57.0
- ts-api-utils: 1.3.0(typescript@5.4.3)
- typescript: 5.4.3
+ ts-api-utils: 1.3.0(typescript@5.4.5)
+ typescript: 5.4.5
transitivePeerDependencies:
- supports-color
dev: true
@@ -4793,12 +5518,22 @@ packages:
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dev: true
- /@typescript-eslint/types@7.4.0:
- resolution: {integrity: sha512-mjQopsbffzJskos5B4HmbsadSJQWaRK0UxqQ7GuNA9Ga4bEKeiO6b2DnB6cM6bpc8lemaPseh0H9B/wyg+J7rw==}
+ /@typescript-eslint/types@6.21.0:
+ resolution: {integrity: sha512-1kFmZ1rOm5epu9NZEZm1kckCDGj5UJEf7P1kliH4LKu/RkwpsfqqGmY2OOcUs18lSlQBKLDYBOGxRVtrMN5lpg==}
+ engines: {node: ^16.0.0 || >=18.0.0}
+ dev: true
+
+ /@typescript-eslint/types@7.2.0:
+ resolution: {integrity: sha512-XFtUHPI/abFhm4cbCDc5Ykc8npOKBSJePY3a3s+lwumt7XWJuzP5cZcfZ610MIPHjQjNsOLlYK8ASPaNG8UiyA==}
+ engines: {node: ^16.0.0 || >=18.0.0}
+ dev: true
+
+ /@typescript-eslint/types@7.7.1:
+ resolution: {integrity: sha512-AmPmnGW1ZLTpWa+/2omPrPfR7BcbUU4oha5VIbSbS1a1Tv966bklvLNXxp3mrbc+P2j4MNOTfDffNsk4o0c6/w==}
engines: {node: ^18.18.0 || >=20.0.0}
dev: true
- /@typescript-eslint/typescript-estree@5.62.0(typescript@5.4.3):
+ /@typescript-eslint/typescript-estree@5.62.0(typescript@5.4.5):
resolution: {integrity: sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
@@ -4813,35 +5548,79 @@ packages:
globby: 11.1.0
is-glob: 4.0.3
semver: 7.6.0
- tsutils: 3.21.0(typescript@5.4.3)
- typescript: 5.4.3
+ tsutils: 3.21.0(typescript@5.4.5)
+ typescript: 5.4.5
transitivePeerDependencies:
- supports-color
dev: true
- /@typescript-eslint/typescript-estree@7.4.0(typescript@5.4.3):
- resolution: {integrity: sha512-A99j5AYoME/UBQ1ucEbbMEmGkN7SE0BvZFreSnTd1luq7yulcHdyGamZKizU7canpGDWGJ+Q6ZA9SyQobipePg==}
- engines: {node: ^18.18.0 || >=20.0.0}
+ /@typescript-eslint/typescript-estree@6.21.0(typescript@5.4.5):
+ resolution: {integrity: sha512-6npJTkZcO+y2/kr+z0hc4HwNfrrP4kNYh57ek7yCNlrBjWQ1Y0OS7jiZTkgumrvkX5HkEKXFZkkdFNkaW2wmUQ==}
+ engines: {node: ^16.0.0 || >=18.0.0}
+ peerDependencies:
+ typescript: '*'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+ dependencies:
+ '@typescript-eslint/types': 6.21.0
+ '@typescript-eslint/visitor-keys': 6.21.0
+ debug: 4.3.4
+ globby: 11.1.0
+ is-glob: 4.0.3
+ minimatch: 9.0.3
+ semver: 7.6.0
+ ts-api-utils: 1.3.0(typescript@5.4.5)
+ typescript: 5.4.5
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /@typescript-eslint/typescript-estree@7.2.0(typescript@5.4.5):
+ resolution: {integrity: sha512-cyxS5WQQCoBwSakpMrvMXuMDEbhOo9bNHHrNcEWis6XHx6KF518tkF1wBvKIn/tpq5ZpUYK7Bdklu8qY0MsFIA==}
+ engines: {node: ^16.0.0 || >=18.0.0}
peerDependencies:
typescript: '*'
peerDependenciesMeta:
typescript:
optional: true
dependencies:
- '@typescript-eslint/types': 7.4.0
- '@typescript-eslint/visitor-keys': 7.4.0
+ '@typescript-eslint/types': 7.2.0
+ '@typescript-eslint/visitor-keys': 7.2.0
debug: 4.3.4
globby: 11.1.0
is-glob: 4.0.3
minimatch: 9.0.3
semver: 7.6.0
- ts-api-utils: 1.3.0(typescript@5.4.3)
- typescript: 5.4.3
+ ts-api-utils: 1.3.0(typescript@5.4.5)
+ typescript: 5.4.5
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /@typescript-eslint/typescript-estree@7.7.1(typescript@5.4.5):
+ resolution: {integrity: sha512-CXe0JHCXru8Fa36dteXqmH2YxngKJjkQLjxzoj6LYwzZ7qZvgsLSc+eqItCrqIop8Vl2UKoAi0StVWu97FQZIQ==}
+ engines: {node: ^18.18.0 || >=20.0.0}
+ peerDependencies:
+ typescript: '*'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+ dependencies:
+ '@typescript-eslint/types': 7.7.1
+ '@typescript-eslint/visitor-keys': 7.7.1
+ debug: 4.3.4
+ globby: 11.1.0
+ is-glob: 4.0.3
+ minimatch: 9.0.4
+ semver: 7.6.0
+ ts-api-utils: 1.3.0(typescript@5.4.5)
+ typescript: 5.4.5
transitivePeerDependencies:
- supports-color
dev: true
- /@typescript-eslint/utils@5.62.0(eslint@8.57.0)(typescript@5.4.3):
+ /@typescript-eslint/utils@5.62.0(eslint@8.57.0)(typescript@5.4.5):
resolution: {integrity: sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
@@ -4852,7 +5631,7 @@ packages:
'@types/semver': 7.5.8
'@typescript-eslint/scope-manager': 5.62.0
'@typescript-eslint/types': 5.62.0
- '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.4.3)
+ '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.4.5)
eslint: 8.57.0
eslint-scope: 5.1.1
semver: 7.6.0
@@ -4861,8 +5640,27 @@ packages:
- typescript
dev: true
- /@typescript-eslint/utils@7.4.0(eslint@8.57.0)(typescript@5.4.3):
- resolution: {integrity: sha512-NQt9QLM4Tt8qrlBVY9lkMYzfYtNz8/6qwZg8pI3cMGlPnj6mOpRxxAm7BMJN9K0AiY+1BwJ5lVC650YJqYOuNg==}
+ /@typescript-eslint/utils@6.21.0(eslint@8.57.0)(typescript@5.4.5):
+ resolution: {integrity: sha512-NfWVaC8HP9T8cbKQxHcsJBY5YE1O33+jpMwN45qzWWaPDZgLIbo12toGMWnmhvCpd3sIxkpDw3Wv1B3dYrbDQQ==}
+ 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.57.0)
+ '@types/json-schema': 7.0.15
+ '@types/semver': 7.5.8
+ '@typescript-eslint/scope-manager': 6.21.0
+ '@typescript-eslint/types': 6.21.0
+ '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.4.5)
+ eslint: 8.57.0
+ semver: 7.6.0
+ transitivePeerDependencies:
+ - supports-color
+ - typescript
+ dev: true
+
+ /@typescript-eslint/utils@7.7.1(eslint@8.57.0)(typescript@5.4.5):
+ resolution: {integrity: sha512-QUvBxPEaBXf41ZBbaidKICgVL8Hin0p6prQDu6bbetWo39BKbWJxRsErOzMNT1rXvTll+J7ChrbmMCXM9rsvOQ==}
engines: {node: ^18.18.0 || >=20.0.0}
peerDependencies:
eslint: ^8.56.0
@@ -4870,9 +5668,9 @@ packages:
'@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0)
'@types/json-schema': 7.0.15
'@types/semver': 7.5.8
- '@typescript-eslint/scope-manager': 7.4.0
- '@typescript-eslint/types': 7.4.0
- '@typescript-eslint/typescript-estree': 7.4.0(typescript@5.4.3)
+ '@typescript-eslint/scope-manager': 7.7.1
+ '@typescript-eslint/types': 7.7.1
+ '@typescript-eslint/typescript-estree': 7.7.1(typescript@5.4.5)
eslint: 8.57.0
semver: 7.6.0
transitivePeerDependencies:
@@ -4888,11 +5686,27 @@ packages:
eslint-visitor-keys: 3.4.3
dev: true
- /@typescript-eslint/visitor-keys@7.4.0:
- resolution: {integrity: sha512-0zkC7YM0iX5Y41homUUeW1CHtZR01K3ybjM1l6QczoMuay0XKtrb93kv95AxUGwdjGr64nNqnOCwmEl616N8CA==}
+ /@typescript-eslint/visitor-keys@6.21.0:
+ resolution: {integrity: sha512-JJtkDduxLi9bivAB+cYOVMtbkqdPOhZ+ZI5LC47MIRrDV4Yn2o+ZnW10Nkmr28xRpSpdJ6Sm42Hjf2+REYXm0A==}
+ engines: {node: ^16.0.0 || >=18.0.0}
+ dependencies:
+ '@typescript-eslint/types': 6.21.0
+ eslint-visitor-keys: 3.4.3
+ dev: true
+
+ /@typescript-eslint/visitor-keys@7.2.0:
+ resolution: {integrity: sha512-c6EIQRHhcpl6+tO8EMR+kjkkV+ugUNXOmeASA1rlzkd8EPIriavpWoiEz1HR/VLhbVIdhqnV6E7JZm00cBDx2A==}
+ engines: {node: ^16.0.0 || >=18.0.0}
+ dependencies:
+ '@typescript-eslint/types': 7.2.0
+ eslint-visitor-keys: 3.4.3
+ dev: true
+
+ /@typescript-eslint/visitor-keys@7.7.1:
+ resolution: {integrity: sha512-gBL3Eq25uADw1LQ9kVpf3hRM+DWzs0uZknHYK3hq4jcTPqVCClHGDnB6UUUV2SFeBeA4KWHWbbLqmbGcZ4FYbw==}
engines: {node: ^18.18.0 || >=20.0.0}
dependencies:
- '@typescript-eslint/types': 7.4.0
+ '@typescript-eslint/types': 7.7.1
eslint-visitor-keys: 3.4.3
dev: true
@@ -4900,6 +5714,53 @@ packages:
resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==}
dev: true
+ /@vercel/style-guide@5.2.0(eslint@8.57.0)(prettier@3.2.5)(typescript@5.4.5):
+ resolution: {integrity: sha512-fNSKEaZvSkiBoF6XEefs8CcgAV9K9e+MbcsDZjUsktHycKdA0jvjAzQi1W/FzLS+Nr5zZ6oejCwq/97dHUKe0g==}
+ engines: {node: '>=16'}
+ peerDependencies:
+ '@next/eslint-plugin-next': '>=12.3.0 <15'
+ eslint: '>=8.48.0 <9'
+ prettier: '>=3.0.0 <4'
+ typescript: '>=4.8.0 <6'
+ peerDependenciesMeta:
+ '@next/eslint-plugin-next':
+ optional: true
+ eslint:
+ optional: true
+ prettier:
+ optional: true
+ typescript:
+ optional: true
+ dependencies:
+ '@babel/core': 7.24.4
+ '@babel/eslint-parser': 7.24.1(@babel/core@7.24.4)(eslint@8.57.0)
+ '@rushstack/eslint-patch': 1.10.2
+ '@typescript-eslint/eslint-plugin': 6.21.0(@typescript-eslint/parser@6.21.0)(eslint@8.57.0)(typescript@5.4.5)
+ '@typescript-eslint/parser': 6.21.0(eslint@8.57.0)(typescript@5.4.5)
+ eslint: 8.57.0
+ eslint-config-prettier: 9.1.0(eslint@8.57.0)
+ eslint-import-resolver-alias: 1.1.2(eslint-plugin-import@2.29.1)
+ eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@6.21.0)(eslint-plugin-import@2.29.1)(eslint@8.57.0)
+ eslint-plugin-eslint-comments: 3.2.0(eslint@8.57.0)
+ eslint-plugin-import: 2.29.1(@typescript-eslint/parser@7.7.1)(eslint@8.57.0)
+ eslint-plugin-jest: 27.9.0(@typescript-eslint/eslint-plugin@6.21.0)(eslint@8.57.0)(typescript@5.4.5)
+ eslint-plugin-jsx-a11y: 6.8.0(eslint@8.57.0)
+ eslint-plugin-playwright: 0.16.0(eslint-plugin-jest@27.9.0)(eslint@8.57.0)
+ eslint-plugin-react: 7.34.1(eslint@8.57.0)
+ eslint-plugin-react-hooks: 4.6.1(eslint@8.57.0)
+ eslint-plugin-testing-library: 6.2.2(eslint@8.57.0)(typescript@5.4.5)
+ eslint-plugin-tsdoc: 0.2.17
+ eslint-plugin-unicorn: 48.0.1(eslint@8.57.0)
+ prettier: 3.2.5
+ prettier-plugin-packagejson: 2.5.0(prettier@3.2.5)
+ typescript: 5.4.5
+ transitivePeerDependencies:
+ - eslint-import-resolver-node
+ - eslint-import-resolver-webpack
+ - jest
+ - supports-color
+ dev: true
+
/@vitest/expect@1.3.1:
resolution: {integrity: sha512-xofQFwIzfdmLLlHa6ag0dPV8YsnKOCP1KdAeVVh34vSjN2dcUiXYCD9htu/9eM7t8Xln4v03U9HLxLpPlsXdZw==}
dependencies:
@@ -4914,8 +5775,8 @@ packages:
tinyspy: 2.2.1
dev: true
- /@vitest/spy@1.4.0:
- resolution: {integrity: sha512-Ywau/Qs1DzM/8Uc+yA77CwSegizMlcgTJuYGAi0jujOteJOUf1ujunHThYo243KG9nAyWT3L9ifPYZ5+As/+6Q==}
+ /@vitest/spy@1.5.2:
+ resolution: {integrity: sha512-xCcPvI8JpCtgikT9nLpHPL1/81AYqZy1GCy4+MCHBE7xi8jgsYkULpW5hrx5PGLgOQjUpb6fd15lqcriJ40tfQ==}
dependencies:
tinyspy: 2.2.1
dev: true
@@ -4929,8 +5790,8 @@ packages:
pretty-format: 29.7.0
dev: true
- /@vitest/utils@1.4.0:
- resolution: {integrity: sha512-mx3Yd1/6e2Vt/PUC98DcqTirtfxUyAZ32uK82r8rZzbtBeBo+nqgnjx/LvqQdWsrvNtm14VmurNgcf4nqY5gJg==}
+ /@vitest/utils@1.5.2:
+ resolution: {integrity: sha512-sWOmyofuXLJ85VvXNsroZur7mOJGiQeM0JN3/0D1uU8U9bGFM69X1iqHaRXl6R8BwaLY6yPCogP257zxTzkUdA==}
dependencies:
diff-sequences: 29.6.3
estree-walker: 3.0.3
@@ -5080,14 +5941,13 @@ packages:
/@yr/monotone-cubic-spline@1.0.3:
resolution: {integrity: sha512-FQXkOta0XBSUPHndIKON2Y9JeQz5ZeMqLYZVVK93FliNBFm7LNMIZmY6FrMEB9XPcDbE2bekMbZD6kzDkxwYjA==}
- dev: false
/abab@2.0.6:
resolution: {integrity: sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==}
deprecated: Use your platform's native atob() and btoa() methods instead
dev: true
- /abitype@1.0.0(typescript@5.4.3):
+ /abitype@1.0.0(typescript@5.4.5):
resolution: {integrity: sha512-NMeMah//6bJ56H5XRj8QCV4AwuW6hB6zqz2LnhhLdcWVQOsXki6/Pn3APeqxCma62nXIcmZWdu1DlHWS74umVQ==}
peerDependencies:
typescript: '>=5.0.4'
@@ -5098,7 +5958,7 @@ packages:
zod:
optional: true
dependencies:
- typescript: 5.4.3
+ typescript: 5.4.5
dev: false
/accepts@1.3.8:
@@ -5112,7 +5972,6 @@ packages:
/accessor-fn@1.5.0:
resolution: {integrity: sha512-dml7D96DY/K5lt4Ra2jMnpL9Bhw5HEGws4p1OAIxFFj9Utd/RxNfEO3T3f0QIWFNwQU7gNxH9snUfqF/zNkP/w==}
engines: {node: '>=12'}
- dev: false
/acorn-globals@6.0.0:
resolution: {integrity: sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==}
@@ -5150,6 +6009,11 @@ packages:
engines: {node: '>=0.4.0'}
dev: true
+ /acorn-walk@8.3.2:
+ resolution: {integrity: sha512-cjkyv4OtNCIeqhHrfS81QWXoCBPExR/J62oyEqepVw8WaQeSqpW2uhuLPh1m9eWhDuOo/jUXVTlifvesOWp/4A==}
+ engines: {node: '>=0.4.0'}
+ dev: true
+
/acorn@7.4.1:
resolution: {integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==}
engines: {node: '>=0.4.0'}
@@ -5184,6 +6048,15 @@ packages:
- supports-color
dev: true
+ /agent-base@7.1.1:
+ resolution: {integrity: sha512-H0TSyFNDMomMNJQBn8wFV5YC/2eJ+VXECwOadZJT554xP6cODZHPX3H9QMQECxvrgiSOP1pHjy1sMWQVYJOUOA==}
+ engines: {node: '>= 14'}
+ dependencies:
+ debug: 4.3.4
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
/aggregate-error@3.1.0:
resolution: {integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==}
engines: {node: '>=8'}
@@ -5267,7 +6140,6 @@ packages:
/ansi-styles@3.2.1:
resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==}
engines: {node: '>=4'}
- requiresBuild: true
dependencies:
color-convert: 1.9.3
@@ -5296,8 +6168,8 @@ packages:
normalize-path: 3.0.0
picomatch: 2.3.1
- /apexcharts@3.48.0:
- resolution: {integrity: sha512-Lhpj1Ij6lKlrUke8gf+P+SE6uGUn+Pe1TnCJ+zqrY0YMvbqM3LMb1lY+eybbTczUyk0RmMZomlTa2NgX2EUs4Q==}
+ /apexcharts@3.49.0:
+ resolution: {integrity: sha512-2T9HnbQFLCuYRPndQLmh+bEQFoz0meUbvASaGgiSKDuYhWcLBodJtIpKql2aOtMx4B/sHrWW0dm90HsW4+h2PQ==}
dependencies:
'@yr/monotone-cubic-spline': 1.0.3
svg.draggable.js: 2.2.2
@@ -5306,12 +6178,15 @@ packages:
svg.pathmorphing.js: 0.1.3
svg.resize.js: 1.4.3
svg.select.js: 3.0.1
- dev: false
/app-root-dir@1.0.2:
resolution: {integrity: sha512-jlpIfsOoNoafl92Sz//64uQHGSyMrD2vYG5d8o2a4qGvyNCvXur7bzIsWtAC/6flI2RYAp3kv8rsfBtaLm7w0g==}
dev: true
+ /arg@4.1.3:
+ resolution: {integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==}
+ dev: true
+
/arg@5.0.2:
resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==}
@@ -5478,6 +6353,13 @@ packages:
resolution: {integrity: sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ==}
dev: true
+ /ast-types@0.13.4:
+ resolution: {integrity: sha512-x1FCFnFifvYDDzTaLII71vG5uvDwgtmDTEVWAxrgeiR8VjMONcCXJx7E+USjDtHlwFmt9MysbqgF9b9Vjr6w+w==}
+ engines: {node: '>=4'}
+ dependencies:
+ tslib: 2.6.2
+ dev: true
+
/ast-types@0.16.1:
resolution: {integrity: sha512-6t10qk83GOG8p0vKmaCr8eiilZwO171AvbROMtvvNiwrTly62t+7XkA8RdIIVbpMhCASAsxgAzdRSwh6nw/5Dg==}
engines: {node: '>=4'}
@@ -5506,7 +6388,7 @@ packages:
postcss: ^8.1.0
dependencies:
browserslist: 4.23.0
- caniuse-lite: 1.0.30001603
+ caniuse-lite: 1.0.30001612
fraction.js: 4.3.7
normalize-range: 0.1.2
picocolors: 1.0.0
@@ -5532,26 +6414,26 @@ packages:
dequal: 2.0.3
dev: true
- /babel-core@7.0.0-bridge.0(@babel/core@7.24.3):
+ /babel-core@7.0.0-bridge.0(@babel/core@7.24.4):
resolution: {integrity: sha512-poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.24.3
+ '@babel/core': 7.24.4
dev: true
- /babel-jest@27.5.1(@babel/core@7.24.3):
+ /babel-jest@27.5.1(@babel/core@7.24.4):
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.24.3
+ '@babel/core': 7.24.4
'@jest/transform': 27.5.1
'@jest/types': 27.5.1
'@types/babel__core': 7.20.5
babel-plugin-istanbul: 6.1.1
- babel-preset-jest: 27.5.1(@babel/core@7.24.3)
+ babel-preset-jest: 27.5.1(@babel/core@7.24.4)
chalk: 4.1.2
graceful-fs: 4.2.11
slash: 3.0.0
@@ -5559,14 +6441,14 @@ packages:
- supports-color
dev: true
- /babel-loader@8.3.0(@babel/core@7.24.3)(webpack@5.91.0):
+ /babel-loader@8.3.0(@babel/core@7.24.4)(webpack@5.91.0):
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.24.3
+ '@babel/core': 7.24.4
find-cache-dir: 3.3.2
loader-utils: 2.0.4
make-dir: 3.1.0
@@ -5601,50 +6483,50 @@ packages:
resolution: {integrity: sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==}
engines: {node: '>=10', npm: '>=6'}
dependencies:
- '@babel/runtime': 7.24.1
+ '@babel/runtime': 7.24.4
cosmiconfig: 7.1.0
resolve: 1.22.8
- /babel-plugin-named-asset-import@0.3.8(@babel/core@7.24.3):
+ /babel-plugin-named-asset-import@0.3.8(@babel/core@7.24.4):
resolution: {integrity: sha512-WXiAc++qo7XcJ1ZnTYGtLxmBCVbddAml3CEXgWaBzNzLNoxtQ8AiGEFDMOhot9XjTCQbvP5E77Fj9Gk924f00Q==}
peerDependencies:
'@babel/core': ^7.1.0
dependencies:
- '@babel/core': 7.24.3
+ '@babel/core': 7.24.4
dev: true
- /babel-plugin-polyfill-corejs2@0.4.10(@babel/core@7.24.3):
- resolution: {integrity: sha512-rpIuu//y5OX6jVU+a5BCn1R5RSZYWAl2Nar76iwaOdycqb6JPxediskWFMMl7stfwNJR4b7eiQvh5fB5TEQJTQ==}
+ /babel-plugin-polyfill-corejs2@0.4.11(@babel/core@7.24.4):
+ resolution: {integrity: sha512-sMEJ27L0gRHShOh5G54uAAPaiCOygY/5ratXuiyb2G46FmlSpc9eFCzYVyDiPxfNbwzA7mYahmjQc5q+CZQ09Q==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
dependencies:
- '@babel/compat-data': 7.24.1
- '@babel/core': 7.24.3
- '@babel/helper-define-polyfill-provider': 0.6.1(@babel/core@7.24.3)
+ '@babel/compat-data': 7.24.4
+ '@babel/core': 7.24.4
+ '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.24.4)
semver: 6.3.1
transitivePeerDependencies:
- supports-color
dev: true
- /babel-plugin-polyfill-corejs3@0.10.4(@babel/core@7.24.3):
+ /babel-plugin-polyfill-corejs3@0.10.4(@babel/core@7.24.4):
resolution: {integrity: sha512-25J6I8NGfa5YkCDogHRID3fVCadIR8/pGl1/spvCkzb6lVn6SR3ojpx9nOn9iEBcUsjY24AmdKm5khcfKdylcg==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
dependencies:
- '@babel/core': 7.24.3
- '@babel/helper-define-polyfill-provider': 0.6.1(@babel/core@7.24.3)
- core-js-compat: 3.36.1
+ '@babel/core': 7.24.4
+ '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.24.4)
+ core-js-compat: 3.37.0
transitivePeerDependencies:
- supports-color
dev: true
- /babel-plugin-polyfill-regenerator@0.6.1(@babel/core@7.24.3):
- resolution: {integrity: sha512-JfTApdE++cgcTWjsiCQlLyFBMbTUft9ja17saCc93lgV33h4tuCVj7tlvu//qpLwaG+3yEz7/KhahGrUMkVq9g==}
+ /babel-plugin-polyfill-regenerator@0.6.2(@babel/core@7.24.4):
+ resolution: {integrity: sha512-2R25rQZWP63nGwaAswvDazbPXfrM3HwVoBXK6HcqeKrSrL/JqcC/rDcf95l4r7LXLyxDXc8uQDa064GubtCABg==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
dependencies:
- '@babel/core': 7.24.3
- '@babel/helper-define-polyfill-provider': 0.6.1(@babel/core@7.24.3)
+ '@babel/core': 7.24.4
+ '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.24.4)
transitivePeerDependencies:
- supports-color
dev: true
@@ -5653,55 +6535,55 @@ packages:
resolution: {integrity: sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA==}
dev: true
- /babel-preset-current-node-syntax@1.0.1(@babel/core@7.24.3):
+ /babel-preset-current-node-syntax@1.0.1(@babel/core@7.24.4):
resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.24.3
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.3)
- '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.24.3)
- '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.24.3)
- '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.24.3)
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.3)
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.3)
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.3)
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.3)
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.3)
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.3)
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.3)
- '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.24.3)
- dev: true
-
- /babel-preset-jest@27.5.1(@babel/core@7.24.3):
+ '@babel/core': 7.24.4
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.4)
+ '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.24.4)
+ '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.24.4)
+ '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.24.4)
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.4)
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.4)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.4)
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.4)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.4)
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.4)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.4)
+ '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.24.4)
+ dev: true
+
+ /babel-preset-jest@27.5.1(@babel/core@7.24.4):
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.24.3
+ '@babel/core': 7.24.4
babel-plugin-jest-hoist: 27.5.1
- babel-preset-current-node-syntax: 1.0.1(@babel/core@7.24.3)
+ babel-preset-current-node-syntax: 1.0.1(@babel/core@7.24.4)
dev: true
/babel-preset-react-app@10.0.1:
resolution: {integrity: sha512-b0D9IZ1WhhCWkrTXyFuIIgqGzSkRIH5D5AmB0bXbzYAB1OBAwHcUeyWW2LorutLWF5btNo/N7r/cIdmvvKJlYg==}
dependencies:
- '@babel/core': 7.24.3
- '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.24.3)
- '@babel/plugin-proposal-decorators': 7.24.1(@babel/core@7.24.3)
- '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.24.3)
- '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.24.3)
- '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.24.3)
- '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.24.3)
- '@babel/plugin-proposal-private-property-in-object': 7.21.11(@babel/core@7.24.3)
- '@babel/plugin-transform-flow-strip-types': 7.24.1(@babel/core@7.24.3)
- '@babel/plugin-transform-react-display-name': 7.24.1(@babel/core@7.24.3)
- '@babel/plugin-transform-runtime': 7.24.3(@babel/core@7.24.3)
- '@babel/preset-env': 7.24.3(@babel/core@7.24.3)
- '@babel/preset-react': 7.24.1(@babel/core@7.24.3)
- '@babel/preset-typescript': 7.24.1(@babel/core@7.24.3)
- '@babel/runtime': 7.24.1
+ '@babel/core': 7.24.4
+ '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.24.4)
+ '@babel/plugin-proposal-decorators': 7.24.1(@babel/core@7.24.4)
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.24.4)
+ '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.24.4)
+ '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.24.4)
+ '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.24.4)
+ '@babel/plugin-proposal-private-property-in-object': 7.21.11(@babel/core@7.24.4)
+ '@babel/plugin-transform-flow-strip-types': 7.24.1(@babel/core@7.24.4)
+ '@babel/plugin-transform-react-display-name': 7.24.1(@babel/core@7.24.4)
+ '@babel/plugin-transform-runtime': 7.24.3(@babel/core@7.24.4)
+ '@babel/preset-env': 7.24.4(@babel/core@7.24.4)
+ '@babel/preset-react': 7.24.1(@babel/core@7.24.4)
+ '@babel/preset-typescript': 7.24.1(@babel/core@7.24.4)
+ '@babel/runtime': 7.24.4
babel-plugin-macros: 3.1.0
babel-plugin-transform-react-remove-prop-types: 0.4.24
transitivePeerDependencies:
@@ -5715,6 +6597,11 @@ packages:
resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
dev: true
+ /basic-ftp@5.0.5:
+ resolution: {integrity: sha512-4Bcg1P8xhUuqcii/S0Z9wiHIrQVPMermM1any+MX5GeGD7faD3/msQUDGLol9wOcz4/jbg/WJnGqoJF6LiBdtg==}
+ engines: {node: '>=10.0.0'}
+ dev: true
+
/batch@0.6.1:
resolution: {integrity: sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==}
dev: true
@@ -5728,7 +6615,6 @@ packages:
/bezier-js@6.1.4:
resolution: {integrity: sha512-PA0FW9ZpcHbojUCMu28z9Vg/fNkwTj5YhusSAjHHDfHDGLxJ6YUKrAN2vk1fP2MMOxVw4Oko16FMlRGVBGqLKg==}
- dev: false
/bfj@7.1.0:
resolution: {integrity: sha512-I6MMLkn+anzNdCUp9hMRyui1HaNEUCco50lxbvNS4+EyXg8lN3nJ48PjPWtbH8UVS9CuMoaKE9U2V3l29DaRQw==}
@@ -5841,8 +6727,8 @@ packages:
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
dependencies:
- caniuse-lite: 1.0.30001603
- electron-to-chromium: 1.4.722
+ caniuse-lite: 1.0.30001612
+ electron-to-chromium: 1.4.749
node-releases: 2.0.14
update-browserslist-db: 1.0.13(browserslist@4.23.0)
dev: true
@@ -5869,6 +6755,19 @@ packages:
engines: {node: '>=6'}
dev: true
+ /builtins@5.1.0:
+ resolution: {integrity: sha512-SW9lzGTLvWTP1AY8xeAMZimqDrIaSdLQUcVr9DMef51niJ022Ri87SwRRKYm4A6iHfkPaiVUu/Duw2Wc4J7kKg==}
+ dependencies:
+ semver: 7.6.0
+ dev: true
+
+ /busboy@1.6.0:
+ resolution: {integrity: sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==}
+ engines: {node: '>=10.16.0'}
+ dependencies:
+ streamsearch: 1.1.0
+ dev: false
+
/bytes@3.0.0:
resolution: {integrity: sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==}
engines: {node: '>= 0.8'}
@@ -5894,6 +6793,13 @@ packages:
resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
engines: {node: '>=6'}
+ /camel-case@3.0.0:
+ resolution: {integrity: sha512-+MbKztAYHXPr1jNTSKQF52VpcFjwY5RkR7fxksV8Doo4KAYc5Fl4UJRgthBbTmEx8C54DqahhbLJkDwjI3PI/w==}
+ dependencies:
+ no-case: 2.3.2
+ upper-case: 1.1.3
+ dev: true
+
/camel-case@4.1.2:
resolution: {integrity: sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==}
dependencies:
@@ -5919,21 +6825,19 @@ packages:
resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==}
dependencies:
browserslist: 4.23.0
- caniuse-lite: 1.0.30001603
+ caniuse-lite: 1.0.30001612
lodash.memoize: 4.1.2
lodash.uniq: 4.5.0
dev: true
- /caniuse-lite@1.0.30001603:
- resolution: {integrity: sha512-iL2iSS0eDILMb9n5yKQoTBim9jMZ0Yrk8g0N9K7UzYyWnfIKzXBZD5ngpM37ZcL/cv0Mli8XtVMRYMQAfFpi5Q==}
- dev: true
+ /caniuse-lite@1.0.30001612:
+ resolution: {integrity: sha512-lFgnZ07UhaCcsSZgWW0K5j4e69dK1u/ltrL9lTUiFOwNHs12S3UMIEYgBV0Z6C6hRDev7iRnMzzYmKabYdXF9g==}
/canvas-color-tracker@1.2.1:
resolution: {integrity: sha512-i5clg2pEdaWqHuEM/B74NZNLkHh5+OkXbA/T4iaBiaNDagkOCXkLNrhqUfdUugsRwuaNRU20e/OygzxWRor3yg==}
engines: {node: '>=12'}
dependencies:
tinycolor2: 1.6.0
- dev: false
/case-sensitive-paths-webpack-plugin@2.4.0:
resolution: {integrity: sha512-roIFONhcxog0JSSWbvVAh3OocukmSgpqOH6YpMkCvav/ySIV3JKg4Dc8vYtQjYi/UxpNE36r/9v+VqTQqgkYmw==}
@@ -5982,6 +6886,29 @@ packages:
engines: {node: ^12.17.0 || ^14.13 || >=16.0.0}
dev: true
+ /change-case@3.1.0:
+ resolution: {integrity: sha512-2AZp7uJZbYEzRPsFoa+ijKdvp9zsrnnt6+yFokfwEpeJm0xuJDVoxiRCAaTzyJND8GJkofo2IcKWaUZ/OECVzw==}
+ dependencies:
+ camel-case: 3.0.0
+ constant-case: 2.0.0
+ dot-case: 2.1.1
+ header-case: 1.0.1
+ is-lower-case: 1.1.3
+ is-upper-case: 1.1.2
+ lower-case: 1.1.4
+ lower-case-first: 1.0.2
+ no-case: 2.3.2
+ param-case: 2.1.1
+ pascal-case: 2.0.1
+ path-case: 2.1.1
+ sentence-case: 2.1.1
+ snake-case: 2.1.0
+ swap-case: 1.1.2
+ title-case: 2.1.1
+ upper-case: 1.1.3
+ upper-case-first: 1.1.2
+ dev: true
+
/char-regex@1.0.2:
resolution: {integrity: sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==}
engines: {node: '>=10'}
@@ -5992,6 +6919,10 @@ packages:
engines: {node: '>=12.20'}
dev: true
+ /chardet@0.7.0:
+ resolution: {integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==}
+ dev: true
+
/check-error@1.0.3:
resolution: {integrity: sha512-iKEoDYaRmd1mxM90a2OEfWhjsjPpYPuQ+lMYsoxB126+t8fw7ySEO48nmDg5COTjxDI65/Y2OWpeEHk3ZOe8zg==}
dependencies:
@@ -6071,6 +7002,13 @@ packages:
source-map: 0.6.1
dev: true
+ /clean-regexp@1.0.0:
+ resolution: {integrity: sha512-GfisEZEJvzKrmGWkvfhgzcz/BllN1USeqD2V6tg14OAOgaCD2Z/PUEuxnAZ/nPvmaHRG7a8y77p1T/IRQ4D1Hw==}
+ engines: {node: '>=4'}
+ dependencies:
+ escape-string-regexp: 1.0.5
+ dev: true
+
/clean-stack@2.2.0:
resolution: {integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==}
engines: {node: '>=6'}
@@ -6112,7 +7050,12 @@ packages:
string-width: 7.1.0
dev: true
- /client-only@0.0.1:
+ /cli-width@3.0.0:
+ resolution: {integrity: sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==}
+ engines: {node: '>= 10'}
+ dev: true
+
+ /client-only@0.0.1:
resolution: {integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==}
dev: false
@@ -6143,8 +7086,8 @@ packages:
engines: {node: '>=6'}
dev: false
- /clsx@2.1.0:
- resolution: {integrity: sha512-m3iNNWpd9rl3jvvcBnu70ylMdrXt8Vlq4HYadnU5fwcOtvkSQWPmj7amUcDT2qYI7risszBjI5AUIUox9D16pg==}
+ /clsx@2.1.1:
+ resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==}
engines: {node: '>=6'}
dev: false
@@ -6168,7 +7111,6 @@ packages:
/color-convert@1.9.3:
resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==}
- requiresBuild: true
dependencies:
color-name: 1.1.3
@@ -6180,7 +7122,6 @@ packages:
/color-name@1.1.3:
resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==}
- requiresBuild: true
/color-name@1.1.4:
resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
@@ -6200,6 +7141,11 @@ packages:
delayed-stream: 1.0.0
dev: true
+ /commander@10.0.1:
+ resolution: {integrity: sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==}
+ engines: {node: '>=14'}
+ dev: true
+
/commander@11.1.0:
resolution: {integrity: sha512-yPVavfyCcRhmorC7rWlkHn15b4wDVgVmBA7kV4QVBsF7kv/9TKJAbAXVTxvTnwP8HHKjRCJDClKbciiYS7p0DQ==}
engines: {node: '>=16'}
@@ -6287,6 +7233,13 @@ packages:
engines: {node: ^14.18.0 || >=16.10.0}
dev: true
+ /constant-case@2.0.0:
+ resolution: {integrity: sha512-eS0N9WwmjTqrOmR3o83F5vW8Z+9R1HnVz3xmzT2PMFug9ly+Au/fxRWlEBSb6LcZwspSsEn9Xs1uw9YgzAg1EQ==}
+ dependencies:
+ snake-case: 2.1.0
+ upper-case: 1.1.3
+ dev: true
+
/constants-browserify@1.0.0:
resolution: {integrity: sha512-xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ==}
dev: true
@@ -6319,19 +7272,19 @@ packages:
engines: {node: '>= 0.6'}
dev: true
- /core-js-compat@3.36.1:
- resolution: {integrity: sha512-Dk997v9ZCt3X/npqzyGdTlq6t7lDBhZwGvV94PKzDArjp7BTRm7WlDAXYd/OWdeFHO8OChQYRJNJvUCqCbrtKA==}
+ /core-js-compat@3.37.0:
+ resolution: {integrity: sha512-vYq4L+T8aS5UuFg4UwDhc7YNRWVeVZwltad9C/jV3R2LgVOpS9BDr7l/WL6BN0dbV3k1XejPTHqqEzJgsa0frA==}
dependencies:
browserslist: 4.23.0
dev: true
- /core-js-pure@3.36.1:
- resolution: {integrity: sha512-NXCvHvSVYSrewP0L5OhltzXeWFJLo2AL2TYnj6iLV3Bw8mM62wAQMNgUCRI6EBu6hVVpbCxmOPlxh1Ikw2PfUA==}
+ /core-js-pure@3.37.0:
+ resolution: {integrity: sha512-d3BrpyFr5eD4KcbRvQ3FTUx/KWmaDesr7+a3+1+P46IUnNoEt+oiLijPINZMEon7w9oGkIINWxrBAU9DEciwFQ==}
requiresBuild: true
dev: true
- /core-js@3.36.1:
- resolution: {integrity: sha512-BTvUrwxVBezj5SZ3f10ImnX2oRByMxql3EimVqMysepbC9EeMUOpLwdy6Eoili2x6E4kf+ZUB5k/+Jv55alPfA==}
+ /core-js@3.37.0:
+ resolution: {integrity: sha512-fu5vHevQ8ZG4og+LXug8ulUtVxjOcEYvifJr7L5Bfq9GOztVqsKd9/59hUk2ZSbCrS3BqUr3EpaYGIYzq7g3Ug==}
requiresBuild: true
dev: true
@@ -6360,6 +7313,10 @@ packages:
path-type: 4.0.0
yaml: 1.10.2
+ /create-require@1.1.1:
+ resolution: {integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==}
+ dev: true
+
/cross-spawn@7.0.3:
resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==}
engines: {node: '>= 8'}
@@ -6404,8 +7361,8 @@ packages:
postcss-selector-parser: 6.0.16
dev: true
- /css-loader@6.10.0(webpack@5.91.0):
- resolution: {integrity: sha512-LTSA/jWbwdMlk+rhmElbDR2vbtQoTBPr7fkJE+mxrHj+7ru0hUmHafDRzWIjIHTwpitWVaqY2/UWGRca3yUgRw==}
+ /css-loader@6.11.0(webpack@5.91.0):
+ resolution: {integrity: sha512-CTJ+AEQJjq5NzLga5pE39qdiSV56F8ywCIsqNIRF0r7BDgWsN25aazToqAFg7ZrtA/U016xudB3ffgweORxX7g==}
engines: {node: '>= 12.13.0'}
peerDependencies:
'@rspack/core': 0.x || 1.x
@@ -6418,9 +7375,9 @@ packages:
dependencies:
icss-utils: 5.1.0(postcss@8.4.38)
postcss: 8.4.38
- postcss-modules-extract-imports: 3.0.0(postcss@8.4.38)
- postcss-modules-local-by-default: 4.0.4(postcss@8.4.38)
- postcss-modules-scope: 3.1.1(postcss@8.4.38)
+ postcss-modules-extract-imports: 3.1.0(postcss@8.4.38)
+ postcss-modules-local-by-default: 4.0.5(postcss@8.4.38)
+ postcss-modules-scope: 3.2.0(postcss@8.4.38)
postcss-modules-values: 4.0.0(postcss@8.4.38)
postcss-value-parser: 4.2.0
semver: 7.6.0
@@ -6617,21 +7574,17 @@ packages:
engines: {node: '>=12'}
dependencies:
internmap: 2.0.3
- dev: false
/d3-binarytree@1.0.2:
resolution: {integrity: sha512-cElUNH+sHu95L04m92pG73t2MEJXKu+GeKUN1TJkFsu93E5W8E9Sc3kHEGJKgenGvj19m6upSn2EunvMgMD2Yw==}
- dev: false
/d3-color@3.1.0:
resolution: {integrity: sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==}
engines: {node: '>=12'}
- dev: false
/d3-dispatch@3.0.1:
resolution: {integrity: sha512-rzUyPU/S7rwUflMyLc1ETDeBj0NRuHKKAcvukozwhshr6g6c5d8zh4c2gQjY2bZ0dXeGLWc1PF174P2tVvKhfg==}
engines: {node: '>=12'}
- dev: false
/d3-drag@3.0.0:
resolution: {integrity: sha512-pWbUJLdETVA8lQNJecMxoXfH6x+mO2UQo8rSmZ+QqxcbyA3hfeprFgIT//HW2nlHChWeIIMwS2Fq+gEARkhTkg==}
@@ -6639,12 +7592,10 @@ packages:
dependencies:
d3-dispatch: 3.0.1
d3-selection: 3.0.0
- dev: false
/d3-ease@3.0.1:
resolution: {integrity: sha512-wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w==}
engines: {node: '>=12'}
- dev: false
/d3-force-3d@3.0.5:
resolution: {integrity: sha512-tdwhAhoTYZY/a6eo9nR7HP3xSW/C6XvJTbeRpR92nlPzH6OiE+4MliN9feuSFd0tPtEUo+191qOhCTWx3NYifg==}
@@ -6655,28 +7606,23 @@ packages:
d3-octree: 1.0.2
d3-quadtree: 3.0.1
d3-timer: 3.0.1
- dev: false
/d3-format@3.1.0:
resolution: {integrity: sha512-YyUI6AEuY/Wpt8KWLgZHsIU86atmikuoOmCfommt0LYHiQSPjvX2AcFc38PX0CBpr2RCyZhjex+NS/LPOv6YqA==}
engines: {node: '>=12'}
- dev: false
/d3-interpolate@3.0.1:
resolution: {integrity: sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g==}
engines: {node: '>=12'}
dependencies:
d3-color: 3.1.0
- dev: false
/d3-octree@1.0.2:
resolution: {integrity: sha512-Qxg4oirJrNXauiuC94uKMbgxwnhdda9xRLl9ihq45srlJ4Ga3CSgqGcAL8iW7N5CIv4Oz8x3E734ulxyvHPvwA==}
- dev: false
/d3-quadtree@3.0.1:
resolution: {integrity: sha512-04xDrxQTDTCFwP5H6hRhsRcb9xxv2RzkcsygFzmkSIOJy3PeRJP7sNk3VRIbKXcog561P9oU0/rVH6vDROAgUw==}
engines: {node: '>=12'}
- dev: false
/d3-scale-chromatic@3.1.0:
resolution: {integrity: sha512-A3s5PWiZ9YCXFye1o246KoscMWqf8BsD9eRiJ3He7C9OBaxKhAd5TFCdEx/7VbKtxxTsu//1mMJFrEt572cEyQ==}
@@ -6684,7 +7630,6 @@ packages:
dependencies:
d3-color: 3.1.0
d3-interpolate: 3.0.1
- dev: false
/d3-scale@4.0.2:
resolution: {integrity: sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ==}
@@ -6695,31 +7640,26 @@ packages:
d3-interpolate: 3.0.1
d3-time: 3.1.0
d3-time-format: 4.1.0
- dev: false
/d3-selection@3.0.0:
resolution: {integrity: sha512-fmTRWbNMmsmWq6xJV8D19U/gw/bwrHfNXxrIN+HfZgnzqTHp9jOmKMhsTUjXOJnZOdZY9Q28y4yebKzqDKlxlQ==}
engines: {node: '>=12'}
- dev: false
/d3-time-format@4.1.0:
resolution: {integrity: sha512-dJxPBlzC7NugB2PDLwo9Q8JiTR3M3e4/XANkreKSUxF8vvXKqm1Yfq4Q5dl8budlunRVlUUaDUgFt7eA8D6NLg==}
engines: {node: '>=12'}
dependencies:
d3-time: 3.1.0
- dev: false
/d3-time@3.1.0:
resolution: {integrity: sha512-VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q==}
engines: {node: '>=12'}
dependencies:
d3-array: 3.2.4
- dev: false
/d3-timer@3.0.1:
resolution: {integrity: sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA==}
engines: {node: '>=12'}
- dev: false
/d3-transition@3.0.1(d3-selection@3.0.0):
resolution: {integrity: sha512-ApKvfjsSR6tg06xrL434C0WydLr7JewBB3V+/39RMHsaXTOG0zmt/OAXeng5M5LBm0ojmxJrpomQVZ1aPvBL4w==}
@@ -6733,7 +7673,6 @@ packages:
d3-interpolate: 3.0.1
d3-selection: 3.0.0
d3-timer: 3.0.1
- dev: false
/d3-zoom@3.0.0:
resolution: {integrity: sha512-b8AmV3kfQaqWAuacbPuNbL6vahnOJflOhexLzMMNLga62+/nh0JzvJ0aO/5a5MVgUFGS7Hu1P9P03o3fJkDCyw==}
@@ -6744,12 +7683,16 @@ packages:
d3-interpolate: 3.0.1
d3-selection: 3.0.0
d3-transition: 3.0.1(d3-selection@3.0.0)
- dev: false
/damerau-levenshtein@1.0.8:
resolution: {integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==}
dev: true
+ /data-uri-to-buffer@6.0.2:
+ resolution: {integrity: sha512-7hvf7/GW8e86rW0ptuwS3OcBGDjIi6SZva7hCyWC0yYry2cOPmLIjXAUHI6DK2HsnwJd9ifmt57i8eV2n4YNpw==}
+ engines: {node: '>= 14'}
+ dev: true
+
/data-urls@2.0.0:
resolution: {integrity: sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==}
engines: {node: '>=10'}
@@ -6859,6 +7802,11 @@ packages:
which-typed-array: 1.1.15
dev: true
+ /deep-extend@0.6.0:
+ resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==}
+ engines: {node: '>=4.0.0'}
+ dev: true
+
/deep-is@0.1.4:
resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
dev: true
@@ -6916,6 +7864,29 @@ packages:
resolution: {integrity: sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==}
dev: true
+ /degenerator@5.0.1:
+ resolution: {integrity: sha512-TllpMR/t0M5sqCXfj85i4XaAzxmS5tVA16dqvdkMwGmzI+dXLXnw3J+3Vdv7VKw+ThlTMboK6i9rnZ6Nntj5CQ==}
+ engines: {node: '>= 14'}
+ dependencies:
+ ast-types: 0.13.4
+ escodegen: 2.1.0
+ esprima: 4.0.1
+ dev: true
+
+ /del@5.1.0:
+ resolution: {integrity: sha512-wH9xOVHnczo9jN2IW68BabcecVPxacIA3g/7z6vhSU/4stOKQzeCRK0yD0A24WiAAUJmmVpWqrERcTxnLo3AnA==}
+ engines: {node: '>=8'}
+ dependencies:
+ globby: 10.0.2
+ graceful-fs: 4.2.11
+ is-glob: 4.0.3
+ is-path-cwd: 2.2.0
+ is-path-inside: 3.0.3
+ p-map: 3.0.0
+ rimraf: 3.0.2
+ slash: 3.0.0
+ dev: true
+
/del@6.1.1:
resolution: {integrity: sha512-ua8BhapfP0JUJKC/zV9yHHDW/rDoDxP4Zhn3AkA6/xT6gY7jYXJiaeyBZznYVujhZZET+UgcbZiQ7sN3WqcImg==}
engines: {node: '>=10'}
@@ -6960,11 +7931,21 @@ packages:
engines: {node: '>=8'}
dev: true
+ /detect-indent@7.0.1:
+ resolution: {integrity: sha512-Mc7QhQ8s+cLrnUfU/Ji94vG/r8M26m8f++vyres4ZoojaRDpZ1eSIh/EpzLNwlWuvzSZ3UbDFspjFvTDXe6e/g==}
+ engines: {node: '>=12.20'}
+ dev: true
+
/detect-newline@3.1.0:
resolution: {integrity: sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==}
engines: {node: '>=8'}
dev: true
+ /detect-newline@4.0.1:
+ resolution: {integrity: sha512-qE3Veg1YXzGHQhlA6jzebZN2qVf6NX+A7m7qlhCGG30dJixrAQhYOsJjsnBjJkCSmuOPpCk30145fr8FV0bzog==}
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+ dev: true
+
/detect-node@2.1.0:
resolution: {integrity: sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==}
dev: true
@@ -7010,6 +7991,11 @@ packages:
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dev: true
+ /diff@4.0.2:
+ resolution: {integrity: sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==}
+ engines: {node: '>=0.3.1'}
+ dev: true
+
/dir-glob@3.0.1:
resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==}
engines: {node: '>=8'}
@@ -7108,6 +8094,12 @@ packages:
domhandler: 4.3.1
dev: true
+ /dot-case@2.1.1:
+ resolution: {integrity: sha512-HnM6ZlFqcajLsyudHq7LeeLDr2rFAVYtDv/hV5qchQEidSck8j9OPUsXY9KwJv/lHMtYlX4DjRQqwFYa+0r8Ug==}
+ dependencies:
+ no-case: 2.3.2
+ dev: true
+
/dot-case@3.0.4:
resolution: {integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==}
dependencies:
@@ -7129,8 +8121,8 @@ packages:
engines: {node: '>=10'}
dev: true
- /dotenv@16.4.5:
- resolution: {integrity: sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==}
+ /dotenv@16.0.3:
+ resolution: {integrity: sha512-7GO6HghkA5fYG9TYnNxi14/7K9f5occMlp3zXAuSxn7CKCxt9xbNWG7yF8hTCSUchlfWSe3uLmlPfigevRItzQ==}
engines: {node: '>=12'}
dev: true
@@ -7154,16 +8146,16 @@ packages:
resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==}
dev: true
- /ejs@3.1.9:
- resolution: {integrity: sha512-rC+QVNMJWv+MtPgkt0y+0rVEIdbtxVADApW9JXrUVlzHetgcyczP/E7DJmWJ4fJCZF2cPcBk0laWO9ZHMG3DmQ==}
+ /ejs@3.1.10:
+ resolution: {integrity: sha512-UeJmFfOrAQS8OJWPZ4qtgHyWExa088/MtK5UEyoJGFH67cDEXkZSviOiKRCZ4Xij0zxI3JECgYs3oKx+AizQBA==}
engines: {node: '>=0.10.0'}
hasBin: true
dependencies:
jake: 10.8.7
dev: true
- /electron-to-chromium@1.4.722:
- resolution: {integrity: sha512-5nLE0TWFFpZ80Crhtp4pIp8LXCztjYX41yUcV6b+bKR2PqzjskTMOOlBi1VjBHlvHwS+4gar7kNKOrsbsewEZQ==}
+ /electron-to-chromium@1.4.749:
+ resolution: {integrity: sha512-LRMMrM9ITOvue0PoBrvNIraVmuDbJV5QC9ierz/z5VilMdPOVMjOtpICNld3PuXuTZ3CHH/UPxX9gHhAPwi+0Q==}
dev: true
/emittery@0.10.2:
@@ -7222,8 +8214,8 @@ packages:
resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==}
dev: true
- /envinfo@7.11.1:
- resolution: {integrity: sha512-8PiZgZNIB4q/Lw4AhOvAfB/ityHAd2bli3lESSWmWSzSsl5dKpy5N1d1Rfkd2teq/g9xN90lc6o98DOjMeYHpg==}
+ /envinfo@7.12.0:
+ resolution: {integrity: sha512-Iw9rQJBGpJRd3rwXm9ft/JiGoAZmLxxJZELYDQoPRZ4USVhkKtIcNBPw6U+/K2mBpaqM25JSV6Yl4Az9vO2wJg==}
engines: {node: '>=4'}
hasBin: true
dev: true
@@ -7321,8 +8313,8 @@ packages:
stop-iteration-iterator: 1.0.0
dev: true
- /es-iterator-helpers@1.0.18:
- resolution: {integrity: sha512-scxAJaewsahbqTYrGKJihhViaM6DDZDDoucfvzNbK0pOren1g/daDQ3IAhzn+1G14rBG7w+i5N+qul60++zlKA==}
+ /es-iterator-helpers@1.0.19:
+ resolution: {integrity: sha512-zoMwbCcH5hwUkKJkT8kDIBZSz9I6mVG//+lDCinLCGov4+r7NIy0ld8o03M0cJxl2spVf6ESYVS6/gpIfq1FFw==}
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.7
@@ -7434,7 +8426,6 @@ packages:
/escape-string-regexp@1.0.5:
resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==}
engines: {node: '>=0.8.0'}
- requiresBuild: true
/escape-string-regexp@2.0.0:
resolution: {integrity: sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==}
@@ -7470,6 +8461,31 @@ packages:
source-map: 0.6.1
dev: true
+ /eslint-config-next@14.2.1(eslint@8.57.0)(typescript@5.4.5):
+ resolution: {integrity: sha512-BgD0kPCWMlqoItRf3xe9fG0MqwObKfVch+f2ccwDpZiCJA8ghkz2wrASH+bI6nLZzGcOJOpMm1v1Q1euhfpt4Q==}
+ peerDependencies:
+ eslint: ^7.23.0 || ^8.0.0
+ typescript: '>=3.3.1'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+ dependencies:
+ '@next/eslint-plugin-next': 14.2.1
+ '@rushstack/eslint-patch': 1.10.2
+ '@typescript-eslint/parser': 7.2.0(eslint@8.57.0)(typescript@5.4.5)
+ eslint: 8.57.0
+ eslint-import-resolver-node: 0.3.9
+ eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@7.2.0)(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1)(eslint@8.57.0)
+ eslint-plugin-import: 2.29.1(@typescript-eslint/parser@7.2.0)(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0)
+ eslint-plugin-jsx-a11y: 6.8.0(eslint@8.57.0)
+ eslint-plugin-react: 7.34.1(eslint@8.57.0)
+ eslint-plugin-react-hooks: 4.6.1(eslint@8.57.0)
+ typescript: 5.4.5
+ transitivePeerDependencies:
+ - eslint-import-resolver-webpack
+ - supports-color
+ dev: true
+
/eslint-config-prettier@9.1.0(eslint@8.57.0):
resolution: {integrity: sha512-NSWl5BFQWEPi1j4TjVNItzYV7dZXZ+wP6I6ZhrBGpChQhZRUaElihE9uRRkcbRnNb76UMKDF3r+WTmNcGPKsqw==}
hasBin: true
@@ -7479,7 +8495,7 @@ packages:
eslint: 8.57.0
dev: true
- /eslint-config-react-app@7.0.1(@babel/plugin-syntax-flow@7.24.1)(@babel/plugin-transform-react-jsx@7.23.4)(eslint@8.57.0)(jest@27.5.1)(typescript@5.4.3):
+ /eslint-config-react-app@7.0.1(@babel/plugin-syntax-flow@7.24.1)(@babel/plugin-transform-react-jsx@7.23.4)(eslint@8.57.0)(jest@27.5.1)(typescript@5.4.5):
resolution: {integrity: sha512-K6rNzvkIeHaTd8m/QEh1Zko0KI7BACWkkneSs6s9cKZC/J27X3eZR6Upt1jkmZ/4FK+XUOPPxMEN7+lbUXfSlA==}
engines: {node: '>=14.0.0'}
peerDependencies:
@@ -7489,22 +8505,22 @@ packages:
typescript:
optional: true
dependencies:
- '@babel/core': 7.24.3
- '@babel/eslint-parser': 7.24.1(@babel/core@7.24.3)(eslint@8.57.0)
- '@rushstack/eslint-patch': 1.10.1
- '@typescript-eslint/eslint-plugin': 5.62.0(@typescript-eslint/parser@5.62.0)(eslint@8.57.0)(typescript@5.4.3)
- '@typescript-eslint/parser': 5.62.0(eslint@8.57.0)(typescript@5.4.3)
+ '@babel/core': 7.24.4
+ '@babel/eslint-parser': 7.24.1(@babel/core@7.24.4)(eslint@8.57.0)
+ '@rushstack/eslint-patch': 1.10.2
+ '@typescript-eslint/eslint-plugin': 5.62.0(@typescript-eslint/parser@5.62.0)(eslint@8.57.0)(typescript@5.4.5)
+ '@typescript-eslint/parser': 5.62.0(eslint@8.57.0)(typescript@5.4.5)
babel-preset-react-app: 10.0.1
confusing-browser-globals: 1.0.11
eslint: 8.57.0
eslint-plugin-flowtype: 8.0.3(@babel/plugin-syntax-flow@7.24.1)(@babel/plugin-transform-react-jsx@7.23.4)(eslint@8.57.0)
eslint-plugin-import: 2.29.1(@typescript-eslint/parser@5.62.0)(eslint@8.57.0)
- eslint-plugin-jest: 25.7.0(@typescript-eslint/eslint-plugin@5.62.0)(eslint@8.57.0)(jest@27.5.1)(typescript@5.4.3)
+ eslint-plugin-jest: 25.7.0(@typescript-eslint/eslint-plugin@5.62.0)(eslint@8.57.0)(jest@27.5.1)(typescript@5.4.5)
eslint-plugin-jsx-a11y: 6.8.0(eslint@8.57.0)
eslint-plugin-react: 7.34.1(eslint@8.57.0)
- eslint-plugin-react-hooks: 4.6.0(eslint@8.57.0)
- eslint-plugin-testing-library: 5.11.1(eslint@8.57.0)(typescript@5.4.3)
- typescript: 5.4.3
+ eslint-plugin-react-hooks: 4.6.1(eslint@8.57.0)
+ eslint-plugin-testing-library: 5.11.1(eslint@8.57.0)(typescript@5.4.5)
+ typescript: 5.4.5
transitivePeerDependencies:
- '@babel/plugin-syntax-flow'
- '@babel/plugin-transform-react-jsx'
@@ -7514,6 +8530,24 @@ packages:
- supports-color
dev: true
+ /eslint-config-turbo@1.13.3(eslint@8.57.0):
+ resolution: {integrity: sha512-if/QtwEiWZ5b7Bg8yZBPSvS0TeCG2Zvfa/+XBYANS7uSYucjmW+BBC8enJB0PqpB/YLGGOumeo3x7h1Nuba9iw==}
+ peerDependencies:
+ eslint: '>6.6.0'
+ dependencies:
+ eslint: 8.57.0
+ eslint-plugin-turbo: 1.13.3(eslint@8.57.0)
+ dev: true
+
+ /eslint-import-resolver-alias@1.1.2(eslint-plugin-import@2.29.1):
+ resolution: {integrity: sha512-WdviM1Eu834zsfjHtcGHtGfcu+F30Od3V7I9Fi57uhBEwPkjDcii7/yW8jAT+gOhn4P/vOxxNAXbFAKsrrc15w==}
+ engines: {node: '>= 4'}
+ peerDependencies:
+ eslint-plugin-import: '>=1.4.0'
+ dependencies:
+ eslint-plugin-import: 2.29.1(@typescript-eslint/parser@7.7.1)(eslint@8.57.0)
+ dev: true
+
/eslint-import-resolver-node@0.3.9:
resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==}
dependencies:
@@ -7524,6 +8558,52 @@ packages:
- supports-color
dev: true
+ /eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@6.21.0)(eslint-plugin-import@2.29.1)(eslint@8.57.0):
+ resolution: {integrity: sha512-xgdptdoi5W3niYeuQxKmzVDTATvLYqhpwmykwsh7f6HIOStGWEIL9iqZgQDF9u9OEzrRwR8no5q2VT+bjAujTg==}
+ engines: {node: ^14.18.0 || >=16.0.0}
+ peerDependencies:
+ eslint: '*'
+ eslint-plugin-import: '*'
+ dependencies:
+ debug: 4.3.4
+ enhanced-resolve: 5.16.0
+ eslint: 8.57.0
+ eslint-module-utils: 2.8.1(@typescript-eslint/parser@6.21.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0)
+ eslint-plugin-import: 2.29.1(@typescript-eslint/parser@7.7.1)(eslint@8.57.0)
+ fast-glob: 3.3.2
+ get-tsconfig: 4.7.3
+ is-core-module: 2.13.1
+ is-glob: 4.0.3
+ transitivePeerDependencies:
+ - '@typescript-eslint/parser'
+ - eslint-import-resolver-node
+ - eslint-import-resolver-webpack
+ - supports-color
+ dev: true
+
+ /eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@7.2.0)(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1)(eslint@8.57.0):
+ resolution: {integrity: sha512-xgdptdoi5W3niYeuQxKmzVDTATvLYqhpwmykwsh7f6HIOStGWEIL9iqZgQDF9u9OEzrRwR8no5q2VT+bjAujTg==}
+ engines: {node: ^14.18.0 || >=16.0.0}
+ peerDependencies:
+ eslint: '*'
+ eslint-plugin-import: '*'
+ dependencies:
+ debug: 4.3.4
+ enhanced-resolve: 5.16.0
+ eslint: 8.57.0
+ eslint-module-utils: 2.8.1(@typescript-eslint/parser@7.2.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0)
+ eslint-plugin-import: 2.29.1(@typescript-eslint/parser@7.2.0)(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0)
+ fast-glob: 3.3.2
+ get-tsconfig: 4.7.3
+ is-core-module: 2.13.1
+ is-glob: 4.0.3
+ transitivePeerDependencies:
+ - '@typescript-eslint/parser'
+ - eslint-import-resolver-node
+ - eslint-import-resolver-webpack
+ - supports-color
+ dev: true
+
/eslint-module-utils@2.8.1(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint@8.57.0):
resolution: {integrity: sha512-rXDXR3h7cs7dy9RNpUlQf80nX31XWJEyGq1tRMo+6GsO5VmTe4UTwtmonAD4ZkAsrfMVDA2wlGJ3790Ys+D49Q==}
engines: {node: '>=4'}
@@ -7545,7 +8625,7 @@ packages:
eslint-import-resolver-webpack:
optional: true
dependencies:
- '@typescript-eslint/parser': 5.62.0(eslint@8.57.0)(typescript@5.4.3)
+ '@typescript-eslint/parser': 5.62.0(eslint@8.57.0)(typescript@5.4.5)
debug: 3.2.7
eslint: 8.57.0
eslint-import-resolver-node: 0.3.9
@@ -7553,6 +8633,106 @@ packages:
- supports-color
dev: true
+ /eslint-module-utils@2.8.1(@typescript-eslint/parser@6.21.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0):
+ resolution: {integrity: sha512-rXDXR3h7cs7dy9RNpUlQf80nX31XWJEyGq1tRMo+6GsO5VmTe4UTwtmonAD4ZkAsrfMVDA2wlGJ3790Ys+D49Q==}
+ engines: {node: '>=4'}
+ peerDependencies:
+ '@typescript-eslint/parser': '*'
+ eslint: '*'
+ eslint-import-resolver-node: '*'
+ eslint-import-resolver-typescript: '*'
+ eslint-import-resolver-webpack: '*'
+ peerDependenciesMeta:
+ '@typescript-eslint/parser':
+ optional: true
+ eslint:
+ optional: true
+ eslint-import-resolver-node:
+ optional: true
+ eslint-import-resolver-typescript:
+ optional: true
+ eslint-import-resolver-webpack:
+ optional: true
+ dependencies:
+ '@typescript-eslint/parser': 6.21.0(eslint@8.57.0)(typescript@5.4.5)
+ debug: 3.2.7
+ eslint: 8.57.0
+ eslint-import-resolver-node: 0.3.9
+ eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@6.21.0)(eslint-plugin-import@2.29.1)(eslint@8.57.0)
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /eslint-module-utils@2.8.1(@typescript-eslint/parser@7.2.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0):
+ resolution: {integrity: sha512-rXDXR3h7cs7dy9RNpUlQf80nX31XWJEyGq1tRMo+6GsO5VmTe4UTwtmonAD4ZkAsrfMVDA2wlGJ3790Ys+D49Q==}
+ engines: {node: '>=4'}
+ peerDependencies:
+ '@typescript-eslint/parser': '*'
+ eslint: '*'
+ eslint-import-resolver-node: '*'
+ eslint-import-resolver-typescript: '*'
+ eslint-import-resolver-webpack: '*'
+ peerDependenciesMeta:
+ '@typescript-eslint/parser':
+ optional: true
+ eslint:
+ optional: true
+ eslint-import-resolver-node:
+ optional: true
+ eslint-import-resolver-typescript:
+ optional: true
+ eslint-import-resolver-webpack:
+ optional: true
+ dependencies:
+ '@typescript-eslint/parser': 7.2.0(eslint@8.57.0)(typescript@5.4.5)
+ debug: 3.2.7
+ eslint: 8.57.0
+ eslint-import-resolver-node: 0.3.9
+ eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@7.2.0)(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1)(eslint@8.57.0)
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /eslint-module-utils@2.8.1(@typescript-eslint/parser@7.7.1)(eslint-import-resolver-node@0.3.9)(eslint@8.57.0):
+ resolution: {integrity: sha512-rXDXR3h7cs7dy9RNpUlQf80nX31XWJEyGq1tRMo+6GsO5VmTe4UTwtmonAD4ZkAsrfMVDA2wlGJ3790Ys+D49Q==}
+ engines: {node: '>=4'}
+ peerDependencies:
+ '@typescript-eslint/parser': '*'
+ eslint: '*'
+ eslint-import-resolver-node: '*'
+ eslint-import-resolver-typescript: '*'
+ eslint-import-resolver-webpack: '*'
+ peerDependenciesMeta:
+ '@typescript-eslint/parser':
+ optional: true
+ eslint:
+ optional: true
+ eslint-import-resolver-node:
+ optional: true
+ eslint-import-resolver-typescript:
+ optional: true
+ eslint-import-resolver-webpack:
+ optional: true
+ dependencies:
+ '@typescript-eslint/parser': 7.7.1(eslint@8.57.0)(typescript@5.4.5)
+ debug: 3.2.7
+ eslint: 8.57.0
+ eslint-import-resolver-node: 0.3.9
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /eslint-plugin-eslint-comments@3.2.0(eslint@8.57.0):
+ resolution: {integrity: sha512-0jkOl0hfojIHHmEHgmNdqv4fmh7300NdpA9FFpF7zaoLvB/QeXOGNLIo86oAveJFrfB1p05kC8hpEMHM8DwWVQ==}
+ engines: {node: '>=6.5.0'}
+ peerDependencies:
+ eslint: '>=4.19.1'
+ dependencies:
+ escape-string-regexp: 1.0.5
+ eslint: 8.57.0
+ ignore: 5.3.1
+ dev: true
+
/eslint-plugin-flowtype@8.0.3(@babel/plugin-syntax-flow@7.24.1)(@babel/plugin-transform-react-jsx@7.23.4)(eslint@8.57.0):
resolution: {integrity: sha512-dX8l6qUL6O+fYPtpNRideCFSpmWOUVx5QcaGLVqe/vlDiBSe4vYljDWDETwnyFzpl7By/WVIu6rcrniCgH9BqQ==}
engines: {node: '>=12.0.0'}
@@ -7561,14 +8741,84 @@ packages:
'@babel/plugin-transform-react-jsx': ^7.14.9
eslint: ^8.1.0
dependencies:
- '@babel/plugin-syntax-flow': 7.24.1(@babel/core@7.24.3)
- '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.24.3)
+ '@babel/plugin-syntax-flow': 7.24.1(@babel/core@7.24.4)
+ '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.24.4)
eslint: 8.57.0
lodash: 4.17.21
string-natural-compare: 3.0.1
dev: true
- /eslint-plugin-import@2.29.1(@typescript-eslint/parser@5.62.0)(eslint@8.57.0):
+ /eslint-plugin-import@2.29.1(@typescript-eslint/parser@5.62.0)(eslint@8.57.0):
+ resolution: {integrity: sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==}
+ engines: {node: '>=4'}
+ peerDependencies:
+ '@typescript-eslint/parser': '*'
+ eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8
+ peerDependenciesMeta:
+ '@typescript-eslint/parser':
+ optional: true
+ dependencies:
+ '@typescript-eslint/parser': 5.62.0(eslint@8.57.0)(typescript@5.4.5)
+ array-includes: 3.1.8
+ array.prototype.findlastindex: 1.2.5
+ array.prototype.flat: 1.3.2
+ array.prototype.flatmap: 1.3.2
+ debug: 3.2.7
+ doctrine: 2.1.0
+ eslint: 8.57.0
+ eslint-import-resolver-node: 0.3.9
+ eslint-module-utils: 2.8.1(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint@8.57.0)
+ hasown: 2.0.2
+ is-core-module: 2.13.1
+ is-glob: 4.0.3
+ minimatch: 3.1.2
+ object.fromentries: 2.0.8
+ object.groupby: 1.0.3
+ object.values: 1.2.0
+ semver: 6.3.1
+ tsconfig-paths: 3.15.0
+ transitivePeerDependencies:
+ - eslint-import-resolver-typescript
+ - eslint-import-resolver-webpack
+ - supports-color
+ dev: true
+
+ /eslint-plugin-import@2.29.1(@typescript-eslint/parser@7.2.0)(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0):
+ resolution: {integrity: sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==}
+ engines: {node: '>=4'}
+ peerDependencies:
+ '@typescript-eslint/parser': '*'
+ eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8
+ peerDependenciesMeta:
+ '@typescript-eslint/parser':
+ optional: true
+ dependencies:
+ '@typescript-eslint/parser': 7.2.0(eslint@8.57.0)(typescript@5.4.5)
+ array-includes: 3.1.8
+ array.prototype.findlastindex: 1.2.5
+ array.prototype.flat: 1.3.2
+ array.prototype.flatmap: 1.3.2
+ debug: 3.2.7
+ doctrine: 2.1.0
+ eslint: 8.57.0
+ eslint-import-resolver-node: 0.3.9
+ eslint-module-utils: 2.8.1(@typescript-eslint/parser@6.21.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0)
+ hasown: 2.0.2
+ is-core-module: 2.13.1
+ is-glob: 4.0.3
+ minimatch: 3.1.2
+ object.fromentries: 2.0.8
+ object.groupby: 1.0.3
+ object.values: 1.2.0
+ semver: 6.3.1
+ tsconfig-paths: 3.15.0
+ transitivePeerDependencies:
+ - eslint-import-resolver-typescript
+ - eslint-import-resolver-webpack
+ - supports-color
+ dev: true
+
+ /eslint-plugin-import@2.29.1(@typescript-eslint/parser@7.7.1)(eslint@8.57.0):
resolution: {integrity: sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==}
engines: {node: '>=4'}
peerDependencies:
@@ -7578,7 +8828,7 @@ packages:
'@typescript-eslint/parser':
optional: true
dependencies:
- '@typescript-eslint/parser': 5.62.0(eslint@8.57.0)(typescript@5.4.3)
+ '@typescript-eslint/parser': 7.7.1(eslint@8.57.0)(typescript@5.4.5)
array-includes: 3.1.8
array.prototype.findlastindex: 1.2.5
array.prototype.flat: 1.3.2
@@ -7587,7 +8837,7 @@ packages:
doctrine: 2.1.0
eslint: 8.57.0
eslint-import-resolver-node: 0.3.9
- eslint-module-utils: 2.8.1(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint@8.57.0)
+ eslint-module-utils: 2.8.1(@typescript-eslint/parser@7.7.1)(eslint-import-resolver-node@0.3.9)(eslint@8.57.0)
hasown: 2.0.2
is-core-module: 2.13.1
is-glob: 4.0.3
@@ -7603,7 +8853,7 @@ packages:
- supports-color
dev: true
- /eslint-plugin-jest@25.7.0(@typescript-eslint/eslint-plugin@5.62.0)(eslint@8.57.0)(jest@27.5.1)(typescript@5.4.3):
+ /eslint-plugin-jest@25.7.0(@typescript-eslint/eslint-plugin@5.62.0)(eslint@8.57.0)(jest@27.5.1)(typescript@5.4.5):
resolution: {integrity: sha512-PWLUEXeeF7C9QGKqvdSbzLOiLTx+bno7/HC9eefePfEb257QFHg7ye3dh80AZVkaa/RQsBB1Q/ORQvg2X7F0NQ==}
engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
peerDependencies:
@@ -7616,8 +8866,8 @@ packages:
jest:
optional: true
dependencies:
- '@typescript-eslint/eslint-plugin': 5.62.0(@typescript-eslint/parser@5.62.0)(eslint@8.57.0)(typescript@5.4.3)
- '@typescript-eslint/experimental-utils': 5.62.0(eslint@8.57.0)(typescript@5.4.3)
+ '@typescript-eslint/eslint-plugin': 5.62.0(@typescript-eslint/parser@5.62.0)(eslint@8.57.0)(typescript@5.4.5)
+ '@typescript-eslint/experimental-utils': 5.62.0(eslint@8.57.0)(typescript@5.4.5)
eslint: 8.57.0
jest: 27.5.1
transitivePeerDependencies:
@@ -7625,13 +8875,34 @@ packages:
- typescript
dev: true
+ /eslint-plugin-jest@27.9.0(@typescript-eslint/eslint-plugin@6.21.0)(eslint@8.57.0)(typescript@5.4.5):
+ resolution: {integrity: sha512-QIT7FH7fNmd9n4se7FFKHbsLKGQiw885Ds6Y/sxKgCZ6natwCsXdgPOADnYVxN2QrRweF0FZWbJ6S7Rsn7llug==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+ peerDependencies:
+ '@typescript-eslint/eslint-plugin': ^5.0.0 || ^6.0.0 || ^7.0.0
+ eslint: ^7.0.0 || ^8.0.0
+ jest: '*'
+ peerDependenciesMeta:
+ '@typescript-eslint/eslint-plugin':
+ optional: true
+ jest:
+ optional: true
+ dependencies:
+ '@typescript-eslint/eslint-plugin': 6.21.0(@typescript-eslint/parser@6.21.0)(eslint@8.57.0)(typescript@5.4.5)
+ '@typescript-eslint/utils': 5.62.0(eslint@8.57.0)(typescript@5.4.5)
+ eslint: 8.57.0
+ transitivePeerDependencies:
+ - supports-color
+ - typescript
+ dev: true
+
/eslint-plugin-jsx-a11y@6.8.0(eslint@8.57.0):
resolution: {integrity: sha512-Hdh937BS3KdwwbBaKd5+PLCOmYY6U4f2h9Z2ktwtNKvIdIEu137rjYbcb9ApSbVJfWxANNuiKTD/9tOKjK9qOA==}
engines: {node: '>=4.0'}
peerDependencies:
eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8
dependencies:
- '@babel/runtime': 7.24.1
+ '@babel/runtime': 7.24.4
aria-query: 5.3.0
array-includes: 3.1.8
array.prototype.flatmap: 1.3.2
@@ -7640,7 +8911,7 @@ packages:
axobject-query: 3.2.1
damerau-levenshtein: 1.0.8
emoji-regex: 9.2.2
- es-iterator-helpers: 1.0.18
+ es-iterator-helpers: 1.0.19
eslint: 8.57.0
hasown: 2.0.2
jsx-ast-utils: 3.3.5
@@ -7650,7 +8921,25 @@ packages:
object.fromentries: 2.0.8
dev: true
- /eslint-plugin-prettier@5.1.3(eslint-config-prettier@9.1.0)(eslint@8.57.0)(prettier@3.2.5):
+ /eslint-plugin-only-warn@1.1.0:
+ resolution: {integrity: sha512-2tktqUAT+Q3hCAU0iSf4xAN1k9zOpjK5WO8104mB0rT/dGhOa09582HN5HlbxNbPRZ0THV7nLGvzugcNOSjzfA==}
+ engines: {node: '>=6'}
+ dev: true
+
+ /eslint-plugin-playwright@0.16.0(eslint-plugin-jest@27.9.0)(eslint@8.57.0):
+ resolution: {integrity: sha512-DcHpF0SLbNeh9MT4pMzUGuUSnJ7q5MWbP8sSEFIMS6j7Ggnduq8ghNlfhURgty4c1YFny7Ge9xYTO1FSAoV2Vw==}
+ peerDependencies:
+ eslint: '>=7'
+ eslint-plugin-jest: '>=25'
+ peerDependenciesMeta:
+ eslint-plugin-jest:
+ optional: true
+ dependencies:
+ eslint: 8.57.0
+ eslint-plugin-jest: 27.9.0(@typescript-eslint/eslint-plugin@6.21.0)(eslint@8.57.0)(typescript@5.4.5)
+ dev: true
+
+ /eslint-plugin-prettier@5.1.3(@types/eslint@8.56.10)(eslint-config-prettier@9.1.0)(eslint@8.57.0)(prettier@3.2.5):
resolution: {integrity: sha512-C9GCVAs4Eq7ZC/XFQHITLiHJxQngdtraXaM+LoUFoFp/lHNl2Zn8f3WQbe9HvTBBQ9YnKFB0/2Ajdqwo5D1EAw==}
engines: {node: ^14.18.0 || >=16.0.0}
peerDependencies:
@@ -7664,6 +8953,7 @@ packages:
eslint-config-prettier:
optional: true
dependencies:
+ '@types/eslint': 8.56.10
eslint: 8.57.0
eslint-config-prettier: 9.1.0(eslint@8.57.0)
prettier: 3.2.5
@@ -7671,8 +8961,8 @@ packages:
synckit: 0.8.8
dev: true
- /eslint-plugin-react-hooks@4.6.0(eslint@8.57.0):
- resolution: {integrity: sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==}
+ /eslint-plugin-react-hooks@4.6.1(eslint@8.57.0):
+ resolution: {integrity: sha512-Ck77j8hF7l9N4S/rzSLOWEKpn994YH6iwUK8fr9mXIaQvGpQYmOnQLbiue1u5kI5T1y+gdgqosnEAO9NCz0DBg==}
engines: {node: '>=10'}
peerDependencies:
eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0
@@ -7692,7 +8982,7 @@ packages:
array.prototype.toreversed: 1.1.2
array.prototype.tosorted: 1.1.3
doctrine: 2.1.0
- es-iterator-helpers: 1.0.18
+ es-iterator-helpers: 1.0.19
eslint: 8.57.0
estraverse: 5.3.0
jsx-ast-utils: 3.3.5
@@ -7707,14 +8997,14 @@ packages:
string.prototype.matchall: 4.0.11
dev: true
- /eslint-plugin-storybook@0.8.0(eslint@8.57.0)(typescript@5.4.3):
+ /eslint-plugin-storybook@0.8.0(eslint@8.57.0)(typescript@5.4.5):
resolution: {integrity: sha512-CZeVO5EzmPY7qghO2t64oaFM+8FTaD4uzOEjHKp516exyTKo+skKAL9GI3QALS2BXhyALJjNtwbmr1XinGE8bA==}
engines: {node: '>= 18'}
peerDependencies:
eslint: '>=6'
dependencies:
'@storybook/csf': 0.0.1
- '@typescript-eslint/utils': 5.62.0(eslint@8.57.0)(typescript@5.4.3)
+ '@typescript-eslint/utils': 5.62.0(eslint@8.57.0)(typescript@5.4.5)
eslint: 8.57.0
requireindex: 1.2.0
ts-dedent: 2.2.0
@@ -7723,19 +9013,72 @@ packages:
- typescript
dev: true
- /eslint-plugin-testing-library@5.11.1(eslint@8.57.0)(typescript@5.4.3):
+ /eslint-plugin-testing-library@5.11.1(eslint@8.57.0)(typescript@5.4.5):
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.57.0)(typescript@5.4.3)
+ '@typescript-eslint/utils': 5.62.0(eslint@8.57.0)(typescript@5.4.5)
+ eslint: 8.57.0
+ transitivePeerDependencies:
+ - supports-color
+ - typescript
+ dev: true
+
+ /eslint-plugin-testing-library@6.2.2(eslint@8.57.0)(typescript@5.4.5):
+ resolution: {integrity: sha512-1E94YOTUDnOjSLyvOwmbVDzQi/WkKm3WVrMXu6SmBr6DN95xTGZmI6HJ/eOkSXh/DlheRsxaPsJvZByDBhWLVQ==}
+ 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.57.0)(typescript@5.4.5)
eslint: 8.57.0
transitivePeerDependencies:
- supports-color
- typescript
dev: true
+ /eslint-plugin-tsdoc@0.2.17:
+ resolution: {integrity: sha512-xRmVi7Zx44lOBuYqG8vzTXuL6IdGOeF9nHX17bjJ8+VE6fsxpdGem0/SBTmAwgYMKYB1WBkqRJVQ+n8GK041pA==}
+ dependencies:
+ '@microsoft/tsdoc': 0.14.2
+ '@microsoft/tsdoc-config': 0.16.2
+ dev: true
+
+ /eslint-plugin-turbo@1.13.3(eslint@8.57.0):
+ resolution: {integrity: sha512-RjmlnqYsEqnJ+U3M3IS5jLJDjWv5NsvReCpsC61n5pJ4JMHTZ/lU0EIoL1ccuL1L5wP0APzdXdByBxERcPQ+Nw==}
+ peerDependencies:
+ eslint: '>6.6.0'
+ dependencies:
+ dotenv: 16.0.3
+ eslint: 8.57.0
+ dev: true
+
+ /eslint-plugin-unicorn@48.0.1(eslint@8.57.0):
+ resolution: {integrity: sha512-FW+4r20myG/DqFcCSzoumaddKBicIPeFnTrifon2mWIzlfyvzwyqZjqVP7m4Cqr/ZYisS2aiLghkUWaPg6vtCw==}
+ engines: {node: '>=16'}
+ peerDependencies:
+ eslint: '>=8.44.0'
+ dependencies:
+ '@babel/helper-validator-identifier': 7.22.20
+ '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0)
+ ci-info: 3.9.0
+ clean-regexp: 1.0.0
+ eslint: 8.57.0
+ esquery: 1.5.0
+ indent-string: 4.0.0
+ is-builtin-module: 3.2.1
+ jsesc: 3.0.2
+ lodash: 4.17.21
+ pluralize: 8.0.0
+ read-pkg-up: 7.0.1
+ regexp-tree: 0.1.27
+ regjsparser: 0.10.0
+ semver: 7.6.0
+ strip-indent: 3.0.0
+ dev: true
+
/eslint-scope@5.1.1:
resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==}
engines: {node: '>=8.0.0'}
@@ -7769,7 +9112,7 @@ packages:
eslint: ^7.0.0 || ^8.0.0
webpack: ^5.0.0
dependencies:
- '@types/eslint': 8.56.6
+ '@types/eslint': 8.56.10
eslint: 8.57.0
jest-worker: 28.1.3
micromatch: 4.0.5
@@ -8006,6 +9349,15 @@ packages:
- supports-color
dev: true
+ /external-editor@3.1.0:
+ resolution: {integrity: sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==}
+ engines: {node: '>=4'}
+ dependencies:
+ chardet: 0.7.0
+ iconv-lite: 0.4.24
+ tmp: 0.0.33
+ dev: true
+
/fast-deep-equal@3.1.3:
resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
dev: true
@@ -8058,6 +9410,13 @@ packages:
resolution: {integrity: sha512-3yurQZ2hD9VISAhJJP9bpYFNQrHHBXE2JxxjY5aLEcDi46RmAzJE2OC9FAde0yis5ElW0jTTzs0zfg/Cca4XqQ==}
dev: true
+ /figures@3.2.0:
+ resolution: {integrity: sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==}
+ engines: {node: '>=8'}
+ dependencies:
+ escape-string-regexp: 1.0.5
+ dev: true
+
/file-entry-cache@6.0.1:
resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==}
engines: {node: ^10.12.0 || >=12.0.0}
@@ -8178,8 +9537,8 @@ packages:
resolution: {integrity: sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==}
dev: true
- /flow-parser@0.232.0:
- resolution: {integrity: sha512-U8vcKyYdM+Kb0tPzfPJ5JyPMU0uXKwHxp0L6BcEc+wBlbTW9qRhOqV5DeGXclgclVvtqQNGEG8Strj/b6c/IxA==}
+ /flow-parser@0.235.1:
+ resolution: {integrity: sha512-s04193L4JE+ntEcQXbD6jxRRlyj9QXcgEl2W6xSjH4l9x4b0eHoCHfbYHjqf9LdZFUiM5LhgpiqsvLj/AyOyYQ==}
engines: {node: '>=0.4.0'}
dev: true
@@ -8203,7 +9562,7 @@ packages:
resolution: {integrity: sha512-HveLELh9yhZXO/QOfaFS38vlwJZ/3sKu+jarfXzRmbmihSOH/BbRWnUvmg8wLFiYy6h4HlH4lkRfZRccHYmXgA==}
engines: {node: '>=12'}
dependencies:
- '@tweenjs/tween.js': 23.1.1
+ '@tweenjs/tween.js': 23.1.2
accessor-fn: 1.5.0
bezier-js: 6.1.4
canvas-color-tracker: 1.2.1
@@ -8217,7 +9576,6 @@ packages:
index-array-by: 1.4.1
kapsule: 1.14.5
lodash-es: 4.17.21
- dev: false
/foreground-child@3.1.1:
resolution: {integrity: sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==}
@@ -8226,7 +9584,7 @@ packages:
cross-spawn: 7.0.3
signal-exit: 4.1.0
- /fork-ts-checker-webpack-plugin@6.5.3(eslint@8.57.0)(typescript@5.4.3)(webpack@5.91.0):
+ /fork-ts-checker-webpack-plugin@6.5.3(eslint@8.57.0)(typescript@5.4.5)(webpack@5.91.0):
resolution: {integrity: sha512-SbH/l9ikmMWycd5puHJKTkZJKddF4iRLyW3DeZ08HTI7NGyLS38MXd/KGgeWumQO7YNQbW2u/NtPT2YowbPaGQ==}
engines: {node: '>=10', yarn: '>=1.0.0'}
peerDependencies:
@@ -8254,11 +9612,11 @@ packages:
schema-utils: 2.7.0
semver: 7.6.0
tapable: 1.1.3
- typescript: 5.4.3
+ typescript: 5.4.5
webpack: 5.91.0(esbuild@0.20.2)
dev: true
- /fork-ts-checker-webpack-plugin@8.0.0(typescript@5.4.3)(webpack@5.91.0):
+ /fork-ts-checker-webpack-plugin@8.0.0(typescript@5.4.5)(webpack@5.91.0):
resolution: {integrity: sha512-mX3qW3idpueT2klaQXBzrIM/pHw+T0B/V9KHEvNrqijTq9NFnMZU6oreVxDYcf33P8a5cW+67PjodNHthGnNVg==}
engines: {node: '>=12.13.0', yarn: '>=1.0.0'}
peerDependencies:
@@ -8277,7 +9635,7 @@ packages:
schema-utils: 3.3.0
semver: 7.6.0
tapable: 2.2.1
- typescript: 5.4.3
+ typescript: 5.4.5
webpack: 5.91.0(esbuild@0.20.2)
dev: true
@@ -8306,7 +9664,6 @@ packages:
/fromentries@1.3.2:
resolution: {integrity: sha512-cHEpEQHUg0f8XdtZCc2ZAhrHzKzT0MrFUTcvx+hfxYu7rGMDc5SKoXFh+n4YigxsHXRzc6OrCshdR1bWH6HHyg==}
- dev: false
/fs-constants@1.0.0:
resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==}
@@ -8438,6 +9795,11 @@ packages:
engines: {node: '>=8.0.0'}
dev: true
+ /get-stdin@9.0.0:
+ resolution: {integrity: sha512-dVKBjfWisLAicarI2Sf+JuBE/DghV4UzNAVe9yhEJuzeREd3JhOTE9cUaJTeSa77fsbQUK3pcOpJfM59+VKZaA==}
+ engines: {node: '>=12'}
+ dev: true
+
/get-stream@6.0.1:
resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==}
engines: {node: '>=10'}
@@ -8457,6 +9819,24 @@ packages:
get-intrinsic: 1.2.4
dev: true
+ /get-tsconfig@4.7.3:
+ resolution: {integrity: sha512-ZvkrzoUA0PQZM6fy6+/Hce561s+faD1rsNwhnO5FelNjyy7EMGJ3Rz1AQ8GYDWjhRs/7dBLOEJvhK8MiEJOAFg==}
+ dependencies:
+ resolve-pkg-maps: 1.0.0
+ dev: true
+
+ /get-uri@6.0.3:
+ resolution: {integrity: sha512-BzUrJBS9EcUb4cFol8r4W3v1cPsSyajLSthNkz5BxbpDcHN5tIrM10E2eNvfnvBn3DaT3DUgx0OpsBKkaOpanw==}
+ engines: {node: '>= 14'}
+ dependencies:
+ basic-ftp: 5.0.5
+ data-uri-to-buffer: 6.0.2
+ debug: 4.3.4
+ fs-extra: 11.2.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
/giget@1.2.3:
resolution: {integrity: sha512-8EHPljDvs7qKykr6uw8b+lqLiUc/vUg+KVTI0uND4s63TdsZM2Xus3mflvF0DDG9SiM4RlCkFGL+7aAjRmV7KA==}
hasBin: true
@@ -8471,6 +9851,10 @@ packages:
tar: 6.2.1
dev: true
+ /git-hooks-list@3.1.0:
+ resolution: {integrity: sha512-LF8VeHeR7v+wAbXqfgRlTSX/1BJR9Q1vEMR8JAz1cEg6GX07+zyj3sAdDvYjj/xnlIfVuGgj4qBei1K3hKH+PA==}
+ dev: true
+
/github-slugger@2.0.0:
resolution: {integrity: sha512-IaOQ9puYtjrkq7Y0Ygl9KDZnrf/aiUJYUpVf89y8kyaxbRG7Y1SrX/jaumrv81vc61+kiMempujsM3Yw7w5qcw==}
dev: true
@@ -8491,8 +9875,8 @@ packages:
resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==}
dev: true
- /glob@10.3.12:
- resolution: {integrity: sha512-TCNv8vJ+xz4QiqTpfOJA7HvYv+tNIRHKfUWw/q+v2jdgN4ebz+KY9tGx5J4rHP0o84mNP+ApH66HRX8us3Khqg==}
+ /glob@10.3.10:
+ resolution: {integrity: sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==}
engines: {node: '>=16 || 14 >=14.17'}
hasBin: true
dependencies:
@@ -8559,6 +9943,20 @@ packages:
define-properties: 1.2.1
dev: true
+ /globby@10.0.2:
+ resolution: {integrity: sha512-7dUi7RvCoT/xast/o/dLN53oqND4yk0nsHkhRgn9w65C4PofCLOoJ39iSOg+qVDdWQPIEj+eszMHQ+aLVwwQSg==}
+ engines: {node: '>=8'}
+ dependencies:
+ '@types/glob': 7.2.0
+ array-union: 2.1.0
+ dir-glob: 3.0.1
+ fast-glob: 3.3.2
+ glob: 7.2.3
+ ignore: 5.3.1
+ merge2: 1.4.1
+ slash: 3.0.0
+ dev: true
+
/globby@11.1.0:
resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==}
engines: {node: '>=10'}
@@ -8571,6 +9969,17 @@ packages:
slash: 3.0.0
dev: true
+ /globby@13.2.2:
+ resolution: {integrity: sha512-Y1zNGV+pzQdh7H39l9zgB4PJqjRNqydvdYCDG4HFXM4XuvSaQQlEc91IU1yALL8gUTDomgBAfz3XJdmUS+oo0w==}
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+ dependencies:
+ dir-glob: 3.0.1
+ fast-glob: 3.3.2
+ ignore: 5.3.1
+ merge2: 1.4.1
+ slash: 4.0.0
+ dev: true
+
/gopd@1.0.1:
resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==}
dependencies:
@@ -8579,6 +9988,13 @@ packages:
/graceful-fs@4.2.11:
resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
+
+ /gradient-string@2.0.2:
+ resolution: {integrity: sha512-rEDCuqUQ4tbD78TpzsMtt5OIf0cBCSDWSJtUDaF6JsAh+k0v9r++NzxNEG87oDZx9ZwGhD8DaezR2L/yrw0Jdw==}
+ engines: {node: '>=10'}
+ dependencies:
+ chalk: 4.1.2
+ tinygradient: 1.1.5
dev: true
/graphemer@1.4.0:
@@ -8632,7 +10048,6 @@ packages:
/has-flag@3.0.0:
resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==}
engines: {node: '>=4'}
- requiresBuild: true
/has-flag@4.0.0:
resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
@@ -8691,6 +10106,13 @@ packages:
hasBin: true
dev: true
+ /header-case@1.0.1:
+ resolution: {integrity: sha512-i0q9mkOeSuhXw6bGgiQCCBgY/jlZuV/7dZXyZ9c6LcBrqwvT8eT719E9uxE5LiZftdl+z81Ugbg/VvXV4OJOeQ==}
+ dependencies:
+ no-case: 2.3.2
+ upper-case: 1.1.3
+ dev: true
+
/hoist-non-react-statics@3.3.2:
resolution: {integrity: sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==}
dependencies:
@@ -8741,7 +10163,7 @@ packages:
he: 1.2.0
param-case: 3.0.4
relateurl: 0.2.7
- terser: 5.30.0
+ terser: 5.30.4
dev: true
/html-tags@3.3.1:
@@ -8818,6 +10240,16 @@ packages:
- supports-color
dev: true
+ /http-proxy-agent@7.0.2:
+ resolution: {integrity: sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==}
+ engines: {node: '>= 14'}
+ dependencies:
+ agent-base: 7.1.1
+ debug: 4.3.4
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
/http-proxy-middleware@2.0.6(@types/express@4.17.21):
resolution: {integrity: sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==}
engines: {node: '>=12.0.0'}
@@ -8858,6 +10290,16 @@ packages:
- supports-color
dev: true
+ /https-proxy-agent@7.0.4:
+ resolution: {integrity: sha512-wlwpilI7YdjSkWaQ/7omYBMTliDcmCN8OLihO6I9B86g06lMyAoqgoDpV0XqoaPOKj+0DIdAvnsWfyAAhmimcg==}
+ engines: {node: '>= 14'}
+ dependencies:
+ agent-base: 7.1.1
+ debug: 4.3.4
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
/human-signals@2.1.0:
resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==}
engines: {node: '>=10.17.0'}
@@ -8968,7 +10410,6 @@ packages:
/index-array-by@1.4.1:
resolution: {integrity: sha512-Zu6THdrxQdyTuT2uA5FjUoBEsFHPzHcPIj18FszN6yXKHxSfGcR4TPLabfuT//E25q1Igyx9xta2WMvD/x9P/g==}
engines: {node: '>=12'}
- dev: false
/inflight@1.0.6:
resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==}
@@ -8989,6 +10430,46 @@ packages:
resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==}
dev: true
+ /inquirer@7.3.3:
+ resolution: {integrity: sha512-JG3eIAj5V9CwcGvuOmoo6LB9kbAYT8HXffUl6memuszlwDC/qvFAJw49XJ5NROSFNPxp3iQg1GqkFhaY/CR0IA==}
+ engines: {node: '>=8.0.0'}
+ dependencies:
+ ansi-escapes: 4.3.2
+ chalk: 4.1.2
+ cli-cursor: 3.1.0
+ cli-width: 3.0.0
+ external-editor: 3.1.0
+ figures: 3.2.0
+ lodash: 4.17.21
+ mute-stream: 0.0.8
+ run-async: 2.4.1
+ rxjs: 6.6.7
+ string-width: 4.2.3
+ strip-ansi: 6.0.1
+ through: 2.3.8
+ dev: true
+
+ /inquirer@8.2.6:
+ resolution: {integrity: sha512-M1WuAmb7pn9zdFRtQYk26ZBoY043Sse0wVDdk4Bppr+JOXyQYybdtvK+l9wUibhtjdjvtoiNy8tk+EgsYIUqKg==}
+ engines: {node: '>=12.0.0'}
+ dependencies:
+ ansi-escapes: 4.3.2
+ chalk: 4.1.2
+ cli-cursor: 3.1.0
+ cli-width: 3.0.0
+ external-editor: 3.1.0
+ figures: 3.2.0
+ lodash: 4.17.21
+ mute-stream: 0.0.8
+ ora: 5.4.1
+ run-async: 2.4.1
+ rxjs: 7.8.1
+ string-width: 4.2.3
+ strip-ansi: 6.0.1
+ through: 2.3.8
+ wrap-ansi: 6.2.0
+ dev: true
+
/internal-slot@1.0.7:
resolution: {integrity: sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==}
engines: {node: '>= 0.4'}
@@ -9001,7 +10482,14 @@ packages:
/internmap@2.0.3:
resolution: {integrity: sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg==}
engines: {node: '>=12'}
- dev: false
+
+ /ip-address@9.0.5:
+ resolution: {integrity: sha512-zHtQzGojZXTwZTHQqra+ETKd4Sn3vgi7uBmlPoXVWZqYvuKmtI0l/VZTjqGmJY9x88GGOaZ9+G9ES8hC4T4X8g==}
+ engines: {node: '>= 12'}
+ dependencies:
+ jsbn: 1.1.0
+ sprintf-js: 1.1.3
+ dev: true
/ip@2.0.1:
resolution: {integrity: sha512-lJUL9imLTNi1ZfXT+DU6rBBdbiKGBuay9B6xGSPVjUeQwaH1RIGqef8RZkUtHioLmSNpPR5M4HVKJGm1j8FWVQ==}
@@ -9012,8 +10500,8 @@ packages:
engines: {node: '>= 0.10'}
dev: true
- /ipaddr.js@2.1.0:
- resolution: {integrity: sha512-LlbxQ7xKzfBusov6UMi4MFpEg0m+mAm9xyNGEduwXMEDuf4WfzB/RZwMVYEd7IKGvh4IUkEXYxtAVu9T3OelJQ==}
+ /ipaddr.js@2.2.0:
+ resolution: {integrity: sha512-Ag3wB2o37wslZS19hZqorUnrnzSkpOVy+IiiDEiTqNubEYpYuHWIf6K4psgN2ZWKExS4xhVCrRVfb/wfW8fWJA==}
engines: {node: '>= 10'}
dev: true
@@ -9163,6 +10651,12 @@ packages:
engines: {node: '>=8'}
dev: true
+ /is-lower-case@1.1.3:
+ resolution: {integrity: sha512-+5A1e/WJpLLXZEDlgz4G//WYSHyQBD32qa4Jd3Lw06qQlv3fJHnp3YIHjTQSGzHMgzmVKz2ZP3rBxTHkPw/lxA==}
+ dependencies:
+ lower-case: 1.1.4
+ dev: true
+
/is-map@2.0.3:
resolution: {integrity: sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==}
engines: {node: '>= 0.4'}
@@ -9216,6 +10710,11 @@ packages:
engines: {node: '>=10'}
dev: true
+ /is-plain-obj@4.1.0:
+ resolution: {integrity: sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==}
+ engines: {node: '>=12'}
+ dev: true
+
/is-plain-object@2.0.4:
resolution: {integrity: sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==}
engines: {node: '>=0.10.0'}
@@ -9308,6 +10807,12 @@ packages:
engines: {node: '>=10'}
dev: true
+ /is-upper-case@1.1.2:
+ resolution: {integrity: sha512-GQYSJMgfeAmVwh9ixyk888l7OIhNAGKtY6QA+IrWlu9MDTCaXmeozOZ2S9Knj7bQwBO/H6J2kb+pbyTUiMNbsw==}
+ dependencies:
+ upper-case: 1.1.3
+ dev: true
+
/is-weakmap@2.0.2:
resolution: {integrity: sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==}
engines: {node: '>= 0.4'}
@@ -9342,6 +10847,11 @@ packages:
resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==}
dev: true
+ /isbinaryfile@4.0.10:
+ resolution: {integrity: sha512-iHrqe5shvBUcFbmZq9zOQHBoeOhZJu6RQGrDpBgenUm/Am+F3JM2MgQj+rK3Z601fzrL5gLZWtAPH2OBaSVcyw==}
+ engines: {node: '>= 8.0.0'}
+ dev: true
+
/isexe@2.0.0:
resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
@@ -9367,8 +10877,8 @@ packages:
resolution: {integrity: sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==}
engines: {node: '>=8'}
dependencies:
- '@babel/core': 7.24.3
- '@babel/parser': 7.24.1
+ '@babel/core': 7.24.4
+ '@babel/parser': 7.24.4
'@istanbuljs/schema': 0.1.3
istanbul-lib-coverage: 3.2.2
semver: 6.3.1
@@ -9440,7 +10950,6 @@ packages:
/jerrypick@1.1.1:
resolution: {integrity: sha512-XTtedPYEyVp4t6hJrXuRKr/jHj8SC4z+4K0b396PMkov6muL+i8IIamJIvZWe3jUspgIJak0P+BaWKawMYNBLg==}
engines: {node: '>=12'}
- dev: false
/jest-changed-files@27.5.1:
resolution: {integrity: sha512-buBLMiByfWGCoMsLLzGUUSpAmIAGnbR2KJoMN10ziLhOLvP4e0SlypHnAel8iqQXTrcbmfEY9sSqae5sgUsTvw==}
@@ -9458,7 +10967,7 @@ packages:
'@jest/environment': 27.5.1
'@jest/test-result': 27.5.1
'@jest/types': 27.5.1
- '@types/node': 16.18.93
+ '@types/node': 20.12.7
chalk: 4.1.2
co: 4.6.0
dedent: 0.7.0
@@ -9517,10 +11026,10 @@ packages:
ts-node:
optional: true
dependencies:
- '@babel/core': 7.24.3
+ '@babel/core': 7.24.4
'@jest/test-sequencer': 27.5.1
'@jest/types': 27.5.1
- babel-jest: 27.5.1(@babel/core@7.24.3)
+ babel-jest: 27.5.1(@babel/core@7.24.4)
chalk: 4.1.2
ci-info: 3.9.0
deepmerge: 4.3.1
@@ -9593,7 +11102,7 @@ packages:
'@jest/environment': 27.5.1
'@jest/fake-timers': 27.5.1
'@jest/types': 27.5.1
- '@types/node': 16.18.93
+ '@types/node': 20.12.7
jest-mock: 27.5.1
jest-util: 27.5.1
jsdom: 16.7.0
@@ -9611,7 +11120,7 @@ packages:
'@jest/environment': 27.5.1
'@jest/fake-timers': 27.5.1
'@jest/types': 27.5.1
- '@types/node': 16.18.93
+ '@types/node': 20.12.7
jest-mock: 27.5.1
jest-util: 27.5.1
dev: true
@@ -9632,7 +11141,7 @@ packages:
dependencies:
'@jest/types': 27.5.1
'@types/graceful-fs': 4.1.9
- '@types/node': 16.18.93
+ '@types/node': 20.12.7
anymatch: 3.1.3
fb-watchman: 2.0.2
graceful-fs: 4.2.11
@@ -9654,7 +11163,7 @@ packages:
'@jest/source-map': 27.5.1
'@jest/test-result': 27.5.1
'@jest/types': 27.5.1
- '@types/node': 16.18.93
+ '@types/node': 20.12.7
chalk: 4.1.2
co: 4.6.0
expect: 27.5.1
@@ -9749,7 +11258,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.93
+ '@types/node': 20.12.7
dev: true
/jest-pnp-resolver@1.2.3(jest-resolve@27.5.1):
@@ -9810,7 +11319,7 @@ packages:
'@jest/test-result': 27.5.1
'@jest/transform': 27.5.1
'@jest/types': 27.5.1
- '@types/node': 16.18.93
+ '@types/node': 20.12.7
chalk: 4.1.2
emittery: 0.8.1
graceful-fs: 4.2.11
@@ -9867,7 +11376,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.93
+ '@types/node': 20.12.7
graceful-fs: 4.2.11
dev: true
@@ -9875,16 +11384,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.24.3
- '@babel/generator': 7.24.1
- '@babel/plugin-syntax-typescript': 7.24.1(@babel/core@7.24.3)
+ '@babel/core': 7.24.4
+ '@babel/generator': 7.24.4
+ '@babel/plugin-syntax-typescript': 7.24.1(@babel/core@7.24.4)
'@babel/traverse': 7.24.1
'@babel/types': 7.24.0
'@jest/transform': 27.5.1
'@jest/types': 27.5.1
'@types/babel__traverse': 7.20.5
'@types/prettier': 2.7.3
- babel-preset-current-node-syntax: 1.0.1(@babel/core@7.24.3)
+ babel-preset-current-node-syntax: 1.0.1(@babel/core@7.24.4)
chalk: 4.1.2
expect: 27.5.1
graceful-fs: 4.2.11
@@ -9906,7 +11415,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.93
+ '@types/node': 20.12.7
chalk: 4.1.2
ci-info: 3.9.0
graceful-fs: 4.2.11
@@ -9918,7 +11427,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.93
+ '@types/node': 20.12.7
chalk: 4.1.2
ci-info: 3.9.0
graceful-fs: 4.2.11
@@ -9930,7 +11439,7 @@ packages:
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
'@jest/types': 29.6.3
- '@types/node': 16.18.93
+ '@types/node': 20.12.7
chalk: 4.1.2
ci-info: 3.9.0
graceful-fs: 4.2.11
@@ -9971,7 +11480,7 @@ packages:
dependencies:
'@jest/test-result': 27.5.1
'@jest/types': 27.5.1
- '@types/node': 16.18.93
+ '@types/node': 20.12.7
ansi-escapes: 4.3.2
chalk: 4.1.2
jest-util: 27.5.1
@@ -9984,7 +11493,7 @@ packages:
dependencies:
'@jest/test-result': 28.1.3
'@jest/types': 28.1.3
- '@types/node': 16.18.93
+ '@types/node': 20.12.7
ansi-escapes: 4.3.2
chalk: 4.1.2
emittery: 0.10.2
@@ -9996,7 +11505,7 @@ packages:
resolution: {integrity: sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==}
engines: {node: '>= 10.13.0'}
dependencies:
- '@types/node': 16.18.93
+ '@types/node': 20.12.7
merge-stream: 2.0.0
supports-color: 7.2.0
dev: true
@@ -10005,7 +11514,7 @@ packages:
resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==}
engines: {node: '>= 10.13.0'}
dependencies:
- '@types/node': 16.18.93
+ '@types/node': 20.12.7
merge-stream: 2.0.0
supports-color: 8.1.1
dev: true
@@ -10014,7 +11523,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.93
+ '@types/node': 20.12.7
merge-stream: 2.0.0
supports-color: 8.1.1
dev: true
@@ -10044,6 +11553,10 @@ packages:
resolution: {integrity: sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==}
hasBin: true
+ /jju@1.4.0:
+ resolution: {integrity: sha512-8wb9Yw966OSxApiCt0K3yNJL8pnNeIv+OEq2YMidz4FKP6nonSRoOXc80iXY4JaN2FC11B9qsNmDsm+ZOfMROA==}
+ dev: true
+
/js-tokens@4.0.0:
resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
@@ -10062,7 +11575,11 @@ packages:
argparse: 2.0.1
dev: true
- /jscodeshift@0.15.2(@babel/preset-env@7.24.3):
+ /jsbn@1.1.0:
+ resolution: {integrity: sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A==}
+ dev: true
+
+ /jscodeshift@0.15.2(@babel/preset-env@7.24.4):
resolution: {integrity: sha512-FquR7Okgmc4Sd0aEDwqho3rEiKR3BdvuG9jfdHjLJ6JQoWSMpavug3AoIfnfWhxFlf+5pzQh8qjqz0DWFrNQzA==}
hasBin: true
peerDependencies:
@@ -10071,20 +11588,20 @@ packages:
'@babel/preset-env':
optional: true
dependencies:
- '@babel/core': 7.24.3
- '@babel/parser': 7.24.1
- '@babel/plugin-transform-class-properties': 7.24.1(@babel/core@7.24.3)
- '@babel/plugin-transform-modules-commonjs': 7.24.1(@babel/core@7.24.3)
- '@babel/plugin-transform-nullish-coalescing-operator': 7.24.1(@babel/core@7.24.3)
- '@babel/plugin-transform-optional-chaining': 7.24.1(@babel/core@7.24.3)
- '@babel/plugin-transform-private-methods': 7.24.1(@babel/core@7.24.3)
- '@babel/preset-env': 7.24.3(@babel/core@7.24.3)
- '@babel/preset-flow': 7.24.1(@babel/core@7.24.3)
- '@babel/preset-typescript': 7.24.1(@babel/core@7.24.3)
- '@babel/register': 7.23.7(@babel/core@7.24.3)
- babel-core: 7.0.0-bridge.0(@babel/core@7.24.3)
+ '@babel/core': 7.24.4
+ '@babel/parser': 7.24.4
+ '@babel/plugin-transform-class-properties': 7.24.1(@babel/core@7.24.4)
+ '@babel/plugin-transform-modules-commonjs': 7.24.1(@babel/core@7.24.4)
+ '@babel/plugin-transform-nullish-coalescing-operator': 7.24.1(@babel/core@7.24.4)
+ '@babel/plugin-transform-optional-chaining': 7.24.1(@babel/core@7.24.4)
+ '@babel/plugin-transform-private-methods': 7.24.1(@babel/core@7.24.4)
+ '@babel/preset-env': 7.24.4(@babel/core@7.24.4)
+ '@babel/preset-flow': 7.24.1(@babel/core@7.24.4)
+ '@babel/preset-typescript': 7.24.1(@babel/core@7.24.4)
+ '@babel/register': 7.23.7(@babel/core@7.24.4)
+ babel-core: 7.0.0-bridge.0(@babel/core@7.24.4)
chalk: 4.1.2
- flow-parser: 0.232.0
+ flow-parser: 0.235.1
graceful-fs: 4.2.11
micromatch: 4.0.5
neo-async: 2.6.2
@@ -10119,7 +11636,7 @@ packages:
http-proxy-agent: 4.0.1
https-proxy-agent: 5.0.1
is-potential-custom-element-name: 1.0.1
- nwsapi: 2.2.7
+ nwsapi: 2.2.9
parse5: 6.0.1
saxes: 5.0.1
symbol-tree: 3.2.4
@@ -10149,6 +11666,12 @@ packages:
hasBin: true
dev: true
+ /jsesc@3.0.2:
+ resolution: {integrity: sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==}
+ engines: {node: '>=6'}
+ hasBin: true
+ dev: true
+
/json-buffer@3.0.1:
resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==}
dev: true
@@ -10221,7 +11744,6 @@ packages:
engines: {node: '>=12'}
dependencies:
lodash-es: 4.17.21
- dev: false
/keyv@4.5.4:
resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==}
@@ -10267,7 +11789,7 @@ packages:
engines: {node: '>=14.0.0'}
dependencies:
app-root-dir: 1.0.2
- dotenv: 16.4.5
+ dotenv: 16.0.3
dotenv-expand: 10.0.0
dev: true
@@ -10382,7 +11904,6 @@ packages:
/lodash-es@4.17.21:
resolution: {integrity: sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==}
- dev: false
/lodash.camelcase@4.3.0:
resolution: {integrity: sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==}
@@ -10392,6 +11913,10 @@ packages:
resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==}
dev: true
+ /lodash.get@4.4.2:
+ resolution: {integrity: sha512-z+Uw/vLuy6gQe8cfaFWD7p0wVv8fJl3mbzXh33RS+0oW2wvUqiRXiQ69gLWSLpgB5/6sU+r6BlQR0MBILadqTQ==}
+ dev: true
+
/lodash.memoize@4.1.2:
resolution: {integrity: sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==}
dev: true
@@ -10412,6 +11937,13 @@ packages:
resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==}
dev: true
+ /log-symbols@3.0.0:
+ resolution: {integrity: sha512-dSkNGuI7iG3mfvDzUuYZyvk5dD9ocYCYzNU6CYDE6+Xqd+gwme6Z00NS3dUh8mq/73HaEtT7m6W+yUPtU6BZnQ==}
+ engines: {node: '>=8'}
+ dependencies:
+ chalk: 2.4.2
+ dev: true
+
/log-symbols@4.1.0:
resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==}
engines: {node: '>=10'}
@@ -10443,14 +11975,24 @@ packages:
get-func-name: 2.0.2
dev: true
+ /lower-case-first@1.0.2:
+ resolution: {integrity: sha512-UuxaYakO7XeONbKrZf5FEgkantPf5DUqDayzP5VXZrtRPdH86s4kN47I8B3TW10S4QKiE3ziHNf3kRN//okHjA==}
+ dependencies:
+ lower-case: 1.1.4
+ dev: true
+
+ /lower-case@1.1.4:
+ resolution: {integrity: sha512-2Fgx1Ycm599x+WGpIYwJOvsjmXFzTSc34IwDWALRA/8AopUKAVPwfJ+h5+f85BCp0PWmmJcWzEpxOpoXycMpdA==}
+ dev: true
+
/lower-case@2.0.2:
resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==}
dependencies:
tslib: 2.6.2
dev: true
- /lru-cache@10.2.0:
- resolution: {integrity: sha512-2bIM8x+VAf6JT4bKAljS1qUWgMsqZRPGJS6FSahIMPVvctcNhyVp7AJu7quxOW9jwkryBReKZY5tY5JYv2n/7Q==}
+ /lru-cache@10.2.1:
+ resolution: {integrity: sha512-tS24spDe/zXhWbNPErCHs/AGOzbKGHT+ybSBqmdLm8WZ1xXLWvH8Qn71QPAlqVhd0qUTWjy+Kl9JmISgDdEjsA==}
engines: {node: 14 || >=16.14}
/lru-cache@5.1.1:
@@ -10466,12 +12008,17 @@ packages:
yallist: 4.0.0
dev: true
- /lucide-react@0.364.0(react@18.2.0):
+ /lru-cache@7.18.3:
+ resolution: {integrity: sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==}
+ engines: {node: '>=12'}
+ dev: true
+
+ /lucide-react@0.364.0(react@18.3.0):
resolution: {integrity: sha512-eHfdbJExWtTaZ0tBMGtI7PA/MbqV5wt+o4/yitDce17tadH/75Gq3Tq8jSteb3LhLr0eay/j5YUuN4yXjnI3aw==}
peerDependencies:
react: ^16.5.1 || ^17.0.0 || ^18.0.0
dependencies:
- react: 18.2.0
+ react: 18.3.0
dev: false
/lz-string@1.5.0:
@@ -10485,9 +12032,8 @@ packages:
sourcemap-codec: 1.4.8
dev: true
- /magic-string@0.30.8:
- resolution: {integrity: sha512-ISQTe55T2ao7XtlAStud6qwYPZjE4GK1S/BeVPus4jrq6JuOnQ00YKQC581RWhR122W7msZV263KzVeLoqidyQ==}
- engines: {node: '>=12'}
+ /magic-string@0.30.10:
+ resolution: {integrity: sha512-iIRwTIf0QKV3UAnYK4PU8uiEc4SRh5jX0mwpIwETPpHdhVM4f53RSwS/vXvN1JhGX+Cs7B8qIq3d6AH49O5fAQ==}
dependencies:
'@jridgewell/sourcemap-codec': 1.4.15
dev: true
@@ -10514,6 +12060,10 @@ packages:
semver: 7.6.0
dev: true
+ /make-error@1.3.6:
+ resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==}
+ dev: true
+
/makeerror@1.0.12:
resolution: {integrity: sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==}
dependencies:
@@ -10524,13 +12074,13 @@ packages:
resolution: {integrity: sha512-0aF7ZmVon1igznGI4VS30yugpduQW3y3GkcgGJOp7d8x8QrizhigUxjI/m2UojsXXto+jLAH3KSz+xOJTiORjg==}
dev: true
- /markdown-to-jsx@7.3.2(react@18.2.0):
+ /markdown-to-jsx@7.3.2(react@18.3.0):
resolution: {integrity: sha512-B+28F5ucp83aQm+OxNrPkS8z0tMKaeHiy0lHJs3LqCyDQFtWuenaIrkaVTgAm1pf1AU85LXltva86hlaT17i8Q==}
engines: {node: '>= 10'}
peerDependencies:
react: '>= 0.14.0'
dependencies:
- react: 18.2.0
+ react: 18.3.0
dev: true
/mdn-data@2.0.14:
@@ -10601,12 +12151,6 @@ packages:
hasBin: true
dev: true
- /mime@4.0.1:
- resolution: {integrity: sha512-5lZ5tyrIfliMXzFtkYyekWbtRXObT9OWa8IwQ5uxTBDHucNNwniRqo0yInflj+iYi5CBa6qxadGzGarDfuEOxA==}
- engines: {node: '>=16'}
- hasBin: true
- dev: true
-
/mimic-fn@2.1.0:
resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==}
engines: {node: '>=6'}
@@ -10622,8 +12166,8 @@ packages:
engines: {node: '>=4'}
dev: true
- /mini-css-extract-plugin@2.8.1(webpack@5.91.0):
- resolution: {integrity: sha512-/1HDlyFRxWIZPI1ZpgqlZ8jMw/1Dp/dl3P0L1jtZ+zVcHqwPhGwaJwKL00WVgfnBy6PWCde9W65or7IIETImuA==}
+ /mini-css-extract-plugin@2.9.0(webpack@5.91.0):
+ resolution: {integrity: sha512-Zs1YsZVfemekSZG+44vBsYTLQORkPMwnlv+aehcxK/NLKC+EGhDB39/YePYYqx/sTk6NnYpuqikhSn7+JIevTA==}
engines: {node: '>= 12.13.0'}
peerDependencies:
webpack: ^5.0.0
@@ -10728,6 +12272,10 @@ packages:
thunky: 1.1.0
dev: true
+ /mute-stream@0.0.8:
+ resolution: {integrity: sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==}
+ dev: true
+
/mz@2.7.0:
resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==}
dependencies:
@@ -10757,6 +12305,56 @@ packages:
resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==}
dev: true
+ /netmask@2.0.2:
+ resolution: {integrity: sha512-dBpDMdxv9Irdq66304OLfEmQ9tbNRFnFTuZiLo+bD+r332bBmMJ8GBLXklIXXgxd3+v9+KUnZaUR5PJMa75Gsg==}
+ engines: {node: '>= 0.4.0'}
+ dev: true
+
+ /next@14.1.4(react-dom@18.3.0)(react@18.3.0):
+ resolution: {integrity: sha512-1WTaXeSrUwlz/XcnhGTY7+8eiaFvdet5z9u3V2jb+Ek1vFo0VhHKSAIJvDWfQpttWjnyw14kBeq28TPq7bTeEQ==}
+ engines: {node: '>=18.17.0'}
+ hasBin: true
+ peerDependencies:
+ '@opentelemetry/api': ^1.1.0
+ react: ^18.2.0
+ react-dom: ^18.2.0
+ sass: ^1.3.0
+ peerDependenciesMeta:
+ '@opentelemetry/api':
+ optional: true
+ sass:
+ optional: true
+ dependencies:
+ '@next/env': 14.1.4
+ '@swc/helpers': 0.5.2
+ busboy: 1.6.0
+ caniuse-lite: 1.0.30001612
+ graceful-fs: 4.2.11
+ postcss: 8.4.31
+ react: 18.3.0
+ react-dom: 18.3.0(react@18.3.0)
+ styled-jsx: 5.1.1(react@18.3.0)
+ optionalDependencies:
+ '@next/swc-darwin-arm64': 14.1.4
+ '@next/swc-darwin-x64': 14.1.4
+ '@next/swc-linux-arm64-gnu': 14.1.4
+ '@next/swc-linux-arm64-musl': 14.1.4
+ '@next/swc-linux-x64-gnu': 14.1.4
+ '@next/swc-linux-x64-musl': 14.1.4
+ '@next/swc-win32-arm64-msvc': 14.1.4
+ '@next/swc-win32-ia32-msvc': 14.1.4
+ '@next/swc-win32-x64-msvc': 14.1.4
+ transitivePeerDependencies:
+ - '@babel/core'
+ - babel-plugin-macros
+ dev: false
+
+ /no-case@2.3.2:
+ resolution: {integrity: sha512-rmTZ9kz+f3rCvK2TD1Ue/oZlns7OGoIWP4fc3llxxRXlOkHKoWPPWJOfFYpITabSow43QJbRIoHQXtt10VldyQ==}
+ dependencies:
+ lower-case: 1.1.4
+ dev: true
+
/no-case@3.0.4:
resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==}
dependencies:
@@ -10800,6 +12398,23 @@ packages:
resolution: {integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==}
dev: true
+ /node-plop@0.26.3:
+ resolution: {integrity: sha512-Cov028YhBZ5aB7MdMWJEmwyBig43aGL5WT4vdoB28Oitau1zZAcHUn8Sgfk9HM33TqhtLJ9PlM/O0Mv+QpV/4Q==}
+ engines: {node: '>=8.9.4'}
+ dependencies:
+ '@babel/runtime-corejs3': 7.24.4
+ '@types/inquirer': 6.5.0
+ change-case: 3.1.0
+ del: 5.1.0
+ globby: 10.0.2
+ handlebars: 4.7.8
+ inquirer: 7.3.3
+ isbinaryfile: 4.0.10
+ lodash.get: 4.4.2
+ mkdirp: 0.5.6
+ resolve: 1.22.8
+ dev: true
+
/node-releases@2.0.14:
resolution: {integrity: sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==}
dev: true
@@ -10853,8 +12468,8 @@ packages:
boolbase: 1.0.0
dev: true
- /nwsapi@2.2.7:
- resolution: {integrity: sha512-ub5E4+FBPKwAZx0UwIQOjYWGHTEq5sPqHQNRN8Z9e4A7u3Tj1weLJsL59yH9vmvqEtBHaOmT6cYQKIZOxp35FQ==}
+ /nwsapi@2.2.9:
+ resolution: {integrity: sha512-2f3F0SEEer8bBu0dsNCFF50N0cTThV1nWFYcEYFZttdW0lDAoybv9cQoK7X7/68Z89S7FoRrVjP1LPX4XRf9vg==}
dev: true
/nypm@0.3.8:
@@ -11040,6 +12655,20 @@ packages:
type-check: 0.4.0
dev: true
+ /ora@4.1.1:
+ resolution: {integrity: sha512-sjYP8QyVWBpBZWD6Vr1M/KwknSw6kJOz41tvGMlwWeClHBtYKTbHMki1PsLZnxKpXMPbTKv9b3pjQu3REib96A==}
+ engines: {node: '>=8'}
+ dependencies:
+ chalk: 3.0.0
+ cli-cursor: 3.1.0
+ cli-spinners: 2.9.2
+ is-interactive: 1.0.0
+ log-symbols: 3.0.0
+ mute-stream: 0.0.8
+ strip-ansi: 6.0.1
+ wcwidth: 1.0.1
+ dev: true
+
/ora@5.4.1:
resolution: {integrity: sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==}
engines: {node: '>=10'}
@@ -11055,6 +12684,11 @@ packages:
wcwidth: 1.0.1
dev: true
+ /os-tmpdir@1.0.2:
+ resolution: {integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
/p-finally@1.0.0:
resolution: {integrity: sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==}
engines: {node: '>=4'}
@@ -11092,7 +12726,14 @@ packages:
resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==}
engines: {node: '>=10'}
dependencies:
- p-limit: 3.1.0
+ p-limit: 3.1.0
+ dev: true
+
+ /p-map@3.0.0:
+ resolution: {integrity: sha512-d3qXVTF/s+W+CdJ5A29wywV2n8CQQYahlgz2bFiA+4eVNJbHJodPZ+/gXwPGh0bOqA+j8S+6+ckmvLGPk1QpxQ==}
+ engines: {node: '>=8'}
+ dependencies:
+ aggregate-error: 3.1.0
dev: true
/p-map@4.0.0:
@@ -11130,10 +12771,40 @@ packages:
engines: {node: '>=6'}
dev: true
+ /pac-proxy-agent@7.0.1:
+ resolution: {integrity: sha512-ASV8yU4LLKBAjqIPMbrgtaKIvxQri/yh2OpI+S6hVa9JRkUI3Y3NPFbfngDtY7oFtSMD3w31Xns89mDa3Feo5A==}
+ engines: {node: '>= 14'}
+ dependencies:
+ '@tootallnate/quickjs-emscripten': 0.23.0
+ agent-base: 7.1.1
+ debug: 4.3.4
+ get-uri: 6.0.3
+ http-proxy-agent: 7.0.2
+ https-proxy-agent: 7.0.4
+ pac-resolver: 7.0.1
+ socks-proxy-agent: 8.0.3
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /pac-resolver@7.0.1:
+ resolution: {integrity: sha512-5NPgf87AT2STgwa2ntRMr45jTKrYBGkVU36yT0ig/n/GMAa3oPqhZfIQ2kMEimReg0+t9kZViDVZ83qfVUlckg==}
+ engines: {node: '>= 14'}
+ dependencies:
+ degenerator: 5.0.1
+ netmask: 2.0.2
+ dev: true
+
/pako@0.2.9:
resolution: {integrity: sha512-NUcwaKxUxWrZLpDG+z/xZaCgQITkA/Dv4V/T6bw7VON6l1Xz/VnrBqrYjZQ12TamKHzITTfOEIYUj48y2KXImA==}
dev: true
+ /param-case@2.1.1:
+ resolution: {integrity: sha512-eQE845L6ot89sk2N8liD8HAuH4ca6Vvr7VWAWwt7+kvvG5aBcPmmphQ68JsEG2qa9n1TykS2DLeMt363AAH8/w==}
+ dependencies:
+ no-case: 2.3.2
+ dev: true
+
/param-case@3.0.4:
resolution: {integrity: sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==}
dependencies:
@@ -11165,6 +12836,13 @@ packages:
engines: {node: '>= 0.8'}
dev: true
+ /pascal-case@2.0.1:
+ resolution: {integrity: sha512-qjS4s8rBOJa2Xm0jmxXiyh1+OFf6ekCWOvUaRgAQSktzlTbMotS0nmG9gyYAybCWBcuP4fsBeRCKNwGBnMe2OQ==}
+ dependencies:
+ camel-case: 3.0.0
+ upper-case-first: 1.1.2
+ dev: true
+
/pascal-case@3.1.2:
resolution: {integrity: sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==}
dependencies:
@@ -11176,6 +12854,12 @@ packages:
resolution: {integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==}
dev: true
+ /path-case@2.1.1:
+ resolution: {integrity: sha512-Ou0N05MioItesaLr9q8TtHVWmJ6fxWdqKB2RohFmNWVyJ+2zeKIeDNWAN6B/Pe7wpzWChhZX6nONYmOnMeJQ/Q==}
+ dependencies:
+ no-case: 2.3.2
+ dev: true
+
/path-exists@3.0.0:
resolution: {integrity: sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==}
engines: {node: '>=4'}
@@ -11207,7 +12891,7 @@ packages:
resolution: {integrity: sha512-7xTavNy5RQXnsjANvVvMkEjvloOinkAjv/Z6Ildz9v2RinZ4SBKTWFOVRbaF8p0vpHnyjV/UwNDdKuUv6M5qcA==}
engines: {node: '>=16 || 14 >=14.17'}
dependencies:
- lru-cache: 10.2.0
+ lru-cache: 10.2.1
minipass: 7.0.4
/path-to-regexp@0.1.7:
@@ -11262,6 +12946,7 @@ packages:
/pify@4.0.1:
resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==}
engines: {node: '>=6'}
+ requiresBuild: true
dev: true
/pify@5.0.0:
@@ -11301,11 +12986,16 @@ packages:
find-up: 3.0.0
dev: true
- /pnp-webpack-plugin@1.7.0(typescript@5.4.3):
+ /pluralize@8.0.0:
+ resolution: {integrity: sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==}
+ engines: {node: '>=4'}
+ dev: true
+
+ /pnp-webpack-plugin@1.7.0(typescript@5.4.5):
resolution: {integrity: sha512-2Rb3vm+EXble/sMXNSu6eoBx8e79gKqhNq9F5ZWW6ERNCTE/Q0wQNne5541tE5vKjfM8hpNCYL+LGc1YTfI0dg==}
engines: {node: '>=6'}
dependencies:
- ts-pnp: 1.2.0(typescript@5.4.3)
+ ts-pnp: 1.2.0(typescript@5.4.5)
transitivePeerDependencies:
- typescript
dev: true
@@ -11314,7 +13004,7 @@ packages:
resolution: {integrity: sha512-OBatVyC/N7SCW/FaDHrSd+vn0o5cS855TOmYi4OkdWUMSJCET/xip//ch8xGUvtr3i44X9LVyWwQlRMTN3pwSA==}
engines: {node: '>=10'}
dependencies:
- '@babel/runtime': 7.24.1
+ '@babel/runtime': 7.24.4
dev: true
/possible-typed-array-names@1.0.0:
@@ -11741,8 +13431,8 @@ packages:
postcss-selector-parser: 6.0.16
dev: true
- /postcss-modules-extract-imports@3.0.0(postcss@8.4.38):
- resolution: {integrity: sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==}
+ /postcss-modules-extract-imports@3.1.0(postcss@8.4.38):
+ resolution: {integrity: sha512-k3kNe0aNFQDAZGbin48pL2VNidTF0w4/eASDsxlyspobzU3wZQLOGj7L9gfRe0Jo9/4uud09DsjFNH7winGv8Q==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
@@ -11750,8 +13440,8 @@ packages:
postcss: 8.4.38
dev: true
- /postcss-modules-local-by-default@4.0.4(postcss@8.4.38):
- resolution: {integrity: sha512-L4QzMnOdVwRm1Qb8m4x8jsZzKAaPAgrUF1r/hjDR2Xj7R+8Zsf97jAlSQzWtKx5YNiNGN8QxmPFIc/sh+RQl+Q==}
+ /postcss-modules-local-by-default@4.0.5(postcss@8.4.38):
+ resolution: {integrity: sha512-6MieY7sIfTK0hYfafw1OMEG+2bg8Q1ocHCpoWLqOKj3JXlKu4G7btkmM/B7lFubYkYWmRSPLZi5chid63ZaZYw==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
@@ -11762,8 +13452,8 @@ packages:
postcss-value-parser: 4.2.0
dev: true
- /postcss-modules-scope@3.1.1(postcss@8.4.38):
- resolution: {integrity: sha512-uZgqzdTleelWjzJY+Fhti6F3C9iF1JR/dODLs/JDefozYcKTBCdD8BIl6nNPbTbcLnGrk56hzwZC2DaGNvYjzA==}
+ /postcss-modules-scope@3.2.0(postcss@8.4.38):
+ resolution: {integrity: sha512-oq+g1ssrsZOsx9M96c5w8laRmvEu9C3adDSjI8oTcbfkrTE8hx/zfyobUoWIxaKPO8bt6S62kxpw5GqypEw1QQ==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
@@ -11791,13 +13481,23 @@ packages:
icss-replace-symbols: 1.1.0
lodash.camelcase: 4.3.0
postcss: 8.4.38
- postcss-modules-extract-imports: 3.0.0(postcss@8.4.38)
- postcss-modules-local-by-default: 4.0.4(postcss@8.4.38)
- postcss-modules-scope: 3.1.1(postcss@8.4.38)
+ postcss-modules-extract-imports: 3.1.0(postcss@8.4.38)
+ postcss-modules-local-by-default: 4.0.5(postcss@8.4.38)
+ postcss-modules-scope: 3.2.0(postcss@8.4.38)
postcss-modules-values: 4.0.0(postcss@8.4.38)
string-hash: 1.1.3
dev: true
+ /postcss-nested@5.0.6(postcss@8.4.38):
+ resolution: {integrity: sha512-rKqm2Fk0KbA8Vt3AdGN0FB9OBOMDVajMG6ZCf/GoHgdxUJ4sBFp0A/uMIRm+MJUdo33YXEtjqIz8u7DAp8B7DA==}
+ engines: {node: '>=12.0'}
+ peerDependencies:
+ postcss: ^8.2.14
+ dependencies:
+ postcss: 8.4.38
+ postcss-selector-parser: 6.0.16
+ dev: true
+
/postcss-nested@6.0.1(postcss@8.4.38):
resolution: {integrity: sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==}
engines: {node: '>=12.0'}
@@ -11818,6 +13518,18 @@ packages:
postcss-selector-parser: 6.0.16
dev: true
+ /postcss-nesting@12.1.2(postcss@8.4.38):
+ resolution: {integrity: sha512-FUmTHGDNundodutB4PUBxt/EPuhgtpk8FJGRsBhOuy+6FnkR2A8RZWIsyyy6XmhvX2DZQQWIkvu+HB4IbJm+Ew==}
+ engines: {node: ^14 || ^16 || >=18}
+ peerDependencies:
+ postcss: ^8.4
+ dependencies:
+ '@csstools/selector-resolve-nested': 1.1.0(postcss-selector-parser@6.0.16)
+ '@csstools/selector-specificity': 3.0.3(postcss-selector-parser@6.0.16)
+ postcss: 8.4.38
+ postcss-selector-parser: 6.0.16
+ dev: true
+
/postcss-normalize-charset@5.1.0(postcss@8.4.38):
resolution: {integrity: sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==}
engines: {node: ^10 || ^12 || >=14.0}
@@ -12117,6 +13829,15 @@ packages:
source-map: 0.6.1
dev: true
+ /postcss@8.4.31:
+ resolution: {integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==}
+ engines: {node: ^10 || ^12 || >=14}
+ dependencies:
+ nanoid: 3.3.7
+ picocolors: 1.0.0
+ source-map-js: 1.2.0
+ dev: false
+
/postcss@8.4.38:
resolution: {integrity: sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==}
engines: {node: ^10 || ^12 || >=14}
@@ -12142,6 +13863,19 @@ packages:
fast-diff: 1.3.0
dev: true
+ /prettier-plugin-packagejson@2.5.0(prettier@3.2.5):
+ resolution: {integrity: sha512-6XkH3rpin5QEQodBSVNg+rBo4r91g/1mCaRwS1YGdQJZ6jwqrg2UchBsIG9tpS1yK1kNBvOt84OILsX8uHzBGg==}
+ peerDependencies:
+ prettier: '>= 1.16.0'
+ peerDependenciesMeta:
+ prettier:
+ optional: true
+ dependencies:
+ prettier: 3.2.5
+ sort-package-json: 2.10.0
+ synckit: 0.9.0
+ dev: true
+
/prettier@3.2.5:
resolution: {integrity: sha512-3/GWa9aOC0YeD7LUfvOG2NiDyhOWRvt1k+rcKhOuYnMY24iiCphgneUfJDyFXd6rZCAnuLBv6UeAULtrhT/F4A==}
engines: {node: '>=14'}
@@ -12176,7 +13910,7 @@ packages:
'@jest/schemas': 28.1.3
ansi-regex: 5.0.1
ansi-styles: 5.2.0
- react-is: 18.2.0
+ react-is: 18.3.0
dev: true
/pretty-format@29.7.0:
@@ -12185,7 +13919,7 @@ packages:
dependencies:
'@jest/schemas': 29.6.3
ansi-styles: 5.2.0
- react-is: 18.2.0
+ react-is: 18.3.0
dev: true
/pretty-hrtime@1.0.3:
@@ -12236,6 +13970,26 @@ packages:
ipaddr.js: 1.9.1
dev: true
+ /proxy-agent@6.4.0:
+ resolution: {integrity: sha512-u0piLU+nCOHMgGjRbimiXmA9kM/L9EHh3zL81xCdp7m+Y2pHIsnmbdDoEDoAz5geaonNR6q6+yOPQs6n4T6sBQ==}
+ engines: {node: '>= 14'}
+ dependencies:
+ agent-base: 7.1.1
+ debug: 4.3.4
+ http-proxy-agent: 7.0.2
+ https-proxy-agent: 7.0.4
+ lru-cache: 7.18.3
+ pac-proxy-agent: 7.0.1
+ proxy-from-env: 1.1.0
+ socks-proxy-agent: 8.0.3
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /proxy-from-env@1.1.0:
+ resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==}
+ dev: true
+
/psl@1.9.0:
resolution: {integrity: sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==}
dev: true
@@ -12283,8 +14037,8 @@ packages:
side-channel: 1.0.6
dev: true
- /qs@6.12.0:
- resolution: {integrity: sha512-trVZiI6RMOkO476zLGaBIzszOdFPnCCXHPG9kn0yuS1uz6xdVxPfZdB3vUig9pxPFDM9BRAgz/YUIVQ1/vuiUg==}
+ /qs@6.12.1:
+ resolution: {integrity: sha512-zWmv4RSuB9r2mYQw3zxQuHWeU+42aKi1wWig/j4ele4ygELZ7PEO6MM7rim9oAQH2A5MWfsAVf/jPvTPgCbvUQ==}
engines: {node: '>=0.6'}
dependencies:
side-channel: 1.0.6
@@ -12328,22 +14082,31 @@ packages:
unpipe: 1.0.0
dev: true
- /react-apexcharts@1.4.1(apexcharts@3.48.0)(react@18.2.0):
+ /rc@1.2.8:
+ resolution: {integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==}
+ hasBin: true
+ dependencies:
+ deep-extend: 0.6.0
+ ini: 1.3.8
+ minimist: 1.2.8
+ strip-json-comments: 2.0.1
+ dev: true
+
+ /react-apexcharts@1.4.1(apexcharts@3.49.0)(react@18.3.0):
resolution: {integrity: sha512-G14nVaD64Bnbgy8tYxkjuXEUp/7h30Q0U33xc3AwtGFijJB9nHqOt1a6eG0WBn055RgRg+NwqbKGtqPxy15d0Q==}
peerDependencies:
apexcharts: ^3.41.0
react: '>=0.13'
dependencies:
- apexcharts: 3.48.0
+ apexcharts: 3.49.0
prop-types: 15.8.1
- react: 18.2.0
- dev: false
+ react: 18.3.0
/react-app-polyfill@3.0.0:
resolution: {integrity: sha512-sZ41cxiU5llIB003yxxQBYrARBqe0repqPTTYBTmMqTz9szeBbE37BehCE891NZsmdZqqP+xWKdT3eo3vOzN8w==}
engines: {node: '>=14'}
dependencies:
- core-js: 3.36.1
+ core-js: 3.37.0
object-assign: 4.1.1
promise: 8.3.0
raf: 3.4.1
@@ -12351,27 +14114,27 @@ packages:
whatwg-fetch: 3.6.20
dev: true
- /react-colorful@5.6.1(react-dom@18.2.0)(react@18.2.0):
+ /react-colorful@5.6.1(react-dom@18.3.0)(react@18.3.0):
resolution: {integrity: sha512-1exovf0uGTGyq5mXQT0zgQ80uvj2PCwvF8zY1RN9/vbJVSjSo3fsB/4L3ObbF7u70NduSiK4xu4Y6q1MHoUGEw==}
peerDependencies:
react: '>=16.8.0'
react-dom: '>=16.8.0'
dependencies:
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
+ react: 18.3.0
+ react-dom: 18.3.0(react@18.3.0)
dev: true
- /react-confetti@6.1.0(react@18.2.0):
+ /react-confetti@6.1.0(react@18.3.0):
resolution: {integrity: sha512-7Ypx4vz0+g8ECVxr88W9zhcQpbeujJAVqL14ZnXJ3I23mOI9/oBVTQ3dkJhUmB0D6XOtCZEM6N0Gm9PMngkORw==}
engines: {node: '>=10.18'}
peerDependencies:
react: ^16.3.0 || ^17.0.1 || ^18.0.0
dependencies:
- react: 18.2.0
+ react: 18.3.0
tween-functions: 1.2.0
dev: true
- /react-dev-utils@12.0.1(eslint@8.57.0)(typescript@5.4.3)(webpack@5.91.0):
+ /react-dev-utils@12.0.1(eslint@8.57.0)(typescript@5.4.5)(webpack@5.91.0):
resolution: {integrity: sha512-84Ivxmr17KjUupyqzFode6xKhjwuEJDROWKJy/BthkL7Wn6NJ8h4WE6k/exAv6ImS+0oZLRRW5j/aINMHyeGeQ==}
engines: {node: '>=14'}
peerDependencies:
@@ -12390,7 +14153,7 @@ packages:
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.57.0)(typescript@5.4.3)(webpack@5.91.0)
+ fork-ts-checker-webpack-plugin: 6.5.3(eslint@8.57.0)(typescript@5.4.5)(webpack@5.91.0)
global-modules: 2.0.0
globby: 11.1.0
gzip-size: 6.0.0
@@ -12405,7 +14168,7 @@ packages:
shell-quote: 1.8.1
strip-ansi: 6.0.1
text-table: 0.2.0
- typescript: 5.4.3
+ typescript: 5.4.5
webpack: 5.91.0(esbuild@0.20.2)
transitivePeerDependencies:
- eslint
@@ -12413,19 +14176,19 @@ packages:
- vue-template-compiler
dev: true
- /react-docgen-typescript@2.2.2(typescript@5.4.3):
+ /react-docgen-typescript@2.2.2(typescript@5.4.5):
resolution: {integrity: sha512-tvg2ZtOpOi6QDwsb3GZhOjDkkX0h8Z2gipvTg6OVMUyoYoURhEiRNePT8NZItTVCDh39JJHnLdfCOkzoLbFnTg==}
peerDependencies:
typescript: '>= 4.3.x'
dependencies:
- typescript: 5.4.3
+ typescript: 5.4.5
dev: true
/react-docgen@7.0.3:
resolution: {integrity: sha512-i8aF1nyKInZnANZ4uZrH49qn1paRgBZ7wZiCNBMnenlPzEv0mRl+ShpTVEI6wZNl8sSc79xZkivtgLKQArcanQ==}
engines: {node: '>=16.14.0'}
dependencies:
- '@babel/core': 7.24.3
+ '@babel/core': 7.24.4
'@babel/traverse': 7.24.1
'@babel/types': 7.24.0
'@types/babel__core': 7.20.5
@@ -12439,16 +14202,16 @@ packages:
- supports-color
dev: true
- /react-dom@18.2.0(react@18.2.0):
- resolution: {integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==}
+ /react-dom@18.3.0(react@18.3.0):
+ resolution: {integrity: sha512-zaKdLBftQJnvb7FtDIpZtsAIb2MZU087RM8bRDZU8LVCCFYjPTsDZJNFUWPcVz3HFSN1n/caxi0ca4B/aaVQGQ==}
peerDependencies:
- react: ^18.2.0
+ react: ^18.3.0
dependencies:
loose-envify: 1.4.0
- react: 18.2.0
- scheduler: 0.23.0
+ react: 18.3.0
+ scheduler: 0.23.1
- /react-element-to-jsx-string@15.0.0(react-dom@18.2.0)(react@18.2.0):
+ /react-element-to-jsx-string@15.0.0(react-dom@18.3.0)(react@18.3.0):
resolution: {integrity: sha512-UDg4lXB6BzlobN60P8fHWVPX3Kyw8ORrTeBtClmIlGdkOOE+GYQSFvmEU5iLLpwp/6v42DINwNcwOhOLfQ//FQ==}
peerDependencies:
react: ^0.14.8 || ^15.0.1 || ^16.0.0 || ^17.0.1 || ^18.0.0
@@ -12456,8 +14219,8 @@ packages:
dependencies:
'@base2/pretty-print-object': 1.0.1
is-plain-object: 5.0.0
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
+ react: 18.3.0
+ react-dom: 18.3.0(react@18.3.0)
react-is: 18.1.0
dev: true
@@ -12465,7 +14228,7 @@ packages:
resolution: {integrity: sha512-/6UZ2qgEyH2aqzYZgQPxEnz33NJ2gNsnHA2o5+o4wW9bLM/JYQitNP9xPhsXwC08hMMovfGe/8retsdDsczPRg==}
dev: true
- /react-force-graph-2d@1.25.4(react@18.2.0):
+ /react-force-graph-2d@1.25.4(react@18.3.0):
resolution: {integrity: sha512-Y1xwa79PHVZUedfa/TO+Cboq2hIc1flA1z4o1oraOu6qMS0r421vNpfjWhJPR6qJonNme3tzeVt5boEA7Ue8sg==}
engines: {node: '>=12'}
peerDependencies:
@@ -12473,16 +14236,15 @@ packages:
dependencies:
force-graph: 1.43.5
prop-types: 15.8.1
- react: 18.2.0
- react-kapsule: 2.4.0(react@18.2.0)
- dev: false
+ react: 18.3.0
+ react-kapsule: 2.4.0(react@18.3.0)
- /react-icons@5.0.1(react@18.2.0):
- resolution: {integrity: sha512-WqLZJ4bLzlhmsvme6iFdgO8gfZP17rfjYEJ2m9RsZjZ+cc4k1hTzknEz63YS1MeT50kVzoa1Nz36f4BEx+Wigw==}
+ /react-icons@5.1.0(react@18.3.0):
+ resolution: {integrity: sha512-D3zug1270S4hbSlIRJ0CUS97QE1yNNKDjzQe3HqY0aefp2CBn9VgzgES27sRR2gOvFK+0CNx/BW0ggOESp6fqQ==}
peerDependencies:
react: '*'
dependencies:
- react: 18.2.0
+ react: 18.3.0
dev: false
/react-is@16.13.1:
@@ -12496,11 +14258,11 @@ packages:
resolution: {integrity: sha512-Fl7FuabXsJnV5Q1qIOQwx/sagGF18kogb4gpfcG4gjLBWO0WDiiz1ko/ExayuxE7InyQkBLkxRFG5oxY6Uu3Kg==}
dev: true
- /react-is@18.2.0:
- resolution: {integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==}
+ /react-is@18.3.0:
+ resolution: {integrity: sha512-wRiUsea88TjKDc4FBEn+sLvIDesp6brMbGWnJGjew2waAc9evdhja/2LvePc898HJbHw0L+MTWy7NhpnELAvLQ==}
dev: true
- /react-kapsule@2.4.0(react@18.2.0):
+ /react-kapsule@2.4.0(react@18.3.0):
resolution: {integrity: sha512-w4Yv9CgWdj8kWGQEPNWFGJJ08dYEZHZpiaFR/DgZjCMBNqv9wus2Gy1qvHVJmJbzvAZbq6jdvFC+NYzEqAlNhQ==}
engines: {node: '>=12'}
peerDependencies:
@@ -12508,20 +14270,19 @@ packages:
dependencies:
fromentries: 1.3.2
jerrypick: 1.1.1
- react: 18.2.0
- dev: false
+ react: 18.3.0
/react-refresh@0.11.0:
resolution: {integrity: sha512-F27qZr8uUqwhWZboondsPx8tnC3Ct3SxZA3V5WyEvujRyyNv0VYPhoBg1gZ8/MV5tubQp76Trw8lTv9hzRBa+A==}
engines: {node: '>=0.10.0'}
dev: true
- /react-refresh@0.14.0:
- resolution: {integrity: sha512-wViHqhAd8OHeLS/IRMJjTSDHF3U9eWi62F/MledQGPdJGDhodXJ9PBLNGr6WWL7qlH12Mt3TyTpbS+hGXMjCzQ==}
+ /react-refresh@0.14.1:
+ resolution: {integrity: sha512-iZiRCtNGY3QYP3pYOSSBOvQmBpQTcJccr/VcK2blpJrpPTUDjeN51mxm5nsrkCzBwsbGUj+TN9q2oPz5E13FLg==}
engines: {node: '>=0.10.0'}
dev: true
- /react-scripts@5.0.1(@babel/plugin-syntax-flow@7.24.1)(@babel/plugin-transform-react-jsx@7.23.4)(esbuild@0.20.2)(eslint@8.57.0)(react@18.2.0)(typescript@5.4.3):
+ /react-scripts@5.0.1(@babel/plugin-syntax-flow@7.24.1)(@babel/plugin-transform-react-jsx@7.23.4)(esbuild@0.20.2)(eslint@8.57.0)(react@18.3.0)(typescript@5.4.5):
resolution: {integrity: sha512-8VAmEm/ZAwQzJ+GOMLbBsTdDKOpuZh7RPs0UymvBR2vRk4iZWCskjbFnxqjrzoIvlNNRZ3QJFx6/qDSi6zSnaQ==}
engines: {node: '>=14.0.0'}
hasBin: true
@@ -12533,23 +14294,23 @@ packages:
typescript:
optional: true
dependencies:
- '@babel/core': 7.24.3
+ '@babel/core': 7.24.4
'@pmmmwh/react-refresh-webpack-plugin': 0.5.11(react-refresh@0.11.0)(webpack-dev-server@4.15.2)(webpack@5.91.0)
'@svgr/webpack': 5.5.0
- babel-jest: 27.5.1(@babel/core@7.24.3)
- babel-loader: 8.3.0(@babel/core@7.24.3)(webpack@5.91.0)
- babel-plugin-named-asset-import: 0.3.8(@babel/core@7.24.3)
+ babel-jest: 27.5.1(@babel/core@7.24.4)
+ babel-loader: 8.3.0(@babel/core@7.24.4)(webpack@5.91.0)
+ babel-plugin-named-asset-import: 0.3.8(@babel/core@7.24.4)
babel-preset-react-app: 10.0.1
bfj: 7.1.0
browserslist: 4.23.0
camelcase: 6.3.0
case-sensitive-paths-webpack-plugin: 2.4.0
- css-loader: 6.10.0(webpack@5.91.0)
+ css-loader: 6.11.0(webpack@5.91.0)
css-minimizer-webpack-plugin: 3.4.1(esbuild@0.20.2)(webpack@5.91.0)
dotenv: 10.0.0
dotenv-expand: 5.1.0
eslint: 8.57.0
- eslint-config-react-app: 7.0.1(@babel/plugin-syntax-flow@7.24.1)(@babel/plugin-transform-react-jsx@7.23.4)(eslint@8.57.0)(jest@27.5.1)(typescript@5.4.3)
+ eslint-config-react-app: 7.0.1(@babel/plugin-syntax-flow@7.24.1)(@babel/plugin-transform-react-jsx@7.23.4)(eslint@8.57.0)(jest@27.5.1)(typescript@5.4.5)
eslint-webpack-plugin: 3.2.0(eslint@8.57.0)(webpack@5.91.0)
file-loader: 6.2.0(webpack@5.91.0)
fs-extra: 10.1.0
@@ -12558,16 +14319,16 @@ packages:
jest: 27.5.1
jest-resolve: 27.5.1
jest-watch-typeahead: 1.1.0(jest@27.5.1)
- mini-css-extract-plugin: 2.8.1(webpack@5.91.0)
+ mini-css-extract-plugin: 2.9.0(webpack@5.91.0)
postcss: 8.4.38
postcss-flexbugs-fixes: 5.0.2(postcss@8.4.38)
postcss-loader: 6.2.1(postcss@8.4.38)(webpack@5.91.0)
postcss-normalize: 10.0.1(browserslist@4.23.0)(postcss@8.4.38)
postcss-preset-env: 7.8.3(postcss@8.4.38)
prompts: 2.4.2
- react: 18.2.0
+ react: 18.3.0
react-app-polyfill: 3.0.0
- react-dev-utils: 12.0.1(eslint@8.57.0)(typescript@5.4.3)(webpack@5.91.0)
+ react-dev-utils: 12.0.1(eslint@8.57.0)(typescript@5.4.5)(webpack@5.91.0)
react-refresh: 0.11.0
resolve: 1.22.8
resolve-url-loader: 4.0.0
@@ -12577,7 +14338,7 @@ packages:
style-loader: 3.3.4(webpack@5.91.0)
tailwindcss: 3.4.3
terser-webpack-plugin: 5.3.10(esbuild@0.20.2)(webpack@5.91.0)
- typescript: 5.4.3
+ typescript: 5.4.5
webpack: 5.91.0(esbuild@0.20.2)
webpack-dev-server: 4.15.2(webpack@5.91.0)
webpack-manifest-plugin: 4.1.1(webpack@5.91.0)
@@ -12619,8 +14380,8 @@ packages:
- webpack-plugin-serve
dev: true
- /react@18.2.0:
- resolution: {integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==}
+ /react@18.3.0:
+ resolution: {integrity: sha512-RPutkJftSAldDibyrjuku7q11d3oy6wKOyPe5K1HA/HwwrXcEqBdHsLypkC2FFYjP7bPUa6gbzSBhw4sY2JcDg==}
engines: {node: '>=0.10.0'}
dependencies:
loose-envify: 1.4.0
@@ -12736,13 +14497,18 @@ packages:
/regenerator-transform@0.15.2:
resolution: {integrity: sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==}
dependencies:
- '@babel/runtime': 7.24.1
+ '@babel/runtime': 7.24.4
dev: true
/regex-parser@2.3.0:
resolution: {integrity: sha512-TVILVSz2jY5D47F4mA4MppkBrafEaiUWJO/TcZHEIuI13AqoZMkK1WMA4Om1YkYbTx+9Ki1/tSUXbceyr9saRg==}
dev: true
+ /regexp-tree@0.1.27:
+ resolution: {integrity: sha512-iETxpjK6YoRWJG5o6hXLwvjYAoW+FEZn9os0PD/b6AP6xQwsa/Y7lCVgIixBbUPMfhu+i2LtdeAqVTgGlQarfA==}
+ hasBin: true
+ dev: true
+
/regexp.prototype.flags@1.5.2:
resolution: {integrity: sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==}
engines: {node: '>= 0.4'}
@@ -12765,6 +14531,27 @@ packages:
unicode-match-property-value-ecmascript: 2.1.0
dev: true
+ /registry-auth-token@3.3.2:
+ resolution: {integrity: sha512-JL39c60XlzCVgNrO+qq68FoNb56w/m7JYvGR2jT5iR1xBrUA3Mfx5Twk5rqTThPmQKMWydGmq8oFtDlxfrmxnQ==}
+ dependencies:
+ rc: 1.2.8
+ safe-buffer: 5.2.1
+ dev: true
+
+ /registry-url@3.1.0:
+ resolution: {integrity: sha512-ZbgR5aZEdf4UKZVBPYIgaglBmSF2Hi94s2PcIHhRGFjKYu+chjJdYfHn4rt3hB6eCKLJ8giVIIfgMa1ehDfZKA==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ rc: 1.2.8
+ dev: true
+
+ /regjsparser@0.10.0:
+ resolution: {integrity: sha512-qx+xQGZVsy55CH0a1hiVwHmqjLryfh7wQyF5HO07XJ9f7dQMY/gPQHhlyDkIzJKC+x2fUCpCcUODUUUFrm7SHA==}
+ hasBin: true
+ dependencies:
+ jsesc: 0.5.0
+ dev: true
+
/regjsparser@0.9.1:
resolution: {integrity: sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==}
hasBin: true
@@ -12843,6 +14630,10 @@ packages:
engines: {node: '>=8'}
dev: true
+ /resolve-pkg-maps@1.0.0:
+ resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==}
+ dev: true
+
/resolve-url-loader@4.0.0:
resolution: {integrity: sha512-05VEMczVREcbtT7Bz+C+96eUO5HDNvdthIiMB34t7FcF8ehcu4wC0sSgPUubs3XW2Q3CNLJk/BJrCU9wVRymiA==}
engines: {node: '>=8.9'}
@@ -12867,6 +14658,13 @@ packages:
engines: {node: '>=10'}
dev: true
+ /resolve@1.19.0:
+ resolution: {integrity: sha512-rArEXAgsBG4UgRGcynxWIWKFvh/XZCcS8UJdHhwy91zwAvCZIbcs+vAbflgBnNjYMs/i/i+/Ux6IZhML1yPvxg==}
+ dependencies:
+ is-core-module: 2.13.1
+ path-parse: 1.0.7
+ dev: true
+
/resolve@1.22.8:
resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==}
hasBin: true
@@ -12927,26 +14725,26 @@ packages:
glob: 7.2.3
dev: true
- /rollup-plugin-dts@6.1.0(rollup@4.13.2)(typescript@5.4.3):
+ /rollup-plugin-dts@6.1.0(rollup@4.16.4)(typescript@5.4.5):
resolution: {integrity: sha512-ijSCPICkRMDKDLBK9torss07+8dl9UpY9z1N/zTeA1cIqdzMlpkV3MOOC7zukyvQfDyxa1s3Dl2+DeiP/G6DOw==}
engines: {node: '>=16'}
peerDependencies:
rollup: ^3.29.4 || ^4
typescript: ^4.5 || ^5.0
dependencies:
- magic-string: 0.30.8
- rollup: 4.13.2
- typescript: 5.4.3
+ magic-string: 0.30.10
+ rollup: 4.16.4
+ typescript: 5.4.5
optionalDependencies:
'@babel/code-frame': 7.24.2
dev: true
- /rollup-plugin-peer-deps-external@2.2.4(rollup@4.13.2):
+ /rollup-plugin-peer-deps-external@2.2.4(rollup@4.16.4):
resolution: {integrity: sha512-AWdukIM1+k5JDdAqV/Cxd+nejvno2FVLVeZ74NKggm3Q5s9cbbcOgUPGdbxPi4BXu7xGaZ8HG12F+thImYu/0g==}
peerDependencies:
rollup: '*'
dependencies:
- rollup: 4.13.2
+ rollup: 4.16.4
dev: true
/rollup-plugin-postcss@4.0.2(postcss@8.4.38):
@@ -12983,7 +14781,7 @@ packages:
jest-worker: 26.6.2
rollup: 2.79.1
serialize-javascript: 4.0.0
- terser: 5.30.0
+ terser: 5.30.4
dev: true
/rollup-pluginutils@2.8.2:
@@ -13000,36 +14798,55 @@ packages:
fsevents: 2.3.3
dev: true
- /rollup@4.13.2:
- resolution: {integrity: sha512-MIlLgsdMprDBXC+4hsPgzWUasLO9CE4zOkj/u6j+Z6j5A4zRY+CtiXAdJyPtgCsc42g658Aeh1DlrdVEJhsL2g==}
+ /rollup@4.16.4:
+ resolution: {integrity: sha512-kuaTJSUbz+Wsb2ATGvEknkI12XV40vIiHmLuFlejoo7HtDok/O5eDDD0UpCVY5bBX5U5RYo8wWP83H7ZsqVEnA==}
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
hasBin: true
dependencies:
'@types/estree': 1.0.5
optionalDependencies:
- '@rollup/rollup-android-arm-eabi': 4.13.2
- '@rollup/rollup-android-arm64': 4.13.2
- '@rollup/rollup-darwin-arm64': 4.13.2
- '@rollup/rollup-darwin-x64': 4.13.2
- '@rollup/rollup-linux-arm-gnueabihf': 4.13.2
- '@rollup/rollup-linux-arm64-gnu': 4.13.2
- '@rollup/rollup-linux-arm64-musl': 4.13.2
- '@rollup/rollup-linux-powerpc64le-gnu': 4.13.2
- '@rollup/rollup-linux-riscv64-gnu': 4.13.2
- '@rollup/rollup-linux-s390x-gnu': 4.13.2
- '@rollup/rollup-linux-x64-gnu': 4.13.2
- '@rollup/rollup-linux-x64-musl': 4.13.2
- '@rollup/rollup-win32-arm64-msvc': 4.13.2
- '@rollup/rollup-win32-ia32-msvc': 4.13.2
- '@rollup/rollup-win32-x64-msvc': 4.13.2
+ '@rollup/rollup-android-arm-eabi': 4.16.4
+ '@rollup/rollup-android-arm64': 4.16.4
+ '@rollup/rollup-darwin-arm64': 4.16.4
+ '@rollup/rollup-darwin-x64': 4.16.4
+ '@rollup/rollup-linux-arm-gnueabihf': 4.16.4
+ '@rollup/rollup-linux-arm-musleabihf': 4.16.4
+ '@rollup/rollup-linux-arm64-gnu': 4.16.4
+ '@rollup/rollup-linux-arm64-musl': 4.16.4
+ '@rollup/rollup-linux-powerpc64le-gnu': 4.16.4
+ '@rollup/rollup-linux-riscv64-gnu': 4.16.4
+ '@rollup/rollup-linux-s390x-gnu': 4.16.4
+ '@rollup/rollup-linux-x64-gnu': 4.16.4
+ '@rollup/rollup-linux-x64-musl': 4.16.4
+ '@rollup/rollup-win32-arm64-msvc': 4.16.4
+ '@rollup/rollup-win32-ia32-msvc': 4.16.4
+ '@rollup/rollup-win32-x64-msvc': 4.16.4
fsevents: 2.3.3
dev: true
+ /run-async@2.4.1:
+ resolution: {integrity: sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==}
+ engines: {node: '>=0.12.0'}
+ dev: true
+
/run-parallel@1.2.0:
resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
dependencies:
queue-microtask: 1.2.3
+ /rxjs@6.6.7:
+ resolution: {integrity: sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==}
+ engines: {npm: '>=2.0.0'}
+ dependencies:
+ tslib: 1.14.1
+ dev: true
+
+ /rxjs@7.8.1:
+ resolution: {integrity: sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==}
+ dependencies:
+ tslib: 2.6.2
+ dev: true
+
/safe-array-concat@1.1.2:
resolution: {integrity: sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==}
engines: {node: '>=0.4'}
@@ -13104,8 +14921,8 @@ packages:
xmlchars: 2.2.0
dev: true
- /scheduler@0.23.0:
- resolution: {integrity: sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==}
+ /scheduler@0.23.1:
+ resolution: {integrity: sha512-5GKS5JGfiah1O38Vfa9srZE4s3wdHbwjlCrvIookrg2FO9aIwKLOJXuJQFlEfNcVSOXuaL2hzDeY20uVXcUtrw==}
dependencies:
loose-envify: 1.4.0
@@ -13197,6 +15014,13 @@ packages:
- supports-color
dev: true
+ /sentence-case@2.1.1:
+ resolution: {integrity: sha512-ENl7cYHaK/Ktwk5OTD+aDbQ3uC8IByu/6Bkg+HDv8Mm+XnBnppVNalcfJTNsp1ibstKh030/JKQQWglDvtKwEQ==}
+ dependencies:
+ no-case: 2.3.2
+ upper-case-first: 1.1.2
+ dev: true
+
/serialize-javascript@4.0.0:
resolution: {integrity: sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==}
dependencies:
@@ -13335,10 +15159,21 @@ packages:
is-fullwidth-code-point: 5.0.0
dev: true
+ /smart-buffer@4.2.0:
+ resolution: {integrity: sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==}
+ engines: {node: '>= 6.0.0', npm: '>= 3.0.0'}
+ dev: true
+
/smob@1.5.0:
resolution: {integrity: sha512-g6T+p7QO8npa+/hNx9ohv1E5pVCmWrVCUzUXJyLdMmftX6ER0oiWY/w9knEonLpnOp6b6FenKnMfR8gqwWdwig==}
dev: true
+ /snake-case@2.1.0:
+ resolution: {integrity: sha512-FMR5YoPFwOLuh4rRz92dywJjyKYZNLpMn1R5ujVpIYkbA9p01fq8RMg0FkO4M+Yobt4MjHeLTJVm5xFFBHSV2Q==}
+ dependencies:
+ no-case: 2.3.2
+ dev: true
+
/sockjs@0.3.24:
resolution: {integrity: sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==}
dependencies:
@@ -13347,6 +15182,43 @@ packages:
websocket-driver: 0.7.4
dev: true
+ /socks-proxy-agent@8.0.3:
+ resolution: {integrity: sha512-VNegTZKhuGq5vSD6XNKlbqWhyt/40CgoEw8XxD6dhnm8Jq9IEa3nIa4HwnM8XOqU0CdB0BwWVXusqiFXfHB3+A==}
+ engines: {node: '>= 14'}
+ dependencies:
+ agent-base: 7.1.1
+ debug: 4.3.4
+ socks: 2.8.3
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /socks@2.8.3:
+ resolution: {integrity: sha512-l5x7VUUWbjVFbafGLxPWkYsHIhEvmF85tbIeFZWc8ZPtoMyybuEhL7Jye/ooC4/d48FgOjSJXgsF/AJPYCW8Zw==}
+ engines: {node: '>= 10.0.0', npm: '>= 3.0.0'}
+ dependencies:
+ ip-address: 9.0.5
+ smart-buffer: 4.2.0
+ dev: true
+
+ /sort-object-keys@1.1.3:
+ resolution: {integrity: sha512-855pvK+VkU7PaKYPc+Jjnmt4EzejQHyhhF33q31qG8x7maDzkeFhAAThdCYay11CISO+qAMwjOBP+fPZe0IPyg==}
+ dev: true
+
+ /sort-package-json@2.10.0:
+ resolution: {integrity: sha512-MYecfvObMwJjjJskhxYfuOADkXp1ZMMnCFC8yhp+9HDsk7HhR336hd7eiBs96lTXfiqmUNI+WQCeCMRBhl251g==}
+ hasBin: true
+ dependencies:
+ detect-indent: 7.0.1
+ detect-newline: 4.0.1
+ get-stdin: 9.0.0
+ git-hooks-list: 3.1.0
+ globby: 13.2.2
+ is-plain-obj: 4.1.0
+ semver: 7.6.0
+ sort-object-keys: 1.1.3
+ dev: true
+
/source-list-map@2.0.1:
resolution: {integrity: sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==}
dev: true
@@ -13456,6 +15328,10 @@ packages:
resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==}
dev: true
+ /sprintf-js@1.1.3:
+ resolution: {integrity: sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA==}
+ dev: true
+
/stable@0.1.8:
resolution: {integrity: sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==}
deprecated: 'Modern JS already guarantees Array#sort() is a stable sort, so this library is deprecated. See the compatibility table on MDN: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort#browser_compatibility'
@@ -13499,11 +15375,11 @@ packages:
resolution: {integrity: sha512-4QcZ+yx7nzEFiV4BMLnr/pRa5HYzNITX2ri0Zh6sT9EyQHbBHacC6YigllUPU9X3D0f/22QCgfokpKs52YRrUg==}
dev: true
- /storybook@8.0.5(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-rdxfjkED5CBKj6T01NKr9MRakyXkffV8dvLXj5bWN4AlQ1OOm5Sw9B1z+rQ/FN7RYIU5b63xiX2pu3gy5t6nRQ==}
+ /storybook@8.0.9(react-dom@18.3.0)(react@18.3.0):
+ resolution: {integrity: sha512-/Mvij0Br5bUwJpCvqAUZMEDIWmdRxEyllvVj8Ukw5lIWJePxfpSsz4px5jg9+R6B9tO8sQSqjg4HJvQ/pZk8Tg==}
hasBin: true
dependencies:
- '@storybook/cli': 8.0.5(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/cli': 8.0.9(react-dom@18.3.0)(react@18.3.0)
transitivePeerDependencies:
- '@babel/preset-env'
- bufferutil
@@ -13518,6 +15394,11 @@ packages:
resolution: {integrity: sha512-76ORR0DO1o1hlKwTbi/DM3EXWGf3ZJYO8cXX5RJwnul2DEg2oyoZyjLNoQM8WsvZiFKCRfC1O0J7iCvie3RZmQ==}
dev: true
+ /streamsearch@1.1.0:
+ resolution: {integrity: sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==}
+ engines: {node: '>=10.0.0'}
+ dev: false
+
/string-argv@0.3.2:
resolution: {integrity: sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==}
engines: {node: '>=0.6.19'}
@@ -13689,6 +15570,11 @@ packages:
min-indent: 1.0.1
dev: true
+ /strip-json-comments@2.0.1:
+ resolution: {integrity: sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
/strip-json-comments@3.1.1:
resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
engines: {node: '>=8'}
@@ -13707,6 +15593,23 @@ packages:
webpack: 5.91.0(esbuild@0.20.2)
dev: true
+ /styled-jsx@5.1.1(react@18.3.0):
+ resolution: {integrity: sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==}
+ engines: {node: '>= 12.0.0'}
+ peerDependencies:
+ '@babel/core': '*'
+ babel-plugin-macros: '*'
+ react: '>= 16.8.0 || 17.x.x || ^18.0.0-0'
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ babel-plugin-macros:
+ optional: true
+ dependencies:
+ client-only: 0.0.1
+ react: 18.3.0
+ dev: false
+
/stylehacks@5.1.1(postcss@8.4.38):
resolution: {integrity: sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw==}
engines: {node: ^10 || ^12 || >=14.0}
@@ -13729,7 +15632,7 @@ packages:
dependencies:
'@jridgewell/gen-mapping': 0.3.5
commander: 4.1.1
- glob: 10.3.12
+ glob: 10.3.10
lines-and-columns: 1.2.4
mz: 2.7.0
pirates: 4.0.6
@@ -13738,7 +15641,6 @@ packages:
/supports-color@5.5.0:
resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==}
engines: {node: '>=4'}
- requiresBuild: true
dependencies:
has-flag: 3.0.0
@@ -13777,32 +15679,27 @@ packages:
engines: {node: '>= 0.8.0'}
dependencies:
svg.js: 2.7.1
- dev: false
/svg.easing.js@2.0.0:
resolution: {integrity: sha512-//ctPdJMGy22YoYGV+3HEfHbm6/69LJUTAqI2/5qBvaNHZ9uUFVC82B0Pl299HzgH13rKrBgi4+XyXXyVWWthA==}
engines: {node: '>= 0.8.0'}
dependencies:
svg.js: 2.7.1
- dev: false
/svg.filter.js@2.0.2:
resolution: {integrity: sha512-xkGBwU+dKBzqg5PtilaTb0EYPqPfJ9Q6saVldX+5vCRy31P6TlRCP3U9NxH3HEufkKkpNgdTLBJnmhDHeTqAkw==}
engines: {node: '>= 0.8.0'}
dependencies:
svg.js: 2.7.1
- dev: false
/svg.js@2.7.1:
resolution: {integrity: sha512-ycbxpizEQktk3FYvn/8BH+6/EuWXg7ZpQREJvgacqn46gIddG24tNNe4Son6omdXCnSOaApnpZw6MPCBA1dODA==}
- dev: false
/svg.pathmorphing.js@0.1.3:
resolution: {integrity: sha512-49HWI9X4XQR/JG1qXkSDV8xViuTLIWm/B/7YuQELV5KMOPtXjiwH4XPJvr/ghEDibmLQ9Oc22dpWpG0vUDDNww==}
engines: {node: '>= 0.8.0'}
dependencies:
svg.js: 2.7.1
- dev: false
/svg.resize.js@1.4.3:
resolution: {integrity: sha512-9k5sXJuPKp+mVzXNvxz7U0uC9oVMQrrf7cFsETznzUDDm0x8+77dtZkWdMfRlmbkEEYvUn9btKuZ3n41oNA+uw==}
@@ -13810,21 +15707,18 @@ packages:
dependencies:
svg.js: 2.7.1
svg.select.js: 2.1.2
- dev: false
/svg.select.js@2.1.2:
resolution: {integrity: sha512-tH6ABEyJsAOVAhwcCjF8mw4crjXSI1aa7j2VQR8ZuJ37H2MBUbyeqYr5nEO7sSN3cy9AR9DUwNg0t/962HlDbQ==}
engines: {node: '>= 0.8.0'}
dependencies:
svg.js: 2.7.1
- dev: false
/svg.select.js@3.0.1:
resolution: {integrity: sha512-h5IS/hKkuVCbKSieR9uQCj9w+zLHoPh+ce19bBYyqF53g6mnPB8sAtIbe1s9dh2S2fCmYX2xel1Ln3PJBbK4kw==}
engines: {node: '>= 0.8.0'}
dependencies:
svg.js: 2.7.1
- dev: false
/svgo@1.3.2:
resolution: {integrity: sha512-yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw==}
@@ -13861,6 +15755,13 @@ packages:
stable: 0.1.8
dev: true
+ /swap-case@1.1.2:
+ resolution: {integrity: sha512-BAmWG6/bx8syfc6qXPprof3Mn5vQgf5dwdUNJhsNqU9WdPt5P+ES/wQ5bxfijy8zwZgZZHslC3iAsxsuQMCzJQ==}
+ dependencies:
+ lower-case: 1.1.4
+ upper-case: 1.1.3
+ dev: true
+
/symbol-tree@3.2.4:
resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==}
dev: true
@@ -13873,10 +15774,18 @@ packages:
tslib: 2.6.2
dev: true
- /tailwind-merge@2.2.2:
- resolution: {integrity: sha512-tWANXsnmJzgw6mQ07nE3aCDkCK4QdT3ThPMCzawoYA2Pws7vSTCvz3Vrjg61jVUGfFZPJzxEP+NimbcW+EdaDw==}
+ /synckit@0.9.0:
+ resolution: {integrity: sha512-7RnqIMq572L8PeEzKeBINYEJDDxpcH8JEgLwUqBd3TkofhFRbkq4QLR0u+36avGAhCRbk2nnmjcW9SE531hPDg==}
+ engines: {node: ^14.18.0 || >=16.0.0}
+ dependencies:
+ '@pkgr/core': 0.1.1
+ tslib: 2.6.2
+ dev: true
+
+ /tailwind-merge@2.3.0:
+ resolution: {integrity: sha512-vkYrLpIP+lgR0tQCG6AP7zZXCTLc1Lnv/CCRT3BqJ9CZ3ui2++GPaGb1x/ILsINIMSYqqvrpqjUFsMNLlW99EA==}
dependencies:
- '@babel/runtime': 7.24.1
+ '@babel/runtime': 7.24.4
dev: false
/tailwindcss-animate@1.0.7(tailwindcss@3.4.3):
@@ -14027,12 +15936,12 @@ packages:
jest-worker: 27.5.1
schema-utils: 3.3.0
serialize-javascript: 6.0.2
- terser: 5.30.0
+ terser: 5.30.4
webpack: 5.91.0(esbuild@0.20.2)
dev: true
- /terser@5.30.0:
- resolution: {integrity: sha512-Y/SblUl5kEyEFzhMAQdsxVHh+utAxd4IuRNJzKywY/4uzSogh3G219jqbDDxYu4MXO9CzY3tSEqmZvW6AoEDJw==}
+ /terser@5.30.4:
+ resolution: {integrity: sha512-xRdd0v64a8mFK9bnsKVdoNP9GQIKUAaJPTaqEQDL4w/J8WaW4sWXXoMZ+6SimPkfT5bElreXf8m9HnmPc3E1BQ==}
engines: {node: '>=10'}
hasBin: true
dependencies:
@@ -14077,6 +15986,10 @@ packages:
xtend: 4.0.2
dev: true
+ /through@2.3.8:
+ resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==}
+ dev: true
+
/thunky@1.1.0:
resolution: {integrity: sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==}
dev: true
@@ -14087,13 +16000,33 @@ packages:
/tinycolor2@1.6.0:
resolution: {integrity: sha512-XPaBkWQJdsf3pLKJV9p4qN/S+fm2Oj8AIPo1BTUhg5oxkvm9+SVEGFdhyOz7tTdUTfvxMiAs4sp6/eZO2Ew+pw==}
- dev: false
+
+ /tinygradient@1.1.5:
+ resolution: {integrity: sha512-8nIfc2vgQ4TeLnk2lFj4tRLvvJwEfQuabdsmvDdQPT0xlk9TaNtpGd6nNRxXoK6vQhN6RSzj+Cnp5tTQmpxmbw==}
+ dependencies:
+ '@types/tinycolor2': 1.4.6
+ tinycolor2: 1.6.0
+ dev: true
/tinyspy@2.2.1:
resolution: {integrity: sha512-KYad6Vy5VDWV4GH3fjpseMQ/XU2BhIYP7Vzd0LG44qRWm/Yt2WCOTicFdvmgo6gWaqooMQCawTtILVQJupKu7A==}
engines: {node: '>=14.0.0'}
dev: true
+ /title-case@2.1.1:
+ resolution: {integrity: sha512-EkJoZ2O3zdCz3zJsYCsxyq2OC5hrxR9mfdd5I+w8h/tmFfeOxJ+vvkxsKxdmN0WtS9zLdHEgfgVOiMVgv+Po4Q==}
+ dependencies:
+ no-case: 2.3.2
+ upper-case: 1.1.3
+ dev: true
+
+ /tmp@0.0.33:
+ resolution: {integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==}
+ engines: {node: '>=0.6.0'}
+ dependencies:
+ os-tmpdir: 1.0.2
+ dev: true
+
/tmpl@1.0.5:
resolution: {integrity: sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==}
dev: true
@@ -14108,8 +16041,8 @@ packages:
dependencies:
is-number: 7.0.0
- /tocbot@4.25.0:
- resolution: {integrity: sha512-kE5wyCQJ40hqUaRVkyQ4z5+4juzYsv/eK+aqD97N62YH0TxFhzJvo22RUQQZdO3YnXAk42ZOfOpjVdy+Z0YokA==}
+ /tocbot@4.27.13:
+ resolution: {integrity: sha512-zS8GVVg14x/KBTxbvF6s3BNLltfMNZxTPaBpj+FjuwmnSv+ZK0trNN4uV5Ptw64NLFi2E30gt33+/a1Fkt3cWQ==}
dev: true
/toidentifier@1.0.1:
@@ -14148,13 +16081,13 @@ packages:
resolution: {integrity: sha512-c3zayb8/kWWpycWYg87P71E1S1ZL6b6IJxfb5fvsUgsf0S2MVGaDhDXXjDMpdCpfWXqptc+4mXwmiy1ypXqRAA==}
dev: true
- /ts-api-utils@1.3.0(typescript@5.4.3):
+ /ts-api-utils@1.3.0(typescript@5.4.5):
resolution: {integrity: sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ==}
engines: {node: '>=16'}
peerDependencies:
typescript: '>=4.2.0'
dependencies:
- typescript: 5.4.3
+ typescript: 5.4.5
dev: true
/ts-dedent@2.2.0:
@@ -14165,7 +16098,38 @@ packages:
/ts-interface-checker@0.1.13:
resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==}
- /ts-pnp@1.2.0(typescript@5.4.3):
+ /ts-node@10.9.2(@types/node@20.12.7)(typescript@5.4.5):
+ resolution: {integrity: sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==}
+ hasBin: true
+ peerDependencies:
+ '@swc/core': '>=1.2.50'
+ '@swc/wasm': '>=1.2.50'
+ '@types/node': '*'
+ typescript: '>=2.7'
+ peerDependenciesMeta:
+ '@swc/core':
+ optional: true
+ '@swc/wasm':
+ optional: true
+ dependencies:
+ '@cspotcode/source-map-support': 0.8.1
+ '@tsconfig/node10': 1.0.11
+ '@tsconfig/node12': 1.0.11
+ '@tsconfig/node14': 1.0.3
+ '@tsconfig/node16': 1.0.4
+ '@types/node': 20.12.7
+ acorn: 8.11.3
+ acorn-walk: 8.3.2
+ arg: 4.1.3
+ create-require: 1.1.1
+ diff: 4.0.2
+ make-error: 1.3.6
+ typescript: 5.4.5
+ v8-compile-cache-lib: 3.0.1
+ yn: 3.1.1
+ dev: true
+
+ /ts-pnp@1.2.0(typescript@5.4.5):
resolution: {integrity: sha512-csd+vJOb/gkzvcCHgTGSChYpy5f1/XKNsmvBGO4JXS+z1v2HobugDz4s1IeFXM3wZB44uczs+eazB5Q/ccdhQw==}
engines: {node: '>=6'}
peerDependencies:
@@ -14174,7 +16138,7 @@ packages:
typescript:
optional: true
dependencies:
- typescript: 5.4.3
+ typescript: 5.4.5
dev: true
/tsconfig-paths@3.15.0:
@@ -14201,16 +16165,75 @@ packages:
/tslib@2.6.2:
resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==}
- dev: true
- /tsutils@3.21.0(typescript@5.4.3):
+ /tsutils@3.21.0(typescript@5.4.5):
resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==}
engines: {node: '>= 6'}
peerDependencies:
typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta'
dependencies:
tslib: 1.14.1
- typescript: 5.4.3
+ typescript: 5.4.5
+ dev: true
+
+ /turbo-darwin-64@1.13.3:
+ resolution: {integrity: sha512-glup8Qx1qEFB5jerAnXbS8WrL92OKyMmg5Hnd4PleLljAeYmx+cmmnsmLT7tpaVZIN58EAAwu8wHC6kIIqhbWA==}
+ cpu: [x64]
+ os: [darwin]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /turbo-darwin-arm64@1.13.3:
+ resolution: {integrity: sha512-/np2xD+f/+9qY8BVtuOQXRq5f9LehCFxamiQnwdqWm5iZmdjygC5T3uVSYuagVFsZKMvX3ycySwh8dylGTl6lg==}
+ cpu: [arm64]
+ os: [darwin]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /turbo-linux-64@1.13.3:
+ resolution: {integrity: sha512-G+HGrau54iAnbXLfl+N/PynqpDwi/uDzb6iM9hXEDG+yJnSJxaHMShhOkXYJPk9offm9prH33Khx2scXrYVW1g==}
+ cpu: [x64]
+ os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /turbo-linux-arm64@1.13.3:
+ resolution: {integrity: sha512-qWwEl5VR02NqRyl68/3pwp3c/olZuSp+vwlwrunuoNTm6JXGLG5pTeme4zoHNnk0qn4cCX7DFrOboArlYxv0wQ==}
+ cpu: [arm64]
+ os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /turbo-windows-64@1.13.3:
+ resolution: {integrity: sha512-Nudr4bRChfJzBPzEmpVV85VwUYRCGKecwkBFpbp2a4NtrJ3+UP1VZES653ckqCu2FRyRuS0n03v9euMbAvzH+Q==}
+ cpu: [x64]
+ os: [win32]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /turbo-windows-arm64@1.13.3:
+ resolution: {integrity: sha512-ouJCgsVLd3icjRLmRvHQDDZnmGzT64GBupM1Y+TjtYn2LVaEBoV6hicFy8x5DUpnqdLy+YpCzRMkWlwhmkX7sQ==}
+ cpu: [arm64]
+ os: [win32]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /turbo@1.13.3:
+ resolution: {integrity: sha512-n17HJv4F4CpsYTvKzUJhLbyewbXjq1oLCi90i5tW1TiWDz16ML1eDG7wi5dHaKxzh5efIM56SITnuVbMq5dk4g==}
+ hasBin: true
+ optionalDependencies:
+ turbo-darwin-64: 1.13.3
+ turbo-darwin-arm64: 1.13.3
+ turbo-linux-64: 1.13.3
+ turbo-linux-arm64: 1.13.3
+ turbo-windows-64: 1.13.3
+ turbo-windows-arm64: 1.13.3
dev: true
/tween-functions@1.2.0:
@@ -14324,8 +16347,8 @@ packages:
is-typedarray: 1.0.0
dev: true
- /typescript@5.4.3:
- resolution: {integrity: sha512-KrPd3PKaCLr78MalgiwJnA25Nm8HAmdwN3mYUYZgG/wizIo9EainNVQI9/yDavtVFRN2h3k8uf3GLHuhDMgEHg==}
+ /typescript@5.4.5:
+ resolution: {integrity: sha512-vcI4UpRgg81oIRUFwR0WSIHKt11nJ7SAVlYNIu+QpqeyXP+gpQJy/Z4+F0aGxSE4MqwjyXvW/TzgkLAx2AGHwQ==}
engines: {node: '>=14.17'}
hasBin: true
@@ -14459,6 +16482,23 @@ packages:
picocolors: 1.0.0
dev: true
+ /update-check@1.5.4:
+ resolution: {integrity: sha512-5YHsflzHP4t1G+8WGPlvKbJEbAJGCgw+Em+dGR1KmBUbr1J36SJBqlHLjR7oob7sco5hWHGQVcr9B2poIVDDTQ==}
+ dependencies:
+ registry-auth-token: 3.3.2
+ registry-url: 3.1.0
+ dev: true
+
+ /upper-case-first@1.1.2:
+ resolution: {integrity: sha512-wINKYvI3Db8dtjikdAqoBbZoP6Q+PZUyfMR7pmwHzjC2quzSkUq5DmPrTtPEqHaz8AGtmsB4TqwapMTM1QAQOQ==}
+ dependencies:
+ upper-case: 1.1.3
+ dev: true
+
+ /upper-case@1.1.3:
+ resolution: {integrity: sha512-WRbjgmYzgXkCV7zNVpy5YgrHgbBv126rMALQQMrmzOVC4GM2waQ9x7xtm8VU+1yF2kWyPzI9zbZ48n4vSxwfSA==}
+ dev: true
+
/uri-js@4.4.1:
resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
dependencies:
@@ -14476,7 +16516,7 @@ packages:
resolution: {integrity: sha512-6hxOLGfZASQK/cijlZnZJTq8OXAkt/3YGfQX45vvMYXpZoo8NdWZcY73K108Jf759lS1Bv/8wXnHDTSz17dSRw==}
dependencies:
punycode: 1.4.1
- qs: 6.12.0
+ qs: 6.12.1
dev: true
/util-deprecate@1.0.2:
@@ -14520,6 +16560,10 @@ packages:
hasBin: true
dev: true
+ /v8-compile-cache-lib@3.0.1:
+ resolution: {integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==}
+ dev: true
+
/v8-to-istanbul@8.1.1:
resolution: {integrity: sha512-FGtKtv3xIpR6BYhvgH8MI/y78oT7d8Au3ww4QIxymrCtZEh5b8gCw2siywE+puhEmuWKDtmfrvF5UlB298ut3w==}
engines: {node: '>=10.12.0'}
@@ -14536,13 +16580,20 @@ packages:
spdx-expression-parse: 3.0.1
dev: true
+ /validate-npm-package-name@5.0.0:
+ resolution: {integrity: sha512-YuKoXDAhBYxY7SfOKxHBDoSyENFeW5VvIIQp2TGQuit8gpK6MnWaQelBKxso72DoxTZfZdcP3W90LqpSkgPzLQ==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+ dependencies:
+ builtins: 5.1.0
+ dev: true
+
/vary@1.1.2:
resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==}
engines: {node: '>= 0.8'}
dev: true
- /viem@2.9.6(typescript@5.4.3):
- resolution: {integrity: sha512-VVFWjGQei2wnWTvAB/xrIf22m6flCwxeBr8LnwejXMTSSi1EORWEswrw2lfKTmw3TlRPSG4uSiQMa/d0l0DKRg==}
+ /viem@2.9.27(typescript@5.4.5):
+ resolution: {integrity: sha512-C+5tispAKzUywf+G5fxNVxThtKrNtvDRvvF34hC10LeSsrd5l4tlKpf0B4xYVcpL0YYZd+YEordLzlWToPjUnQ==}
peerDependencies:
typescript: '>=5.0.4'
peerDependenciesMeta:
@@ -14554,9 +16605,9 @@ packages:
'@noble/hashes': 1.3.2
'@scure/bip32': 1.3.2
'@scure/bip39': 1.2.1
- abitype: 1.0.0(typescript@5.4.3)
+ abitype: 1.0.0(typescript@5.4.5)
isows: 1.0.3(ws@8.13.0)
- typescript: 5.4.3
+ typescript: 5.4.5
ws: 8.13.0
transitivePeerDependencies:
- bufferutil
@@ -14670,7 +16721,7 @@ packages:
'@types/connect-history-api-fallback': 1.5.4
'@types/express': 4.17.21
'@types/serve-index': 1.9.4
- '@types/serve-static': 1.15.5
+ '@types/serve-static': 1.15.7
'@types/sockjs': 0.3.36
'@types/ws': 8.5.10
ansi-html-community: 0.0.8
@@ -14684,7 +16735,7 @@ packages:
graceful-fs: 4.2.11
html-entities: 2.5.2
http-proxy-middleware: 2.0.6(@types/express@4.17.21)
- ipaddr.js: 2.1.0
+ ipaddr.js: 2.2.0
launch-editor: 2.6.1
open: 8.4.2
p-retry: 4.6.2
@@ -14933,10 +16984,10 @@ packages:
engines: {node: '>=10.0.0'}
dependencies:
'@apideck/better-ajv-errors': 0.3.6(ajv@8.12.0)
- '@babel/core': 7.24.3
- '@babel/preset-env': 7.24.3(@babel/core@7.24.3)
- '@babel/runtime': 7.24.1
- '@rollup/plugin-babel': 5.3.1(@babel/core@7.24.3)(rollup@2.79.1)
+ '@babel/core': 7.24.4
+ '@babel/preset-env': 7.24.4(@babel/core@7.24.4)
+ '@babel/runtime': 7.24.4
+ '@rollup/plugin-babel': 5.3.1(@babel/core@7.24.4)(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
@@ -15079,6 +17130,15 @@ packages:
workbox-core: 6.6.0
dev: true
+ /wrap-ansi@6.2.0:
+ resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==}
+ engines: {node: '>=8'}
+ dependencies:
+ ansi-styles: 4.3.0
+ string-width: 4.2.3
+ strip-ansi: 6.0.1
+ dev: true
+
/wrap-ansi@7.0.0:
resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==}
engines: {node: '>=10'}
@@ -15222,6 +17282,11 @@ packages:
yargs-parser: 20.2.9
dev: true
+ /yn@3.1.1:
+ resolution: {integrity: sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==}
+ engines: {node: '>=6'}
+ dev: true
+
/yocto-queue@0.1.0:
resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
engines: {node: '>=10'}
diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml
new file mode 100644
index 0000000..091d6e4
--- /dev/null
+++ b/pnpm-workspace.yaml
@@ -0,0 +1,3 @@
+packages:
+ - "examples/*"
+ - "packages/*"
diff --git a/postcss.config.mjs b/postcss.config.mjs
deleted file mode 100644
index 2e7af2b..0000000
--- a/postcss.config.mjs
+++ /dev/null
@@ -1,6 +0,0 @@
-export default {
- plugins: {
- tailwindcss: {},
- autoprefixer: {},
- },
-}
diff --git a/setupTests.ts b/setupTests.ts
deleted file mode 100644
index 6a0fd12..0000000
--- a/setupTests.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-// jest-dom adds custom jest matchers for asserting on DOM nodes.
-// allows you to do things like:
-// expect(element).toHaveTextContent(/react/i)
-// learn more: https://github.com/testing-library/jest-dom
-import "@testing-library/jest-dom"
diff --git a/tailwind.config.js b/tailwind.config.js
deleted file mode 100644
index 7cb7e37..0000000
--- a/tailwind.config.js
+++ /dev/null
@@ -1,77 +0,0 @@
-/** @type {import('tailwindcss').Config} */
-module.exports = {
- darkMode: ["class"],
- content: [
- './pages/**/*.{ts,tsx}',
- './components/**/*.{ts,tsx}',
- './app/**/*.{ts,tsx}',
- './src/**/*.{ts,tsx}',
- ],
- prefix: "",
- theme: {
- container: {
- center: true,
- padding: "2rem",
- screens: {
- "2xl": "1400px",
- },
- },
- extend: {
- colors: {
- border: "hsl(var(--border))",
- input: "hsl(var(--input))",
- ring: "hsl(var(--ring))",
- background: "hsl(var(--background))",
- foreground: "hsl(var(--foreground))",
- primary: {
- DEFAULT: "hsl(var(--primary))",
- foreground: "hsl(var(--primary-foreground))",
- },
- secondary: {
- DEFAULT: "hsl(var(--secondary))",
- foreground: "hsl(var(--secondary-foreground))",
- },
- destructive: {
- DEFAULT: "hsl(var(--destructive))",
- foreground: "hsl(var(--destructive-foreground))",
- },
- muted: {
- DEFAULT: "hsl(var(--muted))",
- foreground: "hsl(var(--muted-foreground))",
- },
- accent: {
- DEFAULT: "hsl(var(--accent))",
- foreground: "hsl(var(--accent-foreground))",
- },
- popover: {
- DEFAULT: "hsl(var(--popover))",
- foreground: "hsl(var(--popover-foreground))",
- },
- card: {
- DEFAULT: "hsl(var(--card))",
- foreground: "hsl(var(--card-foreground))",
- },
- },
- borderRadius: {
- lg: "var(--radius)",
- md: "calc(var(--radius) - 2px)",
- sm: "calc(var(--radius) - 4px)",
- },
- keyframes: {
- "accordion-down": {
- from: { height: "0" },
- to: { height: "var(--radix-accordion-content-height)" },
- },
- "accordion-up": {
- from: { height: "var(--radix-accordion-content-height)" },
- to: { height: "0" },
- },
- },
- animation: {
- "accordion-down": "accordion-down 0.2s ease-out",
- "accordion-up": "accordion-up 0.2s ease-out",
- },
- },
- },
- plugins: [require("tailwindcss-animate")],
-}
\ No newline at end of file
diff --git a/tsconfig.json b/tsconfig.json
deleted file mode 100644
index b484cec..0000000
--- a/tsconfig.json
+++ /dev/null
@@ -1,25 +0,0 @@
-{
- "compilerOptions": {
- "target": "es5",
- "lib": ["dom", "dom.iterable", "esnext"],
- "allowJs": true,
- "skipLibCheck": true,
- "esModuleInterop": true,
- "allowSyntheticDefaultImports": true,
- "strict": true,
- "forceConsistentCasingInFileNames": true,
- "noFallthroughCasesInSwitch": true,
- "module": "esnext",
- "moduleResolution": "node",
- "resolveJsonModule": true,
- "isolatedModules": true,
- "noEmit": true,
- "jsx": "react-jsx",
- "outDir": "dist",
- "paths": {
- "@/*": ["./src/*"]
- }
- },
- "include": ["src"],
- "exclude": ["node_modules", "examples"]
-}
diff --git a/turbo.json b/turbo.json
new file mode 100644
index 0000000..063726e
--- /dev/null
+++ b/turbo.json
@@ -0,0 +1,20 @@
+{
+ "$schema": "https://turborepo.org/schema.json",
+ "pipeline": {
+ "build": {
+ "dependsOn": ["^build"],
+ "outputs": ["dist/**", ".next/**", "!.next/cache/**"],
+ "cache": false
+ },
+ "lint": {
+ "outputs": []
+ },
+ "dev": {
+ "cache": false,
+ "persistent": true
+ },
+ "format": {
+ "cache": false
+ }
+ }
+}