diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml
index 258f2e2..62d947d 100644
--- a/.github/workflows/deploy.yml
+++ b/.github/workflows/deploy.yml
@@ -1,13 +1,9 @@
-# Sample workflow for building and deploying a Next.js site to GitHub Pages
-#
-# To get started with Next.js see: https://nextjs.org/docs/getting-started
-#
-name: Deploy Next.js site to Pages
+name: Deploy Pages
on:
# Runs on pushes targeting the default branch
push:
- branches: ['main']
+ branches: ['gh-pages']
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
@@ -18,12 +14,6 @@ permissions:
pages: write
id-token: write
-# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
-# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
-concurrency:
- group: 'pages'
- cancel-in-progress: false
-
jobs:
# Build job
build:
@@ -37,27 +27,19 @@ jobs:
with:
node-version: '18'
cache: 'pnpm'
- - name: Setup Pages
- uses: actions/configure-pages@v4
- with:
- # Automatically inject basePath in your Next.js configuration file and disable
- # server side image optimization (https://nextjs.org/docs/api-reference/next/image#unoptimized).
- #
- # You may remove this line if you want to manage the configuration yourself.
- static_site_generator: dist/build/h5
- name: Restore cache
uses: actions/cache@v3
with:
path: |
dist/build/h5
# Generate a new cache whenever packages or source files change.
- key: ${{ runner.os }}-nextjs-${{ hashFiles('**/package-lock.json', '**/yarn.lock') }}-${{ hashFiles('**.[jt]s', '**.[jt]sx') }}
+ key: ${{ runner.os }}-unibest-${{ hashFiles('**/pnpm-lock.yaml') }}-${{ hashFiles('**.[jt]s', '**.[jt]sx') }}
# If source files changed but packages didn't, rebuild from a prior cache.
restore-keys: |
- ${{ runner.os }}-nextjs-${{ hashFiles('**/package-lock.json', '**/yarn.lock') }}-
+ ${{ runner.os }}-unibest-${{ hashFiles('**/pnpm-lock.yaml') }}-
- name: Install dependencies
run: pnpm i
- - name: Build with Next.js
+ - name: Build
run: pnpm build:h5
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
diff --git a/commitlint.config.cjs b/commitlint.config.cjs
index 6a5b36f..d5c73ce 100644
--- a/commitlint.config.cjs
+++ b/commitlint.config.cjs
@@ -1,4 +1,51 @@
// commitlint.config.cjs
+
module.exports = {
extends: ['@commitlint/config-conventional'],
+ rules: {
+ // 'body-leading-blank': [2, 'always'], // 主体前有空行,默认就是 always
+ // 'footer-leading-blank': [2, 'always'], // 末行前有空行,默认就是 always
+ // 'header-max-length': [2, 'always', 108], // 首行最大长度,默认就是 always,72
+ // 'subject-empty': [2, 'never'], // 标题不可为空,默认就是 never
+ // 'type-empty': [2, 'never'], // 类型不可为空,默认就是 never
+
+ // 允许的类型
+ 'type-enum': [
+ 2,
+ 'always',
+ [
+ 'build', // 构造工具、外部依赖(webpack、npm)
+ 'chore', // 不涉及 src、test 的其他修改(构建过程或辅助工具的变更)
+ 'ci', // 修改项目继续集成流程(Travis,Jenkins,GitLab CI,Circle等)
+ 'docs', // 文档
+ 'feat', // 新增功能
+ 'fix', // bug 修复
+ 'perf', // 性能优化
+ 'refactor', // 重构
+ 'revert', // 回退
+ 'style', // 代码风格(不影响代码含义)
+ 'test', // 测试
+
+ // 下面几个是自定义新增的
+ 'wip', // 开发中
+ 'refine', // 小优化,没有到 refactor 的程度
+ ],
+ ],
+ },
}
+
+// @see https://commitlint.js.org/#/reference-rules?id=type-enum
+// 默认值为:
+// [
+// 'build',
+// 'chore',
+// 'ci',
+// 'docs',
+// 'feat',
+// 'fix',
+// 'perf',
+// 'refactor',
+// 'revert',
+// 'style',
+// 'test',
+// ];
diff --git a/env/.env b/env/.env
index 87a2af6..f0c9a6b 100644
--- a/env/.env
+++ b/env/.env
@@ -1,4 +1,4 @@
-VITE_APP_TITLE = 'UniBest App'
+VITE_APP_TITLE = 'UniBest Hello'
VITE_APP_PORT = 9100
# github actions 部署地址根路径,用在 manifest.config.ts 里面的 h5.router.base
diff --git a/env/.env.production b/env/.env.production
index c409320..67526ce 100644
--- a/env/.env.production
+++ b/env/.env.production
@@ -3,7 +3,7 @@ NODE_ENV = 'development'
# 是否去除console 和 debugger
VITE_DELETE_CONSOLE = true
-VITE_SERVER_BASEURL = 'https://xxx.com'
+VITE_SERVER_BASEURL = 'https://ukw0y1.laf.run'
# github actions 部署地址根路径,用在 manifest.config.ts 里面的 h5.router.base
-VITE_APP_PUBLIC_BASE=/unibest/
+VITE_APP_PUBLIC_BASE=/hello-unibest/
diff --git a/env/.env.test b/env/.env.test
index 2dc558b..f632900 100644
--- a/env/.env.test
+++ b/env/.env.test
@@ -3,4 +3,4 @@ NODE_ENV = 'development'
# 是否去除console 和 debugger
VITE_DELETE_CONSOLE = false
-VITE_SERVER_BASEURL = 'https://xxx.com'
+VITE_SERVER_BASEURL = 'https://ukw0y1.laf.run'
diff --git a/package.json b/package.json
index 397682d..5ab77b2 100644
--- a/package.json
+++ b/package.json
@@ -92,15 +92,15 @@
"vue-i18n": "9.9.0"
},
"devDependencies": {
- "@commitlint/cli": "^18.4.3",
- "@commitlint/config-conventional": "^18.4.3",
- "@dcloudio/types": "^3.4.3",
+ "@commitlint/cli": "^18.6.0",
+ "@commitlint/config-conventional": "^18.6.0",
+ "@dcloudio/types": "^3.4.7",
"@dcloudio/uni-automator": "3.0.0-3090920231225001",
"@dcloudio/uni-cli-shared": "3.0.0-3090920231225001",
"@dcloudio/uni-stacktracey": "3.0.0-3090920231225001",
"@dcloudio/vite-plugin-uni": "3.0.0-3090920231225001",
"@iconify-json/carbon": "^1.1.27",
- "@types/node": "^20.11.5",
+ "@types/node": "^20.11.16",
"@types/wechat-miniprogram": "^3.4.7",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
@@ -137,16 +137,16 @@
"stylelint-config-standard": "^35.0.0",
"stylelint-config-standard-scss": "^12.0.0",
"terser": "^5.26.0",
- "typescript": "^4.9.4",
- "unocss": "^0.58.0",
+ "typescript": "^5.3.3",
+ "unocss": "^0.58.4",
"unplugin-auto-import": "^0.17.2",
- "vite": "4.0.3",
+ "vite": "^5.0.12",
"vite-plugin-compression": "^0.5.1",
"vite-plugin-restart": "^0.4.0",
"vite-plugin-svg-icons": "^2.0.1",
"vite-plugin-vue-setup-extend": "^0.4.0",
"vite-svg-loader": "^5.1.0",
"vue-global-api": "^0.4.1",
- "vue-tsc": "^1.0.24"
+ "vue-tsc": "^1.8.27"
}
}
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 753d6e6..b5973d6 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -1,15 +1,19 @@
lockfileVersion: '6.0'
+settings:
+ autoInstallPeers: true
+ excludeLinksFromLockfile: false
+
dependencies:
'@climblee/uv-ui':
specifier: ^1.1.20
version: 1.1.20
'@dcloudio/uni-app':
specifier: 3.0.0-3090920231225001
- version: 3.0.0-3090920231225001(@dcloudio/types@3.4.3)(postcss@8.4.32)(vue@3.2.47)
+ version: 3.0.0-3090920231225001(@dcloudio/types@3.4.7)(postcss@8.4.32)(vue@3.2.47)
'@dcloudio/uni-app-plus':
specifier: 3.0.0-3090920231225001
- version: 3.0.0-3090920231225001(postcss@8.4.32)(vite@4.0.3)(vue@3.2.47)
+ version: 3.0.0-3090920231225001(postcss@8.4.32)(vite@5.0.12)(vue@3.2.47)
'@dcloudio/uni-components':
specifier: 3.0.0-3090920231225001
version: 3.0.0-3090920231225001(postcss@8.4.32)(vue@3.2.47)
@@ -54,7 +58,7 @@ dependencies:
version: 1.11.10
pinia:
specifier: 2.0.36
- version: 2.0.36(typescript@4.9.5)(vue@3.2.47)
+ version: 2.0.36(typescript@5.3.3)(vue@3.2.47)
pinia-plugin-persistedstate:
specifier: 3.2.1
version: 3.2.1(pinia@2.0.36)
@@ -70,14 +74,14 @@ dependencies:
devDependencies:
'@commitlint/cli':
- specifier: ^18.4.3
- version: 18.4.3(typescript@4.9.5)
+ specifier: ^18.6.0
+ version: 18.6.0(@types/node@20.11.16)(typescript@5.3.3)
'@commitlint/config-conventional':
- specifier: ^18.4.3
- version: 18.4.3
+ specifier: ^18.6.0
+ version: 18.6.0
'@dcloudio/types':
- specifier: ^3.4.3
- version: 3.4.3
+ specifier: ^3.4.7
+ version: 3.4.7
'@dcloudio/uni-automator':
specifier: 3.0.0-3090920231225001
version: 3.0.0-3090920231225001(jest-environment-node@27.5.1)(jest@27.0.4)(postcss@8.4.32)(vue@3.2.47)
@@ -89,25 +93,25 @@ devDependencies:
version: 3.0.0-3090920231225001
'@dcloudio/vite-plugin-uni':
specifier: 3.0.0-3090920231225001
- version: 3.0.0-3090920231225001(postcss@8.4.32)(vite@4.0.3)(vue@3.2.47)
+ version: 3.0.0-3090920231225001(postcss@8.4.32)(vite@5.0.12)(vue@3.2.47)
'@iconify-json/carbon':
specifier: ^1.1.27
version: 1.1.27
'@types/node':
- specifier: ^20.11.5
- version: 20.11.5
+ specifier: ^20.11.16
+ version: 20.11.16
'@types/wechat-miniprogram':
specifier: ^3.4.7
version: 3.4.7
'@typescript-eslint/eslint-plugin':
specifier: ^6.15.0
- version: 6.15.0(@typescript-eslint/parser@6.15.0)(eslint@8.56.0)(typescript@4.9.5)
+ version: 6.15.0(@typescript-eslint/parser@6.15.0)(eslint@8.56.0)(typescript@5.3.3)
'@typescript-eslint/parser':
specifier: ^6.15.0
- version: 6.15.0(eslint@8.56.0)(typescript@4.9.5)
+ version: 6.15.0(eslint@8.56.0)(typescript@5.3.3)
'@uni-helper/uni-app-types':
specifier: ^0.5.12
- version: 0.5.12(typescript@4.9.5)
+ version: 0.5.12(typescript@5.3.3)
'@uni-helper/uni-cloud-types':
specifier: ^0.5.2
version: 0.5.2(@uni-helper/uni-app-types@0.5.12)
@@ -116,10 +120,10 @@ devDependencies:
version: 0.5.11(@uni-helper/uni-app-types@0.5.12)
'@uni-helper/unocss-preset-uni':
specifier: ^0.2.5
- version: 0.2.5(eslint-import-resolver-typescript@3.6.1)(postcss@8.4.32)(typescript@4.9.5)(vite@4.0.3)
+ version: 0.2.5(eslint-import-resolver-typescript@3.6.1)(postcss@8.4.32)(typescript@5.3.3)(vite@5.0.12)
'@uni-helper/vite-plugin-uni-layouts':
specifier: ^0.1.7
- version: 0.1.7(eslint-import-resolver-typescript@3.6.1)(typescript@4.9.5)
+ version: 0.1.7(eslint-import-resolver-typescript@3.6.1)(typescript@5.3.3)
'@uni-helper/vite-plugin-uni-manifest':
specifier: ^0.2.3
version: 0.2.3
@@ -134,13 +138,13 @@ devDependencies:
version: 3.3.13
'@vue/tsconfig':
specifier: ^0.1.3
- version: 0.1.3(@types/node@20.11.5)
+ version: 0.1.3(@types/node@20.11.16)
autoprefixer:
specifier: ^10.4.16
version: 10.4.16(postcss@8.4.32)
commitlint:
specifier: ^18.4.3
- version: 18.4.3(typescript@4.9.5)
+ version: 18.4.3(@types/node@20.11.16)(typescript@5.3.3)
eslint:
specifier: ^8.56.0
version: 8.56.0
@@ -185,7 +189,7 @@ devDependencies:
version: 1.69.5
stylelint:
specifier: ^16.0.2
- version: 16.0.2(typescript@4.9.5)
+ version: 16.0.2(typescript@5.3.3)
stylelint-config-html:
specifier: ^1.1.0
version: 1.1.0(postcss-html@1.5.0)(stylelint@16.0.2)
@@ -205,29 +209,29 @@ devDependencies:
specifier: ^5.26.0
version: 5.26.0
typescript:
- specifier: ^4.9.4
- version: 4.9.5
+ specifier: ^5.3.3
+ version: 5.3.3
unocss:
- specifier: ^0.58.0
- version: 0.58.0(postcss@8.4.32)(vite@4.0.3)
+ specifier: ^0.58.4
+ version: 0.58.4(postcss@8.4.32)(vite@5.0.12)
unplugin-auto-import:
specifier: ^0.17.2
version: 0.17.2
vite:
- specifier: 4.0.3
- version: 4.0.3(@types/node@20.11.5)(sass@1.69.5)(terser@5.26.0)
+ specifier: ^5.0.12
+ version: 5.0.12(@types/node@20.11.16)(sass@1.69.5)(terser@5.26.0)
vite-plugin-compression:
specifier: ^0.5.1
- version: 0.5.1(vite@4.0.3)
+ version: 0.5.1(vite@5.0.12)
vite-plugin-restart:
specifier: ^0.4.0
- version: 0.4.0(vite@4.0.3)
+ version: 0.4.0(vite@5.0.12)
vite-plugin-svg-icons:
specifier: ^2.0.1
- version: 2.0.1(vite@4.0.3)
+ version: 2.0.1(vite@5.0.12)
vite-plugin-vue-setup-extend:
specifier: ^0.4.0
- version: 0.4.0(vite@4.0.3)
+ version: 0.4.0(vite@5.0.12)
vite-svg-loader:
specifier: ^5.1.0
version: 5.1.0(vue@3.2.47)
@@ -235,8 +239,8 @@ devDependencies:
specifier: ^0.4.1
version: 0.4.1(vue@3.2.47)
vue-tsc:
- specifier: ^1.0.24
- version: 1.8.25(typescript@4.9.5)
+ specifier: ^1.8.27
+ version: 1.8.27(typescript@5.3.3)
packages:
@@ -252,15 +256,15 @@ packages:
'@jridgewell/gen-mapping': 0.3.3
'@jridgewell/trace-mapping': 0.3.20
- /@antfu/eslint-config@1.0.0-beta.27(eslint-import-resolver-typescript@3.6.1)(eslint@8.56.0)(typescript@4.9.5):
+ /@antfu/eslint-config@1.0.0-beta.27(eslint-import-resolver-typescript@3.6.1)(eslint@8.56.0)(typescript@5.3.3):
resolution: {integrity: sha512-xLSiMWU2Hfky2FbPC8KcyuJl6gArv1A6lOwkD3PN6jMaUfJrLGEnwWdCni94o1TNLwpigxNPp3mP4YT87ioToQ==}
peerDependencies:
eslint: '>=8.0.0'
dependencies:
'@antfu/eslint-define-config': 1.23.0-2
- '@stylistic/eslint-plugin': 0.0.11(eslint@8.56.0)(typescript@4.9.5)
- '@typescript-eslint/eslint-plugin': 6.15.0(@typescript-eslint/parser@6.15.0)(eslint@8.56.0)(typescript@4.9.5)
- '@typescript-eslint/parser': 6.15.0(eslint@8.56.0)(typescript@4.9.5)
+ '@stylistic/eslint-plugin': 0.0.11(eslint@8.56.0)(typescript@5.3.3)
+ '@typescript-eslint/eslint-plugin': 6.15.0(@typescript-eslint/parser@6.15.0)(eslint@8.56.0)(typescript@5.3.3)
+ '@typescript-eslint/parser': 6.15.0(eslint@8.56.0)(typescript@5.3.3)
eslint: 8.56.0
eslint-config-flat-gitignore: 0.1.2
eslint-plugin-antfu: 1.0.13(eslint@8.56.0)
@@ -274,7 +278,7 @@ packages:
eslint-plugin-sort-keys: 2.3.5
eslint-plugin-unicorn: 48.0.1(eslint@8.56.0)
eslint-plugin-unused-imports: 3.0.0(@typescript-eslint/eslint-plugin@6.15.0)(eslint@8.56.0)
- eslint-plugin-vitest: 0.3.18(@typescript-eslint/eslint-plugin@6.15.0)(eslint@8.56.0)(typescript@4.9.5)
+ eslint-plugin-vitest: 0.3.18(@typescript-eslint/eslint-plugin@6.15.0)(eslint@8.56.0)(typescript@5.3.3)
eslint-plugin-vue: 9.19.2(eslint@8.56.0)
eslint-plugin-yml: 1.11.0(eslint@8.56.0)
globals: 13.24.0
@@ -338,6 +342,29 @@ packages:
transitivePeerDependencies:
- supports-color
+ /@babel/core@7.23.9:
+ resolution: {integrity: sha512-5q0175NOjddqpvvzU+kDiSOAk4PfdO6FvwCWoQ6RO7rTzEe8vlo+4HVfcnAREhD4npMs0e9uZypjTwzZPCf/cw==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@ampproject/remapping': 2.2.1
+ '@babel/code-frame': 7.23.5
+ '@babel/generator': 7.23.6
+ '@babel/helper-compilation-targets': 7.23.6
+ '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.9)
+ '@babel/helpers': 7.23.9
+ '@babel/parser': 7.23.9
+ '@babel/template': 7.23.9
+ '@babel/traverse': 7.23.9
+ '@babel/types': 7.23.9
+ convert-source-map: 2.0.0
+ debug: 4.3.4
+ gensync: 1.0.0-beta.2
+ json5: 2.2.3
+ semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
/@babel/generator@7.23.6:
resolution: {integrity: sha512-qrSfCYxYQB5owCmGLbl8XRpX1ytXlpueOb0N0UmQwA073KZxejgQTzAmJezxvpwQD9uGtK2shHdi55QT+MbjIw==}
engines: {node: '>=6.9.0'}
@@ -389,6 +416,24 @@ packages:
semver: 6.3.1
dev: true
+ /@babel/helper-create-class-features-plugin@7.23.6(@babel/core@7.23.9):
+ resolution: {integrity: sha512-cBXU1vZni/CpGF29iTu4YRbOZt3Wat6zCoMDxRF1MayiEc4URxOj31tT65HUM0CRpMowA3HCJaAOVOUnMf96cw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ dependencies:
+ '@babel/core': 7.23.9
+ '@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.9)
+ '@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.23.6):
resolution: {integrity: sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==}
engines: {node: '>=6.9.0'}
@@ -459,6 +504,20 @@ packages:
'@babel/helper-split-export-declaration': 7.22.6
'@babel/helper-validator-identifier': 7.22.20
+ /@babel/helper-module-transforms@7.23.3(@babel/core@7.23.9):
+ resolution: {integrity: sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ dependencies:
+ '@babel/core': 7.23.9
+ '@babel/helper-environment-visitor': 7.22.20
+ '@babel/helper-module-imports': 7.22.15
+ '@babel/helper-simple-access': 7.22.5
+ '@babel/helper-split-export-declaration': 7.22.6
+ '@babel/helper-validator-identifier': 7.22.20
+ dev: true
+
/@babel/helper-optimise-call-expression@7.22.5:
resolution: {integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==}
engines: {node: '>=6.9.0'}
@@ -495,6 +554,18 @@ packages:
'@babel/helper-optimise-call-expression': 7.22.5
dev: true
+ /@babel/helper-replace-supers@7.22.20(@babel/core@7.23.9):
+ resolution: {integrity: sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ dependencies:
+ '@babel/core': 7.23.9
+ '@babel/helper-environment-visitor': 7.22.20
+ '@babel/helper-member-expression-to-functions': 7.23.0
+ '@babel/helper-optimise-call-expression': 7.22.5
+ dev: true
+
/@babel/helper-simple-access@7.22.5:
resolution: {integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==}
engines: {node: '>=6.9.0'}
@@ -545,6 +616,17 @@ packages:
transitivePeerDependencies:
- supports-color
+ /@babel/helpers@7.23.9:
+ resolution: {integrity: sha512-87ICKgU5t5SzOT7sBMfCOZQ2rHjRU+Pcb9BoILMYz600W6DkVRLFBPwQ18gwUVvggqXivaUakpnxWQGbpywbBQ==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/template': 7.23.9
+ '@babel/traverse': 7.23.9
+ '@babel/types': 7.23.9
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
/@babel/highlight@7.23.4:
resolution: {integrity: sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==}
engines: {node: '>=6.9.0'}
@@ -560,6 +642,14 @@ packages:
dependencies:
'@babel/types': 7.23.6
+ /@babel/parser@7.23.9:
+ resolution: {integrity: sha512-9tcKgqKbs3xGJ+NtKF2ndOBBLVwPjl1SHxPQkd36r3Dlirw3xWUeGaTbqr7uGZcTaxkVNwc+03SVP7aCdWrTlA==}
+ engines: {node: '>=6.0.0'}
+ hasBin: true
+ dependencies:
+ '@babel/types': 7.23.9
+ dev: true
+
/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.23.3(@babel/core@7.23.6):
resolution: {integrity: sha512-iRkKcCqb7iGnq9+3G6rZ+Ciz5VywC4XNRHe57lKM+jOeYAoR0lVqdeeDRfh0tQcTfw/+vBhHn926FmQhLtlFLQ==}
engines: {node: '>=6.9.0'}
@@ -705,6 +795,16 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
+ /@babel/plugin-syntax-jsx@7.23.3(@babel/core@7.23.9):
+ resolution: {integrity: sha512-EB2MELswq55OHUoRZLGg/zC7QWUKfNLpE57m/S2yr1uEneIgsTgrSzXP3NXEsMkVn76OlaVVnzN+ugObuYGwhg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.9
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
/@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.23.6):
resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==}
peerDependencies:
@@ -789,6 +889,16 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
+ /@babel/plugin-syntax-typescript@7.23.3(@babel/core@7.23.9):
+ resolution: {integrity: sha512-9EiNjVJOMwCO+43TqoTrgQ8jMwcAd0sWyXi9RPfIsLTj4R2MADDDQXELhffaUx/uJv2AYcxBgPwH6j4TIA4ytQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.9
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
/@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.23.6):
resolution: {integrity: sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==}
engines: {node: '>=6.9.0'}
@@ -1059,6 +1169,18 @@ packages:
'@babel/helper-simple-access': 7.22.5
dev: true
+ /@babel/plugin-transform-modules-commonjs@7.23.3(@babel/core@7.23.9):
+ resolution: {integrity: sha512-aVS0F65LKsdNOtcz6FRCpE4OgsP2OFnW46qNxNIX9h3wuzaNcSQsJysuMwqSibC98HPrf2vCgtxKNwS0DAlgcA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.9
+ '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.9)
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/helper-simple-access': 7.22.5
+ dev: true
+
/@babel/plugin-transform-modules-systemjs@7.23.3(@babel/core@7.23.6):
resolution: {integrity: sha512-ZxyKGTkF9xT9YJuKQRo19ewf3pXpopuYQd8cDXqNzc3mUNbOME0RKMoZxviQk74hwzfQsEe66dE92MaZbdHKNQ==}
engines: {node: '>=6.9.0'}
@@ -1303,6 +1425,19 @@ packages:
'@babel/plugin-syntax-typescript': 7.23.3(@babel/core@7.23.6)
dev: true
+ /@babel/plugin-transform-typescript@7.23.6(@babel/core@7.23.9):
+ resolution: {integrity: sha512-6cBG5mBvUu4VUD04OHKnYzbuHNP8huDsD3EDqqpIpsswTDoqHCjLoHb6+QgsV1WsT2nipRqCPgxD3LXnEO7XfA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.9
+ '@babel/helper-annotate-as-pure': 7.22.5
+ '@babel/helper-create-class-features-plugin': 7.23.6(@babel/core@7.23.9)
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/plugin-syntax-typescript': 7.23.3(@babel/core@7.23.9)
+ dev: true
+
/@babel/plugin-transform-unicode-escapes@7.23.3(@babel/core@7.23.6):
resolution: {integrity: sha512-OMCUx/bU6ChE3r4+ZdylEqAjaQgHAgipgW8nsCfu5pGqDcFytVd91AwRvUJSBZDz0exPGgnjoqhgRYLRjFZc9Q==}
engines: {node: '>=6.9.0'}
@@ -1462,6 +1597,20 @@ packages:
'@babel/plugin-transform-typescript': 7.23.6(@babel/core@7.23.6)
dev: true
+ /@babel/preset-typescript@7.23.3(@babel/core@7.23.9):
+ resolution: {integrity: sha512-17oIGVlqz6CchO9RFYn5U6ZpWRZIngayYCtrPRSgANSwC2V1Jb+iP74nVxzzXJte8b8BYxrL1yY96xfhTBrNNQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.9
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/helper-validator-option': 7.23.5
+ '@babel/plugin-syntax-jsx': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-typescript': 7.23.6(@babel/core@7.23.9)
+ dev: true
+
/@babel/regjsgen@0.8.0:
resolution: {integrity: sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==}
dev: true
@@ -1480,6 +1629,15 @@ packages:
'@babel/parser': 7.23.6
'@babel/types': 7.23.6
+ /@babel/template@7.23.9:
+ resolution: {integrity: sha512-+xrD2BWLpvHKNmX2QbpdpsBaWnRxahMwJjO+KZk2JOElj5nSmKezyS1B4u+QbHMTX69t4ukm6hh9lsYQ7GHCKA==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/code-frame': 7.23.5
+ '@babel/parser': 7.23.9
+ '@babel/types': 7.23.9
+ dev: true
+
/@babel/traverse@7.23.6:
resolution: {integrity: sha512-czastdK1e8YByZqezMPFiZ8ahwVMh/ESl9vPgvgdB9AmFMGP5jfpFax74AQgl5zj4XHzqeYAg2l8PuUeRS1MgQ==}
engines: {node: '>=6.9.0'}
@@ -1497,6 +1655,24 @@ packages:
transitivePeerDependencies:
- supports-color
+ /@babel/traverse@7.23.9:
+ resolution: {integrity: sha512-I/4UJ9vs90OkBtY6iiiTORVMyIhJ4kAVmsKo9KFc8UOxMeUfi2hvtIBsET5u9GizXE6/GFSuKCTNfgCswuEjRg==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/code-frame': 7.23.5
+ '@babel/generator': 7.23.6
+ '@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.23.9
+ '@babel/types': 7.23.9
+ debug: 4.3.4
+ globals: 11.12.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
/@babel/types@7.23.6:
resolution: {integrity: sha512-+uarb83brBzPKN38NX1MkB6vb6+mwvR6amUulqAE7ccQw1pEl+bCia9TbdG1lsnFP7lZySvUn37CHyXQdfTwzg==}
engines: {node: '>=6.9.0'}
@@ -1505,6 +1681,15 @@ packages:
'@babel/helper-validator-identifier': 7.22.20
to-fast-properties: 2.0.0
+ /@babel/types@7.23.9:
+ resolution: {integrity: sha512-dQjSq/7HaSjRM43FFGnv5keM2HsxpmyV1PfaSVm0nzzjwwTmjOe6J4bC8e3+pTEIgHaHj+1ZlLThRJ2auc/w1Q==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/helper-string-parser': 7.23.4
+ '@babel/helper-validator-identifier': 7.22.20
+ to-fast-properties: 2.0.0
+ dev: true
+
/@bcoe/v8-coverage@0.2.3:
resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==}
dev: true
@@ -1513,45 +1698,46 @@ packages:
resolution: {integrity: sha512-jkyesHJsPJkF4Nap9ZmG1/ibKlxXA5M8+ntqKXwwloIsYSYL5SOKb0gyPj17aBOU1PkJpmeiZ8PwnTolhK2/HA==}
dev: false
- /@commitlint/cli@18.4.3(typescript@4.9.5):
- resolution: {integrity: sha512-zop98yfB3A6NveYAZ3P1Mb6bIXuCeWgnUfVNkH4yhIMQpQfzFwseadazOuSn0OOfTt0lWuFauehpm9GcqM5lww==}
+ /@commitlint/cli@18.6.0(@types/node@20.11.16)(typescript@5.3.3):
+ resolution: {integrity: sha512-FiH23cr9QG8VdfbmvJJZmdfHGVMCouOOAzoXZ3Cd7czGC52RbycwNt8YCI7SA69pAl+t30vh8LMaO/N+kcel6w==}
engines: {node: '>=v18'}
hasBin: true
dependencies:
- '@commitlint/format': 18.4.3
- '@commitlint/lint': 18.4.3
- '@commitlint/load': 18.4.3(typescript@4.9.5)
- '@commitlint/read': 18.4.3
- '@commitlint/types': 18.4.3
+ '@commitlint/format': 18.6.0
+ '@commitlint/lint': 18.6.0
+ '@commitlint/load': 18.6.0(@types/node@20.11.16)(typescript@5.3.3)
+ '@commitlint/read': 18.6.0
+ '@commitlint/types': 18.6.0
execa: 5.1.1
lodash.isfunction: 3.0.9
resolve-from: 5.0.0
resolve-global: 1.0.0
yargs: 17.7.2
transitivePeerDependencies:
+ - '@types/node'
- typescript
dev: true
- /@commitlint/config-conventional@18.4.3:
- resolution: {integrity: sha512-729eRRaNta7JZF07qf6SAGSghoDEp9mH7yHU0m7ff0q89W97wDrWCyZ3yoV3mcQJwbhlmVmZPTkPcm7qiAu8WA==}
+ /@commitlint/config-conventional@18.6.0:
+ resolution: {integrity: sha512-CDCOf2eJz9D/TL44IBks0stM9TmdLCNE2B48owIU3YCadwzts/bobXPScagIgPQF6hhKYMEdj5zpUDlmbwuqwQ==}
engines: {node: '>=v18'}
dependencies:
conventional-changelog-conventionalcommits: 7.0.2
dev: true
- /@commitlint/config-validator@18.4.3:
- resolution: {integrity: sha512-FPZZmTJBARPCyef9ohRC9EANiQEKSWIdatx5OlgeHKu878dWwpyeFauVkhzuBRJFcCA4Uvz/FDtlDKs008IHcA==}
+ /@commitlint/config-validator@18.6.0:
+ resolution: {integrity: sha512-Ptfa865arNozlkjxrYG3qt6wT9AlhNUHeuDyKEZiTL/l0ftncFhK/KN0t/EAMV2tec+0Mwxo0FmhbESj/bI+1g==}
engines: {node: '>=v18'}
dependencies:
- '@commitlint/types': 18.4.3
+ '@commitlint/types': 18.6.0
ajv: 8.12.0
dev: true
- /@commitlint/ensure@18.4.3:
- resolution: {integrity: sha512-MI4fwD9TWDVn4plF5+7JUyLLbkOdzIRBmVeNlk4dcGlkrVA+/l5GLcpN66q9LkFsFv6G2X31y89ApA3hqnqIFg==}
+ /@commitlint/ensure@18.6.0:
+ resolution: {integrity: sha512-xY07NmOBJ7JuhX3tic021PaeLepZARIQyqpAQoNQZoml1keBFfB6MbA7XlWZv0ebbarUFE4yhKxOPw+WFv7/qw==}
engines: {node: '>=v18'}
dependencies:
- '@commitlint/types': 18.4.3
+ '@commitlint/types': 18.6.0
lodash.camelcase: 4.3.0
lodash.kebabcase: 4.1.1
lodash.snakecase: 4.1.1
@@ -1559,112 +1745,111 @@ packages:
lodash.upperfirst: 4.3.1
dev: true
- /@commitlint/execute-rule@18.4.3:
- resolution: {integrity: sha512-t7FM4c+BdX9WWZCPrrbV5+0SWLgT3kCq7e7/GhHCreYifg3V8qyvO127HF796vyFql75n4TFF+5v1asOOWkV1Q==}
+ /@commitlint/execute-rule@18.4.4:
+ resolution: {integrity: sha512-a37Nd3bDQydtg9PCLLWM9ZC+GO7X5i4zJvrggJv5jBhaHsXeQ9ZWdO6ODYR+f0LxBXXNYK3geYXJrCWUCP8JEg==}
engines: {node: '>=v18'}
dev: true
- /@commitlint/format@18.4.3:
- resolution: {integrity: sha512-8b+ItXYHxAhRAXFfYki5PpbuMMOmXYuzLxib65z2XTqki59YDQJGpJ/wB1kEE5MQDgSTQWtKUrA8n9zS/1uIDQ==}
+ /@commitlint/format@18.6.0:
+ resolution: {integrity: sha512-8UNWfs2slPPSQiiVpLGJTnPHv7Jkd5KYxfbNXbmLL583bjom4RrylvyrCVnmZReA8nNad7pPXq6mDH4FNVj6xg==}
engines: {node: '>=v18'}
dependencies:
- '@commitlint/types': 18.4.3
+ '@commitlint/types': 18.6.0
chalk: 4.1.2
dev: true
- /@commitlint/is-ignored@18.4.3:
- resolution: {integrity: sha512-ZseOY9UfuAI32h9w342Km4AIaTieeFskm2ZKdrG7r31+c6zGBzuny9KQhwI9puc0J3GkUquEgKJblCl7pMnjwg==}
+ /@commitlint/is-ignored@18.6.0:
+ resolution: {integrity: sha512-Xjx/ZyyJ4FdLuz0FcOvqiqSFgiO2yYj3QN9XlvyrxqbXTxPVC7QFEXJYBVPulUSN/gR7WXH1Udw+HYYfD17xog==}
engines: {node: '>=v18'}
dependencies:
- '@commitlint/types': 18.4.3
+ '@commitlint/types': 18.6.0
semver: 7.5.4
dev: true
- /@commitlint/lint@18.4.3:
- resolution: {integrity: sha512-18u3MRgEXNbnYkMOWoncvq6QB8/90m9TbERKgdPqVvS+zQ/MsuRhdvHYCIXGXZxUb0YI4DV2PC4bPneBV/fYuA==}
+ /@commitlint/lint@18.6.0:
+ resolution: {integrity: sha512-ycbuDWfyykPmslgiHzhz8dL6F0BJYltXLVfc+M49z0c+FNITM0v+r0Vd2+Tdtq06VTc894p2+YSmZhulY8Jn3Q==}
engines: {node: '>=v18'}
dependencies:
- '@commitlint/is-ignored': 18.4.3
- '@commitlint/parse': 18.4.3
- '@commitlint/rules': 18.4.3
- '@commitlint/types': 18.4.3
+ '@commitlint/is-ignored': 18.6.0
+ '@commitlint/parse': 18.6.0
+ '@commitlint/rules': 18.6.0
+ '@commitlint/types': 18.6.0
dev: true
- /@commitlint/load@18.4.3(typescript@4.9.5):
- resolution: {integrity: sha512-v6j2WhvRQJrcJaj5D+EyES2WKTxPpxENmNpNG3Ww8MZGik3jWRXtph0QTzia5ZJyPh2ib5aC/6BIDymkUUM58Q==}
+ /@commitlint/load@18.6.0(@types/node@20.11.16)(typescript@5.3.3):
+ resolution: {integrity: sha512-RRssj7TmzT0bowoEKlgwg8uQ7ORXWkw7lYLsZZBMi9aInsJuGNLNWcMxJxRZbwxG3jkCidGUg85WmqJvRjsaDA==}
engines: {node: '>=v18'}
dependencies:
- '@commitlint/config-validator': 18.4.3
- '@commitlint/execute-rule': 18.4.3
- '@commitlint/resolve-extends': 18.4.3
- '@commitlint/types': 18.4.3
- '@types/node': 18.19.3
+ '@commitlint/config-validator': 18.6.0
+ '@commitlint/execute-rule': 18.4.4
+ '@commitlint/resolve-extends': 18.6.0
+ '@commitlint/types': 18.6.0
chalk: 4.1.2
- cosmiconfig: 8.3.6(typescript@4.9.5)
- cosmiconfig-typescript-loader: 5.0.0(@types/node@18.19.3)(cosmiconfig@8.3.6)(typescript@4.9.5)
+ cosmiconfig: 8.3.6(typescript@5.3.3)
+ cosmiconfig-typescript-loader: 5.0.0(@types/node@20.11.16)(cosmiconfig@8.3.6)(typescript@5.3.3)
lodash.isplainobject: 4.0.6
lodash.merge: 4.6.2
lodash.uniq: 4.5.0
resolve-from: 5.0.0
transitivePeerDependencies:
+ - '@types/node'
- typescript
dev: true
- /@commitlint/message@18.4.3:
- resolution: {integrity: sha512-ddJ7AztWUIoEMAXoewx45lKEYEOeOlBVWjk8hDMUGpprkuvWULpaXczqdjwVtjrKT3JhhN+gMs8pm5G3vB2how==}
+ /@commitlint/message@18.4.4:
+ resolution: {integrity: sha512-lHF95mMDYgAI1LBXveJUyg4eLaMXyOqJccCK3v55ZOEUsMPrDi8upqDjd/NmzWmESYihaOMBTAnxm+6oD1WoDQ==}
engines: {node: '>=v18'}
dev: true
- /@commitlint/parse@18.4.3:
- resolution: {integrity: sha512-eoH7CXM9L+/Me96KVcfJ27EIIbA5P9sqw3DqjJhRYuhaULIsPHFs5S5GBDCqT0vKZQDx0DgxhMpW6AQbnKrFtA==}
+ /@commitlint/parse@18.6.0:
+ resolution: {integrity: sha512-Y/G++GJpATFw54O0jikc/h2ibyGHgghtPnwsOk3O/aU092ydJ5XEHYcd7xGNQYuLweLzQis2uEwRNk9AVIPbQQ==}
engines: {node: '>=v18'}
dependencies:
- '@commitlint/types': 18.4.3
+ '@commitlint/types': 18.6.0
conventional-changelog-angular: 7.0.0
conventional-commits-parser: 5.0.0
dev: true
- /@commitlint/read@18.4.3:
- resolution: {integrity: sha512-H4HGxaYA6OBCimZAtghL+B+SWu8ep4X7BwgmedmqWZRHxRLcX2q0bWBtUm5FsMbluxbOfrJwOs/Z0ah4roP/GQ==}
+ /@commitlint/read@18.6.0:
+ resolution: {integrity: sha512-w39ji8VfWhPKRquPhRHB3Yd8XIHwaNHgOh28YI1QEmZ59qVpuVUQo6h/NsVb+uoC6LbXZiofTZv2iFR084jKEA==}
engines: {node: '>=v18'}
dependencies:
- '@commitlint/top-level': 18.4.3
- '@commitlint/types': 18.4.3
- fs-extra: 11.2.0
+ '@commitlint/top-level': 18.4.4
+ '@commitlint/types': 18.6.0
git-raw-commits: 2.0.11
minimist: 1.2.8
dev: true
- /@commitlint/resolve-extends@18.4.3:
- resolution: {integrity: sha512-30sk04LZWf8+SDgJrbJCjM90gTg2LxsD9cykCFeFu+JFHvBFq5ugzp2eO/DJGylAdVaqxej3c7eTSE64hR/lnw==}
+ /@commitlint/resolve-extends@18.6.0:
+ resolution: {integrity: sha512-k2Xp+Fxeggki2i90vGrbiLDMefPius3zGSTFFlRAPKce/SWLbZtI+uqE9Mne23mHO5lmcSV8z5m6ziiJwGpOcg==}
engines: {node: '>=v18'}
dependencies:
- '@commitlint/config-validator': 18.4.3
- '@commitlint/types': 18.4.3
+ '@commitlint/config-validator': 18.6.0
+ '@commitlint/types': 18.6.0
import-fresh: 3.3.0
lodash.mergewith: 4.6.2
resolve-from: 5.0.0
resolve-global: 1.0.0
dev: true
- /@commitlint/rules@18.4.3:
- resolution: {integrity: sha512-8KIeukDf45BiY+Lul1T0imSNXF0sMrlLG6JpLLKolkmYVQ6PxxoNOriwyZ3UTFFpaVbPy0rcITaV7U9JCAfDTA==}
+ /@commitlint/rules@18.6.0:
+ resolution: {integrity: sha512-pTalvCEvuCWrBWZA/YqO/3B3nZnY3Ncc+TmQsRajBdC1tkQIm5Iovdo4Ec7f2Dw1tVvpYMUUNAgcWqsY0WckWg==}
engines: {node: '>=v18'}
dependencies:
- '@commitlint/ensure': 18.4.3
- '@commitlint/message': 18.4.3
- '@commitlint/to-lines': 18.4.3
- '@commitlint/types': 18.4.3
+ '@commitlint/ensure': 18.6.0
+ '@commitlint/message': 18.4.4
+ '@commitlint/to-lines': 18.4.4
+ '@commitlint/types': 18.6.0
execa: 5.1.1
dev: true
- /@commitlint/to-lines@18.4.3:
- resolution: {integrity: sha512-fy1TAleik4Zfru1RJ8ZU6cOSvgSVhUellxd3WZV1D5RwHZETt1sZdcA4mQN2y3VcIZsUNKkW0Mq8CM9/L9harQ==}
+ /@commitlint/to-lines@18.4.4:
+ resolution: {integrity: sha512-mwe2Roa59NCz/krniAdCygFabg7+fQCkIhXqBHw00XQ8Y7lw4poZLLxeGI3p3bLpcEOXdqIDrEGLwHmG5lBdwQ==}
engines: {node: '>=v18'}
dev: true
- /@commitlint/top-level@18.4.3:
- resolution: {integrity: sha512-E6fJPBLPFL5R8+XUNSYkj4HekIOuGMyJo3mIx2PkYc3clel+pcWQ7TConqXxNWW4x1ugigiIY2RGot55qUq1hw==}
+ /@commitlint/top-level@18.4.4:
+ resolution: {integrity: sha512-PBwW1drgeavl9CadB7IPRUk6rkUP/O8jEkxjlC+ofuh3pw0bzJdAT+Kw7M1Yc9KtTb9xTaqUB8uvRtaybHa/tQ==}
engines: {node: '>=v18'}
dependencies:
find-up: 5.0.0
@@ -1677,6 +1862,13 @@ packages:
chalk: 4.1.2
dev: true
+ /@commitlint/types@18.6.0:
+ resolution: {integrity: sha512-oavoKLML/eJa2rJeyYSbyGAYzTxQ6voG5oeX3OrxpfrkRWhJfm4ACnhoRf5tgiybx2MZ+EVFqC1Lw3W8/uwpZA==}
+ engines: {node: '>=v18'}
+ dependencies:
+ chalk: 4.1.2
+ dev: true
+
/@csstools/css-parser-algorithms@2.4.0(@csstools/css-tokenizer@2.2.2):
resolution: {integrity: sha512-/PPLr2g5PAUCKAPEbfyk6/baZA+WJHQtUhPkoCQMpyRE8I0lXrG1QFRN8e5s3ZYxM8d/g5BZc6lH3s8Op7/VEg==}
engines: {node: ^14 || ^16 || >=18}
@@ -1711,14 +1903,14 @@ packages:
postcss-selector-parser: 6.0.13
dev: true
- /@dcloudio/types@3.4.3:
- resolution: {integrity: sha512-WzQGX06z2+HU3HnOO+/DxX37jyUECSXCuI7GVjFXs10+ZExTbdouwQXZvH8hR7k/FjuXFjQKHV9fuvfexyXluw==}
+ /@dcloudio/types@3.4.7:
+ resolution: {integrity: sha512-RuErDYDAWY3KMlACT5NhJAKPxwjFjdzt7I/n50xCBvCSnH/84CzDPDJHRmmP6c0VOfMDHmV88V+sRBvBQRSp+w==}
- /@dcloudio/uni-app-plus@3.0.0-3090920231225001(postcss@8.4.32)(vite@4.0.3)(vue@3.2.47):
+ /@dcloudio/uni-app-plus@3.0.0-3090920231225001(postcss@8.4.32)(vite@5.0.12)(vue@3.2.47):
resolution: {integrity: sha512-TCzWHbwuheEBSzpTqpHh/imhj4Rkwdg48m9C7ZLqun5runI056TEUdrpfuLBVuwsttk5NSpqm11ywS7GSSM7Mg==}
dependencies:
'@dcloudio/uni-app-uts': 3.0.0-3090920231225001(postcss@8.4.32)(vue@3.2.47)
- '@dcloudio/uni-app-vite': 3.0.0-3090920231225001(postcss@8.4.32)(vite@4.0.3)(vue@3.2.47)
+ '@dcloudio/uni-app-vite': 3.0.0-3090920231225001(postcss@8.4.32)(vite@5.0.12)(vue@3.2.47)
'@dcloudio/uni-app-vue': 3.0.0-3090920231225001
debug: 4.3.4
fs-extra: 10.1.0
@@ -1767,7 +1959,7 @@ packages:
- vue
dev: false
- /@dcloudio/uni-app-vite@3.0.0-3090920231225001(postcss@8.4.32)(vite@4.0.3)(vue@3.2.47):
+ /@dcloudio/uni-app-vite@3.0.0-3090920231225001(postcss@8.4.32)(vite@5.0.12)(vue@3.2.47):
resolution: {integrity: sha512-MkmI3qzsGYrT787lRMyhb/DdIF9mE/BbhrExwM/RBshnVzl6rjQIKx5lIG94t58WIaP7Jcl/pJw+IPAe1FTQyQ==}
dependencies:
'@dcloudio/uni-cli-shared': 3.0.0-3090920231225001(postcss@8.4.32)(vue@3.2.47)
@@ -1775,7 +1967,7 @@ packages:
'@dcloudio/uni-nvue-styler': 3.0.0-3090920231225001
'@dcloudio/uni-shared': 3.0.0-3090920231225001
'@rollup/pluginutils': 4.2.1
- '@vitejs/plugin-vue': 4.5.2(vite@4.0.3)(vue@3.2.47)
+ '@vitejs/plugin-vue': 4.5.2(vite@5.0.12)(vue@3.2.47)
'@vue/compiler-dom': 3.2.47
'@vue/compiler-sfc': 3.2.47
debug: 4.3.4
@@ -1793,12 +1985,12 @@ packages:
resolution: {integrity: sha512-D7I4jGSnpBihSXXeckRSD152Da2N2vKDtGF1sbNe2m1R04W36AkVUtzFGpSOml4MNIedCGtzGWXKaX7rIU+mFA==}
dev: false
- /@dcloudio/uni-app@3.0.0-3090920231225001(@dcloudio/types@3.4.3)(postcss@8.4.32)(vue@3.2.47):
+ /@dcloudio/uni-app@3.0.0-3090920231225001(@dcloudio/types@3.4.7)(postcss@8.4.32)(vue@3.2.47):
resolution: {integrity: sha512-NsGrGjNmHc2zH1c5eqnHwSxuMNse+RknCQWIIWnnz+Q8lqHc1I9zf2mzxYXyNBHy4VhGRY2zblhkUyWLtGRaaA==}
peerDependencies:
'@dcloudio/types': ^3.3.2
dependencies:
- '@dcloudio/types': 3.4.3
+ '@dcloudio/types': 3.4.7
'@dcloudio/uni-cloud': 3.0.0-3090920231225001(postcss@8.4.32)(vue@3.2.47)
'@dcloudio/uni-components': 3.0.0-3090920231225001(postcss@8.4.32)(vue@3.2.47)
'@dcloudio/uni-i18n': 3.0.0-3090920231225001
@@ -2246,7 +2438,7 @@ packages:
deprecated: '@1.4.29'
dev: false
- /@dcloudio/vite-plugin-uni@3.0.0-3090920231225001(postcss@8.4.32)(vite@4.0.3)(vue@3.2.47):
+ /@dcloudio/vite-plugin-uni@3.0.0-3090920231225001(postcss@8.4.32)(vite@5.0.12)(vue@3.2.47):
resolution: {integrity: sha512-kV/J7yl5ojsd1NZZ1eMziRDrz+MPbjDMm6rWG3fyW1u8Kzj06jUzzi7HRlkaWiPJHAmeRWGDf/6RFoSd+8fYCg==}
engines: {node: ^14.18.0 || >=16.0.0}
hasBin: true
@@ -2259,9 +2451,9 @@ packages:
'@dcloudio/uni-cli-shared': 3.0.0-3090920231225001(postcss@8.4.32)(vue@3.2.47)
'@dcloudio/uni-shared': 3.0.0-3090920231225001
'@rollup/pluginutils': 4.2.1
- '@vitejs/plugin-legacy': 4.1.1(terser@5.26.0)(vite@4.0.3)
- '@vitejs/plugin-vue': 4.5.2(vite@4.0.3)(vue@3.2.47)
- '@vitejs/plugin-vue-jsx': 3.1.0(vite@4.0.3)(vue@3.2.47)
+ '@vitejs/plugin-legacy': 4.1.1(terser@5.26.0)(vite@5.0.12)
+ '@vitejs/plugin-vue': 4.5.2(vite@5.0.12)(vue@3.2.47)
+ '@vitejs/plugin-vue-jsx': 3.1.0(vite@5.0.12)(vue@3.2.47)
'@vue/compiler-core': 3.2.47
'@vue/compiler-dom': 3.2.47
'@vue/compiler-sfc': 3.2.47
@@ -2278,7 +2470,7 @@ packages:
picocolors: 1.0.0
terser: 5.26.0
unplugin-auto-import: 0.16.7
- vite: 4.0.3(@types/node@20.11.5)(sass@1.69.5)(terser@5.26.0)
+ vite: 5.0.12(@types/node@20.11.16)(sass@1.69.5)(terser@5.26.0)
transitivePeerDependencies:
- '@nuxt/kit'
- '@vueuse/core'
@@ -2298,11 +2490,11 @@ packages:
jsdoc-type-pratt-parser: 4.0.0
dev: true
- /@esbuild/android-arm64@0.16.17:
- resolution: {integrity: sha512-MIGl6p5sc3RDTLLkYL1MyL8BMRN4tLMRCn+yRJJmEDvYZ2M7tmAf80hx1kbNEUX2KJ50RRtxZ4JHLvCfuB6kBg==}
+ /@esbuild/aix-ppc64@0.19.12:
+ resolution: {integrity: sha512-bmoCYyWdEL3wDQIVbcyzRyeKLgk2WtWLTWz1ZIAZF/EGbNOwSA6ew3PftJ1PqMiOOGu0OyFMzG53L0zqIpPeNA==}
engines: {node: '>=12'}
- cpu: [arm64]
- os: [android]
+ cpu: [ppc64]
+ os: [aix]
requiresBuild: true
optional: true
@@ -2314,10 +2506,10 @@ packages:
requiresBuild: true
optional: true
- /@esbuild/android-arm@0.16.17:
- resolution: {integrity: sha512-N9x1CMXVhtWEAMS7pNNONyA14f71VPQN9Cnavj1XQh6T7bskqiLLrSca4O0Vr8Wdcga943eThxnVp3JLnBMYtw==}
+ /@esbuild/android-arm64@0.19.12:
+ resolution: {integrity: sha512-P0UVNGIienjZv3f5zq0DP3Nt2IE/3plFzuaS96vihvD0Hd6H/q4WXUGpCxD/E8YrSXfNyRPbpTq+T8ZQioSuPA==}
engines: {node: '>=12'}
- cpu: [arm]
+ cpu: [arm64]
os: [android]
requiresBuild: true
optional: true
@@ -2330,10 +2522,10 @@ packages:
requiresBuild: true
optional: true
- /@esbuild/android-x64@0.16.17:
- resolution: {integrity: sha512-a3kTv3m0Ghh4z1DaFEuEDfz3OLONKuFvI4Xqczqx4BqLyuFaFkuaG4j2MtA6fuWEFeC5x9IvqnX7drmRq/fyAQ==}
+ /@esbuild/android-arm@0.19.12:
+ resolution: {integrity: sha512-qg/Lj1mu3CdQlDEEiWrlC4eaPZ1KztwGJ9B6J+/6G+/4ewxJg7gqj8eVYWvao1bXrqGiW2rsBZFSX3q2lcW05w==}
engines: {node: '>=12'}
- cpu: [x64]
+ cpu: [arm]
os: [android]
requiresBuild: true
optional: true
@@ -2346,11 +2538,11 @@ packages:
requiresBuild: true
optional: true
- /@esbuild/darwin-arm64@0.16.17:
- resolution: {integrity: sha512-/2agbUEfmxWHi9ARTX6OQ/KgXnOWfsNlTeLcoV7HSuSTv63E4DqtAc+2XqGw1KHxKMHGZgbVCZge7HXWX9Vn+w==}
+ /@esbuild/android-x64@0.19.12:
+ resolution: {integrity: sha512-3k7ZoUW6Q6YqhdhIaq/WZ7HwBpnFBlW905Fa4s4qWJyiNOgT1dOqDiVAQFwBH7gBRZr17gLrlFCRzF6jFh7Kew==}
engines: {node: '>=12'}
- cpu: [arm64]
- os: [darwin]
+ cpu: [x64]
+ os: [android]
requiresBuild: true
optional: true
@@ -2362,10 +2554,10 @@ packages:
requiresBuild: true
optional: true
- /@esbuild/darwin-x64@0.16.17:
- resolution: {integrity: sha512-2By45OBHulkd9Svy5IOCZt376Aa2oOkiE9QWUK9fe6Tb+WDr8hXL3dpqi+DeLiMed8tVXspzsTAvd0jUl96wmg==}
+ /@esbuild/darwin-arm64@0.19.12:
+ resolution: {integrity: sha512-B6IeSgZgtEzGC42jsI+YYu9Z3HKRxp8ZT3cqhvliEHovq8HSX2YX8lNocDn79gCKJXOSaEot9MVYky7AKjCs8g==}
engines: {node: '>=12'}
- cpu: [x64]
+ cpu: [arm64]
os: [darwin]
requiresBuild: true
optional: true
@@ -2378,11 +2570,11 @@ packages:
requiresBuild: true
optional: true
- /@esbuild/freebsd-arm64@0.16.17:
- resolution: {integrity: sha512-mt+cxZe1tVx489VTb4mBAOo2aKSnJ33L9fr25JXpqQqzbUIw/yzIzi+NHwAXK2qYV1lEFp4OoVeThGjUbmWmdw==}
+ /@esbuild/darwin-x64@0.19.12:
+ resolution: {integrity: sha512-hKoVkKzFiToTgn+41qGhsUJXFlIjxI/jSYeZf3ugemDYZldIXIxhvwN6erJGlX4t5h417iFuheZ7l+YVn05N3A==}
engines: {node: '>=12'}
- cpu: [arm64]
- os: [freebsd]
+ cpu: [x64]
+ os: [darwin]
requiresBuild: true
optional: true
@@ -2394,10 +2586,10 @@ packages:
requiresBuild: true
optional: true
- /@esbuild/freebsd-x64@0.16.17:
- resolution: {integrity: sha512-8ScTdNJl5idAKjH8zGAsN7RuWcyHG3BAvMNpKOBaqqR7EbUhhVHOqXRdL7oZvz8WNHL2pr5+eIT5c65kA6NHug==}
+ /@esbuild/freebsd-arm64@0.19.12:
+ resolution: {integrity: sha512-4aRvFIXmwAcDBw9AueDQ2YnGmz5L6obe5kmPT8Vd+/+x/JMVKCgdcRwH6APrbpNXsPz+K653Qg8HB/oXvXVukA==}
engines: {node: '>=12'}
- cpu: [x64]
+ cpu: [arm64]
os: [freebsd]
requiresBuild: true
optional: true
@@ -2410,11 +2602,11 @@ packages:
requiresBuild: true
optional: true
- /@esbuild/linux-arm64@0.16.17:
- resolution: {integrity: sha512-7S8gJnSlqKGVJunnMCrXHU9Q8Q/tQIxk/xL8BqAP64wchPCTzuM6W3Ra8cIa1HIflAvDnNOt2jaL17vaW+1V0g==}
+ /@esbuild/freebsd-x64@0.19.12:
+ resolution: {integrity: sha512-EYoXZ4d8xtBoVN7CEwWY2IN4ho76xjYXqSXMNccFSx2lgqOG/1TBPW0yPx1bJZk94qu3tX0fycJeeQsKovA8gg==}
engines: {node: '>=12'}
- cpu: [arm64]
- os: [linux]
+ cpu: [x64]
+ os: [freebsd]
requiresBuild: true
optional: true
@@ -2426,10 +2618,10 @@ packages:
requiresBuild: true
optional: true
- /@esbuild/linux-arm@0.16.17:
- resolution: {integrity: sha512-iihzrWbD4gIT7j3caMzKb/RsFFHCwqqbrbH9SqUSRrdXkXaygSZCZg1FybsZz57Ju7N/SHEgPyaR0LZ8Zbe9gQ==}
+ /@esbuild/linux-arm64@0.19.12:
+ resolution: {integrity: sha512-EoTjyYyLuVPfdPLsGVVVC8a0p1BFFvtpQDB/YLEhaXyf/5bczaGeN15QkR+O4S5LeJ92Tqotve7i1jn35qwvdA==}
engines: {node: '>=12'}
- cpu: [arm]
+ cpu: [arm64]
os: [linux]
requiresBuild: true
optional: true
@@ -2442,10 +2634,10 @@ packages:
requiresBuild: true
optional: true
- /@esbuild/linux-ia32@0.16.17:
- resolution: {integrity: sha512-kiX69+wcPAdgl3Lonh1VI7MBr16nktEvOfViszBSxygRQqSpzv7BffMKRPMFwzeJGPxcio0pdD3kYQGpqQ2SSg==}
+ /@esbuild/linux-arm@0.19.12:
+ resolution: {integrity: sha512-J5jPms//KhSNv+LO1S1TX1UWp1ucM6N6XuL6ITdKWElCu8wXP72l9MM0zDTzzeikVyqFE6U8YAV9/tFyj0ti+w==}
engines: {node: '>=12'}
- cpu: [ia32]
+ cpu: [arm]
os: [linux]
requiresBuild: true
optional: true
@@ -2458,10 +2650,10 @@ packages:
requiresBuild: true
optional: true
- /@esbuild/linux-loong64@0.16.17:
- resolution: {integrity: sha512-dTzNnQwembNDhd654cA4QhbS9uDdXC3TKqMJjgOWsC0yNCbpzfWoXdZvp0mY7HU6nzk5E0zpRGGx3qoQg8T2DQ==}
+ /@esbuild/linux-ia32@0.19.12:
+ resolution: {integrity: sha512-Thsa42rrP1+UIGaWz47uydHSBOgTUnwBwNq59khgIwktK6x60Hivfbux9iNR0eHCHzOLjLMLfUMLCypBkZXMHA==}
engines: {node: '>=12'}
- cpu: [loong64]
+ cpu: [ia32]
os: [linux]
requiresBuild: true
optional: true
@@ -2474,10 +2666,10 @@ packages:
requiresBuild: true
optional: true
- /@esbuild/linux-mips64el@0.16.17:
- resolution: {integrity: sha512-ezbDkp2nDl0PfIUn0CsQ30kxfcLTlcx4Foz2kYv8qdC6ia2oX5Q3E/8m6lq84Dj/6b0FrkgD582fJMIfHhJfSw==}
+ /@esbuild/linux-loong64@0.19.12:
+ resolution: {integrity: sha512-LiXdXA0s3IqRRjm6rV6XaWATScKAXjI4R4LoDlvO7+yQqFdlr1Bax62sRwkVvRIrwXxvtYEHHI4dm50jAXkuAA==}
engines: {node: '>=12'}
- cpu: [mips64el]
+ cpu: [loong64]
os: [linux]
requiresBuild: true
optional: true
@@ -2490,10 +2682,10 @@ packages:
requiresBuild: true
optional: true
- /@esbuild/linux-ppc64@0.16.17:
- resolution: {integrity: sha512-dzS678gYD1lJsW73zrFhDApLVdM3cUF2MvAa1D8K8KtcSKdLBPP4zZSLy6LFZ0jYqQdQ29bjAHJDgz0rVbLB3g==}
+ /@esbuild/linux-mips64el@0.19.12:
+ resolution: {integrity: sha512-fEnAuj5VGTanfJ07ff0gOA6IPsvrVHLVb6Lyd1g2/ed67oU1eFzL0r9WL7ZzscD+/N6i3dWumGE1Un4f7Amf+w==}
engines: {node: '>=12'}
- cpu: [ppc64]
+ cpu: [mips64el]
os: [linux]
requiresBuild: true
optional: true
@@ -2506,10 +2698,10 @@ packages:
requiresBuild: true
optional: true
- /@esbuild/linux-riscv64@0.16.17:
- resolution: {integrity: sha512-ylNlVsxuFjZK8DQtNUwiMskh6nT0vI7kYl/4fZgV1llP5d6+HIeL/vmmm3jpuoo8+NuXjQVZxmKuhDApK0/cKw==}
+ /@esbuild/linux-ppc64@0.19.12:
+ resolution: {integrity: sha512-nYJA2/QPimDQOh1rKWedNOe3Gfc8PabU7HT3iXWtNUbRzXS9+vgB0Fjaqr//XNbd82mCxHzik2qotuI89cfixg==}
engines: {node: '>=12'}
- cpu: [riscv64]
+ cpu: [ppc64]
os: [linux]
requiresBuild: true
optional: true
@@ -2522,10 +2714,10 @@ packages:
requiresBuild: true
optional: true
- /@esbuild/linux-s390x@0.16.17:
- resolution: {integrity: sha512-gzy7nUTO4UA4oZ2wAMXPNBGTzZFP7mss3aKR2hH+/4UUkCOyqmjXiKpzGrY2TlEUhbbejzXVKKGazYcQTZWA/w==}
+ /@esbuild/linux-riscv64@0.19.12:
+ resolution: {integrity: sha512-2MueBrlPQCw5dVJJpQdUYgeqIzDQgw3QtiAHUC4RBz9FXPrskyyU3VI1hw7C0BSKB9OduwSJ79FTCqtGMWqJHg==}
engines: {node: '>=12'}
- cpu: [s390x]
+ cpu: [riscv64]
os: [linux]
requiresBuild: true
optional: true
@@ -2538,10 +2730,10 @@ packages:
requiresBuild: true
optional: true
- /@esbuild/linux-x64@0.16.17:
- resolution: {integrity: sha512-mdPjPxfnmoqhgpiEArqi4egmBAMYvaObgn4poorpUaqmvzzbvqbowRllQ+ZgzGVMGKaPkqUmPDOOFQRUFDmeUw==}
+ /@esbuild/linux-s390x@0.19.12:
+ resolution: {integrity: sha512-+Pil1Nv3Umes4m3AZKqA2anfhJiVmNCYkPchwFJNEJN5QxmTs1uzyy4TvmDrCRNT2ApwSari7ZIgrPeUx4UZDg==}
engines: {node: '>=12'}
- cpu: [x64]
+ cpu: [s390x]
os: [linux]
requiresBuild: true
optional: true
@@ -2554,11 +2746,11 @@ packages:
requiresBuild: true
optional: true
- /@esbuild/netbsd-x64@0.16.17:
- resolution: {integrity: sha512-/PzmzD/zyAeTUsduZa32bn0ORug+Jd1EGGAUJvqfeixoEISYpGnAezN6lnJoskauoai0Jrs+XSyvDhppCPoKOA==}
+ /@esbuild/linux-x64@0.19.12:
+ resolution: {integrity: sha512-B71g1QpxfwBvNrfyJdVDexenDIt1CiDN1TIXLbhOw0KhJzE78KIFGX6OJ9MrtC0oOqMWf+0xop4qEU8JrJTwCg==}
engines: {node: '>=12'}
cpu: [x64]
- os: [netbsd]
+ os: [linux]
requiresBuild: true
optional: true
@@ -2570,11 +2762,11 @@ packages:
requiresBuild: true
optional: true
- /@esbuild/openbsd-x64@0.16.17:
- resolution: {integrity: sha512-2yaWJhvxGEz2RiftSk0UObqJa/b+rIAjnODJgv2GbGGpRwAfpgzyrg1WLK8rqA24mfZa9GvpjLcBBg8JHkoodg==}
+ /@esbuild/netbsd-x64@0.19.12:
+ resolution: {integrity: sha512-3ltjQ7n1owJgFbuC61Oj++XhtzmymoCihNFgT84UAmJnxJfm4sYCiSLTXZtE00VWYpPMYc+ZQmB6xbSdVh0JWA==}
engines: {node: '>=12'}
cpu: [x64]
- os: [openbsd]
+ os: [netbsd]
requiresBuild: true
optional: true
@@ -2586,11 +2778,11 @@ packages:
requiresBuild: true
optional: true
- /@esbuild/sunos-x64@0.16.17:
- resolution: {integrity: sha512-xtVUiev38tN0R3g8VhRfN7Zl42YCJvyBhRKw1RJjwE1d2emWTVToPLNEQj/5Qxc6lVFATDiy6LjVHYhIPrLxzw==}
+ /@esbuild/openbsd-x64@0.19.12:
+ resolution: {integrity: sha512-RbrfTB9SWsr0kWmb9srfF+L933uMDdu9BIzdA7os2t0TXhCRjrQyCeOt6wVxr79CKD4c+p+YhCj31HBkYcXebw==}
engines: {node: '>=12'}
cpu: [x64]
- os: [sunos]
+ os: [openbsd]
requiresBuild: true
optional: true
@@ -2602,11 +2794,11 @@ packages:
requiresBuild: true
optional: true
- /@esbuild/win32-arm64@0.16.17:
- resolution: {integrity: sha512-ga8+JqBDHY4b6fQAmOgtJJue36scANy4l/rL97W+0wYmijhxKetzZdKOJI7olaBaMhWt8Pac2McJdZLxXWUEQw==}
+ /@esbuild/sunos-x64@0.19.12:
+ resolution: {integrity: sha512-HKjJwRrW8uWtCQnQOz9qcU3mUZhTUQvi56Q8DPTLLB+DawoiQdjsYq+j+D3s9I8VFtDr+F9CjgXKKC4ss89IeA==}
engines: {node: '>=12'}
- cpu: [arm64]
- os: [win32]
+ cpu: [x64]
+ os: [sunos]
requiresBuild: true
optional: true
@@ -2618,10 +2810,10 @@ packages:
requiresBuild: true
optional: true
- /@esbuild/win32-ia32@0.16.17:
- resolution: {integrity: sha512-WnsKaf46uSSF/sZhwnqE4L/F89AYNMiD4YtEcYekBt9Q7nj0DiId2XH2Ng2PHM54qi5oPrQ8luuzGszqi/veig==}
+ /@esbuild/win32-arm64@0.19.12:
+ resolution: {integrity: sha512-URgtR1dJnmGvX864pn1B2YUYNzjmXkuJOIqG2HdU62MVS4EHpU2946OZoTMnRUHklGtJdJZ33QfzdjGACXhn1A==}
engines: {node: '>=12'}
- cpu: [ia32]
+ cpu: [arm64]
os: [win32]
requiresBuild: true
optional: true
@@ -2634,10 +2826,10 @@ packages:
requiresBuild: true
optional: true
- /@esbuild/win32-x64@0.16.17:
- resolution: {integrity: sha512-y+EHuSchhL7FjHgvQL/0fnnFmO4T1bhvWANX6gcnqTjtnKWbTvUMCpGnv2+t+31d7RzyEAYAd4u2fnIhHL6N/Q==}
+ /@esbuild/win32-ia32@0.19.12:
+ resolution: {integrity: sha512-+ZOE6pUkMOJfmxmBZElNOx72NKpIa/HFOMGzu8fqzQJ5kgf6aTGrcJaFsNiVMH4JKpMipyK+7k0n2UXN7a8YKQ==}
engines: {node: '>=12'}
- cpu: [x64]
+ cpu: [ia32]
os: [win32]
requiresBuild: true
optional: true
@@ -2650,6 +2842,14 @@ packages:
requiresBuild: true
optional: true
+ /@esbuild/win32-x64@0.19.12:
+ resolution: {integrity: sha512-T1QyPSDCyMXaO3pzBkF96E8xMkiRYbUEZADd29SyPGabqxMViNoii+NcK7eWJAEoU6RZyEm5lVSIjTmcdoB9HA==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [win32]
+ requiresBuild: true
+ optional: true
+
/@eslint-community/eslint-utils@4.4.0(eslint@8.56.0):
resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
@@ -2730,6 +2930,19 @@ packages:
- supports-color
dev: true
+ /@iconify/utils@2.1.20:
+ resolution: {integrity: sha512-t8TeKlYK/5i9yTY9VAGAE4P0qQHd/0vH+VSRO+bdpxlt8wqB6f2I0/IrciRsdeFZPMoL8IICgP7lgl2ZtbG8Tw==}
+ dependencies:
+ '@antfu/install-pkg': 0.1.1
+ '@antfu/utils': 0.7.7
+ '@iconify/types': 2.0.0
+ debug: 4.3.4
+ kolorist: 1.8.0
+ local-pkg: 0.5.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
/@intlify/core-base@9.1.9:
resolution: {integrity: sha512-x5T0p/Ja0S8hs5xs+ImKyYckVkL4CzcEXykVYYV6rcbXxJTe2o58IquSqX9bdncVKbRZP7GlBU1EcRaQEEJ+vw==}
engines: {node: '>= 10'}
@@ -2821,7 +3034,7 @@ packages:
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dependencies:
'@jest/types': 27.5.1
- '@types/node': 20.11.5
+ '@types/node': 20.11.16
chalk: 4.1.2
jest-message-util: 27.5.1
jest-util: 27.5.1
@@ -2842,7 +3055,7 @@ packages:
'@jest/test-result': 27.5.1
'@jest/transform': 27.5.1
'@jest/types': 27.5.1
- '@types/node': 20.11.5
+ '@types/node': 20.11.16
ansi-escapes: 4.3.2
chalk: 4.1.2
emittery: 0.8.1
@@ -2879,7 +3092,7 @@ packages:
dependencies:
'@jest/fake-timers': 27.5.1
'@jest/types': 27.5.1
- '@types/node': 20.11.5
+ '@types/node': 20.11.16
jest-mock: 27.5.1
dev: true
@@ -2889,7 +3102,7 @@ packages:
dependencies:
'@jest/types': 27.5.1
'@sinonjs/fake-timers': 8.1.0
- '@types/node': 20.11.5
+ '@types/node': 20.11.16
jest-message-util: 27.5.1
jest-mock: 27.5.1
jest-util: 27.5.1
@@ -2918,7 +3131,7 @@ packages:
'@jest/test-result': 27.5.1
'@jest/transform': 27.5.1
'@jest/types': 27.5.1
- '@types/node': 20.11.5
+ '@types/node': 20.11.16
chalk: 4.1.2
collect-v8-coverage: 1.0.2
exit: 0.1.2
@@ -3002,7 +3215,7 @@ packages:
dependencies:
'@types/istanbul-lib-coverage': 2.0.6
'@types/istanbul-reports': 3.0.4
- '@types/node': 20.11.5
+ '@types/node': 20.11.16
'@types/yargs': 16.0.9
chalk: 4.1.2
dev: true
@@ -3497,6 +3710,102 @@ packages:
estree-walker: 2.0.2
picomatch: 2.3.1
+ /@rollup/rollup-android-arm-eabi@4.9.6:
+ resolution: {integrity: sha512-MVNXSSYN6QXOulbHpLMKYi60ppyO13W9my1qogeiAqtjb2yR4LSmfU2+POvDkLzhjYLXz9Rf9+9a3zFHW1Lecg==}
+ cpu: [arm]
+ os: [android]
+ requiresBuild: true
+ optional: true
+
+ /@rollup/rollup-android-arm64@4.9.6:
+ resolution: {integrity: sha512-T14aNLpqJ5wzKNf5jEDpv5zgyIqcpn1MlwCrUXLrwoADr2RkWA0vOWP4XxbO9aiO3dvMCQICZdKeDrFl7UMClw==}
+ cpu: [arm64]
+ os: [android]
+ requiresBuild: true
+ optional: true
+
+ /@rollup/rollup-darwin-arm64@4.9.6:
+ resolution: {integrity: sha512-CqNNAyhRkTbo8VVZ5R85X73H3R5NX9ONnKbXuHisGWC0qRbTTxnF1U4V9NafzJbgGM0sHZpdO83pLPzq8uOZFw==}
+ cpu: [arm64]
+ os: [darwin]
+ requiresBuild: true
+ optional: true
+
+ /@rollup/rollup-darwin-x64@4.9.6:
+ resolution: {integrity: sha512-zRDtdJuRvA1dc9Mp6BWYqAsU5oeLixdfUvkTHuiYOHwqYuQ4YgSmi6+/lPvSsqc/I0Omw3DdICx4Tfacdzmhog==}
+ cpu: [x64]
+ os: [darwin]
+ requiresBuild: true
+ optional: true
+
+ /@rollup/rollup-linux-arm-gnueabihf@4.9.6:
+ resolution: {integrity: sha512-oNk8YXDDnNyG4qlNb6is1ojTOGL/tRhbbKeE/YuccItzerEZT68Z9gHrY3ROh7axDc974+zYAPxK5SH0j/G+QQ==}
+ cpu: [arm]
+ os: [linux]
+ requiresBuild: true
+ optional: true
+
+ /@rollup/rollup-linux-arm64-gnu@4.9.6:
+ resolution: {integrity: sha512-Z3O60yxPtuCYobrtzjo0wlmvDdx2qZfeAWTyfOjEDqd08kthDKexLpV97KfAeUXPosENKd8uyJMRDfFMxcYkDQ==}
+ cpu: [arm64]
+ os: [linux]
+ libc: [glibc]
+ requiresBuild: true
+ optional: true
+
+ /@rollup/rollup-linux-arm64-musl@4.9.6:
+ resolution: {integrity: sha512-gpiG0qQJNdYEVad+1iAsGAbgAnZ8j07FapmnIAQgODKcOTjLEWM9sRb+MbQyVsYCnA0Im6M6QIq6ax7liws6eQ==}
+ cpu: [arm64]
+ os: [linux]
+ libc: [musl]
+ requiresBuild: true
+ optional: true
+
+ /@rollup/rollup-linux-riscv64-gnu@4.9.6:
+ resolution: {integrity: sha512-+uCOcvVmFUYvVDr27aiyun9WgZk0tXe7ThuzoUTAukZJOwS5MrGbmSlNOhx1j80GdpqbOty05XqSl5w4dQvcOA==}
+ cpu: [riscv64]
+ os: [linux]
+ libc: [glibc]
+ requiresBuild: true
+ optional: true
+
+ /@rollup/rollup-linux-x64-gnu@4.9.6:
+ resolution: {integrity: sha512-HUNqM32dGzfBKuaDUBqFB7tP6VMN74eLZ33Q9Y1TBqRDn+qDonkAUyKWwF9BR9unV7QUzffLnz9GrnKvMqC/fw==}
+ cpu: [x64]
+ os: [linux]
+ libc: [glibc]
+ requiresBuild: true
+ optional: true
+
+ /@rollup/rollup-linux-x64-musl@4.9.6:
+ resolution: {integrity: sha512-ch7M+9Tr5R4FK40FHQk8VnML0Szi2KRujUgHXd/HjuH9ifH72GUmw6lStZBo3c3GB82vHa0ZoUfjfcM7JiiMrQ==}
+ cpu: [x64]
+ os: [linux]
+ libc: [musl]
+ requiresBuild: true
+ optional: true
+
+ /@rollup/rollup-win32-arm64-msvc@4.9.6:
+ resolution: {integrity: sha512-VD6qnR99dhmTQ1mJhIzXsRcTBvTjbfbGGwKAHcu+52cVl15AC/kplkhxzW/uT0Xl62Y/meBKDZvoJSJN+vTeGA==}
+ cpu: [arm64]
+ os: [win32]
+ requiresBuild: true
+ optional: true
+
+ /@rollup/rollup-win32-ia32-msvc@4.9.6:
+ resolution: {integrity: sha512-J9AFDq/xiRI58eR2NIDfyVmTYGyIZmRcvcAoJ48oDld/NTR8wyiPUu2X/v1navJ+N/FGg68LEbX3Ejd6l8B7MQ==}
+ cpu: [ia32]
+ os: [win32]
+ requiresBuild: true
+ optional: true
+
+ /@rollup/rollup-win32-x64-msvc@4.9.6:
+ resolution: {integrity: sha512-jqzNLhNDvIZOrt69Ce4UjGRpXJBzhUBzawMwnaDAwyHriki3XollsewxWzOzz+4yOFDkuJHtTsZFwMxhYJWmLQ==}
+ cpu: [x64]
+ os: [win32]
+ requiresBuild: true
+ optional: true
+
/@sinonjs/commons@1.8.6:
resolution: {integrity: sha512-Ky+XkAkqPZSm3NLBeUng77EBQl3cmeJhITaGHdYH8kjVB+aun3S4XBRti2zt17mtt0mIUDiNxYeoJm6drVvBJQ==}
dependencies:
@@ -3533,15 +3842,15 @@ packages:
- eslint
dev: true
- /@stylistic/eslint-plugin-ts@0.0.11(eslint@8.56.0)(typescript@4.9.5):
+ /@stylistic/eslint-plugin-ts@0.0.11(eslint@8.56.0)(typescript@5.3.3):
resolution: {integrity: sha512-pqXk5bplEpQVP0B9Isci/8DJq0dQfAUdNHwwax2t9pcPeUUKDylVuP4L5zqo/2K1GplZxmhV5l5u4gLfX2Qqzw==}
peerDependencies:
eslint: '*'
dependencies:
'@stylistic/eslint-plugin-js': 0.0.11(eslint@8.56.0)
'@typescript-eslint/scope-manager': 6.15.0
- '@typescript-eslint/type-utils': 6.15.0(eslint@8.56.0)(typescript@4.9.5)
- '@typescript-eslint/utils': 6.15.0(eslint@8.56.0)(typescript@4.9.5)
+ '@typescript-eslint/type-utils': 6.15.0(eslint@8.56.0)(typescript@5.3.3)
+ '@typescript-eslint/utils': 6.15.0(eslint@8.56.0)(typescript@5.3.3)
eslint: 8.56.0
graphemer: 1.4.0
transitivePeerDependencies:
@@ -3549,14 +3858,14 @@ packages:
- typescript
dev: true
- /@stylistic/eslint-plugin@0.0.11(eslint@8.56.0)(typescript@4.9.5):
+ /@stylistic/eslint-plugin@0.0.11(eslint@8.56.0)(typescript@5.3.3):
resolution: {integrity: sha512-Fi7nSdTV7rLQZTcj/vsedYujVtH032BjcXJ9tNUMYgEa6SNMmCtxxcfYIWKsquji/Ciqai/J1JLkAGXkWR1FRQ==}
peerDependencies:
eslint: '*'
dependencies:
'@stylistic/eslint-plugin-js': 0.0.11(eslint@8.56.0)
'@stylistic/eslint-plugin-jsx': 0.0.11(eslint@8.56.0)
- '@stylistic/eslint-plugin-ts': 0.0.11(eslint@8.56.0)(typescript@4.9.5)
+ '@stylistic/eslint-plugin-ts': 0.0.11(eslint@8.56.0)(typescript@5.3.3)
eslint: 8.56.0
transitivePeerDependencies:
- supports-color
@@ -3608,7 +3917,7 @@ packages:
/@types/graceful-fs@4.1.9:
resolution: {integrity: sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==}
dependencies:
- '@types/node': 20.11.5
+ '@types/node': 20.11.16
dev: true
/@types/istanbul-lib-coverage@2.0.6:
@@ -3655,14 +3964,8 @@ packages:
resolution: {integrity: sha512-hov8bUuiLiyFPGyFPE1lwWhmzYbirOXQNNo40+y3zow8aFVTeyn3VWL0VFFfdNddA8S4Vf0Tc062rzyNr7Paag==}
dev: true
- /@types/node@18.19.3:
- resolution: {integrity: sha512-k5fggr14DwAytoA/t8rPrIz++lXK7/DqckthCmoZOKNsEbJkId4Z//BqgApXBUGrGddrigYa1oqheo/7YmW4rg==}
- dependencies:
- undici-types: 5.26.5
- dev: true
-
- /@types/node@20.11.5:
- resolution: {integrity: sha512-g557vgQjUUfN76MZAN/dt1z3dzcUsimuysco0KeluHgrPdJXkP/XdAURgyO2W9fZWHRtRBiVKzKn8vyOAwlG+w==}
+ /@types/node@20.11.16:
+ resolution: {integrity: sha512-gKb0enTmRCzXSSUJDq6/sPcqrfCv2mkkG6Jt/clpn5eiCbKTY+SgZUxo+p8ZKMof5dCp9vHQUAB7wOUTod22wQ==}
dependencies:
undici-types: 5.26.5
@@ -3685,7 +3988,7 @@ packages:
/@types/svgo@2.6.4:
resolution: {integrity: sha512-l4cmyPEckf8moNYHdJ+4wkHvFxjyW6ulm9l4YGaOxeyBWPhBOT0gvni1InpFPdzx1dKf/2s62qGITwxNWnPQng==}
dependencies:
- '@types/node': 20.11.5
+ '@types/node': 20.11.16
dev: true
/@types/unist@2.0.10:
@@ -3706,7 +4009,7 @@ packages:
'@types/yargs-parser': 21.0.3
dev: true
- /@typescript-eslint/eslint-plugin@6.15.0(@typescript-eslint/parser@6.15.0)(eslint@8.56.0)(typescript@4.9.5):
+ /@typescript-eslint/eslint-plugin@6.15.0(@typescript-eslint/parser@6.15.0)(eslint@8.56.0)(typescript@5.3.3):
resolution: {integrity: sha512-j5qoikQqPccq9QoBAupOP+CBu8BaJ8BLjaXSioDISeTZkVO3ig7oSIKh3H+rEpee7xCXtWwSB4KIL5l6hWZzpg==}
engines: {node: ^16.0.0 || >=18.0.0}
peerDependencies:
@@ -3718,10 +4021,10 @@ packages:
optional: true
dependencies:
'@eslint-community/regexpp': 4.10.0
- '@typescript-eslint/parser': 6.15.0(eslint@8.56.0)(typescript@4.9.5)
+ '@typescript-eslint/parser': 6.15.0(eslint@8.56.0)(typescript@5.3.3)
'@typescript-eslint/scope-manager': 6.15.0
- '@typescript-eslint/type-utils': 6.15.0(eslint@8.56.0)(typescript@4.9.5)
- '@typescript-eslint/utils': 6.15.0(eslint@8.56.0)(typescript@4.9.5)
+ '@typescript-eslint/type-utils': 6.15.0(eslint@8.56.0)(typescript@5.3.3)
+ '@typescript-eslint/utils': 6.15.0(eslint@8.56.0)(typescript@5.3.3)
'@typescript-eslint/visitor-keys': 6.15.0
debug: 4.3.4
eslint: 8.56.0
@@ -3729,13 +4032,13 @@ packages:
ignore: 5.3.0
natural-compare: 1.4.0
semver: 7.5.4
- ts-api-utils: 1.0.3(typescript@4.9.5)
- typescript: 4.9.5
+ ts-api-utils: 1.0.3(typescript@5.3.3)
+ typescript: 5.3.3
transitivePeerDependencies:
- supports-color
dev: true
- /@typescript-eslint/parser@6.15.0(eslint@8.56.0)(typescript@4.9.5):
+ /@typescript-eslint/parser@6.15.0(eslint@8.56.0)(typescript@5.3.3):
resolution: {integrity: sha512-MkgKNnsjC6QwcMdlNAel24jjkEO/0hQaMDLqP4S9zq5HBAUJNQB6y+3DwLjX7b3l2b37eNAxMPLwb3/kh8VKdA==}
engines: {node: ^16.0.0 || >=18.0.0}
peerDependencies:
@@ -3747,11 +4050,11 @@ packages:
dependencies:
'@typescript-eslint/scope-manager': 6.15.0
'@typescript-eslint/types': 6.15.0
- '@typescript-eslint/typescript-estree': 6.15.0(typescript@4.9.5)
+ '@typescript-eslint/typescript-estree': 6.15.0(typescript@5.3.3)
'@typescript-eslint/visitor-keys': 6.15.0
debug: 4.3.4
eslint: 8.56.0
- typescript: 4.9.5
+ typescript: 5.3.3
transitivePeerDependencies:
- supports-color
dev: true
@@ -3764,7 +4067,7 @@ packages:
'@typescript-eslint/visitor-keys': 6.15.0
dev: true
- /@typescript-eslint/type-utils@6.15.0(eslint@8.56.0)(typescript@4.9.5):
+ /@typescript-eslint/type-utils@6.15.0(eslint@8.56.0)(typescript@5.3.3):
resolution: {integrity: sha512-CnmHKTfX6450Bo49hPg2OkIm/D/TVYV7jO1MCfPYGwf6x3GO0VU8YMO5AYMn+u3X05lRRxA4fWCz87GFQV6yVQ==}
engines: {node: ^16.0.0 || >=18.0.0}
peerDependencies:
@@ -3774,12 +4077,12 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/typescript-estree': 6.15.0(typescript@4.9.5)
- '@typescript-eslint/utils': 6.15.0(eslint@8.56.0)(typescript@4.9.5)
+ '@typescript-eslint/typescript-estree': 6.15.0(typescript@5.3.3)
+ '@typescript-eslint/utils': 6.15.0(eslint@8.56.0)(typescript@5.3.3)
debug: 4.3.4
eslint: 8.56.0
- ts-api-utils: 1.0.3(typescript@4.9.5)
- typescript: 4.9.5
+ ts-api-utils: 1.0.3(typescript@5.3.3)
+ typescript: 5.3.3
transitivePeerDependencies:
- supports-color
dev: true
@@ -3789,7 +4092,7 @@ packages:
engines: {node: ^16.0.0 || >=18.0.0}
dev: true
- /@typescript-eslint/typescript-estree@6.15.0(typescript@4.9.5):
+ /@typescript-eslint/typescript-estree@6.15.0(typescript@5.3.3):
resolution: {integrity: sha512-7mVZJN7Hd15OmGuWrp2T9UvqR2Ecg+1j/Bp1jXUEY2GZKV6FXlOIoqVDmLpBiEiq3katvj/2n2mR0SDwtloCew==}
engines: {node: ^16.0.0 || >=18.0.0}
peerDependencies:
@@ -3804,13 +4107,13 @@ packages:
globby: 11.1.0
is-glob: 4.0.3
semver: 7.5.4
- ts-api-utils: 1.0.3(typescript@4.9.5)
- typescript: 4.9.5
+ ts-api-utils: 1.0.3(typescript@5.3.3)
+ typescript: 5.3.3
transitivePeerDependencies:
- supports-color
dev: true
- /@typescript-eslint/utils@6.15.0(eslint@8.56.0)(typescript@4.9.5):
+ /@typescript-eslint/utils@6.15.0(eslint@8.56.0)(typescript@5.3.3):
resolution: {integrity: sha512-eF82p0Wrrlt8fQSRL0bGXzK5nWPRV2dYQZdajcfzOD9+cQz9O7ugifrJxclB+xVOvWvagXfqS4Es7vpLP4augw==}
engines: {node: ^16.0.0 || >=18.0.0}
peerDependencies:
@@ -3821,7 +4124,7 @@ packages:
'@types/semver': 7.5.6
'@typescript-eslint/scope-manager': 6.15.0
'@typescript-eslint/types': 6.15.0
- '@typescript-eslint/typescript-estree': 6.15.0(typescript@4.9.5)
+ '@typescript-eslint/typescript-estree': 6.15.0(typescript@5.3.3)
eslint: 8.56.0
semver: 7.5.4
transitivePeerDependencies:
@@ -3841,15 +4144,15 @@ packages:
resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==}
dev: true
- /@uni-helper/uni-app-types@0.5.12(typescript@4.9.5):
+ /@uni-helper/uni-app-types@0.5.12(typescript@5.3.3):
resolution: {integrity: sha512-SeUEgDgGftI4XEp1AB3C6IFLnRPT83tgTCCmlLUBmQyHh+UhRY+CX4QtgQ0n/kF8txNUq8Bc9YwKlYdXQGx6Ww==}
engines: {node: '>=14.18'}
peerDependencies:
typescript: ^4.8.0 || ^5.0.0
dependencies:
- '@dcloudio/types': 3.4.3
- typescript: 4.9.5
- vue3: /vue@3.4.15(typescript@4.9.5)
+ '@dcloudio/types': 3.4.7
+ typescript: 5.3.3
+ vue3: /vue@3.4.15(typescript@5.3.3)
dev: true
/@uni-helper/uni-cloud-types@0.5.2(@uni-helper/uni-app-types@0.5.12):
@@ -3861,8 +4164,8 @@ packages:
'@uni-helper/uni-app-types':
optional: true
dependencies:
- '@dcloudio/types': 3.4.3
- '@uni-helper/uni-app-types': 0.5.12(typescript@4.9.5)
+ '@dcloudio/types': 3.4.7
+ '@uni-helper/uni-app-types': 0.5.12(typescript@5.3.3)
vue3: /vue@3.2.47
dev: true
@@ -3870,10 +4173,10 @@ packages:
resolution: {integrity: sha512-K6MEnmN7Dg+NnEkfUUhjaKc/rPVY7tcGdsVUKOlC1/z2E6H6zjSSTdJg8z+sVJtZ03Ff1G/MHz2PYDyAS6gjQQ==}
dev: true
- /@uni-helper/uni-env@0.1.1(eslint-import-resolver-typescript@3.6.1)(typescript@4.9.5):
+ /@uni-helper/uni-env@0.1.1(eslint-import-resolver-typescript@3.6.1)(typescript@5.3.3):
resolution: {integrity: sha512-NGQMOyqCF8VAEi3wWbJLKRwqhMldmFvITMs0j/bvVJ2jjUwN+0ofpPF3aHakCGpuY577DRx4coVN2iYmCb75fw==}
dependencies:
- '@antfu/eslint-config': 1.0.0-beta.27(eslint-import-resolver-typescript@3.6.1)(eslint@8.56.0)(typescript@4.9.5)
+ '@antfu/eslint-config': 1.0.0-beta.27(eslint-import-resolver-typescript@3.6.1)(eslint@8.56.0)(typescript@5.3.3)
eslint: 8.56.0
std-env: 3.7.0
transitivePeerDependencies:
@@ -3893,21 +4196,21 @@ packages:
'@uni-helper/uni-app-types':
optional: true
dependencies:
- '@dcloudio/types': 3.4.3
- '@uni-helper/uni-app-types': 0.5.12(typescript@4.9.5)
+ '@dcloudio/types': 3.4.7
+ '@uni-helper/uni-app-types': 0.5.12(typescript@5.3.3)
vue3: /vue@3.2.47
dev: true
- /@uni-helper/unocss-preset-uni@0.2.5(eslint-import-resolver-typescript@3.6.1)(postcss@8.4.32)(typescript@4.9.5)(vite@4.0.3):
+ /@uni-helper/unocss-preset-uni@0.2.5(eslint-import-resolver-typescript@3.6.1)(postcss@8.4.32)(typescript@5.3.3)(vite@5.0.12):
resolution: {integrity: sha512-Lhh/Eo6vRhflcf7lmx1vQ6sOL7nB9YDqy+zJ9MOJd2MWV9AYxFBfHRV6in2THRl2YUA2HO8wg/NdP7pabk/MlQ==}
requiresBuild: true
dependencies:
- '@uni-helper/uni-env': 0.1.1(eslint-import-resolver-typescript@3.6.1)(typescript@4.9.5)
+ '@uni-helper/uni-env': 0.1.1(eslint-import-resolver-typescript@3.6.1)(typescript@5.3.3)
'@unocss/core': 0.57.7
'@unocss/preset-mini': 0.57.7
'@unocss/rule-utils': 0.57.7
- '@unocss/vite': 0.57.7(vite@4.0.3)
- unocss: 0.57.7(postcss@8.4.32)(vite@4.0.3)
+ '@unocss/vite': 0.57.7(vite@5.0.12)
+ unocss: 0.57.7(postcss@8.4.32)(vite@5.0.12)
unocss-applet: 0.7.8
transitivePeerDependencies:
- '@unocss/webpack'
@@ -3921,11 +4224,11 @@ packages:
- vitest
dev: true
- /@uni-helper/vite-plugin-uni-layouts@0.1.7(eslint-import-resolver-typescript@3.6.1)(typescript@4.9.5):
+ /@uni-helper/vite-plugin-uni-layouts@0.1.7(eslint-import-resolver-typescript@3.6.1)(typescript@5.3.3):
resolution: {integrity: sha512-15WO1XO5gd3IMWELgu2zt3mZh47u3Zlts/srzw+xgECteiQcuBAft89qxBNv+2/TJecg1HJF7z+fb7oFDJIyhA==}
dependencies:
'@babel/types': 7.23.6
- '@uni-helper/uni-env': 0.1.1(eslint-import-resolver-typescript@3.6.1)(typescript@4.9.5)
+ '@uni-helper/uni-env': 0.1.1(eslint-import-resolver-typescript@3.6.1)(typescript@5.3.3)
'@vue/compiler-core': 3.3.13
'@vue/compiler-sfc': 3.3.13
ast-kit: 0.11.3
@@ -3997,7 +4300,7 @@ packages:
resolution: {integrity: sha512-YiBe5wFMEDdAuIwXPBFs6nA7i1Igskx1oLIl/xHXb6jEBqWGqTj1P/nx0XsrS0hu1YW7T7JsTCtSoLAdPmAPuA==}
dev: true
- /@unocss/astro@0.57.7(vite@4.0.3):
+ /@unocss/astro@0.57.7(vite@5.0.12):
resolution: {integrity: sha512-X4KSBdrAADdtS4x7xz02b016xpRDt9mD/d/oq23HyZAZ+sZc4oZs8el9MLSUJgu2okdWzAE62lRRV/oc4HWI1A==}
peerDependencies:
vite: ^2.9.0 || ^3.0.0-0 || ^4.0.0 || ^5.0.0-0
@@ -4007,24 +4310,24 @@ packages:
dependencies:
'@unocss/core': 0.57.7
'@unocss/reset': 0.57.7
- '@unocss/vite': 0.57.7(vite@4.0.3)
- vite: 4.0.3(@types/node@20.11.5)(sass@1.69.5)(terser@5.26.0)
+ '@unocss/vite': 0.57.7(vite@5.0.12)
+ vite: 5.0.12(@types/node@20.11.16)(sass@1.69.5)(terser@5.26.0)
transitivePeerDependencies:
- rollup
dev: true
- /@unocss/astro@0.58.0(vite@4.0.3):
- resolution: {integrity: sha512-df+tEFO5eKXjQOwSWQhS9IdjD0sfLHLtn8U09sEKR2Nmh5CvpwyBxmvLQgOCilPou7ehmyKfsyGRLZg7IMp+Ew==}
+ /@unocss/astro@0.58.4(vite@5.0.12):
+ resolution: {integrity: sha512-feS8+f3oPmCeR1XF7isQjs3Z9ojM5Ssv0vCNR/dexPFdROfccK/7sIu1YnHWtVg1trPc1kMfI8XJRqfrHMdd5w==}
peerDependencies:
vite: ^2.9.0 || ^3.0.0-0 || ^4.0.0 || ^5.0.0-0
peerDependenciesMeta:
vite:
optional: true
dependencies:
- '@unocss/core': 0.58.0
- '@unocss/reset': 0.58.0
- '@unocss/vite': 0.58.0(vite@4.0.3)
- vite: 4.0.3(@types/node@20.11.5)(sass@1.69.5)(terser@5.26.0)
+ '@unocss/core': 0.58.4
+ '@unocss/reset': 0.58.4
+ '@unocss/vite': 0.58.4(vite@5.0.12)
+ vite: 5.0.12(@types/node@20.11.16)(sass@1.69.5)(terser@5.26.0)
transitivePeerDependencies:
- rollup
dev: true
@@ -4051,23 +4354,23 @@ packages:
- rollup
dev: true
- /@unocss/cli@0.58.0:
- resolution: {integrity: sha512-rhsrDBxAVueygMcAbMkbuvsHbBL2rG6N96LllYwHn16FLgOE3Sf4JW1/LlNjQje3BtwMMtbSCCAeu2SryFhzbw==}
+ /@unocss/cli@0.58.4:
+ resolution: {integrity: sha512-8dAs1TzzWCtb3FxoTsVtR2+JGkdmchuP0RvGlSywADf5FqYn9nbP0m3z4STtpPavHO9JaGbabStyjS0nA8Ck6w==}
engines: {node: '>=14'}
hasBin: true
dependencies:
'@ampproject/remapping': 2.2.1
'@rollup/pluginutils': 5.1.0
- '@unocss/config': 0.58.0
- '@unocss/core': 0.58.0
- '@unocss/preset-uno': 0.58.0
+ '@unocss/config': 0.58.4
+ '@unocss/core': 0.58.4
+ '@unocss/preset-uno': 0.58.4
cac: 6.7.14
chokidar: 3.5.3
colorette: 2.0.20
consola: 3.2.3
fast-glob: 3.3.2
magic-string: 0.30.5
- pathe: 1.1.1
+ pathe: 1.1.2
perfect-debounce: 1.0.0
transitivePeerDependencies:
- rollup
@@ -4081,11 +4384,11 @@ packages:
unconfig: 0.3.11
dev: true
- /@unocss/config@0.58.0:
- resolution: {integrity: sha512-WQD29gCZ7cajnMzezD1PRW0qQSxo/C6PX9ktygwhdinFx9nXuLZnKFOz65TiI8y48e53g1i7ivvgY3m4Sq5mIg==}
+ /@unocss/config@0.58.4:
+ resolution: {integrity: sha512-b/inDCOnhUPzobhj+SxRI7xeSwoAQU+3D3J5JoWZNPBI4OaJdwpuz40uLXl9VsPz5N6dc8/qa+FrSsgCjUcLTg==}
engines: {node: '>=14'}
dependencies:
- '@unocss/core': 0.58.0
+ '@unocss/core': 0.58.4
unconfig: 0.3.11
dev: true
@@ -4097,8 +4400,8 @@ packages:
resolution: {integrity: sha512-1d36M0CV3yC80J0pqOa5rH1BX6g2iZdtKmIb3oSBN4AWnMCSrrJEPBrUikyMq2TEQTrYWJIVDzv5A9hBUat3TA==}
dev: true
- /@unocss/core@0.58.0:
- resolution: {integrity: sha512-KhABQXGE2AgtO9vE28d+HnciuyGDcuygsnQdUwlzUuR4K05OSw2kRE9emRN4HaMycD+gA/zDbQrJxTXb6mQUiA==}
+ /@unocss/core@0.58.4:
+ resolution: {integrity: sha512-wh4pxXUCkhC+C/0ct74PMYeZgX+oWuHj2mnvr09nM0WmvOm1HeeISrDCCBGcxmKbErUk+D1v3JgzXF7b6j2l4g==}
dev: true
/@unocss/extractor-arbitrary-variants@0.56.5:
@@ -4113,10 +4416,10 @@ packages:
'@unocss/core': 0.57.7
dev: true
- /@unocss/extractor-arbitrary-variants@0.58.0:
- resolution: {integrity: sha512-s9wK2UugJM0WK1HpgPz2kTbpeyQc46zais+nauN/ykVX6NMq8PtGzSWszzf+0aIbtWAQGiqAfiYNTpf09tJHfg==}
+ /@unocss/extractor-arbitrary-variants@0.58.4:
+ resolution: {integrity: sha512-TQlVtSQk8YdBU9KuTA5k6JBJ8d/aPrIsCWjDPfBvAqDvrll/dzwBCLoLTQMdCHFjCXCOYWKPum1ET+Wn9R+XbA==}
dependencies:
- '@unocss/core': 0.58.0
+ '@unocss/core': 0.58.4
dev: true
/@unocss/inspector@0.57.7:
@@ -4128,11 +4431,11 @@ packages:
sirv: 2.0.4
dev: true
- /@unocss/inspector@0.58.0:
- resolution: {integrity: sha512-ZC4QauFGdh3/VkzW/FqkO2R03JEbzGNuX0DK03pwas8/jFIGh8pPldesj8GEKm1YWr1emx9cw7JUnhR8XSUBlA==}
+ /@unocss/inspector@0.58.4:
+ resolution: {integrity: sha512-BbsaIMqP6dqa3qCfkC0nkvjCg11JRigvFPU4319imTPcTHQNQSg35t2mVFPGZ+QYHlU/3ouBeogUQfJDHBmtVQ==}
dependencies:
- '@unocss/core': 0.58.0
- '@unocss/rule-utils': 0.58.0
+ '@unocss/core': 0.58.4
+ '@unocss/rule-utils': 0.58.4
gzip-size: 6.0.0
sirv: 2.0.4
dev: true
@@ -4152,15 +4455,15 @@ packages:
postcss: 8.4.32
dev: true
- /@unocss/postcss@0.58.0(postcss@8.4.32):
- resolution: {integrity: sha512-2hAwLbfUFqysi8FN1cn3xkHy5GhLMlYy6W4NrAZ2ws7F2MKpsCT2xCj7dT5cI2tW8ulD2YoVbKH15dBhNsMNUA==}
+ /@unocss/postcss@0.58.4(postcss@8.4.32):
+ resolution: {integrity: sha512-pg2qCGakV1TyMApPdvuvqqmPDhgogPWF14J97BT5zIfGYITAJSmBsm7d3+06w6EuqIS+vcYRw+qCV3oX6qTeiA==}
engines: {node: '>=14'}
peerDependencies:
postcss: ^8.4.21
dependencies:
- '@unocss/config': 0.58.0
- '@unocss/core': 0.58.0
- '@unocss/rule-utils': 0.58.0
+ '@unocss/config': 0.58.4
+ '@unocss/core': 0.58.4
+ '@unocss/rule-utils': 0.58.4
css-tree: 2.3.1
fast-glob: 3.3.2
magic-string: 0.30.5
@@ -4173,10 +4476,10 @@ packages:
'@unocss/core': 0.57.7
dev: true
- /@unocss/preset-attributify@0.58.0:
- resolution: {integrity: sha512-Ew78noYes12K9gk4dF36MkjpiIqTi1XVqcniiAzxCkzuctxN4B57vW3LVTwjInGmWNNKWN3UNR4q1o0VxH4xJg==}
+ /@unocss/preset-attributify@0.58.4:
+ resolution: {integrity: sha512-r7pDXgcOgGMmrMoqM4/w20KKn4PxF+/vpElatAGXW3V/tHJWFOLGzk+wYeCMgMxeC+vPzqyJkjTfoqYlZrlokQ==}
dependencies:
- '@unocss/core': 0.58.0
+ '@unocss/core': 0.58.4
dev: true
/@unocss/preset-icons@0.57.7:
@@ -4189,11 +4492,11 @@ packages:
- supports-color
dev: true
- /@unocss/preset-icons@0.58.0:
- resolution: {integrity: sha512-niT32avw+8l+L40LGhrmX6qDV9Z8/gOn4xjjRhLZZouKni3CJOpz9taILyF4xp1nak5nxGT4wa0tuC/htvOF5A==}
+ /@unocss/preset-icons@0.58.4:
+ resolution: {integrity: sha512-xdOe3PLfEWS4y+rA7Gxh/kDI82VkW0PbdoYO2FBwXH7a0JegdUDD5zuOTsTKAIymvQ7eVH53WXN9mcuhfNmdvQ==}
dependencies:
- '@iconify/utils': 2.1.13
- '@unocss/core': 0.58.0
+ '@iconify/utils': 2.1.20
+ '@unocss/core': 0.58.4
ofetch: 1.3.3
transitivePeerDependencies:
- supports-color
@@ -4215,12 +4518,12 @@ packages:
'@unocss/rule-utils': 0.57.7
dev: true
- /@unocss/preset-mini@0.58.0:
- resolution: {integrity: sha512-oMliJZVTN3ecAvf52yN+MyJszaJOZoKwMMbUAFqVis62MaqRzZ8mSw12QFLFyX2pltulDFpMBTAKro+hP0wXEg==}
+ /@unocss/preset-mini@0.58.4:
+ resolution: {integrity: sha512-cpIWUYxLi4VCkkjxpNJOVqH9D32NX1ebRFaoAVnvCRsoj5TRsZJSdxs0WMN7reHT/CUHh0Wh6d3TfMCFxzbZ4g==}
dependencies:
- '@unocss/core': 0.58.0
- '@unocss/extractor-arbitrary-variants': 0.58.0
- '@unocss/rule-utils': 0.58.0
+ '@unocss/core': 0.58.4
+ '@unocss/extractor-arbitrary-variants': 0.58.4
+ '@unocss/rule-utils': 0.58.4
dev: true
/@unocss/preset-tagify@0.57.7:
@@ -4229,10 +4532,10 @@ packages:
'@unocss/core': 0.57.7
dev: true
- /@unocss/preset-tagify@0.58.0:
- resolution: {integrity: sha512-I+dzfs/bofiGb2AUxkhcTDhB+r2+/3SO81PFwf3Ae7afnzhA2SLsKAkEqO8YN3M3mwZL7IfXn6vpsWeEAlk/yw==}
+ /@unocss/preset-tagify@0.58.4:
+ resolution: {integrity: sha512-1E3vQvg5Qy4tbgovvrV0JaIXFfcdhK4NCSz+MuUk5ZYgKGVDh4IEw0WPuic534nlLm9+YFqyCSLLyIs3bT/GYQ==}
dependencies:
- '@unocss/core': 0.58.0
+ '@unocss/core': 0.58.4
dev: true
/@unocss/preset-typography@0.57.7:
@@ -4242,11 +4545,11 @@ packages:
'@unocss/preset-mini': 0.57.7
dev: true
- /@unocss/preset-typography@0.58.0:
- resolution: {integrity: sha512-8qo+Z1CJtXFMDbAvtizUTRLuLxCIzytgYU0GmuRkfc2iwASSDNDsvh8nAYQfWpyAEOV7QEHtS9c9xL4b0c89FA==}
+ /@unocss/preset-typography@0.58.4:
+ resolution: {integrity: sha512-0Opt3Y0At4F03092iwGgz7HswRC2ElBXHR+IO9wWxSbldtpdmKzFJ/GBHEalzQjacWnyyzmRjabjA2quoQ8FQA==}
dependencies:
- '@unocss/core': 0.58.0
- '@unocss/preset-mini': 0.58.0
+ '@unocss/core': 0.58.4
+ '@unocss/preset-mini': 0.58.4
dev: true
/@unocss/preset-uno@0.56.5:
@@ -4267,13 +4570,13 @@ packages:
'@unocss/rule-utils': 0.57.7
dev: true
- /@unocss/preset-uno@0.58.0:
- resolution: {integrity: sha512-DpgfjtvSgsWeyZH+jQHc1k5IReiZNb7oGpHVnfF6SlHETTnMHSeNetxkPQWYrqJLPI6llNLPTdTa5j47NtmOiA==}
+ /@unocss/preset-uno@0.58.4:
+ resolution: {integrity: sha512-FWBPGIt0UcQHu58l75kvhB4vF2v+s2m0OW9DnIrPm3aY7Qj3q4yA2wdahR37qSsH+6vR3JP4+mV9WBrGjIsjrQ==}
dependencies:
- '@unocss/core': 0.58.0
- '@unocss/preset-mini': 0.58.0
- '@unocss/preset-wind': 0.58.0
- '@unocss/rule-utils': 0.58.0
+ '@unocss/core': 0.58.4
+ '@unocss/preset-mini': 0.58.4
+ '@unocss/preset-wind': 0.58.4
+ '@unocss/rule-utils': 0.58.4
dev: true
/@unocss/preset-web-fonts@0.57.7:
@@ -4283,10 +4586,10 @@ packages:
ofetch: 1.3.3
dev: true
- /@unocss/preset-web-fonts@0.58.0:
- resolution: {integrity: sha512-QarDDEUlexQ2IIn23pE1eHDskG2Tz+JjCe+FAN0DoNLLhvUUWSB4cQIMFWP6dSMJ047Blj9IpgAl9dERICW1qQ==}
+ /@unocss/preset-web-fonts@0.58.4:
+ resolution: {integrity: sha512-vcy20fIK37GdhesRpiWGvCvkJDQsSiRF1jxw3dy8J5n9kFpIV8DQoPWUIE0ePF4i5ky2dHSDxKaNOP1bxHdKGA==}
dependencies:
- '@unocss/core': 0.58.0
+ '@unocss/core': 0.58.4
ofetch: 1.3.3
dev: true
@@ -4306,20 +4609,20 @@ packages:
'@unocss/rule-utils': 0.57.7
dev: true
- /@unocss/preset-wind@0.58.0:
- resolution: {integrity: sha512-2zgaIy9RAGie9CsUYCkYRDSERBi8kG6Q/mQLgNfP9HMz5IThlnDHFWF/hLAVD51xQUg9gH8qWBR9kN/1ioT5Tw==}
+ /@unocss/preset-wind@0.58.4:
+ resolution: {integrity: sha512-e2F0HsqPXw+nD85MKIZ63mx5yUx5g8iPOtMw9/eEUeK67HrD+jFxeLq0hAM3ou3a4589QIzeg23LXAkM7gCzvg==}
dependencies:
- '@unocss/core': 0.58.0
- '@unocss/preset-mini': 0.58.0
- '@unocss/rule-utils': 0.58.0
+ '@unocss/core': 0.58.4
+ '@unocss/preset-mini': 0.58.4
+ '@unocss/rule-utils': 0.58.4
dev: true
/@unocss/reset@0.57.7:
resolution: {integrity: sha512-oN9024WVrMewGbornnAPIpzHeKPIfVmZ5IsZGilWR761TnI5jTjHUkswsVoFx7tZdpCN2/bqS3JK/Ah0aot3NQ==}
dev: true
- /@unocss/reset@0.58.0:
- resolution: {integrity: sha512-UVZ5kz37JGbwAA06k/gjKYcekcTwi6oIhev1EpTtCvHLL6XYcYqcwb/u4Wjzprd3L3lxDGYXvGdjREGm2u7vbQ==}
+ /@unocss/reset@0.58.4:
+ resolution: {integrity: sha512-ZZTrAdl4WWmMjQdOqcOSWdgFH6kdFKZjPu4c6Ijxk7KvY2BW3nttTTBa7IYeuXFHVfcExUFqlOgRurt+NeWYyQ==}
dev: true
/@unocss/rule-utils@0.56.5:
@@ -4337,11 +4640,11 @@ packages:
magic-string: 0.30.5
dev: true
- /@unocss/rule-utils@0.58.0:
- resolution: {integrity: sha512-LBJ9dJ/j5UIMzJF7pmIig55MtJAYtG+tn/zQRveZuPRVahzP+KqwlyB7u3uCUnQhdgo/MJODMcqyr0jl6+kTuA==}
+ /@unocss/rule-utils@0.58.4:
+ resolution: {integrity: sha512-52Jp4I+joGTaDm7ehB/7uZ2kJL+9BZcYRDUVk4IDacDH5W9yxf1F75LzYT8jJVWXD/HIhiS0r9V6qhcBq2OWZw==}
engines: {node: '>=14'}
dependencies:
- '@unocss/core': 0.58.0
+ '@unocss/core': 0.58.4
magic-string: 0.30.5
dev: true
@@ -4349,8 +4652,8 @@ packages:
resolution: {integrity: sha512-pqWbKXcrTJ2ovVRTYFLnUX5ryEhdSXp7YfyBQT3zLtQb4nQ2XZcLTvGdWo7F+9jZ09yP7NdHscBLkeWgx+mVgw==}
dev: true
- /@unocss/scope@0.58.0:
- resolution: {integrity: sha512-XgUXZJvbxWSRC/DNOWI5DYdR6Nd6IZxsE5ls3AFA5msgtk5OH4YNQELLMabQw7xbRbU/fftlRJa3vncSfOyl6w==}
+ /@unocss/scope@0.58.4:
+ resolution: {integrity: sha512-JrX98xoYnv0HN41WyzlvCCU1T3jnDOry+V8mm2dB9DvByzxI484X6gtKbOXlJFAPwOlZPU5Bru/XTDaL6yQQww==}
dev: true
/@unocss/transformer-attributify-jsx-babel@0.57.7:
@@ -4364,13 +4667,13 @@ packages:
- supports-color
dev: true
- /@unocss/transformer-attributify-jsx-babel@0.58.0:
- resolution: {integrity: sha512-ckDq/q476x2yikjS8usmSUGuakqMQrg2pm8sdBINTPdJxGc7kJRvI5UDnzRw4W9hE5IH+E4gg0XfCtFad0O3eg==}
+ /@unocss/transformer-attributify-jsx-babel@0.58.4:
+ resolution: {integrity: sha512-yJd+OxAdgAxSQHVrqC6z19ibPqwwWO7J0TFf2caiP3hidSJ0iOvxcC0h62YCMr9dg4MsCpXaiHmGzxXbWGJ9nQ==}
dependencies:
- '@babel/core': 7.23.6
- '@babel/plugin-syntax-jsx': 7.23.3(@babel/core@7.23.6)
- '@babel/preset-typescript': 7.23.3(@babel/core@7.23.6)
- '@unocss/core': 0.58.0
+ '@babel/core': 7.23.9
+ '@babel/plugin-syntax-jsx': 7.23.3(@babel/core@7.23.9)
+ '@babel/preset-typescript': 7.23.3(@babel/core@7.23.9)
+ '@unocss/core': 0.58.4
transitivePeerDependencies:
- supports-color
dev: true
@@ -4381,10 +4684,10 @@ packages:
'@unocss/core': 0.57.7
dev: true
- /@unocss/transformer-attributify-jsx@0.58.0:
- resolution: {integrity: sha512-QDdBEFDE7ntfCH7+8zHRW72MIQ9NH3uYGUE7lYgr5Ap8qzBHCxMT1kUrY6gwuoo3U4dMu2wruglYRHD88hvGkw==}
+ /@unocss/transformer-attributify-jsx@0.58.4:
+ resolution: {integrity: sha512-Y4YMVkgY/EF7x0llV8Y42WGs8b77hbXkPstRLNeRD5x8KBNKnjYUXADwhTBEKXjDR8/y5Ewie8u43i1nbh1XuA==}
dependencies:
- '@unocss/core': 0.58.0
+ '@unocss/core': 0.58.4
dev: true
/@unocss/transformer-compile-class@0.57.7:
@@ -4393,10 +4696,10 @@ packages:
'@unocss/core': 0.57.7
dev: true
- /@unocss/transformer-compile-class@0.58.0:
- resolution: {integrity: sha512-/BysfTg2q9sGPfiRHqWw/bT60/gjpBGBRVkIFsG4WVT2pgf3BfQUPu5FumSvZSRd0rA/pR57Lp6ZREAdj6+q+A==}
+ /@unocss/transformer-compile-class@0.58.4:
+ resolution: {integrity: sha512-GPz462ogvtb64W0iweuB0Dcm1snGsGte0RlVpFUeG2eWlVqKMRvNRtYuive2Ky2zSZKefWJQBGk3Ti+7CM4wFA==}
dependencies:
- '@unocss/core': 0.58.0
+ '@unocss/core': 0.58.4
dev: true
/@unocss/transformer-directives@0.57.7:
@@ -4407,11 +4710,11 @@ packages:
css-tree: 2.3.1
dev: true
- /@unocss/transformer-directives@0.58.0:
- resolution: {integrity: sha512-sU2U/aIykRkGGbA4Qo9Z5XE/KqWf7KhBwC1m8pUoqjawsZex4aVnQgXzDPfcjtmy6pElwK0z2U5DnO+OK9vCgQ==}
+ /@unocss/transformer-directives@0.58.4:
+ resolution: {integrity: sha512-5g2XVhwpmu2IrGHqPwxh+S3ZtkC/AwAtLIBLWB1QNhY3HVzAAaOzcif6uarngrCTTDQSDmsjzm8TSAq26LtCmQ==}
dependencies:
- '@unocss/core': 0.58.0
- '@unocss/rule-utils': 0.58.0
+ '@unocss/core': 0.58.4
+ '@unocss/rule-utils': 0.58.4
css-tree: 2.3.1
dev: true
@@ -4421,13 +4724,13 @@ packages:
'@unocss/core': 0.57.7
dev: true
- /@unocss/transformer-variant-group@0.58.0:
- resolution: {integrity: sha512-O2n8uVIpNic57rrkaaQ8jnC1WJ9N6FkoqxatRDXZ368aJ1CJNya0ZcVUL6lGGND0bOLXen4WmEN62ZxEWTqdkA==}
+ /@unocss/transformer-variant-group@0.58.4:
+ resolution: {integrity: sha512-zpJ4TMor7aJ3SoLJm4jNBOSqikyXUdQEO1AxkILd9Zcn7JWRgudfFXiXnFP+WGJcs9mMLoUiISxzT8SKNCckfA==}
dependencies:
- '@unocss/core': 0.58.0
+ '@unocss/core': 0.58.4
dev: true
- /@unocss/vite@0.57.7(vite@4.0.3):
+ /@unocss/vite@0.57.7(vite@5.0.12):
resolution: {integrity: sha512-SbJrRgfc35MmgMBlHaEK4YpJVD2B0bmxH9PVgHRuDae/hOEOG0VqNP0f2ijJtX9HG3jOpQVlbEoGnUo8jsZtsw==}
peerDependencies:
vite: ^2.9.0 || ^3.0.0-0 || ^4.0.0 || ^5.0.0-0
@@ -4442,32 +4745,32 @@ packages:
chokidar: 3.5.3
fast-glob: 3.3.2
magic-string: 0.30.5
- vite: 4.0.3(@types/node@20.11.5)(sass@1.69.5)(terser@5.26.0)
+ vite: 5.0.12(@types/node@20.11.16)(sass@1.69.5)(terser@5.26.0)
transitivePeerDependencies:
- rollup
dev: true
- /@unocss/vite@0.58.0(vite@4.0.3):
- resolution: {integrity: sha512-OCUOLMSOBEtXOEyBbAvMI3/xdR175BWRzmvV9Wc34ANZclEvCdVH8+WU725ibjY4VT0gVIuX68b13fhXdHV41A==}
+ /@unocss/vite@0.58.4(vite@5.0.12):
+ resolution: {integrity: sha512-TqD5fIXv6NF3v10FFrCII//GRbkou6Dn/OzW+d4T5f0KM5+T6DutljpYUdGo0+2QXKDroUWLAspFUaZUx8iwVw==}
peerDependencies:
vite: ^2.9.0 || ^3.0.0-0 || ^4.0.0 || ^5.0.0-0
dependencies:
'@ampproject/remapping': 2.2.1
'@rollup/pluginutils': 5.1.0
- '@unocss/config': 0.58.0
- '@unocss/core': 0.58.0
- '@unocss/inspector': 0.58.0
- '@unocss/scope': 0.58.0
- '@unocss/transformer-directives': 0.58.0
+ '@unocss/config': 0.58.4
+ '@unocss/core': 0.58.4
+ '@unocss/inspector': 0.58.4
+ '@unocss/scope': 0.58.4
+ '@unocss/transformer-directives': 0.58.4
chokidar: 3.5.3
fast-glob: 3.3.2
magic-string: 0.30.5
- vite: 4.0.3(@types/node@20.11.5)(sass@1.69.5)(terser@5.26.0)
+ vite: 5.0.12(@types/node@20.11.16)(sass@1.69.5)(terser@5.26.0)
transitivePeerDependencies:
- rollup
dev: true
- /@vitejs/plugin-legacy@4.1.1(terser@5.26.0)(vite@4.0.3):
+ /@vitejs/plugin-legacy@4.1.1(terser@5.26.0)(vite@5.0.12):
resolution: {integrity: sha512-um3gbVouD2Q/g19C0qpDfHwveXDCAHzs8OC3e9g6aXpKoD1H14himgs7wkMnhAynBJy7QqUoZNAXDuqN8zLR2g==}
engines: {node: ^14.18.0 || >=16.0.0}
peerDependencies:
@@ -4482,12 +4785,12 @@ packages:
regenerator-runtime: 0.13.11
systemjs: 6.14.2
terser: 5.26.0
- vite: 4.0.3(@types/node@20.11.5)(sass@1.69.5)(terser@5.26.0)
+ vite: 5.0.12(@types/node@20.11.16)(sass@1.69.5)(terser@5.26.0)
transitivePeerDependencies:
- supports-color
dev: true
- /@vitejs/plugin-vue-jsx@3.1.0(vite@4.0.3)(vue@3.2.47):
+ /@vitejs/plugin-vue-jsx@3.1.0(vite@5.0.12)(vue@3.2.47):
resolution: {integrity: sha512-w9M6F3LSEU5kszVb9An2/MmXNxocAnUb3WhRr8bHlimhDrXNt6n6D2nJQR3UXpGlZHh/EsgouOHCsM8V3Ln+WA==}
engines: {node: ^14.18.0 || >=16.0.0}
peerDependencies:
@@ -4497,20 +4800,20 @@ packages:
'@babel/core': 7.23.6
'@babel/plugin-transform-typescript': 7.23.6(@babel/core@7.23.6)
'@vue/babel-plugin-jsx': 1.1.5(@babel/core@7.23.6)
- vite: 4.0.3(@types/node@20.11.5)(sass@1.69.5)(terser@5.26.0)
+ vite: 5.0.12(@types/node@20.11.16)(sass@1.69.5)(terser@5.26.0)
vue: 3.2.47
transitivePeerDependencies:
- supports-color
dev: true
- /@vitejs/plugin-vue@4.5.2(vite@4.0.3)(vue@3.2.47):
+ /@vitejs/plugin-vue@4.5.2(vite@5.0.12)(vue@3.2.47):
resolution: {integrity: sha512-UGR3DlzLi/SaVBPX0cnSyE37vqxU3O6chn8l0HJNzQzDia6/Au2A4xKv+iIJW8w2daf80G7TYHhi1pAUjdZ0bQ==}
engines: {node: ^14.18.0 || >=16.0.0}
peerDependencies:
vite: ^4.0.0 || ^5.0.0
vue: ^3.2.25
dependencies:
- vite: 4.0.3(@types/node@20.11.5)(sass@1.69.5)(terser@5.26.0)
+ vite: 5.0.12(@types/node@20.11.16)(sass@1.69.5)(terser@5.26.0)
vue: 3.2.47
/@volar/language-core@1.11.1:
@@ -4669,8 +4972,8 @@ packages:
resolution: {integrity: sha512-+KpckaAQyfbvshdDW5xQylLni1asvNSGme1JFs8I1+/H5pHEhqUKMEQD/qn3Nx5+/nycBq11qAEi8lk+LXI2dA==}
dev: false
- /@vue/language-core@1.8.25(typescript@4.9.5):
- resolution: {integrity: sha512-NJk/5DnAZlpvXX8BdWmHI45bWGLViUaS3R/RMrmFSvFMSbJKuEODpM4kR0F0Ofv5SFzCWuNiMhxameWpVdQsnA==}
+ /@vue/language-core@1.8.27(typescript@5.3.3):
+ resolution: {integrity: sha512-L8Kc27VdQserNaCUNiSFdDl9LWT24ly8Hpwf1ECy3aFb9m6bDhBGQYOujDm21N7EW3moKIOKEanQwe1q5BK+mA==}
peerDependencies:
typescript: '*'
peerDependenciesMeta:
@@ -4685,7 +4988,7 @@ packages:
minimatch: 9.0.3
muggle-string: 0.3.1
path-browserify: 1.0.1
- typescript: 4.9.5
+ typescript: 5.3.3
vue-template-compiler: 2.7.15
dev: true
@@ -4769,14 +5072,14 @@ packages:
'@vue/shared': 3.2.47
vue: 3.2.47
- /@vue/server-renderer@3.4.15(vue@3.2.47):
+ /@vue/server-renderer@3.4.15(vue@3.4.15):
resolution: {integrity: sha512-3HYzaidu9cHjrT+qGUuDhFYvF/j643bHC6uUN9BgM11DVy+pM6ATsG6uPBLnkwOgs7BpJABReLmpL3ZPAsUaqw==}
peerDependencies:
vue: 3.4.15
dependencies:
'@vue/compiler-ssr': 3.4.15
'@vue/shared': 3.4.15
- vue: 3.2.47
+ vue: 3.4.15(typescript@5.3.3)
dev: true
/@vue/shared@3.2.47:
@@ -4790,7 +5093,7 @@ packages:
resolution: {integrity: sha512-KzfPTxVaWfB+eGcGdbSf4CWdaXcGDqckoeXUh7SB3fZdEtzPCK2Vq9B/lRRL3yutax/LWITz+SwvgyOxz5V75g==}
dev: true
- /@vue/tsconfig@0.1.3(@types/node@20.11.5):
+ /@vue/tsconfig@0.1.3(@types/node@20.11.16):
resolution: {integrity: sha512-kQVsh8yyWPvHpb8gIc9l/HIDiiVUy1amynLNpCy8p+FoCiZXCo6fQos5/097MmnNZc9AtseDsCrfkhqCrJ8Olg==}
peerDependencies:
'@types/node': '*'
@@ -4798,7 +5101,7 @@ packages:
'@types/node':
optional: true
dependencies:
- '@types/node': 20.11.5
+ '@types/node': 20.11.16
dev: true
/JSONStream@1.3.5:
@@ -5683,14 +5986,15 @@ packages:
engines: {node: '>= 12.0.0'}
dev: true
- /commitlint@18.4.3(typescript@4.9.5):
+ /commitlint@18.4.3(@types/node@20.11.16)(typescript@5.3.3):
resolution: {integrity: sha512-xNAq3MpW4xZ3VyFH+WU0ykU8LmYcCT+0K4e1IOG5346XSGCb1xJyhFu0JFpq4LfJ7E0/bVxzPY98IsjUH2SQbQ==}
engines: {node: '>=v18'}
hasBin: true
dependencies:
- '@commitlint/cli': 18.4.3(typescript@4.9.5)
+ '@commitlint/cli': 18.6.0(@types/node@20.11.16)(typescript@5.3.3)
'@commitlint/types': 18.4.3
transitivePeerDependencies:
+ - '@types/node'
- typescript
dev: true
@@ -5801,7 +6105,7 @@ packages:
vary: 1.1.2
dev: true
- /cosmiconfig-typescript-loader@5.0.0(@types/node@18.19.3)(cosmiconfig@8.3.6)(typescript@4.9.5):
+ /cosmiconfig-typescript-loader@5.0.0(@types/node@20.11.16)(cosmiconfig@8.3.6)(typescript@5.3.3):
resolution: {integrity: sha512-+8cK7jRAReYkMwMiG+bxhcNKiHJDM6bR9FD/nGBXOWdMLuYawjF5cGrtLilJ+LGd3ZjCXnJjR5DkfWPoIVlqJA==}
engines: {node: '>=v16'}
peerDependencies:
@@ -5809,13 +6113,13 @@ packages:
cosmiconfig: '>=8.2'
typescript: '>=4'
dependencies:
- '@types/node': 18.19.3
- cosmiconfig: 8.3.6(typescript@4.9.5)
+ '@types/node': 20.11.16
+ cosmiconfig: 8.3.6(typescript@5.3.3)
jiti: 1.21.0
- typescript: 4.9.5
+ typescript: 5.3.3
dev: true
- /cosmiconfig@8.3.6(typescript@4.9.5):
+ /cosmiconfig@8.3.6(typescript@5.3.3):
resolution: {integrity: sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==}
engines: {node: '>=14'}
peerDependencies:
@@ -5828,10 +6132,10 @@ packages:
js-yaml: 4.1.0
parse-json: 5.2.0
path-type: 4.0.0
- typescript: 4.9.5
+ typescript: 5.3.3
dev: true
- /cosmiconfig@9.0.0(typescript@4.9.5):
+ /cosmiconfig@9.0.0(typescript@5.3.3):
resolution: {integrity: sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==}
engines: {node: '>=14'}
peerDependencies:
@@ -5844,7 +6148,7 @@ packages:
import-fresh: 3.3.0
js-yaml: 4.1.0
parse-json: 5.2.0
- typescript: 4.9.5
+ typescript: 5.3.3
dev: true
/cross-env@7.0.3:
@@ -6437,35 +6741,6 @@ packages:
is-symbol: 1.0.4
dev: true
- /esbuild@0.16.17:
- resolution: {integrity: sha512-G8LEkV0XzDMNwXKgM0Jwu3nY3lSTwSGY6XbxM9cr9+s0T/qSV1q1JVPBGzm3dcjhCic9+emZDmMffkwgPeOeLg==}
- engines: {node: '>=12'}
- hasBin: true
- requiresBuild: true
- optionalDependencies:
- '@esbuild/android-arm': 0.16.17
- '@esbuild/android-arm64': 0.16.17
- '@esbuild/android-x64': 0.16.17
- '@esbuild/darwin-arm64': 0.16.17
- '@esbuild/darwin-x64': 0.16.17
- '@esbuild/freebsd-arm64': 0.16.17
- '@esbuild/freebsd-x64': 0.16.17
- '@esbuild/linux-arm': 0.16.17
- '@esbuild/linux-arm64': 0.16.17
- '@esbuild/linux-ia32': 0.16.17
- '@esbuild/linux-loong64': 0.16.17
- '@esbuild/linux-mips64el': 0.16.17
- '@esbuild/linux-ppc64': 0.16.17
- '@esbuild/linux-riscv64': 0.16.17
- '@esbuild/linux-s390x': 0.16.17
- '@esbuild/linux-x64': 0.16.17
- '@esbuild/netbsd-x64': 0.16.17
- '@esbuild/openbsd-x64': 0.16.17
- '@esbuild/sunos-x64': 0.16.17
- '@esbuild/win32-arm64': 0.16.17
- '@esbuild/win32-ia32': 0.16.17
- '@esbuild/win32-x64': 0.16.17
-
/esbuild@0.17.19:
resolution: {integrity: sha512-XQ0jAPFkK/u3LcVRcvVHQcTIqD6E2H1fvZMA5dQPSOWb3suUbWbfbRf94pjc0bNzRYLfIrDRQXr7X+LHIm5oHw==}
engines: {node: '>=12'}
@@ -6495,6 +6770,36 @@ packages:
'@esbuild/win32-ia32': 0.17.19
'@esbuild/win32-x64': 0.17.19
+ /esbuild@0.19.12:
+ resolution: {integrity: sha512-aARqgq8roFBj054KvQr5f1sFu0D65G+miZRCuJyJ0G13Zwx7vRar5Zhn2tkQNzIXcBrNVsv/8stehpj+GAjgbg==}
+ engines: {node: '>=12'}
+ hasBin: true
+ requiresBuild: true
+ optionalDependencies:
+ '@esbuild/aix-ppc64': 0.19.12
+ '@esbuild/android-arm': 0.19.12
+ '@esbuild/android-arm64': 0.19.12
+ '@esbuild/android-x64': 0.19.12
+ '@esbuild/darwin-arm64': 0.19.12
+ '@esbuild/darwin-x64': 0.19.12
+ '@esbuild/freebsd-arm64': 0.19.12
+ '@esbuild/freebsd-x64': 0.19.12
+ '@esbuild/linux-arm': 0.19.12
+ '@esbuild/linux-arm64': 0.19.12
+ '@esbuild/linux-ia32': 0.19.12
+ '@esbuild/linux-loong64': 0.19.12
+ '@esbuild/linux-mips64el': 0.19.12
+ '@esbuild/linux-ppc64': 0.19.12
+ '@esbuild/linux-riscv64': 0.19.12
+ '@esbuild/linux-s390x': 0.19.12
+ '@esbuild/linux-x64': 0.19.12
+ '@esbuild/netbsd-x64': 0.19.12
+ '@esbuild/openbsd-x64': 0.19.12
+ '@esbuild/sunos-x64': 0.19.12
+ '@esbuild/win32-arm64': 0.19.12
+ '@esbuild/win32-ia32': 0.19.12
+ '@esbuild/win32-x64': 0.19.12
+
/escalade@3.1.1:
resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==}
engines: {node: '>=6'}
@@ -6596,7 +6901,7 @@ packages:
debug: 4.3.4
enhanced-resolve: 5.15.0
eslint: 8.56.0
- eslint-module-utils: 2.8.0(@typescript-eslint/parser@6.15.0)(eslint-import-resolver-typescript@3.6.1)(eslint@8.56.0)
+ eslint-module-utils: 2.8.0(@typescript-eslint/parser@6.15.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.56.0)
eslint-plugin-import: 2.29.1(@typescript-eslint/parser@6.15.0)(eslint-import-resolver-typescript@3.6.1)(eslint@8.56.0)
fast-glob: 3.3.2
get-tsconfig: 4.7.2
@@ -6630,7 +6935,7 @@ packages:
eslint-import-resolver-webpack:
optional: true
dependencies:
- '@typescript-eslint/parser': 6.15.0(eslint@8.56.0)(typescript@4.9.5)
+ '@typescript-eslint/parser': 6.15.0(eslint@8.56.0)(typescript@5.3.3)
debug: 3.2.7
eslint: 8.56.0
eslint-import-resolver-node: 0.3.9
@@ -6639,35 +6944,6 @@ packages:
- supports-color
dev: true
- /eslint-module-utils@2.8.0(@typescript-eslint/parser@6.15.0)(eslint-import-resolver-typescript@3.6.1)(eslint@8.56.0):
- resolution: {integrity: sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==}
- 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.15.0(eslint@8.56.0)(typescript@4.9.5)
- debug: 3.2.7
- eslint: 8.56.0
- eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@6.15.0)(eslint-plugin-import@2.29.1)(eslint@8.56.0)
- transitivePeerDependencies:
- - supports-color
- dev: true
-
/eslint-plugin-antfu@1.0.13(eslint@8.56.0):
resolution: {integrity: sha512-JzWEzNWZcNK4Q4Tz4VaNELhu3VgCv3obSYxUbK1UhbDBmr2v0a7H9n9xGv5GTS4LkEo905/2Gq6y0dcoBq5FZA==}
peerDependencies:
@@ -6731,7 +7007,7 @@ packages:
'@typescript-eslint/parser':
optional: true
dependencies:
- '@typescript-eslint/parser': 6.15.0(eslint@8.56.0)(typescript@4.9.5)
+ '@typescript-eslint/parser': 6.15.0(eslint@8.56.0)(typescript@5.3.3)
array-includes: 3.1.7
array.prototype.findlastindex: 1.2.3
array.prototype.flat: 1.3.2
@@ -6888,12 +7164,12 @@ packages:
'@typescript-eslint/eslint-plugin':
optional: true
dependencies:
- '@typescript-eslint/eslint-plugin': 6.15.0(@typescript-eslint/parser@6.15.0)(eslint@8.56.0)(typescript@4.9.5)
+ '@typescript-eslint/eslint-plugin': 6.15.0(@typescript-eslint/parser@6.15.0)(eslint@8.56.0)(typescript@5.3.3)
eslint: 8.56.0
eslint-rule-composer: 0.3.0
dev: true
- /eslint-plugin-vitest@0.3.18(@typescript-eslint/eslint-plugin@6.15.0)(eslint@8.56.0)(typescript@4.9.5):
+ /eslint-plugin-vitest@0.3.18(@typescript-eslint/eslint-plugin@6.15.0)(eslint@8.56.0)(typescript@5.3.3):
resolution: {integrity: sha512-IJzs6BpA//wkNxo5845uPIMOIp4j76MiKiagJ3hD6a2DemrktdpB7mmTjU0EeFuq14NXFoO1wN8Fwrx2VxWBRA==}
engines: {node: ^18.0.0 || >= 20.0.0}
peerDependencies:
@@ -6906,8 +7182,8 @@ packages:
vitest:
optional: true
dependencies:
- '@typescript-eslint/eslint-plugin': 6.15.0(@typescript-eslint/parser@6.15.0)(eslint@8.56.0)(typescript@4.9.5)
- '@typescript-eslint/utils': 6.15.0(eslint@8.56.0)(typescript@4.9.5)
+ '@typescript-eslint/eslint-plugin': 6.15.0(@typescript-eslint/parser@6.15.0)(eslint@8.56.0)(typescript@5.3.3)
+ '@typescript-eslint/utils': 6.15.0(eslint@8.56.0)(typescript@5.3.3)
eslint: 8.56.0
transitivePeerDependencies:
- supports-color
@@ -7387,15 +7663,6 @@ packages:
jsonfile: 6.1.0
universalify: 2.0.1
- /fs-extra@11.2.0:
- resolution: {integrity: sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==}
- engines: {node: '>=14.14'}
- dependencies:
- graceful-fs: 4.2.11
- jsonfile: 6.1.0
- universalify: 2.0.1
- dev: true
-
/fs-minipass@2.1.0:
resolution: {integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==}
engines: {node: '>= 8'}
@@ -8307,7 +8574,7 @@ packages:
'@jest/environment': 27.5.1
'@jest/test-result': 27.5.1
'@jest/types': 27.5.1
- '@types/node': 20.11.5
+ '@types/node': 20.11.16
chalk: 4.1.2
co: 4.6.0
dedent: 0.7.0
@@ -8432,7 +8699,7 @@ packages:
'@jest/environment': 27.5.1
'@jest/fake-timers': 27.5.1
'@jest/types': 27.5.1
- '@types/node': 20.11.5
+ '@types/node': 20.11.16
jest-mock: 27.5.1
jest-util: 27.5.1
jsdom: 16.7.0
@@ -8450,7 +8717,7 @@ packages:
'@jest/environment': 27.5.1
'@jest/fake-timers': 27.5.1
'@jest/types': 27.5.1
- '@types/node': 20.11.5
+ '@types/node': 20.11.16
jest-mock: 27.5.1
jest-util: 27.5.1
dev: true
@@ -8466,7 +8733,7 @@ packages:
dependencies:
'@jest/types': 27.5.1
'@types/graceful-fs': 4.1.9
- '@types/node': 20.11.5
+ '@types/node': 20.11.16
anymatch: 3.1.3
fb-watchman: 2.0.2
graceful-fs: 4.2.11
@@ -8488,7 +8755,7 @@ packages:
'@jest/source-map': 27.5.1
'@jest/test-result': 27.5.1
'@jest/types': 27.5.1
- '@types/node': 20.11.5
+ '@types/node': 20.11.16
chalk: 4.1.2
co: 4.6.0
expect: 27.5.1
@@ -8543,7 +8810,7 @@ packages:
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dependencies:
'@jest/types': 27.5.1
- '@types/node': 20.11.5
+ '@types/node': 20.11.16
dev: true
/jest-pnp-resolver@1.2.3(jest-resolve@27.5.1):
@@ -8599,7 +8866,7 @@ packages:
'@jest/test-result': 27.5.1
'@jest/transform': 27.5.1
'@jest/types': 27.5.1
- '@types/node': 20.11.5
+ '@types/node': 20.11.16
chalk: 4.1.2
emittery: 0.8.1
graceful-fs: 4.2.11
@@ -8656,7 +8923,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': 20.11.5
+ '@types/node': 20.11.16
graceful-fs: 4.2.11
dev: true
@@ -8695,7 +8962,7 @@ packages:
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dependencies:
'@jest/types': 27.5.1
- '@types/node': 20.11.5
+ '@types/node': 20.11.16
chalk: 4.1.2
ci-info: 3.9.0
graceful-fs: 4.2.11
@@ -8720,7 +8987,7 @@ packages:
dependencies:
'@jest/test-result': 27.5.1
'@jest/types': 27.5.1
- '@types/node': 20.11.5
+ '@types/node': 20.11.16
ansi-escapes: 4.3.2
chalk: 4.1.2
jest-util: 27.5.1
@@ -8731,7 +8998,7 @@ packages:
resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==}
engines: {node: '>= 10.13.0'}
dependencies:
- '@types/node': 20.11.5
+ '@types/node': 20.11.16
merge-stream: 2.0.0
supports-color: 8.1.1
dev: true
@@ -9530,10 +9797,6 @@ packages:
engines: {node: '>= 0.6'}
dev: true
- /node-fetch-native@1.4.1:
- resolution: {integrity: sha512-NsXBU0UgBxo2rQLOeWNZqS3fvflWePMECr8CoSWoSTqCqGbVVsvl9vZu1HfQicYN0g5piV9Gh8RTEvo/uP752w==}
- dev: true
-
/node-fetch-native@1.6.1:
resolution: {integrity: sha512-bW9T/uJDPAJB2YNYEpWzE54U5O3MQidXsOyTfnbKYtTtFexRvGzb1waphBN4ZwP6EcIvYYEOwW0b72BpAqydTw==}
dev: true
@@ -9693,7 +9956,7 @@ packages:
resolution: {integrity: sha512-s1ZCMmQWXy4b5K/TW9i/DtiN8Ku+xCiHcjQ6/J/nDdssirrQNOoB165Zu8EqLMA2lln1JUth9a0aW9Ap2ctrUg==}
dependencies:
destr: 2.0.2
- node-fetch-native: 1.4.1
+ node-fetch-native: 1.6.1
ufo: 1.3.2
dev: true
@@ -9927,6 +10190,10 @@ packages:
/pathe@1.1.1:
resolution: {integrity: sha512-d+RQGp0MAYTIaDBIMmOfMwz3E+LOZnxx1HZd5R18mmCZY0QBlK0LDZfPc8FW8Ed2DlvsuE6PRjroDY+wg4+j/Q==}
+ /pathe@1.1.2:
+ resolution: {integrity: sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==}
+ dev: true
+
/perfect-debounce@1.0.0:
resolution: {integrity: sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==}
dev: true
@@ -9957,10 +10224,10 @@ packages:
peerDependencies:
pinia: ^2.0.0
dependencies:
- pinia: 2.0.36(typescript@4.9.5)(vue@3.2.47)
+ pinia: 2.0.36(typescript@5.3.3)(vue@3.2.47)
dev: false
- /pinia@2.0.36(typescript@4.9.5)(vue@3.2.47):
+ /pinia@2.0.36(typescript@5.3.3)(vue@3.2.47):
resolution: {integrity: sha512-4UKApwjlmJH+VuHKgA+zQMddcCb3ezYnyewQ9NVrsDqZ/j9dMv5+rh+1r48whKNdpFkZAWVxhBp5ewYaYX9JcQ==}
peerDependencies:
'@vue/composition-api': ^1.4.0
@@ -9973,7 +10240,7 @@ packages:
optional: true
dependencies:
'@vue/devtools-api': 6.5.1
- typescript: 4.9.5
+ typescript: 5.3.3
vue: 3.2.47
vue-demi: 0.14.6(vue@3.2.47)
dev: false
@@ -10587,11 +10854,26 @@ packages:
yargs: 17.7.2
dev: true
- /rollup@3.29.4:
- resolution: {integrity: sha512-oWzmBZwvYrU0iJHtDmhsm662rC15FRXmcjCk1xD771dFDx5jJ02ufAQQTn0etB2emNk4J9EZg/yWKpsn9BWGRw==}
- engines: {node: '>=14.18.0', npm: '>=8.0.0'}
+ /rollup@4.9.6:
+ resolution: {integrity: sha512-05lzkCS2uASX0CiLFybYfVkwNbKZG5NFQ6Go0VWyogFTXXbR039UVsegViTntkk4OglHBdF54ccApXRRuXRbsg==}
+ engines: {node: '>=18.0.0', npm: '>=8.0.0'}
hasBin: true
+ dependencies:
+ '@types/estree': 1.0.5
optionalDependencies:
+ '@rollup/rollup-android-arm-eabi': 4.9.6
+ '@rollup/rollup-android-arm64': 4.9.6
+ '@rollup/rollup-darwin-arm64': 4.9.6
+ '@rollup/rollup-darwin-x64': 4.9.6
+ '@rollup/rollup-linux-arm-gnueabihf': 4.9.6
+ '@rollup/rollup-linux-arm64-gnu': 4.9.6
+ '@rollup/rollup-linux-arm64-musl': 4.9.6
+ '@rollup/rollup-linux-riscv64-gnu': 4.9.6
+ '@rollup/rollup-linux-x64-gnu': 4.9.6
+ '@rollup/rollup-linux-x64-musl': 4.9.6
+ '@rollup/rollup-win32-arm64-msvc': 4.9.6
+ '@rollup/rollup-win32-ia32-msvc': 4.9.6
+ '@rollup/rollup-win32-x64-msvc': 4.9.6
fsevents: 2.3.3
/run-applescript@5.0.0:
@@ -11110,7 +11392,7 @@ packages:
stylelint: '>=14.0.0'
dependencies:
postcss-html: 1.5.0
- stylelint: 16.0.2(typescript@4.9.5)
+ stylelint: 16.0.2(typescript@5.3.3)
dev: true
/stylelint-config-recess-order@4.4.0(stylelint@16.0.2):
@@ -11118,7 +11400,7 @@ packages:
peerDependencies:
stylelint: '>=15'
dependencies:
- stylelint: 16.0.2(typescript@4.9.5)
+ stylelint: 16.0.2(typescript@5.3.3)
stylelint-order: 6.0.4(stylelint@16.0.2)
dev: true
@@ -11134,7 +11416,7 @@ packages:
dependencies:
postcss: 8.4.32
postcss-scss: 4.0.9(postcss@8.4.32)
- stylelint: 16.0.2(typescript@4.9.5)
+ stylelint: 16.0.2(typescript@5.3.3)
stylelint-config-recommended: 14.0.0(stylelint@16.0.2)
stylelint-scss: 6.0.0(stylelint@16.0.2)
dev: true
@@ -11148,7 +11430,7 @@ packages:
dependencies:
postcss-html: 1.5.0
semver: 7.5.4
- stylelint: 16.0.2(typescript@4.9.5)
+ stylelint: 16.0.2(typescript@5.3.3)
stylelint-config-html: 1.1.0(postcss-html@1.5.0)(stylelint@16.0.2)
stylelint-config-recommended: 14.0.0(stylelint@16.0.2)
dev: true
@@ -11159,7 +11441,7 @@ packages:
peerDependencies:
stylelint: ^16.0.0
dependencies:
- stylelint: 16.0.2(typescript@4.9.5)
+ stylelint: 16.0.2(typescript@5.3.3)
dev: true
/stylelint-config-standard-scss@12.0.0(postcss@8.4.32)(stylelint@16.0.2):
@@ -11173,7 +11455,7 @@ packages:
optional: true
dependencies:
postcss: 8.4.32
- stylelint: 16.0.2(typescript@4.9.5)
+ stylelint: 16.0.2(typescript@5.3.3)
stylelint-config-recommended-scss: 14.0.0(postcss@8.4.32)(stylelint@16.0.2)
stylelint-config-standard: 35.0.0(stylelint@16.0.2)
dev: true
@@ -11184,7 +11466,7 @@ packages:
peerDependencies:
stylelint: ^16.0.0
dependencies:
- stylelint: 16.0.2(typescript@4.9.5)
+ stylelint: 16.0.2(typescript@5.3.3)
stylelint-config-recommended: 14.0.0(stylelint@16.0.2)
dev: true
@@ -11195,7 +11477,7 @@ packages:
dependencies:
postcss: 8.4.33
postcss-sorting: 8.0.2(postcss@8.4.33)
- stylelint: 16.0.2(typescript@4.9.5)
+ stylelint: 16.0.2(typescript@5.3.3)
dev: true
/stylelint-scss@6.0.0(stylelint@16.0.2):
@@ -11209,10 +11491,10 @@ packages:
postcss-resolve-nested-selector: 0.1.1
postcss-selector-parser: 6.0.13
postcss-value-parser: 4.2.0
- stylelint: 16.0.2(typescript@4.9.5)
+ stylelint: 16.0.2(typescript@5.3.3)
dev: true
- /stylelint@16.0.2(typescript@4.9.5):
+ /stylelint@16.0.2(typescript@5.3.3):
resolution: {integrity: sha512-SxA/rg3VWxdoHZlW0nmVueWO1E7TAKW4W6mmA3iTxxEF9bIeQdFZu2oiBlQYyNe1pGnOamOqo2XYnI7cs5Bgow==}
engines: {node: '>=18.12.0'}
hasBin: true
@@ -11223,7 +11505,7 @@ packages:
'@csstools/selector-specificity': 3.0.1(postcss-selector-parser@6.0.13)
balanced-match: 2.0.0
colord: 2.9.3
- cosmiconfig: 9.0.0(typescript@4.9.5)
+ cosmiconfig: 9.0.0(typescript@5.3.3)
css-functions-list: 3.2.1
css-tree: 2.3.1
debug: 4.3.4
@@ -11546,13 +11828,13 @@ packages:
engines: {node: '>=8'}
dev: true
- /ts-api-utils@1.0.3(typescript@4.9.5):
+ /ts-api-utils@1.0.3(typescript@5.3.3):
resolution: {integrity: sha512-wNMeqtMz5NtwpT/UZGY5alT+VoKdSsOOP/kqHFcUW1P/VRhH2wJ48+DN2WwUliNbQ976ETwDL0Ifd2VVvgonvg==}
engines: {node: '>=16.13.0'}
peerDependencies:
typescript: '>=4.2.0'
dependencies:
- typescript: 4.9.5
+ typescript: 5.3.3
dev: true
/tsconfig-paths@3.15.0:
@@ -11667,9 +11949,9 @@ packages:
is-typedarray: 1.0.0
dev: true
- /typescript@4.9.5:
- resolution: {integrity: sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==}
- engines: {node: '>=4.2.0'}
+ /typescript@5.3.3:
+ resolution: {integrity: sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw==}
+ engines: {node: '>=14.17'}
hasBin: true
/ufo@1.3.2:
@@ -11771,7 +12053,7 @@ packages:
'@unocss/preset-uno': 0.56.5
dev: true
- /unocss@0.57.7(postcss@8.4.32)(vite@4.0.3):
+ /unocss@0.57.7(postcss@8.4.32)(vite@5.0.12):
resolution: {integrity: sha512-Z99ZZPkbkjIUXEM7L+K/7Y5V5yqUS0VigG7ZIFzLf/npieKmXHKlrPyvQWFQaf3OqooMFuKBQivh75TwvSOkcQ==}
engines: {node: '>=14'}
peerDependencies:
@@ -11783,7 +12065,7 @@ packages:
vite:
optional: true
dependencies:
- '@unocss/astro': 0.57.7(vite@4.0.3)
+ '@unocss/astro': 0.57.7(vite@5.0.12)
'@unocss/cli': 0.57.7
'@unocss/core': 0.57.7
'@unocss/extractor-arbitrary-variants': 0.57.7
@@ -11802,19 +12084,19 @@ packages:
'@unocss/transformer-compile-class': 0.57.7
'@unocss/transformer-directives': 0.57.7
'@unocss/transformer-variant-group': 0.57.7
- '@unocss/vite': 0.57.7(vite@4.0.3)
- vite: 4.0.3(@types/node@20.11.5)(sass@1.69.5)(terser@5.26.0)
+ '@unocss/vite': 0.57.7(vite@5.0.12)
+ vite: 5.0.12(@types/node@20.11.16)(sass@1.69.5)(terser@5.26.0)
transitivePeerDependencies:
- postcss
- rollup
- supports-color
dev: true
- /unocss@0.58.0(postcss@8.4.32)(vite@4.0.3):
- resolution: {integrity: sha512-MSPRHxBqWN+1AHGV+J5uUy4//e6ZBK6O+ISzD0qrXcCD/GNtxk1+lYjOK2ltkUiKX539+/KF91vNxzhhwEf+xA==}
+ /unocss@0.58.4(postcss@8.4.32)(vite@5.0.12):
+ resolution: {integrity: sha512-JYeQddAIObJPr6nuxahOgku0MIzjIaQ2P73KtJr0zSuzx6kiq20jf67FgDIOP1Ks6s7iJd7Ga3yuY2h49XjDjg==}
engines: {node: '>=14'}
peerDependencies:
- '@unocss/webpack': 0.58.0
+ '@unocss/webpack': 0.58.4
vite: ^2.9.0 || ^3.0.0-0 || ^4.0.0 || ^5.0.0-0
peerDependenciesMeta:
'@unocss/webpack':
@@ -11822,27 +12104,27 @@ packages:
vite:
optional: true
dependencies:
- '@unocss/astro': 0.58.0(vite@4.0.3)
- '@unocss/cli': 0.58.0
- '@unocss/core': 0.58.0
- '@unocss/extractor-arbitrary-variants': 0.58.0
- '@unocss/postcss': 0.58.0(postcss@8.4.32)
- '@unocss/preset-attributify': 0.58.0
- '@unocss/preset-icons': 0.58.0
- '@unocss/preset-mini': 0.58.0
- '@unocss/preset-tagify': 0.58.0
- '@unocss/preset-typography': 0.58.0
- '@unocss/preset-uno': 0.58.0
- '@unocss/preset-web-fonts': 0.58.0
- '@unocss/preset-wind': 0.58.0
- '@unocss/reset': 0.58.0
- '@unocss/transformer-attributify-jsx': 0.58.0
- '@unocss/transformer-attributify-jsx-babel': 0.58.0
- '@unocss/transformer-compile-class': 0.58.0
- '@unocss/transformer-directives': 0.58.0
- '@unocss/transformer-variant-group': 0.58.0
- '@unocss/vite': 0.58.0(vite@4.0.3)
- vite: 4.0.3(@types/node@20.11.5)(sass@1.69.5)(terser@5.26.0)
+ '@unocss/astro': 0.58.4(vite@5.0.12)
+ '@unocss/cli': 0.58.4
+ '@unocss/core': 0.58.4
+ '@unocss/extractor-arbitrary-variants': 0.58.4
+ '@unocss/postcss': 0.58.4(postcss@8.4.32)
+ '@unocss/preset-attributify': 0.58.4
+ '@unocss/preset-icons': 0.58.4
+ '@unocss/preset-mini': 0.58.4
+ '@unocss/preset-tagify': 0.58.4
+ '@unocss/preset-typography': 0.58.4
+ '@unocss/preset-uno': 0.58.4
+ '@unocss/preset-web-fonts': 0.58.4
+ '@unocss/preset-wind': 0.58.4
+ '@unocss/reset': 0.58.4
+ '@unocss/transformer-attributify-jsx': 0.58.4
+ '@unocss/transformer-attributify-jsx-babel': 0.58.4
+ '@unocss/transformer-compile-class': 0.58.4
+ '@unocss/transformer-directives': 0.58.4
+ '@unocss/transformer-variant-group': 0.58.4
+ '@unocss/vite': 0.58.4(vite@5.0.12)
+ vite: 5.0.12(@types/node@20.11.16)(sass@1.69.5)(terser@5.26.0)
transitivePeerDependencies:
- postcss
- rollup
@@ -11994,7 +12276,7 @@ packages:
engines: {node: '>= 0.8'}
dev: true
- /vite-plugin-compression@0.5.1(vite@4.0.3):
+ /vite-plugin-compression@0.5.1(vite@5.0.12):
resolution: {integrity: sha512-5QJKBDc+gNYVqL/skgFAP81Yuzo9R+EAf19d+EtsMF/i8kFUpNi3J/H01QD3Oo8zBQn+NzoCIFkpPLynoOzaJg==}
peerDependencies:
vite: '>=2.0.0'
@@ -12002,21 +12284,21 @@ packages:
chalk: 4.1.2
debug: 4.3.4
fs-extra: 10.1.0
- vite: 4.0.3(@types/node@20.11.5)(sass@1.69.5)(terser@5.26.0)
+ vite: 5.0.12(@types/node@20.11.16)(sass@1.69.5)(terser@5.26.0)
transitivePeerDependencies:
- supports-color
dev: true
- /vite-plugin-restart@0.4.0(vite@4.0.3):
+ /vite-plugin-restart@0.4.0(vite@5.0.12):
resolution: {integrity: sha512-SXeyKQAzRFmEmEyGP2DjaTbx22D1K5MapyNiAP7Xa14UyFgNSDjZ86bfjWksA0pqn+bZyxnVLJpCiqDuG+tOcg==}
peerDependencies:
vite: ^2.9.0 || ^3.0.0 || ^4.0.0 || ^5.0.0
dependencies:
micromatch: 4.0.5
- vite: 4.0.3(@types/node@20.11.5)(sass@1.69.5)(terser@5.26.0)
+ vite: 5.0.12(@types/node@20.11.16)(sass@1.69.5)(terser@5.26.0)
dev: true
- /vite-plugin-svg-icons@2.0.1(vite@4.0.3):
+ /vite-plugin-svg-icons@2.0.1(vite@5.0.12):
resolution: {integrity: sha512-6ktD+DhV6Rz3VtedYvBKKVA2eXF+sAQVaKkKLDSqGUfnhqXl3bj5PPkVTl3VexfTuZy66PmINi8Q6eFnVfRUmA==}
peerDependencies:
vite: '>=2.0.0'
@@ -12029,19 +12311,19 @@ packages:
pathe: 0.2.0
svg-baker: 1.7.0
svgo: 2.8.0
- vite: 4.0.3(@types/node@20.11.5)(sass@1.69.5)(terser@5.26.0)
+ vite: 5.0.12(@types/node@20.11.16)(sass@1.69.5)(terser@5.26.0)
transitivePeerDependencies:
- supports-color
dev: true
- /vite-plugin-vue-setup-extend@0.4.0(vite@4.0.3):
+ /vite-plugin-vue-setup-extend@0.4.0(vite@5.0.12):
resolution: {integrity: sha512-WMbjPCui75fboFoUTHhdbXzu4Y/bJMv5N9QT9a7do3wNMNHHqrk+Tn2jrSJU0LS5fGl/EG+FEDBYVUeWIkDqXQ==}
peerDependencies:
vite: '>=2.0.0'
dependencies:
'@vue/compiler-sfc': 3.2.47
magic-string: 0.25.9
- vite: 4.0.3(@types/node@20.11.5)(sass@1.69.5)(terser@5.26.0)
+ vite: 5.0.12(@types/node@20.11.16)(sass@1.69.5)(terser@5.26.0)
dev: true
/vite-svg-loader@5.1.0(vue@3.2.47):
@@ -12053,13 +12335,14 @@ packages:
vue: 3.2.47
dev: true
- /vite@4.0.3(@types/node@20.11.5)(sass@1.69.5)(terser@5.26.0):
- resolution: {integrity: sha512-HvuNv1RdE7deIfQb8mPk51UKjqptO/4RXZ5yXSAvurd5xOckwS/gg8h9Tky3uSbnjYTgUm0hVCet1cyhKd73ZA==}
- engines: {node: ^14.18.0 || >=16.0.0}
+ /vite@5.0.12(@types/node@20.11.16)(sass@1.69.5)(terser@5.26.0):
+ resolution: {integrity: sha512-4hsnEkG3q0N4Tzf1+t6NdN9dg/L3BM+q8SWgbSPnJvrgH2kgdyzfVJwbR1ic69/4uMJJ/3dqDZZE5/WwqW8U1w==}
+ engines: {node: ^18.0.0 || >=20.0.0}
hasBin: true
peerDependencies:
- '@types/node': '>= 14'
+ '@types/node': ^18.0.0 || >=20.0.0
less: '*'
+ lightningcss: ^1.21.0
sass: '*'
stylus: '*'
sugarss: '*'
@@ -12069,6 +12352,8 @@ packages:
optional: true
less:
optional: true
+ lightningcss:
+ optional: true
sass:
optional: true
stylus:
@@ -12078,11 +12363,10 @@ packages:
terser:
optional: true
dependencies:
- '@types/node': 20.11.5
- esbuild: 0.16.17
+ '@types/node': 20.11.16
+ esbuild: 0.19.12
postcss: 8.4.33
- resolve: 1.22.8
- rollup: 3.29.4
+ rollup: 4.9.6
sass: 1.69.5
terser: 5.26.0
optionalDependencies:
@@ -12101,6 +12385,22 @@ packages:
optional: true
dependencies:
vue: 3.2.47
+ dev: false
+
+ /vue-demi@0.14.7(vue@3.2.47):
+ resolution: {integrity: sha512-EOG8KXDQNwkJILkx/gPcoL/7vH+hORoBaKgGe+6W7VFMvCYJfmF2dGbvgDroVnI8LU7/kTu8mbjRZGBU1z9NTA==}
+ engines: {node: '>=12'}
+ hasBin: true
+ requiresBuild: true
+ peerDependencies:
+ '@vue/composition-api': ^1.0.0-rc.1
+ vue: ^3.0.0-0 || ^2.6.0
+ peerDependenciesMeta:
+ '@vue/composition-api':
+ optional: true
+ dependencies:
+ vue: 3.2.47
+ dev: true
/vue-eslint-parser@9.3.2(eslint@8.56.0):
resolution: {integrity: sha512-q7tWyCVaV9f8iQyIA5Mkj/S6AoJ9KBN8IeUSf3XEmBrOtxOZnfTg5s4KClbZBCK3GtnT/+RyCLZyDHuZwTuBjg==}
@@ -12124,7 +12424,7 @@ packages:
resolution: {integrity: sha512-283vpYOhVHJCpMkjNVEwZdgaAb+Y93zFaXGAWTI378MLoNuwQydjD/BAy1e81QYEmyA+JbxqcmMZVWcM9rbriw==}
dependencies:
eslint-config-vue-global-api: 0.4.1
- vue-demi: 0.14.6(vue@3.2.47)
+ vue-demi: 0.14.7(vue@3.2.47)
transitivePeerDependencies:
- '@vue/composition-api'
- vue
@@ -12158,16 +12458,16 @@ packages:
he: 1.2.0
dev: true
- /vue-tsc@1.8.25(typescript@4.9.5):
- resolution: {integrity: sha512-lHsRhDc/Y7LINvYhZ3pv4elflFADoEOo67vfClAfF2heVHpHmVquLSjojgCSIwzA4F0Pc4vowT/psXCYcfk+iQ==}
+ /vue-tsc@1.8.27(typescript@5.3.3):
+ resolution: {integrity: sha512-WesKCAZCRAbmmhuGl3+VrdWItEvfoFIPXOvUJkjULi+x+6G/Dy69yO3TBRJDr9eUlmsNAwVmxsNZxvHKzbkKdg==}
hasBin: true
peerDependencies:
typescript: '*'
dependencies:
'@volar/typescript': 1.11.1
- '@vue/language-core': 1.8.25(typescript@4.9.5)
+ '@vue/language-core': 1.8.27(typescript@5.3.3)
semver: 7.5.4
- typescript: 4.9.5
+ typescript: 5.3.3
dev: true
/vue@3.2.47:
@@ -12179,7 +12479,7 @@ packages:
'@vue/server-renderer': 3.2.47(vue@3.2.47)
'@vue/shared': 3.2.47
- /vue@3.4.15(typescript@4.9.5):
+ /vue@3.4.15(typescript@5.3.3):
resolution: {integrity: sha512-jC0GH4KkWLWJOEQjOpkqU1bQsBwf4R1rsFtw5GQJbjHVKWDzO6P0nWWBTmjp1xSemAioDFj1jdaK1qa3DnMQoQ==}
peerDependencies:
typescript: '*'
@@ -12190,9 +12490,9 @@ packages:
'@vue/compiler-dom': 3.4.15
'@vue/compiler-sfc': 3.4.15
'@vue/runtime-dom': 3.4.15
- '@vue/server-renderer': 3.4.15(vue@3.2.47)
+ '@vue/server-renderer': 3.4.15(vue@3.4.15)
'@vue/shared': 3.4.15
- typescript: 4.9.5
+ typescript: 5.3.3
dev: true
/w3c-hr-time@1.0.2:
@@ -12473,7 +12773,3 @@ packages:
resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
engines: {node: '>=10'}
dev: true
-
-settings:
- autoInstallPeers: true
- excludeLinksFromLockfile: false
diff --git a/screenshots/multiple-version copy.png b/screenshots/multiple-version copy.png
deleted file mode 100644
index 2ee7026..0000000
Binary files a/screenshots/multiple-version copy.png and /dev/null differ
diff --git a/screenshots/snippets copy.gif b/screenshots/snippets copy.gif
deleted file mode 100644
index b79c8ca..0000000
Binary files a/screenshots/snippets copy.gif and /dev/null differ
diff --git a/screenshots/wx-group copy.png b/screenshots/wx-group copy.png
deleted file mode 100644
index 45e355c..0000000
Binary files a/screenshots/wx-group copy.png and /dev/null differ
diff --git a/src/auto-import.d copy.ts b/src/auto-import.d copy.ts
deleted file mode 100644
index ba53431..0000000
--- a/src/auto-import.d copy.ts
+++ /dev/null
@@ -1,102 +0,0 @@
-/* eslint-disable */
-/* prettier-ignore */
-// @ts-nocheck
-// noinspection JSUnusedGlobalSymbols
-// Generated by unplugin-auto-import
-export {}
-declare global {
- const EffectScope: (typeof import('vue'))['EffectScope']
- const computed: (typeof import('vue'))['computed']
- const createApp: (typeof import('vue'))['createApp']
- const customRef: (typeof import('vue'))['customRef']
- const defineAsyncComponent: (typeof import('vue'))['defineAsyncComponent']
- const defineComponent: (typeof import('vue'))['defineComponent']
- const effectScope: (typeof import('vue'))['effectScope']
- const getCurrentInstance: (typeof import('vue'))['getCurrentInstance']
- const getCurrentScope: (typeof import('vue'))['getCurrentScope']
- const h: (typeof import('vue'))['h']
- const inject: (typeof import('vue'))['inject']
- const isProxy: (typeof import('vue'))['isProxy']
- const isReactive: (typeof import('vue'))['isReactive']
- const isReadonly: (typeof import('vue'))['isReadonly']
- const isRef: (typeof import('vue'))['isRef']
- const markRaw: (typeof import('vue'))['markRaw']
- const nextTick: (typeof import('vue'))['nextTick']
- const onActivated: (typeof import('vue'))['onActivated']
- const onAddToFavorites: (typeof import('@dcloudio/uni-app'))['onAddToFavorites']
- const onBackPress: (typeof import('@dcloudio/uni-app'))['onBackPress']
- const onBeforeMount: (typeof import('vue'))['onBeforeMount']
- const onBeforeUnmount: (typeof import('vue'))['onBeforeUnmount']
- const onBeforeUpdate: (typeof import('vue'))['onBeforeUpdate']
- const onDeactivated: (typeof import('vue'))['onDeactivated']
- const onError: (typeof import('@dcloudio/uni-app'))['onError']
- const onErrorCaptured: (typeof import('vue'))['onErrorCaptured']
- const onHide: (typeof import('@dcloudio/uni-app'))['onHide']
- const onLaunch: (typeof import('@dcloudio/uni-app'))['onLaunch']
- const onLoad: (typeof import('@dcloudio/uni-app'))['onLoad']
- const onMounted: (typeof import('vue'))['onMounted']
- const onNavigationBarButtonTap: (typeof import('@dcloudio/uni-app'))['onNavigationBarButtonTap']
- const onNavigationBarSearchInputChanged: (typeof import('@dcloudio/uni-app'))['onNavigationBarSearchInputChanged']
- const onNavigationBarSearchInputClicked: (typeof import('@dcloudio/uni-app'))['onNavigationBarSearchInputClicked']
- const onNavigationBarSearchInputConfirmed: (typeof import('@dcloudio/uni-app'))['onNavigationBarSearchInputConfirmed']
- const onNavigationBarSearchInputFocusChanged: (typeof import('@dcloudio/uni-app'))['onNavigationBarSearchInputFocusChanged']
- const onPageNotFound: (typeof import('@dcloudio/uni-app'))['onPageNotFound']
- const onPageScroll: (typeof import('@dcloudio/uni-app'))['onPageScroll']
- const onPullDownRefresh: (typeof import('@dcloudio/uni-app'))['onPullDownRefresh']
- const onReachBottom: (typeof import('@dcloudio/uni-app'))['onReachBottom']
- const onReady: (typeof import('@dcloudio/uni-app'))['onReady']
- const onRenderTracked: (typeof import('vue'))['onRenderTracked']
- const onRenderTriggered: (typeof import('vue'))['onRenderTriggered']
- const onResize: (typeof import('@dcloudio/uni-app'))['onResize']
- const onScopeDispose: (typeof import('vue'))['onScopeDispose']
- const onServerPrefetch: (typeof import('vue'))['onServerPrefetch']
- const onShareAppMessage: (typeof import('@dcloudio/uni-app'))['onShareAppMessage']
- const onShareTimeline: (typeof import('@dcloudio/uni-app'))['onShareTimeline']
- const onShow: (typeof import('@dcloudio/uni-app'))['onShow']
- const onTabItemTap: (typeof import('@dcloudio/uni-app'))['onTabItemTap']
- const onThemeChange: (typeof import('@dcloudio/uni-app'))['onThemeChange']
- const onUnhandledRejection: (typeof import('@dcloudio/uni-app'))['onUnhandledRejection']
- const onUnload: (typeof import('@dcloudio/uni-app'))['onUnload']
- const onUnmounted: (typeof import('vue'))['onUnmounted']
- const onUpdated: (typeof import('vue'))['onUpdated']
- const provide: (typeof import('vue'))['provide']
- const reactive: (typeof import('vue'))['reactive']
- const readonly: (typeof import('vue'))['readonly']
- const ref: (typeof import('vue'))['ref']
- const resolveComponent: (typeof import('vue'))['resolveComponent']
- const shallowReactive: (typeof import('vue'))['shallowReactive']
- const shallowReadonly: (typeof import('vue'))['shallowReadonly']
- const shallowRef: (typeof import('vue'))['shallowRef']
- const toRaw: (typeof import('vue'))['toRaw']
- const toRef: (typeof import('vue'))['toRef']
- const toRefs: (typeof import('vue'))['toRefs']
- const toValue: (typeof import('vue'))['toValue']
- const triggerRef: (typeof import('vue'))['triggerRef']
- const unref: (typeof import('vue'))['unref']
- const useAttrs: (typeof import('vue'))['useAttrs']
- const useCssModule: (typeof import('vue'))['useCssModule']
- const useCssVars: (typeof import('vue'))['useCssVars']
- const useSlots: (typeof import('vue'))['useSlots']
- const watch: (typeof import('vue'))['watch']
- const watchEffect: (typeof import('vue'))['watchEffect']
- const watchPostEffect: (typeof import('vue'))['watchPostEffect']
- const watchSyncEffect: (typeof import('vue'))['watchSyncEffect']
-}
-// for type re-export
-declare global {
- // @ts-ignore
- export type {
- Component,
- ComponentPublicInstance,
- ComputedRef,
- ExtractDefaultPropTypes,
- ExtractPropTypes,
- ExtractPublicPropTypes,
- InjectionKey,
- PropType,
- Ref,
- VNode,
- WritableComputedRef,
- } from 'vue'
- import('vue')
-}
diff --git a/src/components/fly-login/fly-login.vue b/src/components/fly-login/fly-login.vue
index 8bf99bd..8a6dc1f 100644
--- a/src/components/fly-login/fly-login.vue
+++ b/src/components/fly-login/fly-login.vue
@@ -110,7 +110,7 @@ const onSubmit = () => {
.fly-login-content {
position: fixed;
right: 0;
- bottom: 0;
+ bottom: var(--window-bottom);
left: 0;
background-color: #fff;
border-top-left-radius: 16px;
diff --git a/src/pages/demo/base/request.vue b/src/pages/demo/base/request.vue
index 8ddc5db..2af78a9 100644
--- a/src/pages/demo/base/request.vue
+++ b/src/pages/demo/base/request.vue
@@ -1,26 +1,67 @@
{
layout: 'demo',
- style: { navigationBarTitleText: 'request请求+请求拦截' },
+ style: {
+ navigationBarTitleText: '请求',
+ },
}
-
-
- {{ result }}
+
+
+
+ 请求数据如下
+ {{ JSON.stringify(data) }}
+ 完整数据
+ {{ JSON.stringify(originalData) }}
+
+ 请求数据如下
+ {{ JSON.stringify(data2) }}
+
+
+
+ 使用的是 laf 云后台
+ 我的推荐码,可以获得佣金
+
+
+ {{ recommendUrl }}
+
+
+
+
+ {{ recommendUrl }}
+
+
diff --git a/src/pages/demo/index.vue b/src/pages/demo/index.vue
index 0a63251..7a940ee 100644
--- a/src/pages/demo/index.vue
+++ b/src/pages/demo/index.vue
@@ -1,25 +1,13 @@
-
-
- 基本功能
-
+
+
+ {{ item.title }}
+
- {{ item.title }}
-
-
-
-
-
- 页面功能
-
-
- {{ item.title }}
+ {{ itemDetail.title }}
@@ -30,7 +18,6 @@
diff --git a/src/pages/demo/page/sign.vue b/src/pages/demo/page/sign.vue
index db31ba2..91cc02e 100644
--- a/src/pages/demo/page/sign.vue
+++ b/src/pages/demo/page/sign.vue
@@ -6,7 +6,7 @@
-
+
- 全屏
+
+ {{ isFullScreen ? '退出全屏' : '全屏' }}
+
清空
- 撤回
+
+ 撤回
+
保存
@@ -36,12 +36,12 @@