Browse Source

fix: vxe i18n (#7675)

* chore: engines node

* chore: update deps

* fix: oxlint

* chore: fix lint issues

* chore: update deps

* fix: vxe i18n
pull/7662/head
xingyu 1 week ago
committed by GitHub
parent
commit
186914bcac
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 14
      packages/effects/plugins/src/vxe-table/init.ts
  2. 370
      pnpm-lock.yaml
  3. 12
      pnpm-workspace.yaml

14
packages/effects/plugins/src/vxe-table/init.ts

@ -52,6 +52,16 @@ let isInit = false;
let tableFormFactory: typeof useVbenForm | undefined;
function normalizeVxeLocale<T extends Record<string, any>>(localeModule: T) {
return (
localeModule &&
typeof localeModule === 'object' &&
'default' in localeModule
? localeModule.default
: localeModule
) as T;
}
export const useTableForm: typeof useVbenForm = ((...args) => {
if (!tableFormFactory) {
throw new Error('useTableForm is not initialized');
@ -116,8 +126,8 @@ export function setupVbenVxeTable(setupOptions: SetupVxeTable) {
const { isDark, locale } = usePreferences();
const localMap = {
'zh-CN': zhCN,
'en-US': enUS,
'zh-CN': normalizeVxeLocale(zhCN),
'en-US': normalizeVxeLocale(enUS),
};
watch(

370
pnpm-lock.yaml

@ -19,11 +19,11 @@ catalogs:
specifier: ^1.1.0
version: 1.1.0
'@commitlint/cli':
specifier: ^20.4.4
version: 20.4.4
specifier: ^20.5.0
version: 20.5.0
'@commitlint/config-conventional':
specifier: ^20.4.4
version: 20.4.4
specifier: ^20.5.0
version: 20.5.0
'@eslint-community/eslint-plugin-eslint-comments':
specifier: ^4.7.1
version: 4.7.1
@ -304,8 +304,8 @@ catalogs:
specifier: ^1.55.0
version: 1.55.0
oxlint-tsgolint:
specifier: ^0.16.0
version: 0.16.0
specifier: ^0.17.0
version: 0.17.0
pinia-plugin-persistedstate:
specifier: ^4.7.1
version: 4.7.1
@ -466,11 +466,11 @@ catalogs:
specifier: ^3.2.5
version: 3.2.5
vxe-pc-ui:
specifier: ^4.13.6
version: 4.13.6
specifier: ^4.13.8
version: 4.13.8
vxe-table:
specifier: ^4.18.2
version: 4.18.2
specifier: ^4.18.4
version: 4.18.4
watermark-js-plus:
specifier: ^1.6.3
version: 1.6.3
@ -485,7 +485,7 @@ catalogs:
version: 0.1.3
overrides:
'@ast-grep/napi': ^0.41.1
'@ast-grep/napi': ^0.42.0
'@ctrl/tinycolor': ^4.2.0
clsx: ^2.1.1
pinia: ^3.0.4
@ -563,10 +563,10 @@ importers:
version: 0.40.0
oxlint:
specifier: 'catalog:'
version: 1.55.0(oxlint-tsgolint@0.16.0)
version: 1.55.0(oxlint-tsgolint@0.17.0)
oxlint-tsgolint:
specifier: 'catalog:'
version: 0.16.0
version: 0.17.0
playwright:
specifier: 'catalog:'
version: 1.58.2
@ -992,16 +992,16 @@ importers:
dependencies:
'@commitlint/cli':
specifier: 'catalog:'
version: 20.4.4(@types/node@25.5.0)(conventional-commits-parser@6.3.0)(typescript@5.9.3)
version: 20.5.0(@types/node@25.5.0)(conventional-commits-parser@6.3.0)(typescript@5.9.3)
'@commitlint/config-conventional':
specifier: 'catalog:'
version: 20.4.4
version: 20.5.0
'@vben/node-utils':
specifier: workspace:*
version: link:../../node-utils
commitlint-plugin-function-rules:
specifier: 'catalog:'
version: 4.3.2(@commitlint/lint@20.4.4)
version: 4.3.2(@commitlint/lint@20.5.0)
cz-git:
specifier: 'catalog:'
version: 1.12.0
@ -1074,13 +1074,13 @@ importers:
version: 4.7.1(eslint@10.0.3(jiti@2.6.1))
eslint-plugin-better-tailwindcss:
specifier: 'catalog:'
version: 4.3.2(eslint@10.0.3(jiti@2.6.1))(oxlint@1.55.0(oxlint-tsgolint@0.16.0))(tailwindcss@4.2.1)(typescript@5.9.3)
version: 4.3.2(eslint@10.0.3(jiti@2.6.1))(oxlint@1.55.0(oxlint-tsgolint@0.17.0))(tailwindcss@4.2.1)(typescript@5.9.3)
eslint-plugin-command:
specifier: 'catalog:'
version: 3.5.2(@typescript-eslint/rule-tester@8.57.0(eslint@10.0.3(jiti@2.6.1))(typescript@5.9.3))(@typescript-eslint/typescript-estree@8.57.0(typescript@5.9.3))(@typescript-eslint/utils@8.57.0(eslint@10.0.3(jiti@2.6.1))(typescript@5.9.3))(eslint@10.0.3(jiti@2.6.1))
oxlint:
specifier: 'catalog:'
version: 1.55.0(oxlint-tsgolint@0.16.0)
version: 1.55.0(oxlint-tsgolint@0.17.0)
internal/lint-configs/stylelint-config:
dependencies:
@ -1779,10 +1779,10 @@ importers:
version: 3.5.30(typescript@5.9.3)
vxe-pc-ui:
specifier: 'catalog:'
version: 4.13.6(vue@3.5.30(typescript@5.9.3))
version: 4.13.8(vue@3.5.30(typescript@5.9.3))
vxe-table:
specifier: 'catalog:'
version: 4.18.2(vue@3.5.30(typescript@5.9.3))
version: 4.18.4(vue@3.5.30(typescript@5.9.3))
packages/effects/request:
dependencies:
@ -2124,66 +2124,66 @@ packages:
peerDependencies:
ajv: '>=8'
'@ast-grep/napi-darwin-arm64@0.41.1':
resolution: {integrity: sha512-sZHwg/oD6YB2y4VD8ZMeMHBq/ONil+mx+bB61YAiGQB+8UCMSFxJupvtNICB/BnIFqcPCVz/jCaSdbASLrbXQQ==}
'@ast-grep/napi-darwin-arm64@0.42.0':
resolution: {integrity: sha512-HOPvjsrsASvfkRJGCd/++KZvfDCtBx6v8DKTEzzlc6fQJlhiRMPKe8T4d5I2T2rgV5pHsyJLSBLqEK7m346NTw==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [darwin]
'@ast-grep/napi-darwin-x64@0.41.1':
resolution: {integrity: sha512-SL9hGB8sKvPnLUcigiDQrhohL7N4ujy1+t885kGcBkMXR73JT05OpPmvw0AWmg8l2iH1e5uNK/ZjnV/lSkynxQ==}
'@ast-grep/napi-darwin-x64@0.42.0':
resolution: {integrity: sha512-q3jt+a6kDbXgbCSuIqaxjgLbTCDYGE2yb1o6metpsGbW+xVZR4ATYMJ8izyYhn2sQungTfUNn2/vo/2Bhbvpxg==}
engines: {node: '>= 10'}
cpu: [x64]
os: [darwin]
'@ast-grep/napi-linux-arm64-gnu@0.41.1':
resolution: {integrity: sha512-mkNQpkm1jvnIdeRMnEWZ4Q0gNGApoNTMAoJRVmY11CkA4C/vIdNIjxj7UB61xV42Ng/A7Fw8mQUQuFos0lAKPQ==}
'@ast-grep/napi-linux-arm64-gnu@0.42.0':
resolution: {integrity: sha512-+e2ThyRiBZATlcdgfrD7uYy9oWVS6/AdUTnC3xOwR+lCz80lr87kmcmeK6XN6hBwaqncBBkKV3ECMA8ibZPUZA==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
libc: [glibc]
'@ast-grep/napi-linux-arm64-musl@0.41.1':
resolution: {integrity: sha512-0G3cHyc+8A945aLie55bLZ+oaEBer0EFlyP/GlwRAx4nn5vGBct1hVTxSexWJ6AxnnRNPlN0mvswVwXiE7H7gA==}
'@ast-grep/napi-linux-arm64-musl@0.42.0':
resolution: {integrity: sha512-f/oW3KaHuOMuBkCcvI6R71xM9SvkdUVKHhbJEtBFo5D1j6CjY9ipWdjlk9mOJ2KLLM6uYdjjvkJkBPlPuFTukg==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
libc: [musl]
'@ast-grep/napi-linux-x64-gnu@0.41.1':
resolution: {integrity: sha512-+aNiCik3iTMtUrMp1k2yIMjby1U64EydTH1qotlx+fh8YvwrwwxZWct7NlurY3MILgT/WONSxhHKmL5NsbB4dw==}
'@ast-grep/napi-linux-x64-gnu@0.42.0':
resolution: {integrity: sha512-y9T/Tm6V6zkmcAJlWXUO0ACYLSlk5o5NVU+AYun7NzDWIM86Y3lnoDF5WxeZKonVoaGAnkCXVlNH8Tsr/NTQWw==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
libc: [glibc]
'@ast-grep/napi-linux-x64-musl@0.41.1':
resolution: {integrity: sha512-rBrZSx5za3OliYcJcUrbLct+1+8oxh8ZEjYPiLCybe4FhspNKGM952g8a4sjgRuwbKS9BstYO9Fz+wthFnaFUQ==}
'@ast-grep/napi-linux-x64-musl@0.42.0':
resolution: {integrity: sha512-t1PwL6YweDL63QDK3TC9QTKROcVgN4XoMxlp/zN2NYvCUM90mSvqh/Py/ouchzluHaqCzEeEp9089WFEDWwQOA==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
libc: [musl]
'@ast-grep/napi-win32-arm64-msvc@0.41.1':
resolution: {integrity: sha512-uNRHM3a1qFN0SECJDCEDVy1b0N75JNhJE2O/2BhDkDo0qM8kEewf9jRtG1fwpgZbMK2KoKvMHU/KQ73fWN44Zw==}
'@ast-grep/napi-win32-arm64-msvc@0.42.0':
resolution: {integrity: sha512-bxKLXF1JmU33BoJKrbWcGsG7Xmk2zCQaUjmeHrxhgBhg2w2zo3CSf5S6DOyOp13hefgLXBLn6oXNzXgqpX/+lA==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [win32]
'@ast-grep/napi-win32-ia32-msvc@0.41.1':
resolution: {integrity: sha512-uNPQwGUBGIbCX+WhEIfYJf/VrS7o5+vJvT4MVEHI8aVJnpjcFsLrFI0hIv044OXxnleOo2HUvEmjOrub//at/Q==}
'@ast-grep/napi-win32-ia32-msvc@0.42.0':
resolution: {integrity: sha512-+/XbHDN+558rXwB2BylWPHj/cczRGDKivToHS2120TGQePmUetspu93wltqzAD7SVJnBILc2sEK1T1/jutZEvw==}
engines: {node: '>= 10'}
cpu: [ia32]
os: [win32]
'@ast-grep/napi-win32-x64-msvc@0.41.1':
resolution: {integrity: sha512-xFp68OCUEmWYcqoreZFaf2xwMhm/22Qf6bR2Qyn8WNVY9RF4m4+k5K+7Wn+n9xy0vHUPhtFd1So/SvuaqLHEoA==}
'@ast-grep/napi-win32-x64-msvc@0.42.0':
resolution: {integrity: sha512-/5PTpk7EFuqwdJyKleX2gPztL5j73Nq/cdkEJQq1Fbx+ze+UM75JniW3D7J7WZygN58+EN9DAxpc2QOlK32urQ==}
engines: {node: '>= 10'}
cpu: [x64]
os: [win32]
'@ast-grep/napi@0.41.1':
resolution: {integrity: sha512-OYQVWBbb43af2lTSCayMS7wsZ20nl+fw6LGVl/5zSuHTZRNfANknKLk3wMA4y7RIaAiIwrldAmI6GNZeIDRTkQ==}
'@ast-grep/napi@0.42.0':
resolution: {integrity: sha512-f3DAjeC657EqbWN2In+girgbpvnKMV77bONyhuezXK4XQtvbGCB55u3CnNvQv6EP0caIBTtDHqO5CVyO6qY4LQ==}
engines: {node: '>= 10'}
'@babel/code-frame@7.29.0':
@ -2802,61 +2802,61 @@ packages:
resolution: {integrity: sha512-SIOD2DxrRRwQ+jgzlXCqoEFiKOFqaPjhnNTGKXSRLvp1HiOvapLaFG2kEr9dYQTYe8rKrd9uvDUzmAITeNyaHQ==}
engines: {node: '>=18.0.0'}
'@commitlint/cli@20.4.4':
resolution: {integrity: sha512-GLMNQHYGcn0ohL2HMlAnXcD1PS2vqBBGbYKlhrRPOYsWiRoLWtrewsR3uKRb9v/IdS+qOS0vqJQ64n1g8VPKFw==}
'@commitlint/cli@20.5.0':
resolution: {integrity: sha512-yNkyN/tuKTJS3wdVfsZ2tXDM4G4Gi7z+jW54Cki8N8tZqwKBltbIvUUrSbT4hz1bhW/h0CdR+5sCSpXD+wMKaQ==}
engines: {node: '>=v18'}
hasBin: true
'@commitlint/config-conventional@20.4.4':
resolution: {integrity: sha512-Usg+XXbPNG2GtFWTgRURNWCge1iH1y6jQIvvklOdAbyn2t8ajfVwZCnf5t5X4gUsy17BOiY+myszGsSMIvhOVA==}
'@commitlint/config-conventional@20.5.0':
resolution: {integrity: sha512-t3Ni88rFw1XMa4nZHgOKJ8fIAT9M2j5TnKyTqJzsxea7FUetlNdYFus9dz+MhIRZmc16P0PPyEfh6X2d/qw8SA==}
engines: {node: '>=v18'}
'@commitlint/config-validator@20.4.4':
resolution: {integrity: sha512-K8hMS9PTLl7EYe5vWtSFQ/sgsV2PHUOtEnosg8k3ZQxCyfKD34I4C7FxWEfRTR54rFKeUYmM3pmRQqBNQeLdlw==}
'@commitlint/config-validator@20.5.0':
resolution: {integrity: sha512-T/Uh6iJUzyx7j35GmHWdIiGRQB+ouZDk0pwAaYq4SXgB54KZhFdJ0vYmxiW6AMYICTIWuyMxDBl1jK74oFp/Gw==}
engines: {node: '>=v18'}
'@commitlint/ensure@20.4.4':
resolution: {integrity: sha512-QivV0M1MGL867XCaF+jJkbVXEPKBALhUUXdjae66hes95aY1p3vBJdrcl3x8jDv2pdKWvIYIz+7DFRV/v0dRkA==}
'@commitlint/ensure@20.5.0':
resolution: {integrity: sha512-IpHqAUesBeW1EDDdjzJeaOxU9tnogLAyXLRBn03SHlj1SGENn2JGZqSWGkFvBJkJzfXAuCNtsoYzax+ZPS+puw==}
engines: {node: '>=v18'}
'@commitlint/execute-rule@20.0.0':
resolution: {integrity: sha512-xyCoOShoPuPL44gVa+5EdZsBVao/pNzpQhkzq3RdtlFdKZtjWcLlUFQHSWBuhk5utKYykeJPSz2i8ABHQA+ZZw==}
engines: {node: '>=v18'}
'@commitlint/format@20.4.4':
resolution: {integrity: sha512-jLi/JBA4GEQxc5135VYCnkShcm1/rarbXMn2Tlt3Si7DHiiNKHm4TaiJCLnGbZ1r8UfwDRk+qrzZ80kwh08Aow==}
'@commitlint/format@20.5.0':
resolution: {integrity: sha512-TI9EwFU/qZWSK7a5qyXMpKPPv3qta7FO4tKW+Wt2al7sgMbLWTsAcDpX1cU8k16TRdsiiet9aOw0zpvRXNJu7Q==}
engines: {node: '>=v18'}
'@commitlint/is-ignored@20.4.4':
resolution: {integrity: sha512-y76rT8yq02x+pMDBI2vY4y/ByAwmJTkta/pASbgo8tldBiKLduX8/2NCRTSCjb3SumE5FBeopERKx3oMIm8RTQ==}
'@commitlint/is-ignored@20.5.0':
resolution: {integrity: sha512-JWLarAsurHJhPozbuAH6GbP4p/hdOCoqS9zJMfqwswne+/GPs5V0+rrsfOkP68Y8PSLphwtFXV0EzJ+GTXTTGg==}
engines: {node: '>=v18'}
'@commitlint/lint@20.4.4':
resolution: {integrity: sha512-svOEW+RptcNpXKE7UllcAsV0HDIdOck9reC2TP1QA6K5Fo0xxQV+QPjV8Zqx9g6X/hQBkF2S9ZQZ78Xrv1Eiog==}
'@commitlint/lint@20.5.0':
resolution: {integrity: sha512-jiM3hNUdu04jFBf1VgPdjtIPvbuVfDTBAc6L98AWcoLjF5sYqkulBHBzlVWll4rMF1T5zeQFB6r//a+s+BBKlA==}
engines: {node: '>=v18'}
'@commitlint/load@20.4.4':
resolution: {integrity: sha512-kvFrzvoIACa/fMjXEP0LNEJB1joaH3q3oeMJsLajXE5IXjYrNGVcW1ZFojXUruVJ7odTZbC3LdE/6+ONW4f2Dg==}
'@commitlint/load@20.5.0':
resolution: {integrity: sha512-sLhhYTL/KxeOTZjjabKDhwidGZan84XKK1+XFkwDYL/4883kIajcz/dZFAhBJmZPtL8+nBx6bnkzA95YxPeDPw==}
engines: {node: '>=v18'}
'@commitlint/message@20.4.3':
resolution: {integrity: sha512-6akwCYrzcrFcTYz9GyUaWlhisY4lmQ3KvrnabmhoeAV8nRH4dXJAh4+EUQ3uArtxxKQkvxJS78hNX2EU3USgxQ==}
engines: {node: '>=v18'}
'@commitlint/parse@20.4.4':
resolution: {integrity: sha512-AjfgOgrjEozeQNzhFu1KL5N0nDx4JZmswVJKNfOTLTUGp6xODhZHCHqb//QUHKOzx36If5DQ7tci2o7szYxu1A==}
'@commitlint/parse@20.5.0':
resolution: {integrity: sha512-SeKWHBMk7YOTnnEWUhx+d1a9vHsjjuo6Uo1xRfPNfeY4bdYFasCH1dDpAv13Lyn+dDPOels+jP6D2GRZqzc5fA==}
engines: {node: '>=v18'}
'@commitlint/read@20.4.4':
resolution: {integrity: sha512-jvgdAQDdEY6L8kCxOo21IWoiAyNFzvrZb121wU2eBxI1DzWAUZgAq+a8LlJRbT0Qsj9INhIPVWgdaBbEzlF0dQ==}
'@commitlint/read@20.5.0':
resolution: {integrity: sha512-JDEIJ2+GnWpK8QqwfmW7O42h0aycJEWNqcdkJnyzLD11nf9dW2dWLTVEa8Wtlo4IZFGLPATjR5neA5QlOvIH1w==}
engines: {node: '>=v18'}
'@commitlint/resolve-extends@20.4.4':
resolution: {integrity: sha512-pyOf+yX3c3m/IWAn2Jop+7s0YGKPQ8YvQaxt9IQxnLIM3yZAlBdkKiQCT14TnrmZTkVGTXiLtckcnFTXYwlY0A==}
'@commitlint/resolve-extends@20.5.0':
resolution: {integrity: sha512-3SHPWUW2v0tyspCTcfSsYml0gses92l6TlogwzvM2cbxDgmhSRc+fldDjvGkCXJrjSM87BBaWYTPWwwyASZRrg==}
engines: {node: '>=v18'}
'@commitlint/rules@20.4.4':
resolution: {integrity: sha512-PmUp8QPLICn9w05dAx5r1rdOYoTk7SkfusJJh5tP3TqHwo2mlQ9jsOm8F0HSXU9kuLfgTEGNrunAx/dlK/RyPQ==}
'@commitlint/rules@20.5.0':
resolution: {integrity: sha512-5NdQXQEdnDPT5pK8O39ZA7HohzPRHEsDGU23cyVCNPQy4WegAbAwrQk3nIu7p2sl3dutPk8RZd91yKTrMTnRkQ==}
engines: {node: '>=v18'}
'@commitlint/to-lines@20.0.0':
@ -2867,8 +2867,8 @@ packages:
resolution: {integrity: sha512-qD9xfP6dFg5jQ3NMrOhG0/w5y3bBUsVGyJvXxdWEwBm8hyx4WOk3kKXw28T5czBYvyeCVJgJJ6aoJZUWDpaacQ==}
engines: {node: '>=v18'}
'@commitlint/types@20.4.4':
resolution: {integrity: sha512-dwTGzyAblFXHJNBOgrTuO5Ee48ioXpS5XPRLLatxhQu149DFAHUcB3f0Q5eea3RM4USSsP1+WVT2dBtLVod4fg==}
'@commitlint/types@20.5.0':
resolution: {integrity: sha512-ZJoS8oSq2CAZEpc/YI9SulLrdiIyXeHb/OGqGrkUP6Q7YV+0ouNAa7GjqRdXeQPncHQIDz/jbCTlHScvYvO/gA==}
engines: {node: '>=v18'}
'@conventional-changelog/git-client@2.6.0':
@ -3910,8 +3910,8 @@ packages:
'@jspm/generator@2.11.0':
resolution: {integrity: sha512-9Asdskq7SjjFdM2oEhu1i1QiBRElAKFYaJMIP7GQoQ9jEPyYUJNZjp9oj9UJm44AJ9+wuiWg9JbgplhHgDom9w==}
'@jspm/import-map@1.3.0':
resolution: {integrity: sha512-fnQBtZ9zlOwSHfUNGXCw02bC6nvHXIjg0kBdLngeRfeQ5uXvvTvkP/HRZnmxae4ZU9+p1VUGUcmP98rVynh82g==}
'@jspm/import-map@1.4.0':
resolution: {integrity: sha512-HpzAnq/n/eExscsHnPtWrqMi/RXFXlAzIweajmcteyIEWjWK6X64yzzy0VMpBRKO3hFh1xwFIOdIItiMlNISOg==}
'@juggle/resize-observer@3.4.0':
resolution: {integrity: sha512-dfLbk+PwWvFzSxwk3n5ySL0hfBog779o8h68wK/7/APo/7cgyWp5jcXockbxdk5kFRkbeXWm4Fbi9FrdN381sA==}
@ -4135,33 +4135,33 @@ packages:
cpu: [x64]
os: [win32]
'@oxlint-tsgolint/darwin-arm64@0.16.0':
resolution: {integrity: sha512-WQt5lGwRPJBw7q2KNR0mSPDAaMmZmVvDlEEti96xLO7ONhyomQc6fBZxxwZ4qTFedjJnrHX94sFelZ4OKzS7UQ==}
'@oxlint-tsgolint/darwin-arm64@0.17.0':
resolution: {integrity: sha512-z3XwCDuOAKgk7bO4y5tyH8Zogwr51G56R0XGKC3tlAbrAq8DecoxAd3qhRZqWBMG2Gzl5bWU3Ghu7lrxuLPzYw==}
cpu: [arm64]
os: [darwin]
'@oxlint-tsgolint/darwin-x64@0.16.0':
resolution: {integrity: sha512-VJo29XOzdkalvCTiE2v6FU3qZlgHaM8x8hUEVJGPU2i5W+FlocPpmn00+Ld2n7Q0pqIjyD5EyvZ5UmoIEJMfqg==}
'@oxlint-tsgolint/darwin-x64@0.17.0':
resolution: {integrity: sha512-TZgVXy0MtI8nt0MYiceuZhHPwHcwlIZ/YwzFTAKrgdHiTvVzFbqHVdXi5wbZfT/o1nHGw9fbGWPlb6qKZ4uZ9Q==}
cpu: [x64]
os: [darwin]
'@oxlint-tsgolint/linux-arm64@0.16.0':
resolution: {integrity: sha512-MPfqRt1+XRHv9oHomcBMQ3KpTE+CSkZz14wUxDQoqTNdUlV0HWdzwIE9q65I3D9YyxEnqpM7j4qtDQ3apqVvbQ==}
'@oxlint-tsgolint/linux-arm64@0.17.0':
resolution: {integrity: sha512-IDfhFl/Y8bjidCvAP6QAxVyBsl78TmfCHlfjtEv2XtJXgYmIwzv6muO18XMp74SZ2qAyD4y2n2dUedrmghGHeA==}
cpu: [arm64]
os: [linux]
'@oxlint-tsgolint/linux-x64@0.16.0':
resolution: {integrity: sha512-XQSwVUsnwLokMhe1TD6IjgvW5WMTPzOGGkdFDtXWQmlN2YeTw94s/NN0KgDrn2agM1WIgAenEkvnm0u7NgwEyw==}
'@oxlint-tsgolint/linux-x64@0.17.0':
resolution: {integrity: sha512-Bgdgqx/m8EnfjmmlRLEeYy9Yhdt1GdFrMr5mTu/NyLRGkB1C9VLAikdxB7U9QambAGTAmjMbHNFDFk8Vx69Huw==}
cpu: [x64]
os: [linux]
'@oxlint-tsgolint/win32-arm64@0.16.0':
resolution: {integrity: sha512-EWdlspQiiFGsP2AiCYdhg5dTYyAlj6y1nRyNI2dQWq4Q/LITFHiSRVPe+7m7K7lcsZCEz2icN/bCeSkZaORqIg==}
'@oxlint-tsgolint/win32-arm64@0.17.0':
resolution: {integrity: sha512-dO6wyKMDqFWh1vwr+zNZS7/ovlfGgl4S3P1LDy4CKjP6V6NGtdmEwWkWax8j/I8RzGZdfXKnoUfb/qhVg5bx0w==}
cpu: [arm64]
os: [win32]
'@oxlint-tsgolint/win32-x64@0.16.0':
resolution: {integrity: sha512-1ufk8cgktXJuJZHKF63zCHAkaLMwZrEXnZ89H2y6NO85PtOXqu4zbdNl0VBpPP3fCUuUBu9RvNqMFiv0VsbXWA==}
'@oxlint-tsgolint/win32-x64@0.17.0':
resolution: {integrity: sha512-lPGYFp3yX2nh6hLTpIuMnJbZnt3Df42VkoA/fSkMYi2a/LXdDytQGpgZOrb5j47TICARd34RauKm0P3OA4Oxbw==}
cpu: [x64]
os: [win32]
@ -5015,8 +5015,8 @@ packages:
'@tanstack/store@0.9.2':
resolution: {integrity: sha512-K013lUJEFJK2ofFQ/hZKJUmCnpcV00ebLyOyFOWQvyQHUOZp/iYO84BM6aOGiV81JzwbX0APTVmW8YI7yiG5oA==}
'@tanstack/virtual-core@3.13.22':
resolution: {integrity: sha512-isuUGKsc5TAPDoHSbWTbl1SCil54zOS2MiWz/9GCWHPUQOvNTQx8qJEWC7UWR0lShhbK0Lmkcf0SZYxvch7G3g==}
'@tanstack/virtual-core@3.13.23':
resolution: {integrity: sha512-zSz2Z2HNyLjCplANTDyl3BcdQJc2k1+yyFoKhNRmCr7V7dY8o8q5m8uFTI1/Pg1kL+Hgrz6u3Xo6eFUB7l66cg==}
'@tanstack/vue-query@5.92.9':
resolution: {integrity: sha512-jjAZcqKveyX0C4w/6zUqbnqk/XzuxNWaFsWjGTJWULVFizUNeLGME2gf9vVSDclIyiBhR13oZJPPs6fJgfpIJQ==}
@ -5036,8 +5036,8 @@ packages:
'@vue/composition-api':
optional: true
'@tanstack/vue-virtual@3.13.22':
resolution: {integrity: sha512-GiUwGKJADlCoTD7PaEfgSTAnQ9JW7KAmV98d5yFQf+vT2bSs52BPC22ZTXnNhe8PViTVqqRERNRKaWlut7tMPQ==}
'@tanstack/vue-virtual@3.13.23':
resolution: {integrity: sha512-b5jPluAR6U3eOq6GWAYSpj3ugnAIZgGR0e6aGAgyRse0Yu6MVQQ0ZWm9SArSXWtageogn6bkVD8D//c4IjW3xQ==}
peerDependencies:
vue: ^3.5.30
@ -5360,8 +5360,8 @@ packages:
peerDependencies:
vue: ^3.5.30
'@v-c/select@1.0.19':
resolution: {integrity: sha512-Um6zBWHUS4H2camwaPriaVN4Hz7Z2h0YXAPlIbjubixQjxGmKJ99HoAa/xuZju63bxK06Nual3NT/cyS0g+RiA==}
'@v-c/select@1.0.20':
resolution: {integrity: sha512-gmG5U7r8YgXIjGQZ5qjHM3felSlYAep7pBjJRzA8ALgHhx0CKRk6RTadVDXzWh7LwOFvlgTn7OLUMTU6RACoaQ==}
peerDependencies:
vue: ^3.5.30
@ -8958,8 +8958,8 @@ packages:
engines: {node: ^20.19.0 || >=22.12.0}
hasBin: true
oxlint-tsgolint@0.16.0:
resolution: {integrity: sha512-4RuJK2jP08XwqtUu+5yhCbxEauCm6tv2MFHKEMsjbosK2+vy5us82oI3VLuHwbNyZG7ekZA26U2LLHnGR4frIA==}
oxlint-tsgolint@0.17.0:
resolution: {integrity: sha512-TdrKhDZCgEYqONFo/j+KvGan7/k3tP5Ouz88wCqpOvJtI2QmcLfGsm1fcMvDnTik48Jj6z83IJBqlkmK9DnY1A==}
hasBin: true
oxlint@1.55.0:
@ -10590,8 +10590,8 @@ packages:
undici-types@7.18.2:
resolution: {integrity: sha512-AsuCzffGHJybSaRrmr5eHr81mwJU3kjw6M+uprWvCXiNeN9SOGwQ3Jn8jb8m3Z6izVgknn1R0FTCEAP2QrLY/w==}
undici@7.24.3:
resolution: {integrity: sha512-eJdUmK/Wrx2d+mnWWmwwLRyA7OQCkLap60sk3dOK4ViZR7DKwwptwuIvFBg2HaiP9ESaEdhtpSymQPvytpmkCA==}
undici@7.24.4:
resolution: {integrity: sha512-BM/JzwwaRXxrLdElV2Uo6cTLEjhSb3WXboncJamZ15NgUURmvlXvxa6xkwIOILIjPNo9i8ku136ZvWV0Uly8+w==}
engines: {node: '>=20.18.1'}
unenv@2.0.0-rc.24:
@ -11084,11 +11084,11 @@ packages:
peerDependencies:
vue: ^3.5.30
vxe-pc-ui@4.13.6:
resolution: {integrity: sha512-iwbJiMiB6eLOb0Jy4h64vQvy6xENjUSXSHoyJZIpVz14uNikNwJDwCsyBmqqcbSJ83XK6iVCkvHg9NfMN61JTA==}
vxe-pc-ui@4.13.8:
resolution: {integrity: sha512-T+kVjfgnodXhn3JMJLpQG0vuEkr2ed0y4CQvQJMb6LOIIVHJDg5CNuh9wYVbzZB58jnHHuLyiserOOOxjoNqig==}
vxe-table@4.18.2:
resolution: {integrity: sha512-0PW2V0VHrG3IaxBoTrNQPuxq38nhM1ZIHu0mjK7AxqUkls6I5ncy0GYNiP2E1R3qVVxqPQnWRnoKNE8c+tIuVg==}
vxe-table@4.18.4:
resolution: {integrity: sha512-aj1gbXSkigYfxDhEvFVq7fTZh2qO11uF1hYGMF3bLND9xRnZk3WFRPA/IL5h54QftPw5sTI9JyyfeINhccJ2yA==}
warning@4.0.3:
resolution: {integrity: sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w==}
@ -11545,44 +11545,44 @@ snapshots:
jsonpointer: 5.0.1
leven: 3.1.0
'@ast-grep/napi-darwin-arm64@0.41.1':
'@ast-grep/napi-darwin-arm64@0.42.0':
optional: true
'@ast-grep/napi-darwin-x64@0.41.1':
'@ast-grep/napi-darwin-x64@0.42.0':
optional: true
'@ast-grep/napi-linux-arm64-gnu@0.41.1':
'@ast-grep/napi-linux-arm64-gnu@0.42.0':
optional: true
'@ast-grep/napi-linux-arm64-musl@0.41.1':
'@ast-grep/napi-linux-arm64-musl@0.42.0':
optional: true
'@ast-grep/napi-linux-x64-gnu@0.41.1':
'@ast-grep/napi-linux-x64-gnu@0.42.0':
optional: true
'@ast-grep/napi-linux-x64-musl@0.41.1':
'@ast-grep/napi-linux-x64-musl@0.42.0':
optional: true
'@ast-grep/napi-win32-arm64-msvc@0.41.1':
'@ast-grep/napi-win32-arm64-msvc@0.42.0':
optional: true
'@ast-grep/napi-win32-ia32-msvc@0.41.1':
'@ast-grep/napi-win32-ia32-msvc@0.42.0':
optional: true
'@ast-grep/napi-win32-x64-msvc@0.41.1':
'@ast-grep/napi-win32-x64-msvc@0.42.0':
optional: true
'@ast-grep/napi@0.41.1':
'@ast-grep/napi@0.42.0':
optionalDependencies:
'@ast-grep/napi-darwin-arm64': 0.41.1
'@ast-grep/napi-darwin-x64': 0.41.1
'@ast-grep/napi-linux-arm64-gnu': 0.41.1
'@ast-grep/napi-linux-arm64-musl': 0.41.1
'@ast-grep/napi-linux-x64-gnu': 0.41.1
'@ast-grep/napi-linux-x64-musl': 0.41.1
'@ast-grep/napi-win32-arm64-msvc': 0.41.1
'@ast-grep/napi-win32-ia32-msvc': 0.41.1
'@ast-grep/napi-win32-x64-msvc': 0.41.1
'@ast-grep/napi-darwin-arm64': 0.42.0
'@ast-grep/napi-darwin-x64': 0.42.0
'@ast-grep/napi-linux-arm64-gnu': 0.42.0
'@ast-grep/napi-linux-arm64-musl': 0.42.0
'@ast-grep/napi-linux-x64-gnu': 0.42.0
'@ast-grep/napi-linux-x64-musl': 0.42.0
'@ast-grep/napi-win32-arm64-msvc': 0.42.0
'@ast-grep/napi-win32-ia32-msvc': 0.42.0
'@ast-grep/napi-win32-x64-msvc': 0.42.0
'@babel/code-frame@7.29.0':
dependencies:
@ -12472,13 +12472,13 @@ snapshots:
'@cloudflare/kv-asset-handler@0.4.2': {}
'@commitlint/cli@20.4.4(@types/node@25.5.0)(conventional-commits-parser@6.3.0)(typescript@5.9.3)':
'@commitlint/cli@20.5.0(@types/node@25.5.0)(conventional-commits-parser@6.3.0)(typescript@5.9.3)':
dependencies:
'@commitlint/format': 20.4.4
'@commitlint/lint': 20.4.4
'@commitlint/load': 20.4.4(@types/node@25.5.0)(typescript@5.9.3)
'@commitlint/read': 20.4.4(conventional-commits-parser@6.3.0)
'@commitlint/types': 20.4.4
'@commitlint/format': 20.5.0
'@commitlint/lint': 20.5.0
'@commitlint/load': 20.5.0(@types/node@25.5.0)(typescript@5.9.3)
'@commitlint/read': 20.5.0(conventional-commits-parser@6.3.0)
'@commitlint/types': 20.5.0
tinyexec: 1.0.4
yargs: 17.7.2
transitivePeerDependencies:
@ -12487,19 +12487,19 @@ snapshots:
- conventional-commits-parser
- typescript
'@commitlint/config-conventional@20.4.4':
'@commitlint/config-conventional@20.5.0':
dependencies:
'@commitlint/types': 20.4.4
'@commitlint/types': 20.5.0
conventional-changelog-conventionalcommits: 9.3.0
'@commitlint/config-validator@20.4.4':
'@commitlint/config-validator@20.5.0':
dependencies:
'@commitlint/types': 20.4.4
'@commitlint/types': 20.5.0
ajv: 8.18.0
'@commitlint/ensure@20.4.4':
'@commitlint/ensure@20.5.0':
dependencies:
'@commitlint/types': 20.4.4
'@commitlint/types': 20.5.0
lodash.camelcase: 4.3.0
lodash.kebabcase: 4.1.1
lodash.snakecase: 4.1.1
@ -12508,29 +12508,29 @@ snapshots:
'@commitlint/execute-rule@20.0.0': {}
'@commitlint/format@20.4.4':
'@commitlint/format@20.5.0':
dependencies:
'@commitlint/types': 20.4.4
'@commitlint/types': 20.5.0
picocolors: 1.1.1
'@commitlint/is-ignored@20.4.4':
'@commitlint/is-ignored@20.5.0':
dependencies:
'@commitlint/types': 20.4.4
'@commitlint/types': 20.5.0
semver: 7.7.4
'@commitlint/lint@20.4.4':
'@commitlint/lint@20.5.0':
dependencies:
'@commitlint/is-ignored': 20.4.4
'@commitlint/parse': 20.4.4
'@commitlint/rules': 20.4.4
'@commitlint/types': 20.4.4
'@commitlint/is-ignored': 20.5.0
'@commitlint/parse': 20.5.0
'@commitlint/rules': 20.5.0
'@commitlint/types': 20.5.0
'@commitlint/load@20.4.4(@types/node@25.5.0)(typescript@5.9.3)':
'@commitlint/load@20.5.0(@types/node@25.5.0)(typescript@5.9.3)':
dependencies:
'@commitlint/config-validator': 20.4.4
'@commitlint/config-validator': 20.5.0
'@commitlint/execute-rule': 20.0.0
'@commitlint/resolve-extends': 20.4.4
'@commitlint/types': 20.4.4
'@commitlint/resolve-extends': 20.5.0
'@commitlint/types': 20.5.0
cosmiconfig: 9.0.1(typescript@5.9.3)
cosmiconfig-typescript-loader: 6.2.0(@types/node@25.5.0)(cosmiconfig@9.0.1(typescript@5.9.3))(typescript@5.9.3)
is-plain-obj: 4.1.0
@ -12542,16 +12542,16 @@ snapshots:
'@commitlint/message@20.4.3': {}
'@commitlint/parse@20.4.4':
'@commitlint/parse@20.5.0':
dependencies:
'@commitlint/types': 20.4.4
'@commitlint/types': 20.5.0
conventional-changelog-angular: 8.3.0
conventional-commits-parser: 6.3.0
'@commitlint/read@20.4.4(conventional-commits-parser@6.3.0)':
'@commitlint/read@20.5.0(conventional-commits-parser@6.3.0)':
dependencies:
'@commitlint/top-level': 20.4.3
'@commitlint/types': 20.4.4
'@commitlint/types': 20.5.0
git-raw-commits: 5.0.1(conventional-commits-parser@6.3.0)
minimist: 1.2.8
tinyexec: 1.0.4
@ -12559,21 +12559,21 @@ snapshots:
- conventional-commits-filter
- conventional-commits-parser
'@commitlint/resolve-extends@20.4.4':
'@commitlint/resolve-extends@20.5.0':
dependencies:
'@commitlint/config-validator': 20.4.4
'@commitlint/types': 20.4.4
'@commitlint/config-validator': 20.5.0
'@commitlint/types': 20.5.0
global-directory: 4.0.1
import-meta-resolve: 4.2.0
lodash.mergewith: 4.6.2
resolve-from: 5.0.0
'@commitlint/rules@20.4.4':
'@commitlint/rules@20.5.0':
dependencies:
'@commitlint/ensure': 20.4.4
'@commitlint/ensure': 20.5.0
'@commitlint/message': 20.4.3
'@commitlint/to-lines': 20.0.0
'@commitlint/types': 20.4.4
'@commitlint/types': 20.5.0
'@commitlint/to-lines@20.0.0': {}
@ -12581,7 +12581,7 @@ snapshots:
dependencies:
escalade: 3.2.0
'@commitlint/types@20.4.4':
'@commitlint/types@20.5.0':
dependencies:
conventional-commits-parser: 6.3.0
picocolors: 1.1.1
@ -13400,7 +13400,7 @@ snapshots:
'@babel/core': 7.29.0
'@babel/plugin-syntax-import-attributes': 7.28.6(@babel/core@7.29.0)
'@babel/preset-typescript': 7.28.5(@babel/core@7.29.0)
'@jspm/import-map': 1.3.0
'@jspm/import-map': 1.4.0
es-module-lexer: 1.7.0
minimatch: 10.2.4
node-fetch-cache: 5.1.0
@ -13413,7 +13413,7 @@ snapshots:
- react-native-b4a
- supports-color
'@jspm/import-map@1.3.0': {}
'@jspm/import-map@1.4.0': {}
'@juggle/resize-observer@3.4.0': {}
@ -13669,22 +13669,22 @@ snapshots:
'@oxfmt/binding-win32-x64-msvc@0.40.0':
optional: true
'@oxlint-tsgolint/darwin-arm64@0.16.0':
'@oxlint-tsgolint/darwin-arm64@0.17.0':
optional: true
'@oxlint-tsgolint/darwin-x64@0.16.0':
'@oxlint-tsgolint/darwin-x64@0.17.0':
optional: true
'@oxlint-tsgolint/linux-arm64@0.16.0':
'@oxlint-tsgolint/linux-arm64@0.17.0':
optional: true
'@oxlint-tsgolint/linux-x64@0.16.0':
'@oxlint-tsgolint/linux-x64@0.17.0':
optional: true
'@oxlint-tsgolint/win32-arm64@0.16.0':
'@oxlint-tsgolint/win32-arm64@0.17.0':
optional: true
'@oxlint-tsgolint/win32-x64@0.16.0':
'@oxlint-tsgolint/win32-x64@0.17.0':
optional: true
'@oxlint/binding-android-arm-eabi@1.55.0':
@ -14328,7 +14328,7 @@ snapshots:
'@tanstack/store@0.9.2': {}
'@tanstack/virtual-core@3.13.22': {}
'@tanstack/virtual-core@3.13.23': {}
'@tanstack/vue-query@5.92.9(vue@3.5.30(typescript@5.9.3))':
dependencies:
@ -14344,9 +14344,9 @@ snapshots:
vue: 3.5.30(typescript@5.9.3)
vue-demi: 0.14.10(vue@3.5.30(typescript@5.9.3))
'@tanstack/vue-virtual@3.13.22(vue@3.5.30(typescript@5.9.3))':
'@tanstack/vue-virtual@3.13.23(vue@3.5.30(typescript@5.9.3))':
dependencies:
'@tanstack/virtual-core': 3.13.22
'@tanstack/virtual-core': 3.13.23
vue: 3.5.30(typescript@5.9.3)
'@tybys/wasm-util@0.10.1':
@ -14568,7 +14568,7 @@ snapshots:
'@v-c/cascader@1.0.2(vue@3.5.30(typescript@5.9.3))':
dependencies:
'@v-c/select': 1.0.19(vue@3.5.30(typescript@5.9.3))
'@v-c/select': 1.0.20(vue@3.5.30(typescript@5.9.3))
'@v-c/tree': 1.0.5(vue@3.5.30(typescript@5.9.3))
'@v-c/util': 1.0.18(vue@3.5.30(typescript@5.9.3))
vue: 3.5.30(typescript@5.9.3)
@ -14707,7 +14707,7 @@ snapshots:
'@v-c/util': 1.0.18(vue@3.5.30(typescript@5.9.3))
vue: 3.5.30(typescript@5.9.3)
'@v-c/select@1.0.19(vue@3.5.30(typescript@5.9.3))':
'@v-c/select@1.0.20(vue@3.5.30(typescript@5.9.3))':
dependencies:
'@v-c/overflow': 1.0.4(vue@3.5.30(typescript@5.9.3))
'@v-c/trigger': 1.0.13(vue@3.5.30(typescript@5.9.3))
@ -14774,7 +14774,7 @@ snapshots:
'@v-c/tree-select@1.0.3(vue@3.5.30(typescript@5.9.3))':
dependencies:
'@v-c/select': 1.0.19(vue@3.5.30(typescript@5.9.3))
'@v-c/select': 1.0.20(vue@3.5.30(typescript@5.9.3))
'@v-c/tree': 1.0.5(vue@3.5.30(typescript@5.9.3))
'@v-c/util': 1.0.18(vue@3.5.30(typescript@5.9.3))
vue: 3.5.30(typescript@5.9.3)
@ -15361,7 +15361,7 @@ snapshots:
'@v-c/rate': 1.0.1(vue@3.5.30(typescript@5.9.3))
'@v-c/resize-observer': 1.0.8(vue@3.5.30(typescript@5.9.3))
'@v-c/segmented': 1.0.1(vue@3.5.30(typescript@5.9.3))
'@v-c/select': 1.0.19(vue@3.5.30(typescript@5.9.3))
'@v-c/select': 1.0.20(vue@3.5.30(typescript@5.9.3))
'@v-c/slick': 1.0.2(vue@3.5.30(typescript@5.9.3))
'@v-c/slider': 1.0.10(vue@3.5.30(typescript@5.9.3))
'@v-c/steps': 1.0.0(vue@3.5.30(typescript@5.9.3))
@ -15771,7 +15771,7 @@ snapshots:
parse5: 7.3.0
parse5-htmlparser2-tree-adapter: 7.1.0
parse5-parser-stream: 7.1.2
undici: 7.24.3
undici: 7.24.4
whatwg-mimetype: 4.0.0
chokidar@4.0.3:
@ -15788,7 +15788,7 @@ snapshots:
circular-dependency-scanner@3.0.1:
dependencies:
'@ast-grep/napi': 0.41.1
'@ast-grep/napi': 0.42.0
'@vue/compiler-sfc': 3.5.30
commander: 14.0.3
get-tsconfig: 4.13.6
@ -15910,9 +15910,9 @@ snapshots:
comment-parser@1.4.5: {}
commitlint-plugin-function-rules@4.3.2(@commitlint/lint@20.4.4):
commitlint-plugin-function-rules@4.3.2(@commitlint/lint@20.5.0):
dependencies:
'@commitlint/lint': 20.4.4
'@commitlint/lint': 20.5.0
common-tags@1.8.2: {}
@ -16745,7 +16745,7 @@ snapshots:
esquery: 1.7.0
jsonc-eslint-parser: 3.1.0
eslint-plugin-better-tailwindcss@4.3.2(eslint@10.0.3(jiti@2.6.1))(oxlint@1.55.0(oxlint-tsgolint@0.16.0))(tailwindcss@4.2.1)(typescript@5.9.3):
eslint-plugin-better-tailwindcss@4.3.2(eslint@10.0.3(jiti@2.6.1))(oxlint@1.55.0(oxlint-tsgolint@0.17.0))(tailwindcss@4.2.1)(typescript@5.9.3):
dependencies:
'@eslint/css-tree': 3.6.9
'@valibot/to-json-schema': 1.5.0(valibot@1.2.0(typescript@5.9.3))
@ -16758,7 +16758,7 @@ snapshots:
valibot: 1.2.0(typescript@5.9.3)
optionalDependencies:
eslint: 10.0.3(jiti@2.6.1)
oxlint: 1.55.0(oxlint-tsgolint@0.16.0)
oxlint: 1.55.0(oxlint-tsgolint@0.17.0)
transitivePeerDependencies:
- typescript
@ -18810,16 +18810,16 @@ snapshots:
'@oxfmt/binding-win32-ia32-msvc': 0.40.0
'@oxfmt/binding-win32-x64-msvc': 0.40.0
oxlint-tsgolint@0.16.0:
oxlint-tsgolint@0.17.0:
optionalDependencies:
'@oxlint-tsgolint/darwin-arm64': 0.16.0
'@oxlint-tsgolint/darwin-x64': 0.16.0
'@oxlint-tsgolint/linux-arm64': 0.16.0
'@oxlint-tsgolint/linux-x64': 0.16.0
'@oxlint-tsgolint/win32-arm64': 0.16.0
'@oxlint-tsgolint/win32-x64': 0.16.0
oxlint@1.55.0(oxlint-tsgolint@0.16.0):
'@oxlint-tsgolint/darwin-arm64': 0.17.0
'@oxlint-tsgolint/darwin-x64': 0.17.0
'@oxlint-tsgolint/linux-arm64': 0.17.0
'@oxlint-tsgolint/linux-x64': 0.17.0
'@oxlint-tsgolint/win32-arm64': 0.17.0
'@oxlint-tsgolint/win32-x64': 0.17.0
oxlint@1.55.0(oxlint-tsgolint@0.17.0):
optionalDependencies:
'@oxlint/binding-android-arm-eabi': 1.55.0
'@oxlint/binding-android-arm64': 1.55.0
@ -18840,7 +18840,7 @@ snapshots:
'@oxlint/binding-win32-arm64-msvc': 1.55.0
'@oxlint/binding-win32-ia32-msvc': 1.55.0
'@oxlint/binding-win32-x64-msvc': 1.55.0
oxlint-tsgolint: 0.16.0
oxlint-tsgolint: 0.17.0
p-filter@2.1.0:
dependencies:
@ -19437,7 +19437,7 @@ snapshots:
'@floating-ui/vue': 1.1.11(vue@3.5.30(typescript@5.9.3))
'@internationalized/date': 3.12.0
'@internationalized/number': 3.6.5
'@tanstack/vue-virtual': 3.13.22(vue@3.5.30(typescript@5.9.3))
'@tanstack/vue-virtual': 3.13.23(vue@3.5.30(typescript@5.9.3))
'@vueuse/core': 14.2.1(vue@3.5.30(typescript@5.9.3))
'@vueuse/shared': 14.2.1(vue@3.5.30(typescript@5.9.3))
aria-hidden: 1.2.6
@ -20537,7 +20537,7 @@ snapshots:
undici-types@7.18.2: {}
undici@7.24.3: {}
undici@7.24.4: {}
unenv@2.0.0-rc.24:
dependencies:
@ -21072,15 +21072,15 @@ snapshots:
vooks: 0.2.12(vue@3.5.30(typescript@5.9.3))
vue: 3.5.30(typescript@5.9.3)
vxe-pc-ui@4.13.6(vue@3.5.30(typescript@5.9.3)):
vxe-pc-ui@4.13.8(vue@3.5.30(typescript@5.9.3)):
dependencies:
'@vxe-ui/core': 4.4.3(vue@3.5.30(typescript@5.9.3))
transitivePeerDependencies:
- vue
vxe-table@4.18.2(vue@3.5.30(typescript@5.9.3)):
vxe-table@4.18.4(vue@3.5.30(typescript@5.9.3)):
dependencies:
vxe-pc-ui: 4.13.6(vue@3.5.30(typescript@5.9.3))
vxe-pc-ui: 4.13.8(vue@3.5.30(typescript@5.9.3))
transitivePeerDependencies:
- vue

12
pnpm-workspace.yaml

@ -20,13 +20,13 @@ overrides:
pinia: 'catalog:'
vue: 'catalog:'
catalog:
'@ast-grep/napi': ^0.41.1
'@ast-grep/napi': ^0.42.0
'@changesets/changelog-github': ^0.6.0
'@changesets/cli': ^2.30.0
'@changesets/git': ^3.0.4
'@clack/prompts': ^1.1.0
'@commitlint/cli': ^20.4.4
'@commitlint/config-conventional': ^20.4.4
'@commitlint/cli': ^20.5.0
'@commitlint/config-conventional': ^20.5.0
'@ctrl/tinycolor': ^4.2.0
'@eslint-community/eslint-plugin-eslint-comments': ^4.7.1
'@eslint/js': ^10.0.1
@ -122,7 +122,7 @@ catalog:
ora: ^9.3.0
oxfmt: ^0.40.0
oxlint: ^1.55.0
oxlint-tsgolint: ^0.16.0
oxlint-tsgolint: ^0.17.0
pinia: ^3.0.4
pinia-plugin-persistedstate: ^4.7.1
pkg-types: ^2.3.0
@ -178,8 +178,8 @@ catalog:
vue-router: ^5.0.3
vue-tippy: ^6.7.1
vue-tsc: ^3.2.5
vxe-pc-ui: ^4.13.6
vxe-table: ^4.18.2
vxe-pc-ui: ^4.13.8
vxe-table: ^4.18.4
watermark-js-plus: ^1.6.3
yaml-eslint-parser: ^2.0.0
zod: ^3.25.76

Loading…
Cancel
Save