diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml
index 3786259c..9d347542 100644
--- a/.github/workflows/publish.yaml
+++ b/.github/workflows/publish.yaml
@@ -50,14 +50,6 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v3
- with:
- ref: ${{ github.event.pull_request.head.sha || github.ref }}
- fetch-depth: 0
-
- - name: Print pull request head information
- run: |
- echo "Pull Request SHA: ${{ github.event.pull_request.head.sha }}"
- echo "Pull Request Ref: ${{ github.event.pull_request.head.ref }}"
# Run a build step here
- name: Setup Node.js environment
@@ -92,7 +84,7 @@ jobs:
# Run a action to publish docs
- name: Publish to Cloudflare Pages
- uses: cloudflare/pages-action@v1.5.0
+ uses: zernonia/cloudflare-pages-action@v0.0.7
with:
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
@@ -102,24 +94,11 @@ jobs:
gitHubToken: ${{ secrets.GITHUB_TOKEN }}
# Optional: Switch what branch you are publishing to.
# By default this will be the branch which triggered this workflow
- # branch: main
+ branch: ${{ github.ref == 'refs/heads/dev' && 'dev' || format('refs/pull/{0}/merge', github.event.number) }}
# Optional: Change the working directory
workingDirectory: apps/www
wranglerVersion: '3'
- - name: Create PR comment
- if: ${{ github.event_name == 'pull_request' || github.event_name == 'pull_request_target' }}
- uses: mshick/add-pr-comment@v2
- with:
- message: |
- ### ⚡ Successfully Cloudflare Pages deployed!
- | Name | Link |
- | :--- | :--- |
- | 🔨 Latest commit | ${{ github.event.pull_request.head.sha || github.sha }} |
- | 🔍 Latest deploy log | ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }} |
- | 😎 Deploy Preview Url | [${{ steps.cloudflare-pages-deploy.outputs.url }}](${{ steps.cloudflare-pages-deploy.outputs.url }}) |
- | 🌳 Environment | ${{ steps.cloudflare-pages-deploy.outputs.environment }} |
-
- name: Remove label
if: ${{ github.event_name == 'pull_request_target' && contains(github.event.label.name, '🚀request-deploy') }}
uses: actions/github-script@v6
@@ -132,32 +111,3 @@ jobs:
repo: context.repo.repo,
name: ['🚀request-deploy']
})
-
- # Comment on PR from the fork
- comment:
- name: Comment
- runs-on: ubuntu-latest
-
- # pull_request_target opened event from forked repo
- if: ${{
- github.event_name == 'pull_request_target' &&
- github.event.action == 'opened' &&
- github.event.pull_request.head.repo.fork == true
- }}
-
- steps:
- - name: Create PR comment
- run: |
- cat << EOF > comment.md
- # ⚠️ \`🚀request-deploy\` label is required for deployment
-
- This repository is a forked repository.
- Due to security reasons, deployment from forked repositories does not happen automatically.
-
- To request deployment, please add the \`🚀request-deploy\` label to this pull request.
- (Only certain members have the ability to add labels.)
- EOF
-
- gh pr comment ${{ github.event.number }} -R ${{ github.repository }} -F comment.md
- env:
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
diff --git a/apps/www/.vitepress/config.mts b/apps/www/.vitepress/config.mts
index 42998819..0e2a62c3 100644
--- a/apps/www/.vitepress/config.mts
+++ b/apps/www/.vitepress/config.mts
@@ -3,9 +3,17 @@ import { defineConfig } from 'vitepress'
import Icons from 'unplugin-icons/vite'
import tailwind from 'tailwindcss'
import autoprefixer from 'autoprefixer'
+import { createCssVariablesTheme } from 'shikiji'
import { siteConfig } from './theme/config/site'
import ComponentPreviewPlugin from './theme/plugins/previewer'
+const cssVariables = createCssVariablesTheme({
+ name: 'css-variables',
+ variablePrefix: '--shiki-',
+ variableDefaults: {},
+ fontStyle: true,
+})
+
// https://vitepress.dev/reference/site-config
export default defineConfig({
title: siteConfig.name,
@@ -50,7 +58,7 @@ export default defineConfig({
srcDir: path.resolve(__dirname, '../src'),
markdown: {
- theme: 'css-variables',
+ theme: cssVariables,
config(md) {
md.use(ComponentPreviewPlugin)
},
diff --git a/apps/www/.vitepress/theme/styles/shiki.css b/apps/www/.vitepress/theme/styles/shiki.css
index 0ede8ffb..89c8ff24 100644
--- a/apps/www/.vitepress/theme/styles/shiki.css
+++ b/apps/www/.vitepress/theme/styles/shiki.css
@@ -1,5 +1,5 @@
:root {
- --shiki-color-text: #EEEEEE;
+ --shiki-foreground: #EEEEEE;
--shiki-color-background: #ffffff;
--shiki-token-constant: #ffffff;
--shiki-token-string: #ffffff88;
diff --git a/apps/www/package.json b/apps/www/package.json
index 748b6a45..57b444d7 100644
--- a/apps/www/package.json
+++ b/apps/www/package.json
@@ -15,28 +15,28 @@
"build:registry-strict": "pnpm typecheck:registry && tsx ./scripts/build-registry.ts"
},
"dependencies": {
- "@formkit/auto-animate": "^0.8.0",
+ "@formkit/auto-animate": "^0.8.1",
"@morev/vue-transitions": "^2.3.6",
"@radix-icons/vue": "^1.0.0",
"@stackblitz/sdk": "^1.9.0",
- "@tanstack/vue-table": "^8.10.7",
- "@unovis/ts": "^1.2.3",
- "@unovis/vue": "1.3.0-beta.3",
- "@vee-validate/zod": "^4.12.3",
- "@vueuse/core": "^10.5.0",
+ "@tanstack/vue-table": "^8.11.6",
+ "@unovis/ts": "^1.3.1",
+ "@unovis/vue": "^1.3.1",
+ "@vee-validate/zod": "^4.12.4",
+ "@vueuse/core": "^10.7.2",
"class-variance-authority": "^0.7.0",
- "clsx": "^2.0.0",
+ "clsx": "^2.1.0",
"codesandbox": "^2.2.3",
"date-fns": "^2.30.0",
"embla-carousel": "8.0.0-rc19",
"embla-carousel-autoplay": "8.0.0-rc19",
"embla-carousel-vue": "8.0.0-rc19",
"lucide-vue-next": "^0.276.0",
- "radix-vue": "^1.3.0",
+ "radix-vue": "^1.3.2",
"tailwindcss-animate": "^1.0.7",
"v-calendar": "^3.1.2",
- "vee-validate": "4.12.3",
- "vue": "^3.4.7",
+ "vee-validate": "4.12.4",
+ "vue": "^3.4.14",
"vue-wrap-balancer": "^1.1.3",
"zod": "^3.22.4"
},
@@ -47,23 +47,24 @@
"@iconify/vue": "^4.1.1",
"@types/lodash.template": "^4.5.2",
"@types/node": "^20.8.10",
- "@vitejs/plugin-vue": "^4.4.0",
- "@vitejs/plugin-vue-jsx": "^3.0.2",
- "@vue/compiler-core": "^3.3.7",
- "@vue/compiler-dom": "^3.3.7",
+ "@vitejs/plugin-vue": "^5.0.3",
+ "@vitejs/plugin-vue-jsx": "^3.1.0",
+ "@vue/compiler-core": "^3.4.14",
+ "@vue/compiler-dom": "^3.4.14",
"@vue/tsconfig": "^0.5.1",
"autoprefixer": "^10.4.16",
"lodash.template": "^4.5.0",
"oxc-parser": "^0.2.0",
"pathe": "^1.1.2",
"rimraf": "^5.0.5",
- "tailwind-merge": "^2.0.0",
+ "shikiji": "^0.10.0-beta.2",
+ "tailwind-merge": "^2.2.0",
"tailwindcss": "^3.4.1",
"tsx": "^4.7.0",
"typescript": "^5.3.3",
"unplugin-icons": "^0.17.1",
- "vite": "^4.5.0",
- "vitepress": "^1.0.0-rc.24",
+ "vite": "^5.0.11",
+ "vitepress": "^1.0.0-rc.37",
"vue-tsc": "^1.8.27"
}
}
diff --git a/apps/www/src/content/docs/components/form.md b/apps/www/src/content/docs/components/form.md
index 3dd47c3e..cf275dcc 100644
--- a/apps/www/src/content/docs/components/form.md
+++ b/apps/www/src/content/docs/components/form.md
@@ -173,7 +173,7 @@ const formSchema = toTypedSchema(z.object({
### Define a form
-Use the `useForm` composable from `vee-validate` or use `
` component to create a from.
+Use the `useForm` composable from `vee-validate` or use `` component to create a form.
diff --git a/apps/www/src/lib/registry/default/ui/radio-group/RadioGroupItem.vue b/apps/www/src/lib/registry/default/ui/radio-group/RadioGroupItem.vue
index b9af78cf..92ae3af9 100644
--- a/apps/www/src/lib/registry/default/ui/radio-group/RadioGroupItem.vue
+++ b/apps/www/src/lib/registry/default/ui/radio-group/RadioGroupItem.vue
@@ -23,7 +23,7 @@ const props = defineProps()
-
+
diff --git a/apps/www/src/public/registry/styles/default/radio-group.json b/apps/www/src/public/registry/styles/default/radio-group.json
index 5d5772c4..7d408e4e 100644
--- a/apps/www/src/public/registry/styles/default/radio-group.json
+++ b/apps/www/src/public/registry/styles/default/radio-group.json
@@ -11,7 +11,7 @@
},
{
"name": "RadioGroupItem.vue",
- "content": "\n\n\n \n \n \n \n \n\n"
+ "content": "\n\n\n \n \n \n \n \n\n"
},
{
"name": "index.ts",
diff --git a/apps/www/src/public/registry/styles/default/select.json b/apps/www/src/public/registry/styles/default/select.json
index f8db71eb..77a62ecb 100644
--- a/apps/www/src/public/registry/styles/default/select.json
+++ b/apps/www/src/public/registry/styles/default/select.json
@@ -11,7 +11,7 @@
},
{
"name": "SelectContent.vue",
- "content": "\n\n\n \n \n \n \n \n \n \n\n"
+ "content": "\n\n\n \n \n \n \n \n \n \n\n"
},
{
"name": "SelectGroup.vue",
diff --git a/apps/www/src/public/registry/styles/new-york/select.json b/apps/www/src/public/registry/styles/new-york/select.json
index f8b7b2af..d3dad40a 100644
--- a/apps/www/src/public/registry/styles/new-york/select.json
+++ b/apps/www/src/public/registry/styles/new-york/select.json
@@ -11,7 +11,7 @@
},
{
"name": "SelectContent.vue",
- "content": "\n\n\n \n \n \n \n \n \n \n\n"
+ "content": "\n\n\n \n \n \n \n \n \n \n\n"
},
{
"name": "SelectGroup.vue",
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 543fdcca..e9c034f0 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -45,38 +45,38 @@ importers:
apps/www:
dependencies:
'@formkit/auto-animate':
- specifier: ^0.8.0
- version: 0.8.0
+ specifier: ^0.8.1
+ version: 0.8.1
'@morev/vue-transitions':
specifier: ^2.3.6
- version: 2.3.6(vue@3.4.8)
+ version: 2.3.6(vue@3.4.14)
'@radix-icons/vue':
specifier: ^1.0.0
- version: 1.0.0(vue@3.4.8)
+ version: 1.0.0(vue@3.4.14)
'@stackblitz/sdk':
specifier: ^1.9.0
version: 1.9.0
'@tanstack/vue-table':
- specifier: ^8.10.7
- version: 8.10.7(vue@3.4.8)
+ specifier: ^8.11.6
+ version: 8.11.6(vue@3.4.14)
'@unovis/ts':
- specifier: ^1.2.3
- version: 1.2.3
+ specifier: ^1.3.1
+ version: 1.3.1
'@unovis/vue':
- specifier: 1.3.0-beta.3
- version: 1.3.0-beta.3(@unovis/ts@1.2.3)(vue@3.4.8)
+ specifier: ^1.3.1
+ version: 1.3.1(@unovis/ts@1.3.1)(vue@3.4.14)
'@vee-validate/zod':
- specifier: ^4.12.3
- version: 4.12.3(vue@3.4.8)
+ specifier: ^4.12.4
+ version: 4.12.4(vue@3.4.14)
'@vueuse/core':
- specifier: ^10.5.0
- version: 10.5.0(vue@3.4.8)
+ specifier: ^10.7.2
+ version: 10.7.2(vue@3.4.14)
class-variance-authority:
specifier: ^0.7.0
version: 0.7.0
clsx:
- specifier: ^2.0.0
- version: 2.0.0
+ specifier: ^2.1.0
+ version: 2.1.0
codesandbox:
specifier: ^2.2.3
version: 2.2.3
@@ -91,28 +91,28 @@ importers:
version: 8.0.0-rc19(embla-carousel@8.0.0-rc19)
embla-carousel-vue:
specifier: 8.0.0-rc19
- version: 8.0.0-rc19(vue@3.4.8)
+ version: 8.0.0-rc19(vue@3.4.14)
lucide-vue-next:
specifier: ^0.276.0
- version: 0.276.0(vue@3.4.8)
+ version: 0.276.0(vue@3.4.14)
radix-vue:
- specifier: ^1.3.0
- version: 1.3.0(vue@3.4.8)
+ specifier: ^1.3.2
+ version: 1.3.2(vue@3.4.14)
tailwindcss-animate:
specifier: ^1.0.7
version: 1.0.7(tailwindcss@3.4.1)
v-calendar:
specifier: ^3.1.2
- version: 3.1.2(@popperjs/core@2.11.8)(vue@3.4.8)
+ version: 3.1.2(@popperjs/core@2.11.8)(vue@3.4.14)
vee-validate:
- specifier: 4.12.3
- version: 4.12.3(vue@3.4.8)
+ specifier: 4.12.4
+ version: 4.12.4(vue@3.4.14)
vue:
- specifier: ^3.4.7
- version: 3.4.8(typescript@5.3.3)
+ specifier: ^3.4.14
+ version: 3.4.14(typescript@5.3.3)
vue-wrap-balancer:
specifier: ^1.1.3
- version: 1.1.3(vue@3.4.8)
+ version: 1.1.3(vue@3.4.14)
zod:
specifier: ^3.22.4
version: 3.22.4
@@ -128,7 +128,7 @@ importers:
version: 2.2.120
'@iconify/vue':
specifier: ^4.1.1
- version: 4.1.1(vue@3.4.8)
+ version: 4.1.1(vue@3.4.14)
'@types/lodash.template':
specifier: ^4.5.2
version: 4.5.2
@@ -136,17 +136,17 @@ importers:
specifier: ^20.8.10
version: 20.8.10
'@vitejs/plugin-vue':
- specifier: ^4.4.0
- version: 4.4.0(vite@4.5.0)(vue@3.4.8)
+ specifier: ^5.0.3
+ version: 5.0.3(vite@5.0.11)(vue@3.4.14)
'@vitejs/plugin-vue-jsx':
- specifier: ^3.0.2
- version: 3.0.2(vite@4.5.0)(vue@3.4.8)
+ specifier: ^3.1.0
+ version: 3.1.0(vite@5.0.11)(vue@3.4.14)
'@vue/compiler-core':
- specifier: ^3.3.7
- version: 3.3.7
+ specifier: ^3.4.14
+ version: 3.4.14
'@vue/compiler-dom':
- specifier: ^3.3.7
- version: 3.3.7
+ specifier: ^3.4.14
+ version: 3.4.14
'@vue/tsconfig':
specifier: ^0.5.1
version: 0.5.1
@@ -165,9 +165,12 @@ importers:
rimraf:
specifier: ^5.0.5
version: 5.0.5
+ shikiji:
+ specifier: ^0.10.0-beta.2
+ version: 0.10.0-beta.2
tailwind-merge:
- specifier: ^2.0.0
- version: 2.0.0
+ specifier: ^2.2.0
+ version: 2.2.0
tailwindcss:
specifier: ^3.4.1
version: 3.4.1(ts-node@10.9.1)
@@ -181,11 +184,11 @@ importers:
specifier: ^0.17.1
version: 0.17.1
vite:
- specifier: ^4.5.0
- version: 4.5.0(@types/node@20.8.10)
+ specifier: ^5.0.11
+ version: 5.0.11(@types/node@20.8.10)
vitepress:
- specifier: ^1.0.0-rc.24
- version: 1.0.0-rc.24(@algolia/client-search@4.22.0)(@types/node@20.8.10)(postcss@8.4.33)(search-insights@2.13.0)(typescript@5.3.3)
+ specifier: ^1.0.0-rc.37
+ version: 1.0.0-rc.37(@algolia/client-search@4.22.0)(@types/node@20.8.10)(postcss@8.4.33)(search-insights@2.13.0)(typescript@5.3.3)
vue-tsc:
specifier: ^1.8.27
version: 1.8.27(typescript@5.3.3)
@@ -248,7 +251,7 @@ importers:
version: 2.4.2
radix-vue:
specifier: ^1.3.0
- version: 1.3.0(vue@3.4.8)
+ version: 1.3.0(vue@3.4.14)
recast:
specifier: ^0.23.4
version: 0.23.4
@@ -300,14 +303,14 @@ importers:
dependencies:
'@nuxt/kit':
specifier: ^3.8.2
- version: 3.8.2(rollup@3.29.3)
+ version: 3.8.2(rollup@3.29.4)
oxc-parser:
specifier: ^0.2.0
version: 0.2.0
devDependencies:
'@nuxt/devtools':
specifier: latest
- version: 1.0.4(nuxt@3.8.2)(rollup@3.29.3)(vite@4.5.1)
+ version: 1.0.4(nuxt@3.8.2)(rollup@3.29.4)(vite@4.5.1)
'@nuxt/eslint-config':
specifier: ^0.2.0
version: 0.2.0(eslint@8.56.0)
@@ -316,16 +319,16 @@ importers:
version: 0.5.4(@nuxt/kit@3.8.2)(nuxi@3.10.0)(typescript@5.3.3)
'@nuxt/schema':
specifier: ^3.8.2
- version: 3.8.2(rollup@3.29.3)
+ version: 3.8.2(rollup@3.29.4)
'@nuxt/test-utils':
specifier: ^3.8.1
- version: 3.8.1(rollup@3.29.3)(vitest@0.33.0)(vue@3.4.8)
+ version: 3.8.1(rollup@3.29.4)(vitest@0.33.0)(vue@3.4.14)
'@types/node':
specifier: ^20.9.3
version: 20.10.1
nuxt:
specifier: ^3.8.2
- version: 3.8.2(@types/node@20.10.1)(eslint@8.56.0)(rollup@3.29.3)(typescript@5.3.3)(vite@4.5.1)
+ version: 3.8.2(@types/node@20.10.1)(eslint@8.56.0)(rollup@3.29.4)(typescript@5.3.3)(vite@4.5.1)
vitest:
specifier: ^0.33.0
version: 0.33.0
@@ -670,6 +673,7 @@ packages:
semver: 6.3.1
transitivePeerDependencies:
- supports-color
+ dev: false
/@babel/core@7.23.5:
resolution: {integrity: sha512-Cwc2XjUrG4ilcfOw4wBAK+enbdgwAcAJCfGUItPBKR7Mjw4aEfAFYrLxeRp4jWgtNIKn3n2AlBOfwwafl+42/g==}
@@ -701,6 +705,7 @@ packages:
'@jridgewell/gen-mapping': 0.3.3
'@jridgewell/trace-mapping': 0.3.19
jsesc: 2.5.2
+ dev: false
/@babel/generator@7.23.5:
resolution: {integrity: sha512-BPssCHrBD+0YrxviOa3QzpqwhNIXKEtOa2jQrm4FlmkC2apYgRnQcmPWiGZDlGxiNtltnUFolMe8497Esry+jA==}
@@ -743,6 +748,25 @@ packages:
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
'@babel/helper-split-export-declaration': 7.22.6
semver: 6.3.1
+ dev: false
+
+ /@babel/helper-create-class-features-plugin@7.23.5(@babel/core@7.23.0):
+ resolution: {integrity: sha512-QELlRWxSpgdwdJzSJn4WAhKC+hvw/AtHbbrIoncKHkhKKR/luAlKkgBDcri1EzWAo8f8VvYVryEHN4tax/V67A==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ dependencies:
+ '@babel/core': 7.23.0
+ '@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.22.20(@babel/core@7.23.0)
+ '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
+ '@babel/helper-split-export-declaration': 7.22.6
+ semver: 6.3.1
+ dev: false
/@babel/helper-create-class-features-plugin@7.23.5(@babel/core@7.23.5):
resolution: {integrity: sha512-QELlRWxSpgdwdJzSJn4WAhKC+hvw/AtHbbrIoncKHkhKKR/luAlKkgBDcri1EzWAo8f8VvYVryEHN4tax/V67A==}
@@ -803,6 +827,7 @@ packages:
'@babel/helper-simple-access': 7.22.5
'@babel/helper-split-export-declaration': 7.22.6
'@babel/helper-validator-identifier': 7.22.20
+ dev: false
/@babel/helper-module-transforms@7.23.3(@babel/core@7.23.5):
resolution: {integrity: sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==}
@@ -837,6 +862,7 @@ packages:
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-member-expression-to-functions': 7.23.0
'@babel/helper-optimise-call-expression': 7.22.5
+ dev: false
/@babel/helper-replace-supers@7.22.20(@babel/core@7.23.5):
resolution: {integrity: sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==}
@@ -889,6 +915,7 @@ packages:
'@babel/types': 7.23.6
transitivePeerDependencies:
- supports-color
+ dev: false
/@babel/helpers@7.23.5:
resolution: {integrity: sha512-oO7us8FzTEsG3U6ag9MfdF1iA/7Z6dz+MtFhifZk8C8o453rGJFFWUP1t+ULM9TUIAzC9uxXEiXjOiVMyd7QPg==}
@@ -982,6 +1009,7 @@ packages:
dependencies:
'@babel/core': 7.23.0
'@babel/helper-plugin-utils': 7.22.5
+ dev: false
/@babel/plugin-syntax-jsx@7.22.5(@babel/core@7.23.5):
resolution: {integrity: sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==}
@@ -1001,6 +1029,17 @@ packages:
dependencies:
'@babel/core': 7.23.0
'@babel/helper-plugin-utils': 7.22.5
+ dev: false
+
+ /@babel/plugin-syntax-typescript@7.23.3(@babel/core@7.23.0):
+ resolution: {integrity: sha512-9EiNjVJOMwCO+43TqoTrgQ8jMwcAd0sWyXi9RPfIsLTj4R2MADDDQXELhffaUx/uJv2AYcxBgPwH6j4TIA4ytQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.0
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: false
/@babel/plugin-syntax-typescript@7.23.3(@babel/core@7.23.5):
resolution: {integrity: sha512-9EiNjVJOMwCO+43TqoTrgQ8jMwcAd0sWyXi9RPfIsLTj4R2MADDDQXELhffaUx/uJv2AYcxBgPwH6j4TIA4ytQ==}
@@ -1035,6 +1074,20 @@ packages:
'@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.0)
'@babel/helper-plugin-utils': 7.22.5
'@babel/plugin-syntax-typescript': 7.22.5(@babel/core@7.23.0)
+ dev: false
+
+ /@babel/plugin-transform-typescript@7.23.5(@babel/core@7.23.0):
+ resolution: {integrity: sha512-2fMkXEJkrmwgu2Bsv1Saxgj30IXZdJ+84lQcKKI7sm719oXs0BBw2ZENKdJdR1PjWndgLCEBNXJOri0fk7RYQA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.0
+ '@babel/helper-annotate-as-pure': 7.22.5
+ '@babel/helper-create-class-features-plugin': 7.23.5(@babel/core@7.23.0)
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/plugin-syntax-typescript': 7.23.3(@babel/core@7.23.0)
+ dev: false
/@babel/plugin-transform-typescript@7.23.5(@babel/core@7.23.5):
resolution: {integrity: sha512-2fMkXEJkrmwgu2Bsv1Saxgj30IXZdJ+84lQcKKI7sm719oXs0BBw2ZENKdJdR1PjWndgLCEBNXJOri0fk7RYQA==}
@@ -1060,7 +1113,7 @@ packages:
'@babel/helper-validator-option': 7.22.15
'@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.23.0)
'@babel/plugin-transform-modules-commonjs': 7.23.0(@babel/core@7.23.0)
- '@babel/plugin-transform-typescript': 7.22.15(@babel/core@7.23.0)
+ '@babel/plugin-transform-typescript': 7.23.5(@babel/core@7.23.0)
dev: false
/@babel/runtime@7.23.1:
@@ -1068,6 +1121,14 @@ packages:
engines: {node: '>=6.9.0'}
dependencies:
regenerator-runtime: 0.14.0
+ dev: false
+
+ /@babel/runtime@7.23.8:
+ resolution: {integrity: sha512-Y7KbAP984rn1VGMbGqKmBLio9V7y5Je9GvU4rQPCPinCyNfUcToxIXl06d59URp/F3LwinvODxab5N/G6qggkw==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ regenerator-runtime: 0.14.0
+ dev: true
/@babel/standalone@7.23.1:
resolution: {integrity: sha512-a4muOYz1qUaSoybuUKwK90mRG4sf5rBeUbuzpuGLzG32ZDE/Y2YEebHDODFJN+BtyOKi19hrLfq2qbNyKMx0TA==}
@@ -1097,6 +1158,7 @@ packages:
globals: 11.12.0
transitivePeerDependencies:
- supports-color
+ dev: false
/@babel/traverse@7.23.5:
resolution: {integrity: sha512-czx7Xy5a6sapWWRx61m1Ke1Ra4vczu1mCTtJam5zRTBOonfdJ+S/B6HYmGYu3fJtr8GGET3si6IhgWVBhJ/m8w==}
@@ -1405,7 +1467,7 @@ packages:
'@emotion/memoize': 0.8.1
'@emotion/unitless': 0.8.1
'@emotion/utils': 1.2.1
- csstype: 3.1.2
+ csstype: 3.1.3
dev: false
/@emotion/sheet@1.2.2:
@@ -2339,18 +2401,18 @@ packages:
resolution: {integrity: sha512-qprfWkn82Iw821mcKofJ5Pk9wgioHicxcQMxx+5zt5GSKoqdWvgG5AxVmpmUUjzTLPVSH5auBrhI93Deayn/DA==}
dev: false
- /@floating-ui/vue@1.0.2(vue@3.4.8):
+ /@floating-ui/vue@1.0.2(vue@3.4.14):
resolution: {integrity: sha512-sImlAl9mAoCKZLNlwWz2P2ZMJIDlOEDXrRD6aD2sIHAka1LPC+nWtB+D3lPe7IE7FGWSbwBPTnlSdlABa3Fr0A==}
dependencies:
'@floating-ui/dom': 1.5.3
- vue-demi: 0.14.6(vue@3.4.8)
+ vue-demi: 0.14.6(vue@3.4.14)
transitivePeerDependencies:
- '@vue/composition-api'
- vue
dev: false
- /@formkit/auto-animate@0.8.0:
- resolution: {integrity: sha512-G8f7489ka0mWyi+1IEZT+xgIwcpWtRMmE2x+IrVoQ+KM1cP6VDj/TbujZjwxdb0P8w8b16/qBfViRmydbYHwMw==}
+ /@formkit/auto-animate@0.8.1:
+ resolution: {integrity: sha512-0/Z2cuNXWVVIG/l0SpcHAWFhGdvLJ8DRvEfRWvmojtmRWfEy+LWNwgDazbZqY0qQYtkHcoEK3jBLkhiZaB/4Ig==}
dev: false
/@humanwhocodes/config-array@0.11.13:
@@ -2409,13 +2471,13 @@ packages:
- supports-color
dev: true
- /@iconify/vue@4.1.1(vue@3.4.8):
+ /@iconify/vue@4.1.1(vue@3.4.14):
resolution: {integrity: sha512-RL85Bm/DAe8y6rT6pux7D2FJSiUEM/TPfyK7GrbAOfTSwrhvwJW+S5yijdGcmtXouA8MtuH9C7l4hiSE4mLMjg==}
peerDependencies:
vue: '>=3'
dependencies:
'@iconify/types': 2.0.0
- vue: 3.4.8(typescript@5.3.3)
+ vue: 3.4.14(typescript@5.3.3)
dev: true
/@ioredis/commands@1.2.0:
@@ -2571,7 +2633,7 @@ packages:
type-fest: 4.3.2
dev: false
- /@morev/vue-transitions@2.3.6(vue@3.4.8):
+ /@morev/vue-transitions@2.3.6(vue@3.4.14):
resolution: {integrity: sha512-a6nOExEDVHD11wjpX5r/PJf8u9ziSwrlp16SaNJl2Gyehp6UlEkFx0aZJNZhSWnn7gOaQFzJvIqfx82p9tzqxA==}
hasBin: true
requiresBuild: true
@@ -2580,7 +2642,7 @@ packages:
dependencies:
'@morev/utils': 2.8.1
'@nuxt/kit': 3.7.4
- vue: 3.4.8(typescript@5.3.3)
+ vue: 3.4.14(typescript@5.3.3)
transitivePeerDependencies:
- rollup
- supports-color
@@ -2727,16 +2789,16 @@ packages:
resolution: {integrity: sha512-GBzP8zOc7CGWyFQS6dv1lQz8VVpz5C2yRszbXufwG/9zhStTIH50EtD87NmWbTMwXDvZLNg8GIpb1UFdH93JCA==}
dev: true
- /@nuxt/devtools-kit@1.0.4(nuxt@3.8.2)(rollup@3.29.3)(vite@4.5.1):
+ /@nuxt/devtools-kit@1.0.4(nuxt@3.8.2)(rollup@3.29.4)(vite@4.5.1):
resolution: {integrity: sha512-AXNeI1dBilNryCmwuTd3lU7CrPBhzUJ5ntTFiXw9MmFwe5QT3NOxDFOv0gX7z1DFnmBEmx5mPKWysCwh7htEnQ==}
peerDependencies:
nuxt: ^3.8.1
vite: '*'
dependencies:
- '@nuxt/kit': 3.8.2(rollup@3.29.3)
- '@nuxt/schema': 3.8.2(rollup@3.29.3)
+ '@nuxt/kit': 3.8.2(rollup@3.29.4)
+ '@nuxt/schema': 3.8.2(rollup@3.29.4)
execa: 7.2.0
- nuxt: 3.8.2(@types/node@20.10.1)(eslint@8.56.0)(rollup@3.29.3)(typescript@5.3.3)(vite@4.5.1)
+ nuxt: 3.8.2(@types/node@20.10.1)(eslint@8.56.0)(rollup@3.29.4)(typescript@5.3.3)(vite@4.5.1)
vite: 4.5.1(@types/node@20.10.1)
transitivePeerDependencies:
- rollup
@@ -2759,7 +2821,7 @@ packages:
semver: 7.5.4
dev: true
- /@nuxt/devtools@1.0.4(nuxt@3.8.2)(rollup@3.29.3)(vite@4.5.1):
+ /@nuxt/devtools@1.0.4(nuxt@3.8.2)(rollup@3.29.4)(vite@4.5.1):
resolution: {integrity: sha512-G1Oo9+TaOYzePIXpNX+Zzalw/rJyIZKZpZmXfzolPlOJSA1i0JKzZX6Z7iQHdqPwNJ8t+HnVaF4PghPIpo1kwg==}
hasBin: true
peerDependencies:
@@ -2767,9 +2829,9 @@ packages:
vite: '*'
dependencies:
'@antfu/utils': 0.7.6
- '@nuxt/devtools-kit': 1.0.4(nuxt@3.8.2)(rollup@3.29.3)(vite@4.5.1)
+ '@nuxt/devtools-kit': 1.0.4(nuxt@3.8.2)(rollup@3.29.4)(vite@4.5.1)
'@nuxt/devtools-wizard': 1.0.4
- '@nuxt/kit': 3.8.2(rollup@3.29.3)
+ '@nuxt/kit': 3.8.2(rollup@3.29.4)
birpc: 0.2.14
consola: 3.2.3
destr: 2.0.2
@@ -2786,7 +2848,7 @@ packages:
local-pkg: 0.5.0
magicast: 0.3.2
nitropack: 2.8.1
- nuxt: 3.8.2(@types/node@20.10.1)(eslint@8.56.0)(rollup@3.29.3)(typescript@5.3.3)(vite@4.5.1)
+ nuxt: 3.8.2(@types/node@20.10.1)(eslint@8.56.0)(rollup@3.29.4)(typescript@5.3.3)(vite@4.5.1)
nypm: 0.3.3
ofetch: 1.3.3
ohash: 1.1.3
@@ -2799,9 +2861,9 @@ packages:
semver: 7.5.4
simple-git: 3.21.0
sirv: 2.0.3
- unimport: 3.6.0(rollup@3.29.3)
+ unimport: 3.6.0(rollup@3.29.4)
vite: 4.5.1(@types/node@20.10.1)
- vite-plugin-inspect: 0.7.42(@nuxt/kit@3.8.2)(rollup@3.29.3)(vite@4.5.1)
+ vite-plugin-inspect: 0.7.42(@nuxt/kit@3.8.2)(rollup@3.29.4)(vite@4.5.1)
vite-plugin-vue-inspector: 4.0.0(vite@4.5.1)
which: 3.0.1
ws: 8.14.2
@@ -2853,7 +2915,7 @@ packages:
globby: 13.2.2
hash-sum: 2.0.0
ignore: 5.2.4
- jiti: 1.20.0
+ jiti: 1.21.0
knitwork: 1.0.0
mlly: 1.4.2
pathe: 1.1.2
@@ -2862,18 +2924,18 @@ packages:
semver: 7.5.4
ufo: 1.3.0
unctx: 2.3.1
- unimport: 3.4.0(rollup@3.29.3)
+ unimport: 3.4.0(rollup@3.29.4)
untyped: 1.4.0
transitivePeerDependencies:
- rollup
- supports-color
dev: false
- /@nuxt/kit@3.8.1(rollup@3.29.3):
+ /@nuxt/kit@3.8.1(rollup@3.29.4):
resolution: {integrity: sha512-DrhG1Z85iH68QOTkgfb0HVfM2g7+CfcMWrFWMDwck9ofyM2RXQUZyfmvMedwBnui1AjjpgpLO9078yZM+RqNUg==}
engines: {node: ^14.18.0 || >=16.10.0}
dependencies:
- '@nuxt/schema': 3.8.1(rollup@3.29.3)
+ '@nuxt/schema': 3.8.1(rollup@3.29.4)
c12: 1.5.1
consola: 3.2.3
defu: 6.1.3
@@ -2889,18 +2951,18 @@ packages:
semver: 7.5.4
ufo: 1.3.2
unctx: 2.3.1
- unimport: 3.4.0(rollup@3.29.3)
+ unimport: 3.4.0(rollup@3.29.4)
untyped: 1.4.0
transitivePeerDependencies:
- rollup
- supports-color
dev: true
- /@nuxt/kit@3.8.2(rollup@3.29.3):
+ /@nuxt/kit@3.8.2(rollup@3.29.4):
resolution: {integrity: sha512-LrXCm8hAkw+zpX8teUSD/LqXRarlXjbRiYxDkaqw739JSHFReWzBFgJbojsJqL4h1XIEScDGGOWiEgO4QO1sMg==}
engines: {node: ^14.18.0 || >=16.10.0}
dependencies:
- '@nuxt/schema': 3.8.2(rollup@3.29.3)
+ '@nuxt/schema': 3.8.2(rollup@3.29.4)
c12: 1.5.1
consola: 3.2.3
defu: 6.1.3
@@ -2916,7 +2978,7 @@ packages:
semver: 7.5.4
ufo: 1.3.2
unctx: 2.3.1
- unimport: 3.6.0(rollup@3.29.3)
+ unimport: 3.6.0(rollup@3.29.4)
untyped: 1.4.0
transitivePeerDependencies:
- rollup
@@ -2929,7 +2991,7 @@ packages:
'@nuxt/kit': ^3.8.1
nuxi: ^3.9.1
dependencies:
- '@nuxt/kit': 3.8.2(rollup@3.29.3)
+ '@nuxt/kit': 3.8.2(rollup@3.29.4)
citty: 0.1.5
consola: 3.2.3
mlly: 1.4.2
@@ -2955,14 +3017,14 @@ packages:
postcss-import-resolver: 2.0.0
std-env: 3.4.3
ufo: 1.3.0
- unimport: 3.4.0(rollup@3.29.3)
+ unimport: 3.4.0(rollup@3.29.4)
untyped: 1.4.0
transitivePeerDependencies:
- rollup
- supports-color
dev: false
- /@nuxt/schema@3.8.1(rollup@3.29.3):
+ /@nuxt/schema@3.8.1(rollup@3.29.4):
resolution: {integrity: sha512-fSaWRcI/2mUskfTZTGSnH6Ny0x05CRzylbVn6WFV0d6UEKIVy42Qd6n+h7yoFfp4cq4nji6u16PT4SqS1DEhsw==}
engines: {node: ^14.18.0 || >=16.10.0}
dependencies:
@@ -2974,14 +3036,14 @@ packages:
pkg-types: 1.0.3
std-env: 3.4.3
ufo: 1.3.2
- unimport: 3.4.0(rollup@3.29.3)
+ unimport: 3.4.0(rollup@3.29.4)
untyped: 1.4.0
transitivePeerDependencies:
- rollup
- supports-color
dev: true
- /@nuxt/schema@3.8.2(rollup@3.29.3):
+ /@nuxt/schema@3.8.2(rollup@3.29.4):
resolution: {integrity: sha512-AMpysQ/wHK2sOujLShqYdC4OSj/S3fFJGjhYXqA2g6dgmz+FNQWJRG/ie5sI9r2EX9Ela1wt0GN1jZR3wYNE8Q==}
engines: {node: ^14.18.0 || >=16.10.0}
dependencies:
@@ -2994,17 +3056,17 @@ packages:
scule: 1.1.0
std-env: 3.5.0
ufo: 1.3.2
- unimport: 3.6.0(rollup@3.29.3)
+ unimport: 3.6.0(rollup@3.29.4)
untyped: 1.4.0
transitivePeerDependencies:
- rollup
- supports-color
- /@nuxt/telemetry@2.5.3(rollup@3.29.3):
+ /@nuxt/telemetry@2.5.3(rollup@3.29.4):
resolution: {integrity: sha512-Ghv2MgWbJcUM9G5Dy3oQP0cJkUwEgaiuQxEF61FXJdn0a69Q4StZEP/hLF0MWPM9m6EvAwI7orxkJHM7MrmtVg==}
hasBin: true
dependencies:
- '@nuxt/kit': 3.8.2(rollup@3.29.3)
+ '@nuxt/kit': 3.8.2(rollup@3.29.4)
ci-info: 4.0.0
consola: 3.2.3
create-require: 1.1.1
@@ -3026,7 +3088,7 @@ packages:
- supports-color
dev: true
- /@nuxt/test-utils@3.8.1(rollup@3.29.3)(vitest@0.33.0)(vue@3.4.8):
+ /@nuxt/test-utils@3.8.1(rollup@3.29.4)(vitest@0.33.0)(vue@3.4.14):
resolution: {integrity: sha512-8ZQ+OZ7z5Sc5KG2aCvk0piheYSpGb2UQJMCWr8ORwEyZIw4awrkkwGzUY06e344E4StvJB8zxN122MEcFNOkow==}
engines: {node: ^14.18.0 || >=16.10.0}
peerDependencies:
@@ -3042,8 +3104,8 @@ packages:
vitest:
optional: true
dependencies:
- '@nuxt/kit': 3.8.1(rollup@3.29.3)
- '@nuxt/schema': 3.8.1(rollup@3.29.3)
+ '@nuxt/kit': 3.8.1(rollup@3.29.4)
+ '@nuxt/schema': 3.8.1(rollup@3.29.4)
consola: 3.2.3
defu: 6.1.3
execa: 8.0.1
@@ -3052,7 +3114,7 @@ packages:
pathe: 1.1.2
ufo: 1.3.2
vitest: 0.33.0
- vue: 3.4.8(typescript@5.3.3)
+ vue: 3.4.14(typescript@5.3.3)
transitivePeerDependencies:
- rollup
- supports-color
@@ -3061,22 +3123,22 @@ packages:
/@nuxt/ui-templates@1.3.1:
resolution: {integrity: sha512-5gc02Pu1HycOVUWJ8aYsWeeXcSTPe8iX8+KIrhyEtEoOSkY0eMBuo0ssljB8wALuEmepv31DlYe5gpiRwkjESA==}
- /@nuxt/vite-builder@3.8.2(@types/node@20.10.1)(eslint@8.56.0)(rollup@3.29.3)(typescript@5.3.3)(vue@3.4.8):
+ /@nuxt/vite-builder@3.8.2(@types/node@20.10.1)(eslint@8.56.0)(rollup@3.29.4)(typescript@5.3.3)(vue@3.4.14):
resolution: {integrity: sha512-l/lzDDTbd3M89BpmWqjhVLgLVRqfkKp0tyYgV5seJQjj3SX+IeqI7k6k8+dMEifdeO34jUajVWptNpITXQryyg==}
engines: {node: ^14.18.0 || >=16.10.0}
peerDependencies:
vue: ^3.3.4
dependencies:
- '@nuxt/kit': 3.8.2(rollup@3.29.3)
- '@rollup/plugin-replace': 5.0.5(rollup@3.29.3)
- '@vitejs/plugin-vue': 4.5.0(vite@4.5.0)(vue@3.4.8)
- '@vitejs/plugin-vue-jsx': 3.1.0(vite@4.5.0)(vue@3.4.8)
+ '@nuxt/kit': 3.8.2(rollup@3.29.4)
+ '@rollup/plugin-replace': 5.0.5(rollup@3.29.4)
+ '@vitejs/plugin-vue': 4.5.0(vite@4.5.1)(vue@3.4.14)
+ '@vitejs/plugin-vue-jsx': 3.1.0(vite@4.5.1)(vue@3.4.14)
autoprefixer: 10.4.16(postcss@8.4.33)
clear: 0.1.0
consola: 3.2.3
cssnano: 6.0.1(postcss@8.4.33)
defu: 6.1.3
- esbuild: 0.19.8
+ esbuild: 0.19.11
escape-string-regexp: 5.0.0
estree-walker: 3.0.3
externality: 1.0.2
@@ -3091,15 +3153,15 @@ packages:
perfect-debounce: 1.0.0
pkg-types: 1.0.3
postcss: 8.4.33
- rollup-plugin-visualizer: 5.9.3(rollup@3.29.3)
+ rollup-plugin-visualizer: 5.9.3(rollup@3.29.4)
std-env: 3.5.0
strip-literal: 1.3.0
ufo: 1.3.2
unplugin: 1.5.1
- vite: 4.5.0(@types/node@20.10.1)
+ vite: 4.5.1(@types/node@20.10.1)
vite-node: 0.33.0(@types/node@20.10.1)
- vite-plugin-checker: 0.6.2(eslint@8.56.0)(typescript@5.3.3)(vite@4.5.0)
- vue: 3.4.8(typescript@5.3.3)
+ vite-plugin-checker: 0.6.2(eslint@8.56.0)(typescript@5.3.3)(vite@4.5.1)
+ vue: 3.4.14(typescript@5.3.3)
vue-bundle-renderer: 2.0.0
transitivePeerDependencies:
- '@types/node'
@@ -3319,15 +3381,15 @@ packages:
resolution: {integrity: sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==}
dev: false
- /@radix-icons/vue@1.0.0(vue@3.4.8):
+ /@radix-icons/vue@1.0.0(vue@3.4.14):
resolution: {integrity: sha512-gKWWk9tTK/laDRRNe5KLLR8A0qUwx4q4+DN8Fq48hJ904u78R82ayAO3TrxbNLgyn2D0h6rRiGdLzQWj7rPcvA==}
peerDependencies:
vue: '>= 3'
dependencies:
- vue: 3.4.8(typescript@5.3.3)
+ vue: 3.4.14(typescript@5.3.3)
dev: false
- /@rollup/plugin-alias@5.1.0(rollup@3.29.3):
+ /@rollup/plugin-alias@5.1.0(rollup@3.29.4):
resolution: {integrity: sha512-lpA3RZ9PdIG7qqhEfv79tBffNaoDuukFDrmhLqg9ifv99u/ehn+lOg30x2zmhf8AQqQUZaMk/B9fZraQ6/acDQ==}
engines: {node: '>=14.0.0'}
peerDependencies:
@@ -3336,7 +3398,7 @@ packages:
rollup:
optional: true
dependencies:
- rollup: 3.29.3
+ rollup: 3.29.4
slash: 4.0.0
dev: true
@@ -3353,7 +3415,7 @@ packages:
slash: 4.0.0
dev: true
- /@rollup/plugin-commonjs@25.0.7(rollup@3.29.3):
+ /@rollup/plugin-commonjs@25.0.7(rollup@3.29.4):
resolution: {integrity: sha512-nEvcR+LRjEjsaSsc4x3XZfCCvZIaSMenZu/OiwOKGN2UhQpAYI7ru7czFvyWbErlpoGjnSX3D5Ch5FcMA3kRWQ==}
engines: {node: '>=14.0.0'}
peerDependencies:
@@ -3362,13 +3424,13 @@ packages:
rollup:
optional: true
dependencies:
- '@rollup/pluginutils': 5.0.4(rollup@3.29.3)
+ '@rollup/pluginutils': 5.0.4(rollup@3.29.4)
commondir: 1.0.1
estree-walker: 2.0.2
glob: 8.1.0
is-reference: 1.2.1
magic-string: 0.30.5
- rollup: 3.29.3
+ rollup: 3.29.4
dev: true
/@rollup/plugin-commonjs@25.0.7(rollup@4.6.1):
@@ -3404,7 +3466,7 @@ packages:
rollup: 4.6.1
dev: true
- /@rollup/plugin-json@6.0.1(rollup@3.29.3):
+ /@rollup/plugin-json@6.0.1(rollup@3.29.4):
resolution: {integrity: sha512-RgVfl5hWMkxN1h/uZj8FVESvPuBJ/uf6ly6GTj0GONnkfoBN5KC0MSz+PN2OLDgYXMhtG0mWpTrkiOjoxAIevw==}
engines: {node: '>=14.0.0'}
peerDependencies:
@@ -3413,8 +3475,8 @@ packages:
rollup:
optional: true
dependencies:
- '@rollup/pluginutils': 5.0.4(rollup@3.29.3)
- rollup: 3.29.3
+ '@rollup/pluginutils': 5.0.4(rollup@3.29.4)
+ rollup: 3.29.4
dev: true
/@rollup/plugin-json@6.0.1(rollup@4.6.1):
@@ -3430,7 +3492,7 @@ packages:
rollup: 4.6.1
dev: true
- /@rollup/plugin-node-resolve@15.2.3(rollup@3.29.3):
+ /@rollup/plugin-node-resolve@15.2.3(rollup@3.29.4):
resolution: {integrity: sha512-j/lym8nf5E21LwBT4Df1VD6hRO2L2iwUeUmP7litikRsVp1H6NWx20NEp0Y7su+7XGc476GnXXc4kFeZNGmaSQ==}
engines: {node: '>=14.0.0'}
peerDependencies:
@@ -3439,13 +3501,13 @@ packages:
rollup:
optional: true
dependencies:
- '@rollup/pluginutils': 5.0.4(rollup@3.29.3)
+ '@rollup/pluginutils': 5.0.4(rollup@3.29.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: 3.29.3
+ rollup: 3.29.4
dev: true
/@rollup/plugin-node-resolve@15.2.3(rollup@4.6.1):
@@ -3466,7 +3528,7 @@ packages:
rollup: 4.6.1
dev: true
- /@rollup/plugin-replace@5.0.5(rollup@3.29.3):
+ /@rollup/plugin-replace@5.0.5(rollup@3.29.4):
resolution: {integrity: sha512-rYO4fOi8lMaTg/z5Jb+hKnrHHVn8j2lwkqwyS4kTRhKyWOLf2wST2sWXr4WzWiTcoHTp2sTjqUbqIj2E39slKQ==}
engines: {node: '>=14.0.0'}
peerDependencies:
@@ -3475,9 +3537,9 @@ packages:
rollup:
optional: true
dependencies:
- '@rollup/pluginutils': 5.0.4(rollup@3.29.3)
+ '@rollup/pluginutils': 5.0.4(rollup@3.29.4)
magic-string: 0.30.5
- rollup: 3.29.3
+ rollup: 3.29.4
dev: true
/@rollup/plugin-replace@5.0.5(rollup@4.6.1):
@@ -3530,7 +3592,7 @@ packages:
picomatch: 2.3.1
dev: true
- /@rollup/pluginutils@5.0.4(rollup@3.29.3):
+ /@rollup/pluginutils@5.0.4(rollup@3.29.4):
resolution: {integrity: sha512-0KJnIoRI8A+a1dqOYLxH8vBf8bphDmty5QvIm2hqm7oFCFYKCAZWWd2hXgMibaPsNDhI0AtpYfQZJG47pt/k4g==}
engines: {node: '>=14.0.0'}
peerDependencies:
@@ -3542,7 +3604,7 @@ packages:
'@types/estree': 1.0.2
estree-walker: 2.0.2
picomatch: 2.3.1
- rollup: 3.29.3
+ rollup: 3.29.4
/@rollup/pluginutils@5.0.4(rollup@4.6.1):
resolution: {integrity: sha512-0KJnIoRI8A+a1dqOYLxH8vBf8bphDmty5QvIm2hqm7oFCFYKCAZWWd2hXgMibaPsNDhI0AtpYfQZJG47pt/k4g==}
@@ -3559,7 +3621,7 @@ packages:
rollup: 4.6.1
dev: true
- /@rollup/pluginutils@5.1.0(rollup@3.29.3):
+ /@rollup/pluginutils@5.1.0(rollup@3.29.4):
resolution: {integrity: sha512-XTIWOPPcpvyKI6L1NHo0lFlCyznUEyPmPY1mc3KpPVDYulHSTvyeLNVW00QTLIAFNhR3kYnJTQHeGqU4M3n09g==}
engines: {node: '>=14.0.0'}
peerDependencies:
@@ -3571,7 +3633,7 @@ packages:
'@types/estree': 1.0.2
estree-walker: 2.0.2
picomatch: 2.3.1
- rollup: 3.29.3
+ rollup: 3.29.4
/@rollup/pluginutils@5.1.0(rollup@4.6.1):
resolution: {integrity: sha512-XTIWOPPcpvyKI6L1NHo0lFlCyznUEyPmPY1mc3KpPVDYulHSTvyeLNVW00QTLIAFNhR3kYnJTQHeGqU4M3n09g==}
@@ -3761,19 +3823,19 @@ packages:
- supports-color
dev: true
- /@tanstack/table-core@8.10.7:
- resolution: {integrity: sha512-KQk5OMg5OH6rmbHZxuNROvdI+hKDIUxANaHlV+dPlNN7ED3qYQ/WkpY2qlXww1SIdeMlkIhpN/2L00rof0fXFw==}
+ /@tanstack/table-core@8.11.6:
+ resolution: {integrity: sha512-69WEY1PaZROaGYUrseng4/4sMYnRGhDe1vM6888CnWekGz/wuCnvqwOoOuKGYivnaiI4BVmZq4WKWhvahyj3/g==}
engines: {node: '>=12'}
dev: false
- /@tanstack/vue-table@8.10.7(vue@3.4.8):
- resolution: {integrity: sha512-13tTANgJuJHVW73rPLI+qrZVhrd9Yqxjys6t/Uor0qR0oS8Xk9xJE9WHqvaGsgVNBsIs9dE53S5GEBZqGC3FUw==}
+ /@tanstack/vue-table@8.11.6(vue@3.4.14):
+ resolution: {integrity: sha512-KJRdgq/s/a+1tEglArDh9tIIzqwj5W9ztTiqjqhbKLVZ2Pb6wb8p5+O6VghllqT8f2DWzlh7FDedQNPkpOaWFw==}
engines: {node: '>=12'}
peerDependencies:
vue: ^3.2.33
dependencies:
- '@tanstack/table-core': 8.10.7
- vue: 3.4.8(typescript@5.3.3)
+ '@tanstack/table-core': 8.11.6
+ vue: 3.4.14(typescript@5.3.3)
dev: false
/@tootallnate/once@2.0.0:
@@ -4058,6 +4120,10 @@ packages:
'@types/d3-zoom': 3.0.5
dev: false
+ /@types/dagre@0.7.52:
+ resolution: {integrity: sha512-XKJdy+OClLk3hketHi9Qg6gTfe1F3y+UFnHxKA2rn9Dw+oXa4Gb378Ztz9HlMgZKSxpPmn4BNVh9wgkpvrK1uw==}
+ dev: false
+
/@types/diff@5.0.5:
resolution: {integrity: sha512-rt7WqM1bWwKJMRxlB5Rhke56UN21Bqwp1ILER31bafTivcapYdfhtPd5xRWfhf08yjPxoDcfjVkkECdRwFe7EA==}
dev: true
@@ -4135,8 +4201,8 @@ packages:
'@types/pbf': 3.0.3
dev: false
- /@types/markdown-it@13.0.5:
- resolution: {integrity: sha512-QhJP7hkq3FCrFNx0szMNCT/79CXfcEgUIA3jc5GBfeXqoKsk3R8JZm2wRXJ2DiyjbPE4VMFOSDemLFcUTZmHEQ==}
+ /@types/markdown-it@13.0.7:
+ resolution: {integrity: sha512-U/CBi2YUUcTHBt5tjO2r5QV/x0Po6nsYwQU4Y04fBS6vfoImaiZ6f8bi3CjTCxBPQSO1LMyUqkByzi8AidyxfA==}
dependencies:
'@types/linkify-it': 3.0.3
'@types/mdurl': 1.0.3
@@ -4268,8 +4334,8 @@ packages:
resolution: {integrity: sha512-d0XxK3YTObnWVp6rZuev3c49+j4Lo8g4L1ZRm9z5L0xpoZycUPshHgczK5gsUMaZOstjVYYi09p5gYvUtfChYw==}
dev: true
- /@types/web-bluetooth@0.0.18:
- resolution: {integrity: sha512-v/ZHEj9xh82usl8LMR3GarzFY1IrbXJw5L4QfQhokjRV91q+SelFqxQWSep1ucXEZ22+dSTwLFkXeur25sPIbw==}
+ /@types/web-bluetooth@0.0.20:
+ resolution: {integrity: sha512-g9gZnnXVq7gM7v3tJCWV/qw7w+KeOlSHAhgF9RytFyifW6AF61hdT2ucrYhPq9hLs5JIryeupHV3qGk95dH9ow==}
/@typescript-eslint/eslint-plugin@6.7.3(@typescript-eslint/parser@6.7.3)(eslint@8.53.0)(typescript@5.2.2):
resolution: {integrity: sha512-vntq452UHNltxsaaN+L9WyuMch8bMd9CqJ3zhzTPXXidwbf5mqqKCVXEuvRZUqLJSTLeWE65lQwyXsRGnXkCTA==}
@@ -4605,7 +4671,7 @@ packages:
'@unhead/shared': 1.8.8
dev: true
- /@unhead/vue@1.8.8(vue@3.4.8):
+ /@unhead/vue@1.8.8(vue@3.4.14):
resolution: {integrity: sha512-isHpVnSSE5SP+ObsZG/i+Jq9tAQ2u1AbGrktXKmL7P5FRxwPjhATYnJFdGpxXeXfuaFgRFKzGKs29xo4MMVODw==}
peerDependencies:
vue: '>=2.7 || >=3'
@@ -4614,7 +4680,7 @@ packages:
'@unhead/shared': 1.8.8
hookable: 5.5.3
unhead: 1.8.8
- vue: 3.4.8(typescript@5.3.3)
+ vue: 3.4.14(typescript@5.3.3)
dev: true
/@unovis/dagre-layout@0.8.8-2:
@@ -4630,14 +4696,15 @@ packages:
lodash-es: 4.17.21
dev: false
- /@unovis/ts@1.2.3:
- resolution: {integrity: sha512-Lpd9cxQCdpCkuxi3rbaT8k1XJ0ivlhR6oPu/vK9AgPBd6SqYf6lfboaAR/NBBj1z5+Sju8fKjRdYRvLnilXkMA==}
+ /@unovis/ts@1.3.1:
+ resolution: {integrity: sha512-a+smFbUgTtqH2IYjfTNSC7mDaxX40Mvc6ZH6HZ5fXXZ5YLbdu821/QIh4oWTsQBFB4804rsK/vXX/lhK4pEv6g==}
dependencies:
'@emotion/css': 11.11.2
'@juggle/resize-observer': 3.4.0
'@types/d3': 7.4.1
'@types/d3-collection': 1.0.11
'@types/d3-sankey': 0.11.2
+ '@types/dagre': 0.7.52
'@types/geojson': 7946.0.11
'@types/leaflet': 1.7.6
'@types/supercluster': 5.0.3
@@ -4666,21 +4733,21 @@ packages:
tslib: 2.6.2
dev: false
- /@unovis/vue@1.3.0-beta.3(@unovis/ts@1.2.3)(vue@3.4.8):
- resolution: {integrity: sha512-LoAotbGkS8T6ejtZ9aRjX4TIYzqlZLZ7L9ArjU0uESQli4WNJv/oysNeR6oumf/UwQEWlz47FtYbwhkSByR0KA==}
+ /@unovis/vue@1.3.1(@unovis/ts@1.3.1)(vue@3.4.14):
+ resolution: {integrity: sha512-SqtK7hTpLJgSWg+8OMDpjf/X1lPWsMY0xfiMEeq/7+70Lka99G/hQrk7IaJBapcZpinZa6gNa8xfnjyfNHesKw==}
peerDependencies:
'@unovis/ts': 1.2.1
vue: ^3
dependencies:
- '@unovis/ts': 1.2.3
- vue: 3.4.8(typescript@5.3.3)
+ '@unovis/ts': 1.3.1
+ vue: 3.4.14(typescript@5.3.3)
dev: false
- /@vee-validate/zod@4.12.3(vue@3.4.8):
- resolution: {integrity: sha512-9qXi433ISGgneBL5D/YpVvcVRqY3EvDnoTnTD6Y16QeBulcS4u3zHrPlJ0K0iKtAUKnfsTzUppud10GWwkm1QQ==}
+ /@vee-validate/zod@4.12.4(vue@3.4.14):
+ resolution: {integrity: sha512-iNFhkBfGkre2b+eBXgBpNlNVStxDrI59sJUbzBr01EjyTkFOUgc/0wPJrhY/kBp+0pnGzNi04jklJaKfNK2ibg==}
dependencies:
type-fest: 4.8.3
- vee-validate: 4.12.3(vue@3.4.8)
+ vee-validate: 4.12.4(vue@3.4.14)
zod: 3.22.4
transitivePeerDependencies:
- vue
@@ -4707,23 +4774,7 @@ packages:
- supports-color
dev: true
- /@vitejs/plugin-vue-jsx@3.0.2(vite@4.5.0)(vue@3.4.8):
- resolution: {integrity: sha512-obF26P2Z4Ogy3cPp07B4VaW6rpiu0ue4OT2Y15UxT5BZZ76haUY9guOsZV3uWh/I6xc+VeiW+ZVabRE82FyzWw==}
- engines: {node: ^14.18.0 || >=16.0.0}
- peerDependencies:
- vite: ^4.0.0
- vue: ^3.0.0
- dependencies:
- '@babel/core': 7.23.0
- '@babel/plugin-transform-typescript': 7.22.15(@babel/core@7.23.0)
- '@vue/babel-plugin-jsx': 1.1.5(@babel/core@7.23.0)
- vite: 4.5.0(@types/node@20.8.10)
- vue: 3.4.8(typescript@5.3.3)
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@vitejs/plugin-vue-jsx@3.1.0(vite@4.5.0)(vue@3.4.8):
+ /@vitejs/plugin-vue-jsx@3.1.0(vite@4.5.1)(vue@3.4.14):
resolution: {integrity: sha512-w9M6F3LSEU5kszVb9An2/MmXNxocAnUb3WhRr8bHlimhDrXNt6n6D2nJQR3UXpGlZHh/EsgouOHCsM8V3Ln+WA==}
engines: {node: ^14.18.0 || >=16.0.0}
peerDependencies:
@@ -4733,43 +4784,48 @@ packages:
'@babel/core': 7.23.5
'@babel/plugin-transform-typescript': 7.23.5(@babel/core@7.23.5)
'@vue/babel-plugin-jsx': 1.1.5(@babel/core@7.23.5)
- vite: 4.5.0(@types/node@20.10.1)
- vue: 3.4.8(typescript@5.3.3)
+ vite: 4.5.1(@types/node@20.10.1)
+ vue: 3.4.14(typescript@5.3.3)
transitivePeerDependencies:
- supports-color
dev: true
- /@vitejs/plugin-vue@4.3.1(vite@4.5.0)(vue@3.4.8):
- resolution: {integrity: sha512-tUBEtWcF7wFtII7ayNiLNDTCE1X1afySEo+XNVMNkFXaThENyCowIEX095QqbJZGTgoOcSVDJGlnde2NG4jtbQ==}
+ /@vitejs/plugin-vue-jsx@3.1.0(vite@5.0.11)(vue@3.4.14):
+ resolution: {integrity: sha512-w9M6F3LSEU5kszVb9An2/MmXNxocAnUb3WhRr8bHlimhDrXNt6n6D2nJQR3UXpGlZHh/EsgouOHCsM8V3Ln+WA==}
engines: {node: ^14.18.0 || >=16.0.0}
peerDependencies:
- vite: ^4.0.0
- vue: ^3.2.25
+ vite: ^4.0.0 || ^5.0.0
+ vue: ^3.0.0
dependencies:
- vite: 4.5.0(@types/node@20.8.10)
- vue: 3.4.8(typescript@5.3.3)
+ '@babel/core': 7.23.5
+ '@babel/plugin-transform-typescript': 7.23.5(@babel/core@7.23.5)
+ '@vue/babel-plugin-jsx': 1.1.5(@babel/core@7.23.5)
+ vite: 5.0.11(@types/node@20.8.10)
+ vue: 3.4.14(typescript@5.3.3)
+ transitivePeerDependencies:
+ - supports-color
dev: true
- /@vitejs/plugin-vue@4.4.0(vite@4.5.0)(vue@3.4.8):
- resolution: {integrity: sha512-xdguqb+VUwiRpSg+nsc2HtbAUSGak25DXYvpQQi4RVU1Xq1uworyoH/md9Rfd8zMmPR/pSghr309QNcftUVseg==}
- engines: {node: ^14.18.0 || >=16.0.0}
- peerDependencies:
- vite: ^4.0.0
- vue: ^3.2.25
- dependencies:
- vite: 4.5.0(@types/node@20.8.10)
- vue: 3.4.8(typescript@5.3.3)
- dev: true
-
- /@vitejs/plugin-vue@4.5.0(vite@4.5.0)(vue@3.4.8):
+ /@vitejs/plugin-vue@4.5.0(vite@4.5.1)(vue@3.4.14):
resolution: {integrity: sha512-a2WSpP8X8HTEww/U00bU4mX1QpLINNuz/2KMNpLsdu3BzOpak3AGI1CJYBTXcc4SPhaD0eNRUp7IyQK405L5dQ==}
engines: {node: ^14.18.0 || >=16.0.0}
peerDependencies:
vite: ^4.0.0 || ^5.0.0
vue: ^3.2.25
dependencies:
- vite: 4.5.0(@types/node@20.10.1)
- vue: 3.4.8(typescript@5.3.3)
+ vite: 4.5.1(@types/node@20.10.1)
+ vue: 3.4.14(typescript@5.3.3)
+ dev: true
+
+ /@vitejs/plugin-vue@5.0.3(vite@5.0.11)(vue@3.4.14):
+ resolution: {integrity: sha512-b8S5dVS40rgHdDrw+DQi/xOM9ed+kSRZzfm1T74bMmBDCd8XO87NKlFYInzCtwvtWwXZvo1QxE2OSspTATWrbA==}
+ engines: {node: ^18.0.0 || >=20.0.0}
+ peerDependencies:
+ vite: ^5.0.0
+ vue: ^3.2.25
+ dependencies:
+ vite: 5.0.11(@types/node@20.8.10)
+ vue: 3.4.14(typescript@5.3.3)
dev: true
/@vitest/expect@0.33.0:
@@ -4890,7 +4946,7 @@ packages:
path-browserify: 1.0.1
dev: true
- /@vue-macros/common@1.9.0(rollup@3.29.3)(vue@3.4.8):
+ /@vue-macros/common@1.9.0(rollup@3.29.4)(vue@3.4.14):
resolution: {integrity: sha512-LbfRHDkceuokkLlVuQW9Wq3ZLmRs6KIDPzCjUvvL14HB4GslWdtvBB1suFfNs6VMvh9Zj30cEKF/EAP7QBCZ6Q==}
engines: {node: '>=16.14.0'}
peerDependencies:
@@ -4900,12 +4956,12 @@ packages:
optional: true
dependencies:
'@babel/types': 7.23.6
- '@rollup/pluginutils': 5.1.0(rollup@3.29.3)
- '@vue/compiler-sfc': 3.3.9
- ast-kit: 0.11.2(rollup@3.29.3)
+ '@rollup/pluginutils': 5.1.0(rollup@3.29.4)
+ '@vue/compiler-sfc': 3.4.8
+ ast-kit: 0.11.2(rollup@3.29.4)
local-pkg: 0.5.0
magic-string-ast: 0.3.0
- vue: 3.4.8(typescript@5.3.3)
+ vue: 3.4.14(typescript@5.3.3)
transitivePeerDependencies:
- rollup
dev: true
@@ -4914,25 +4970,6 @@ packages:
resolution: {integrity: sha512-SgUymFpMoAyWeYWLAY+MkCK3QEROsiUnfaw5zxOVD/M64KQs8D/4oK6Q5omVA2hnvEOE0SCkH2TZxs/jnnUj7w==}
dev: true
- /@vue/babel-plugin-jsx@1.1.5(@babel/core@7.23.0):
- resolution: {integrity: sha512-nKs1/Bg9U1n3qSWnsHhCVQtAzI6aQXqua8j/bZrau8ywT1ilXQbK4FwEJGmU8fV7tcpuFvWmmN7TMmV1OBma1g==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.0
- '@babel/helper-module-imports': 7.22.15
- '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.23.0)
- '@babel/template': 7.22.15
- '@babel/traverse': 7.23.0
- '@babel/types': 7.23.6
- '@vue/babel-helper-vue-transform-on': 1.1.5
- camelcase: 6.3.0
- html-tags: 3.3.1
- svg-tags: 1.0.0
- transitivePeerDependencies:
- - supports-color
- dev: true
-
/@vue/babel-plugin-jsx@1.1.5(@babel/core@7.23.5):
resolution: {integrity: sha512-nKs1/Bg9U1n3qSWnsHhCVQtAzI6aQXqua8j/bZrau8ywT1ilXQbK4FwEJGmU8fV7tcpuFvWmmN7TMmV1OBma1g==}
peerDependencies:
@@ -4959,25 +4996,16 @@ packages:
'@vue/shared': 3.3.7
estree-walker: 2.0.2
source-map-js: 1.0.2
+ dev: false
- /@vue/compiler-core@3.3.9:
- resolution: {integrity: sha512-+/Lf68Vr/nFBA6ol4xOtJrW+BQWv3QWKfRwGSm70jtXwfhZNF4R/eRgyVJYoxFRhdCTk/F6g99BP0ffPgZihfQ==}
+ /@vue/compiler-core@3.4.14:
+ resolution: {integrity: sha512-ro4Zzl/MPdWs7XwxT7omHRxAjMbDFRZEEjD+2m3NBf8YzAe3HuoSEZosXQo+m1GQ1G3LQ1LdmNh1RKTYe+ssEg==}
dependencies:
'@babel/parser': 7.23.6
- '@vue/shared': 3.3.9
- estree-walker: 2.0.2
- source-map-js: 1.0.2
- dev: true
-
- /@vue/compiler-core@3.4.5:
- resolution: {integrity: sha512-Daka7P1z2AgKjzuueWXhwzIsKu0NkLB6vGbNVEV2iJ8GJTrzraZo/Sk4GWCMRtd/qVi3zwnk+Owbd/xSZbwHtQ==}
- dependencies:
- '@babel/parser': 7.23.6
- '@vue/shared': 3.4.5
+ '@vue/shared': 3.4.14
entities: 4.5.0
estree-walker: 2.0.2
source-map-js: 1.0.2
- dev: true
/@vue/compiler-core@3.4.8:
resolution: {integrity: sha512-GjAwOydZV6UyVBi1lYW5v4jjfU6wOeyi3vBATKJOwV7muYF0/nZi4kfdJc0pwdT5lXwbbx57lyA2Y356rFpw1A==}
@@ -4987,32 +5015,27 @@ packages:
entities: 4.5.0
estree-walker: 2.0.2
source-map-js: 1.0.2
+ dev: true
/@vue/compiler-dom@3.3.7:
resolution: {integrity: sha512-0LwkyJjnUPssXv/d1vNJ0PKfBlDoQs7n81CbO6Q0zdL7H1EzqYRrTVXDqdBVqro0aJjo/FOa1qBAPVI4PGSHBw==}
dependencies:
'@vue/compiler-core': 3.3.7
'@vue/shared': 3.3.7
+ dev: false
- /@vue/compiler-dom@3.3.9:
- resolution: {integrity: sha512-nfWubTtLXuT4iBeDSZ5J3m218MjOy42Vp2pmKVuBKo2/BLcrFUX8nCSr/bKRFiJ32R8qbdnnnBgRn9AdU5v0Sg==}
+ /@vue/compiler-dom@3.4.14:
+ resolution: {integrity: sha512-nOZTY+veWNa0DKAceNWxorAbWm0INHdQq7cejFaWM1WYnoNSJbSEKYtE7Ir6lR/+mo9fttZpPVI9ZFGJ1juUEQ==}
dependencies:
- '@vue/compiler-core': 3.3.9
- '@vue/shared': 3.3.9
- dev: true
-
- /@vue/compiler-dom@3.4.5:
- resolution: {integrity: sha512-J8YlxknJVd90SXFJ4HwGANSAXsx5I0lK30sO/zvYV7s5gXf7gZR7r/1BmZ2ju7RGH1lnc6bpBc6nL61yW+PsAQ==}
- dependencies:
- '@vue/compiler-core': 3.4.5
- '@vue/shared': 3.4.5
- dev: true
+ '@vue/compiler-core': 3.4.14
+ '@vue/shared': 3.4.14
/@vue/compiler-dom@3.4.8:
resolution: {integrity: sha512-GsPyji42zmkSJlaDFKXvwB97ukTlHzlFH/iVzPFYz/APnSzuhu/CMFQbsYmrtsnc2yscF39eC4rKzvKR27aBug==}
dependencies:
'@vue/compiler-core': 3.4.8
'@vue/shared': 3.4.8
+ dev: true
/@vue/compiler-sfc@3.3.7:
resolution: {integrity: sha512-7pfldWy/J75U/ZyYIXRVqvLRw3vmfxDo2YLMwVtWVNew8Sm8d6wodM+OYFq4ll/UxfqVr0XKiVwti32PCrruAw==}
@@ -5029,20 +5052,18 @@ packages:
source-map-js: 1.0.2
dev: false
- /@vue/compiler-sfc@3.3.9:
- resolution: {integrity: sha512-wy0CNc8z4ihoDzjASCOCsQuzW0A/HP27+0MDSSICMjVIFzk/rFViezkR3dzH+miS2NDEz8ywMdbjO5ylhOLI2A==}
+ /@vue/compiler-sfc@3.4.14:
+ resolution: {integrity: sha512-1vHc9Kv1jV+YBZC/RJxQJ9JCxildTI+qrhtDh6tPkR1O8S+olBUekimY0km0ZNn8nG1wjtFAe9XHij+YLR8cRQ==}
dependencies:
'@babel/parser': 7.23.6
- '@vue/compiler-core': 3.3.9
- '@vue/compiler-dom': 3.3.9
- '@vue/compiler-ssr': 3.3.9
- '@vue/reactivity-transform': 3.3.9
- '@vue/shared': 3.3.9
+ '@vue/compiler-core': 3.4.14
+ '@vue/compiler-dom': 3.4.14
+ '@vue/compiler-ssr': 3.4.14
+ '@vue/shared': 3.4.14
estree-walker: 2.0.2
magic-string: 0.30.5
postcss: 8.4.33
source-map-js: 1.0.2
- dev: true
/@vue/compiler-sfc@3.4.8:
resolution: {integrity: sha512-3ZcurOa6bQdZ6VZLtMqYSUZqpsMqfX0MC3oCxQG0VIJFCqouZAgRYJN1c8QvGs7HW5wW8aXVvUOQU0ILVlYHKA==}
@@ -5056,6 +5077,7 @@ packages:
magic-string: 0.30.5
postcss: 8.4.33
source-map-js: 1.0.2
+ dev: true
/@vue/compiler-ssr@3.3.7:
resolution: {integrity: sha512-TxOfNVVeH3zgBc82kcUv+emNHo+vKnlRrkv8YvQU5+Y5LJGJwSNzcmLUoxD/dNzv0bhQ/F0s+InlgV0NrApJZg==}
@@ -5064,18 +5086,18 @@ packages:
'@vue/shared': 3.3.7
dev: false
- /@vue/compiler-ssr@3.3.9:
- resolution: {integrity: sha512-NO5oobAw78R0G4SODY5A502MGnDNiDjf6qvhn7zD7TJGc8XDeIEw4fg6JU705jZ/YhuokBKz0A5a/FL/XZU73g==}
+ /@vue/compiler-ssr@3.4.14:
+ resolution: {integrity: sha512-bXT6+oAGlFjTYVOTtFJ4l4Jab1wjsC0cfSfOe2B4Z0N2vD2zOBSQ9w694RsCfhjk+bC2DY5Gubb1rHZVii107Q==}
dependencies:
- '@vue/compiler-dom': 3.3.9
- '@vue/shared': 3.3.9
- dev: true
+ '@vue/compiler-dom': 3.4.14
+ '@vue/shared': 3.4.14
/@vue/compiler-ssr@3.4.8:
resolution: {integrity: sha512-nxN79LHeAemhBpIa2PQ6rz57cW7W4C/XIJCOMSn2g49u6q2ekirmJI0osAOTErQPApOR0KwP2QyeTexX4zQCrw==}
dependencies:
'@vue/compiler-dom': 3.4.8
'@vue/shared': 3.4.8
+ dev: true
/@vue/devtools-api@6.5.1:
resolution: {integrity: sha512-+KpckaAQyfbvshdDW5xQylLni1asvNSGme1JFs8I1+/H5pHEhqUKMEQD/qn3Nx5+/nycBq11qAEi8lk+LXI2dA==}
@@ -5090,8 +5112,8 @@ packages:
dependencies:
'@volar/language-core': 1.11.1
'@volar/source-map': 1.11.1
- '@vue/compiler-dom': 3.4.5
- '@vue/shared': 3.4.5
+ '@vue/compiler-dom': 3.4.14
+ '@vue/shared': 3.4.8
computeds: 0.0.1
minimatch: 9.0.3
muggle-string: 0.3.1
@@ -5110,56 +5132,47 @@ packages:
magic-string: 0.30.5
dev: false
- /@vue/reactivity-transform@3.3.9:
- resolution: {integrity: sha512-HnUFm7Ry6dFa4Lp63DAxTixUp8opMtQr6RxQCpDI1vlh12rkGIeYqMvJtK+IKyEfEOa2I9oCkD1mmsPdaGpdVg==}
+ /@vue/reactivity@3.4.14:
+ resolution: {integrity: sha512-xRYwze5Q4tK7tT2J4uy4XLhK/AIXdU5EBUu9PLnIHcOKXO0uyXpNNMzlQKuq7B+zwtq6K2wuUL39pHA6ZQzObw==}
dependencies:
- '@babel/parser': 7.23.6
- '@vue/compiler-core': 3.3.9
- '@vue/shared': 3.3.9
- estree-walker: 2.0.2
- magic-string: 0.30.5
- dev: true
+ '@vue/shared': 3.4.14
- /@vue/reactivity@3.4.8:
- resolution: {integrity: sha512-UJYMQ3S2rqIGw9IvKomD4Xw2uS5VlcKEEmwcfboGOdrI79oqebxnCgTvXWLMClvg3M5SF0Cyn+9eDQoyGMLu9Q==}
+ /@vue/runtime-core@3.4.14:
+ resolution: {integrity: sha512-qu+NMkfujCoZL6cfqK5NOfxgXJROSlP2ZPs4CTcVR+mLrwl4TtycF5Tgo0QupkdBL+2kigc6EsJlTcuuZC1NaQ==}
dependencies:
- '@vue/shared': 3.4.8
+ '@vue/reactivity': 3.4.14
+ '@vue/shared': 3.4.14
- /@vue/runtime-core@3.4.8:
- resolution: {integrity: sha512-sMRXOy89KnwY6fWG5epgPOsCWzpo/64FrA0QkjIeNeGnoA2YyZ6bBUxpFUyqhJ8VbrDhXEFH+6LHMOYrpzX/ZQ==}
+ /@vue/runtime-dom@3.4.14:
+ resolution: {integrity: sha512-B85XmcR4E7XsirEHVqhmy4HPbRT9WLFWV9Uhie3OapV9m1MEN9+Er6hmUIE6d8/l2sUygpK9RstFM2bmHEUigA==}
dependencies:
- '@vue/reactivity': 3.4.8
- '@vue/shared': 3.4.8
-
- /@vue/runtime-dom@3.4.8:
- resolution: {integrity: sha512-L4gZcYo8f3d7rQqQIHkPvyczkjjQ55cJqz2G0v6Ptmqa1mO2zkqN9F8lBT6aGPYy3hd0RDiINbs4jxhSvvy10Q==}
- dependencies:
- '@vue/runtime-core': 3.4.8
- '@vue/shared': 3.4.8
+ '@vue/runtime-core': 3.4.14
+ '@vue/shared': 3.4.14
csstype: 3.1.3
- /@vue/server-renderer@3.4.8(vue@3.4.8):
- resolution: {integrity: sha512-pBeHM59Owevr3P0Fl1XOjBmq4DTy5JDcjMG4NuzJEVDlZYzY8fHybx0wdjkY5lK5mCtUyBtw6Mz4d87aosc1Sw==}
+ /@vue/server-renderer@3.4.14(vue@3.4.14):
+ resolution: {integrity: sha512-pwSKXQfYdJBTpvWHGEYI+akDE18TXAiLcGn+Q/2Fj8wQSHWztoo7PSvfMNqu6NDhp309QXXbPFEGCU5p85HqkA==}
peerDependencies:
- vue: 3.4.8
+ vue: 3.4.14
dependencies:
- '@vue/compiler-ssr': 3.4.8
- '@vue/shared': 3.4.8
- vue: 3.4.8(typescript@5.2.2)
+ '@vue/compiler-ssr': 3.4.14
+ '@vue/shared': 3.4.14
+ vue: 3.4.14(typescript@5.2.2)
/@vue/shared@3.3.7:
resolution: {integrity: sha512-N/tbkINRUDExgcPTBvxNkvHGu504k8lzlNQRITVnm6YjOjwa4r0nnbd4Jb01sNpur5hAllyRJzSK5PvB9PPwRg==}
+ dev: false
/@vue/shared@3.3.9:
resolution: {integrity: sha512-ZE0VTIR0LmYgeyhurPTpy4KzKsuDyQbMSdM49eKkMnT5X4VfFBLysMzjIZhLEFQYjjOVVfbvUDHckwjDFiO2eA==}
dev: true
- /@vue/shared@3.4.5:
- resolution: {integrity: sha512-6XptuzlMvN4l4cDnDw36pdGEV+9njYkQ1ZE0Q6iZLwrKefKaOJyiFmcP3/KBDHbt72cJZGtllAc1GaHe6XGAyg==}
- dev: true
+ /@vue/shared@3.4.14:
+ resolution: {integrity: sha512-nmi3BtLpvqXAWoRZ6HQ+pFJOHBU4UnH3vD3opgmwXac7vhaHKA9nj1VeGjMggdB9eLtW83eHyPCmOU1qzdsC7Q==}
/@vue/shared@3.4.8:
resolution: {integrity: sha512-ChLCWzXiJboQ009oVkemhEoUdrxHme7v3ip+Kh+/kDDeF1WtHWGt0knRLGm1Y4YqCRTSs9QxsZIY8paJj5Szrw==}
+ dev: true
/@vue/tsconfig@0.5.1:
resolution: {integrity: sha512-VcZK7MvpjuTPx2w6blwnwZAu5/LgBUtejFOi3pPGQFXQN5Ela03FUtd2Qtg4yWGGissVL0dr6Ro1LfOFh+PCuQ==}
@@ -5168,7 +5181,7 @@ packages:
/@vuedx/compiler-sfc@0.7.1:
resolution: {integrity: sha512-M+j3COLqmTFgtsDOJEeeijUFCk7FF8x7vQsdORPPxipZF1S2vPvlcLg1bKVE6NF4wh7Gaq9Wvwv0zPi87pWRVA==}
dependencies:
- '@vue/compiler-core': 3.3.7
+ '@vue/compiler-core': 3.4.14
lru-cache: 6.0.0
source-map: 0.6.1
dev: false
@@ -5176,22 +5189,22 @@ packages:
/@vuedx/template-ast-types@0.7.1:
resolution: {integrity: sha512-Mqugk/F0lFN2u9bhimH6G1kSu2hhLi2WoqgCVxrMvgxm2kDc30DtdvVGRq+UgEmKVP61OudcMtZqkUoGQeFBUQ==}
dependencies:
- '@vue/compiler-core': 3.3.7
+ '@vue/compiler-core': 3.4.14
dev: false
- /@vueuse/core@10.5.0(vue@3.4.8):
- resolution: {integrity: sha512-z/tI2eSvxwLRjOhDm0h/SXAjNm8N5ld6/SC/JQs6o6kpJ6Ya50LnEL8g5hoYu005i28L0zqB5L5yAl8Jl26K3A==}
+ /@vueuse/core@10.7.2(vue@3.4.14):
+ resolution: {integrity: sha512-AOyAL2rK0By62Hm+iqQn6Rbu8bfmbgaIMXcE3TSr7BdQ42wnSFlwIdPjInO62onYsEMK/yDMU8C6oGfDAtZ2qQ==}
dependencies:
- '@types/web-bluetooth': 0.0.18
- '@vueuse/metadata': 10.5.0
- '@vueuse/shared': 10.5.0(vue@3.4.8)
- vue-demi: 0.14.6(vue@3.4.8)
+ '@types/web-bluetooth': 0.0.20
+ '@vueuse/metadata': 10.7.2
+ '@vueuse/shared': 10.7.2(vue@3.4.14)
+ vue-demi: 0.14.6(vue@3.4.14)
transitivePeerDependencies:
- '@vue/composition-api'
- vue
- /@vueuse/integrations@10.5.0(focus-trap@7.5.4)(vue@3.4.8):
- resolution: {integrity: sha512-fm5sXLCK0Ww3rRnzqnCQRmfjDURaI4xMsx+T+cec0ngQqHx/JgUtm8G0vRjwtonIeTBsH1Q8L3SucE+7K7upJQ==}
+ /@vueuse/integrations@10.7.2(focus-trap@7.5.4)(vue@3.4.14):
+ resolution: {integrity: sha512-+u3RLPFedjASs5EKPc69Ge49WNgqeMfSxFn+qrQTzblPXZg6+EFzhjarS5edj2qAf6xQ93f95TUxRwKStXj/sQ==}
peerDependencies:
async-validator: '*'
axios: '*'
@@ -5231,22 +5244,22 @@ packages:
universal-cookie:
optional: true
dependencies:
- '@vueuse/core': 10.5.0(vue@3.4.8)
- '@vueuse/shared': 10.5.0(vue@3.4.8)
+ '@vueuse/core': 10.7.2(vue@3.4.14)
+ '@vueuse/shared': 10.7.2(vue@3.4.14)
focus-trap: 7.5.4
- vue-demi: 0.14.6(vue@3.4.8)
+ vue-demi: 0.14.6(vue@3.4.14)
transitivePeerDependencies:
- '@vue/composition-api'
- vue
dev: true
- /@vueuse/metadata@10.5.0:
- resolution: {integrity: sha512-fEbElR+MaIYyCkeM0SzWkdoMtOpIwO72x8WsZHRE7IggiOlILttqttM69AS13nrDxosnDBYdyy3C5mR1LCxHsw==}
+ /@vueuse/metadata@10.7.2:
+ resolution: {integrity: sha512-kCWPb4J2KGrwLtn1eJwaJD742u1k5h6v/St5wFe8Quih90+k2a0JP8BS4Zp34XUuJqS2AxFYMb1wjUL8HfhWsQ==}
- /@vueuse/shared@10.5.0(vue@3.4.8):
- resolution: {integrity: sha512-18iyxbbHYLst9MqU1X1QNdMHIjks6wC7XTVf0KNOv5es/Ms6gjVFCAAWTVP2JStuGqydg3DT+ExpFORUEi9yhg==}
+ /@vueuse/shared@10.7.2(vue@3.4.14):
+ resolution: {integrity: sha512-qFbXoxS44pi2FkgFjPvF4h7c9oMDutpyBdcJdMYIMg9XyXli2meFMuaKn+UMgsClo//Th6+beeCgqweT/79BVA==}
dependencies:
- vue-demi: 0.14.6(vue@3.4.8)
+ vue-demi: 0.14.6(vue@3.4.14)
transitivePeerDependencies:
- '@vue/composition-api'
- vue
@@ -5425,10 +5438,6 @@ packages:
resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==}
engines: {node: '>=12'}
- /ansi-sequence-parser@1.1.1:
- resolution: {integrity: sha512-vJXt3yiaUL4UU546s3rPXlsry/RnM730G1+HkpKE012AN0sx1eOrxSu95oKDIonskeLTijMgqWZ3uDEe3NFvyg==}
- dev: true
-
/ansi-styles@3.2.1:
resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==}
engines: {node: '>=4'}
@@ -5555,23 +5564,23 @@ packages:
resolution: {integrity: sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==}
dev: true
- /ast-kit@0.11.2(rollup@3.29.3):
+ /ast-kit@0.11.2(rollup@3.29.4):
resolution: {integrity: sha512-Q0DjXK4ApbVoIf9GLyCo252tUH44iTnD/hiJ2TQaJeydYWSpKk0sI34+WMel8S9Wt5pbLgG02oJ+gkgX5DV3sQ==}
engines: {node: '>=16.14.0'}
dependencies:
'@babel/parser': 7.23.6
- '@rollup/pluginutils': 5.1.0(rollup@3.29.3)
+ '@rollup/pluginutils': 5.1.0(rollup@3.29.4)
pathe: 1.1.2
transitivePeerDependencies:
- rollup
dev: true
- /ast-kit@0.9.5(rollup@3.29.3):
+ /ast-kit@0.9.5(rollup@3.29.4):
resolution: {integrity: sha512-kbL7ERlqjXubdDd+szuwdlQ1xUxEz9mCz1+m07ftNVStgwRb2RWw+U6oKo08PAvOishMxiqz1mlJyLl8yQx2Qg==}
engines: {node: '>=16.14.0'}
dependencies:
'@babel/parser': 7.23.6
- '@rollup/pluginutils': 5.0.4(rollup@3.29.3)
+ '@rollup/pluginutils': 5.0.4(rollup@3.29.4)
pathe: 1.1.2
transitivePeerDependencies:
- rollup
@@ -5584,12 +5593,12 @@ packages:
tslib: 2.6.2
dev: false
- /ast-walker-scope@0.5.0(rollup@3.29.3):
+ /ast-walker-scope@0.5.0(rollup@3.29.4):
resolution: {integrity: sha512-NsyHMxBh4dmdEHjBo1/TBZvCKxffmZxRYhmclfu0PP6Aftre47jOHYaYaNqJcV0bxihxFXhDkzLHUwHc0ocd0Q==}
engines: {node: '>=16.14.0'}
dependencies:
'@babel/parser': 7.23.6
- ast-kit: 0.9.5(rollup@3.29.3)
+ ast-kit: 0.9.5(rollup@3.29.4)
transitivePeerDependencies:
- rollup
dev: true
@@ -5840,7 +5849,7 @@ packages:
defu: 6.1.2
dotenv: 16.3.1
giget: 1.1.2
- jiti: 1.20.0
+ jiti: 1.21.0
mlly: 1.4.2
ohash: 1.1.3
pathe: 1.1.2
@@ -6213,6 +6222,11 @@ packages:
engines: {node: '>=6'}
dev: false
+ /clsx@2.1.0:
+ resolution: {integrity: sha512-m3iNNWpd9rl3jvvcBnu70ylMdrXt8Vlq4HYadnU5fwcOtvkSQWPmj7amUcDT2qYI7risszBjI5AUIUox9D16pg==}
+ engines: {node: '>=6'}
+ dev: false
+
/cluster-key-slot@1.1.2:
resolution: {integrity: sha512-RMr0FhtfXemyinomL4hrWcYJxmX6deFdCxpJzhDttxgO1+bcCnkk+9drydLVDmAMG7NE6aN/fl4F7ucU/90gAA==}
engines: {node: '>=0.10.0'}
@@ -6343,7 +6357,7 @@ packages:
dev: true
/concat-map@0.0.1:
- resolution: {integrity: sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=}
+ resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
/concat-stream@1.6.2:
resolution: {integrity: sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==}
@@ -6625,10 +6639,6 @@ packages:
css-tree: 2.2.1
dev: true
- /csstype@3.1.2:
- resolution: {integrity: sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==}
- dev: false
-
/csstype@3.1.3:
resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==}
@@ -7152,7 +7162,7 @@ packages:
dependencies:
'@babel/core': 7.23.0
'@babel/preset-typescript': 7.23.2(@babel/core@7.23.0)
- '@vue/compiler-dom': 3.3.7
+ '@vue/compiler-dom': 3.4.14
'@vue/compiler-sfc': 3.3.7
'@vuedx/compiler-sfc': 0.7.1
'@vuedx/template-ast-types': 0.7.1
@@ -7321,14 +7331,14 @@ packages:
embla-carousel: 8.0.0-rc19
dev: false
- /embla-carousel-vue@8.0.0-rc19(vue@3.4.8):
+ /embla-carousel-vue@8.0.0-rc19(vue@3.4.14):
resolution: {integrity: sha512-dqkmatB7/WNXHEwFGtQNpYT8TWnE6KRcVBfnPTswBba8I33RdBRuj0CqRHem02dlIS1ySgS9sBVVdDXe+6IGKQ==}
peerDependencies:
vue: ^3.2.37
dependencies:
embla-carousel: 8.0.0-rc19
embla-carousel-reactive-utils: 8.0.0-rc19(embla-carousel@8.0.0-rc19)
- vue: 3.4.8(typescript@5.3.3)
+ vue: 3.4.14(typescript@5.3.3)
dev: false
/embla-carousel@8.0.0-rc19:
@@ -8716,7 +8726,7 @@ packages:
dependencies:
array-union: 2.1.0
dir-glob: 3.0.1
- fast-glob: 3.3.1
+ fast-glob: 3.3.2
ignore: 5.2.4
merge2: 1.4.1
slash: 3.0.0
@@ -9477,10 +9487,6 @@ packages:
optionalDependencies:
'@pkgjs/parseargs': 0.11.0
- /jiti@1.20.0:
- resolution: {integrity: sha512-3TV69ZbrvV6U5DfQimop50jE9Dl6J8O1ja1dvBbMba/sZ3YBEQqJ2VZRoQPVnhlzjNtU1vaXRZVrVjU4qtm8yA==}
- hasBin: true
-
/jiti@1.21.0:
resolution: {integrity: sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==}
hasBin: true
@@ -9898,12 +9904,12 @@ packages:
engines: {node: '>=12'}
dev: true
- /lucide-vue-next@0.276.0(vue@3.4.8):
+ /lucide-vue-next@0.276.0(vue@3.4.14):
resolution: {integrity: sha512-yQmIaTbVjG2TMwFQr98Biva99I+eDcMh0wPepJsDajk2d2lio9VGBsKhIUtAUPYwqnsvVg2+dSYsyvX21BJ5yw==}
peerDependencies:
vue: '>=3.0.1'
dependencies:
- vue: 3.4.8(typescript@5.3.3)
+ vue: 3.4.14(typescript@5.3.3)
dev: false
/lz-string@1.5.0:
@@ -10264,8 +10270,8 @@ packages:
resolution: {integrity: sha512-LhbbwCfz3vsb12j/WkWQPZfKTsgqIe1Nf/ti1pKjYESGLHIVjWU96G9/ljLH4F9mWNVhlQOm0VySdAWzf05dpg==}
engines: {node: '>=16 || 14 >=14.17'}
- /minisearch@6.1.0:
- resolution: {integrity: sha512-PNxA/X8pWk+TiqPbsoIYH0GQ5Di7m6326/lwU/S4mlo4wGQddIcf/V//1f9TB0V4j59b57b+HZxt8h3iMROGvg==}
+ /minisearch@6.3.0:
+ resolution: {integrity: sha512-ihFnidEeU8iXzcVHy74dhkxh/dn8Dc08ERl0xwoMMGqp4+LvRSCgicb+zGqWthVokQKvCSxITlh3P08OzdTYCQ==}
dev: true
/minizlib@2.1.2:
@@ -10340,7 +10346,7 @@ packages:
citty: 0.1.5
cssnano: 6.0.1(postcss@8.4.33)
defu: 6.1.3
- esbuild: 0.19.8
+ esbuild: 0.19.11
fs-extra: 11.1.1
globby: 13.2.2
jiti: 1.21.0
@@ -10416,6 +10422,7 @@ packages:
resolution: {integrity: sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==}
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
hasBin: true
+ dev: false
/nanoid@3.3.7:
resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==}
@@ -10810,7 +10817,7 @@ packages:
fsevents: 2.3.3
dev: true
- /nuxt@3.8.2(@types/node@20.10.1)(eslint@8.56.0)(rollup@3.29.3)(typescript@5.3.3)(vite@4.5.1):
+ /nuxt@3.8.2(@types/node@20.10.1)(eslint@8.56.0)(rollup@3.29.4)(typescript@5.3.3)(vite@4.5.1):
resolution: {integrity: sha512-HUAyifmqTs2zcQBGvcby3KNs2pBAk+l7ZbLjD1oCNqQQ+wBuZ1qgLC4Ebu++y4g3o3Y8WAWSvpafbKRLQZziPw==}
engines: {node: ^14.18.0 || >=16.10.0}
hasBin: true
@@ -10824,16 +10831,16 @@ packages:
optional: true
dependencies:
'@nuxt/devalue': 2.0.2
- '@nuxt/devtools': 1.0.4(nuxt@3.8.2)(rollup@3.29.3)(vite@4.5.1)
- '@nuxt/kit': 3.8.2(rollup@3.29.3)
- '@nuxt/schema': 3.8.2(rollup@3.29.3)
- '@nuxt/telemetry': 2.5.3(rollup@3.29.3)
+ '@nuxt/devtools': 1.0.4(nuxt@3.8.2)(rollup@3.29.4)(vite@4.5.1)
+ '@nuxt/kit': 3.8.2(rollup@3.29.4)
+ '@nuxt/schema': 3.8.2(rollup@3.29.4)
+ '@nuxt/telemetry': 2.5.3(rollup@3.29.4)
'@nuxt/ui-templates': 1.3.1
- '@nuxt/vite-builder': 3.8.2(@types/node@20.10.1)(eslint@8.56.0)(rollup@3.29.3)(typescript@5.3.3)(vue@3.4.8)
+ '@nuxt/vite-builder': 3.8.2(@types/node@20.10.1)(eslint@8.56.0)(rollup@3.29.4)(typescript@5.3.3)(vue@3.4.14)
'@types/node': 20.10.1
'@unhead/dom': 1.8.8
'@unhead/ssr': 1.8.8
- '@unhead/vue': 1.8.8(vue@3.4.8)
+ '@unhead/vue': 1.8.8(vue@3.4.14)
'@vue/shared': 3.3.9
acorn: 8.11.2
c12: 1.5.1
@@ -10871,14 +10878,14 @@ packages:
uncrypto: 0.1.3
unctx: 2.3.1
unenv: 1.8.0
- unimport: 3.6.0(rollup@3.29.3)
+ unimport: 3.6.0(rollup@3.29.4)
unplugin: 1.5.1
- unplugin-vue-router: 0.7.0(rollup@3.29.3)(vue-router@4.2.5)(vue@3.4.8)
+ unplugin-vue-router: 0.7.0(rollup@3.29.4)(vue-router@4.2.5)(vue@3.4.14)
untyped: 1.4.0
- vue: 3.4.8(typescript@5.3.3)
+ vue: 3.4.14(typescript@5.3.3)
vue-bundle-renderer: 2.0.0
vue-devtools-stub: 0.1.0
- vue-router: 4.2.5(vue@3.4.8)
+ vue-router: 4.2.5(vue@3.4.14)
transitivePeerDependencies:
- '@azure/app-configuration'
- '@azure/cosmos'
@@ -11773,9 +11780,10 @@ packages:
resolution: {integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==}
engines: {node: ^10 || ^12 || >=14}
dependencies:
- nanoid: 3.3.6
+ nanoid: 3.3.7
picocolors: 1.0.0
source-map-js: 1.0.2
+ dev: false
/postcss@8.4.33:
resolution: {integrity: sha512-Kkpbhhdjw2qQs2O2DGX+8m5OVqEcbB9HRBvuYM9pgrjEFUg30A9LmXNlTAUj4S9kgtGyrMbTzVjH7E+s5Re2yg==}
@@ -11935,11 +11943,22 @@ packages:
resolution: {integrity: sha512-RKJ22hX8mHe3Y6wH/N3wCM6BWtjaxIyyUIkpHOvfFnxdI4yD4tBXEBKSbriGujF6jnSVkJrffuo6vxACiSSxIw==}
dev: false
- /radix-vue@1.3.0(vue@3.4.8):
+ /radix-vue@1.3.0(vue@3.4.14):
resolution: {integrity: sha512-czCi649V1Xv/j3Sv8DZY1eSE+QY7acS7zfycBqbsj5vAuAj2DFDaN5nCnyIQW7/bz45KOaCWMTZcFJ0yzxtgFg==}
dependencies:
'@floating-ui/dom': 1.5.3
- '@floating-ui/vue': 1.0.2(vue@3.4.8)
+ '@floating-ui/vue': 1.0.2(vue@3.4.14)
+ fast-deep-equal: 3.1.3
+ transitivePeerDependencies:
+ - '@vue/composition-api'
+ - vue
+ dev: false
+
+ /radix-vue@1.3.2(vue@3.4.14):
+ resolution: {integrity: sha512-XhY1Cs6AvRgb1DvTisrY4XfX4aLWj9S1u/u/NCqOjfEHYaJsZ61Fbo66xB5EC22TV258Eu4njYI2CBpwV0dVxg==}
+ dependencies:
+ '@floating-ui/dom': 1.5.3
+ '@floating-ui/vue': 1.0.2(vue@3.4.14)
fast-deep-equal: 3.1.3
transitivePeerDependencies:
- '@vue/composition-api'
@@ -12238,7 +12257,7 @@ packages:
resolution: {integrity: sha512-IXgzBWvWQwE6PrDI05OvmXUIruQTcoMDzRsOd5CDvHCVLcLHMTSYvOK5Cm46kWqlV3yAbuSpBZdJ5oP5OUoStg==}
dev: false
- /rollup-plugin-dts@6.1.0(rollup@3.29.3)(typescript@5.3.3):
+ /rollup-plugin-dts@6.1.0(rollup@3.29.4)(typescript@5.3.3):
resolution: {integrity: sha512-ijSCPICkRMDKDLBK9torss07+8dl9UpY9z1N/zTeA1cIqdzMlpkV3MOOC7zukyvQfDyxa1s3Dl2+DeiP/G6DOw==}
engines: {node: '>=16'}
peerDependencies:
@@ -12246,13 +12265,13 @@ packages:
typescript: ^4.5 || ^5.0
dependencies:
magic-string: 0.30.5
- rollup: 3.29.3
+ rollup: 3.29.4
typescript: 5.3.3
optionalDependencies:
'@babel/code-frame': 7.23.5
dev: true
- /rollup-plugin-visualizer@5.9.3(rollup@3.29.3):
+ /rollup-plugin-visualizer@5.9.3(rollup@3.29.4):
resolution: {integrity: sha512-ieGM5UAbMVqThX67GCuFHu/GkaSXIUZwFKJsSzE+7+k9fibU/6gbUz7SL+9BBzNtv5bIFHj7kEu0TWcqEnT/sQ==}
engines: {node: '>=14'}
hasBin: true
@@ -12264,7 +12283,7 @@ packages:
dependencies:
open: 8.4.2
picomatch: 2.3.1
- rollup: 3.29.3
+ rollup: 3.29.4
source-map: 0.7.4
yargs: 17.7.2
dev: true
@@ -12292,6 +12311,7 @@ packages:
hasBin: true
optionalDependencies:
fsevents: 2.3.3
+ dev: true
/rollup@3.29.4:
resolution: {integrity: sha512-oWzmBZwvYrU0iJHtDmhsm662rC15FRXmcjCk1xD771dFDx5jJ02ufAQQTn0etB2emNk4J9EZg/yWKpsn9BWGRw==}
@@ -12299,7 +12319,6 @@ packages:
hasBin: true
optionalDependencies:
fsevents: 2.3.3
- dev: true
/rollup@4.6.1:
resolution: {integrity: sha512-jZHaZotEHQaHLgKr8JnQiDT1rmatjgKlMekyksz+yk9jt/8z9quNjnKNRoaM0wd9DC2QKXjmWWuDYtM3jfF8pQ==}
@@ -12479,13 +12498,30 @@ packages:
resolution: {integrity: sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==}
dev: true
- /shiki@0.14.5:
- resolution: {integrity: sha512-1gCAYOcmCFONmErGTrS1fjzJLA7MGZmKzrBNX7apqSwhyITJg2O102uFzXUeBxNnEkDA9vHIKLyeKq0V083vIw==}
+ /shikiji-core@0.10.0-beta.2:
+ resolution: {integrity: sha512-ZGBEcf67jikAlCsjnzFmVS9Cy5/6cVA4yU2DSRinTN22q8+Vqaf4Gk4eL6hEbXWzkP60NnikF0Z6F3ANMpVS1A==}
+ dev: true
+
+ /shikiji-core@0.9.19:
+ resolution: {integrity: sha512-AFJu/vcNT21t0e6YrfadZ+9q86gvPum6iywRyt1OtIPjPFe25RQnYJyxHQPMLKCCWA992TPxmEmbNcOZCAJclw==}
+ dev: true
+
+ /shikiji-transformers@0.9.19:
+ resolution: {integrity: sha512-lGLI7Z8frQrIBbhZ74/eiJtxMoCQRbpaHEB+gcfvdIy+ZFaAtXncJGnc52932/UET+Y4GyKtwwC/vjWUCp+c/Q==}
dependencies:
- ansi-sequence-parser: 1.1.1
- jsonc-parser: 3.2.0
- vscode-oniguruma: 1.7.0
- vscode-textmate: 8.0.0
+ shikiji: 0.9.19
+ dev: true
+
+ /shikiji@0.10.0-beta.2:
+ resolution: {integrity: sha512-tqZIMPoRhBHxNFUKf37jjR4EyffJfNOCmck2sgSke7wPreiNZhfoXWmet/qtsFVmyEHV+uaQkxCUwD+ngeXaBA==}
+ dependencies:
+ shikiji-core: 0.10.0-beta.2
+ dev: true
+
+ /shikiji@0.9.19:
+ resolution: {integrity: sha512-Kw2NHWktdcdypCj1GkKpXH4o6Vxz8B8TykPlPuLHOGSV8VkhoCLcFOH4k19K4LXAQYRQmxg+0X/eM+m2sLhAkg==}
+ dependencies:
+ shikiji-core: 0.9.19
dev: true
/shortid@2.2.16:
@@ -12947,10 +12983,10 @@ packages:
resolution: {integrity: sha512-Cat63mxsVJlzYvN51JmVXIgNoUokrIaT2zLclCXjRd8boZ0004U4KCs/sToJ75C6sdlByWxpYnb5Boif1VSFew==}
dev: true
- /tailwind-merge@2.0.0:
- resolution: {integrity: sha512-WO8qghn9yhsldLSg80au+3/gY9E4hFxIvQ3qOmlpXnqpDKoMruKfi/56BbbMg6fHTQJ9QD3cc79PoWqlaQE4rw==}
+ /tailwind-merge@2.2.0:
+ resolution: {integrity: sha512-SqqhhaL0T06SW59+JVNfAqKdqLs0497esifRrZ7jOaefP3o64fdFNDMrAQWZFMxTLJPiHVjRLUywT8uFz1xNWQ==}
dependencies:
- '@babel/runtime': 7.23.1
+ '@babel/runtime': 7.23.8
dev: true
/tailwindcss-animate@1.0.7(tailwindcss@3.4.1):
@@ -13477,17 +13513,17 @@ packages:
typescript:
optional: true
dependencies:
- '@rollup/plugin-alias': 5.1.0(rollup@3.29.3)
- '@rollup/plugin-commonjs': 25.0.7(rollup@3.29.3)
- '@rollup/plugin-json': 6.0.1(rollup@3.29.3)
- '@rollup/plugin-node-resolve': 15.2.3(rollup@3.29.3)
- '@rollup/plugin-replace': 5.0.5(rollup@3.29.3)
- '@rollup/pluginutils': 5.0.4(rollup@3.29.3)
+ '@rollup/plugin-alias': 5.1.0(rollup@3.29.4)
+ '@rollup/plugin-commonjs': 25.0.7(rollup@3.29.4)
+ '@rollup/plugin-json': 6.0.1(rollup@3.29.4)
+ '@rollup/plugin-node-resolve': 15.2.3(rollup@3.29.4)
+ '@rollup/plugin-replace': 5.0.5(rollup@3.29.4)
+ '@rollup/pluginutils': 5.0.4(rollup@3.29.4)
chalk: 5.3.0
citty: 0.1.5
consola: 3.2.3
defu: 6.1.2
- esbuild: 0.19.8
+ esbuild: 0.19.11
globby: 13.2.2
hookable: 5.5.3
jiti: 1.21.0
@@ -13497,8 +13533,8 @@ packages:
pathe: 1.1.2
pkg-types: 1.0.3
pretty-bytes: 6.1.1
- rollup: 3.29.3
- rollup-plugin-dts: 6.1.0(rollup@3.29.3)(typescript@5.3.3)
+ rollup: 3.29.4
+ rollup-plugin-dts: 6.1.0(rollup@3.29.4)(typescript@5.3.3)
scule: 1.0.0
typescript: 5.3.3
untyped: 1.4.0
@@ -13575,10 +13611,10 @@ packages:
resolution: {integrity: sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==}
engines: {node: '>=18'}
- /unimport@3.4.0(rollup@3.29.3):
+ /unimport@3.4.0(rollup@3.29.4):
resolution: {integrity: sha512-M/lfFEgufIT156QAr/jWHLUn55kEmxBBiQsMxvRSIbquwmeJEyQYgshHDEvQDWlSJrVOOTAgnJ3FvlsrpGkanA==}
dependencies:
- '@rollup/pluginutils': 5.0.4(rollup@3.29.3)
+ '@rollup/pluginutils': 5.0.4(rollup@3.29.4)
escape-string-regexp: 5.0.0
fast-glob: 3.3.2
local-pkg: 0.4.3
@@ -13592,10 +13628,10 @@ packages:
transitivePeerDependencies:
- rollup
- /unimport@3.6.0(rollup@3.29.3):
+ /unimport@3.6.0(rollup@3.29.4):
resolution: {integrity: sha512-yXW3Z30yk1vX8fxO8uHlq9wY9K+L56LHp4Hlbv8i7tW+NENSOv8AaFJUPtOQchxlT7/JBAzCtkrBtcVjKIr1VQ==}
dependencies:
- '@rollup/pluginutils': 5.1.0(rollup@3.29.3)
+ '@rollup/pluginutils': 5.1.0(rollup@3.29.4)
escape-string-regexp: 5.0.0
fast-glob: 3.3.2
local-pkg: 0.5.0
@@ -13708,7 +13744,7 @@ packages:
- supports-color
dev: true
- /unplugin-vue-router@0.7.0(rollup@3.29.3)(vue-router@4.2.5)(vue@3.4.8):
+ /unplugin-vue-router@0.7.0(rollup@3.29.4)(vue-router@4.2.5)(vue@3.4.14):
resolution: {integrity: sha512-ddRreGq0t5vlSB7OMy4e4cfU1w2AwBQCwmvW3oP/0IHQiokzbx4hd3TpwBu3eIAFVuhX2cwNQwp1U32UybTVCw==}
peerDependencies:
vue-router: ^4.1.0
@@ -13717,9 +13753,9 @@ packages:
optional: true
dependencies:
'@babel/types': 7.23.6
- '@rollup/pluginutils': 5.0.4(rollup@3.29.3)
- '@vue-macros/common': 1.9.0(rollup@3.29.3)(vue@3.4.8)
- ast-walker-scope: 0.5.0(rollup@3.29.3)
+ '@rollup/pluginutils': 5.0.4(rollup@3.29.4)
+ '@vue-macros/common': 1.9.0(rollup@3.29.4)(vue@3.4.14)
+ ast-walker-scope: 0.5.0(rollup@3.29.4)
chokidar: 3.5.3
fast-glob: 3.3.2
json5: 2.2.3
@@ -13728,7 +13764,7 @@ packages:
pathe: 1.1.2
scule: 1.1.0
unplugin: 1.5.1
- vue-router: 4.2.5(vue@3.4.8)
+ vue-router: 4.2.5(vue@3.4.14)
yaml: 2.3.2
transitivePeerDependencies:
- rollup
@@ -13919,7 +13955,7 @@ packages:
which-typed-array: 1.1.11
dev: false
- /v-calendar@3.1.2(@popperjs/core@2.11.8)(vue@3.4.8):
+ /v-calendar@3.1.2(@popperjs/core@2.11.8)(vue@3.4.14):
resolution: {integrity: sha512-QDWrnp4PWCpzUblctgo4T558PrHgHzDtQnTeUNzKxfNf29FkCeFpwGd9bKjAqktaa2aJLcyRl45T5ln1ku34kg==}
peerDependencies:
'@popperjs/core': ^2.0.0
@@ -13931,8 +13967,8 @@ packages:
date-fns: 2.30.0
date-fns-tz: 2.0.0(date-fns@2.30.0)
lodash: 4.17.21
- vue: 3.4.8(typescript@5.3.3)
- vue-screen-utils: 1.0.0-beta.13(vue@3.4.8)
+ vue: 3.4.14(typescript@5.3.3)
+ vue-screen-utils: 1.0.0-beta.13(vue@3.4.14)
dev: false
/v8-compile-cache-lib@3.0.1:
@@ -13957,14 +13993,14 @@ packages:
builtins: 5.0.1
dev: true
- /vee-validate@4.12.3(vue@3.4.8):
- resolution: {integrity: sha512-+ux21pFm2beGK21Q8LFDJdYqCu/7yd0HDIGolNvr7GjjlBTrK0JXm2y+h01jssyIlT1/+sSTNwAEqlSs0Nz0QA==}
+ /vee-validate@4.12.4(vue@3.4.14):
+ resolution: {integrity: sha512-rqSjMdl0l/RiGKywKhkXttUKwDlQOoxTxe31uMQiMlwK4Hbtlvr3OcQvpREp/qPTARxNKudKWCUVW/mfzuxUVQ==}
peerDependencies:
vue: ^3.3.11
dependencies:
'@vue/devtools-api': 6.5.1
type-fest: 4.8.3
- vue: 3.4.8(typescript@5.3.3)
+ vue: 3.4.14(typescript@5.3.3)
dev: false
/vite-node@0.33.0(@types/node@20.10.1):
@@ -13977,7 +14013,7 @@ packages:
mlly: 1.4.2
pathe: 1.1.2
picocolors: 1.0.0
- vite: 4.5.0(@types/node@20.10.1)
+ vite: 4.5.1(@types/node@20.10.1)
transitivePeerDependencies:
- '@types/node'
- less
@@ -13999,7 +14035,7 @@ packages:
mlly: 1.4.2
pathe: 1.1.2
picocolors: 1.0.0
- vite: 4.5.0(@types/node@20.8.8)
+ vite: 5.0.11(@types/node@20.8.8)
transitivePeerDependencies:
- '@types/node'
- less
@@ -14011,7 +14047,7 @@ packages:
- terser
dev: true
- /vite-plugin-checker@0.6.2(eslint@8.56.0)(typescript@5.3.3)(vite@4.5.0):
+ /vite-plugin-checker@0.6.2(eslint@8.56.0)(typescript@5.3.3)(vite@4.5.1):
resolution: {integrity: sha512-YvvvQ+IjY09BX7Ab+1pjxkELQsBd4rPhWNw8WLBeFVxu/E7O+n6VYAqNsKdK/a2luFlX/sMpoWdGFfg4HvwdJQ==}
engines: {node: '>=14.16'}
peerDependencies:
@@ -14057,14 +14093,14 @@ packages:
strip-ansi: 6.0.1
tiny-invariant: 1.3.1
typescript: 5.3.3
- vite: 4.5.0(@types/node@20.10.1)
+ vite: 4.5.1(@types/node@20.10.1)
vscode-languageclient: 7.0.0
vscode-languageserver: 7.0.0
vscode-languageserver-textdocument: 1.0.11
vscode-uri: 3.0.8
dev: true
- /vite-plugin-inspect@0.7.42(@nuxt/kit@3.8.2)(rollup@3.29.3)(vite@4.5.1):
+ /vite-plugin-inspect@0.7.42(@nuxt/kit@3.8.2)(rollup@3.29.4)(vite@4.5.1):
resolution: {integrity: sha512-JCyX86wr3siQc+p9Kd0t8VkFHAJag0RaQVIpdFGSv5FEaePEVB6+V/RGtz2dQkkGSXQzRWrPs4cU3dRKg32bXw==}
engines: {node: '>=14'}
peerDependencies:
@@ -14075,8 +14111,8 @@ packages:
optional: true
dependencies:
'@antfu/utils': 0.7.6
- '@nuxt/kit': 3.8.2(rollup@3.29.3)
- '@rollup/pluginutils': 5.1.0(rollup@3.29.3)
+ '@nuxt/kit': 3.8.2(rollup@3.29.4)
+ '@rollup/pluginutils': 5.1.0(rollup@3.29.4)
debug: 4.3.4
error-stack-parser-es: 0.1.1
fs-extra: 11.1.1
@@ -14100,7 +14136,7 @@ packages:
'@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.23.5)
'@babel/plugin-transform-typescript': 7.23.5(@babel/core@7.23.5)
'@vue/babel-plugin-jsx': 1.1.5(@babel/core@7.23.5)
- '@vue/compiler-dom': 3.3.9
+ '@vue/compiler-dom': 3.4.14
kolorist: 1.8.0
magic-string: 0.30.5
vite: 4.5.1(@types/node@20.10.1)
@@ -14124,114 +14160,6 @@ packages:
- typescript
dev: false
- /vite@4.5.0(@types/node@20.10.1):
- resolution: {integrity: sha512-ulr8rNLA6rkyFAlVWw2q5YJ91v098AFQ2R0PRFwPzREXOUJQPtFUG0t+/ZikhaOCDqFoDhN6/v8Sq0o4araFAw==}
- engines: {node: ^14.18.0 || >=16.0.0}
- hasBin: true
- peerDependencies:
- '@types/node': '>= 14'
- less: '*'
- lightningcss: ^1.21.0
- sass: '*'
- stylus: '*'
- sugarss: '*'
- terser: ^5.4.0
- peerDependenciesMeta:
- '@types/node':
- optional: true
- less:
- optional: true
- lightningcss:
- optional: true
- sass:
- optional: true
- stylus:
- optional: true
- sugarss:
- optional: true
- terser:
- optional: true
- dependencies:
- '@types/node': 20.10.1
- esbuild: 0.18.20
- postcss: 8.4.33
- rollup: 3.29.3
- optionalDependencies:
- fsevents: 2.3.3
- dev: true
-
- /vite@4.5.0(@types/node@20.8.10):
- resolution: {integrity: sha512-ulr8rNLA6rkyFAlVWw2q5YJ91v098AFQ2R0PRFwPzREXOUJQPtFUG0t+/ZikhaOCDqFoDhN6/v8Sq0o4araFAw==}
- engines: {node: ^14.18.0 || >=16.0.0}
- hasBin: true
- peerDependencies:
- '@types/node': '>= 14'
- less: '*'
- lightningcss: ^1.21.0
- sass: '*'
- stylus: '*'
- sugarss: '*'
- terser: ^5.4.0
- peerDependenciesMeta:
- '@types/node':
- optional: true
- less:
- optional: true
- lightningcss:
- optional: true
- sass:
- optional: true
- stylus:
- optional: true
- sugarss:
- optional: true
- terser:
- optional: true
- dependencies:
- '@types/node': 20.8.10
- esbuild: 0.18.20
- postcss: 8.4.31
- rollup: 3.29.3
- optionalDependencies:
- fsevents: 2.3.3
- dev: true
-
- /vite@4.5.0(@types/node@20.8.8):
- resolution: {integrity: sha512-ulr8rNLA6rkyFAlVWw2q5YJ91v098AFQ2R0PRFwPzREXOUJQPtFUG0t+/ZikhaOCDqFoDhN6/v8Sq0o4araFAw==}
- engines: {node: ^14.18.0 || >=16.0.0}
- hasBin: true
- peerDependencies:
- '@types/node': '>= 14'
- less: '*'
- lightningcss: ^1.21.0
- sass: '*'
- stylus: '*'
- sugarss: '*'
- terser: ^5.4.0
- peerDependenciesMeta:
- '@types/node':
- optional: true
- less:
- optional: true
- lightningcss:
- optional: true
- sass:
- optional: true
- stylus:
- optional: true
- sugarss:
- optional: true
- terser:
- optional: true
- dependencies:
- '@types/node': 20.8.8
- esbuild: 0.18.20
- postcss: 8.4.33
- rollup: 3.29.3
- optionalDependencies:
- fsevents: 2.3.3
- dev: true
-
/vite@4.5.1(@types/node@20.10.1):
resolution: {integrity: sha512-AXXFaAJ8yebyqzoNB9fu2pHoo/nWX+xZlaRwoeYUxEqBO+Zj4msE5G+BhGBll9lYEKv9Hfks52PAF2X7qDYXQA==}
engines: {node: ^14.18.0 || >=16.0.0}
@@ -14268,12 +14196,84 @@ packages:
fsevents: 2.3.3
dev: true
- /vitepress@1.0.0-rc.24(@algolia/client-search@4.22.0)(@types/node@20.8.10)(postcss@8.4.33)(search-insights@2.13.0)(typescript@5.3.3):
- resolution: {integrity: sha512-RpnL8cnOGwiRlBbrYQUm9sYkJbtyOt/wYXk2diTcokY4yvks/5lq9LuSt+MURWB6ZqwpSNHvTmxgaSfLoG0/OA==}
+ /vite@5.0.11(@types/node@20.8.10):
+ resolution: {integrity: sha512-XBMnDjZcNAw/G1gEiskiM1v6yzM4GE5aMGvhWTlHAYYhxb7S3/V1s3m2LDHa8Vh6yIWYYB0iJwsEaS523c4oYA==}
+ engines: {node: ^18.0.0 || >=20.0.0}
+ hasBin: true
+ peerDependencies:
+ '@types/node': ^18.0.0 || >=20.0.0
+ less: '*'
+ lightningcss: ^1.21.0
+ sass: '*'
+ stylus: '*'
+ sugarss: '*'
+ terser: ^5.4.0
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+ less:
+ optional: true
+ lightningcss:
+ optional: true
+ sass:
+ optional: true
+ stylus:
+ optional: true
+ sugarss:
+ optional: true
+ terser:
+ optional: true
+ dependencies:
+ '@types/node': 20.8.10
+ esbuild: 0.19.11
+ postcss: 8.4.33
+ rollup: 4.6.1
+ optionalDependencies:
+ fsevents: 2.3.3
+ dev: true
+
+ /vite@5.0.11(@types/node@20.8.8):
+ resolution: {integrity: sha512-XBMnDjZcNAw/G1gEiskiM1v6yzM4GE5aMGvhWTlHAYYhxb7S3/V1s3m2LDHa8Vh6yIWYYB0iJwsEaS523c4oYA==}
+ engines: {node: ^18.0.0 || >=20.0.0}
+ hasBin: true
+ peerDependencies:
+ '@types/node': ^18.0.0 || >=20.0.0
+ less: '*'
+ lightningcss: ^1.21.0
+ sass: '*'
+ stylus: '*'
+ sugarss: '*'
+ terser: ^5.4.0
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+ less:
+ optional: true
+ lightningcss:
+ optional: true
+ sass:
+ optional: true
+ stylus:
+ optional: true
+ sugarss:
+ optional: true
+ terser:
+ optional: true
+ dependencies:
+ '@types/node': 20.8.8
+ esbuild: 0.19.11
+ postcss: 8.4.33
+ rollup: 4.6.1
+ optionalDependencies:
+ fsevents: 2.3.3
+ dev: true
+
+ /vitepress@1.0.0-rc.37(@algolia/client-search@4.22.0)(@types/node@20.8.10)(postcss@8.4.33)(search-insights@2.13.0)(typescript@5.3.3):
+ resolution: {integrity: sha512-Z2X+M0id+bUdxcWxvFRUzfLyV2GtPWRcejLSMGOHRiwA1DV/dNmELKJ3U9D1HBYQK0FBzunpuQD0a2jZ7FZvJA==}
hasBin: true
peerDependencies:
markdown-it-mathjax3: ^4.3.2
- postcss: ^8.4.31
+ postcss: ^8.4.33
peerDependenciesMeta:
markdown-it-mathjax3:
optional: true
@@ -14282,18 +14282,20 @@ packages:
dependencies:
'@docsearch/css': 3.5.2
'@docsearch/js': 3.5.2(@algolia/client-search@4.22.0)(search-insights@2.13.0)
- '@types/markdown-it': 13.0.5
- '@vitejs/plugin-vue': 4.3.1(vite@4.5.0)(vue@3.4.8)
+ '@types/markdown-it': 13.0.7
+ '@vitejs/plugin-vue': 5.0.3(vite@5.0.11)(vue@3.4.14)
'@vue/devtools-api': 6.5.1
- '@vueuse/core': 10.5.0(vue@3.4.8)
- '@vueuse/integrations': 10.5.0(focus-trap@7.5.4)(vue@3.4.8)
+ '@vueuse/core': 10.7.2(vue@3.4.14)
+ '@vueuse/integrations': 10.7.2(focus-trap@7.5.4)(vue@3.4.14)
focus-trap: 7.5.4
mark.js: 8.11.1
- minisearch: 6.1.0
+ minisearch: 6.3.0
postcss: 8.4.33
- shiki: 0.14.5
- vite: 4.5.0(@types/node@20.8.10)
- vue: 3.4.8(typescript@5.3.3)
+ shikiji: 0.9.19
+ shikiji-core: 0.9.19
+ shikiji-transformers: 0.9.19
+ vite: 5.0.11(@types/node@20.8.10)
+ vue: 3.4.14(typescript@5.3.3)
transitivePeerDependencies:
- '@algolia/client-search'
- '@types/node'
@@ -14374,7 +14376,7 @@ packages:
strip-literal: 1.3.0
tinybench: 2.5.1
tinypool: 0.6.0
- vite: 4.5.0(@types/node@20.10.1)
+ vite: 4.5.1(@types/node@20.10.1)
vite-node: 0.33.0(@types/node@20.10.1)
why-is-node-running: 2.2.2
transitivePeerDependencies:
@@ -14440,7 +14442,7 @@ packages:
strip-literal: 1.3.0
tinybench: 2.5.1
tinypool: 0.7.0
- vite: 4.5.0(@types/node@20.8.8)
+ vite: 5.0.11(@types/node@20.8.8)
vite-node: 0.34.6(@types/node@20.8.8)
why-is-node-running: 2.2.2
transitivePeerDependencies:
@@ -14489,14 +14491,6 @@ packages:
vscode-languageserver-protocol: 3.16.0
dev: true
- /vscode-oniguruma@1.7.0:
- resolution: {integrity: sha512-L9WMGRfrjOhgHSdOYgCt/yRMsXzLDJSL7BPrOZt73gU0iWO4mpqzqQzOz5srxqTvMBaR0XZTSrVWo4j55Rc6cA==}
- dev: true
-
- /vscode-textmate@8.0.0:
- resolution: {integrity: sha512-AFbieoL7a5LMqcnOF04ji+rpXadgOXnZsxQr//r83kLPr7biP7am3g9zbaZIaBGwBRWeSvoMD4mgPdX3e4NWBg==}
- dev: true
-
/vscode-uri@3.0.8:
resolution: {integrity: sha512-AyFQ0EVmsOZOlAnxoFOGOq1SQDWAB7C6aqMGS23svWAllfOaxbuFvcT8D1i8z3Gyn8fraVeZNNmN6e9bxxXkKw==}
dev: true
@@ -14515,7 +14509,7 @@ packages:
ufo: 1.3.2
dev: true
- /vue-demi@0.14.6(vue@3.4.8):
+ /vue-demi@0.14.6(vue@3.4.14):
resolution: {integrity: sha512-8QA7wrYSHKaYgUxDA5ZC24w+eHm3sYCbp0EzcDwKqN3p6HqtTCGR/GVsPyZW92unff4UlcSh++lmqDWN3ZIq4w==}
engines: {node: '>=12'}
hasBin: true
@@ -14527,7 +14521,7 @@ packages:
'@vue/composition-api':
optional: true
dependencies:
- vue: 3.4.8(typescript@5.3.3)
+ vue: 3.4.14(typescript@5.3.3)
/vue-devtools-stub@0.1.0:
resolution: {integrity: sha512-RutnB7X8c5hjq39NceArgXg28WZtZpGc3+J16ljMiYnFhKvd8hITxSWQSQ5bvldxMDU6gG5mkxl1MTQLXckVSQ==}
@@ -14569,21 +14563,21 @@ packages:
- supports-color
dev: true
- /vue-router@4.2.5(vue@3.4.8):
+ /vue-router@4.2.5(vue@3.4.14):
resolution: {integrity: sha512-DIUpKcyg4+PTQKfFPX88UWhlagBEBEfJ5A8XDXRJLUnZOvcpMF8o/dnL90vpVkGaPbjvXazV/rC1qBKrZlFugw==}
peerDependencies:
vue: ^3.2.0
dependencies:
'@vue/devtools-api': 6.5.1
- vue: 3.4.8(typescript@5.3.3)
+ vue: 3.4.14(typescript@5.3.3)
dev: true
- /vue-screen-utils@1.0.0-beta.13(vue@3.4.8):
+ /vue-screen-utils@1.0.0-beta.13(vue@3.4.14):
resolution: {integrity: sha512-EJ/8TANKhFj+LefDuOvZykwMr3rrLFPLNb++lNBqPOpVigT2ActRg6icH9RFQVm4nHwlHIHSGm5OY/Clar9yIg==}
peerDependencies:
vue: ^3.2.0
dependencies:
- vue: 3.4.8(typescript@5.3.3)
+ vue: 3.4.14(typescript@5.3.3)
dev: false
/vue-template-compiler@2.7.14:
@@ -14605,43 +14599,43 @@ packages:
typescript: 5.3.3
dev: true
- /vue-wrap-balancer@1.1.3(vue@3.4.8):
+ /vue-wrap-balancer@1.1.3(vue@3.4.14):
resolution: {integrity: sha512-9kTRwYIveWxV1FdaCJfRjIIRZOtwgnxypGS5mlAiXnih5+Cfaby9YDh3APMW1jWp0oCvL+gep0XCbcjBb7/ZXQ==}
peerDependencies:
vue: ^3.3.0
dependencies:
nanoid: 3.3.6
- vue: 3.4.8(typescript@5.3.3)
+ vue: 3.4.14(typescript@5.3.3)
dev: false
- /vue@3.4.8(typescript@5.2.2):
- resolution: {integrity: sha512-vJffFOe6DqWsAI10v3tDhb1nJrj7CF3CbdQwOznywAsFNoyvrQ1AWQdcIWJpmRpRnw7NFzstzh6fh4w7n1PNdg==}
+ /vue@3.4.14(typescript@5.2.2):
+ resolution: {integrity: sha512-Rop5Al/ZcBbBz+KjPZaZDgHDX0kUP4duEzDbm+1o91uxYUNmJrZSBuegsNIJvUGy+epLevNRNhLjm08VKTgGyw==}
peerDependencies:
typescript: '*'
peerDependenciesMeta:
typescript:
optional: true
dependencies:
- '@vue/compiler-dom': 3.4.8
- '@vue/compiler-sfc': 3.4.8
- '@vue/runtime-dom': 3.4.8
- '@vue/server-renderer': 3.4.8(vue@3.4.8)
- '@vue/shared': 3.4.8
+ '@vue/compiler-dom': 3.4.14
+ '@vue/compiler-sfc': 3.4.14
+ '@vue/runtime-dom': 3.4.14
+ '@vue/server-renderer': 3.4.14(vue@3.4.14)
+ '@vue/shared': 3.4.14
typescript: 5.2.2
- /vue@3.4.8(typescript@5.3.3):
- resolution: {integrity: sha512-vJffFOe6DqWsAI10v3tDhb1nJrj7CF3CbdQwOznywAsFNoyvrQ1AWQdcIWJpmRpRnw7NFzstzh6fh4w7n1PNdg==}
+ /vue@3.4.14(typescript@5.3.3):
+ resolution: {integrity: sha512-Rop5Al/ZcBbBz+KjPZaZDgHDX0kUP4duEzDbm+1o91uxYUNmJrZSBuegsNIJvUGy+epLevNRNhLjm08VKTgGyw==}
peerDependencies:
typescript: '*'
peerDependenciesMeta:
typescript:
optional: true
dependencies:
- '@vue/compiler-dom': 3.4.8
- '@vue/compiler-sfc': 3.4.8
- '@vue/runtime-dom': 3.4.8
- '@vue/server-renderer': 3.4.8(vue@3.4.8)
- '@vue/shared': 3.4.8
+ '@vue/compiler-dom': 3.4.14
+ '@vue/compiler-sfc': 3.4.14
+ '@vue/runtime-dom': 3.4.14
+ '@vue/server-renderer': 3.4.14(vue@3.4.14)
+ '@vue/shared': 3.4.14
typescript: 5.3.3
/walk-up-path@3.0.1: