diff --git a/.github/workflows/release-please.yml b/.github/workflows/release-please.yml
index 03a0d74a..ad4f11d6 100644
--- a/.github/workflows/release-please.yml
+++ b/.github/workflows/release-please.yml
@@ -13,8 +13,9 @@ jobs:
release:
runs-on: ubuntu-latest
outputs:
- release_created: ${{ steps.release.outputs.release_created }}
+ release_created: ${{ steps.set-output-step.outputs.release_created }}
job_output: ${{ steps.set-output-step.outputs.output_value }}
+ b: ${{ steps.set-output-step.outputs.b }}
steps:
- uses: googleapis/release-please-action@v4
id: release
@@ -28,24 +29,12 @@ jobs:
# for more options
release-type: node
- - name: Generate output value
- id: set-output-step
+ - name: Output Release Created
+ id: output-release-created
run: |
- echo "Generating output value..."
- VALUE="Hello, World!"
release_created=${{ steps.release.outputs.release_created }}
- echo "::set-output name=output_value::$VALUE"
echo "::set-output name=release_created::$release_created"
- joblog:
- runs-on: ubuntu-latest
- needs: release
- steps:
- - name: Print Previous Job Output
- run: |
- echo "Previous job output: "
- echo "${{ toJson(needs.release.outputs) }}"
-
publish:
runs-on: ubuntu-latest
needs: release
@@ -74,6 +63,7 @@ jobs:
- name: Build Lib
run: pnpm lib:build
- - run: pnpm publish
+ - name: Publish
+ run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 1e097dc2..888c5572 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,13 @@
# Changelog
+## [0.6.0](https://github.com/DvShu/neatui-vue/compare/v0.5.4...v0.6.0) (2024-06-14)
+
+
+### Features
+
+* Form 表单 ([6aef628](https://github.com/DvShu/neatui-vue/commit/6aef628e8f8ccda2dcd1e1efb401413349ff0425))
+* Form表单 ([cbe390f](https://github.com/DvShu/neatui-vue/commit/cbe390f7b34eb13043c5cfd847f05f319c435d16))
+
## [0.5.4](https://github.com/DvShu/neatui-vue/compare/v0.5.3...v0.5.4) (2024-06-07)
diff --git a/docs/.vitepress/config.ts b/docs/.vitepress/config.ts
index 47ea79c1..04ac8d3f 100644
--- a/docs/.vitepress/config.ts
+++ b/docs/.vitepress/config.ts
@@ -56,6 +56,7 @@ export default defineConfig({
{ text: 'Radio 单选框', link: '/components/radio' },
{ text: 'Switch 开关', link: '/components/switch' },
{ text: 'Polygon 多边形', link: '/components/polygon' },
+ { text: 'Form 表单', link: '/components/form' },
],
},
],
diff --git a/docs/.vitepress/theme/index.ts b/docs/.vitepress/theme/index.ts
index 2849ac67..9a5e3f46 100644
--- a/docs/.vitepress/theme/index.ts
+++ b/docs/.vitepress/theme/index.ts
@@ -20,6 +20,8 @@ import '../../../style/message';
import '../../../style/shadow';
import '../../../style/table';
import '../../../style/switch';
+import '../../../style/form';
+import '../../../style/form_item';
export default {
extends: DefaultTheme,
diff --git a/docs/components/form.md b/docs/components/form.md
new file mode 100644
index 00000000..3513f548
--- /dev/null
+++ b/docs/components/form.md
@@ -0,0 +1,120 @@
+# Form
+
+包含数据录入、校验以及对应样式。
+
+## 演示
+
+
+
+### 基础用法
+
+基本的表单数据域控制展示,包含布局、初始化、验证、提交。数据验证采用 [ph-utils/validator](https://gitee.com/towardly/ph/wikis/utils/validator)
+
+
+
+
+
+
+
+
+
+
+## API
+
+### Form Props
+
+| 参数 | 说明 | 类型 | 默认值 |
+| ------------- | --------------------------------------------------------------------------- | --------------------- | ------ |
+| `model` | 表单数据对象 | `Record` | - |
+| `rules` | 表单验证规则 | `FormRule[]` | - |
+| `label-width` | 标签的长度,例如 `50px`。 作为 `Form` 直接子元素的 `form-item` 会继承该值。 | `string` | - |
+
+### Form Events
+
+| 事件名 | 说明 | 类型 |
+| -------- | -------------- | ------------ |
+| `submit` | 提交表单时触发 | `() => void` |
+
+### FormItem Props
+
+| 参数 | 说明 | 类型 | 默认值 |
+| ------------- | -------------------------------------------------------------------------------------- | --------- | ------ |
+| `label` | 标签文本 | `string` | - |
+| `required` | 是否为必填项,如不设置,则会根据校验规则确认 | `boolean` | - |
+| `name` | `model` 的键名; 使用表单校验时必填 | `string` | - |
+| `label-width` | 标签宽度,例如 `50px` | `string` | - |
+| `error` | 表单域验证错误时的提示信息。设置该值会导致表单验证状态变为 `error`,并显示该错误信息。 | `string` | - |
diff --git a/package.json b/package.json
index 20a3b5aa..4a4dce67 100644
--- a/package.json
+++ b/package.json
@@ -1,7 +1,7 @@
{
"name": "@asteres/neatui-vue",
"description": "基于 Vue3 的 UI 组件库",
- "version": "0.5.4",
+ "version": "0.6.0",
"type": "module",
"scripts": {
"g:c": "node scripts/index.js template",
@@ -12,21 +12,21 @@
"inspect:eslint": "eslint --inspect-config"
},
"devDependencies": {
- "@types/node": "^20.12.7",
- "@typescript-eslint/eslint-plugin": "^7.6.0",
- "@typescript-eslint/parser": "^7.6.0",
- "@vitejs/plugin-vue": "^5.0.4",
- "eslint": "^9.0.0",
- "eslint-plugin-vue": "^9.24.1",
- "globals": "^15.0.0",
+ "@types/node": "^20.14.2",
+ "@typescript-eslint/eslint-plugin": "^7.13.0",
+ "@typescript-eslint/parser": "^7.13.0",
+ "@vitejs/plugin-vue": "^5.0.5",
+ "eslint": "^9.4.0",
+ "eslint-plugin-vue": "^9.26.0",
+ "globals": "^15.4.0",
"less": "^4.2.0",
- "prettier": "^3.2.5",
- "shiki": "^1.3.0",
+ "prettier": "^3.3.2",
+ "shiki": "^1.6.4",
"typescript": "^5.4.5",
- "vite": "^5.2.8",
- "vite-plugin-dts": "^3.8.2",
- "vitepress": "^1.1.0",
- "vue-tsc": "^2.0.13"
+ "vite": "^5.2.13",
+ "vite-plugin-dts": "^3.9.1",
+ "vitepress": "^1.2.3",
+ "vue-tsc": "^2.0.21"
},
"peerDependencies": {
"vue": "^3.3.11"
@@ -64,7 +64,7 @@
},
"license": "MulanPSL-2.0",
"dependencies": {
- "ph-utils": "^0.4.5",
+ "ph-utils": "^0.4.7",
"qrcode-generator-es": "^0.0.4"
},
"packageManager": "pnpm@9.0.2"
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index fe3fdf3d..9f47f24c 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -9,67 +9,63 @@ importers:
.:
dependencies:
ph-utils:
- specifier: ^0.4.5
- version: 0.4.5
+ specifier: ^0.4.7
+ version: 0.4.7
qrcode-generator-es:
specifier: ^0.0.4
version: 0.0.4
vue:
specifier: ^3.3.11
- version: 3.4.23(typescript@5.4.5)
+ version: 3.4.27(typescript@5.4.5)
devDependencies:
'@types/node':
- specifier: ^20.12.7
- version: 20.12.7
+ specifier: ^20.14.2
+ version: 20.14.2
'@typescript-eslint/eslint-plugin':
- specifier: ^7.6.0
- version: 7.7.0(@typescript-eslint/parser@7.7.0(eslint@9.0.0)(typescript@5.4.5))(eslint@9.0.0)(typescript@5.4.5)
+ specifier: ^7.13.0
+ version: 7.13.0(@typescript-eslint/parser@7.13.0(eslint@9.4.0)(typescript@5.4.5))(eslint@9.4.0)(typescript@5.4.5)
'@typescript-eslint/parser':
- specifier: ^7.6.0
- version: 7.7.0(eslint@9.0.0)(typescript@5.4.5)
+ specifier: ^7.13.0
+ version: 7.13.0(eslint@9.4.0)(typescript@5.4.5)
'@vitejs/plugin-vue':
- specifier: ^5.0.4
- version: 5.0.4(vite@5.2.9(@types/node@20.12.7)(less@4.2.0))(vue@3.4.23(typescript@5.4.5))
+ specifier: ^5.0.5
+ version: 5.0.5(vite@5.2.13(@types/node@20.14.2)(less@4.2.0))(vue@3.4.27(typescript@5.4.5))
eslint:
- specifier: ^9.0.0
- version: 9.0.0
+ specifier: ^9.4.0
+ version: 9.4.0
eslint-plugin-vue:
- specifier: ^9.24.1
- version: 9.25.0(eslint@9.0.0)
+ specifier: ^9.26.0
+ version: 9.26.0(eslint@9.4.0)
globals:
- specifier: ^15.0.0
- version: 15.0.0
+ specifier: ^15.4.0
+ version: 15.4.0
less:
specifier: ^4.2.0
version: 4.2.0
prettier:
- specifier: ^3.2.5
- version: 3.2.5
+ specifier: ^3.3.2
+ version: 3.3.2
shiki:
- specifier: ^1.3.0
- version: 1.3.0
+ specifier: ^1.6.4
+ version: 1.6.4
typescript:
specifier: ^5.4.5
version: 5.4.5
vite:
- specifier: ^5.2.8
- version: 5.2.9(@types/node@20.12.7)(less@4.2.0)
+ specifier: ^5.2.13
+ version: 5.2.13(@types/node@20.14.2)(less@4.2.0)
vite-plugin-dts:
- specifier: ^3.8.2
- version: 3.8.3(@types/node@20.12.7)(rollup@4.14.3)(typescript@5.4.5)(vite@5.2.9(@types/node@20.12.7)(less@4.2.0))
+ specifier: ^3.9.1
+ version: 3.9.1(@types/node@20.14.2)(rollup@4.18.0)(typescript@5.4.5)(vite@5.2.13(@types/node@20.14.2)(less@4.2.0))
vitepress:
- specifier: ^1.1.0
- version: 1.1.0(@algolia/client-search@4.23.3)(@types/node@20.12.7)(less@4.2.0)(postcss@8.4.38)(search-insights@2.13.0)(typescript@5.4.5)
+ specifier: ^1.2.3
+ version: 1.2.3(@algolia/client-search@4.23.3)(@types/node@20.14.2)(less@4.2.0)(postcss@8.4.38)(search-insights@2.14.0)(typescript@5.4.5)
vue-tsc:
- specifier: ^2.0.13
- version: 2.0.13(typescript@5.4.5)
+ specifier: ^2.0.21
+ version: 2.0.21(typescript@5.4.5)
packages:
- '@aashutoshrathi/word-wrap@1.2.6':
- resolution: {integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==}
- engines: {node: '>=0.10.0'}
-
'@algolia/autocomplete-core@1.9.3':
resolution: {integrity: sha512-009HdfugtGCdC4JdXUbVJClA0q0zh24yyePn+KUGk3rP7j8FEe/m5Yo/z65gn6nP/cM39PxpzqKrL7A6fP6PPw==}
@@ -135,21 +131,21 @@ packages:
'@algolia/transporter@4.23.3':
resolution: {integrity: sha512-Wjl5gttqnf/gQKJA+dafnD0Y6Yw97yvfY8R9h0dQltX1GXTgNs1zWgvtWW0tHl1EgMdhAyw189uWiZMnL3QebQ==}
- '@babel/helper-string-parser@7.24.1':
- resolution: {integrity: sha512-2ofRCjnnA9y+wk8b9IAREroeUP02KHp431N2mhKniy2yKIDKpbrHv9eXwm8cBeWQYcJmzv5qKCu65P47eCF7CQ==}
+ '@babel/helper-string-parser@7.24.7':
+ resolution: {integrity: sha512-7MbVt6xrwFQbunH2DNQsAP5sTGxfqQtErvBIvIMi6EQnbgUOuVYanvREcmFrOPhoXBrTtjhhP+lW+o5UfK+tDg==}
engines: {node: '>=6.9.0'}
- '@babel/helper-validator-identifier@7.22.20':
- resolution: {integrity: sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==}
+ '@babel/helper-validator-identifier@7.24.7':
+ resolution: {integrity: sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==}
engines: {node: '>=6.9.0'}
- '@babel/parser@7.24.4':
- resolution: {integrity: sha512-zTvEBcghmeBma9QIGunWevvBAp4/Qu9Bdq+2k0Ot4fVMD6v3dsC9WOcRSKk7tRRyBM/53yKMJko9xOatGQAwSg==}
+ '@babel/parser@7.24.7':
+ resolution: {integrity: sha512-9uUYRm6OqQrCqQdG1iCBwBPZgN8ciDBro2nIOFaiRz1/BCxaI7CNvQbDHvsArAC7Tw9Hda/B3U+6ui9u4HWXPw==}
engines: {node: '>=6.0.0'}
hasBin: true
- '@babel/types@7.24.0':
- resolution: {integrity: sha512-+j7a5c253RfKh8iABBhywc8NSfP5LURe7Uh4qpsh6jc+aLJguvmIUBdjSdEMQv2bENrCR5MfRdjGo7vzS/ob7w==}
+ '@babel/types@7.24.7':
+ resolution: {integrity: sha512-XEFXSlxiG5td2EJRe8vOmRbaXVgfcBlszKujvVmWIK/UpywWljQCfzAv3RQCGujWQ1RD4YYWEAqDXfuJiy8f5Q==}
engines: {node: '>=6.9.0'}
'@ctrl/tinycolor@4.1.0':
@@ -323,28 +319,33 @@ packages:
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
- '@eslint-community/regexpp@4.10.0':
- resolution: {integrity: sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==}
+ '@eslint-community/regexpp@4.10.1':
+ resolution: {integrity: sha512-Zm2NGpWELsQAD1xsJzGQpYfvICSsFkEpU0jxBjfdC6uNEWXcHnfs9hScFWtXVDVl+rBQJGrl4g1vcKIejpH9dA==}
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
- '@eslint/eslintrc@3.0.2':
- resolution: {integrity: sha512-wV19ZEGEMAC1eHgrS7UQPqsdEiCIbTKTasEfcXAigzoXICcqZSjBZEHlZwNVvKg6UBCjSlos84XiLqsRJnIcIg==}
+ '@eslint/config-array@0.15.1':
+ resolution: {integrity: sha512-K4gzNq+yymn/EVsXYmf+SBcBro8MTf+aXJZUphM96CdzUEr+ClGDvAbpmaEK+cGVigVXIgs9gNmvHAlrzzY5JQ==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
+ '@eslint/eslintrc@3.1.0':
+ resolution: {integrity: sha512-4Bfj15dVJdoy3RfZmmo86RK1Fwzn6SstsvK9JS+BaVKqC6QQQQyXekNaC+g+LKNgkQ+2VhGAzm6hO40AhMR3zQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@eslint/js@9.0.0':
- resolution: {integrity: sha512-RThY/MnKrhubF6+s1JflwUjPEsnCEmYCWwqa/aRISKWNXGZ9epUwft4bUMM35SdKF9xvBrLydAM1RDHd1Z//ZQ==}
+ '@eslint/js@9.4.0':
+ resolution: {integrity: sha512-fdI7VJjP3Rvc70lC4xkFXHB0fiPeojiL1PxVG6t1ZvXQrarj893PweuBTujxDUFk0Fxj4R7PIIAZ/aiiyZPZcg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@humanwhocodes/config-array@0.12.3':
- resolution: {integrity: sha512-jsNnTBlMWuTpDkeE3on7+dWJi0D6fdDfeANj/w7MpS8ztROCoLvIO2nG0CcFj+E4k8j4QrSTh4Oryi3i2G669g==}
- engines: {node: '>=10.10.0'}
+ '@eslint/object-schema@2.1.3':
+ resolution: {integrity: sha512-HAbhAYKfsAC2EkTqve00ibWIZlaU74Z1EHwAjYr4PXF0YU2VEA1zSIKSSpKszRLRWwHzzRZXvK632u+uXzvsvw==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@humanwhocodes/module-importer@1.0.1':
resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==}
engines: {node: '>=12.22'}
- '@humanwhocodes/object-schema@2.0.3':
- resolution: {integrity: sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==}
+ '@humanwhocodes/retry@0.3.0':
+ resolution: {integrity: sha512-d2CGZR2o7fS6sWB7DG/3a95bGKQyHMACZ5aW8qGkkqQpUoZV6C0X7Pc7l4ZNMZkfNBf4VWNe9E1jRsf0G146Ew==}
+ engines: {node: '>=18.18'}
'@jridgewell/sourcemap-codec@1.4.15':
resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==}
@@ -383,90 +384,92 @@ packages:
rollup:
optional: true
- '@rollup/rollup-android-arm-eabi@4.14.3':
- resolution: {integrity: sha512-X9alQ3XM6I9IlSlmC8ddAvMSyG1WuHk5oUnXGw+yUBs3BFoTizmG1La/Gr8fVJvDWAq+zlYTZ9DBgrlKRVY06g==}
+ '@rollup/rollup-android-arm-eabi@4.18.0':
+ resolution: {integrity: sha512-Tya6xypR10giZV1XzxmH5wr25VcZSncG0pZIjfePT0OVBvqNEurzValetGNarVrGiq66EBVAFn15iYX4w6FKgQ==}
cpu: [arm]
os: [android]
- '@rollup/rollup-android-arm64@4.14.3':
- resolution: {integrity: sha512-eQK5JIi+POhFpzk+LnjKIy4Ks+pwJ+NXmPxOCSvOKSNRPONzKuUvWE+P9JxGZVxrtzm6BAYMaL50FFuPe0oWMQ==}
+ '@rollup/rollup-android-arm64@4.18.0':
+ resolution: {integrity: sha512-avCea0RAP03lTsDhEyfy+hpfr85KfyTctMADqHVhLAF3MlIkq83CP8UfAHUssgXTYd+6er6PaAhx/QGv4L1EiA==}
cpu: [arm64]
os: [android]
- '@rollup/rollup-darwin-arm64@4.14.3':
- resolution: {integrity: sha512-Od4vE6f6CTT53yM1jgcLqNfItTsLt5zE46fdPaEmeFHvPs5SjZYlLpHrSiHEKR1+HdRfxuzXHjDOIxQyC3ptBA==}
+ '@rollup/rollup-darwin-arm64@4.18.0':
+ resolution: {integrity: sha512-IWfdwU7KDSm07Ty0PuA/W2JYoZ4iTj3TUQjkVsO/6U+4I1jN5lcR71ZEvRh52sDOERdnNhhHU57UITXz5jC1/w==}
cpu: [arm64]
os: [darwin]
- '@rollup/rollup-darwin-x64@4.14.3':
- resolution: {integrity: sha512-0IMAO21axJeNIrvS9lSe/PGthc8ZUS+zC53O0VhF5gMxfmcKAP4ESkKOCwEi6u2asUrt4mQv2rjY8QseIEb1aw==}
+ '@rollup/rollup-darwin-x64@4.18.0':
+ resolution: {integrity: sha512-n2LMsUz7Ynu7DoQrSQkBf8iNrjOGyPLrdSg802vk6XT3FtsgX6JbE8IHRvposskFm9SNxzkLYGSq9QdpLYpRNA==}
cpu: [x64]
os: [darwin]
- '@rollup/rollup-linux-arm-gnueabihf@4.14.3':
- resolution: {integrity: sha512-ge2DC7tHRHa3caVEoSbPRJpq7azhG+xYsd6u2MEnJ6XzPSzQsTKyXvh6iWjXRf7Rt9ykIUWHtl0Uz3T6yXPpKw==}
+ '@rollup/rollup-linux-arm-gnueabihf@4.18.0':
+ resolution: {integrity: sha512-C/zbRYRXFjWvz9Z4haRxcTdnkPt1BtCkz+7RtBSuNmKzMzp3ZxdM28Mpccn6pt28/UWUCTXa+b0Mx1k3g6NOMA==}
cpu: [arm]
os: [linux]
+ libc: [glibc]
- '@rollup/rollup-linux-arm-musleabihf@4.14.3':
- resolution: {integrity: sha512-ljcuiDI4V3ySuc7eSk4lQ9wU8J8r8KrOUvB2U+TtK0TiW6OFDmJ+DdIjjwZHIw9CNxzbmXY39wwpzYuFDwNXuw==}
+ '@rollup/rollup-linux-arm-musleabihf@4.18.0':
+ resolution: {integrity: sha512-l3m9ewPgjQSXrUMHg93vt0hYCGnrMOcUpTz6FLtbwljo2HluS4zTXFy2571YQbisTnfTKPZ01u/ukJdQTLGh9A==}
cpu: [arm]
os: [linux]
+ libc: [musl]
- '@rollup/rollup-linux-arm64-gnu@4.14.3':
- resolution: {integrity: sha512-Eci2us9VTHm1eSyn5/eEpaC7eP/mp5n46gTRB3Aar3BgSvDQGJZuicyq6TsH4HngNBgVqC5sDYxOzTExSU+NjA==}
+ '@rollup/rollup-linux-arm64-gnu@4.18.0':
+ resolution: {integrity: sha512-rJ5D47d8WD7J+7STKdCUAgmQk49xuFrRi9pZkWoRD1UeSMakbcepWXPF8ycChBoAqs1pb2wzvbY6Q33WmN2ftw==}
cpu: [arm64]
os: [linux]
libc: [glibc]
- '@rollup/rollup-linux-arm64-musl@4.14.3':
- resolution: {integrity: sha512-UrBoMLCq4E92/LCqlh+blpqMz5h1tJttPIniwUgOFJyjWI1qrtrDhhpHPuFxULlUmjFHfloWdixtDhSxJt5iKw==}
+ '@rollup/rollup-linux-arm64-musl@4.18.0':
+ resolution: {integrity: sha512-be6Yx37b24ZwxQ+wOQXXLZqpq4jTckJhtGlWGZs68TgdKXJgw54lUUoFYrg6Zs/kjzAQwEwYbp8JxZVzZLRepQ==}
cpu: [arm64]
os: [linux]
libc: [musl]
- '@rollup/rollup-linux-powerpc64le-gnu@4.14.3':
- resolution: {integrity: sha512-5aRjvsS8q1nWN8AoRfrq5+9IflC3P1leMoy4r2WjXyFqf3qcqsxRCfxtZIV58tCxd+Yv7WELPcO9mY9aeQyAmw==}
+ '@rollup/rollup-linux-powerpc64le-gnu@4.18.0':
+ resolution: {integrity: sha512-hNVMQK+qrA9Todu9+wqrXOHxFiD5YmdEi3paj6vP02Kx1hjd2LLYR2eaN7DsEshg09+9uzWi2W18MJDlG0cxJA==}
cpu: [ppc64]
os: [linux]
libc: [glibc]
- '@rollup/rollup-linux-riscv64-gnu@4.14.3':
- resolution: {integrity: sha512-sk/Qh1j2/RJSX7FhEpJn8n0ndxy/uf0kI/9Zc4b1ELhqULVdTfN6HL31CDaTChiBAOgLcsJ1sgVZjWv8XNEsAQ==}
+ '@rollup/rollup-linux-riscv64-gnu@4.18.0':
+ resolution: {integrity: sha512-ROCM7i+m1NfdrsmvwSzoxp9HFtmKGHEqu5NNDiZWQtXLA8S5HBCkVvKAxJ8U+CVctHwV2Gb5VUaK7UAkzhDjlg==}
cpu: [riscv64]
os: [linux]
libc: [glibc]
- '@rollup/rollup-linux-s390x-gnu@4.14.3':
- resolution: {integrity: sha512-jOO/PEaDitOmY9TgkxF/TQIjXySQe5KVYB57H/8LRP/ux0ZoO8cSHCX17asMSv3ruwslXW/TLBcxyaUzGRHcqg==}
+ '@rollup/rollup-linux-s390x-gnu@4.18.0':
+ resolution: {integrity: sha512-0UyyRHyDN42QL+NbqevXIIUnKA47A+45WyasO+y2bGJ1mhQrfrtXUpTxCOrfxCR4esV3/RLYyucGVPiUsO8xjg==}
cpu: [s390x]
os: [linux]
libc: [glibc]
- '@rollup/rollup-linux-x64-gnu@4.14.3':
- resolution: {integrity: sha512-8ybV4Xjy59xLMyWo3GCfEGqtKV5M5gCSrZlxkPGvEPCGDLNla7v48S662HSGwRd6/2cSneMQWiv+QzcttLrrOA==}
+ '@rollup/rollup-linux-x64-gnu@4.18.0':
+ resolution: {integrity: sha512-xuglR2rBVHA5UsI8h8UbX4VJ470PtGCf5Vpswh7p2ukaqBGFTnsfzxUBetoWBWymHMxbIG0Cmx7Y9qDZzr648w==}
cpu: [x64]
os: [linux]
libc: [glibc]
- '@rollup/rollup-linux-x64-musl@4.14.3':
- resolution: {integrity: sha512-s+xf1I46trOY10OqAtZ5Rm6lzHre/UiLA1J2uOhCFXWkbZrJRkYBPO6FhvGfHmdtQ3Bx793MNa7LvoWFAm93bg==}
+ '@rollup/rollup-linux-x64-musl@4.18.0':
+ resolution: {integrity: sha512-LKaqQL9osY/ir2geuLVvRRs+utWUNilzdE90TpyoX0eNqPzWjRm14oMEE+YLve4k/NAqCdPkGYDaDF5Sw+xBfg==}
cpu: [x64]
os: [linux]
libc: [musl]
- '@rollup/rollup-win32-arm64-msvc@4.14.3':
- resolution: {integrity: sha512-+4h2WrGOYsOumDQ5S2sYNyhVfrue+9tc9XcLWLh+Kw3UOxAvrfOrSMFon60KspcDdytkNDh7K2Vs6eMaYImAZg==}
+ '@rollup/rollup-win32-arm64-msvc@4.18.0':
+ resolution: {integrity: sha512-7J6TkZQFGo9qBKH0pk2cEVSRhJbL6MtfWxth7Y5YmZs57Pi+4x6c2dStAUvaQkHQLnEQv1jzBUW43GvZW8OFqA==}
cpu: [arm64]
os: [win32]
- '@rollup/rollup-win32-ia32-msvc@4.14.3':
- resolution: {integrity: sha512-T1l7y/bCeL/kUwh9OD4PQT4aM7Bq43vX05htPJJ46RTI4r5KNt6qJRzAfNfM+OYMNEVBWQzR2Gyk+FXLZfogGw==}
+ '@rollup/rollup-win32-ia32-msvc@4.18.0':
+ resolution: {integrity: sha512-Txjh+IxBPbkUB9+SXZMpv+b/vnTEtFyfWZgJ6iyCmt2tdx0OF5WhFowLmnh8ENGNpfUlUZkdI//4IEmhwPieNg==}
cpu: [ia32]
os: [win32]
- '@rollup/rollup-win32-x64-msvc@4.14.3':
- resolution: {integrity: sha512-/BypzV0H1y1HzgYpxqRaXGBRqfodgoBBCcsrujT6QRcakDQdfU+Lq9PENPh5jB4I44YWq+0C2eHsHya+nZY1sA==}
+ '@rollup/rollup-win32-x64-msvc@4.18.0':
+ resolution: {integrity: sha512-UOo5FdvOL0+eIVTgS4tIdbW+TtnBLWg1YBCcU2KWM7nuNwRz9bksDX1bekJJCpu25N1DVWaCwnT39dVQxzqS8g==}
cpu: [x64]
os: [win32]
@@ -492,11 +495,11 @@ packages:
'@rushstack/ts-command-line@4.19.1':
resolution: {integrity: sha512-J7H768dgcpG60d7skZ5uSSwyCZs/S2HrWP1Ds8d1qYAyaaeJmpmmLr9BVw97RjFzmQPOYnoXcKA4GkqDCkduQg==}
- '@shikijs/core@1.3.0':
- resolution: {integrity: sha512-7fedsBfuILDTBmrYZNFI8B6ATTxhQAasUHllHmjvSZPnoq4bULWoTpHwmuQvZ8Aq03/tAa2IGo6RXqWtHdWaCA==}
+ '@shikijs/core@1.6.4':
+ resolution: {integrity: sha512-WTU9rzZae1p2v6LOxMf6LhtmZOkIHYYW160IuahUyJy7YXPPjyWZLR1ag+SgD22ZMxZtz1gfU6Tccc8t0Il/XA==}
- '@shikijs/transformers@1.3.0':
- resolution: {integrity: sha512-3mlpg2I9CjhjE96dEWQOGeCWoPcyTov3s4aAsHmgvnTHa8MBknEnCQy8/xivJPSpD+olqOqIEoHnLfbNJK29AA==}
+ '@shikijs/transformers@1.6.4':
+ resolution: {integrity: sha512-NqDt7gUg3ayVBnsipT/KoL1pqsVbsvT/2cB0pb5SG2q72qjAv9Lb5OP99pL//BMmI+sMTo+TeARntklyBu4mZQ==}
'@types/argparse@1.0.38':
resolution: {integrity: sha512-ebDJ9b0e702Yr7pWgB0jzm+CX4Srzz8RcXtLJDJB+BSccqMa36uyH/zUsSYao5+BD1ytv3k3rPYCq4mAE1hsXA==}
@@ -504,29 +507,23 @@ packages:
'@types/estree@1.0.5':
resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==}
- '@types/json-schema@7.0.15':
- resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==}
-
- '@types/linkify-it@3.0.5':
- resolution: {integrity: sha512-yg6E+u0/+Zjva+buc3EIb+29XEg4wltq7cSmd4Uc2EE/1nUVmxyzpX6gUXD0V8jIrG0r7YeOGVIbYRkxeooCtw==}
+ '@types/linkify-it@5.0.0':
+ resolution: {integrity: sha512-sVDA58zAw4eWAffKOaQH5/5j3XeayukzDk+ewSsnv3p4yJEZHCCzMDiZM8e0OUrRvmpGZ85jf4yDHkHsgBNr9Q==}
- '@types/markdown-it@13.0.7':
- resolution: {integrity: sha512-U/CBi2YUUcTHBt5tjO2r5QV/x0Po6nsYwQU4Y04fBS6vfoImaiZ6f8bi3CjTCxBPQSO1LMyUqkByzi8AidyxfA==}
+ '@types/markdown-it@14.1.1':
+ resolution: {integrity: sha512-4NpsnpYl2Gt1ljyBGrKMxFYAYvpqbnnkgP/i/g+NLpjEUa3obn1XJCur9YbEXKDAkaXqsR1LbDnGEJ0MmKFxfg==}
- '@types/mdurl@1.0.5':
- resolution: {integrity: sha512-6L6VymKTzYSrEf4Nev4Xa1LCHKrlTlYCBMTlQKFuddo1CvQcE52I0mwfOJayueUC7MJuXOeHTcIU683lzd0cUA==}
+ '@types/mdurl@2.0.0':
+ resolution: {integrity: sha512-RGdgjQUZba5p6QEFAVx2OGb8rQDL/cPRG7GiedRzMcJ1tYnUANBncjbSB1NRGwbvjcPeikRABz2nshyPk1bhWg==}
- '@types/node@20.12.7':
- resolution: {integrity: sha512-wq0cICSkRLVaf3UGLMGItu/PtdY7oaXaI/RVU+xliKVOtRna3PRY57ZDfztpDL0n11vfymMUnXv8QwYCO7L1wg==}
-
- '@types/semver@7.5.8':
- resolution: {integrity: sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ==}
+ '@types/node@20.14.2':
+ resolution: {integrity: sha512-xyu6WAMVwv6AKFLB+e/7ySZVr/0zLCzOa7rSpq6jNwpqOrUbcACDWC+53d4n2QHOnDou0fbIsg8wZu/sxrnI4Q==}
'@types/web-bluetooth@0.0.20':
resolution: {integrity: sha512-g9gZnnXVq7gM7v3tJCWV/qw7w+KeOlSHAhgF9RytFyifW6AF61hdT2ucrYhPq9hLs5JIryeupHV3qGk95dH9ow==}
- '@typescript-eslint/eslint-plugin@7.7.0':
- resolution: {integrity: sha512-GJWR0YnfrKnsRoluVO3PRb9r5aMZriiMMM/RHj5nnTrBy1/wIgk76XCtCKcnXGjpZQJQRFtGV9/0JJ6n30uwpQ==}
+ '@typescript-eslint/eslint-plugin@7.13.0':
+ resolution: {integrity: sha512-FX1X6AF0w8MdVFLSdqwqN/me2hyhuQg4ykN6ZpVhh1ij/80pTvDKclX1sZB9iqex8SjQfVhwMKs3JtnnMLzG9w==}
engines: {node: ^18.18.0 || >=20.0.0}
peerDependencies:
'@typescript-eslint/parser': ^7.0.0
@@ -536,8 +533,8 @@ packages:
typescript:
optional: true
- '@typescript-eslint/parser@7.7.0':
- resolution: {integrity: sha512-fNcDm3wSwVM8QYL4HKVBggdIPAy9Q41vcvC/GtDobw3c4ndVT3K6cqudUmjHPw8EAp4ufax0o58/xvWaP2FmTg==}
+ '@typescript-eslint/parser@7.13.0':
+ resolution: {integrity: sha512-EjMfl69KOS9awXXe83iRN7oIEXy9yYdqWfqdrFAYAAr6syP8eLEFI7ZE4939antx2mNgPRW/o1ybm2SFYkbTVA==}
engines: {node: ^18.18.0 || >=20.0.0}
peerDependencies:
eslint: ^8.56.0
@@ -546,12 +543,12 @@ packages:
typescript:
optional: true
- '@typescript-eslint/scope-manager@7.7.0':
- resolution: {integrity: sha512-/8INDn0YLInbe9Wt7dK4cXLDYp0fNHP5xKLHvZl3mOT5X17rK/YShXaiNmorl+/U4VKCVIjJnx4Ri5b0y+HClw==}
+ '@typescript-eslint/scope-manager@7.13.0':
+ resolution: {integrity: sha512-ZrMCe1R6a01T94ilV13egvcnvVJ1pxShkE0+NDjDzH4nvG1wXpwsVI5bZCvE7AEDH1mXEx5tJSVR68bLgG7Dng==}
engines: {node: ^18.18.0 || >=20.0.0}
- '@typescript-eslint/type-utils@7.7.0':
- resolution: {integrity: sha512-bOp3ejoRYrhAlnT/bozNQi3nio9tIgv3U5C0mVDdZC7cpcQEDZXvq8inrHYghLVwuNABRqrMW5tzAv88Vy77Sg==}
+ '@typescript-eslint/type-utils@7.13.0':
+ resolution: {integrity: sha512-xMEtMzxq9eRkZy48XuxlBFzpVMDurUAfDu5Rz16GouAtXm0TaAoTFzqWUFPPuQYXI/CDaH/Bgx/fk/84t/Bc9A==}
engines: {node: ^18.18.0 || >=20.0.0}
peerDependencies:
eslint: ^8.56.0
@@ -560,12 +557,12 @@ packages:
typescript:
optional: true
- '@typescript-eslint/types@7.7.0':
- resolution: {integrity: sha512-G01YPZ1Bd2hn+KPpIbrAhEWOn5lQBrjxkzHkWvP6NucMXFtfXoevK82hzQdpfuQYuhkvFDeQYbzXCjR1z9Z03w==}
+ '@typescript-eslint/types@7.13.0':
+ resolution: {integrity: sha512-QWuwm9wcGMAuTsxP+qz6LBBd3Uq8I5Nv8xb0mk54jmNoCyDspnMvVsOxI6IsMmway5d1S9Su2+sCKv1st2l6eA==}
engines: {node: ^18.18.0 || >=20.0.0}
- '@typescript-eslint/typescript-estree@7.7.0':
- resolution: {integrity: sha512-8p71HQPE6CbxIBy2kWHqM1KGrC07pk6RJn40n0DSc6bMOBBREZxSDJ+BmRzc8B5OdaMh1ty3mkuWRg4sCFiDQQ==}
+ '@typescript-eslint/typescript-estree@7.13.0':
+ resolution: {integrity: sha512-cAvBvUoobaoIcoqox1YatXOnSl3gx92rCZoMRPzMNisDiM12siGilSM4+dJAekuuHTibI2hVC2fYK79iSFvWjw==}
engines: {node: ^18.18.0 || >=20.0.0}
peerDependencies:
typescript: '*'
@@ -573,18 +570,18 @@ packages:
typescript:
optional: true
- '@typescript-eslint/utils@7.7.0':
- resolution: {integrity: sha512-LKGAXMPQs8U/zMRFXDZOzmMKgFv3COlxUQ+2NMPhbqgVm6R1w+nU1i4836Pmxu9jZAuIeyySNrN/6Rc657ggig==}
+ '@typescript-eslint/utils@7.13.0':
+ resolution: {integrity: sha512-jceD8RgdKORVnB4Y6BqasfIkFhl4pajB1wVxrF4akxD2QPM8GNYjgGwEzYS+437ewlqqrg7Dw+6dhdpjMpeBFQ==}
engines: {node: ^18.18.0 || >=20.0.0}
peerDependencies:
eslint: ^8.56.0
- '@typescript-eslint/visitor-keys@7.7.0':
- resolution: {integrity: sha512-h0WHOj8MhdhY8YWkzIF30R379y0NqyOHExI9N9KCzvmu05EgG4FumeYa3ccfKUSphyWkWQE1ybVrgz/Pbam6YA==}
+ '@typescript-eslint/visitor-keys@7.13.0':
+ resolution: {integrity: sha512-nxn+dozQx+MK61nn/JP+M4eCkHDSxSLDpgE3WcQo0+fkjEolnaB5jswvIKC4K56By8MMgIho7f1PVxERHEo8rw==}
engines: {node: ^18.18.0 || >=20.0.0}
- '@vitejs/plugin-vue@5.0.4':
- resolution: {integrity: sha512-WS3hevEszI6CEVEx28F8RjTX97k3KsrcY6kvTg7+Whm5y3oYvcqzVeGCU3hxSAn4uY2CLCkeokkGKpoctccilQ==}
+ '@vitejs/plugin-vue@5.0.5':
+ resolution: {integrity: sha512-LOjm7XeIimLBZyzinBQ6OSm3UBCNVCpLkxGC0oWmm2YPzVZoxMsdvNVimLTBzpAnR9hl/yn1SHGuRfe6/Td9rQ==}
engines: {node: ^18.0.0 || >=20.0.0}
peerDependencies:
vite: ^5.0.0
@@ -593,43 +590,43 @@ packages:
'@volar/language-core@1.11.1':
resolution: {integrity: sha512-dOcNn3i9GgZAcJt43wuaEykSluAuOkQgzni1cuxLxTV0nJKanQztp7FxyswdRILaKH+P2XZMPRp2S4MV/pElCw==}
- '@volar/language-core@2.2.0-alpha.8':
- resolution: {integrity: sha512-Ew1Iw7/RIRNuDLn60fWJdOLApAlfTVPxbPiSLzc434PReC9kleYtaa//Wo2WlN1oiRqneW0pWQQV0CwYqaimLQ==}
+ '@volar/language-core@2.3.0':
+ resolution: {integrity: sha512-pvhL24WUh3VDnv7Yw5N1sjhPtdx7q9g+Wl3tggmnkMcyK8GcCNElF2zHiKznryn0DiUGk+eez/p2qQhz+puuHw==}
'@volar/source-map@1.11.1':
resolution: {integrity: sha512-hJnOnwZ4+WT5iupLRnuzbULZ42L7BWWPMmruzwtLhJfpDVoZLjNBxHDi2sY2bgZXCKlpU5XcsMFoYrsQmPhfZg==}
- '@volar/source-map@2.2.0-alpha.8':
- resolution: {integrity: sha512-E1ZVmXFJ5DU4fWDcWHzi8OLqqReqIDwhXvIMhVdk6+VipfMVv4SkryXu7/rs4GA/GsebcRyJdaSkKBB3OAkIcA==}
+ '@volar/source-map@2.3.0':
+ resolution: {integrity: sha512-G/228aZjAOGhDjhlyZ++nDbKrS9uk+5DMaEstjvzglaAw7nqtDyhnQAsYzUg6BMP9BtwZ59RIw5HGePrutn00Q==}
'@volar/typescript@1.11.1':
resolution: {integrity: sha512-iU+t2mas/4lYierSnoFOeRFQUhAEMgsFuQxoxvwn5EdQopw43j+J27a4lt9LMInx1gLJBC6qL14WYGlgymaSMQ==}
- '@volar/typescript@2.2.0-alpha.8':
- resolution: {integrity: sha512-RLbRDI+17CiayHZs9HhSzlH0FhLl/+XK6o2qoiw2o2GGKcyD1aDoY6AcMd44acYncTOrqoTNoY6LuCiRyiJiGg==}
+ '@volar/typescript@2.3.0':
+ resolution: {integrity: sha512-PtUwMM87WsKVeLJN33GSTUjBexlKfKgouWlOUIv7pjrOnTwhXHZNSmpc312xgXdTjQPpToK6KXSIcKu9sBQ5LQ==}
- '@vue/compiler-core@3.4.23':
- resolution: {integrity: sha512-HAFmuVEwNqNdmk+w4VCQ2pkLk1Vw4XYiiyxEp3z/xvl14aLTUBw2OfVH3vBcx+FtGsynQLkkhK410Nah1N2yyQ==}
+ '@vue/compiler-core@3.4.27':
+ resolution: {integrity: sha512-E+RyqY24KnyDXsCuQrI+mlcdW3ALND6U7Gqa/+bVwbcpcR3BRRIckFoz7Qyd4TTlnugtwuI7YgjbvsLmxb+yvg==}
- '@vue/compiler-dom@3.4.23':
- resolution: {integrity: sha512-t0b9WSTnCRrzsBGrDd1LNR5HGzYTr7LX3z6nNBG+KGvZLqrT0mY6NsMzOqlVMBKKXKVuusbbB5aOOFgTY+senw==}
+ '@vue/compiler-dom@3.4.27':
+ resolution: {integrity: sha512-kUTvochG/oVgE1w5ViSr3KUBh9X7CWirebA3bezTbB5ZKBQZwR2Mwj9uoSKRMFcz4gSMzzLXBPD6KpCLb9nvWw==}
- '@vue/compiler-sfc@3.4.23':
- resolution: {integrity: sha512-fSDTKTfzaRX1kNAUiaj8JB4AokikzStWgHooMhaxyjZerw624L+IAP/fvI4ZwMpwIh8f08PVzEnu4rg8/Npssw==}
+ '@vue/compiler-sfc@3.4.27':
+ resolution: {integrity: sha512-nDwntUEADssW8e0rrmE0+OrONwmRlegDA1pD6QhVeXxjIytV03yDqTey9SBDiALsvAd5U4ZrEKbMyVXhX6mCGA==}
- '@vue/compiler-ssr@3.4.23':
- resolution: {integrity: sha512-hb6Uj2cYs+tfqz71Wj6h3E5t6OKvb4MVcM2Nl5i/z1nv1gjEhw+zYaNOV+Xwn+SSN/VZM0DgANw5TuJfxfezPg==}
+ '@vue/compiler-ssr@3.4.27':
+ resolution: {integrity: sha512-CVRzSJIltzMG5FcidsW0jKNQnNRYC8bT21VegyMMtHmhW3UOI7knmUehzswXLrExDLE6lQCZdrhD4ogI7c+vuw==}
- '@vue/devtools-api@7.0.27':
- resolution: {integrity: sha512-BFCFCusSDcw2UcOFD/QeK7OxD1x2C/m+uAN30Q7jLKECSW53hmz0urzJmX834GuWDZX/hIxkyUKnLLfEIP1c/w==}
+ '@vue/devtools-api@7.2.1':
+ resolution: {integrity: sha512-6oNCtyFOrNdqm6GUkFujsCgFlpbsHLnZqq7edeM/+cxAbMyCWvsaCsIMUaz7AiluKLccCGEM8fhOsjaKgBvb7g==}
- '@vue/devtools-kit@7.0.27':
- resolution: {integrity: sha512-/A5xM38pPCFX5Yhl/lRFAzjyK6VNsH670nww2WbjFKWqlu3I+lMxWKzQkCW6A1V8bduITgl2kHORfg2gTw6QaA==}
+ '@vue/devtools-kit@7.2.1':
+ resolution: {integrity: sha512-Wak/fin1X0Q8LLIfCAHBrdaaB+R6IdpSXsDByPHbQ3BmkCP0/cIo/oEGp9i0U2+gEqD4L3V9RDjNf1S34DTzQQ==}
peerDependencies:
vue: ^3.0.0
- '@vue/devtools-shared@7.0.27':
- resolution: {integrity: sha512-4VxtmZ6yjhiSloqZZq2UYU0TBGxOJ8GxWvp5OlAH70zYqi0FIAyWGPkOhvfoZ7DKQyv2UU0mmKzFHjsEkelGyQ==}
+ '@vue/devtools-shared@7.2.1':
+ resolution: {integrity: sha512-PCJF4UknJmOal68+X9XHyVeQ+idv0LFujkTOIW30+GaMJqwFVN9LkQKX4gLqn61KkGMdJTzQ1bt7EJag3TI6AA==}
'@vue/language-core@1.8.27':
resolution: {integrity: sha512-L8Kc27VdQserNaCUNiSFdDl9LWT24ly8Hpwf1ECy3aFb9m6bDhBGQYOujDm21N7EW3moKIOKEanQwe1q5BK+mA==}
@@ -639,36 +636,36 @@ packages:
typescript:
optional: true
- '@vue/language-core@2.0.13':
- resolution: {integrity: sha512-oQgM+BM66SU5GKtUMLQSQN0bxHFkFpLSSAiY87wVziPaiNQZuKVDt/3yA7GB9PiQw0y/bTNL0bOc0jM/siYjKg==}
+ '@vue/language-core@2.0.21':
+ resolution: {integrity: sha512-vjs6KwnCK++kIXT+eI63BGpJHfHNVJcUCr3RnvJsccT3vbJnZV5IhHR2puEkoOkIbDdp0Gqi1wEnv3hEd3WsxQ==}
peerDependencies:
typescript: '*'
peerDependenciesMeta:
typescript:
optional: true
- '@vue/reactivity@3.4.23':
- resolution: {integrity: sha512-GlXR9PL+23fQ3IqnbSQ8OQKLodjqCyoCrmdLKZk3BP7jN6prWheAfU7a3mrltewTkoBm+N7qMEb372VHIkQRMQ==}
+ '@vue/reactivity@3.4.27':
+ resolution: {integrity: sha512-kK0g4NknW6JX2yySLpsm2jlunZJl2/RJGZ0H9ddHdfBVHcNzxmQ0sS0b09ipmBoQpY8JM2KmUw+a6sO8Zo+zIA==}
- '@vue/runtime-core@3.4.23':
- resolution: {integrity: sha512-FeQ9MZEXoFzFkFiw9MQQ/FWs3srvrP+SjDKSeRIiQHIhtkzoj0X4rWQlRNHbGuSwLra6pMyjAttwixNMjc/xLw==}
+ '@vue/runtime-core@3.4.27':
+ resolution: {integrity: sha512-7aYA9GEbOOdviqVvcuweTLe5Za4qBZkUY7SvET6vE8kyypxVgaT1ixHLg4urtOlrApdgcdgHoTZCUuTGap/5WA==}
- '@vue/runtime-dom@3.4.23':
- resolution: {integrity: sha512-RXJFwwykZWBkMiTPSLEWU3kgVLNAfActBfWFlZd0y79FTUxexogd0PLG4HH2LfOktjRxV47Nulygh0JFXe5f9A==}
+ '@vue/runtime-dom@3.4.27':
+ resolution: {integrity: sha512-ScOmP70/3NPM+TW9hvVAz6VWWtZJqkbdf7w6ySsws+EsqtHvkhxaWLecrTorFxsawelM5Ys9FnDEMt6BPBDS0Q==}
- '@vue/server-renderer@3.4.23':
- resolution: {integrity: sha512-LDwGHtnIzvKFNS8dPJ1SSU5Gvm36p2ck8wCZc52fc3k/IfjKcwCyrWEf0Yag/2wTFUBXrqizfhK9c/mC367dXQ==}
+ '@vue/server-renderer@3.4.27':
+ resolution: {integrity: sha512-dlAMEuvmeA3rJsOMJ2J1kXU7o7pOxgsNHVr9K8hB3ImIkSuBrIdy0vF66h8gf8Tuinf1TK3mPAz2+2sqyf3KzA==}
peerDependencies:
- vue: 3.4.23
+ vue: 3.4.27
- '@vue/shared@3.4.23':
- resolution: {integrity: sha512-wBQ0gvf+SMwsCQOyusNw/GoXPV47WGd1xB5A1Pgzy0sQ3Bi5r5xm3n+92y3gCnB3MWqnRDdvfkRGxhKtbBRNgg==}
+ '@vue/shared@3.4.27':
+ resolution: {integrity: sha512-DL3NmY2OFlqmYYrzp39yi3LDkKxa5vZVwxWdQ3rG0ekuWscHraeIbnI8t+aZK7qhYqEqWKTUdijadunb9pnrgA==}
- '@vueuse/core@10.9.0':
- resolution: {integrity: sha512-/1vjTol8SXnx6xewDEKfS0Ra//ncg4Hb0DaZiwKf7drgfMsKFExQ+FnnENcN6efPen+1kIzhLQoGSy0eDUVOMg==}
+ '@vueuse/core@10.10.1':
+ resolution: {integrity: sha512-8Vr8wxILdK+qfBjbngav8LVI+6UuM2TQCufRKMPz/GrpLHQ6dbY6kL5PLa9Eobq8JRrMaDyArPX9Jj18fMTPew==}
- '@vueuse/integrations@10.9.0':
- resolution: {integrity: sha512-acK+A01AYdWSvL4BZmCoJAcyHJ6EqhmkQEXbQLwev1MY7NBnS+hcEMx/BzVoR9zKI+UqEPMD9u6PsyAuiTRT4Q==}
+ '@vueuse/integrations@10.10.1':
+ resolution: {integrity: sha512-b4iPz4NLk2g5u9GNgTpYqNN1pzYWPpIglHTg6eDjJwKB7OfzJP4m5kQlzn2oRH7U0OlEOCVPrdDfqneuS9YNTg==}
peerDependencies:
async-validator: '*'
axios: '*'
@@ -708,11 +705,11 @@ packages:
universal-cookie:
optional: true
- '@vueuse/metadata@10.9.0':
- resolution: {integrity: sha512-iddNbg3yZM0X7qFY2sAotomgdHK7YJ6sKUvQqbvwnf7TmaVPxS4EJydcNsVejNdS8iWCtDk+fYXr7E32nyTnGA==}
+ '@vueuse/metadata@10.10.1':
+ resolution: {integrity: sha512-dpEL5afVLUqbchwGiLrV6spkl4/6UOKJ3YgxFE+wWLj/LakyIZUC83bfeFgbHkRcNhsAqTQCGR74jImsLfK8pg==}
- '@vueuse/shared@10.9.0':
- resolution: {integrity: sha512-Uud2IWncmAfJvRaFYzv5OHDli+FbOzxiVEQdLCKQKLyhz94PIyFC3CHcH7EDMwIn8NPtD06+PNbC/PiO0LGLtw==}
+ '@vueuse/shared@10.10.1':
+ resolution: {integrity: sha512-edqexI+RQpoeqDxTatqBZa+K87ganbrwpoP++Fd9828U3js5jzwcEDeyrYcUgkKZ5LLL8q7M5SOMvSpMrxBPxg==}
acorn-jsx@5.3.2:
resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
@@ -760,8 +757,8 @@ packages:
brace-expansion@2.0.1:
resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==}
- braces@3.0.2:
- resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==}
+ braces@3.0.3:
+ resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
engines: {node: '>=8'}
callsites@3.1.0:
@@ -807,8 +804,8 @@ packages:
de-indent@1.0.2:
resolution: {integrity: sha512-e/1zu3xH5MQryN2zdVaF0OrdNLUbvWxzMbi+iNA6Bky7l1RoP8a2fIbRocyHclXt/arDrrR6lL3TqFD9pMQTsg==}
- debug@4.3.4:
- resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==}
+ debug@4.3.5:
+ resolution: {integrity: sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==}
engines: {node: '>=6.0'}
peerDependencies:
supports-color: '*'
@@ -840,8 +837,8 @@ packages:
resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
engines: {node: '>=10'}
- eslint-plugin-vue@9.25.0:
- resolution: {integrity: sha512-tDWlx14bVe6Bs+Nnh3IGrD+hb11kf2nukfm6jLsmJIhmiRQ1SUaksvwY9U5MvPB0pcrg0QK0xapQkfITs3RKOA==}
+ eslint-plugin-vue@9.26.0:
+ resolution: {integrity: sha512-eTvlxXgd4ijE1cdur850G6KalZqk65k1JKoOI2d1kT3hr8sPD07j1q98FRFdNnpxBELGPWxZmInxeHGF/GxtqQ==}
engines: {node: ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.2.0 || ^7.0.0 || ^8.0.0 || ^9.0.0
@@ -862,8 +859,8 @@ packages:
resolution: {integrity: sha512-OtIRv/2GyiF6o/d8K7MYKKbXrOUBIK6SfkIRM4Z0dY3w+LiQ0vy3F57m0Z71bjbyeiWFiHJ8brqnmE6H6/jEuw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- eslint@9.0.0:
- resolution: {integrity: sha512-IMryZ5SudxzQvuod6rUdIUz29qFItWx281VhtFVc2Psy/ZhlCeD/5DT6lBIJ4H3G+iamGJoTln1v+QSuPw0p7Q==}
+ eslint@9.4.0:
+ resolution: {integrity: sha512-sjc7Y8cUD1IlwYcTS9qPSvGjAC8Ne9LctpxKKu3x/1IC9bnOg98Zy6GxEJUfr1NojMgVPlyANXYns8oE2c1TAA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
hasBin: true
@@ -914,8 +911,8 @@ packages:
resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==}
engines: {node: '>=16.0.0'}
- fill-range@7.0.1:
- resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==}
+ fill-range@7.1.1:
+ resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==}
engines: {node: '>=8'}
find-up@5.0.0:
@@ -960,8 +957,8 @@ packages:
resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==}
engines: {node: '>=18'}
- globals@15.0.0:
- resolution: {integrity: sha512-m/C/yR4mjO6pXDTm9/R/SpYTAIyaUB4EOzcaaMEl7mds7Mshct9GfejiJNQGjHHbdMPey13Kpu4TMbYi9ex1pw==}
+ globals@15.4.0:
+ resolution: {integrity: sha512-unnwvMZpv0eDUyjNyh9DH/yxUaRYrEjW/qK4QcdrHg3oO11igUQrCSgODHEqxlKg8v2CD2Sd7UkqqEBoz5U7TQ==}
engines: {node: '>=18'}
globby@11.1.0:
@@ -1107,8 +1104,8 @@ packages:
resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
engines: {node: '>= 8'}
- micromatch@4.0.5:
- resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==}
+ micromatch@4.0.7:
+ resolution: {integrity: sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q==}
engines: {node: '>=8.6'}
mime@1.6.0:
@@ -1157,8 +1154,8 @@ packages:
nth-check@2.1.1:
resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==}
- optionator@0.9.3:
- resolution: {integrity: sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==}
+ optionator@0.9.4:
+ resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==}
engines: {node: '>= 0.8.0'}
p-limit@3.1.0:
@@ -1198,11 +1195,16 @@ packages:
perfect-debounce@1.0.0:
resolution: {integrity: sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==}
+<<<<<<< HEAD
+ ph-utils@0.4.7:
+ resolution: {integrity: sha512-N6xMAz9fytk7CB0GwItA+vTAYxcltNDFEYogEiZTMxr2fu00GpID6DJG1/5sHuk7H3CaGpqQCTcqoeTa2LecPw==}
+=======
ph-utils@0.4.5:
resolution: {integrity: sha512-LmORf7AqiZSIP2ioQEwueNWYn7Wru7xo6Q8cJUw3a+/5xvLxS+gMdrsjzxCOpJBlcf4yKU9nEf6kb4RChSe0yw==}
+>>>>>>> 30db493b37c343c3da04207493c657b3e02558bc
- picocolors@1.0.0:
- resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==}
+ picocolors@1.0.1:
+ resolution: {integrity: sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==}
picomatch@2.3.1:
resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
@@ -1212,23 +1214,23 @@ packages:
resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==}
engines: {node: '>=6'}
- postcss-selector-parser@6.0.16:
- resolution: {integrity: sha512-A0RVJrX+IUkVZbW3ClroRWurercFhieevHB38sr2+l9eUClMqome3LmEmnhlNy+5Mr2EYN6B2Kaw9wYdd+VHiw==}
+ postcss-selector-parser@6.1.0:
+ resolution: {integrity: sha512-UMz42UD0UY0EApS0ZL9o1XnLhSTtvvvLe5Dc2H2O56fvRZi+KulDyf5ctDhhtYJBGKStV2FL1fy6253cmLgqVQ==}
engines: {node: '>=4'}
postcss@8.4.38:
resolution: {integrity: sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==}
engines: {node: ^10 || ^12 || >=14}
- preact@10.20.2:
- resolution: {integrity: sha512-S1d1ernz3KQ+Y2awUxKakpfOg2CEmJmwOP+6igPx6dgr6pgDvenqYviyokWso2rhHvGtTlWWnJDa7RaPbQerTg==}
+ preact@10.22.0:
+ resolution: {integrity: sha512-RRurnSjJPj4rp5K6XoP45Ui33ncb7e4H7WiOHVpjbkvqvA3U+N8Z6Qbo0AE6leGYBV66n8EhEaFixvIu3SkxFw==}
prelude-ls@1.2.1:
resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
engines: {node: '>= 0.8.0'}
- prettier@3.2.5:
- resolution: {integrity: sha512-3/GWa9aOC0YeD7LUfvOG2NiDyhOWRvt1k+rcKhOuYnMY24iiCphgneUfJDyFXd6rZCAnuLBv6UeAULtrhT/F4A==}
+ prettier@3.3.2:
+ resolution: {integrity: sha512-rAVeHYMcv8ATV5d508CFdn+8/pHPpXeIid1DdrPwXnaAdH7cqjVbpJaT5eq4yRAFU/lsbwYwSF/n5iNrdJHPQA==}
engines: {node: '>=14'}
hasBin: true
@@ -1260,11 +1262,11 @@ packages:
resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==}
engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
- rfdc@1.3.1:
- resolution: {integrity: sha512-r5a3l5HzYlIC68TpmYKlxWjmOP6wiPJ1vWv2HeLhNsRZMrCkxeqxiHlQ21oXmQ4F3SiryXBHhAD7JZqvOJjFmg==}
+ rfdc@1.4.1:
+ resolution: {integrity: sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==}
- rollup@4.14.3:
- resolution: {integrity: sha512-ag5tTQKYsj1bhrFC9+OEWqb5O6VYgtQDO9hPDBMmIbePwhfSr+ExlcU741t8Dhw5DkPCQf6noz0jb36D6W9/hw==}
+ rollup@4.18.0:
+ resolution: {integrity: sha512-QmJz14PX3rzbJCN1SG4Xe/bAAX2a6NpCP8ab2vfu2GiUr8AQcr2nCV/oEO3yneFarB67zk8ShlIyWb2LGTb3Sg==}
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
hasBin: true
@@ -1274,11 +1276,11 @@ packages:
safer-buffer@2.1.2:
resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==}
- sax@1.3.0:
- resolution: {integrity: sha512-0s+oAmw9zLl1V1cS9BtZN7JAd0cW5e0QH4W3LWEK6a4LaLEA2OTpGYWDY+6XasBLtz6wkm3u1xRw95mRuJ59WA==}
+ sax@1.4.1:
+ resolution: {integrity: sha512-+aWOz7yVScEGoKNd4PA10LZ8sk0A/z5+nXQG5giUO5rprX9jgYsTdov9qCchZiPIZezbZH+jRut8nPodFAX4Jg==}
- search-insights@2.13.0:
- resolution: {integrity: sha512-Orrsjf9trHHxFRuo9/rzm0KIWmgzE8RMlZMzuhZOJ01Rnz3D0YBAe+V6473t6/H6c7irs6Lt48brULAiRWb3Vw==}
+ search-insights@2.14.0:
+ resolution: {integrity: sha512-OLN6MsPMCghDOqlCtsIsYgtsC0pnwVTyT9Mu6A3ewOj1DxvzZF6COrn2g86E/c05xbktB0XN04m/t1Z+n+fTGw==}
semver@5.7.2:
resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==}
@@ -1289,8 +1291,8 @@ packages:
engines: {node: '>=10'}
hasBin: true
- semver@7.6.0:
- resolution: {integrity: sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==}
+ semver@7.6.2:
+ resolution: {integrity: sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==}
engines: {node: '>=10'}
hasBin: true
@@ -1302,8 +1304,8 @@ packages:
resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
engines: {node: '>=8'}
- shiki@1.3.0:
- resolution: {integrity: sha512-9aNdQy/etMXctnPzsje1h1XIGm9YfRcSksKOGqZWXA/qP9G18/8fpz5Bjpma8bOgz3tqIpjERAd6/lLjFyzoww==}
+ shiki@1.6.4:
+ resolution: {integrity: sha512-X88chM7w8jnadoZtjPTi5ahCJx9pc9f8GfEkZAEYUTlcUZIEw2D/RY86HI/LkkE7Nj8TQWkiBfaFTJ3VJT6ESg==}
slash@3.0.0:
resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==}
@@ -1368,8 +1370,8 @@ packages:
peerDependencies:
typescript: '>=4.2.0'
- tslib@2.6.2:
- resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==}
+ tslib@2.6.3:
+ resolution: {integrity: sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==}
type-check@0.4.0:
resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
@@ -1402,12 +1404,12 @@ packages:
util-deprecate@1.0.2:
resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
- validator@13.11.0:
- resolution: {integrity: sha512-Ii+sehpSfZy+At5nPdnyMhx78fEoPDkR2XW/zimHEL3MyGJQOCQ7WeP20jPYRz7ZCpcKLB21NxuXHF3bxjStBQ==}
+ validator@13.12.0:
+ resolution: {integrity: sha512-c1Q0mCiPlgdTVVVIJIrBuxNicYE+t/7oKeI9MWLj3fh/uq2Pxh/3eeWbVZ4OcGW1TUf53At0njHw5SMdA3tmMg==}
engines: {node: '>= 0.10'}
- vite-plugin-dts@3.8.3:
- resolution: {integrity: sha512-yRHiRosQw7MXdOhmcrVI+kRiB8YEShbSxnADNteK4eZGdEoyOkMHihvO5XOAVlOq8ng9sIqu8vVefDK1zcj3qw==}
+ vite-plugin-dts@3.9.1:
+ resolution: {integrity: sha512-rVp2KM9Ue22NGWB8dNtWEr+KekN3rIgz1tWD050QnRGlriUCmaDwa7qA5zDEjbXg5lAXhYMSBJtx3q3hQIJZSg==}
engines: {node: ^14.18.0 || >=16.0.0}
peerDependencies:
typescript: '*'
@@ -1416,8 +1418,8 @@ packages:
vite:
optional: true
- vite@5.2.9:
- resolution: {integrity: sha512-uOQWfuZBlc6Y3W/DTuQ1Sr+oIXWvqljLvS881SVmAj00d5RdgShLcuXWxseWPd4HXwiYBFW/vXHfKFeqj9uQnw==}
+ vite@5.2.13:
+ resolution: {integrity: sha512-SSq1noJfY9pR3I1TUENL3rQYDQCFqgD+lM6fTRAM8Nv6Lsg5hDLaXkjETVeBt+7vZBCMoibD+6IWnT2mJ+Zb/A==}
engines: {node: ^18.0.0 || >=20.0.0}
hasBin: true
peerDependencies:
@@ -1444,8 +1446,8 @@ packages:
terser:
optional: true
- vitepress@1.1.0:
- resolution: {integrity: sha512-G+NS5I2OETxC0SfGAMDO75JWNkrcir0UCptuhQMNoaZhhlqvYtTDQhph4qGc5dtiTtZkcFa/bCcSx+A2gSS3lA==}
+ vitepress@1.2.3:
+ resolution: {integrity: sha512-GvEsrEeNLiDE1+fuwDAYJCYLNZDAna+EtnXlPajhv/MYeTjbNK6Bvyg6NoTdO1sbwuQJ0vuJR99bOlH53bo6lg==}
hasBin: true
peerDependencies:
markdown-it-mathjax3: ^4
@@ -1456,8 +1458,11 @@ packages:
postcss:
optional: true
- vue-demi@0.14.7:
- resolution: {integrity: sha512-EOG8KXDQNwkJILkx/gPcoL/7vH+hORoBaKgGe+6W7VFMvCYJfmF2dGbvgDroVnI8LU7/kTu8mbjRZGBU1z9NTA==}
+ vscode-uri@3.0.8:
+ resolution: {integrity: sha512-AyFQ0EVmsOZOlAnxoFOGOq1SQDWAB7C6aqMGS23svWAllfOaxbuFvcT8D1i8z3Gyn8fraVeZNNmN6e9bxxXkKw==}
+
+ vue-demi@0.14.8:
+ resolution: {integrity: sha512-Uuqnk9YE9SsWeReYqK2alDI5YzciATE0r2SkA6iMAtuXvNTMNACJLJEXNXaEy94ECuBe4Sk6RzRU80kjdbIo1Q==}
engines: {node: '>=12'}
hasBin: true
peerDependencies:
@@ -1467,8 +1472,8 @@ packages:
'@vue/composition-api':
optional: true
- vue-eslint-parser@9.4.2:
- resolution: {integrity: sha512-Ry9oiGmCAK91HrKMtCrKFWmSFWvYkpGglCeFAIqDdr9zdXmMMpJOmUJS7WWsW7fX81h6mwHmUZCQQ1E0PkSwYQ==}
+ vue-eslint-parser@9.4.3:
+ resolution: {integrity: sha512-2rYRLWlIpaiN8xbPiDyXZXRgLGOtWxERV7ND5fFAv5qo1D2N9Fu9MNajBNc6o13lZ+24DAWCkQCvj4klgmcITg==}
engines: {node: ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: '>=6.0.0'
@@ -1482,14 +1487,14 @@ packages:
peerDependencies:
typescript: '*'
- vue-tsc@2.0.13:
- resolution: {integrity: sha512-a3nL3FvguCWVJUQW/jFrUxdeUtiEkbZoQjidqvMeBK//tuE2w6NWQAbdrEpY2+6nSa4kZoKZp8TZUMtHpjt4mQ==}
+ vue-tsc@2.0.21:
+ resolution: {integrity: sha512-E6x1p1HaHES6Doy8pqtm7kQern79zRtIewkf9fiv7Y43Zo4AFDS5hKi+iHi2RwEhqRmuiwliB1LCEFEGwvxQnw==}
hasBin: true
peerDependencies:
typescript: '*'
- vue@3.4.23:
- resolution: {integrity: sha512-X1y6yyGJ28LMUBJ0k/qIeKHstGd+BlWQEOT40x3auJFTmpIhpbKLgN7EFsqalnJXq1Km5ybDEsp6BhuWKciUDg==}
+ vue@3.4.27:
+ resolution: {integrity: sha512-8s/56uK6r01r1icG/aEOHqyMVxd1bkYcSe9j8HcKtr/xTOFWvnzIVTehNW+5Yt89f+DLBe4A569pnZLS5HzAMA==}
peerDependencies:
typescript: '*'
peerDependenciesMeta:
@@ -1501,6 +1506,10 @@ packages:
engines: {node: '>= 8'}
hasBin: true
+ word-wrap@1.2.5:
+ resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==}
+ engines: {node: '>=0.10.0'}
+
xml-name-validator@4.0.0:
resolution: {integrity: sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==}
engines: {node: '>=12'}
@@ -1519,21 +1528,19 @@ packages:
snapshots:
- '@aashutoshrathi/word-wrap@1.2.6': {}
-
- '@algolia/autocomplete-core@1.9.3(@algolia/client-search@4.23.3)(algoliasearch@4.23.3)(search-insights@2.13.0)':
+ '@algolia/autocomplete-core@1.9.3(@algolia/client-search@4.23.3)(algoliasearch@4.23.3)(search-insights@2.14.0)':
dependencies:
- '@algolia/autocomplete-plugin-algolia-insights': 1.9.3(@algolia/client-search@4.23.3)(algoliasearch@4.23.3)(search-insights@2.13.0)
+ '@algolia/autocomplete-plugin-algolia-insights': 1.9.3(@algolia/client-search@4.23.3)(algoliasearch@4.23.3)(search-insights@2.14.0)
'@algolia/autocomplete-shared': 1.9.3(@algolia/client-search@4.23.3)(algoliasearch@4.23.3)
transitivePeerDependencies:
- '@algolia/client-search'
- algoliasearch
- search-insights
- '@algolia/autocomplete-plugin-algolia-insights@1.9.3(@algolia/client-search@4.23.3)(algoliasearch@4.23.3)(search-insights@2.13.0)':
+ '@algolia/autocomplete-plugin-algolia-insights@1.9.3(@algolia/client-search@4.23.3)(algoliasearch@4.23.3)(search-insights@2.14.0)':
dependencies:
'@algolia/autocomplete-shared': 1.9.3(@algolia/client-search@4.23.3)(algoliasearch@4.23.3)
- search-insights: 2.13.0
+ search-insights: 2.14.0
transitivePeerDependencies:
- '@algolia/client-search'
- algoliasearch
@@ -1625,28 +1632,28 @@ snapshots:
'@algolia/logger-common': 4.23.3
'@algolia/requester-common': 4.23.3
- '@babel/helper-string-parser@7.24.1': {}
+ '@babel/helper-string-parser@7.24.7': {}
- '@babel/helper-validator-identifier@7.22.20': {}
+ '@babel/helper-validator-identifier@7.24.7': {}
- '@babel/parser@7.24.4':
+ '@babel/parser@7.24.7':
dependencies:
- '@babel/types': 7.24.0
+ '@babel/types': 7.24.7
- '@babel/types@7.24.0':
+ '@babel/types@7.24.7':
dependencies:
- '@babel/helper-string-parser': 7.24.1
- '@babel/helper-validator-identifier': 7.22.20
+ '@babel/helper-string-parser': 7.24.7
+ '@babel/helper-validator-identifier': 7.24.7
to-fast-properties: 2.0.0
'@ctrl/tinycolor@4.1.0': {}
'@docsearch/css@3.6.0': {}
- '@docsearch/js@3.6.0(@algolia/client-search@4.23.3)(search-insights@2.13.0)':
+ '@docsearch/js@3.6.0(@algolia/client-search@4.23.3)(search-insights@2.14.0)':
dependencies:
- '@docsearch/react': 3.6.0(@algolia/client-search@4.23.3)(search-insights@2.13.0)
- preact: 10.20.2
+ '@docsearch/react': 3.6.0(@algolia/client-search@4.23.3)(search-insights@2.14.0)
+ preact: 10.22.0
transitivePeerDependencies:
- '@algolia/client-search'
- '@types/react'
@@ -1654,14 +1661,14 @@ snapshots:
- react-dom
- search-insights
- '@docsearch/react@3.6.0(@algolia/client-search@4.23.3)(search-insights@2.13.0)':
+ '@docsearch/react@3.6.0(@algolia/client-search@4.23.3)(search-insights@2.14.0)':
dependencies:
- '@algolia/autocomplete-core': 1.9.3(@algolia/client-search@4.23.3)(algoliasearch@4.23.3)(search-insights@2.13.0)
+ '@algolia/autocomplete-core': 1.9.3(@algolia/client-search@4.23.3)(algoliasearch@4.23.3)(search-insights@2.14.0)
'@algolia/autocomplete-preset-algolia': 1.9.3(@algolia/client-search@4.23.3)(algoliasearch@4.23.3)
'@docsearch/css': 3.6.0
algoliasearch: 4.23.3
optionalDependencies:
- search-insights: 2.13.0
+ search-insights: 2.14.0
transitivePeerDependencies:
- '@algolia/client-search'
@@ -1734,17 +1741,25 @@ snapshots:
'@esbuild/win32-x64@0.20.2':
optional: true
- '@eslint-community/eslint-utils@4.4.0(eslint@9.0.0)':
+ '@eslint-community/eslint-utils@4.4.0(eslint@9.4.0)':
dependencies:
- eslint: 9.0.0
+ eslint: 9.4.0
eslint-visitor-keys: 3.4.3
- '@eslint-community/regexpp@4.10.0': {}
+ '@eslint-community/regexpp@4.10.1': {}
- '@eslint/eslintrc@3.0.2':
+ '@eslint/config-array@0.15.1':
+ dependencies:
+ '@eslint/object-schema': 2.1.3
+ debug: 4.3.5
+ minimatch: 3.1.2
+ transitivePeerDependencies:
+ - supports-color
+
+ '@eslint/eslintrc@3.1.0':
dependencies:
ajv: 6.12.6
- debug: 4.3.4
+ debug: 4.3.5
espree: 10.0.1
globals: 14.0.0
ignore: 5.3.1
@@ -1755,39 +1770,33 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@eslint/js@9.0.0': {}
+ '@eslint/js@9.4.0': {}
- '@humanwhocodes/config-array@0.12.3':
- dependencies:
- '@humanwhocodes/object-schema': 2.0.3
- debug: 4.3.4
- minimatch: 3.1.2
- transitivePeerDependencies:
- - supports-color
+ '@eslint/object-schema@2.1.3': {}
'@humanwhocodes/module-importer@1.0.1': {}
- '@humanwhocodes/object-schema@2.0.3': {}
+ '@humanwhocodes/retry@0.3.0': {}
'@jridgewell/sourcemap-codec@1.4.15': {}
- '@microsoft/api-extractor-model@7.28.13(@types/node@20.12.7)':
+ '@microsoft/api-extractor-model@7.28.13(@types/node@20.14.2)':
dependencies:
'@microsoft/tsdoc': 0.14.2
'@microsoft/tsdoc-config': 0.16.2
- '@rushstack/node-core-library': 4.0.2(@types/node@20.12.7)
+ '@rushstack/node-core-library': 4.0.2(@types/node@20.14.2)
transitivePeerDependencies:
- '@types/node'
- '@microsoft/api-extractor@7.43.0(@types/node@20.12.7)':
+ '@microsoft/api-extractor@7.43.0(@types/node@20.14.2)':
dependencies:
- '@microsoft/api-extractor-model': 7.28.13(@types/node@20.12.7)
+ '@microsoft/api-extractor-model': 7.28.13(@types/node@20.14.2)
'@microsoft/tsdoc': 0.14.2
'@microsoft/tsdoc-config': 0.16.2
- '@rushstack/node-core-library': 4.0.2(@types/node@20.12.7)
+ '@rushstack/node-core-library': 4.0.2(@types/node@20.14.2)
'@rushstack/rig-package': 0.5.2
- '@rushstack/terminal': 0.10.0(@types/node@20.12.7)
- '@rushstack/ts-command-line': 4.19.1(@types/node@20.12.7)
+ '@rushstack/terminal': 0.10.0(@types/node@20.14.2)
+ '@rushstack/ts-command-line': 4.19.1(@types/node@20.14.2)
lodash: 4.17.21
minimatch: 3.0.8
resolve: 1.22.8
@@ -1818,63 +1827,63 @@ snapshots:
'@nodelib/fs.scandir': 2.1.5
fastq: 1.17.1
- '@rollup/pluginutils@5.1.0(rollup@4.14.3)':
+ '@rollup/pluginutils@5.1.0(rollup@4.18.0)':
dependencies:
'@types/estree': 1.0.5
estree-walker: 2.0.2
picomatch: 2.3.1
optionalDependencies:
- rollup: 4.14.3
+ rollup: 4.18.0
- '@rollup/rollup-android-arm-eabi@4.14.3':
+ '@rollup/rollup-android-arm-eabi@4.18.0':
optional: true
- '@rollup/rollup-android-arm64@4.14.3':
+ '@rollup/rollup-android-arm64@4.18.0':
optional: true
- '@rollup/rollup-darwin-arm64@4.14.3':
+ '@rollup/rollup-darwin-arm64@4.18.0':
optional: true
- '@rollup/rollup-darwin-x64@4.14.3':
+ '@rollup/rollup-darwin-x64@4.18.0':
optional: true
- '@rollup/rollup-linux-arm-gnueabihf@4.14.3':
+ '@rollup/rollup-linux-arm-gnueabihf@4.18.0':
optional: true
- '@rollup/rollup-linux-arm-musleabihf@4.14.3':
+ '@rollup/rollup-linux-arm-musleabihf@4.18.0':
optional: true
- '@rollup/rollup-linux-arm64-gnu@4.14.3':
+ '@rollup/rollup-linux-arm64-gnu@4.18.0':
optional: true
- '@rollup/rollup-linux-arm64-musl@4.14.3':
+ '@rollup/rollup-linux-arm64-musl@4.18.0':
optional: true
- '@rollup/rollup-linux-powerpc64le-gnu@4.14.3':
+ '@rollup/rollup-linux-powerpc64le-gnu@4.18.0':
optional: true
- '@rollup/rollup-linux-riscv64-gnu@4.14.3':
+ '@rollup/rollup-linux-riscv64-gnu@4.18.0':
optional: true
- '@rollup/rollup-linux-s390x-gnu@4.14.3':
+ '@rollup/rollup-linux-s390x-gnu@4.18.0':
optional: true
- '@rollup/rollup-linux-x64-gnu@4.14.3':
+ '@rollup/rollup-linux-x64-gnu@4.18.0':
optional: true
- '@rollup/rollup-linux-x64-musl@4.14.3':
+ '@rollup/rollup-linux-x64-musl@4.18.0':
optional: true
- '@rollup/rollup-win32-arm64-msvc@4.14.3':
+ '@rollup/rollup-win32-arm64-msvc@4.18.0':
optional: true
- '@rollup/rollup-win32-ia32-msvc@4.14.3':
+ '@rollup/rollup-win32-ia32-msvc@4.18.0':
optional: true
- '@rollup/rollup-win32-x64-msvc@4.14.3':
+ '@rollup/rollup-win32-x64-msvc@4.18.0':
optional: true
- '@rushstack/node-core-library@4.0.2(@types/node@20.12.7)':
+ '@rushstack/node-core-library@4.0.2(@types/node@20.14.2)':
dependencies:
fs-extra: 7.0.1
import-lazy: 4.0.0
@@ -1883,162 +1892,153 @@ snapshots:
semver: 7.5.4
z-schema: 5.0.5
optionalDependencies:
- '@types/node': 20.12.7
+ '@types/node': 20.14.2
'@rushstack/rig-package@0.5.2':
dependencies:
resolve: 1.22.8
strip-json-comments: 3.1.1
- '@rushstack/terminal@0.10.0(@types/node@20.12.7)':
+ '@rushstack/terminal@0.10.0(@types/node@20.14.2)':
dependencies:
- '@rushstack/node-core-library': 4.0.2(@types/node@20.12.7)
+ '@rushstack/node-core-library': 4.0.2(@types/node@20.14.2)
supports-color: 8.1.1
optionalDependencies:
- '@types/node': 20.12.7
+ '@types/node': 20.14.2
- '@rushstack/ts-command-line@4.19.1(@types/node@20.12.7)':
+ '@rushstack/ts-command-line@4.19.1(@types/node@20.14.2)':
dependencies:
- '@rushstack/terminal': 0.10.0(@types/node@20.12.7)
+ '@rushstack/terminal': 0.10.0(@types/node@20.14.2)
'@types/argparse': 1.0.38
argparse: 1.0.10
string-argv: 0.3.2
transitivePeerDependencies:
- '@types/node'
- '@shikijs/core@1.3.0': {}
+ '@shikijs/core@1.6.4': {}
- '@shikijs/transformers@1.3.0':
+ '@shikijs/transformers@1.6.4':
dependencies:
- shiki: 1.3.0
+ shiki: 1.6.4
'@types/argparse@1.0.38': {}
'@types/estree@1.0.5': {}
- '@types/json-schema@7.0.15': {}
+ '@types/linkify-it@5.0.0': {}
- '@types/linkify-it@3.0.5': {}
-
- '@types/markdown-it@13.0.7':
+ '@types/markdown-it@14.1.1':
dependencies:
- '@types/linkify-it': 3.0.5
- '@types/mdurl': 1.0.5
+ '@types/linkify-it': 5.0.0
+ '@types/mdurl': 2.0.0
- '@types/mdurl@1.0.5': {}
+ '@types/mdurl@2.0.0': {}
- '@types/node@20.12.7':
+ '@types/node@20.14.2':
dependencies:
undici-types: 5.26.5
- '@types/semver@7.5.8': {}
-
'@types/web-bluetooth@0.0.20': {}
- '@typescript-eslint/eslint-plugin@7.7.0(@typescript-eslint/parser@7.7.0(eslint@9.0.0)(typescript@5.4.5))(eslint@9.0.0)(typescript@5.4.5)':
+ '@typescript-eslint/eslint-plugin@7.13.0(@typescript-eslint/parser@7.13.0(eslint@9.4.0)(typescript@5.4.5))(eslint@9.4.0)(typescript@5.4.5)':
dependencies:
- '@eslint-community/regexpp': 4.10.0
- '@typescript-eslint/parser': 7.7.0(eslint@9.0.0)(typescript@5.4.5)
- '@typescript-eslint/scope-manager': 7.7.0
- '@typescript-eslint/type-utils': 7.7.0(eslint@9.0.0)(typescript@5.4.5)
- '@typescript-eslint/utils': 7.7.0(eslint@9.0.0)(typescript@5.4.5)
- '@typescript-eslint/visitor-keys': 7.7.0
- debug: 4.3.4
- eslint: 9.0.0
+ '@eslint-community/regexpp': 4.10.1
+ '@typescript-eslint/parser': 7.13.0(eslint@9.4.0)(typescript@5.4.5)
+ '@typescript-eslint/scope-manager': 7.13.0
+ '@typescript-eslint/type-utils': 7.13.0(eslint@9.4.0)(typescript@5.4.5)
+ '@typescript-eslint/utils': 7.13.0(eslint@9.4.0)(typescript@5.4.5)
+ '@typescript-eslint/visitor-keys': 7.13.0
+ eslint: 9.4.0
graphemer: 1.4.0
ignore: 5.3.1
natural-compare: 1.4.0
- semver: 7.6.0
ts-api-utils: 1.3.0(typescript@5.4.5)
optionalDependencies:
typescript: 5.4.5
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/parser@7.7.0(eslint@9.0.0)(typescript@5.4.5)':
+ '@typescript-eslint/parser@7.13.0(eslint@9.4.0)(typescript@5.4.5)':
dependencies:
- '@typescript-eslint/scope-manager': 7.7.0
- '@typescript-eslint/types': 7.7.0
- '@typescript-eslint/typescript-estree': 7.7.0(typescript@5.4.5)
- '@typescript-eslint/visitor-keys': 7.7.0
- debug: 4.3.4
- eslint: 9.0.0
+ '@typescript-eslint/scope-manager': 7.13.0
+ '@typescript-eslint/types': 7.13.0
+ '@typescript-eslint/typescript-estree': 7.13.0(typescript@5.4.5)
+ '@typescript-eslint/visitor-keys': 7.13.0
+ debug: 4.3.5
+ eslint: 9.4.0
optionalDependencies:
typescript: 5.4.5
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/scope-manager@7.7.0':
+ '@typescript-eslint/scope-manager@7.13.0':
dependencies:
- '@typescript-eslint/types': 7.7.0
- '@typescript-eslint/visitor-keys': 7.7.0
+ '@typescript-eslint/types': 7.13.0
+ '@typescript-eslint/visitor-keys': 7.13.0
- '@typescript-eslint/type-utils@7.7.0(eslint@9.0.0)(typescript@5.4.5)':
+ '@typescript-eslint/type-utils@7.13.0(eslint@9.4.0)(typescript@5.4.5)':
dependencies:
- '@typescript-eslint/typescript-estree': 7.7.0(typescript@5.4.5)
- '@typescript-eslint/utils': 7.7.0(eslint@9.0.0)(typescript@5.4.5)
- debug: 4.3.4
- eslint: 9.0.0
+ '@typescript-eslint/typescript-estree': 7.13.0(typescript@5.4.5)
+ '@typescript-eslint/utils': 7.13.0(eslint@9.4.0)(typescript@5.4.5)
+ debug: 4.3.5
+ eslint: 9.4.0
ts-api-utils: 1.3.0(typescript@5.4.5)
optionalDependencies:
typescript: 5.4.5
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/types@7.7.0': {}
+ '@typescript-eslint/types@7.13.0': {}
- '@typescript-eslint/typescript-estree@7.7.0(typescript@5.4.5)':
+ '@typescript-eslint/typescript-estree@7.13.0(typescript@5.4.5)':
dependencies:
- '@typescript-eslint/types': 7.7.0
- '@typescript-eslint/visitor-keys': 7.7.0
- debug: 4.3.4
+ '@typescript-eslint/types': 7.13.0
+ '@typescript-eslint/visitor-keys': 7.13.0
+ debug: 4.3.5
globby: 11.1.0
is-glob: 4.0.3
minimatch: 9.0.4
- semver: 7.6.0
+ semver: 7.6.2
ts-api-utils: 1.3.0(typescript@5.4.5)
optionalDependencies:
typescript: 5.4.5
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/utils@7.7.0(eslint@9.0.0)(typescript@5.4.5)':
+ '@typescript-eslint/utils@7.13.0(eslint@9.4.0)(typescript@5.4.5)':
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@9.0.0)
- '@types/json-schema': 7.0.15
- '@types/semver': 7.5.8
- '@typescript-eslint/scope-manager': 7.7.0
- '@typescript-eslint/types': 7.7.0
- '@typescript-eslint/typescript-estree': 7.7.0(typescript@5.4.5)
- eslint: 9.0.0
- semver: 7.6.0
+ '@eslint-community/eslint-utils': 4.4.0(eslint@9.4.0)
+ '@typescript-eslint/scope-manager': 7.13.0
+ '@typescript-eslint/types': 7.13.0
+ '@typescript-eslint/typescript-estree': 7.13.0(typescript@5.4.5)
+ eslint: 9.4.0
transitivePeerDependencies:
- supports-color
- typescript
- '@typescript-eslint/visitor-keys@7.7.0':
+ '@typescript-eslint/visitor-keys@7.13.0':
dependencies:
- '@typescript-eslint/types': 7.7.0
+ '@typescript-eslint/types': 7.13.0
eslint-visitor-keys: 3.4.3
- '@vitejs/plugin-vue@5.0.4(vite@5.2.9(@types/node@20.12.7)(less@4.2.0))(vue@3.4.23(typescript@5.4.5))':
+ '@vitejs/plugin-vue@5.0.5(vite@5.2.13(@types/node@20.14.2)(less@4.2.0))(vue@3.4.27(typescript@5.4.5))':
dependencies:
- vite: 5.2.9(@types/node@20.12.7)(less@4.2.0)
- vue: 3.4.23(typescript@5.4.5)
+ vite: 5.2.13(@types/node@20.14.2)(less@4.2.0)
+ vue: 3.4.27(typescript@5.4.5)
'@volar/language-core@1.11.1':
dependencies:
'@volar/source-map': 1.11.1
- '@volar/language-core@2.2.0-alpha.8':
+ '@volar/language-core@2.3.0':
dependencies:
- '@volar/source-map': 2.2.0-alpha.8
+ '@volar/source-map': 2.3.0
'@volar/source-map@1.11.1':
dependencies:
muggle-string: 0.3.1
- '@volar/source-map@2.2.0-alpha.8':
+ '@volar/source-map@2.3.0':
dependencies:
muggle-string: 0.4.1
@@ -2047,66 +2047,67 @@ snapshots:
'@volar/language-core': 1.11.1
path-browserify: 1.0.1
- '@volar/typescript@2.2.0-alpha.8':
+ '@volar/typescript@2.3.0':
dependencies:
- '@volar/language-core': 2.2.0-alpha.8
+ '@volar/language-core': 2.3.0
path-browserify: 1.0.1
+ vscode-uri: 3.0.8
- '@vue/compiler-core@3.4.23':
+ '@vue/compiler-core@3.4.27':
dependencies:
- '@babel/parser': 7.24.4
- '@vue/shared': 3.4.23
+ '@babel/parser': 7.24.7
+ '@vue/shared': 3.4.27
entities: 4.5.0
estree-walker: 2.0.2
source-map-js: 1.2.0
- '@vue/compiler-dom@3.4.23':
+ '@vue/compiler-dom@3.4.27':
dependencies:
- '@vue/compiler-core': 3.4.23
- '@vue/shared': 3.4.23
+ '@vue/compiler-core': 3.4.27
+ '@vue/shared': 3.4.27
- '@vue/compiler-sfc@3.4.23':
+ '@vue/compiler-sfc@3.4.27':
dependencies:
- '@babel/parser': 7.24.4
- '@vue/compiler-core': 3.4.23
- '@vue/compiler-dom': 3.4.23
- '@vue/compiler-ssr': 3.4.23
- '@vue/shared': 3.4.23
+ '@babel/parser': 7.24.7
+ '@vue/compiler-core': 3.4.27
+ '@vue/compiler-dom': 3.4.27
+ '@vue/compiler-ssr': 3.4.27
+ '@vue/shared': 3.4.27
estree-walker: 2.0.2
magic-string: 0.30.10
postcss: 8.4.38
source-map-js: 1.2.0
- '@vue/compiler-ssr@3.4.23':
+ '@vue/compiler-ssr@3.4.27':
dependencies:
- '@vue/compiler-dom': 3.4.23
- '@vue/shared': 3.4.23
+ '@vue/compiler-dom': 3.4.27
+ '@vue/shared': 3.4.27
- '@vue/devtools-api@7.0.27(vue@3.4.23(typescript@5.4.5))':
+ '@vue/devtools-api@7.2.1(vue@3.4.27(typescript@5.4.5))':
dependencies:
- '@vue/devtools-kit': 7.0.27(vue@3.4.23(typescript@5.4.5))
+ '@vue/devtools-kit': 7.2.1(vue@3.4.27(typescript@5.4.5))
transitivePeerDependencies:
- vue
- '@vue/devtools-kit@7.0.27(vue@3.4.23(typescript@5.4.5))':
+ '@vue/devtools-kit@7.2.1(vue@3.4.27(typescript@5.4.5))':
dependencies:
- '@vue/devtools-shared': 7.0.27
+ '@vue/devtools-shared': 7.2.1
hookable: 5.5.3
mitt: 3.0.1
perfect-debounce: 1.0.0
speakingurl: 14.0.1
- vue: 3.4.23(typescript@5.4.5)
+ vue: 3.4.27(typescript@5.4.5)
- '@vue/devtools-shared@7.0.27':
+ '@vue/devtools-shared@7.2.1':
dependencies:
- rfdc: 1.3.1
+ rfdc: 1.4.1
'@vue/language-core@1.8.27(typescript@5.4.5)':
dependencies:
'@volar/language-core': 1.11.1
'@volar/source-map': 1.11.1
- '@vue/compiler-dom': 3.4.23
- '@vue/shared': 3.4.23
+ '@vue/compiler-dom': 3.4.27
+ '@vue/shared': 3.4.27
computeds: 0.0.1
minimatch: 9.0.4
muggle-string: 0.3.1
@@ -2115,11 +2116,11 @@ snapshots:
optionalDependencies:
typescript: 5.4.5
- '@vue/language-core@2.0.13(typescript@5.4.5)':
+ '@vue/language-core@2.0.21(typescript@5.4.5)':
dependencies:
- '@volar/language-core': 2.2.0-alpha.8
- '@vue/compiler-dom': 3.4.23
- '@vue/shared': 3.4.23
+ '@volar/language-core': 2.3.0
+ '@vue/compiler-dom': 3.4.27
+ '@vue/shared': 3.4.27
computeds: 0.0.1
minimatch: 9.0.4
path-browserify: 1.0.1
@@ -2127,55 +2128,55 @@ snapshots:
optionalDependencies:
typescript: 5.4.5
- '@vue/reactivity@3.4.23':
+ '@vue/reactivity@3.4.27':
dependencies:
- '@vue/shared': 3.4.23
+ '@vue/shared': 3.4.27
- '@vue/runtime-core@3.4.23':
+ '@vue/runtime-core@3.4.27':
dependencies:
- '@vue/reactivity': 3.4.23
- '@vue/shared': 3.4.23
+ '@vue/reactivity': 3.4.27
+ '@vue/shared': 3.4.27
- '@vue/runtime-dom@3.4.23':
+ '@vue/runtime-dom@3.4.27':
dependencies:
- '@vue/runtime-core': 3.4.23
- '@vue/shared': 3.4.23
+ '@vue/runtime-core': 3.4.27
+ '@vue/shared': 3.4.27
csstype: 3.1.3
- '@vue/server-renderer@3.4.23(vue@3.4.23(typescript@5.4.5))':
+ '@vue/server-renderer@3.4.27(vue@3.4.27(typescript@5.4.5))':
dependencies:
- '@vue/compiler-ssr': 3.4.23
- '@vue/shared': 3.4.23
- vue: 3.4.23(typescript@5.4.5)
+ '@vue/compiler-ssr': 3.4.27
+ '@vue/shared': 3.4.27
+ vue: 3.4.27(typescript@5.4.5)
- '@vue/shared@3.4.23': {}
+ '@vue/shared@3.4.27': {}
- '@vueuse/core@10.9.0(vue@3.4.23(typescript@5.4.5))':
+ '@vueuse/core@10.10.1(vue@3.4.27(typescript@5.4.5))':
dependencies:
'@types/web-bluetooth': 0.0.20
- '@vueuse/metadata': 10.9.0
- '@vueuse/shared': 10.9.0(vue@3.4.23(typescript@5.4.5))
- vue-demi: 0.14.7(vue@3.4.23(typescript@5.4.5))
+ '@vueuse/metadata': 10.10.1
+ '@vueuse/shared': 10.10.1(vue@3.4.27(typescript@5.4.5))
+ vue-demi: 0.14.8(vue@3.4.27(typescript@5.4.5))
transitivePeerDependencies:
- '@vue/composition-api'
- vue
- '@vueuse/integrations@10.9.0(focus-trap@7.5.4)(vue@3.4.23(typescript@5.4.5))':
+ '@vueuse/integrations@10.10.1(focus-trap@7.5.4)(vue@3.4.27(typescript@5.4.5))':
dependencies:
- '@vueuse/core': 10.9.0(vue@3.4.23(typescript@5.4.5))
- '@vueuse/shared': 10.9.0(vue@3.4.23(typescript@5.4.5))
- vue-demi: 0.14.7(vue@3.4.23(typescript@5.4.5))
+ '@vueuse/core': 10.10.1(vue@3.4.27(typescript@5.4.5))
+ '@vueuse/shared': 10.10.1(vue@3.4.27(typescript@5.4.5))
+ vue-demi: 0.14.8(vue@3.4.27(typescript@5.4.5))
optionalDependencies:
focus-trap: 7.5.4
transitivePeerDependencies:
- '@vue/composition-api'
- vue
- '@vueuse/metadata@10.9.0': {}
+ '@vueuse/metadata@10.10.1': {}
- '@vueuse/shared@10.9.0(vue@3.4.23(typescript@5.4.5))':
+ '@vueuse/shared@10.10.1(vue@3.4.27(typescript@5.4.5))':
dependencies:
- vue-demi: 0.14.7(vue@3.4.23(typescript@5.4.5))
+ vue-demi: 0.14.8(vue@3.4.27(typescript@5.4.5))
transitivePeerDependencies:
- '@vue/composition-api'
- vue
@@ -2238,9 +2239,9 @@ snapshots:
dependencies:
balanced-match: 1.0.2
- braces@3.0.2:
+ braces@3.0.3:
dependencies:
- fill-range: 7.0.1
+ fill-range: 7.1.1
callsites@3.1.0: {}
@@ -2278,7 +2279,7 @@ snapshots:
de-indent@1.0.2: {}
- debug@4.3.4:
+ debug@4.3.5:
dependencies:
ms: 2.1.2
@@ -2323,16 +2324,16 @@ snapshots:
escape-string-regexp@4.0.0: {}
- eslint-plugin-vue@9.25.0(eslint@9.0.0):
+ eslint-plugin-vue@9.26.0(eslint@9.4.0):
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@9.0.0)
- eslint: 9.0.0
+ '@eslint-community/eslint-utils': 4.4.0(eslint@9.4.0)
+ eslint: 9.4.0
globals: 13.24.0
natural-compare: 1.4.0
nth-check: 2.1.1
- postcss-selector-parser: 6.0.16
- semver: 7.6.0
- vue-eslint-parser: 9.4.2(eslint@9.0.0)
+ postcss-selector-parser: 6.1.0
+ semver: 7.6.2
+ vue-eslint-parser: 9.4.3(eslint@9.4.0)
xml-name-validator: 4.0.0
transitivePeerDependencies:
- supports-color
@@ -2351,19 +2352,20 @@ snapshots:
eslint-visitor-keys@4.0.0: {}
- eslint@9.0.0:
+ eslint@9.4.0:
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@9.0.0)
- '@eslint-community/regexpp': 4.10.0
- '@eslint/eslintrc': 3.0.2
- '@eslint/js': 9.0.0
- '@humanwhocodes/config-array': 0.12.3
+ '@eslint-community/eslint-utils': 4.4.0(eslint@9.4.0)
+ '@eslint-community/regexpp': 4.10.1
+ '@eslint/config-array': 0.15.1
+ '@eslint/eslintrc': 3.1.0
+ '@eslint/js': 9.4.0
'@humanwhocodes/module-importer': 1.0.1
+ '@humanwhocodes/retry': 0.3.0
'@nodelib/fs.walk': 1.2.8
ajv: 6.12.6
chalk: 4.1.2
cross-spawn: 7.0.3
- debug: 4.3.4
+ debug: 4.3.5
escape-string-regexp: 4.0.0
eslint-scope: 8.0.1
eslint-visitor-keys: 4.0.0
@@ -2374,7 +2376,6 @@ snapshots:
file-entry-cache: 8.0.0
find-up: 5.0.0
glob-parent: 6.0.2
- graphemer: 1.4.0
ignore: 5.3.1
imurmurhash: 0.1.4
is-glob: 4.0.3
@@ -2384,7 +2385,7 @@ snapshots:
lodash.merge: 4.6.2
minimatch: 3.1.2
natural-compare: 1.4.0
- optionator: 0.9.3
+ optionator: 0.9.4
strip-ansi: 6.0.1
text-table: 0.2.0
transitivePeerDependencies:
@@ -2424,7 +2425,7 @@ snapshots:
'@nodelib/fs.walk': 1.2.8
glob-parent: 5.1.2
merge2: 1.4.1
- micromatch: 4.0.5
+ micromatch: 4.0.7
fast-json-stable-stringify@2.1.0: {}
@@ -2438,7 +2439,7 @@ snapshots:
dependencies:
flat-cache: 4.0.1
- fill-range@7.0.1:
+ fill-range@7.1.1:
dependencies:
to-regex-range: 5.0.1
@@ -2483,7 +2484,7 @@ snapshots:
globals@14.0.0: {}
- globals@15.0.0: {}
+ globals@15.4.0: {}
globby@11.1.0:
dependencies:
@@ -2571,7 +2572,7 @@ snapshots:
dependencies:
copy-anything: 2.0.6
parse-node-version: 1.0.1
- tslib: 2.6.2
+ tslib: 2.6.3
optionalDependencies:
errno: 0.1.8
graceful-fs: 4.2.11
@@ -2616,9 +2617,9 @@ snapshots:
merge2@1.4.1: {}
- micromatch@4.0.5:
+ micromatch@4.0.7:
dependencies:
- braces: 3.0.2
+ braces: 3.0.3
picomatch: 2.3.1
mime@1.6.0:
@@ -2653,21 +2654,21 @@ snapshots:
needle@3.3.1:
dependencies:
iconv-lite: 0.6.3
- sax: 1.3.0
+ sax: 1.4.1
optional: true
nth-check@2.1.1:
dependencies:
boolbase: 1.0.0
- optionator@0.9.3:
+ optionator@0.9.4:
dependencies:
- '@aashutoshrathi/word-wrap': 1.2.6
deep-is: 0.1.4
fast-levenshtein: 2.0.6
levn: 0.4.1
prelude-ls: 1.2.1
type-check: 0.4.0
+ word-wrap: 1.2.5
p-limit@3.1.0:
dependencies:
@@ -2695,18 +2696,22 @@ snapshots:
perfect-debounce@1.0.0: {}
+<<<<<<< HEAD
+ ph-utils@0.4.7:
+=======
ph-utils@0.4.5:
+>>>>>>> 30db493b37c343c3da04207493c657b3e02558bc
dependencies:
'@ctrl/tinycolor': 4.1.0
- picocolors@1.0.0: {}
+ picocolors@1.0.1: {}
picomatch@2.3.1: {}
pify@4.0.1:
optional: true
- postcss-selector-parser@6.0.16:
+ postcss-selector-parser@6.1.0:
dependencies:
cssesc: 3.0.0
util-deprecate: 1.0.2
@@ -2714,14 +2719,14 @@ snapshots:
postcss@8.4.38:
dependencies:
nanoid: 3.3.7
- picocolors: 1.0.0
+ picocolors: 1.0.1
source-map-js: 1.2.0
- preact@10.20.2: {}
+ preact@10.22.0: {}
prelude-ls@1.2.1: {}
- prettier@3.2.5: {}
+ prettier@3.3.2: {}
prr@1.0.1:
optional: true
@@ -2747,28 +2752,28 @@ snapshots:
reusify@1.0.4: {}
- rfdc@1.3.1: {}
+ rfdc@1.4.1: {}
- rollup@4.14.3:
+ rollup@4.18.0:
dependencies:
'@types/estree': 1.0.5
optionalDependencies:
- '@rollup/rollup-android-arm-eabi': 4.14.3
- '@rollup/rollup-android-arm64': 4.14.3
- '@rollup/rollup-darwin-arm64': 4.14.3
- '@rollup/rollup-darwin-x64': 4.14.3
- '@rollup/rollup-linux-arm-gnueabihf': 4.14.3
- '@rollup/rollup-linux-arm-musleabihf': 4.14.3
- '@rollup/rollup-linux-arm64-gnu': 4.14.3
- '@rollup/rollup-linux-arm64-musl': 4.14.3
- '@rollup/rollup-linux-powerpc64le-gnu': 4.14.3
- '@rollup/rollup-linux-riscv64-gnu': 4.14.3
- '@rollup/rollup-linux-s390x-gnu': 4.14.3
- '@rollup/rollup-linux-x64-gnu': 4.14.3
- '@rollup/rollup-linux-x64-musl': 4.14.3
- '@rollup/rollup-win32-arm64-msvc': 4.14.3
- '@rollup/rollup-win32-ia32-msvc': 4.14.3
- '@rollup/rollup-win32-x64-msvc': 4.14.3
+ '@rollup/rollup-android-arm-eabi': 4.18.0
+ '@rollup/rollup-android-arm64': 4.18.0
+ '@rollup/rollup-darwin-arm64': 4.18.0
+ '@rollup/rollup-darwin-x64': 4.18.0
+ '@rollup/rollup-linux-arm-gnueabihf': 4.18.0
+ '@rollup/rollup-linux-arm-musleabihf': 4.18.0
+ '@rollup/rollup-linux-arm64-gnu': 4.18.0
+ '@rollup/rollup-linux-arm64-musl': 4.18.0
+ '@rollup/rollup-linux-powerpc64le-gnu': 4.18.0
+ '@rollup/rollup-linux-riscv64-gnu': 4.18.0
+ '@rollup/rollup-linux-s390x-gnu': 4.18.0
+ '@rollup/rollup-linux-x64-gnu': 4.18.0
+ '@rollup/rollup-linux-x64-musl': 4.18.0
+ '@rollup/rollup-win32-arm64-msvc': 4.18.0
+ '@rollup/rollup-win32-ia32-msvc': 4.18.0
+ '@rollup/rollup-win32-x64-msvc': 4.18.0
fsevents: 2.3.3
run-parallel@1.2.0:
@@ -2778,10 +2783,10 @@ snapshots:
safer-buffer@2.1.2:
optional: true
- sax@1.3.0:
+ sax@1.4.1:
optional: true
- search-insights@2.13.0: {}
+ search-insights@2.14.0: {}
semver@5.7.2:
optional: true
@@ -2790,9 +2795,7 @@ snapshots:
dependencies:
lru-cache: 6.0.0
- semver@7.6.0:
- dependencies:
- lru-cache: 6.0.0
+ semver@7.6.2: {}
shebang-command@2.0.0:
dependencies:
@@ -2800,9 +2803,9 @@ snapshots:
shebang-regex@3.0.0: {}
- shiki@1.3.0:
+ shiki@1.6.4:
dependencies:
- '@shikijs/core': 1.3.0
+ '@shikijs/core': 1.6.4
slash@3.0.0: {}
@@ -2846,7 +2849,7 @@ snapshots:
dependencies:
typescript: 5.4.5
- tslib@2.6.2: {}
+ tslib@2.6.3: {}
type-check@0.4.0:
dependencies:
@@ -2868,52 +2871,53 @@ snapshots:
util-deprecate@1.0.2: {}
- validator@13.11.0: {}
+ validator@13.12.0: {}
- vite-plugin-dts@3.8.3(@types/node@20.12.7)(rollup@4.14.3)(typescript@5.4.5)(vite@5.2.9(@types/node@20.12.7)(less@4.2.0)):
+ vite-plugin-dts@3.9.1(@types/node@20.14.2)(rollup@4.18.0)(typescript@5.4.5)(vite@5.2.13(@types/node@20.14.2)(less@4.2.0)):
dependencies:
- '@microsoft/api-extractor': 7.43.0(@types/node@20.12.7)
- '@rollup/pluginutils': 5.1.0(rollup@4.14.3)
+ '@microsoft/api-extractor': 7.43.0(@types/node@20.14.2)
+ '@rollup/pluginutils': 5.1.0(rollup@4.18.0)
'@vue/language-core': 1.8.27(typescript@5.4.5)
- debug: 4.3.4
+ debug: 4.3.5
kolorist: 1.8.0
magic-string: 0.30.10
typescript: 5.4.5
vue-tsc: 1.8.27(typescript@5.4.5)
optionalDependencies:
- vite: 5.2.9(@types/node@20.12.7)(less@4.2.0)
+ vite: 5.2.13(@types/node@20.14.2)(less@4.2.0)
transitivePeerDependencies:
- '@types/node'
- rollup
- supports-color
- vite@5.2.9(@types/node@20.12.7)(less@4.2.0):
+ vite@5.2.13(@types/node@20.14.2)(less@4.2.0):
dependencies:
esbuild: 0.20.2
postcss: 8.4.38
- rollup: 4.14.3
+ rollup: 4.18.0
optionalDependencies:
- '@types/node': 20.12.7
+ '@types/node': 20.14.2
fsevents: 2.3.3
less: 4.2.0
- vitepress@1.1.0(@algolia/client-search@4.23.3)(@types/node@20.12.7)(less@4.2.0)(postcss@8.4.38)(search-insights@2.13.0)(typescript@5.4.5):
+ vitepress@1.2.3(@algolia/client-search@4.23.3)(@types/node@20.14.2)(less@4.2.0)(postcss@8.4.38)(search-insights@2.14.0)(typescript@5.4.5):
dependencies:
'@docsearch/css': 3.6.0
- '@docsearch/js': 3.6.0(@algolia/client-search@4.23.3)(search-insights@2.13.0)
- '@shikijs/core': 1.3.0
- '@shikijs/transformers': 1.3.0
- '@types/markdown-it': 13.0.7
- '@vitejs/plugin-vue': 5.0.4(vite@5.2.9(@types/node@20.12.7)(less@4.2.0))(vue@3.4.23(typescript@5.4.5))
- '@vue/devtools-api': 7.0.27(vue@3.4.23(typescript@5.4.5))
- '@vueuse/core': 10.9.0(vue@3.4.23(typescript@5.4.5))
- '@vueuse/integrations': 10.9.0(focus-trap@7.5.4)(vue@3.4.23(typescript@5.4.5))
+ '@docsearch/js': 3.6.0(@algolia/client-search@4.23.3)(search-insights@2.14.0)
+ '@shikijs/core': 1.6.4
+ '@shikijs/transformers': 1.6.4
+ '@types/markdown-it': 14.1.1
+ '@vitejs/plugin-vue': 5.0.5(vite@5.2.13(@types/node@20.14.2)(less@4.2.0))(vue@3.4.27(typescript@5.4.5))
+ '@vue/devtools-api': 7.2.1(vue@3.4.27(typescript@5.4.5))
+ '@vue/shared': 3.4.27
+ '@vueuse/core': 10.10.1(vue@3.4.27(typescript@5.4.5))
+ '@vueuse/integrations': 10.10.1(focus-trap@7.5.4)(vue@3.4.27(typescript@5.4.5))
focus-trap: 7.5.4
mark.js: 8.11.1
minisearch: 6.3.0
- shiki: 1.3.0
- vite: 5.2.9(@types/node@20.12.7)(less@4.2.0)
- vue: 3.4.23(typescript@5.4.5)
+ shiki: 1.6.4
+ vite: 5.2.13(@types/node@20.14.2)(less@4.2.0)
+ vue: 3.4.27(typescript@5.4.5)
optionalDependencies:
postcss: 8.4.38
transitivePeerDependencies:
@@ -2943,20 +2947,22 @@ snapshots:
- typescript
- universal-cookie
- vue-demi@0.14.7(vue@3.4.23(typescript@5.4.5)):
+ vscode-uri@3.0.8: {}
+
+ vue-demi@0.14.8(vue@3.4.27(typescript@5.4.5)):
dependencies:
- vue: 3.4.23(typescript@5.4.5)
+ vue: 3.4.27(typescript@5.4.5)
- vue-eslint-parser@9.4.2(eslint@9.0.0):
+ vue-eslint-parser@9.4.3(eslint@9.4.0):
dependencies:
- debug: 4.3.4
- eslint: 9.0.0
+ debug: 4.3.5
+ eslint: 9.4.0
eslint-scope: 7.2.2
eslint-visitor-keys: 3.4.3
espree: 9.6.1
esquery: 1.5.0
lodash: 4.17.21
- semver: 7.6.0
+ semver: 7.6.2
transitivePeerDependencies:
- supports-color
@@ -2969,23 +2975,23 @@ snapshots:
dependencies:
'@volar/typescript': 1.11.1
'@vue/language-core': 1.8.27(typescript@5.4.5)
- semver: 7.6.0
+ semver: 7.6.2
typescript: 5.4.5
- vue-tsc@2.0.13(typescript@5.4.5):
+ vue-tsc@2.0.21(typescript@5.4.5):
dependencies:
- '@volar/typescript': 2.2.0-alpha.8
- '@vue/language-core': 2.0.13(typescript@5.4.5)
- semver: 7.6.0
+ '@volar/typescript': 2.3.0
+ '@vue/language-core': 2.0.21(typescript@5.4.5)
+ semver: 7.6.2
typescript: 5.4.5
- vue@3.4.23(typescript@5.4.5):
+ vue@3.4.27(typescript@5.4.5):
dependencies:
- '@vue/compiler-dom': 3.4.23
- '@vue/compiler-sfc': 3.4.23
- '@vue/runtime-dom': 3.4.23
- '@vue/server-renderer': 3.4.23(vue@3.4.23(typescript@5.4.5))
- '@vue/shared': 3.4.23
+ '@vue/compiler-dom': 3.4.27
+ '@vue/compiler-sfc': 3.4.27
+ '@vue/runtime-dom': 3.4.27
+ '@vue/server-renderer': 3.4.27(vue@3.4.27(typescript@5.4.5))
+ '@vue/shared': 3.4.27
optionalDependencies:
typescript: 5.4.5
@@ -2993,6 +2999,8 @@ snapshots:
dependencies:
isexe: 2.0.0
+ word-wrap@1.2.5: {}
+
xml-name-validator@4.0.0: {}
yallist@4.0.0: {}
@@ -3003,6 +3011,6 @@ snapshots:
dependencies:
lodash.get: 4.4.2
lodash.isequal: 4.5.0
- validator: 13.11.0
+ validator: 13.12.0
optionalDependencies:
commander: 9.5.0
diff --git a/src/components/Input.vue b/src/components/Input.vue
index c8453e41..f4a25fcc 100644
--- a/src/components/Input.vue
+++ b/src/components/Input.vue
@@ -2,7 +2,10 @@
(),
{
htmlType: 'text',
placeholder: '',
+ autosize: false,
},
);
diff --git a/src/components/form/Form.vue b/src/components/form/Form.vue
new file mode 100644
index 00000000..541573b6
--- /dev/null
+++ b/src/components/form/Form.vue
@@ -0,0 +1,101 @@
+
+
+
+
diff --git a/src/components/form/FormItem.vue b/src/components/form/FormItem.vue
new file mode 100644
index 00000000..9a7e7607
--- /dev/null
+++ b/src/components/form/FormItem.vue
@@ -0,0 +1,79 @@
+
+
+
+
diff --git a/src/components/form/constant.ts b/src/components/form/constant.ts
new file mode 100644
index 00000000..d25327e9
--- /dev/null
+++ b/src/components/form/constant.ts
@@ -0,0 +1 @@
+export const formContext = Symbol('formContext');
diff --git a/src/hooks/useFormReset.ts b/src/hooks/useFormReset.ts
new file mode 100644
index 00000000..cf0c25fa
--- /dev/null
+++ b/src/hooks/useFormReset.ts
@@ -0,0 +1,18 @@
+import { ref } from 'vue';
+import { cloneDeep } from '../utils';
+
+/**
+ * 数据重置, 通常用于表单
+ *
+ * @param params 表单数据
+ * @returns
+ */
+export default function useFormReset>(params: T) {
+ const formFields = ref(cloneDeep(params));
+
+ function resetFields() {
+ formFields.value = cloneDeep(params);
+ }
+
+ return { formFields, resetFields };
+}
diff --git a/src/index.ts b/src/index.ts
index 63c31cc8..15974495 100644
--- a/src/index.ts
+++ b/src/index.ts
@@ -13,10 +13,10 @@ export { default as ArrowRightIcon } from './components/icon/ArrowRight.vue';
export { default as ArrowUpIcon } from './components/icon/ArrowUp.vue';
export { default as ArrowDownIcon } from './components/icon/ArrowDown.vue';
export { default as Input } from './components/Input.vue';
-export { default as Clickoutside } from './directives/clickoutside.js';
+export { default as Clickoutside } from './directives/clickoutside';
export { default as Table } from './components/Table.vue';
export { default as Button } from './components/Button.vue';
-export { default as Message } from './components/Message/index.js';
+export { default as Message } from './components/Message/index';
export { default as Card } from './components/Card.vue';
export { default as Tooltip } from './components/Tooltip.vue';
export { default as Qrcode } from './components/Qrcode.vue';
@@ -29,3 +29,7 @@ export { default as CheckboxGroup } from './components/CheckboxGroup.vue';
export { default as Radio } from './components/Radio.vue';
export { default as RadioGroup } from './components/RadioGroup.vue';
export { default as Switch } from './components/Switch.vue';
+export { default as FormItem } from './components/form/FormItem.vue';
+export { default as Form } from './components/form/Form.vue';
+
+export { default as useFormReset } from './hooks/useFormReset';
diff --git a/src/utils/index.ts b/src/utils/index.ts
index d5f6bf27..bbd7cd17 100644
--- a/src/utils/index.ts
+++ b/src/utils/index.ts
@@ -8,3 +8,54 @@ export function getBodyOverflow() {
?.match(/overflow:\s?([a-z]+);?/);
return styleMatch ? styleMatch[1] : '';
}
+
+function cloneDeepObject(obj: any) {
+ const newObj: any = {};
+ for (const key in obj) {
+ let value = obj[key];
+ if (value != null && typeof value === 'object') {
+ if (value instanceof Array) {
+ value = cloneDeepArray(value);
+ } else {
+ value = cloneDeepObject(value);
+ }
+ }
+ newObj[key] = value;
+ }
+ return newObj;
+}
+
+function cloneDeepArray(arr: any[]) {
+ const newArr: any[] = [];
+ for (const item of arr) {
+ if (item != null && typeof item === 'object') {
+ if (item instanceof Array) {
+ newArr.push(cloneDeepArray(item));
+ } else {
+ newArr.push(cloneDeepObject(item));
+ }
+ } else {
+ newArr.push(item);
+ }
+ }
+ return newArr;
+}
+
+/**
+ * 对象的深度拷贝(深度解构赋值)
+ * @param {Object} obj 待拷贝的对象, 可以是对象也可以是列表
+ * @returns
+ */
+export function cloneDeep(obj: any) {
+ if (typeof obj === 'object') {
+ if (globalThis.structuredClone != null) {
+ return globalThis.structuredClone(obj);
+ }
+ if (obj instanceof Array) {
+ return cloneDeepArray(obj);
+ } else {
+ return cloneDeepObject(obj);
+ }
+ }
+ return obj;
+}
diff --git a/style/button/index.css b/style/button/index.css
index 8223310b..36b7ba5b 100644
--- a/style/button/index.css
+++ b/style/button/index.css
@@ -157,3 +157,7 @@
.nt-btn-block {
width: 100%;
}
+
+.nt-btn:not(.nt-btn-text) + .nt-btn {
+ margin-left: 10px;
+}
diff --git a/style/form/index.css b/style/form/index.css
new file mode 100644
index 00000000..e69de29b
diff --git a/style/form/index.js b/style/form/index.js
new file mode 100644
index 00000000..4582418a
--- /dev/null
+++ b/style/form/index.js
@@ -0,0 +1 @@
+import "./index.css";
\ No newline at end of file
diff --git a/style/form_item/index.css b/style/form_item/index.css
new file mode 100644
index 00000000..ba2203a3
--- /dev/null
+++ b/style/form_item/index.css
@@ -0,0 +1,36 @@
+.nt-form-item {
+ display: flex;
+ margin-bottom: 20px;
+ font-size: 14px;
+}
+.nt-form-item__label {
+ display: inline-flex;
+ align-items: flex-start;
+ justify-content: flex-end;
+ width: var(--nt-form-label-width, 80px);
+ height: var(--nt-form-edit-height, 32px);
+ line-height: var(--nt-form-edit-height, 32px);
+ color: #606266;
+ padding: 0 10px 0 0;
+}
+.nt-form-item.is-required .nt-form-item__label::before {
+ content: '*';
+ margin-right: 4px;
+ color: var(--nt-warn-color, #f56c6c);
+}
+.nt-form-item__content {
+ flex: 1;
+ position: relative;
+}
+.nt-form-item__error {
+ font-size: 12px;
+ line-height: 1;
+ position: absolute;
+ top: 100%;
+ left: 0;
+ color: var(--nt-error-color, #ed3f13);
+ padding-top: 3px;
+}
+.nt-form-item.is-error .nt-input {
+ border-color: var(--nt-error-color, #ed3f13);
+}
diff --git a/style/form_item/index.js b/style/form_item/index.js
new file mode 100644
index 00000000..4582418a
--- /dev/null
+++ b/style/form_item/index.js
@@ -0,0 +1 @@
+import "./index.css";
\ No newline at end of file
diff --git a/style/input/index.css b/style/input/index.css
index e6975f84..d2f684c0 100644
--- a/style/input/index.css
+++ b/style/input/index.css
@@ -9,6 +9,10 @@
padding: 0 5px;
border-radius: 3px;
vertical-align: middle;
+ width: 100%;
+}
+.nt-input.is-autosize {
+ width: auto;
}
.nt-input:focus {
border-color: var(--nt-primary-color);
diff --git a/tsconfig.types.json b/tsconfig.types.json
index 8074dc57..087636dc 100644
--- a/tsconfig.types.json
+++ b/tsconfig.types.json
@@ -4,6 +4,7 @@
"src/index.ts",
"src/components/**/*.vue",
"src/components/**/*.ts",
- "src/directives/*.ts"
+ "src/directives/*.ts",
+ "src/hooks/*.ts"
]
}