diff --git a/.husky/commit-msg b/.husky/commit-msg new file mode 100755 index 00000000..0398b7a8 --- /dev/null +++ b/.husky/commit-msg @@ -0,0 +1 @@ +npx --no -- commitlint --edit ${1} diff --git a/.husky/pre-commit b/.husky/pre-commit new file mode 100755 index 00000000..cb2c84d5 --- /dev/null +++ b/.husky/pre-commit @@ -0,0 +1 @@ +pnpm lint-staged diff --git a/app/[lang]/[[...mdxPath]]/page.tsx b/app/[lang]/[[...mdxPath]]/page.tsx index 8c1a9a7c..e8823663 100644 --- a/app/[lang]/[[...mdxPath]]/page.tsx +++ b/app/[lang]/[[...mdxPath]]/page.tsx @@ -1,6 +1,5 @@ import type { Metadata } from 'next' import { generateStaticParamsFor, importPage } from 'nextra/pages' -import FeedbackMessage from '@/components/feedback-message' import { useMDXComponents } from '@/mdx-components' export const generateStaticParams = generateStaticParamsFor('mdxPath') @@ -29,17 +28,6 @@ export default async function Page(props: PageProps) { <> - - ) diff --git a/commitlint.config.ts b/commitlint.config.ts new file mode 100644 index 00000000..d179c690 --- /dev/null +++ b/commitlint.config.ts @@ -0,0 +1,3 @@ +export default { + extends: ['@commitlint/config-conventional'], +} diff --git a/components/feedback-message.tsx b/components/feedback-message.tsx deleted file mode 100644 index ed59c9d8..00000000 --- a/components/feedback-message.tsx +++ /dev/null @@ -1,44 +0,0 @@ -'use client' - -import { FeelbackTaggedMessage, PRESET_EVALUATION } from '@feelback/react' -import { usePathname } from 'next/navigation' -import { useTranslation } from '@/hooks/i18n' - -import '@feelback/react/styles/feelback.css' - -export default function FeedbackMessage() { - const pathname = usePathname() - const locale = pathname.split('/')[1] - - const t = useTranslation(locale, { - 'en-US': { - title: 'Was this page helpful?', - placeholder: 'Please leave your feedback here', - }, - 'zh-CN': { - title: '这个页面对您有帮助吗?', - placeholder: '请在这里留下您的反馈', - }, - }) - - return ( -
- -
- ) -} diff --git a/components/preview.tsx b/components/preview.tsx index a6789751..9ecd48b9 100644 --- a/components/preview.tsx +++ b/components/preview.tsx @@ -55,8 +55,8 @@ export function Preview(props: IPreviewProps) { -
-
+
+
diff --git a/eslint.config.ts b/eslint.config.ts index 642e28aa..f74323c4 100644 --- a/eslint.config.ts +++ b/eslint.config.ts @@ -1,15 +1,14 @@ +import os from 'node:os' import antfu from '@antfu/eslint-config' -import eslintPluginReadableTailwind from 'eslint-plugin-readable-tailwind' +import eslintPluginBetterTailwindcss from 'eslint-plugin-better-tailwindcss' + +const isWindows = os.platform() === 'win32' +const lineBreakStyle = isWindows ? 'windows' : 'unix' export default antfu({ ignores: [ '**/*.js', '**/.next/**/*', - 'packages/api/pages/**/*', - 'packages/api/dts/**/*.js', - 'packages/api/content/**/*', - 'packages/api/public/**/*', - 'packages/showcase/src/*/demo/data.ts', ], formatters: true, markdown: true, @@ -41,13 +40,14 @@ export default antfu({ ], }, ], + 'react-hooks/rules-of-hooks': 'off', 'padding-line-between-statements': [ 'error', { blankLine: 'always', prev: 'directive', next: '*' }, ], }, }, { - files: ['**/*.{jsx,tsx}'], + files: ['**/*.tsx'], languageOptions: { parserOptions: { ecmaFeatures: { @@ -56,18 +56,25 @@ export default antfu({ }, }, plugins: { - 'readable-tailwind': eslintPluginReadableTailwind, + 'better-tailwindcss': eslintPluginBetterTailwindcss, + }, + settings: { + 'better-tailwindcss': { + entryPoint: 'styles/globals.css', + }, }, rules: { // enable all recommended rules to warn - ...eslintPluginReadableTailwind.configs.warning.rules, + ...eslintPluginBetterTailwindcss.configs['recommended-warn'].rules, // enable all recommended rules to error - ...eslintPluginReadableTailwind.configs.error.rules, - 'jsonc/sort-keys': ['warn'], + ...eslintPluginBetterTailwindcss.configs['recommended-error'].rules, // or configure rules individually - 'readable-tailwind/multiline': ['warn', { printWidth: 120 }], - - 'react-hooks/rules-of-hooks': 'off', + 'better-tailwindcss/multiline': ['warn', { + printWidth: 120, + group: 'newLine', + lineBreakStyle, + }], + 'better-tailwindcss/no-conflicting-classes': 'off', }, }) diff --git a/package.json b/package.json index ebcd5cd8..1030d9fa 100644 --- a/package.json +++ b/package.json @@ -1,59 +1,59 @@ { "name": "@univerjs-site/docs", "type": "module", - "version": "0.8.0", + "version": "0.8.1", "private": true, - "packageManager": "pnpm@10.11.0", + "packageManager": "pnpm@10.12.1", "scripts": { - "prepare": "simple-git-hooks", + "prepare": "husky", + "pre-commit": "lint-staged", "dev": "next", "build": "NODE_OPTIONS=\"--max-old-space-size=4096\" next build", "start": "next start", "lint": "eslint ." }, "dependencies": { + "@commitlint/cli": "^19.8.1", + "@commitlint/config-conventional": "^19.8.1", "@docsearch/css": "^3.9.0", "@docsearch/react": "^3.9.0", "@feelback/react": "^0.3.4", "@univerjs/icons": "^0.4.4", - "@univerjs/presets": "0.8.0", - "@univerjs/sheets-crosshair-highlight": "0.8.0", - "@univerjs/sheets-formula-ui": "0.8.0", - "@univerjs/themes": "0.8.0", - "@univerjs/uniscript": "0.8.0", - "@univerjs/watermark": "0.8.0", + "@univerjs/presets": "0.8.1", + "@univerjs/sheets-crosshair-highlight": "0.8.1", + "@univerjs/sheets-formula-ui": "0.8.1", + "@univerjs/themes": "0.8.1", + "@univerjs/uniscript": "0.8.1", + "@univerjs/watermark": "0.8.1", "clsx": "^2.1.1", "next": "15.3.3", "nextra": "^4.2.17", "nextra-theme-docs": "^4.2.17", "react": "19.1.0", "react-dom": "19.1.0", - "tailwind-merge": "^3.3.0" + "tailwind-merge": "^3.3.1" }, "devDependencies": { - "@antfu/eslint-config": "^4.13.2", - "@eslint-react/eslint-plugin": "^1.50.0", - "@tailwindcss/postcss": "^4.1.8", - "@types/react": "^19.1.6", - "@types/react-dom": "^19.1.5", + "@antfu/eslint-config": "^4.14.1", + "@eslint-react/eslint-plugin": "^1.52.1", + "@tailwindcss/postcss": "^4.1.10", + "@types/react": "^19.1.8", + "@types/react-dom": "^19.1.6", "eslint": "^9.28.0", + "eslint-plugin-better-tailwindcss": "^3.1.0", "eslint-plugin-format": "^1.0.1", "eslint-plugin-react-hooks": "^5.2.0", "eslint-plugin-react-refresh": "^0.4.20", - "eslint-plugin-readable-tailwind": "^2.1.2", "file-loader": "^6.2.0", + "husky": "^9.1.7", "lint-staged": "^16.1.0", - "postcss": "^8.5.4", - "shiki": "^3.4.2", - "simple-git-hooks": "^2.13.0", - "tailwindcss": "^4.1.8", + "postcss": "^8.5.5", + "shiki": "^3.6.0", + "tailwindcss": "^4.1.10", "tailwindcss-animate": "^1.0.7", "typescript": "^5.8.3" }, - "simple-git-hooks": { - "pre-commit": "pnpm lint-staged" - }, "lint-staged": { - "!submodules/*": "eslint" + "*": "eslint --fix" } } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 90fe37a0..5d89987a 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -8,12 +8,18 @@ importers: .: dependencies: + '@commitlint/cli': + specifier: ^19.8.1 + version: 19.8.1(@types/node@22.15.24)(typescript@5.8.3) + '@commitlint/config-conventional': + specifier: ^19.8.1 + version: 19.8.1 '@docsearch/css': specifier: ^3.9.0 version: 3.9.0 '@docsearch/react': specifier: ^3.9.0 - version: 3.9.0(@algolia/client-search@5.25.0)(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(search-insights@2.17.3) + version: 3.9.0(@algolia/client-search@5.25.0)(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(search-insights@2.17.3) '@feelback/react': specifier: ^0.3.4 version: 0.3.4(react@19.1.0) @@ -21,23 +27,23 @@ importers: specifier: ^0.4.4 version: 0.4.4(react-dom@19.1.0(react@19.1.0))(react@19.1.0) '@univerjs/presets': - specifier: 0.8.0 - version: 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + specifier: 0.8.1 + version: 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) '@univerjs/sheets-crosshair-highlight': - specifier: 0.8.0 - version: 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + specifier: 0.8.1 + version: 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) '@univerjs/sheets-formula-ui': - specifier: 0.8.0 - version: 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + specifier: 0.8.1 + version: 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) '@univerjs/themes': - specifier: 0.8.0 - version: 0.8.0 + specifier: 0.8.1 + version: 0.8.1 '@univerjs/uniscript': - specifier: 0.8.0 - version: 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(monaco-editor@0.52.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + specifier: 0.8.1 + version: 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(monaco-editor@0.52.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) '@univerjs/watermark': - specifier: 0.8.0 - version: 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) + specifier: 0.8.1 + version: 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) clsx: specifier: ^2.1.1 version: 2.1.1 @@ -49,7 +55,7 @@ importers: version: 4.2.17(acorn@8.14.1)(next@15.3.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(typescript@5.8.3) nextra-theme-docs: specifier: ^4.2.17 - version: 4.2.17(@types/react@19.1.6)(next@15.3.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(nextra@4.2.17(acorn@8.14.1)(next@15.3.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(typescript@5.8.3))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(use-sync-external-store@1.5.0(react@19.1.0)) + version: 4.2.17(@types/react@19.1.8)(next@15.3.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(nextra@4.2.17(acorn@8.14.1)(next@15.3.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(typescript@5.8.3))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(use-sync-external-store@1.5.0(react@19.1.0)) react: specifier: 19.1.0 version: 19.1.0 @@ -57,27 +63,30 @@ importers: specifier: 19.1.0 version: 19.1.0(react@19.1.0) tailwind-merge: - specifier: ^3.3.0 - version: 3.3.0 + specifier: ^3.3.1 + version: 3.3.1 devDependencies: '@antfu/eslint-config': - specifier: ^4.13.2 - version: 4.13.2(@eslint-react/eslint-plugin@1.50.0(eslint@9.28.0(jiti@2.4.2))(ts-api-utils@2.1.0(typescript@5.8.3))(typescript@5.8.3))(@vue/compiler-sfc@3.5.16)(eslint-plugin-format@1.0.1(eslint@9.28.0(jiti@2.4.2)))(eslint-plugin-react-hooks@5.2.0(eslint@9.28.0(jiti@2.4.2)))(eslint-plugin-react-refresh@0.4.20(eslint@9.28.0(jiti@2.4.2)))(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) + specifier: ^4.14.1 + version: 4.14.1(@eslint-react/eslint-plugin@1.52.1(eslint@9.28.0(jiti@2.4.2))(ts-api-utils@2.1.0(typescript@5.8.3))(typescript@5.8.3))(@vue/compiler-sfc@3.5.16)(eslint-plugin-format@1.0.1(eslint@9.28.0(jiti@2.4.2)))(eslint-plugin-react-hooks@5.2.0(eslint@9.28.0(jiti@2.4.2)))(eslint-plugin-react-refresh@0.4.20(eslint@9.28.0(jiti@2.4.2)))(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) '@eslint-react/eslint-plugin': - specifier: ^1.50.0 - version: 1.50.0(eslint@9.28.0(jiti@2.4.2))(ts-api-utils@2.1.0(typescript@5.8.3))(typescript@5.8.3) + specifier: ^1.52.1 + version: 1.52.1(eslint@9.28.0(jiti@2.4.2))(ts-api-utils@2.1.0(typescript@5.8.3))(typescript@5.8.3) '@tailwindcss/postcss': - specifier: ^4.1.8 - version: 4.1.8 + specifier: ^4.1.10 + version: 4.1.10 '@types/react': - specifier: ^19.1.6 - version: 19.1.6 + specifier: ^19.1.8 + version: 19.1.8 '@types/react-dom': - specifier: ^19.1.5 - version: 19.1.5(@types/react@19.1.6) + specifier: ^19.1.6 + version: 19.1.6(@types/react@19.1.8) eslint: specifier: ^9.28.0 version: 9.28.0(jiti@2.4.2) + eslint-plugin-better-tailwindcss: + specifier: ^3.1.0 + version: 3.1.0(eslint@9.28.0(jiti@2.4.2))(tailwindcss@4.1.10) eslint-plugin-format: specifier: ^1.0.1 version: 1.0.1(eslint@9.28.0(jiti@2.4.2)) @@ -87,30 +96,27 @@ importers: eslint-plugin-react-refresh: specifier: ^0.4.20 version: 0.4.20(eslint@9.28.0(jiti@2.4.2)) - eslint-plugin-readable-tailwind: - specifier: ^2.1.2 - version: 2.1.2(eslint@9.28.0(jiti@2.4.2))(tailwindcss@4.1.8) file-loader: specifier: ^6.2.0 version: 6.2.0(webpack@5.99.9) + husky: + specifier: ^9.1.7 + version: 9.1.7 lint-staged: specifier: ^16.1.0 version: 16.1.0 postcss: - specifier: ^8.5.4 - version: 8.5.4 + specifier: ^8.5.5 + version: 8.5.5 shiki: - specifier: ^3.4.2 - version: 3.4.2 - simple-git-hooks: - specifier: ^2.13.0 - version: 2.13.0 + specifier: ^3.6.0 + version: 3.6.0 tailwindcss: - specifier: ^4.1.8 - version: 4.1.8 + specifier: ^4.1.10 + version: 4.1.10 tailwindcss-animate: specifier: ^1.0.7 - version: 1.0.7(tailwindcss@4.1.8) + version: 1.0.7(tailwindcss@4.1.10) typescript: specifier: ^5.8.3 version: 5.8.3 @@ -197,8 +203,8 @@ packages: resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==} engines: {node: '>=6.0.0'} - '@antfu/eslint-config@4.13.2': - resolution: {integrity: sha512-F+IVIQUCfw6eW4H06c9a9USJ3UOnoBx4I0qsTL3kO6GcyJB6mwk+nawFf95DfHKT3fJKv58YPPz0XCmsY/w0XA==} + '@antfu/eslint-config@4.14.1': + resolution: {integrity: sha512-SVGR33/jSUwMWvC8q3NGF/XEHWFJVfMg8yaQJDtRSGISXm23DVA/ANTADpRKhXpk7IjfnjzPpbT/+T6wFzOmUA==} hasBin: true peerDependencies: '@eslint-react/eslint-plugin': ^1.38.4 @@ -252,6 +258,10 @@ packages: '@antfu/utils@8.1.1': resolution: {integrity: sha512-Mex9nXf9vR6AhcXmMrlz/HVgYYZpVGJ6YlPgwl7UnaFpnshXs6EK/oa5Gpf3CzENMjkvEx2tQtntGnb7UtSTOQ==} + '@babel/code-frame@7.27.1': + resolution: {integrity: sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==} + engines: {node: '>=6.9.0'} + '@babel/helper-string-parser@7.27.1': resolution: {integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==} engines: {node: '>=6.9.0'} @@ -291,11 +301,80 @@ packages: '@chevrotain/utils@11.0.3': resolution: {integrity: sha512-YslZMgtJUyuMbZ+aKvfF3x1f5liK4mWNxghFRv7jqRR9C3R3fAOGTTKvxXDa2Y1s9zSbcpuO0cAxDYsc9SrXoQ==} - '@clack/core@0.4.2': - resolution: {integrity: sha512-NYQfcEy8MWIxrT5Fj8nIVchfRFA26yYKJcvBS7WlUIlw2OmQOY9DhGGXMovyI5J5PpxrCPGkgUi207EBrjpBvg==} + '@clack/core@0.5.0': + resolution: {integrity: sha512-p3y0FIOwaYRUPRcMO7+dlmLh8PSRcrjuTndsiA0WAFbWES0mLZlrjVoBRZ9DzkPFJZG6KGkJmoEAY0ZcVWTkow==} + + '@clack/prompts@0.11.0': + resolution: {integrity: sha512-pMN5FcrEw9hUkZA4f+zLlzivQSeQf5dRGJjSUbvVYDLvpKCdQx5OaknvKzgbtXOizhP+SJJJjqEbOe55uKKfAw==} + + '@commitlint/cli@19.8.1': + resolution: {integrity: sha512-LXUdNIkspyxrlV6VDHWBmCZRtkEVRpBKxi2Gtw3J54cGWhLCTouVD/Q6ZSaSvd2YaDObWK8mDjrz3TIKtaQMAA==} + engines: {node: '>=v18'} + hasBin: true + + '@commitlint/config-conventional@19.8.1': + resolution: {integrity: sha512-/AZHJL6F6B/G959CsMAzrPKKZjeEiAVifRyEwXxcT6qtqbPwGw+iQxmNS+Bu+i09OCtdNRW6pNpBvgPrtMr9EQ==} + engines: {node: '>=v18'} + + '@commitlint/config-validator@19.8.1': + resolution: {integrity: sha512-0jvJ4u+eqGPBIzzSdqKNX1rvdbSU1lPNYlfQQRIFnBgLy26BtC0cFnr7c/AyuzExMxWsMOte6MkTi9I3SQ3iGQ==} + engines: {node: '>=v18'} + + '@commitlint/ensure@19.8.1': + resolution: {integrity: sha512-mXDnlJdvDzSObafjYrOSvZBwkD01cqB4gbnnFuVyNpGUM5ijwU/r/6uqUmBXAAOKRfyEjpkGVZxaDsCVnHAgyw==} + engines: {node: '>=v18'} + + '@commitlint/execute-rule@19.8.1': + resolution: {integrity: sha512-YfJyIqIKWI64Mgvn/sE7FXvVMQER/Cd+s3hZke6cI1xgNT/f6ZAz5heND0QtffH+KbcqAwXDEE1/5niYayYaQA==} + engines: {node: '>=v18'} + + '@commitlint/format@19.8.1': + resolution: {integrity: sha512-kSJj34Rp10ItP+Eh9oCItiuN/HwGQMXBnIRk69jdOwEW9llW9FlyqcWYbHPSGofmjsqeoxa38UaEA5tsbm2JWw==} + engines: {node: '>=v18'} + + '@commitlint/is-ignored@19.8.1': + resolution: {integrity: sha512-AceOhEhekBUQ5dzrVhDDsbMaY5LqtN8s1mqSnT2Kz1ERvVZkNihrs3Sfk1Je/rxRNbXYFzKZSHaPsEJJDJV8dg==} + engines: {node: '>=v18'} + + '@commitlint/lint@19.8.1': + resolution: {integrity: sha512-52PFbsl+1EvMuokZXLRlOsdcLHf10isTPlWwoY1FQIidTsTvjKXVXYb7AvtpWkDzRO2ZsqIgPK7bI98x8LRUEw==} + engines: {node: '>=v18'} + + '@commitlint/load@19.8.1': + resolution: {integrity: sha512-9V99EKG3u7z+FEoe4ikgq7YGRCSukAcvmKQuTtUyiYPnOd9a2/H9Ak1J9nJA1HChRQp9OA/sIKPugGS+FK/k1A==} + engines: {node: '>=v18'} + + '@commitlint/message@19.8.1': + resolution: {integrity: sha512-+PMLQvjRXiU+Ae0Wc+p99EoGEutzSXFVwQfa3jRNUZLNW5odZAyseb92OSBTKCu+9gGZiJASt76Cj3dLTtcTdg==} + engines: {node: '>=v18'} + + '@commitlint/parse@19.8.1': + resolution: {integrity: sha512-mmAHYcMBmAgJDKWdkjIGq50X4yB0pSGpxyOODwYmoexxxiUCy5JJT99t1+PEMK7KtsCtzuWYIAXYAiKR+k+/Jw==} + engines: {node: '>=v18'} - '@clack/prompts@0.10.1': - resolution: {integrity: sha512-Q0T02vx8ZM9XSv9/Yde0jTmmBQufZhPJfYAg2XrrrxWWaZgq1rr8nU8Hv710BQ1dhoP8rtY7YUdpGej2Qza/cw==} + '@commitlint/read@19.8.1': + resolution: {integrity: sha512-03Jbjb1MqluaVXKHKRuGhcKWtSgh3Jizqy2lJCRbRrnWpcM06MYm8th59Xcns8EqBYvo0Xqb+2DoZFlga97uXQ==} + engines: {node: '>=v18'} + + '@commitlint/resolve-extends@19.8.1': + resolution: {integrity: sha512-GM0mAhFk49I+T/5UCYns5ayGStkTt4XFFrjjf0L4S26xoMTSkdCf9ZRO8en1kuopC4isDFuEm7ZOm/WRVeElVg==} + engines: {node: '>=v18'} + + '@commitlint/rules@19.8.1': + resolution: {integrity: sha512-Hnlhd9DyvGiGwjfjfToMi1dsnw1EXKGJNLTcsuGORHz6SS9swRgkBsou33MQ2n51/boIDrbsg4tIBbRpEWK2kw==} + engines: {node: '>=v18'} + + '@commitlint/to-lines@19.8.1': + resolution: {integrity: sha512-98Mm5inzbWTKuZQr2aW4SReY6WUukdWXuZhrqf1QdKPZBCCsXuG87c+iP0bwtD6DBnmVVQjgp4whoHRVixyPBg==} + engines: {node: '>=v18'} + + '@commitlint/top-level@19.8.1': + resolution: {integrity: sha512-Ph8IN1IOHPSDhURCSXBz44+CIu+60duFwRsg6HqaISFHQHbmBtxVw4ZrFNIYUzEP7WwrNPxa2/5qJ//NK1FGcw==} + engines: {node: '>=v18'} + + '@commitlint/types@19.8.1': + resolution: {integrity: sha512-/yCrWGCoA1SVKOks25EGadP9Pnj0oAIHGpl2wH2M2Y46dPM2ueb8wyCVOD7O3WCTkaJ0IkKvzhl1JY7+uCT2Dw==} + engines: {node: '>=v18'} '@docsearch/css@3.9.0': resolution: {integrity: sha512-cQbnVbq0rrBwNAKegIac/t6a8nWoUAn8frnkLFW6YARaRmAQr5/Eoe6Ln2fqkUCZ40KpdrKbpSAmgrkviOxuWA==} @@ -326,15 +405,9 @@ packages: '@dprint/toml@0.6.4': resolution: {integrity: sha512-bZXIUjxr0LIuHWshZr/5mtUkOrnh0NKVZEF6ACojW5z7zkJu7s9sV2mMXm8XQDqN4cJzdHYUYzUyEGdfciaLJA==} - '@emnapi/core@1.4.3': - resolution: {integrity: sha512-4m62DuCE07lw01soJwPiBGC0nAww0Q+RY70VZ+n49yDIO13yyinhbWCeNnaob0lakDtWQzSdtNWzJeOJt2ma+g==} - '@emnapi/runtime@1.4.3': resolution: {integrity: sha512-pBPWdu6MLKROBX05wSNKcNb++m5Er+KQ9QkB+WVM+pW2Kx9hoSrVTnu3BdkI5eBLZoKu/J6mW/B6i6bJB2ytXQ==} - '@emnapi/wasi-threads@1.0.2': - resolution: {integrity: sha512-5n3nTJblwRi8LlXkJ9eBzu+kZR8Yxcc7ubakyQTFzPMtIhFpUBRbsnc2Dv88IZDIbCDlBiWrknhB4Lsz7mg6BA==} - '@es-joy/jsdoccomment@0.50.2': resolution: {integrity: sha512-YAdE/IJSpwbOTiaURNCKECdAwqrJuFiZhylmesBcIRawtYKnBR2wxPhoIewMg+Yu+QuYvHfJNReWpoxGBKOChA==} engines: {node: '>=18'} @@ -355,20 +428,20 @@ packages: resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==} engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} - '@eslint-react/ast@1.50.0': - resolution: {integrity: sha512-WGAZvyZweQzyHBZ9DjHD4WPTwM1POuyEaUyFyAV0SF82zIM/UE6CbWk4IkDYs3km/48SGqPYlzRQO1LskBhl/Q==} + '@eslint-react/ast@1.52.1': + resolution: {integrity: sha512-QWjjv3P49KdYlbSnbAfRz7Ba0BTsJrF1mUNGTz/HBvavThUgSzHsqRJTtFrFRwFRFHTpOR/UlCnh/DOJtYzWjQ==} engines: {bun: '>=1.0.15', node: '>=18.18.0'} - '@eslint-react/core@1.50.0': - resolution: {integrity: sha512-2hwkvmW5xZrqe8Em+gCd0ipzNOuViwj2/5tiFSK6xyvC0WPPszlkMTvjUxtLeCnjcaIUqGSurQZ3jIP0bJeYAA==} + '@eslint-react/core@1.52.1': + resolution: {integrity: sha512-bPgKGka78qa8XBQC1fYJSAH9azTHJiyXbtxgD0ahTaPGFm6mWos3sCXgpLc5ZkqwOVV0frurNfOFuRoyL6QOJg==} engines: {bun: '>=1.0.15', node: '>=18.18.0'} - '@eslint-react/eff@1.50.0': - resolution: {integrity: sha512-SGLWvBeJCJBXDAJXeTEyGfKjK6KcfHQtYfCoaU0TqFyOdpwArf/AJtOedtfle2OuLHx7xStlx1SESk0532mU+w==} + '@eslint-react/eff@1.52.1': + resolution: {integrity: sha512-dWtb6ybLc36Vfg5hZlUELbhdNLpd1BMUEOVti9wQF2O+VCQ7FFFd1IqBOFJcITQFIuXIaz5zpAIfRct1QiKo5w==} engines: {bun: '>=1.0.15', node: '>=18.18.0'} - '@eslint-react/eslint-plugin@1.50.0': - resolution: {integrity: sha512-EkyWjzo1k86IHDfBwhtnE9LhpgedoqkiDj+YT7uzIJm/pJsZ5JF3njhRbU7nvtDuZ4x89pml1O4rREZIpDXZ5g==} + '@eslint-react/eslint-plugin@1.52.1': + resolution: {integrity: sha512-S2HnBwTIpOPB7/eNTj32FXlv+rtJy1CIXLUdOq+Ro9+P8uMrQPfuivDSNFZ71jc7f6okD3TcgDYovdzyhIY+uA==} engines: {bun: '>=1.0.15', node: '>=18.18.0'} peerDependencies: eslint: ^8.57.0 || ^9.0.0 @@ -377,16 +450,16 @@ packages: typescript: optional: true - '@eslint-react/kit@1.50.0': - resolution: {integrity: sha512-DKj8qbWvLjK1o8PKjPkaWr3IO4meahQ3zZ82TQQ5JTMgUqWZnABAvTPKxv7Fyb8gGUhYLkhZa2xbUA5X8hXmxQ==} + '@eslint-react/kit@1.52.1': + resolution: {integrity: sha512-sFf0qLAwne916pH00W4detuk+aMavgCOr6s6mOXHMVlTqwP1dTN+Y7D4zMBtUYp1u3FxlVHcgBnhrw9RmaKXOQ==} engines: {bun: '>=1.0.15', node: '>=18.18.0'} - '@eslint-react/shared@1.50.0': - resolution: {integrity: sha512-Lt26m2W/iYaw2Y6/pTA/uA5QB7eZzWWilSJ/xLW73xu92nxUaWzB4fVuUTIpsDDeN6q5ttMvVRf8LbIkIFWUFg==} + '@eslint-react/shared@1.52.1': + resolution: {integrity: sha512-MxYoU4NgOVrY1cLY3ZX7sGaXchhUToDBXSu0AwASnD0+MItxk0IyXZLc6Tb88oOF6dTdAyNFVumbcVkLt/n8IQ==} engines: {bun: '>=1.0.15', node: '>=18.18.0'} - '@eslint-react/var@1.50.0': - resolution: {integrity: sha512-C/hTee8/JQIQ+j5Aj7P5mvUFltfYPwZfXuqSUnZU6qk1n9aX3TIHh9NfGb8UsSDeRWgV0ZwCybF9ronp+krilg==} + '@eslint-react/var@1.52.1': + resolution: {integrity: sha512-L/DBwNoPa8ZHeaInEr4Rqqf8SQmur0gDRqYYJNUvUt7xEYYymZDqn3Xll8eHDg8GUF9s92VkxRXoh7uUgRbaEg==} engines: {bun: '>=1.0.15', node: '>=18.18.0'} '@eslint/compat@1.2.9': @@ -406,10 +479,6 @@ packages: resolution: {integrity: sha512-+GPzk8PlG0sPpzdU5ZvIRMPidzAnZDl/s9L+y13iodqvb8leL53bTannOrQ/Im7UkpsmFU5Ily5U60LWixnmLg==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@eslint/core@0.10.0': - resolution: {integrity: sha512-gFHJ+xBOo4G3WRlR1e/3G8A6/KZAH6zcE/hkLRCZTi/B9avAG365QhFA8uOGzTMqgTghpn7/fSnscW++dpMSAw==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@eslint/core@0.13.0': resolution: {integrity: sha512-yfkgDw1KR66rkT5A8ci4irzDysN7FRpq3ttJolR88OqQikAWqwA8j5VZyas+vjyBNFIJ7MfybJ9plMILI2UrCw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} @@ -426,8 +495,8 @@ packages: resolution: {integrity: sha512-fnqSjGWd/CoIp4EXIxWVK/sHA6DOHN4+8Ix2cX5ycOY7LG0UY8nHCU5pIp2eaE1Mc7Qd8kHspYNzYXT2ojPLzg==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@eslint/markdown@6.4.0': - resolution: {integrity: sha512-J07rR8uBSNFJ9iliNINrchilpkmCihPmTVotpThUeKEn5G8aBBZnkjNBy/zovhJA5LBk1vWU9UDlhqKSc/dViQ==} + '@eslint/markdown@6.5.0': + resolution: {integrity: sha512-oSkF0p8X21vKEEAGTZASi7q3tbdTvlGduQ02Xz2A1AFncUP4RLVcNz27XurxVW4fs1JXuh0xBtvokXdtp/nN+Q==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} '@eslint/object-schema@2.1.6': @@ -758,9 +827,6 @@ packages: resolution: {integrity: sha512-jMxvwzkKzd3cXo2EB9GM2ic0eYo2rP/BS6gJt6HnWbsDO1O8GSD4k7o2Cpr2YERtMpGF/MGcDfsfj2EbQPtrXw==} engines: {node: '>= 10'} - '@napi-rs/wasm-runtime@0.2.10': - resolution: {integrity: sha512-bCsCyeZEwVErsGmyPNSzwfwFn4OdxBj0mmv6hOFucB/k81Ojdu68RbZdxYsRQUPc9l6SU5F/cG+bXgWs3oUgsQ==} - '@next/env@15.3.3': resolution: {integrity: sha512-OdiMrzCl2Xi0VTjiQQUK0Xh7bJHnOuET2s+3V+Y40WJBAXrJeGA3f+I8MZJ/YQ3mVGi5XGR1L66oFlgqXhQ4Vw==} @@ -1267,32 +1333,32 @@ packages: '@shikijs/core@2.5.0': resolution: {integrity: sha512-uu/8RExTKtavlpH7XqnVYBrfBkUc20ngXiX9NSrBhOVZYv/7XQRKUyhtkeflY5QsxC0GbJThCerruZfsUaSldg==} - '@shikijs/core@3.4.2': - resolution: {integrity: sha512-AG8vnSi1W2pbgR2B911EfGqtLE9c4hQBYkv/x7Z+Kt0VxhgQKcW7UNDVYsu9YxwV6u+OJrvdJrMq6DNWoBjihQ==} + '@shikijs/core@3.6.0': + resolution: {integrity: sha512-9By7Xb3olEX0o6UeJyPLI1PE1scC4d3wcVepvtv2xbuN9/IThYN4Wcwh24rcFeASzPam11MCq8yQpwwzCgSBRw==} '@shikijs/engine-javascript@2.5.0': resolution: {integrity: sha512-VjnOpnQf8WuCEZtNUdjjwGUbtAVKuZkVQ/5cHy/tojVVRIRtlWMYVjyWhxOmIq05AlSOv72z7hRNRGVBgQOl0w==} - '@shikijs/engine-javascript@3.4.2': - resolution: {integrity: sha512-1/adJbSMBOkpScCE/SB6XkjJU17ANln3Wky7lOmrnpl+zBdQ1qXUJg2GXTYVHRq+2j3hd1DesmElTXYDgtfSOQ==} + '@shikijs/engine-javascript@3.6.0': + resolution: {integrity: sha512-7YnLhZG/TU05IHMG14QaLvTW/9WiK8SEYafceccHUSXs2Qr5vJibUwsDfXDLmRi0zHdzsxrGKpSX6hnqe0k8nA==} '@shikijs/engine-oniguruma@2.5.0': resolution: {integrity: sha512-pGd1wRATzbo/uatrCIILlAdFVKdxImWJGQ5rFiB5VZi2ve5xj3Ax9jny8QvkaV93btQEwR/rSz5ERFpC5mKNIw==} - '@shikijs/engine-oniguruma@3.4.2': - resolution: {integrity: sha512-zcZKMnNndgRa3ORja6Iemsr3DrLtkX3cAF7lTJkdMB6v9alhlBsX9uNiCpqofNrXOvpA3h6lHcLJxgCIhVOU5Q==} + '@shikijs/engine-oniguruma@3.6.0': + resolution: {integrity: sha512-nmOhIZ9yT3Grd+2plmW/d8+vZ2pcQmo/UnVwXMUXAKTXdi+LK0S08Ancrz5tQQPkxvjBalpMW2aKvwXfelauvA==} '@shikijs/langs@2.5.0': resolution: {integrity: sha512-Qfrrt5OsNH5R+5tJ/3uYBBZv3SuGmnRPejV9IlIbFH3HTGLDlkqgHymAlzklVmKBjAaVmkPkyikAV/sQ1wSL+w==} - '@shikijs/langs@3.4.2': - resolution: {integrity: sha512-H6azIAM+OXD98yztIfs/KH5H4PU39t+SREhmM8LaNXyUrqj2mx+zVkr8MWYqjceSjDw9I1jawm1WdFqU806rMA==} + '@shikijs/langs@3.6.0': + resolution: {integrity: sha512-IdZkQJaLBu1LCYCwkr30hNuSDfllOT8RWYVZK1tD2J03DkiagYKRxj/pDSl8Didml3xxuyzUjgtioInwEQM/TA==} '@shikijs/themes@2.5.0': resolution: {integrity: sha512-wGrk+R8tJnO0VMzmUExHR+QdSaPUl/NKs+a4cQQRWyoc3YFbUzuLEi/KWK1hj+8BfHRKm2jNhhJck1dfstJpiw==} - '@shikijs/themes@3.4.2': - resolution: {integrity: sha512-qAEuAQh+brd8Jyej2UDDf+b4V2g1Rm8aBIdvt32XhDPrHvDkEnpb7Kzc9hSuHUxz0Iuflmq7elaDuQAP9bHIhg==} + '@shikijs/themes@3.6.0': + resolution: {integrity: sha512-Fq2j4nWr1DF4drvmhqKq8x5vVQ27VncF8XZMBuHuQMZvUSS3NBgpqfwz/FoGe36+W6PvniZ1yDlg2d4kmYDU6w==} '@shikijs/twoslash@2.5.0': resolution: {integrity: sha512-OdyoZRbzTB80qHFHdaXT070OG9hiljxbsJMZmrMAPWXG2e4FV8wbC63VBM5BJXa1DH645nw20VX1MzASkO5V9g==} @@ -1300,14 +1366,14 @@ packages: '@shikijs/types@2.5.0': resolution: {integrity: sha512-ygl5yhxki9ZLNuNpPitBWvcy9fsSKKaRuO4BAlMyagszQidxcpLAr0qiW/q43DtSIDxO6hEbtYLiFZNXO/hdGw==} - '@shikijs/types@3.4.2': - resolution: {integrity: sha512-zHC1l7L+eQlDXLnxvM9R91Efh2V4+rN3oMVS2swCBssbj2U/FBwybD1eeLaq8yl/iwT+zih8iUbTBCgGZOYlVg==} + '@shikijs/types@3.6.0': + resolution: {integrity: sha512-cLWFiToxYu0aAzJqhXTQsFiJRTFDAGl93IrMSBNaGSzs7ixkLfdG6pH11HipuWFGW5vyx4X47W8HDQ7eSrmBUg==} '@shikijs/vscode-textmate@10.0.2': resolution: {integrity: sha512-83yeghZ2xxin3Nj8z1NMd/NCuca+gsYXswywDy5bHvwlWL8tpTQmzGeUuHd9FC3E/SBEMvzJRwWEOz5gGes9Qg==} - '@stylistic/eslint-plugin@4.4.0': - resolution: {integrity: sha512-bIh/d9X+OQLCAMdhHtps+frvyjvAM4B1YlSJzcEEhl7wXLIqPar3ngn9DrHhkBOrTA/z9J0bUMtctAspe0dxdQ==} + '@stylistic/eslint-plugin@5.0.0-beta.3': + resolution: {integrity: sha512-ItDjyhRyc5hx4W/IBy4/EhgPLbTrjeVPgcYG65pZApTg8Prf1nsWz0j7AY/nYd7OqzBAuRSmzrYFlab86ybePw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: '>=9.0.0' @@ -1321,65 +1387,65 @@ packages: '@swc/helpers@0.5.17': resolution: {integrity: sha512-5IKx/Y13RsYd+sauPb2x+U/xZikHjolzfuDgTAl/Tdf3Q8rslRvC19NKDLgAJQ6wsqADk10ntlv08nPFw/gO/A==} - '@tailwindcss/node@4.1.8': - resolution: {integrity: sha512-OWwBsbC9BFAJelmnNcrKuf+bka2ZxCE2A4Ft53Tkg4uoiE67r/PMEYwCsourC26E+kmxfwE0hVzMdxqeW+xu7Q==} + '@tailwindcss/node@4.1.10': + resolution: {integrity: sha512-2ACf1znY5fpRBwRhMgj9ZXvb2XZW8qs+oTfotJ2C5xR0/WNL7UHZ7zXl6s+rUqedL1mNi+0O+WQr5awGowS3PQ==} - '@tailwindcss/oxide-android-arm64@4.1.8': - resolution: {integrity: sha512-Fbz7qni62uKYceWYvUjRqhGfZKwhZDQhlrJKGtnZfuNtHFqa8wmr+Wn74CTWERiW2hn3mN5gTpOoxWKk0jRxjg==} + '@tailwindcss/oxide-android-arm64@4.1.10': + resolution: {integrity: sha512-VGLazCoRQ7rtsCzThaI1UyDu/XRYVyH4/EWiaSX6tFglE+xZB5cvtC5Omt0OQ+FfiIVP98su16jDVHDEIuH4iQ==} engines: {node: '>= 10'} cpu: [arm64] os: [android] - '@tailwindcss/oxide-darwin-arm64@4.1.8': - resolution: {integrity: sha512-RdRvedGsT0vwVVDztvyXhKpsU2ark/BjgG0huo4+2BluxdXo8NDgzl77qh0T1nUxmM11eXwR8jA39ibvSTbi7A==} + '@tailwindcss/oxide-darwin-arm64@4.1.10': + resolution: {integrity: sha512-ZIFqvR1irX2yNjWJzKCqTCcHZbgkSkSkZKbRM3BPzhDL/18idA8uWCoopYA2CSDdSGFlDAxYdU2yBHwAwx8euQ==} engines: {node: '>= 10'} cpu: [arm64] os: [darwin] - '@tailwindcss/oxide-darwin-x64@4.1.8': - resolution: {integrity: sha512-t6PgxjEMLp5Ovf7uMb2OFmb3kqzVTPPakWpBIFzppk4JE4ix0yEtbtSjPbU8+PZETpaYMtXvss2Sdkx8Vs4XRw==} + '@tailwindcss/oxide-darwin-x64@4.1.10': + resolution: {integrity: sha512-eCA4zbIhWUFDXoamNztmS0MjXHSEJYlvATzWnRiTqJkcUteSjO94PoRHJy1Xbwp9bptjeIxxBHh+zBWFhttbrQ==} engines: {node: '>= 10'} cpu: [x64] os: [darwin] - '@tailwindcss/oxide-freebsd-x64@4.1.8': - resolution: {integrity: sha512-g8C8eGEyhHTqwPStSwZNSrOlyx0bhK/V/+zX0Y+n7DoRUzyS8eMbVshVOLJTDDC+Qn9IJnilYbIKzpB9n4aBsg==} + '@tailwindcss/oxide-freebsd-x64@4.1.10': + resolution: {integrity: sha512-8/392Xu12R0cc93DpiJvNpJ4wYVSiciUlkiOHOSOQNH3adq9Gi/dtySK7dVQjXIOzlpSHjeCL89RUUI8/GTI6g==} engines: {node: '>= 10'} cpu: [x64] os: [freebsd] - '@tailwindcss/oxide-linux-arm-gnueabihf@4.1.8': - resolution: {integrity: sha512-Jmzr3FA4S2tHhaC6yCjac3rGf7hG9R6Gf2z9i9JFcuyy0u79HfQsh/thifbYTF2ic82KJovKKkIB6Z9TdNhCXQ==} + '@tailwindcss/oxide-linux-arm-gnueabihf@4.1.10': + resolution: {integrity: sha512-t9rhmLT6EqeuPT+MXhWhlRYIMSfh5LZ6kBrC4FS6/+M1yXwfCtp24UumgCWOAJVyjQwG+lYva6wWZxrfvB+NhQ==} engines: {node: '>= 10'} cpu: [arm] os: [linux] - '@tailwindcss/oxide-linux-arm64-gnu@4.1.8': - resolution: {integrity: sha512-qq7jXtO1+UEtCmCeBBIRDrPFIVI4ilEQ97qgBGdwXAARrUqSn/L9fUrkb1XP/mvVtoVeR2bt/0L77xx53bPZ/Q==} + '@tailwindcss/oxide-linux-arm64-gnu@4.1.10': + resolution: {integrity: sha512-3oWrlNlxLRxXejQ8zImzrVLuZ/9Z2SeKoLhtCu0hpo38hTO2iL86eFOu4sVR8cZc6n3z7eRXXqtHJECa6mFOvA==} engines: {node: '>= 10'} cpu: [arm64] os: [linux] - '@tailwindcss/oxide-linux-arm64-musl@4.1.8': - resolution: {integrity: sha512-O6b8QesPbJCRshsNApsOIpzKt3ztG35gfX9tEf4arD7mwNinsoCKxkj8TgEE0YRjmjtO3r9FlJnT/ENd9EVefQ==} + '@tailwindcss/oxide-linux-arm64-musl@4.1.10': + resolution: {integrity: sha512-saScU0cmWvg/Ez4gUmQWr9pvY9Kssxt+Xenfx1LG7LmqjcrvBnw4r9VjkFcqmbBb7GCBwYNcZi9X3/oMda9sqQ==} engines: {node: '>= 10'} cpu: [arm64] os: [linux] - '@tailwindcss/oxide-linux-x64-gnu@4.1.8': - resolution: {integrity: sha512-32iEXX/pXwikshNOGnERAFwFSfiltmijMIAbUhnNyjFr3tmWmMJWQKU2vNcFX0DACSXJ3ZWcSkzNbaKTdngH6g==} + '@tailwindcss/oxide-linux-x64-gnu@4.1.10': + resolution: {integrity: sha512-/G3ao/ybV9YEEgAXeEg28dyH6gs1QG8tvdN9c2MNZdUXYBaIY/Gx0N6RlJzfLy/7Nkdok4kaxKPHKJUlAaoTdA==} engines: {node: '>= 10'} cpu: [x64] os: [linux] - '@tailwindcss/oxide-linux-x64-musl@4.1.8': - resolution: {integrity: sha512-s+VSSD+TfZeMEsCaFaHTaY5YNj3Dri8rST09gMvYQKwPphacRG7wbuQ5ZJMIJXN/puxPcg/nU+ucvWguPpvBDg==} + '@tailwindcss/oxide-linux-x64-musl@4.1.10': + resolution: {integrity: sha512-LNr7X8fTiKGRtQGOerSayc2pWJp/9ptRYAa4G+U+cjw9kJZvkopav1AQc5HHD+U364f71tZv6XamaHKgrIoVzA==} engines: {node: '>= 10'} cpu: [x64] os: [linux] - '@tailwindcss/oxide-wasm32-wasi@4.1.8': - resolution: {integrity: sha512-CXBPVFkpDjM67sS1psWohZ6g/2/cd+cq56vPxK4JeawelxwK4YECgl9Y9TjkE2qfF+9/s1tHHJqrC4SS6cVvSg==} + '@tailwindcss/oxide-wasm32-wasi@4.1.10': + resolution: {integrity: sha512-d6ekQpopFQJAcIK2i7ZzWOYGZ+A6NzzvQ3ozBvWFdeyqfOZdYHU66g5yr+/HC4ipP1ZgWsqa80+ISNILk+ae/Q==} engines: {node: '>=14.0.0'} cpu: [wasm32] bundledDependencies: @@ -1390,24 +1456,24 @@ packages: - '@emnapi/wasi-threads' - tslib - '@tailwindcss/oxide-win32-arm64-msvc@4.1.8': - resolution: {integrity: sha512-7GmYk1n28teDHUjPlIx4Z6Z4hHEgvP5ZW2QS9ygnDAdI/myh3HTHjDqtSqgu1BpRoI4OiLx+fThAyA1JePoENA==} + '@tailwindcss/oxide-win32-arm64-msvc@4.1.10': + resolution: {integrity: sha512-i1Iwg9gRbwNVOCYmnigWCCgow8nDWSFmeTUU5nbNx3rqbe4p0kRbEqLwLJbYZKmSSp23g4N6rCDmm7OuPBXhDA==} engines: {node: '>= 10'} cpu: [arm64] os: [win32] - '@tailwindcss/oxide-win32-x64-msvc@4.1.8': - resolution: {integrity: sha512-fou+U20j+Jl0EHwK92spoWISON2OBnCazIc038Xj2TdweYV33ZRkS9nwqiUi2d/Wba5xg5UoHfvynnb/UB49cQ==} + '@tailwindcss/oxide-win32-x64-msvc@4.1.10': + resolution: {integrity: sha512-sGiJTjcBSfGq2DVRtaSljq5ZgZS2SDHSIfhOylkBvHVjwOsodBhnb3HdmiKkVuUGKD0I7G63abMOVaskj1KpOA==} engines: {node: '>= 10'} cpu: [x64] os: [win32] - '@tailwindcss/oxide@4.1.8': - resolution: {integrity: sha512-d7qvv9PsM5N3VNKhwVUhpK6r4h9wtLkJ6lz9ZY9aeZgrUWk1Z8VPyqyDT9MZlem7GTGseRQHkeB1j3tC7W1P+A==} + '@tailwindcss/oxide@4.1.10': + resolution: {integrity: sha512-v0C43s7Pjw+B9w21htrQwuFObSkio2aV/qPx/mhrRldbqxbWJK6KizM+q7BF1/1CmuLqZqX3CeYF7s7P9fbA8Q==} engines: {node: '>= 10'} - '@tailwindcss/postcss@4.1.8': - resolution: {integrity: sha512-vB/vlf7rIky+w94aWMw34bWW1ka6g6C3xIOdICKX2GC0VcLtL6fhlLiafF0DVIwa9V6EHz8kbWMkS2s2QvvNlw==} + '@tailwindcss/postcss@4.1.10': + resolution: {integrity: sha512-B+7r7ABZbkXJwpvt2VMnS6ujcDoR2OOcFaqrLIo1xbcdxje4Vf+VgJdBzNNbrAjBj/rLZ66/tlQ1knIGNLKOBQ==} '@tanstack/react-virtual@3.13.9': resolution: {integrity: sha512-SPWC8kwG/dWBf7Py7cfheAPOxuvIv4fFQ54PdmYbg7CpXfsKxkucak43Q0qKsxVthhUJQ1A7CIMAIplq4BjVwA==} @@ -1426,8 +1492,8 @@ packages: '@theguild/remark-npm2yarn@0.3.3': resolution: {integrity: sha512-ma6DvR03gdbvwqfKx1omqhg9May/VYGdMHvTzB4VuxkyS7KzfZ/lzrj43hmcsggpMje0x7SADA/pcMph0ejRnA==} - '@tybys/wasm-util@0.9.0': - resolution: {integrity: sha512-6+7nlbMVX/PVDCwaIQ8nTOPveOcFLSt8GcXdx8hD0bt39uWxYT88uXzqTd4fTvqta7oeUJqudepapKNt2DYJFw==} + '@types/conventional-commits-parser@5.0.1': + resolution: {integrity: sha512-7uz5EHdzz2TqoMfV7ee61Egf5y6NkcO4FB/1iCCQnbeiI1F3xzv3vK5dBCXUCLQgGYS+mUeigK1iKQzvED+QnQ==} '@types/d3-array@3.2.1': resolution: {integrity: sha512-Y2Jn2idRrLzUfAKV2LyRImR+y4oa2AntrgID95SHJxuMUrkNXmanDSed71sRNZysveJVt1hLLemQZIady0FpEg==} @@ -1567,16 +1633,16 @@ packages: '@types/node@22.15.24': resolution: {integrity: sha512-w9CZGm9RDjzTh/D+hFwlBJ3ziUaVw7oufKA3vOFSOZlzmW9AkZnfjPb+DLnrV6qtgL/LNmP0/2zBNCFHL3F0ng==} - '@types/react-dom@19.1.5': - resolution: {integrity: sha512-CMCjrWucUBZvohgZxkjd6S9h0nZxXjzus6yDfUb+xLxYM7VvjKNH1tQrE9GWLql1XoOP4/Ds3bwFqShHUYraGg==} + '@types/react-dom@19.1.6': + resolution: {integrity: sha512-4hOiT/dwO8Ko0gV1m/TJZYk3y0KBnY9vzDh7W+DH17b2HFSOGgdj33dhihPeuy3l0q23+4e+hoXHV6hCC4dCXw==} peerDependencies: '@types/react': ^19.0.0 '@types/react-redux@7.1.34': resolution: {integrity: sha512-GdFaVjEbYv4Fthm2ZLvj1VSCedV7TqE5y1kNwnjSdBOTXuRSgowux6J8TAct15T3CKBr63UMk+2CO7ilRhyrAQ==} - '@types/react@19.1.6': - resolution: {integrity: sha512-JeG0rEWak0N6Itr6QUx+X60uQmN+5t3j9r/OVDtWzFXKaj6kD1BwJzOksD0FF6iWxZlbE1kB0q9vtnU2ekqa1Q==} + '@types/react@19.1.8': + resolution: {integrity: sha512-AwAfQ2Wa5bCx9WP8nZL2uMZWod7J7/JSplxbTmBQ5ms6QpqNYm672H0Vu9ZVKVngQ+ii4R/byguVEUZQyeg44g==} '@types/trusted-types@2.0.7': resolution: {integrity: sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw==} @@ -1587,16 +1653,16 @@ packages: '@types/unist@3.0.3': resolution: {integrity: sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==} - '@typescript-eslint/eslint-plugin@8.33.0': - resolution: {integrity: sha512-CACyQuqSHt7ma3Ns601xykeBK/rDeZa3w6IS6UtMQbixO5DWy+8TilKkviGDH6jtWCo8FGRKEK5cLLkPvEammQ==} + '@typescript-eslint/eslint-plugin@8.34.0': + resolution: {integrity: sha512-QXwAlHlbcAwNlEEMKQS2RCgJsgXrTJdjXT08xEgbPFa2yYQgVjBymxP5DrfrE7X7iodSzd9qBUHUycdyVJTW1w==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: - '@typescript-eslint/parser': ^8.33.0 + '@typescript-eslint/parser': ^8.34.0 eslint: ^8.57.0 || ^9.0.0 typescript: '>=4.8.4 <5.9.0' - '@typescript-eslint/parser@8.33.0': - resolution: {integrity: sha512-JaehZvf6m0yqYp34+RVnihBAChkqeH+tqqhS0GuX1qgPpwLvmTPheKEs6OeCK6hVJgXZHJ2vbjnC9j119auStQ==} + '@typescript-eslint/parser@8.34.0': + resolution: {integrity: sha512-vxXJV1hVFx3IXz/oy2sICsJukaBrtDEQSBiV48/YIV5KWjX1dO+bcIr/kCPrW6weKXvsaGKFNlwH0v2eYdRRbA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: ^8.57.0 || ^9.0.0 @@ -1606,18 +1672,34 @@ packages: resolution: {integrity: sha512-d1hz0u9l6N+u/gcrk6s6gYdl7/+pp8yHheRTqP6X5hVDKALEaTn8WfGiit7G511yueBEL3OpOEpD+3/MBdoN+A==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + '@typescript-eslint/project-service@8.34.0': + resolution: {integrity: sha512-iEgDALRf970/B2YExmtPMPF54NenZUf4xpL3wsCRx/lgjz6ul/l13R81ozP/ZNuXfnLCS+oPmG7JIxfdNYKELw==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + typescript: '>=4.8.4 <5.9.0' + '@typescript-eslint/scope-manager@8.33.0': resolution: {integrity: sha512-LMi/oqrzpqxyO72ltP+dBSP6V0xiUb4saY7WLtxSfiNEBI8m321LLVFU9/QDJxjDQG9/tjSqKz/E3380TEqSTw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + '@typescript-eslint/scope-manager@8.34.0': + resolution: {integrity: sha512-9Ac0X8WiLykl0aj1oYQNcLZjHgBojT6cW68yAgZ19letYu+Hxd0rE0veI1XznSSst1X5lwnxhPbVdwjDRIomRw==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + '@typescript-eslint/tsconfig-utils@8.33.0': resolution: {integrity: sha512-sTkETlbqhEoiFmGr1gsdq5HyVbSOF0145SYDJ/EQmXHtKViCaGvnyLqWFFHtEXoS0J1yU8Wyou2UGmgW88fEug==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: typescript: '>=4.8.4 <5.9.0' - '@typescript-eslint/type-utils@8.33.0': - resolution: {integrity: sha512-lScnHNCBqL1QayuSrWeqAL5GmqNdVUQAAMTaCwdYEdWfIrSrOGzyLGRCHXcCixa5NK6i5l0AfSO2oBSjCjf4XQ==} + '@typescript-eslint/tsconfig-utils@8.34.0': + resolution: {integrity: sha512-+W9VYHKFIzA5cBeooqQxqNriAP0QeQ7xTiDuIOr71hzgffm3EL2hxwWBIIj4GuofIbKxGNarpKqIq6Q6YrShOA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + typescript: '>=4.8.4 <5.9.0' + + '@typescript-eslint/type-utils@8.34.0': + resolution: {integrity: sha512-n7zSmOcUVhcRYC75W2pnPpbO1iwhJY3NLoHEtbJwJSNlVAZuwqu05zY3f3s2SDWWDSo9FdN5szqc73DCtDObAg==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: ^8.57.0 || ^9.0.0 @@ -1627,12 +1709,22 @@ packages: resolution: {integrity: sha512-DKuXOKpM5IDT1FA2g9x9x1Ug81YuKrzf4mYX8FAVSNu5Wo/LELHWQyM1pQaDkI42bX15PWl0vNPt1uGiIFUOpg==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + '@typescript-eslint/types@8.34.0': + resolution: {integrity: sha512-9V24k/paICYPniajHfJ4cuAWETnt7Ssy+R0Rbcqo5sSFr3QEZ/8TSoUi9XeXVBGXCaLtwTOKSLGcInCAvyZeMA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + '@typescript-eslint/typescript-estree@8.33.0': resolution: {integrity: sha512-vegY4FQoB6jL97Tu/lWRsAiUUp8qJTqzAmENH2k59SJhw0Th1oszb9Idq/FyyONLuNqT1OADJPXfyUNOR8SzAQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: typescript: '>=4.8.4 <5.9.0' + '@typescript-eslint/typescript-estree@8.34.0': + resolution: {integrity: sha512-rOi4KZxI7E0+BMqG7emPSK1bB4RICCpF7QD3KCLXn9ZvWoESsOMlHyZPAHyG04ujVplPaHbmEvs34m+wjgtVtg==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + typescript: '>=4.8.4 <5.9.0' + '@typescript-eslint/utils@8.33.0': resolution: {integrity: sha512-lPFuQaLA9aSNa7D5u2EpRiqdAUhzShwGg/nhpBlc4GR6kcTABttCuyjFs8BcEZ8VWrjCBof/bePhP3Q3fS+Yrw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} @@ -1640,10 +1732,21 @@ packages: eslint: ^8.57.0 || ^9.0.0 typescript: '>=4.8.4 <5.9.0' + '@typescript-eslint/utils@8.34.0': + resolution: {integrity: sha512-8L4tWatGchV9A1cKbjaavS6mwYwp39jql8xUmIIKJdm+qiaeHy5KMKlBrf30akXAWBzn2SqKsNOtSENWUwg7XQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + eslint: ^8.57.0 || ^9.0.0 + typescript: '>=4.8.4 <5.9.0' + '@typescript-eslint/visitor-keys@8.33.0': resolution: {integrity: sha512-7RW7CMYoskiz5OOGAWjJFxgb7c5UNjTG292gYhWeOAcFmYCtVCSqjqSBj5zMhxbXo2JOW95YYrUWJfU0zrpaGQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + '@typescript-eslint/visitor-keys@8.34.0': + resolution: {integrity: sha512-qHV7pW7E85A0x6qyrFn+O+q1k1p3tQCsqIZ1KZ5ESLXY57aTvUd3/a4rdPTeXisvhXn2VQG0VSKUqs8KHF2zcA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + '@typescript/vfs@1.6.1': resolution: {integrity: sha512-JwoxboBh7Oz1v38tPbkrZ62ZXNHAk9bJ7c9x0eI5zBfBnBYGhURdbnh7Z4smN/MV48Y5OCcZb58n972UtbazsA==} peerDependencies: @@ -1652,195 +1755,195 @@ packages: '@ungap/structured-clone@1.3.0': resolution: {integrity: sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==} - '@univerjs-pro/collaboration-client-ui@0.8.0': - resolution: {integrity: sha512-yxOWTKPE6TDA2HiDNRI8K0g+oAlmLbEkcgRjtx/TEyhPXts+RryRtACAXWkVCTl4/+yNSo2KJcIWmbOwyHRmyg==} + '@univerjs-pro/collaboration-client-ui@0.8.1': + resolution: {integrity: sha512-TLEnPksuxhOpoYgUBDX7pAFI3GBYG8vDmvFm5SrL51XuJhBmXFxT82YHJiJnpV3VFgPnJ7pewvkXoaSBtOFBTQ==} peerDependencies: react: ^16.9.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc rxjs: '>=7.0.0' - '@univerjs-pro/collaboration-client@0.8.0': - resolution: {integrity: sha512-IUr12GDSo9Grti2vxl71D2m8MGGTradTrQMYujN/15v3dSIt0W+pHVrC19DmTKCu0cKzsdZ8r70aIFJ2LRPUag==} + '@univerjs-pro/collaboration-client@0.8.1': + resolution: {integrity: sha512-6I9MiMUMpG3vtoKzbPm6rr/8hxiTuhM7BdfMciFgvRXOGlg8ekeMgDNK/MUZod4R0PmAwVYT7HNFAwVOamSMjg==} peerDependencies: rxjs: '>=7.0.0' - '@univerjs-pro/collaboration@0.8.0': - resolution: {integrity: sha512-i48d6elQ+ryzfnqpIlpLANnIZ+VU240UwLiCU010JMpCOfZcU5veGN/E7ggrc0yq2DzpK0uSJ3LPGQX155Ta6A==} + '@univerjs-pro/collaboration@0.8.1': + resolution: {integrity: sha512-9Ejb8nbwLwFMuThVwphPqGGpoYLdFlPbH67tV0bjdgg4saWDUkGW6+f+KxUkIxeVKs3qIglcQOqqeCDWqsi0HA==} - '@univerjs-pro/docs-exchange-client@0.8.0': - resolution: {integrity: sha512-Q5VNLs1HrmHEGzZyTkXfQLYGs22+maeAcbxEBmLHJI+X8Wvm4/Pu+3g955FLrIuzM8m140Z2qN74oL1DtGeAxA==} + '@univerjs-pro/docs-exchange-client@0.8.1': + resolution: {integrity: sha512-kwLxzms79CziEDijh9N8intldcqUfh4A+SoyRtCzkNQKfTbUGl39q7yuh0GdkBe7pEXLC261S5EaA8yFS10aPQ==} - '@univerjs-pro/docs-print@0.8.0': - resolution: {integrity: sha512-B4/xpUS34myWFX3uWZr48QzRLmeorqbGANBVkkppwRQf782aPdQFRGF//VIGIaRkrpqgGo5xIJGDqSS3p+SIOw==} + '@univerjs-pro/docs-print@0.8.1': + resolution: {integrity: sha512-x5N3ZN6csigcDYPGQx55jj/n5LAZsQAyJVkx7WYEFIaeF32FKwEa8bVb5T6X2oZVdN29eRVrYh03WCuF1soyYg==} peerDependencies: react: ^16.9.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc - '@univerjs-pro/edit-history-loader@0.8.0': - resolution: {integrity: sha512-ydqY99MzMv2WhJMAXZmalvy+fKe6xsU40UHHDcaCTIfSmanID7ndBM/mSz+6PmCqdgc+9ZaVs8eOq16rAQbs6w==} + '@univerjs-pro/edit-history-loader@0.8.1': + resolution: {integrity: sha512-mpR9cyrfyQZQClsWpaKw7I2P3OT74Byl21Lo7eHwHqmK4GepBV0Q8RuafllA5jTDqBputy6lP8tt3aWBvno/tQ==} peerDependencies: react: ^16.9.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc rxjs: '>=7.0.0' - '@univerjs-pro/edit-history-viewer@0.8.0': - resolution: {integrity: sha512-mhoa6VS2EZyM+rHDNVwIHBmRPqujaFU6WHd1WxQ4vACLjdcMG9KHEEUIaSlxcDjpSQuwn4BLerXLw9QmkseVOA==} + '@univerjs-pro/edit-history-viewer@0.8.1': + resolution: {integrity: sha512-LDJKvwCown0Im22CwhZIOQdQ/z/1Wf6ciGEdH6CaeLlq6wcrXmgbBFmOROs6o2MzsjYT7QEFFw5Wa1rPVjJf2Q==} peerDependencies: react: ^16.9.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc rxjs: '>=7.0.0' - '@univerjs-pro/engine-chart@0.8.0': - resolution: {integrity: sha512-wuvQtP7RiEG+q7ZqhPDdFXs/DB3lTkzTiad3P94F5l84MINX5cRidUZx53qu3aU8Uj1nJO4d56vGDi0XJ1gBmA==} + '@univerjs-pro/engine-chart@0.8.1': + resolution: {integrity: sha512-gttacIwiOb7IltCgrRbGDLIz6jDhu2xTJ0jwk0g2fEWg5OHkgkru2K9YHXdLnWhv2Jx0e8qp4zsewpAwZFDKyw==} peerDependencies: rxjs: '>=7.0.0' - '@univerjs-pro/engine-formula@0.8.0': - resolution: {integrity: sha512-7oS4qNccH6JpF94aGG6mO0TDCNzclAM+Q6S3w7h8BoNnkoCFCsx2/Pe5iNepvn6MaNwpfY2a8WmPfciR8RFlNg==} + '@univerjs-pro/engine-formula@0.8.1': + resolution: {integrity: sha512-4W3V4Vd7IBdfvYWFXExVD/Aafbfj2wnOTwzaaOS3rXB9Orm6YiMo76uIzIO2F4iDNgpDC0mH9fWL7KLK/t40bw==} peerDependencies: rxjs: '>=7.0.0' - '@univerjs-pro/engine-pivot@0.8.0': - resolution: {integrity: sha512-e3KIw00L4Fk6DHDs2FgmAmJwwzzC7giyKZlkQ+ShfSZ5S1zwQVneKCAP0WnwaCloH0j3RTcZ5aifMpVrGBC9Ew==} + '@univerjs-pro/engine-pivot@0.8.1': + resolution: {integrity: sha512-V9cDjGMnb3mI26lY440wmFb8oY/PMgTOC3egvrU5D1gqQiDSVhfVmkfV9/fQsIIZZiCekABuHDFTn4PcVG0MQw==} - '@univerjs-pro/exchange-client@0.8.0': - resolution: {integrity: sha512-95ws/RGFJNDlfxvYPj+FFHFBZwrrfxuACxP2BAUT+xg9blHOW7XBledvsPYl7+KfCTvCFHKWOFTREQA1/KNiSw==} + '@univerjs-pro/exchange-client@0.8.1': + resolution: {integrity: sha512-eo9X9IywkRN3nLHnaJTJoXgYojof1V1cBofYq79sqKgelieGYMw2jd9yEZINpAtFEWaqUUeX0M2i0ujuPn43kQ==} peerDependencies: react: ^16.9.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc rxjs: '>=7.0.0' - '@univerjs-pro/license@0.8.0': - resolution: {integrity: sha512-PyZw6f4ghbgq3GWZkfXo+GLr81l6TQ6HM+iPCq3MbQaoZ9lBpagTcqJ94Pn/LgiNz5DOnPkWu3Pd2dJoWlbf9w==} + '@univerjs-pro/license@0.8.1': + resolution: {integrity: sha512-jq+YCKJw/VxBpxdLn08VVSjfitQ/LbzLKblzc6/eMWls4vvPYDKskBHaV7VyjfGTgDfeaesqkWmk/JUJw+S0tQ==} peerDependencies: rxjs: '>=7.0.0' - '@univerjs-pro/print@0.8.0': - resolution: {integrity: sha512-4LkZVG43wc8pbGUEhpOINxGfqCsMxVobnuswDq7QoYpWAWBK/RcXah+AxnJ0FMNeu7ZEVHv87XoXGb/kyoE2eQ==} + '@univerjs-pro/print@0.8.1': + resolution: {integrity: sha512-tjnT2Zs/2XqMY5aWFzoz/4ggU5GuwMToAB41XT4/LvjqWTc2Z4TBM2ii/fPgV3PPHRA78JkuchbjmaI3aHp48Q==} - '@univerjs-pro/sheets-chart-ui@0.8.0': - resolution: {integrity: sha512-JaBi8akkL1gGf8sypnZ4mGdkw+gNiNsHd2NJFKEOCCH3DDbdbg7Nmf9zRDjl8uJrC9arPlvI01cyJVarFPCYFQ==} + '@univerjs-pro/sheets-chart-ui@0.8.1': + resolution: {integrity: sha512-dQ2YY8HPnLlxHcz72Pt/advvY840b0ylbWQJ6GHxdkdY8iI2JP4/8dH7jLpB6kvr3pHeld54IYC8nDTNqmUjMA==} peerDependencies: react: ^16.9.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc rxjs: '>=7.0.0' - '@univerjs-pro/sheets-chart@0.8.0': - resolution: {integrity: sha512-sZtDXNv+ud8lN1dOB90/y4JQbkwdICXbOcJp+0B+Cnbz7z5p7QG+vfC6gL8mttSbqrCkGYdKc8QvilcJMDWMOQ==} + '@univerjs-pro/sheets-chart@0.8.1': + resolution: {integrity: sha512-CckQRoSoH8dtOpwJWe8ymBe03kXe4IiFKLHwqJRS32LYjfI3mIIiFgf29jNYf1xDeRZKQ1638Cah3hQEXI0SNQ==} peerDependencies: rxjs: '>=7.0.0' - '@univerjs-pro/sheets-exchange-client@0.8.0': - resolution: {integrity: sha512-iLuo5ARkZtu90aBOLFRn377pVJfij0ZhVEjIK2ZOT3fuLKsqtdTMBQDsercJs2VokFcDYYiG3YF+2x3rSIxAtQ==} + '@univerjs-pro/sheets-exchange-client@0.8.1': + resolution: {integrity: sha512-tSA8Edr9tVsN/TX4RlhrDLXlFnX7tP9YWH3wn6A1mMJrFwXMtc/fZZyqSXRGdhePs/DehSBB5BYyIbaSRXeguQ==} - '@univerjs-pro/sheets-pivot-ui@0.8.0': - resolution: {integrity: sha512-j5VlL2H3FVXcN+pWn/NToIHr+u1eH1UXNZuy4h7w2QN7NETDM/gqqjYh1qQB8yx0ZVXp+vjSq4y/Ay65D7U2dg==} + '@univerjs-pro/sheets-pivot-ui@0.8.1': + resolution: {integrity: sha512-5GNsUL2TJn/VJbY9UsA0wcEPktLc/L9i2c+AtWvqcBB+x+G3jX+A0tB+Br1KDn4S6CZlBEhNsGu1f57JeksdRw==} peerDependencies: react: ^16.9.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc react-dom: ^16.9.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc rxjs: '>=7.0.0' - '@univerjs-pro/sheets-pivot@0.8.0': - resolution: {integrity: sha512-eXxblX/602B2mNFwKXfuy+FkkCL8zmr+YURI5BQD8Rv37bLgk+mxudfhNRGmpYtqwr/TK8Ke5Q5IWZxiw68g1w==} + '@univerjs-pro/sheets-pivot@0.8.1': + resolution: {integrity: sha512-npGXzYcPH53N7qTszf2s6H6xMTDZfmVv70+/Sqgf0o3n5moEPF2EzCFlOZh/Ql7j4Q1QR33ZYkKwZzGVo1qpcg==} peerDependencies: rxjs: '>=7.0.0' - '@univerjs-pro/sheets-print@0.8.0': - resolution: {integrity: sha512-ZKvGqUj66A47BV0w/3+gV6uqJmn2DHpfAubDSPy139MKbYdQC0gp/rlmPhnPSDfD0ZSRVOWI8lemVQPSrz2Cmg==} + '@univerjs-pro/sheets-print@0.8.1': + resolution: {integrity: sha512-Skrvfbh6Ndln+6juT+2AMSrGNOvYYBaTIOjlwLCUl+FkBXozqoHmjr2vJ1Sn95W6s8V9dHhSBkq3v/g158Vzzg==} peerDependencies: react: ^16.9.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc rxjs: '>=7.0.0' - '@univerjs-pro/sheets-sparkline-ui@0.8.0': - resolution: {integrity: sha512-SjoX6rxRRdCRNPUjeTKj6SjndZoJ1k6nGbDspevooywllTWN5ptZdyMSfukD2lVyPy+62nPzb8uBXQtChOH+6g==} + '@univerjs-pro/sheets-sparkline-ui@0.8.1': + resolution: {integrity: sha512-FxSa5OpbJrvCIh0f5sNThX/2wJLrg7jWjPnRIySpi3AX+fMhOFywLgHVSo1qDbZMpQ28+Z7tpONMCmNJgmC7lQ==} engines: {node: '>=16.0.0', npm: '>=8.0.0'} peerDependencies: react: ^16.9.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc rxjs: '>=7.0.0' - '@univerjs-pro/sheets-sparkline@0.8.0': - resolution: {integrity: sha512-tIKxMVDSTytScDi/ERWup5h+en/p4ZGa4UK1020uKuc8GayvT9hGz49FwhkZLMg/pGH/4TeG3ELhRF+sQBzqtA==} + '@univerjs-pro/sheets-sparkline@0.8.1': + resolution: {integrity: sha512-zMkzjmH9LL/Dx2vIYrrjPL5GI5WlZ7j0doYR22/ms2RqoeUQcpwFXxg83+5V80/JzUwvgIp7+yz+Bei/cS4/ig==} engines: {node: '>=16.0.0', npm: '>=8.0.0'} peerDependencies: rxjs: '>=7.0.0' - '@univerjs-pro/thread-comment-datasource@0.8.0': - resolution: {integrity: sha512-XjXs6fr42UmueziMeL66YTCbO5B7oOLevl1yUn5dRmFbj90tIZMa21kMwBRLtnA8xO7ibZFJ5NKplxZe6eeuQQ==} + '@univerjs-pro/thread-comment-datasource@0.8.1': + resolution: {integrity: sha512-3HucOufxg6UHn6WE/Ss+JHAjhQQEHSuuYF6WmyfdRoAiNfQd+VObmzWlN+XJm2zmbahzE8Re9MxK0DRxQdL9Vg==} peerDependencies: rxjs: '>=7.0.0' - '@univerjs/core@0.8.0': - resolution: {integrity: sha512-7UVXWVZGpsMqmg3wS+LVa/8O6N9dZF71l9em4fgppFQL0gQROSZf8A4jB9n4WRaHwVSrcLVF8hZ26yxAdKLI1w==} + '@univerjs/core@0.8.1': + resolution: {integrity: sha512-DcN7ExXCz0CesxY7X+8j/hfDCjZLIKRXjfUOMGste5Xv+tc+4VDXli1rsQBWC7FFRmfHBP0qRxdKlQDHs3GSgQ==} peerDependencies: - '@wendellhu/redi': 0.18.0 + '@wendellhu/redi': 0.18.3 rxjs: '>=7.0.0' - '@univerjs/data-validation@0.8.0': - resolution: {integrity: sha512-Dt6UMHDGlq4tF58JQs6fpbq5kuDxbWwR+mM9tBa8tQO/x6ajhoEATQA3J38DAq6mg5DUKPNWZIJ/V5jskIqYMQ==} + '@univerjs/data-validation@0.8.1': + resolution: {integrity: sha512-dAu1zWBIH7DD9B+pAplt2ksR4YQqoYFPQ5T9Yw+K6KYCluouFrYqOP3daxuWMva1V/BMGMn8ZJG8Dj8I6TELAg==} peerDependencies: rxjs: '>=7.0.0' - '@univerjs/design@0.8.0': - resolution: {integrity: sha512-bjL9KvOKulPBbMbQQPaJ/YZHiDa3MC9n5GvdO2mpJ34T7KDl9eOetdmuHfL8bBkKEflc8L9k/EcNhn36qG98Iw==} + '@univerjs/design@0.8.1': + resolution: {integrity: sha512-RXzYG91DYi69ED/i00mitvsGTbOS8q9kiUBNqUlmKgw4YeXdpv4ISdT4kNqN0T5MPlrWwARDntYBEzam35KHiw==} peerDependencies: react: ^16.9.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc react-dom: ^16.9.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc - '@univerjs/docs-drawing-ui@0.8.0': - resolution: {integrity: sha512-9cahiONfNosLkbEdMnsiVMVtWHxlJxPHOIyKppwjRCSMFxCfaEWb/tbVGOYlV/t0aOArKiVMtwvdvYPjkqyaLg==} + '@univerjs/docs-drawing-ui@0.8.1': + resolution: {integrity: sha512-r/x4W69/Ae5ogwi5Px6Xk+fRigkrjXSoVkEKzP/blYo3ocagpU3oZjUj6RMf+aP2mDKNHHXQQ1+9ARtaGMrxag==} peerDependencies: react: ^16.9.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc rxjs: '>=7.0.0' - '@univerjs/docs-drawing@0.8.0': - resolution: {integrity: sha512-Jsy7rxcGtIo6GKv9CVwAYwPhDAan4XVHPSAS47Pb8s8X6eku7mHqfLMbpZFUauBb2R76KKyO1W3hwQ/3F81EzA==} + '@univerjs/docs-drawing@0.8.1': + resolution: {integrity: sha512-aoD5oEUxcNUKTRxLVQGKv2RkgIpqdRMmBZCIJrkOMX9n/92/56NBq8KuiJM7Q+MHI/uLMRKygfBtWjJmA+i1tQ==} - '@univerjs/docs-hyper-link-ui@0.8.0': - resolution: {integrity: sha512-J8/NxON7KCICWhWDkKNB2PsLtYQ30KQe/2CUcCx8DVOriTj8FDuclTE5qa1zlZ2rtQJuEuOzRhP60wIlHvCIkw==} + '@univerjs/docs-hyper-link-ui@0.8.1': + resolution: {integrity: sha512-qF229VjhT9LTDnB2t/pverie0b0hGiej3L/JAFqIGaQWxrV732q6PBvcjTERUARlKHme/Rp1Q+fP6hKK5N8Q+A==} peerDependencies: react: ^16.9.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc rxjs: '>=7.0.0' - '@univerjs/docs-hyper-link@0.8.0': - resolution: {integrity: sha512-9rpIdaoO5855RQX1GAuHpHBCZGmp0d8VuMbj2uUnnl9LTcd9oiJTZza3sTQw3FERx6iecSdPKXVKyLhQZWvsAw==} + '@univerjs/docs-hyper-link@0.8.1': + resolution: {integrity: sha512-omyOHS/h9tJLtd6ec8BvsOA61kj0HR2uQukrAMtlUEI9ezxLT3pfn9//wMx6D77uWxToWdOXju9dgB6JdV/RMQ==} - '@univerjs/docs-thread-comment-ui@0.8.0': - resolution: {integrity: sha512-RCfAY3L8W+nBp+9wRWT46Dv4jqCFvY5nu9CA8flNVU1LX0rISeKzmjL7OHtIrKN/YCaokMKGFHIWi5C89Sd1Dg==} + '@univerjs/docs-thread-comment-ui@0.8.1': + resolution: {integrity: sha512-Q0WSgPMu2woRWPZC4d0AFjs01Op263yk1SQVJED77ueX5bqEugkkj7YnVR/1FX1kzfTMYvHQNCTdkJms41Oc1Q==} peerDependencies: react: ^16.9.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc rxjs: '>=7.0.0' - '@univerjs/docs-ui@0.8.0': - resolution: {integrity: sha512-Bpv7xxxvaTmverjOtM4QZCD+E37z/7XzjIF/7rqnwyYgjSAKAyA/k08Kv4cjrOw51wQi0/9qrRVrU40N6VUnmA==} + '@univerjs/docs-ui@0.8.1': + resolution: {integrity: sha512-kKanvAerZ+/B0VutWPSs59P3V+ZPFtZl7XLGhi7MEQ95O00hnlJ+pTHLVL4VLNolx0EWA1uhEVTZ7m9WxJbaUg==} peerDependencies: react: ^16.9.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc rxjs: '>=7.0.0' - '@univerjs/docs@0.8.0': - resolution: {integrity: sha512-KBNt9h9kNb/O3GoN5Z+bVMUfW6uwxctkHe/m5qd3KgTGmS5IlRCep6ch+ag5QTVUSDv8Yss57SdnfpegfMiGyQ==} + '@univerjs/docs@0.8.1': + resolution: {integrity: sha512-1V03EWOO66RvGx/LUfbDI7CCOovvaLSXeh9weWFL+knF7uyco+9KOt2sGTK8dTpcpw43kJVYw8vMftnToyH8lA==} peerDependencies: rxjs: '>=7.0.0' - '@univerjs/drawing-ui@0.8.0': - resolution: {integrity: sha512-WgO/NZ4/wuQNhbgpO1yN0vWHDsEvutaTRyl267/33C13npb2tkudrMTJf33YVPN+t6v1luNBzqiITvhfznA/4Q==} + '@univerjs/drawing-ui@0.8.1': + resolution: {integrity: sha512-5K+cyKOtFiXpRn9VeHc2GJRl8p+ecbTI6/RuI5OGBCsEmdZdeVUIVfb/pChB4g2Rvq57FmzQtyOj+a3bmWuGKg==} peerDependencies: react: ^16.9.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc rxjs: '>=7.0.0' - '@univerjs/drawing@0.8.0': - resolution: {integrity: sha512-jjIxnxVm3MWusGPU3MBCmZueENVTnFuBEuTaUw7VTZzFombsXvZa9wmsorUxZ28aRdIwezv3Lw+Jhg+Dqti12g==} + '@univerjs/drawing@0.8.1': + resolution: {integrity: sha512-HnQhSO0OWSISP7WPpH8YHTWKkwlraGppgjUTcEi50UptHO1ONZ0smkzT5j366AUhGKdwYiigTThPzcaFrg6twA==} peerDependencies: rxjs: '>=7.0.0' - '@univerjs/engine-formula@0.8.0': - resolution: {integrity: sha512-8WTOyjeZ37B7GHPdq76pj9Qp9DiKF/WOaR/KIiWlIVx8anX5OrJALuPd3IcirKzdS66DnNj5b9kC7Rd92h+Bdw==} + '@univerjs/engine-formula@0.8.1': + resolution: {integrity: sha512-koDHlJoVsal3gqzaIJGVBQajfOc0a3Q7OmJuURe/cS/VXT+eajTM74xstDCtrD1tt+XIaNiyPkeRfaJ+NS+qmA==} peerDependencies: rxjs: '>=7.0.0' - '@univerjs/engine-numfmt@0.8.0': - resolution: {integrity: sha512-x/sog+0TlZqEELLPXfWretk3QN55J5MPikp16b1SdnIpoldoORb3tXOIm+PRk4z478NnQSvSqikKipIUoF6sPg==} + '@univerjs/engine-numfmt@0.8.1': + resolution: {integrity: sha512-Rj9otCXibwvjhOwimG7q+/my/Z4p1weVRFPyAygflyB1SFJdp+WjC2fCeFz+gAlA4HxGHdcOpV0eYtvyWCpVjQ==} - '@univerjs/engine-render@0.8.0': - resolution: {integrity: sha512-9WrrSdVvLvrckmmGknWUsg4qr+SpHWLJaX2VYC2BQbVUJRKojS9JlWPXvOjDZdtXZVLzwiQWa9UxK5LOoURJrQ==} + '@univerjs/engine-render@0.8.1': + resolution: {integrity: sha512-EV0sBX9TOVCAFpfg2QHYnLzGtvQRKgs1AtemKGOuAmT5ol4is4l32z0D54AdAk8W3WmJwpJe5aurlGd6bPCelw==} peerDependencies: rxjs: '>=7.0.0' - '@univerjs/find-replace@0.8.0': - resolution: {integrity: sha512-ohpap+GfSSo+RIWV1vmRu1nwU2Qqh9vkzVinQS8KX3+t/pbZdl15Kx64zwIg6brLUN8pX29wmXGg0YnbSqxwCg==} + '@univerjs/find-replace@0.8.1': + resolution: {integrity: sha512-Anyp6qwOpvOydzdnaixcFMYxgca4ow75kq2UX2a+0YWQo9aqqbqLqzwfpIm1Aqi/U6Duk2LOePM6XeyOXJiWzA==} peerDependencies: react: ^16.9.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc rxjs: '>=7.0.0' @@ -1851,151 +1954,151 @@ packages: react: '*' react-dom: '*' - '@univerjs/network@0.8.0': - resolution: {integrity: sha512-xulCrNkVqaZjIQq//ZSsIfhzw0yvFTC2CeyjIgeqPWSvFStOszkxiJWCGvuam+QuEEeikSo8vI1hQA2hC8vKng==} + '@univerjs/network@0.8.1': + resolution: {integrity: sha512-CkSPoRSOb/vdiuoi+HdyXQdKo876vwvZ0igiHfEkNMUI4nNJm5EwOu2bEtZlrSu1NQtmoYaInstrcRoVjW247Q==} peerDependencies: rxjs: '>=7.0.0' - '@univerjs/preset-docs-advanced@0.8.0': - resolution: {integrity: sha512-QycE3PhjY9akRTZ9Jmrn1e17N6uipVXDvZw96nhyaU2TvQW6lACZEHfaYtQ7b+QufzMCfoWgzOH/3oL4SRe34A==} + '@univerjs/preset-docs-advanced@0.8.1': + resolution: {integrity: sha512-vekSHITmZIfVKpvD1kUpLj5GGDmK1kZiNgwLobXuryL2zK59qkRDly28EjC0KR7BuG9nm9GISISX0+JmmN+ung==} peerDependencies: react: ^16.9.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc react-dom: ^16.9.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc rxjs: '>=7.0.0' - '@univerjs/preset-docs-collaboration@0.8.0': - resolution: {integrity: sha512-GFJyAlrjX0kqTyAO5/+grNSeTs/8poCm5Rotd7k2xuPIY5R4I/qs8xx242oHNFdFvwtu7xJYiWr4XzMu5hCEkg==} + '@univerjs/preset-docs-collaboration@0.8.1': + resolution: {integrity: sha512-T2fhPuMyAqeu23tz8Xgg70whMNrdW25mnaEnH9YMBIKGC+FuRyujApHr01tT//euitjnwpL7wQ32rvh90Y6/+g==} peerDependencies: react: ^16.9.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc react-dom: ^16.9.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc rxjs: '>=7.0.0' - '@univerjs/preset-docs-core@0.8.0': - resolution: {integrity: sha512-JgCSWYg1aCNGcglykcZT3hcshW+K4ckOJVykDKTus0i6Nl/AdP2F+D+t5ubzo4Pq5qTgH7SOPGhpqgRt5BaXQg==} + '@univerjs/preset-docs-core@0.8.1': + resolution: {integrity: sha512-pNnJr/i9J0SMHrlmtY+Ht1812pFy1KhHV5UATtixQGQoAJx8yK90/aswbZiMeyXhR6Ygb9AnhflbaQoFt4tD2g==} peerDependencies: react: ^16.9.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc react-dom: ^16.9.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc rxjs: '>=7.0.0' - '@univerjs/preset-docs-drawing@0.8.0': - resolution: {integrity: sha512-YP+++G22rdymcM3yuGflnCb90QD8jU6dDGOK713YVIalvLjfkobWS0srjDoQ3K59VYBgvdOi582ANHEJw8FwEg==} + '@univerjs/preset-docs-drawing@0.8.1': + resolution: {integrity: sha512-jau0WsKzqgpTmX39LVEW8DxwVGCIg4iSxvTb7ug/xEVSeWVOuzAa60AcFkwPbKte3qT4VX9KqWzIQ8s5DFfXIA==} peerDependencies: react: ^16.9.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc react-dom: ^16.9.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc rxjs: '>=7.0.0' - '@univerjs/preset-docs-hyper-link@0.8.0': - resolution: {integrity: sha512-CK05RA1Eh985yYMhJEhmaDyaML8KuDF3AnZ5M+0go4wZS8p0V1w5jlKjzFdir6DOHoNbUEVOd4/XUZMMx3Ma5g==} + '@univerjs/preset-docs-hyper-link@0.8.1': + resolution: {integrity: sha512-O1ij4xmbCIqe/iUM3CRRFmdqvgqR8M0GUvqmDvbVZGrF3IuJjMMGlGs4bPyxBDj0KdHmJ7Pki/7ZEz1ouu70AQ==} peerDependencies: react: ^16.9.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc react-dom: ^16.9.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc rxjs: '>=7.0.0' - '@univerjs/preset-docs-thread-comment@0.8.0': - resolution: {integrity: sha512-/WQ0E7EGmYw/EsNRA++qGPCRwd9vfdxkDf3uy7VN9zL3IfsWp2NLbNwmAwfoDJrWTCd9Y+oIAeckUF1jYuB3ww==} + '@univerjs/preset-docs-thread-comment@0.8.1': + resolution: {integrity: sha512-4DnlDtXAtH4J7PWkwxMzK8qoOAlkrMao8iPQaTrdM41zB0WPAFLIjYXSlJwIpl9CNqreAUe2s/kasgLWsLWmNQ==} peerDependencies: react: ^16.9.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc react-dom: ^16.9.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc rxjs: '>=7.0.0' - '@univerjs/preset-sheets-advanced@0.8.0': - resolution: {integrity: sha512-1sDFv25d2qX+r59BLm2gpuhKthTYjtlDuvSx/tyX8CJnPIdZuwdWJzsgkwGAhKMFkNlgWO1eggpeRbBrfM5Gpw==} + '@univerjs/preset-sheets-advanced@0.8.1': + resolution: {integrity: sha512-L8li6Z07ztCZO2OgTYf94JeZaOQ8vzqcsZVqj8Lok8LP67m3100tH39ga1vkQfieFtueRLh/qupL/ioHcpHjuQ==} peerDependencies: react: ^16.9.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc react-dom: ^16.9.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc rxjs: '>=7.0.0' - '@univerjs/preset-sheets-collaboration@0.8.0': - resolution: {integrity: sha512-JNTOi4qfT9Y/nE+U8TPKu+zLsiPkrKDESvvS7gQPC2jnu8emWCkrDoutarBYifsliLbNFa6iDb+LT9tjPltYBQ==} + '@univerjs/preset-sheets-collaboration@0.8.1': + resolution: {integrity: sha512-8NiGYYUajgrQQRBWytLz4swAVtzDr08wRkR2Zx+JlPUpuz5ScADYPoSaVpTNAGYHQ3ywnk993rnDUdJIaDcodg==} peerDependencies: react: ^16.9.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc react-dom: ^16.9.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc rxjs: '>=7.0.0' - '@univerjs/preset-sheets-conditional-formatting@0.8.0': - resolution: {integrity: sha512-kHE4iGcZ4d8iZe2XnwRUcbI1R9qrU3FE1QNZx6TA69eJWc7vhgQ1LviRBnOneAyJ7P1m+hiE4YpMxSAWMY57gw==} + '@univerjs/preset-sheets-conditional-formatting@0.8.1': + resolution: {integrity: sha512-TJogbQk61O0cykCYAvIiaZgKE9XpqPInEZEHa169x7X9FdGYszo2jwz9y/40zbATzwn++Po1JAEgxrU4LCS8NQ==} peerDependencies: react: ^16.9.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc react-dom: ^16.9.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc rxjs: '>=7.0.0' - '@univerjs/preset-sheets-core@0.8.0': - resolution: {integrity: sha512-BWZmOImQ8ZbwNsSdkypuI3OjVKCtjTnavVW5WQPjg0VOrphsavhuiFqRZKY3g3qso7B/HSvH0S890cwortlJ9w==} + '@univerjs/preset-sheets-core@0.8.1': + resolution: {integrity: sha512-3fo/vF65KDG98oNl0B2XOYhrelN+fOUgj8QzCurTvXV6Rl84Rge4hzSYy5MQUqmX+Qhsby3d/uAVpXbjLXNDNA==} peerDependencies: react: ^16.9.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc react-dom: ^16.9.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc rxjs: '>=7.0.0' - '@univerjs/preset-sheets-data-validation@0.8.0': - resolution: {integrity: sha512-VMIvyG/cJfhnVAzf2s6uIqWXC/yLrDw6IBjBbGmvYXEPshBOsxltSp+4WPk53Uj1EkhQ5E+JuljC5VMvIUms3A==} + '@univerjs/preset-sheets-data-validation@0.8.1': + resolution: {integrity: sha512-IEPnJwTIj9Uhq8nRxkI7o9hkPjNJC+LfqwSePz+YN6bR/npgdWIS4rWcxeVnzwT0SCQMr/va2+tL0R0AP32BEQ==} peerDependencies: react: ^16.9.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc react-dom: ^16.9.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc rxjs: '>=7.0.0' - '@univerjs/preset-sheets-drawing@0.8.0': - resolution: {integrity: sha512-w45Nyqe9g2hC8uyOrB+8hCRZoJdb0bFoGg+H+sX5oRQlUEGw6WXBcze0Bl4ERtcEVY34Xk4ZmNOUWEgaBR1Abg==} + '@univerjs/preset-sheets-drawing@0.8.1': + resolution: {integrity: sha512-1ysGN+R/yXSoOQ9XB21GwUDezjmpWRP0egFYvNZETsJubLNRXitv3hT7bSr1nMcLkTiFzbSq5NarQi7ucGFMHg==} peerDependencies: react: ^16.9.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc react-dom: ^16.9.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc rxjs: '>=7.0.0' - '@univerjs/preset-sheets-filter@0.8.0': - resolution: {integrity: sha512-WD7D8otMi/XzgU8H7NwDCmYtCWT68+qQmy3P1Uj8eRIG7OrB/PcTengRVdcyUU2ip7NVHFdg5Bp01ah/mXAnPA==} + '@univerjs/preset-sheets-filter@0.8.1': + resolution: {integrity: sha512-zfkb2mFQQCEBT/K/G0v8Wyym7zG947ZQ0WJBWZxmT9ktmnJjGvPtNHVEl6lvonZEamGCJn4WvjZjsxN9lHu4qA==} peerDependencies: react: ^16.9.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc react-dom: ^16.9.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc rxjs: '>=7.0.0' - '@univerjs/preset-sheets-find-replace@0.8.0': - resolution: {integrity: sha512-aUJhitG9x51Q9COJenLvRzBZsmZxInfuKeP5VrDDZysidJDKtPexJ+lJpklesOoqDHnPtO9quNRq5xrmbuylQw==} + '@univerjs/preset-sheets-find-replace@0.8.1': + resolution: {integrity: sha512-WVq2DeUBifmNN7wW3uUgl+2q5NJkQGUD07NpIA2qhWBS32OJQompQ7AzC8/N8NFVzwPh7P/qyA+muET/QJAjmw==} peerDependencies: react: ^16.9.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc react-dom: ^16.9.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc rxjs: '>=7.0.0' - '@univerjs/preset-sheets-hyper-link@0.8.0': - resolution: {integrity: sha512-7jy7/oyoktjyjNBZFb8HJxEqhxdzSqhmqrGqIWhhD17uWhoTKTlPXRQZiqZDy+Kt5hSM69fc4Q6pg31+a/Z2fw==} + '@univerjs/preset-sheets-hyper-link@0.8.1': + resolution: {integrity: sha512-/Z5Pq/nEav6lE0RZL3wULqBKECpaugdWomHYxkjeNLnMlqU8ucS12QzaPRSfCYpmxC1Sq8puxtLcvL49cHM7qQ==} peerDependencies: react: ^16.9.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc react-dom: ^16.9.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc rxjs: '>=7.0.0' - '@univerjs/preset-sheets-node-core@0.8.0': - resolution: {integrity: sha512-Anvz2p9TCPnjp+XkRtmOq87aoCorV+nozlZFXAyCpSS1OSPXtRlH8k19UemdYQlYH8sbHDTLUYHyFSYD2NwWGw==} + '@univerjs/preset-sheets-node-core@0.8.1': + resolution: {integrity: sha512-kBtwMhqVhQ2fTld+TMNv+xAcmkKCjjhLlGW4aGImCioI4N/dwGJyD8gKI/l1Jxtn6GMdfoIl7M+29aWjNUlYaw==} peerDependencies: rxjs: '>=7.0.0' - '@univerjs/preset-sheets-note@0.8.0': - resolution: {integrity: sha512-84chtziGCkmWz25STBkl7gmAjxsnwOcaxCU65vBbLfH5DNm+I63IVtjNZRprXQ2Q74RcTEFheOkAfSgeKEpfOg==} + '@univerjs/preset-sheets-note@0.8.1': + resolution: {integrity: sha512-8/CkhT5nINvlb5k8lS9NKFFEdmilADQN8YgJJtdQ0gbw80k1v63NCN0VwB0fRpMmRHM3fk756hry3DoRSQBKKQ==} peerDependencies: react: ^16.9.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc react-dom: ^16.9.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc rxjs: '>=7.0.0' - '@univerjs/preset-sheets-sort@0.8.0': - resolution: {integrity: sha512-GNiIy8bqysQDTteUQlAkbUodYetHzSpbi+uU2xEXrBRac5hYe1KFrv5SGTKryAYgdZ8NHKL9hJXrR1dCMQPGCg==} + '@univerjs/preset-sheets-sort@0.8.1': + resolution: {integrity: sha512-1wDNfcTbcYD63H3snkFKzAh9j0yzSa/wqAZ0tQmKKCXddIiDsDu/DTSJFI9Rk/AusgbpDT8wjcGSP4v3jPLkUw==} peerDependencies: react: ^16.9.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc react-dom: ^16.9.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc rxjs: '>=7.0.0' - '@univerjs/preset-sheets-table@0.8.0': - resolution: {integrity: sha512-f35XJc0Baun0B3EKWsxcpmuRxdh/JEs8TQWsB91qTLFpVbkJZP4S75EMgl8WJojHWYKjS+QQTnm/e7bpwlXS9A==} + '@univerjs/preset-sheets-table@0.8.1': + resolution: {integrity: sha512-KdVEnHNXPmNyJf9FtZYsNfaY4ulsw1xmtiGW4FScieZ7/8i90e4Yehb6yKrKND88z3zrj2O+LmQXoXKHlRS3fQ==} peerDependencies: react: ^16.9.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc react-dom: ^16.9.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc rxjs: '>=7.0.0' - '@univerjs/preset-sheets-thread-comment@0.8.0': - resolution: {integrity: sha512-OV0QqIEj6cUB7gKwY0I+cbpID4XLtnvmbtW5jHAHL2/+UxvUCKXMukzSTuJ0IBMwVrs2jgm013KIY7e4rR1i/w==} + '@univerjs/preset-sheets-thread-comment@0.8.1': + resolution: {integrity: sha512-kgve68xxb/OktOZ7eqNajY+s2MCkxkGIYHFxNUV9u+4EI+bdX2LloKdeeiS3aRFDRe3kRE8nAZ4hHa4XYJf1hQ==} peerDependencies: react: ^16.9.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc react-dom: ^16.9.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc rxjs: '>=7.0.0' - '@univerjs/presets@0.8.0': - resolution: {integrity: sha512-4aqhZpBZUEbRA9GVxuf491ONNRwxajn9Sf4CMUd9H+INiJhJjsKULEBW2w1LnJ5QmM7Zu4BVYMZaFfEpAxEtDA==} + '@univerjs/presets@0.8.1': + resolution: {integrity: sha512-mg0iKysBv4kvsC+c2PbkWEEh4/wKgAILuTty+/BsDadwiDP+p7m8XCR80jSYjPrUAC1R/u1fxG9tPMU4Beybpg==} peerDependencies: react: ^16.9.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc react-dom: ^16.9.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc @@ -2015,279 +2118,194 @@ packages: '@grpc/grpc-js': '>=1' rxjs: '>=7.8' - '@univerjs/rpc-node@0.8.0': - resolution: {integrity: sha512-Q0RA2Z3dHNct7iSfzo4MaYFRAi531ALLdGa4dcsICcV9WDxCdY05cI0E+OW91SmkSD/SYx/bwbB6SDUaC7a5xw==} + '@univerjs/rpc-node@0.8.1': + resolution: {integrity: sha512-IqEYAR9OVIk3wR6nMDw0598gZGFicOScdedyJ6HUuTA0LiQH0kGB4ywmfrL9upy9TMFBmzMt3sdIJw8/4z1/kA==} peerDependencies: rxjs: '>=7.0.0' - '@univerjs/rpc@0.8.0': - resolution: {integrity: sha512-0AaJzHurJukXPpoPF+m6PNDpOoge0qHiScaLWRyWkmNfCvNbcPZXLAqIbLqyjhg8W1NDc/YYPJhRWiWgGcaMYg==} + '@univerjs/rpc@0.8.1': + resolution: {integrity: sha512-VdfR4/DGi4h7vfPi1Uy3mnJRid086J1RatLV20P5emRjb+Rk5u2oSJcYFUyTD1SbXd8lFbV5G9cSi/UPlq+z1w==} peerDependencies: rxjs: '>=7.0.0' - '@univerjs/sheets-conditional-formatting-ui@0.8.0': - resolution: {integrity: sha512-A/cF+ram/xUZHW3d9UDkW/xkQ+q5C0ITYZcw1wthcCFI0FyxsgrwGBiNgg5j1UJ1CyoLFV5HC83JOKr+t1r4vA==} + '@univerjs/sheets-conditional-formatting-ui@0.8.1': + resolution: {integrity: sha512-5xgAXi1kDesLyo733NKWR2sJtWpwuGvOr5yXGbUqb8H6ts5uRlHJPRq2BSWYW392Gihl2GErxjP+vMYFa9RSTw==} peerDependencies: react: ^16.9.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc rxjs: '>=7.0.0' - '@univerjs/sheets-conditional-formatting@0.8.0': - resolution: {integrity: sha512-rBrzyXNajF2/ppYUNUe9IgUqf6cxm452R3cJ79+hysFhoB/yAWcGU7FtjKxiMmgea3ty9OnkG0ffeSrDcSfb6w==} + '@univerjs/sheets-conditional-formatting@0.8.1': + resolution: {integrity: sha512-hIgzmGXnNQGlZB51MSXvQolEtJwyDRIMVUp4D6vzcOoxQaH08FaKHPLtwC3JvaA7Ck/ZlWZx41uTcWsD11TJ+Q==} peerDependencies: rxjs: '>=7.0.0' - '@univerjs/sheets-crosshair-highlight@0.8.0': - resolution: {integrity: sha512-lLcIt45xOfMfOiR6/Pe6TE3GAkbcaNewvvysrESai8gqsRorLF86FDGsCstlAPtj1zSNJkswNqQ/5D7TADBIhQ==} + '@univerjs/sheets-crosshair-highlight@0.8.1': + resolution: {integrity: sha512-3hMhR7dRTNKipe3g3nyzRf3/FHk07l5zJ/u35z+g9wlLiAfnFk5CEN8oHt6SSWBj6P2iO8DHZL8j6oyciNZiPw==} peerDependencies: react: ^16.9.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc rxjs: '>=7.0.0' - '@univerjs/sheets-data-validation-ui@0.8.0': - resolution: {integrity: sha512-ARtE9vbxQiFeklWTg+Ja5Q6Dp5UATloCP9q4J2WwFmKFj8ncTON/yDRZBykwUJS3kS4jqNtyrwtF6eQKXIwr7A==} + '@univerjs/sheets-data-validation-ui@0.8.1': + resolution: {integrity: sha512-rek4yaL1/c9Gf4/b16m86Y0YLQ12z+HlvDZ4AgOUGG4TV/OFfRdOYjF/XUMebu/tpD8QnIn6kntuDADrHF5TAQ==} peerDependencies: react: ^16.9.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc rxjs: '>=7.0.0' - '@univerjs/sheets-data-validation@0.8.0': - resolution: {integrity: sha512-pk7sgW9DaQkU7xk3arie/lLJbKrafPaA/ia0K4/OOHqV68NfveYFhE0G2U1cL5bQT1miZLJVIZ5s9xuuD5bj3g==} + '@univerjs/sheets-data-validation@0.8.1': + resolution: {integrity: sha512-29cgwqheN6nfB/jCG3Q80C++LtMEcIaAUhq4pd1kFCo5uUITrqvCaeduIBb9SolFz6muA5hZmmzLbBvUTL0vRw==} peerDependencies: rxjs: '>=7.0.0' - '@univerjs/sheets-drawing-ui@0.8.0': - resolution: {integrity: sha512-62FpTJ96WXpCBDaslfm5Kt6Lkg+iybQaLBGS7WrHuzlWKkVwAb6YlZ3xewOHoJQo21o4qPpZMM0tuV6cFtsGNA==} + '@univerjs/sheets-drawing-ui@0.8.1': + resolution: {integrity: sha512-an7Um7sr0BW0o70NZvTIzofvTclXXhkX+P2QLaekE6f/wZSFhMeIOpyRm/Sj3DHBEcazWE2LbpMGUOS7eg0i2g==} peerDependencies: react: ^16.9.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc rxjs: '>=7.0.0' - '@univerjs/sheets-drawing@0.8.0': - resolution: {integrity: sha512-yT6Lb/J8oSemc/l2rKtmJrf3yFvAKRX6+b04eh/qywRYZzjXjAfKebl35S01uAHeq6T+4fWuJngTtj42pIjepg==} + '@univerjs/sheets-drawing@0.8.1': + resolution: {integrity: sha512-HcyKrZFjzwQ7OL5bJr1t0+fsA7XxsJSYzfn14mvApTNNcVddtZuu0Heo/AVYXW7K+gRRAMYDCwUGMi1r7dolmw==} - '@univerjs/sheets-filter-ui@0.8.0': - resolution: {integrity: sha512-w6C3AtJBs4sEvqBPA4pry9gXAIzx5Hifvwy1JBkrxZGSt4IB9aptGT1VCrAhrpNh/K0fJnFy4xX7pK0HKPK6Kw==} + '@univerjs/sheets-filter-ui@0.8.1': + resolution: {integrity: sha512-ZuffmU9nOfNfGuNv1FI0oh7Plpb2mZZ4XbnHElb5qdiV/z7AUI7uxPv0CGQCNgBSyFe+ndwWgrcZ7DJsHkyfcA==} peerDependencies: react: ^16.9.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc rxjs: '>=7.0.0' - '@univerjs/sheets-filter@0.8.0': - resolution: {integrity: sha512-F5pYVZHtHSWTWlUyUFFxvH2kND70DUQx4eMKdOJQUVUAJCputBIzcz1dck5GdkkQQOxmihiDgLDhEEMQUmniTQ==} + '@univerjs/sheets-filter@0.8.1': + resolution: {integrity: sha512-h0Kik9eINiQKAfkN2Bxa8i+6wnevVnmGInICmCIiLX2RMw7QYCLLggMHZzetwxtA5aTghlk8TAkPDTqW36E3Fg==} peerDependencies: rxjs: '>=7.0.0' - '@univerjs/sheets-find-replace@0.8.0': - resolution: {integrity: sha512-yuZgcRRLqXT3URDEK5p0YuO5OEqqh8IQA46EcmjlDuFXw5SMJXQFNylEh1mRBPoD5407D9lvdd6hdU7PGmF0Gw==} + '@univerjs/sheets-find-replace@0.8.1': + resolution: {integrity: sha512-6NK+H7HbOsxWlqmNIbMmCOKI9BT8QWtoTNYTftwAXU9yNRRXRkVjyVWk2htBlrQK3jwLS76t7S+1XNaYTbSQ7w==} peerDependencies: rxjs: '>=7.0.0' - '@univerjs/sheets-formula-ui@0.8.0': - resolution: {integrity: sha512-RzsXA+UnqYrCgwJ+I+2S83s5c90JFlOlwZO4Oq0iIgwBcC4xWNMg/wqpwfWGRFy1wleVmAnj+ZhLLbo39NuEPA==} + '@univerjs/sheets-formula-ui@0.8.1': + resolution: {integrity: sha512-5xkhHVBZ3OA0AV8tJB0JUNeQwVjqY32JaE+dFUXjO0ftke6iN7cqlgdHe/EQBRkNhiQKKo2s4PM/qqCfHIjBQA==} peerDependencies: react: ^16.9.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc rxjs: '>=7.0.0' - '@univerjs/sheets-formula@0.8.0': - resolution: {integrity: sha512-YPNgyjO1ukNgGRrZhm1w+LIXD/LqhZXyH2Nb48UY9OWvON+BCzo1TWIjmV3WpzaqkPl8LbktOlUSpDG5Rt0/Lg==} + '@univerjs/sheets-formula@0.8.1': + resolution: {integrity: sha512-uvamnE7dipbwRoKvSRWyf8iz2SNJx9GOU6eyAaV/faNBkPMfkEMLNyp1W1XJDKQQ1skGjk2KwTfL16WIXsMsIQ==} peerDependencies: rxjs: '>=7.0.0' - '@univerjs/sheets-graphics@0.8.0': - resolution: {integrity: sha512-gxHhYtBSRPWMuzNEV6UE5X+PyU0oG/fEQQXphDtCZ4+PHoiXDa/PAzKcwcWLwK9ElCTlomCU49lq/UZxv9wVsg==} + '@univerjs/sheets-graphics@0.8.1': + resolution: {integrity: sha512-jb5pSHf/c92h/xwwF9fv7s9GXTE4vmS4qnis/J6DhnShYzv6pS8Bd28kcxaZbR2PPhhgvmGxKaa7IyIoAJy9AQ==} - '@univerjs/sheets-hyper-link-ui@0.8.0': - resolution: {integrity: sha512-qC+qYXNDo4fLuR+khAJe5x8V4Vk3fnm408FzfbQySAjqstH+A6nBDpqEOZHjCATXl8DnXikLc63SL7zNKySEKQ==} + '@univerjs/sheets-hyper-link-ui@0.8.1': + resolution: {integrity: sha512-F3DcnS15FB0QQDrkK1yZQL9hV1QapC3qY9bmUaTDWKClCdZRm6mukBb3sYwL75/0rl8espCy1XPgZMo2KMcvKA==} peerDependencies: react: ^16.9.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc rxjs: '>=7.0.0' - '@univerjs/sheets-hyper-link@0.8.0': - resolution: {integrity: sha512-lf9aPdmUQH0+dIYGTXXUWQHxGmKZ02ZFseoziv1XDxdzQr981NxorGGrkUpN6ndpk372NFpV+zacIXp4Trd9/w==} + '@univerjs/sheets-hyper-link@0.8.1': + resolution: {integrity: sha512-CUgJZapiWqb58oo0oWaYVM/0ydlss4yQsNw+G4Uz+852ktLOQjGNsC+0X/p9snm/D12n0jTg4TjPFC1NMVxF7g==} peerDependencies: rxjs: '>=7.0.0' - '@univerjs/sheets-note-ui@0.8.0': - resolution: {integrity: sha512-NZ3ItW4ek0403E04MaLPuTRhyTILcgFkPHEPYHe8VUzXxpNXY96tEWMGZ6CrOigcA/F9j942c5SBoVffjXl6sg==} + '@univerjs/sheets-note-ui@0.8.1': + resolution: {integrity: sha512-KkfFm1piTdD/5vqs2eWc7hhfgfAGwQKdRwGwxJm+zIST+IhKP1aZrDtycEr998VFAWNM1enyPdJI4YgqdGFWXQ==} peerDependencies: react: ^16.9.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc rxjs: '>=7.0.0' - '@univerjs/sheets-note@0.8.0': - resolution: {integrity: sha512-kQacCTjjfFnI9TE411G7HXqVA44wPBywUgP5zDcwf1LrN2ElITT2rp4ystEIywU0CSIU2OFFlF4eauIOzOYWYg==} + '@univerjs/sheets-note@0.8.1': + resolution: {integrity: sha512-CeAeBlV4EwS2VcIiOg2N+F/cTLfh3rW/Lrm5hiIacnoaTvtJL2TO4oMvEu9xVmB7ESDC4ggn2Oo13No1sqqDEA==} peerDependencies: rxjs: '>=7.0.0' - '@univerjs/sheets-numfmt-ui@0.8.0': - resolution: {integrity: sha512-OjswvAvqgCE52thlHNRd3LOO1IW6+sg+vMmX+raR4dxg6ETaFjhGWrSusZ0BYWhM7DcFa3F4Xhoh0XLSnvOmRw==} + '@univerjs/sheets-numfmt-ui@0.8.1': + resolution: {integrity: sha512-jP6XB7lWPDtqW07EDdQ8Of/meqvV4kUApSwNiHAJMy8L2vfQ305uRjzEwGQe7CFvRJfa0T+BENU6a9KZ1HoE+A==} peerDependencies: react: ^16.9.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc rxjs: '>=7.0.0' - '@univerjs/sheets-numfmt@0.8.0': - resolution: {integrity: sha512-x/8BOzYsVF4WPa8V3OJb76r0IcMGWXFJJeoPuCBdKSkADzsI0MsyWyvgiAf3xc92Ut7ZbmCHIt5jMcBJ41CYyQ==} + '@univerjs/sheets-numfmt@0.8.1': + resolution: {integrity: sha512-BH5rNT3aq2CGN9iagPJS0O3uFC/aO9/pWDqap5nb6DzXlNFRVC7p1/zKUW4Lqgs1h5Xx5FjZjCCpcqZIyDnOxg==} peerDependencies: rxjs: '>=7.0.0' - '@univerjs/sheets-sort-ui@0.8.0': - resolution: {integrity: sha512-Pp5Pe0NeoQaOuda9Ot9mPnXfs61+yQB15JiRRXiwOqDu8RJe5tnTeVsdmZGEBGiNMsB3j28MdOME9pwCGN7Lkg==} + '@univerjs/sheets-sort-ui@0.8.1': + resolution: {integrity: sha512-6JdnPjuvdymDt2i30LoAieHv8ty3mLCvqiHES7szyCOCvT1sM8Mi6QHWY3kMiLpuieq4IYi0P0JVGnnmEqST7Q==} peerDependencies: react: ^16.9.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc rxjs: '>=7.0.0' - '@univerjs/sheets-sort@0.8.0': - resolution: {integrity: sha512-cJJcpllsPnBVQ8hmBssHInQIdBqmHj42YtR2riIOi+wljULbK0BrMOPDO/t77A7MAlMtfOQnvfNdBo949/BM5w==} + '@univerjs/sheets-sort@0.8.1': + resolution: {integrity: sha512-WuUJ3y8ctNpjz74dJtvhVHYPItvEUMbV1o0TFrRKrZsztu4A5t8acWenG4FmFO0MVp2g5mnNPpRwYNfekNmAsA==} - '@univerjs/sheets-table-ui@0.8.0': - resolution: {integrity: sha512-dM53cVXs2N0UPjoezEYu9N6CXAGYr8sScDiSfBcXiNDA/bazU122JpQ0uZAD/ZKHv4Hq2hsvuwQUkFyhwC58uA==} + '@univerjs/sheets-table-ui@0.8.1': + resolution: {integrity: sha512-Epj2weucczJUValGqb/h7TBd4SpmL7SS+OY/RDx0iIh1EA+uDtaLelvfYo7zQgItOp/+MXw85wTJMfLx2ewd/Q==} peerDependencies: react: ^16.9.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc rxjs: '>=7.0.0' - '@univerjs/sheets-table@0.8.0': - resolution: {integrity: sha512-S3N6YvVq9wAydPcch+iwpoSD7WwbSgzoJZO6N5JopZXyw13uMN/JknrEcJvEKdzsew/6Df7PMPAEK8avLRwIkQ==} + '@univerjs/sheets-table@0.8.1': + resolution: {integrity: sha512-7ZEkDmAkyNkJ54ONMvfouxrpE52/MJik65Mzul7xYTFTIjhnIPZnA4nEyfrMnqrUEUBUgGT6rDX77y2kQI4wmQ==} peerDependencies: rxjs: '>=7.0.0' - '@univerjs/sheets-thread-comment-ui@0.8.0': - resolution: {integrity: sha512-n1BADzMM2dQck26MIl1ArtoVjBvfyhfeTiSzNHYVOsFFaiVvZjuR+Zj5q09nOxdPxHFiROBy86/P5Ga7BD+yeg==} + '@univerjs/sheets-thread-comment-ui@0.8.1': + resolution: {integrity: sha512-bDdZhj9fZsGxPNFE4BIk6I7hiDV6UmdZ0pHOo15iQKm2O09ioNOo3yyzQO8sgdCVe0K9CHED1V/k/sD97PEJ1g==} peerDependencies: react: ^16.9.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc rxjs: '>=7.0.0' - '@univerjs/sheets-thread-comment@0.8.0': - resolution: {integrity: sha512-mTBPgBm0cMwPx9EtHfqrlFtGEHMIt2p7EQqJoonxhDn5bpSCuAx90COP1AF8SkBc22HIcFdYAsd635Y4+lbBnw==} + '@univerjs/sheets-thread-comment@0.8.1': + resolution: {integrity: sha512-N6duenu7Drna/JwbBH1eaRgRgSJaXgMlbXT74i6BRAGGD8pUBZaQSXrGuilbD4zb5tZHNCYuWw9RpoUpl7t/2A==} peerDependencies: rxjs: '>=7.0.0' - '@univerjs/sheets-ui@0.8.0': - resolution: {integrity: sha512-b+uqHQAVgws+E0WH67MlQhE9CGAbJg3GrryeFmj2QUicSwssMzWG2Yv4LwWaSkYgM8/QmEdwVnIgYm9LkiWTmQ==} + '@univerjs/sheets-ui@0.8.1': + resolution: {integrity: sha512-QlHM+oblGQUckhTiZ9WCK6XFXokSd/XXVWj3OEKU3nGI/83IhlMoZLDqbA5FffKtrCnE6Gdm23C2R88BH2pZVA==} peerDependencies: react: ^16.9.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc rxjs: '>=7.0.0' - '@univerjs/sheets@0.8.0': - resolution: {integrity: sha512-GLpZ1YZOQYWmGr7LxaMwfaZWtT4//U+JOxaqDqUG0bajEYJbq9bgLQD69H0oVz/y82hYmAJYLuUzaqw0fU8KiQ==} + '@univerjs/sheets@0.8.1': + resolution: {integrity: sha512-2qi9zLXu8ohgXslT48bkrp1QCv8H48pg6a5ScnUNCp7DRysR5ziy4ub7VMRUtz/wShf2M0RxILJB/QfHyw1CpA==} peerDependencies: rxjs: '>=7.0.0' - '@univerjs/telemetry@0.8.0': - resolution: {integrity: sha512-mObrbuVpB6wQli9YFVEjbbnRm8SnGGD1VquzhFJmqdDBC7lh80v66YYkrkjS1zztV2tfnLUbcCnsmpL6dD/xSg==} + '@univerjs/telemetry@0.8.1': + resolution: {integrity: sha512-TXFF1B6gcLLXgM+BUm1BlPgyafSgzrQkyf9xPyxmuGuTDWmfxoQudxEA8bGu+D12Fj30Cqqq75rd/TZpNwIkgA==} - '@univerjs/themes@0.8.0': - resolution: {integrity: sha512-kv8iMEL36iU40VesDCdB1+pj1U28CK/z+ws+qjnuipyWeek0b29crlFcAodD9ZmrVUREQgxUwQOjOaTWiniZhQ==} + '@univerjs/themes@0.8.1': + resolution: {integrity: sha512-AwViA9Eu+yhRt8rMiewKsuPaPfFMwwpBxXFe0QOfmqk9PNyrVYA7NsZf2Mim8ZDQEuLIM3a2yxGtVjaGuIaIbw==} - '@univerjs/thread-comment-ui@0.8.0': - resolution: {integrity: sha512-ukmfsUqNYiwXJiQUdXWnpgGC7K2DMlonfCos0MRgk6coZUhu3oLYYIxUlOX8V8822GpvMsYC2BMyRA8KCvh33A==} + '@univerjs/thread-comment-ui@0.8.1': + resolution: {integrity: sha512-DQazlrlGodFt9ulyy6EmGsbvlb4sBzO2XaCbbNaiNBK/R38iwJtIxrLlGKr2rPGIQoC4JKocYK4XgdHhGzdnUQ==} peerDependencies: react: ^16.9.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc rxjs: '>=7.0.0' - '@univerjs/thread-comment@0.8.0': - resolution: {integrity: sha512-HCnEixL3ROkw6nG40jQ4alOEICILQpTqu7FUnrnIy8vWI46siO3oSnxY4pZfv7CNsKhS4BtXz/nXp8JFJnjYtA==} + '@univerjs/thread-comment@0.8.1': + resolution: {integrity: sha512-JZsgQwH2xnNONnPwXPifAeMWsMdQi/ZPb8c4sa2JjQkEiLQgVT6GZ/2cmJSdBt/pjsyiHTicJAp021FutPY/NQ==} peerDependencies: rxjs: '>=7.0.0' - '@univerjs/ui@0.8.0': - resolution: {integrity: sha512-TWqkl+bjwL93JnEciGtJFlpaxuvRujlAEAgw2a1lt8dvxt2wXlkxctuEL+SldxfWrbNr/j9x18IMlQmoL73lSg==} + '@univerjs/ui@0.8.1': + resolution: {integrity: sha512-P+ZUSR+AyTmpesY3bBf/HR+vDQqrIhcycRTIP7x5kF3pyJW3Q+DXaF9JvEyvLGywp9YD/SPZtM9P+xtKC7+t0Q==} peerDependencies: react: ^16.9.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc react-dom: ^16.9.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc rxjs: '>=7.0.0' - '@univerjs/uniscript@0.8.0': - resolution: {integrity: sha512-AwBBLGO9ialqOVh59NSNKxBmS3nrd0EmI5OBzIWg1u69I5JIzdeX2P1V6Bbnm4SIBTlGV5aRWpq1AFXvXExwXQ==} + '@univerjs/uniscript@0.8.1': + resolution: {integrity: sha512-39bvkrbFLAEVhu6BJbaOR6hwNLTp6WXdZsaJ2cL3idzzIsKIbGWHFBw7rcLA+WnYBJJliBWzsH2rDYUIqt+g4w==} peerDependencies: monaco-editor: '>=0.50.0' react: ^16.9.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc rxjs: '>=7.0.0' - '@univerjs/watermark@0.8.0': - resolution: {integrity: sha512-eR4Ju5wEjNuqpbiV6EzmzvHQWFIOBpa3pUp/KmYvHnifymVLHQi2jL7Zt6xrHIvRHbUQGJ2n8SO46tmnjVzDBA==} + '@univerjs/watermark@0.8.1': + resolution: {integrity: sha512-8QZEgOy856G56qYHB4hOJr4TJ9LeLHYPCNN5chNZ22pyLPhtl+kDAWOR9Oj2bNwI3EW4JAQ3JKCiP+TCIR0Piw==} peerDependencies: rxjs: '>=7.0.0' - '@unrs/resolver-binding-darwin-arm64@1.7.8': - resolution: {integrity: sha512-rsRK8T7yxraNRDmpFLZCWqpea6OlXPNRRCjWMx24O1V86KFol7u2gj9zJCv6zB1oJjtnzWceuqdnCgOipFcJPA==} - cpu: [arm64] - os: [darwin] - - '@unrs/resolver-binding-darwin-x64@1.7.8': - resolution: {integrity: sha512-16yEMWa+Olqkk8Kl6Bu0ltT5OgEedkSAsxcz1B3yEctrDYp3EMBu/5PPAGhWVGnwhtf3hNe3y15gfYBAjOv5tQ==} - cpu: [x64] - os: [darwin] - - '@unrs/resolver-binding-freebsd-x64@1.7.8': - resolution: {integrity: sha512-ST4uqF6FmdZQgv+Q73FU1uHzppeT4mhX3IIEmHlLObrv5Ep50olWRz0iQ4PWovadjHMTAmpuJAGaAuCZYb7UAQ==} - cpu: [x64] - os: [freebsd] - - '@unrs/resolver-binding-linux-arm-gnueabihf@1.7.8': - resolution: {integrity: sha512-Z/A/4Rm2VWku2g25C3tVb986fY6unx5jaaCFpx1pbAj0OKkyuJ5wcQLHvNbIcJ9qhiYwXfrkB7JNlxrAbg7YFg==} - cpu: [arm] - os: [linux] - - '@unrs/resolver-binding-linux-arm-musleabihf@1.7.8': - resolution: {integrity: sha512-HN0p7o38qKmDo3bZUiQa6gP7Qhf0sKgJZtRfSHi6JL2Gi4NaUVF0EO1sQ1RHbeQ4VvfjUGMh3QE5dxEh06BgQQ==} - cpu: [arm] - os: [linux] - - '@unrs/resolver-binding-linux-arm64-gnu@1.7.8': - resolution: {integrity: sha512-HsoVqDBt9G69AN0KWeDNJW+7i8KFlwxrbbnJffgTGpiZd6Jw+Q95sqkXp8y458KhKduKLmXfVZGnKBTNxAgPjw==} - cpu: [arm64] - os: [linux] - - '@unrs/resolver-binding-linux-arm64-musl@1.7.8': - resolution: {integrity: sha512-VfR2yTDUbUvn+e/Aw22CC9fQg9zdShHAfwWctNBdOk7w9CHWl2OtYlcMvjzMAns8QxoHQoqn3/CEnZ4Ts7hfrA==} - cpu: [arm64] - os: [linux] - - '@unrs/resolver-binding-linux-ppc64-gnu@1.7.8': - resolution: {integrity: sha512-xUauVQNz4uDgs4UJJiUAwMe3N0PA0wvtImh7V0IFu++UKZJhssXbKHBRR4ecUJpUHCX2bc4Wc8sGsB6P+7BANg==} - cpu: [ppc64] - os: [linux] - - '@unrs/resolver-binding-linux-riscv64-gnu@1.7.8': - resolution: {integrity: sha512-GqyIB+CuSHGhhc8ph5RrurtNetYJjb6SctSHafqmdGcRuGi6uyTMR8l18hMEhZFsXdFMc/MpInPLvmNV22xn+A==} - cpu: [riscv64] - os: [linux] - - '@unrs/resolver-binding-linux-riscv64-musl@1.7.8': - resolution: {integrity: sha512-eEU3rWIFRv60xaAbtsgwHNWRZGD7cqkpCvNtio/f1TjEE3HfKLzPNB24fA9X/8ZXQrGldE65b7UKK3PmO4eWIQ==} - cpu: [riscv64] - os: [linux] - - '@unrs/resolver-binding-linux-s390x-gnu@1.7.8': - resolution: {integrity: sha512-GVLI0f4I4TlLqEUoOFvTWedLsJEdvsD0+sxhdvQ5s+N+m2DSynTs8h9jxR0qQbKlpHWpc2Ortz3z48NHRT4l+w==} - cpu: [s390x] - os: [linux] - - '@unrs/resolver-binding-linux-x64-gnu@1.7.8': - resolution: {integrity: sha512-GX1pZ/4ncUreB0Rlp1l7bhKAZ8ZmvDIgXdeb5V2iK0eRRF332+6gRfR/r5LK88xfbtOpsmRHU6mQ4N8ZnwvGEA==} - cpu: [x64] - os: [linux] - - '@unrs/resolver-binding-linux-x64-musl@1.7.8': - resolution: {integrity: sha512-n1N84MnsvDupzVuYqJGj+2pb9s8BI1A5RgXHvtVFHedGZVBCFjDpQVRlmsFMt6xZiKwDPaqsM16O/1isCUGt7w==} - cpu: [x64] - os: [linux] - - '@unrs/resolver-binding-wasm32-wasi@1.7.8': - resolution: {integrity: sha512-x94WnaU5g+pCPDVedfnXzoG6lCOF2xFGebNwhtbJCWfceE94Zj8aysSxdxotlrZrxnz5D3ijtyFUYtpz04n39Q==} - engines: {node: '>=14.0.0'} - cpu: [wasm32] - - '@unrs/resolver-binding-win32-arm64-msvc@1.7.8': - resolution: {integrity: sha512-vst2u8EJZ5L6jhJ6iLis3w9rg16aYqRxQuBAMYQRVrPMI43693hLP7DuqyOBRKgsQXy9/jgh204k0ViHkqQgdg==} - cpu: [arm64] - os: [win32] - - '@unrs/resolver-binding-win32-ia32-msvc@1.7.8': - resolution: {integrity: sha512-yb3LZOLMFqnA+/ShlE1E5bpYPGDsA590VHHJPB+efnyowT776GJXBoh82em6O9WmYBUq57YblGTcMYAFBm72HA==} - cpu: [ia32] - os: [win32] - - '@unrs/resolver-binding-win32-x64-msvc@1.7.8': - resolution: {integrity: sha512-hHKFx+opG5BA3/owMXon8ypwSotBGTdblG6oda/iOu9+OEYnk0cxD2uIcGyGT8jCK578kV+xMrNxqbn8Zjlpgw==} - cpu: [x64] - os: [win32] - '@vitest/eslint-plugin@1.2.1': resolution: {integrity: sha512-JQr1jdVcrsoS7Sdzn83h9sq4DvREf9Q/onTZbJCqTVlv/76qb+TZrLv/9VhjnjSMHweQH5FdpMDeCR6aDe2fgw==} peerDependencies: @@ -2374,8 +2392,8 @@ packages: '@webassemblyjs/wast-printer@1.14.1': resolution: {integrity: sha512-kPSSXE6De1XOR820C90RIo2ogvZG+c3KiHzqUoO/F34Y2shGzesfqv7o57xrxovZJH/MetF5UjroJ/R/3isoiw==} - '@wendellhu/redi@0.18.0': - resolution: {integrity: sha512-xYpa1d2BPZ/NO9URpS1h+l310mKYaMUQbFMZ4YYguq6M0fLWGR7ZYclnQEE4zpfl8ys5wprx5wro06Sfqnkb/A==} + '@wendellhu/redi@0.18.3': + resolution: {integrity: sha512-0o57fGpzid62p4UsXv/vAWnkKW+vqkUjsjFDkFt68yZrIVCFPmcR2761YIfrzUqmUjkrySURd8Qu1CQ2NPDkBw==} '@xmldom/xmldom@0.9.8': resolution: {integrity: sha512-p96FSY54r+WJ50FIOsCOjyj/wavs8921hG5+kVMmZgKcvIKxMXHTrjNJvRgWa/zuX3B6t2lijLNFaOyuxUH+2A==} @@ -2387,6 +2405,10 @@ packages: '@xtuc/long@4.2.2': resolution: {integrity: sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==} + JSONStream@1.3.5: + resolution: {integrity: sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==} + hasBin: true + acorn-jsx@5.3.2: resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} peerDependencies: @@ -2463,6 +2485,9 @@ packages: resolution: {integrity: sha512-ik3ZgC9dY/lYVVM++OISsaYDeg1tb0VtP5uL3ouh1koGOaUMDPpbFIei4JkFimWUFPn90sbMNMXQAIVOlnYKJA==} engines: {node: '>=10'} + array-ify@1.0.0: + resolution: {integrity: sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng==} + array-iterate@2.0.1: resolution: {integrity: sha512-I1jXZMjAgCMmxT4qxXfPXa6SthSoE8h6gkSI9BGGNv8mP8G/v0blc+qFnZu6K42vTOiuME596QaLO0TP3Lk0xg==} @@ -2660,6 +2685,9 @@ packages: resolution: {integrity: sha512-buhp5kePrmda3vhc5B9t7pUQXAb2Tnd0qgpkIhPhkHXxJpiPJ11H0ZEU0oBpJ2QztSbzG/ZxMj/CHsYJqRHmyg==} engines: {node: '>= 12.0.0'} + compare-func@2.0.0: + resolution: {integrity: sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==} + compare-versions@6.1.1: resolution: {integrity: sha512-4hm4VPpIecmlg59CHXnRDnqGplJFrbLG4aFEl5vl6cK1u76ws3LLvX7ikFnTDl5vo39sjWD6AaDPYodJp/NNHg==} @@ -2675,6 +2703,19 @@ packages: confbox@0.2.2: resolution: {integrity: sha512-1NB+BKqhtNipMsov4xI/NnhCKp9XG9NamYp5PVm9klAT0fsrNPjaFICsCFhNhwZJKNh7zB/3q8qXz0E9oaMNtQ==} + conventional-changelog-angular@7.0.0: + resolution: {integrity: sha512-ROjNchA9LgfNMTTFSIWPzebCwOGFdgkEq45EnvvrmSLvCtAw0HSmrCs7/ty+wAeYUZyNay0YMUNYFTRL72PkBQ==} + engines: {node: '>=16'} + + conventional-changelog-conventionalcommits@7.0.2: + resolution: {integrity: sha512-NKXYmMR/Hr1DevQegFB4MwfM5Vv0m4UIxKZTTYuD98lpTknaZlSRrDOG4X7wIXpGkfsYxZTghUN+Qq+T0YQI7w==} + engines: {node: '>=16'} + + conventional-commits-parser@5.0.0: + resolution: {integrity: sha512-ZPMl0ZJbw74iS9LuX9YIAiW8pfM5p3yh2o/NbXHbkFuZzY5jvdi5jFycEOkmBW5H5I7nA+D6f3UcsCLP2vvSEA==} + engines: {node: '>=16'} + hasBin: true + core-js-compat@3.42.0: resolution: {integrity: sha512-bQasjMfyDGyaeWKBIu33lHh9qlSR0MFE/Nmc6nMjf/iU9b3rSMdAYz1Baxrv4lPdGUsTqZudHA4jIGSJy0SWZQ==} @@ -2684,6 +2725,23 @@ packages: cose-base@2.2.0: resolution: {integrity: sha512-AzlgcsCbUMymkADOJtQm3wO9S3ltPfYOFD5033keQn9NJzIbtnZj+UdBJe7DYml/8TdbtHJW3j58SOnKhWY/5g==} + cosmiconfig-typescript-loader@6.1.0: + resolution: {integrity: sha512-tJ1w35ZRUiM5FeTzT7DtYWAFFv37ZLqSRkGi2oeCK1gPhvaWjkAtfXvLmvE1pRfxxp9aQo6ba/Pvg1dKj05D4g==} + engines: {node: '>=v18'} + peerDependencies: + '@types/node': '*' + cosmiconfig: '>=9' + typescript: '>=5' + + cosmiconfig@9.0.0: + resolution: {integrity: sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==} + engines: {node: '>=14'} + peerDependencies: + typescript: '>=4.9.5' + peerDependenciesMeta: + typescript: + optional: true + cross-spawn@7.0.6: resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==} engines: {node: '>= 8'} @@ -2858,17 +2916,13 @@ packages: dagre-d3-es@7.0.11: resolution: {integrity: sha512-tvlJLyQf834SylNKax8Wkzco/1ias1OPw8DcUMDE7oUIoSEW25riQVuiu/0OWEFqT0cxHT3Pa9/D82Jr47IONw==} + dargs@8.1.0: + resolution: {integrity: sha512-wAV9QHOsNbwnWdNW2FYvE1P56wtgSbM+3SZcdGiWQILwVjACCXDCI3Ai8QlCjMDB8YK5zySiXZYBiwGmNY3lnw==} + engines: {node: '>=12'} + dayjs@1.11.13: resolution: {integrity: sha512-oaMBel6gjolK862uaPQOVTA7q3TZhuSvuMQAAglQDOWYO9A91IrAOUJEyKVlqJlHE0vq5p5UXxzdPfMH/x6xNg==} - debug@3.2.7: - resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==} - peerDependencies: - supports-color: '*' - peerDependenciesMeta: - supports-color: - optional: true - debug@4.4.1: resolution: {integrity: sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==} engines: {node: '>=6.0'} @@ -2910,6 +2964,10 @@ packages: dompurify@3.2.6: resolution: {integrity: sha512-/2GogDQlohXPZe6D6NOgQvXLPSYBqIWMnZ8zzOhn09REE4eyAzb+Hed3jhoM9OkuaJ8P6ZGTTVWQKAi8ieIzfQ==} + dot-prop@5.3.0: + resolution: {integrity: sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==} + engines: {node: '>=8'} + echarts-wordcloud@2.1.0: resolution: {integrity: sha512-Kt1JmbcROgb+3IMI48KZECK2AP5lG6bSsOEs+AsuwaWJxQom31RTNd6NFYI01E/YaI1PFZeueaupjlmzSQasjQ==} peerDependencies: @@ -2946,10 +3004,17 @@ packages: resolution: {integrity: sha512-aKstq2TDOndCn4diEyp9Uq/Flu2i1GlLkc6XIDQSDMuaFE3OPW5OphLCyQ5SpSJZTb4reN+kTcYru5yIfXoRPw==} engines: {node: '>=0.12'} + env-paths@2.2.1: + resolution: {integrity: sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==} + engines: {node: '>=6'} + environment@1.1.0: resolution: {integrity: sha512-xUtoPkMggbz0MPyPiIWr1Kp4aeWJjDZ6SMvURhimjdZgsRuDplF5/s9hcgGhyXMhs+6vpnuoiZ2kFiu3FMnS8Q==} engines: {node: '>=18'} + error-ex@1.3.2: + resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==} + es-module-lexer@1.7.0: resolution: {integrity: sha512-jEQoCwk8hyb2AZziIOLhDqpm5+2ww5uIE6lkO/6jcOCusfk6LhMHpXXfBLXTZ7Ydyt0j4VoUQv6uGNYbdW+kBA==} @@ -3000,18 +3065,6 @@ packages: peerDependencies: eslint: '>=8.40.0' - eslint-import-context@0.1.6: - resolution: {integrity: sha512-/e2ZNPDLCrU8niIy0pddcvXuoO2YrKjf3NAIX+60mHJBT4yv7mqCqvVdyCW2E720e25e4S/1OSVef4U6efGLFg==} - engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0} - peerDependencies: - unrs-resolver: ^1.0.0 - peerDependenciesMeta: - unrs-resolver: - optional: true - - eslint-import-resolver-node@0.3.9: - resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==} - eslint-json-compat-utils@0.2.1: resolution: {integrity: sha512-YzEodbDyW8DX8bImKhAcCeu/L31Dd/70Bidx2Qex9OFUtgzXLqtfWL4Hr5fM/aCCB8QUZLuJur0S9k6UfgFkfg==} engines: {node: '>=12'} @@ -3036,6 +3089,13 @@ packages: peerDependencies: eslint: '*' + eslint-plugin-better-tailwindcss@3.1.0: + resolution: {integrity: sha512-qaOnCBBvkxq5O1CPwzD8NWTNbBLY5RtjfpbOXiv0MtjX5GHnraj/cKBvjrfAPGH7FWrDeycR+kQ52aYqNWpujw==} + engines: {node: '>=v20.11.0'} + peerDependencies: + eslint: ^7.0.0 || ^8.0.0 || ^9.0.0 + tailwindcss: ^3.3.0 || ^4.0.0 + eslint-plugin-command@3.2.1: resolution: {integrity: sha512-PcpzWe8dvAPaBobxE9zgz1w94fO4JYvzciDzw6thlUb9Uqf5e2/gJz97itOGxvdq+mFeudi71m1OGFgvWmb93w==} peerDependencies: @@ -3052,14 +3112,8 @@ packages: peerDependencies: eslint: ^8.40.0 || ^9.0.0 - eslint-plugin-import-x@4.13.3: - resolution: {integrity: sha512-CDewJDEeYQhm94KGCDYiuwU1SdaWc/vh+SziSKkF7kichAqAFnQYtSYUvSwSBbiBjYLxV5uUxocxxQobRI9YXA==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - peerDependencies: - eslint: ^8.57.0 || ^9.0.0 - - eslint-plugin-jsdoc@50.6.17: - resolution: {integrity: sha512-hq+VQylhd12l8qjexyriDsejZhqiP33WgMTy2AmaGZ9+MrMWVqPECsM87GPxgHfQn0zw+YTuhqjUfk1f+q67aQ==} + eslint-plugin-jsdoc@50.8.0: + resolution: {integrity: sha512-UyGb5755LMFWPrZTEqqvTJ3urLz1iqj+bYOHFNag+sw3NvaMWP9K2z+uIn37XfNALmQLQyrBlJ5mkiVPL7ADEg==} engines: {node: '>=18'} peerDependencies: eslint: ^7.0.0 || ^8.0.0 || ^9.0.0 @@ -3070,8 +3124,8 @@ packages: peerDependencies: eslint: '>=6.0.0' - eslint-plugin-n@17.18.0: - resolution: {integrity: sha512-hvZ/HusueqTJ7VDLoCpjN0hx4N4+jHIWTXD4TMLHy9F23XkDagR9v+xQWRWR57yY55GPF8NnD4ox9iGTxirY8A==} + eslint-plugin-n@17.19.0: + resolution: {integrity: sha512-qxn1NaDHtizbhVAPpbMT8wWFaLtPnwhfN/e+chdu2i6Vgzmo/tGM62tcJ1Hf7J5Ie4dhse3DOPMmDxduzfifzw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: '>=8.23.0' @@ -3080,8 +3134,8 @@ packages: resolution: {integrity: sha512-brcKcxGnISN2CcVhXJ/kEQlNa0MEfGRtwKtWA16SkqXHKitaKIMrfemJKLKX1YqDU5C/5JY3PvZXd5jEW04e0Q==} engines: {node: '>=5.0.0'} - eslint-plugin-perfectionist@4.13.0: - resolution: {integrity: sha512-dsPwXwV7IrG26PJ+h1crQ1f5kxay/gQAU0NJnbVTQc91l5Mz9kPjyIZ7fXgie+QSgi8a+0TwGbfaJx+GIhzuoQ==} + eslint-plugin-perfectionist@4.14.0: + resolution: {integrity: sha512-BkhiOqzdum8vQSFgj1/q5+6UUWPMn4GELdxuX7uIsGegmAeH/+LnWsiVxgMrxalD0p68sYfMeKaHF1NfrpI/mg==} engines: {node: ^18.0.0 || >=20.0.0} peerDependencies: eslint: '>=8.45.0' @@ -3091,8 +3145,8 @@ packages: peerDependencies: eslint: ^9.0.0 - eslint-plugin-react-debug@1.50.0: - resolution: {integrity: sha512-lCHKl1+ydvNNnJ+Cm0Sezog9dYh8Se9fFTVA8IUAjThfElC7FyqtF7YiehDDPnY+4ncX0Lytk8bPfRfGtoIDNA==} + eslint-plugin-react-debug@1.52.1: + resolution: {integrity: sha512-EIbUCvbqScIJpnXYVcbtrep2DE7vpnNjlvR4fbOve9hWGx8dzjQhgdt0d4pa1wSB9RdRPzB/dYiJ4Lp+nJBXJA==} engines: {bun: '>=1.0.15', node: '>=18.18.0'} peerDependencies: eslint: ^8.57.0 || ^9.0.0 @@ -3101,8 +3155,8 @@ packages: typescript: optional: true - eslint-plugin-react-dom@1.50.0: - resolution: {integrity: sha512-ksMoCuD2vUTSy6YN2zhgR7hSbbRr0TUPNoxe44A/3Dlz6Ww500OwamBb2c13nqZi6Mk0fE4T2gbMJEF5aZzFkw==} + eslint-plugin-react-dom@1.52.1: + resolution: {integrity: sha512-rM8j8aYfhF+AVfTNBifDGmCCrE6Bd4HVxHgowdvHCk1DMlk8hVqydAGTEuYNWyQB5VMOYUqEAFGUVH3E1Nt7MQ==} engines: {bun: '>=1.0.15', node: '>=18.18.0'} peerDependencies: eslint: ^8.57.0 || ^9.0.0 @@ -3111,8 +3165,8 @@ packages: typescript: optional: true - eslint-plugin-react-hooks-extra@1.50.0: - resolution: {integrity: sha512-owJUWaEeDZvceQkmof7CKFBBA81EjcUOVADcb5aZWwneM2Ui3BUlTHulmxcoSCJDH8b2u7VOkUjiQ/nAZcp55Q==} + eslint-plugin-react-hooks-extra@1.52.1: + resolution: {integrity: sha512-oWY2izVY15Twc/m1oYy2uXcjjvQrC1Cu8c4kzlh8dBjbo9U92agMA/c1JJW8b+RNUY6W93ax2qAaog6TtD7AAA==} engines: {bun: '>=1.0.15', node: '>=18.18.0'} peerDependencies: eslint: ^8.57.0 || ^9.0.0 @@ -3127,8 +3181,8 @@ packages: peerDependencies: eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0 - eslint-plugin-react-naming-convention@1.50.0: - resolution: {integrity: sha512-icV9kENTe15osNJOr09LlKZ2Xj0q43Xm77ofJCzYjWa8JpfI8HI2DNdG3DE4fNkftMIgCxMJIsSs7ch14f1STA==} + eslint-plugin-react-naming-convention@1.52.1: + resolution: {integrity: sha512-fr0Dcjr6uV+cPKxfpQf5g6meAin269tX5vPyiX4YW4jQCXVpHhv5/VSm3nhv3fPOvbxS8eALwoP7HJJZni4bKA==} engines: {bun: '>=1.0.15', node: '>=18.18.0'} peerDependencies: eslint: ^8.57.0 || ^9.0.0 @@ -3142,8 +3196,8 @@ packages: peerDependencies: eslint: '>=8.40' - eslint-plugin-react-web-api@1.50.0: - resolution: {integrity: sha512-2I5rmaDdhgtLcOFZ81/0MLJlTdvVQTVL8b+jfUWR4tLfk6BQKHZlx5pBcunYvuGjkZRYZ2viUoue/CKm+92zaA==} + eslint-plugin-react-web-api@1.52.1: + resolution: {integrity: sha512-FP3eRMiG12JNYGdXB6rS9+CVEAW1pYTJhm53YArElDMvpclYRgJC+MowvlFTpHkepioKXT1aMqvIB8Cv95bXwg==} engines: {bun: '>=1.0.15', node: '>=18.18.0'} peerDependencies: eslint: ^8.57.0 || ^9.0.0 @@ -3152,8 +3206,8 @@ packages: typescript: optional: true - eslint-plugin-react-x@1.50.0: - resolution: {integrity: sha512-Izej25IW8wk2wxB0J3orZLf8x+9vyvNICilDu+MOU7LYPPZQifXTeEweOUUfSwXB0byUSElilU+zFG2EKcCJFg==} + eslint-plugin-react-x@1.52.1: + resolution: {integrity: sha512-NxZu5EbtFMa/Y2YhvKpShzTGwaUF8TQe3pBn8UrWU+jtquZ8ZPskzgW5n5M7VgV/Vs44C8NXZmQxNXrMoCGJRQ==} engines: {bun: '>=1.0.15', node: '>=18.18.0'} peerDependencies: eslint: ^8.57.0 || ^9.0.0 @@ -3165,16 +3219,8 @@ packages: typescript: optional: true - eslint-plugin-readable-tailwind@2.1.2: - resolution: {integrity: sha512-JTRxIxZ5CsjLZZGax/Mao+Q//0XetHohijExRpjyCrZCs2Ns3UPkyZGH52KLCb6m4k15Wrt2UpmQXs9xACIQlg==} - engines: {node: '>=v20.11.0'} - deprecated: This plugin has been renamed to eslint-plugin-better-tailwindcss - peerDependencies: - eslint: ^7.0.0 || ^8.0.0 || ^9.0.0 - tailwindcss: ^3.3.0 || ^4.0.0 - - eslint-plugin-regexp@2.7.0: - resolution: {integrity: sha512-U8oZI77SBtH8U3ulZ05iu0qEzIizyEDXd+BWHvyVxTOjGwcDcvy/kEpgFG4DYca2ByRLiVPFZ2GeH7j1pdvZTA==} + eslint-plugin-regexp@2.9.0: + resolution: {integrity: sha512-9WqJMnOq8VlE/cK+YAo9C9YHhkOtcEtEk9d12a+H7OSZFwlpI6stiHmYPGa2VE0QhTzodJyhlyprUaXDZLgHBw==} engines: {node: ^18 || >=20} peerDependencies: eslint: '>=8.44.0' @@ -3200,8 +3246,8 @@ packages: '@typescript-eslint/eslint-plugin': optional: true - eslint-plugin-vue@10.1.0: - resolution: {integrity: sha512-/VTiJ1eSfNLw6lvG9ENySbGmcVvz6wZ9nA7ZqXlLBY2RkaF15iViYKxglWiIch12KiLAj0j1iXPYU6W4wTROFA==} + eslint-plugin-vue@10.2.0: + resolution: {integrity: sha512-tl9s+KN3z0hN2b8fV2xSs5ytGl7Esk1oSCxULLwFcdaElhZ8btYYZFrWxvh4En+czrSDtuLCeCOGa8HhEZuBdQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: ^8.57.0 || ^9.0.0 @@ -3382,6 +3428,10 @@ packages: resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} engines: {node: '>=10'} + find-up@7.0.0: + resolution: {integrity: sha512-YyZM99iHrqLKjmt4LJDj58KI+fYyufRLBSYcqycxf//KpBk9FoewoGX0450m9nB44qrZnovzC2oeP5hUibxc/g==} + engines: {node: '>=18'} + flat-cache@4.0.1: resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==} engines: {node: '>=16'} @@ -3418,6 +3468,11 @@ packages: get-tsconfig@4.10.1: resolution: {integrity: sha512-auHyJ4AgMz7vgS8Hp3N6HXSmlMdUyhSUrfBF16w153rxtLIEOE+HGqaBppczZvnHLqQJfiHotCYpNhl0lUROFQ==} + git-raw-commits@4.0.0: + resolution: {integrity: sha512-ICsMM1Wk8xSGMowkOmPrzo2Fgmfo4bMHLNX6ytHjajRJUqvHOw/TFapQ+QG75c3X/tTDDhOSRPGC52dDbNM8FQ==} + engines: {node: '>=16'} + hasBin: true + github-slugger@2.0.0: resolution: {integrity: sha512-IaOQ9puYtjrkq7Y0Ygl9KDZnrf/aiUJYUpVf89y8kyaxbRG7Y1SrX/jaumrv81vc61+kiMempujsM3Yw7w5qcw==} @@ -3432,6 +3487,10 @@ packages: glob-to-regexp@0.4.1: resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==} + global-directory@4.0.1: + resolution: {integrity: sha512-wHTUcDUoZ1H5/0iVqEudYW4/kAlN5cZ3j/bXn0Dpbizl9iaUVeWSHqiOjsgk6OW2bkLclbBjzewBz6weQ1zA2Q==} + engines: {node: '>=18'} + globals@14.0.0: resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==} engines: {node: '>=18'} @@ -3516,6 +3575,11 @@ packages: resolution: {integrity: sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==} engines: {node: '>=16.17.0'} + husky@9.1.7: + resolution: {integrity: sha512-5gs5ytaNjBrh5Ow3zrvdUUY+0VxIuWVL4i9irt6friV+BqdCfmV11CQTWMiBYWHbXhco+J1kHfTOUkePhCDvMA==} + engines: {node: '>=18'} + hasBin: true + iconv-lite@0.6.3: resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==} engines: {node: '>=0.10.0'} @@ -3535,6 +3599,9 @@ packages: resolution: {integrity: sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==} engines: {node: '>=6'} + import-meta-resolve@4.1.0: + resolution: {integrity: sha512-I6fiaX09Xivtk+THaMfAwnA3MVA5Big1WHF1Dfx9hFuvNIWpXnorlkzhcQf6ehrqQiiZECRt1poOAkPmer3ruw==} + imurmurhash@0.1.4: resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} engines: {node: '>=0.8.19'} @@ -3543,6 +3610,10 @@ packages: resolution: {integrity: sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg==} engines: {node: '>=12'} + ini@4.1.1: + resolution: {integrity: sha512-QQnnxNyfvmHFIsj7gkPcYymR8Jdw/o7mp5ZFihxn6h8Ci6fh3Dx4E1gPjpQEpIuPo9XVNY/ZUwh4BPMjGyL01g==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + inline-style-parser@0.2.4: resolution: {integrity: sha512-0aO8FkhNZlj/ZIbNi7Lxxr12obT7cL1moPfE4tg1LkX7LlLfC6DeX4l2ZEud1ukP9jNQyNnfzQVqwbwmAATY4Q==} @@ -3559,6 +3630,9 @@ packages: is-alphanumerical@2.0.1: resolution: {integrity: sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw==} + is-arrayish@0.2.1: + resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==} + is-arrayish@0.3.2: resolution: {integrity: sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==} @@ -3616,6 +3690,10 @@ packages: resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} engines: {node: '>=0.12.0'} + is-obj@2.0.0: + resolution: {integrity: sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==} + engines: {node: '>=8'} + is-plain-obj@4.1.0: resolution: {integrity: sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==} engines: {node: '>=12'} @@ -3624,6 +3702,10 @@ packages: resolution: {integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + is-text-path@2.0.0: + resolution: {integrity: sha512-+oDTluR6WEjdXEJMnC2z6A4FRwFoYuvShVVEGsS7ewc0UTi2QtAKMDJuL4BDEVt+5T7MjFo12RP8ghOM75oKJw==} + engines: {node: '>=8'} + is-wsl@3.1.0: resolution: {integrity: sha512-UcVfVfaK4Sc4m7X3dUSoHoozQGBEFeDC+zVo06t98xe8CzHSZZBekNXH+tu0NalHolcJ/QAGqS46Hef7QXBIMw==} engines: {node: '>=16'} @@ -3688,6 +3770,10 @@ packages: resolution: {integrity: sha512-WYDyuc/uFcGp6YtM2H0uKmUwieOuzeE/5YocFJLnLfclZ4inf3mRn8ZVy1s7Hxji7Jxm6Ss8gqpexD/GlKoGgg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + jsonparse@1.3.1: + resolution: {integrity: sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==} + engines: {'0': node >= 0.2.0} + katex@0.16.22: resolution: {integrity: sha512-XCHRdUw4lf3SKBaJe4EvgqIuWwkPSo9XoeO8GjQW94Bp7TWv9hNhzZjZ+OH9yf1UmLygb7DIT5GSFQiyt16zYg==} hasBin: true @@ -3789,6 +3875,9 @@ packages: resolution: {integrity: sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==} engines: {node: '>=14'} + lines-and-columns@1.2.4: + resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} + lint-staged@16.1.0: resolution: {integrity: sha512-HkpQh69XHxgCjObjejBT3s2ILwNjFx8M3nw+tJ/ssBauDlIpkx2RpqWSi1fBgkXLSSXnbR3iEq1NkVtpvV+FLQ==} engines: {node: '>=20.17'} @@ -3817,15 +3906,40 @@ packages: resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} engines: {node: '>=10'} + locate-path@7.2.0: + resolution: {integrity: sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + lodash-es@4.17.21: resolution: {integrity: sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==} lodash.camelcase@4.3.0: resolution: {integrity: sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==} + lodash.isplainobject@4.0.6: + resolution: {integrity: sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==} + + lodash.kebabcase@4.1.1: + resolution: {integrity: sha512-N8XRTIMMqqDgSy4VLKPnJ/+hpGZN+PHQiJnSenYqPaVV/NCqEogTnAdZLQiGKhxX+JCs8waWq2t1XHWKOmlY8g==} + lodash.merge@4.6.2: resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} + lodash.mergewith@4.6.2: + resolution: {integrity: sha512-GK3g5RPZWTRSeLSpgP8Xhra+pnjBC56q9FZYe1d5RN3TJ35dbkGy3YqBSMbyCrlbi+CM9Z3Jk5yTL7RCsqboyQ==} + + lodash.snakecase@4.1.1: + resolution: {integrity: sha512-QZ1d4xoBHYUeuouhEq3lk3Uq7ldgyFXGBhg04+oRLnIz8o9T65Eh+8YdroUwn846zchkA9yDsDl5CVVaV2nqYw==} + + lodash.startcase@4.4.0: + resolution: {integrity: sha512-+WKqsK294HMSc2jEbNgpHpd0JfIBhp7rEV4aqXWqFr6AlXov+SlcgB1Fv01y2kGe3Gc8nMW7VA0SrGuSkRfIEg==} + + lodash.uniq@4.5.0: + resolution: {integrity: sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==} + + lodash.upperfirst@4.3.1: + resolution: {integrity: sha512-sReKOYJIJf74dhJONhU4e0/shzi1trVbSWDOhKYE5XV2O+H7Sb2Dihwuc7xWxVl+DgFPyTqIN3zMfT9cq5iWDg==} + lodash@4.17.21: resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} @@ -3918,6 +4032,10 @@ packages: memoize-one@5.2.1: resolution: {integrity: sha512-zYiwtZUcYyXKo/np96AGZAckk+FWWsUdJ3cHGGmld7+AhvcWmQyGCYUh1hc4Q/pkOhb65dQR/pqCyK0cOaHz4Q==} + meow@12.1.1: + resolution: {integrity: sha512-BhXM0Au22RwUneMPwSCnyhTOizdWoIEPU9sp0Aqa1PnDMR5Wv2FGXYDjuzJEIX+Eo2Rb8xuYe5jrnm5QowQFkw==} + engines: {node: '>=16.10'} + merge-stream@2.0.0: resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} @@ -4066,10 +4184,6 @@ packages: resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==} engines: {node: '>=4'} - minimatch@10.0.1: - resolution: {integrity: sha512-ethXTt3SGGR+95gudmqJ1eNhRO7eGEGIgYA9vnPatK4/etz2MEVDno5GMCibdMTuBMyElzIlgxMna3K94XDIDQ==} - engines: {node: 20 || >=22} - minimatch@3.1.2: resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} @@ -4077,6 +4191,9 @@ packages: resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==} engines: {node: '>=16 || 14 >=14.17'} + minimist@1.2.8: + resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} + minipass@7.1.2: resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==} engines: {node: '>=16 || 14 >=14.17'} @@ -4119,11 +4236,6 @@ packages: engines: {node: ^18 || >=20} hasBin: true - napi-postinstall@0.2.4: - resolution: {integrity: sha512-ZEzHJwBhZ8qQSbknHqYcdtQVr8zUgGyM/q6h6qAyhtyVMNrSgDhrC4disf03dYW0e+czXyLnZINnCTEkWy0eJg==} - engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0} - hasBin: true - natural-compare@1.4.0: resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} @@ -4241,10 +4353,18 @@ packages: resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} engines: {node: '>=10'} + p-limit@4.0.0: + resolution: {integrity: sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + p-locate@5.0.0: resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} engines: {node: '>=10'} + p-locate@6.0.0: + resolution: {integrity: sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + package-manager-detector@1.3.0: resolution: {integrity: sha512-ZsEbbZORsyHuO00lY1kV3/t72yp6Ysay6Pd17ZAlNGuGwmWDLCJxFpRs0IzfXfj1o4icJOkUEioexFHzyPurSQ==} @@ -4265,6 +4385,10 @@ packages: parse-imports-exports@0.2.4: resolution: {integrity: sha512-4s6vd6dx1AotCx/RCI2m7t7GCh5bDRUtGNvRfHSP2wbBQdMi67pPe7mtzmgwcaQ8VKK/6IB7Glfyu3qdZJPybQ==} + parse-json@5.2.0: + resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} + engines: {node: '>=8'} + parse-latin@7.0.0: resolution: {integrity: sha512-mhHgobPPua5kZ98EF4HWiH167JWBfl4pvAIXXdbaVohtK7a6YBOy56kvhCqduqyo/f3yrHFWmqmiMg/BkBkYYQ==} @@ -4284,6 +4408,10 @@ packages: resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} engines: {node: '>=8'} + path-exists@5.0.0: + resolution: {integrity: sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + path-key@3.1.1: resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} engines: {node: '>=8'} @@ -4354,8 +4482,8 @@ packages: resolution: {integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==} engines: {node: ^10 || ^12 || >=14} - postcss@8.5.4: - resolution: {integrity: sha512-QSa9EBe+uwlGTFmHsPKokv3B/oEMQZxfqW0QqNCyhpa6mB1afzulwn8hihglqAb2pOw+BJgNlmXQ8la2VeHB7w==} + postcss@8.5.5: + resolution: {integrity: sha512-d/jtm+rdNT8tpXuHY5MMtcbJFBkhXE6593XVR9UoGCH8jSFGci7jGvMGH5RYd5PBJW+00NZQt6gf7CbagJCrhg==} engines: {node: ^10 || ^12 || >=14} prelude-ls@1.2.1: @@ -4681,6 +4809,10 @@ packages: resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} engines: {node: '>=4'} + resolve-from@5.0.0: + resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==} + engines: {node: '>=8'} + resolve-pkg-maps@1.0.0: resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==} @@ -4777,17 +4909,13 @@ packages: shiki@2.5.0: resolution: {integrity: sha512-mI//trrsaiCIPsja5CNfsyNOqgAZUb6VpJA+340toL42UpzQlXpwRV9nch69X6gaUxrr9kaOOa6e3y3uAkGFxQ==} - shiki@3.4.2: - resolution: {integrity: sha512-wuxzZzQG8kvZndD7nustrNFIKYJ1jJoWIPaBpVe2+KHSvtzMi4SBjOxrigs8qeqce/l3U0cwiC+VAkLKSunHQQ==} + shiki@3.6.0: + resolution: {integrity: sha512-tKn/Y0MGBTffQoklaATXmTqDU02zx8NYBGQ+F6gy87/YjKbizcLd+Cybh/0ZtOBX9r1NEnAy/GTRDKtOsc1L9w==} signal-exit@4.1.0: resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==} engines: {node: '>=14'} - simple-git-hooks@2.13.0: - resolution: {integrity: sha512-N+goiLxlkHJlyaYEglFypzVNMaNplPAk5syu0+OPp/Bk6dwVoXF6FfOw2vO0Dp+JHsBaI+w6cm8TnFl2Hw6tDA==} - hasBin: true - simple-swizzle@0.2.2: resolution: {integrity: sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==} @@ -4843,8 +4971,9 @@ packages: resolution: {integrity: sha512-S6ji+flMEga+1QU79NDbwZ8Ivf0S/MpupQQiIC0rTpU/ZTKgcajijJJb1OcByBQDjrXCN1/DJtGz4ZJeBMPGJw==} hasBin: true - stable-hash@0.0.5: - resolution: {integrity: sha512-+L3ccpzibovGXFK+Ap/f8LOS0ahMrHTf3xu7mMLSpEGU0EO9ucaysSylKo9eRDFNhWve/y275iPmIZ4z39a9iA==} + split2@4.2.0: + resolution: {integrity: sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==} + engines: {node: '>= 10.x'} streamsearch@1.1.0: resolution: {integrity: sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==} @@ -4940,16 +5069,16 @@ packages: tabbable@6.2.0: resolution: {integrity: sha512-Cat63mxsVJlzYvN51JmVXIgNoUokrIaT2zLclCXjRd8boZ0004U4KCs/sToJ75C6sdlByWxpYnb5Boif1VSFew==} - tailwind-merge@3.3.0: - resolution: {integrity: sha512-fyW/pEfcQSiigd5SNn0nApUOxx0zB/dm6UDU/rEwc2c3sX2smWUNbapHv+QRqLGVp9GWX3THIa7MUGPo+YkDzQ==} + tailwind-merge@3.3.1: + resolution: {integrity: sha512-gBXpgUm/3rp1lMZZrM/w7D8GKqshif0zAymAhbCyIt8KMe+0v9DQ7cdYLR4FHH/cKpdTXb+A/tKKU3eolfsI+g==} tailwindcss-animate@1.0.7: resolution: {integrity: sha512-bl6mpH3T7I3UFxuvDEXLxy/VuFxBk5bbzplh7tXI68mwMokNYd1t9qPBHlnyTwfa4JGC4zP516I1hYYtQ/vspA==} peerDependencies: tailwindcss: '>=3.0.0 || insiders' - tailwindcss@4.1.8: - resolution: {integrity: sha512-kjeW8gjdxasbmFKpVGrGd5T4i40mV5J2Rasw48QARfYeQ8YS9x02ON9SFWax3Qf616rt4Cp3nVNIj6Hd1mP3og==} + tailwindcss@4.1.10: + resolution: {integrity: sha512-P3nr6WkvKV/ONsTzj6Gb57sWPMX29EPNPopo7+FcpkQaNsrNpZ1pv8QmrYI2RqEKD7mlGqLnGovlcYnBK0IqUA==} tapable@2.2.2: resolution: {integrity: sha512-Re10+NauLTMCudc7T5WLFLAwDhQ0JWdrMK+9B2M8zR5hRExKmsRDCBA7/aV/pNJFltmBFO5BAMlQFi/vq3nKOg==} @@ -4980,6 +5109,13 @@ packages: engines: {node: '>=10'} hasBin: true + text-extensions@2.4.0: + resolution: {integrity: sha512-te/NtwBwfiNRLf9Ijqx3T0nlqZiQ2XrrtBvu+cLL8ZRrGkO0NHTug8MYFKyoSrv/sHTaSKfilUkizV6XhxMJ3g==} + engines: {node: '>=8'} + + through@2.3.8: + resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==} + tiny-inflate@1.0.3: resolution: {integrity: sha512-pkY1fj1cKHb2seWDy0B16HeWyczlJA9/WW3u3c4z/NiWDsO3DOU5D7nhTLE9CF0yXv/QZFY7sEJmj24dK+Rrqw==} @@ -5065,6 +5201,10 @@ packages: resolution: {integrity: sha512-30Y3tQ8OUxceQjsEJHzNh20lLYZX6ZwQyUOHBUdN1UPKQWH3AvH20aUADWa1gEz2lQPTSQ/l2ZqdM4FjFNMJsQ==} engines: {node: '>=16'} + unicorn-magic@0.1.0: + resolution: {integrity: sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==} + engines: {node: '>=18'} + unicount@1.1.0: resolution: {integrity: sha512-RlwWt1ywVW4WErPGAVHw/rIuJ2+MxvTME0siJ6lk9zBhpDfExDbspe6SRlWT3qU6AucNjotPl9qAJRVjP7guCQ==} @@ -5113,9 +5253,6 @@ packages: unist-util-visit@5.0.0: resolution: {integrity: sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==} - unrs-resolver@1.7.8: - resolution: {integrity: sha512-2zsXwyOXmCX9nGz4vhtZRYhe30V78heAv+KDc21A/KMdovGHbZcixeD5JHEF0DrFXzdytwuzYclcPbvp8A3Jlw==} - update-browserslist-db@1.1.3: resolution: {integrity: sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==} hasBin: true @@ -5279,6 +5416,10 @@ packages: resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} engines: {node: '>=10'} + yocto-queue@1.2.1: + resolution: {integrity: sha512-AyeEbWOu/TAXdxlV9wmGcR0+yh2j3vYPGOECcIj2S7MkrLyC7ne+oye2BKTItt0ii2PHk4cDy+95+LshzbXnGg==} + engines: {node: '>=12.20'} + zod-validation-error@3.4.1: resolution: {integrity: sha512-1KP64yqDPQ3rupxNv7oXhf7KdhHHgaqbKuspVoiN93TT0xrBjql+Svjkdjq/Qh/7GSMmgQs3AfvBT0heE35thw==} engines: {node: '>=18.0.0'} @@ -5288,6 +5429,9 @@ packages: zod@3.25.36: resolution: {integrity: sha512-eRFS3i8T0IrpGdL8HQyqFAugGOn7jOjyGgGdtv5NY4Wkhi7lJDk732bNZ609YMIGFbLoaj6J69O1Mura23gfIw==} + zod@3.25.63: + resolution: {integrity: sha512-3ttCkqhtpncYXfP0f6dsyabbYV/nEUW+Xlu89jiXbTBifUfjaSqXOG6JnQPLtqt87n7KAmnMqcjay6c0Wq0Vbw==} + zrender@5.6.1: resolution: {integrity: sha512-OFXkDJKcrlx5su2XbzJvj/34Q3m6PvyCZkVPHGYpcCJ52ek4U/ymZyfuV1nKE23AyBJ51E/6Yr0mhZ7xGTO4ag==} @@ -5426,15 +5570,15 @@ snapshots: '@jridgewell/gen-mapping': 0.3.8 '@jridgewell/trace-mapping': 0.3.25 - '@antfu/eslint-config@4.13.2(@eslint-react/eslint-plugin@1.50.0(eslint@9.28.0(jiti@2.4.2))(ts-api-utils@2.1.0(typescript@5.8.3))(typescript@5.8.3))(@vue/compiler-sfc@3.5.16)(eslint-plugin-format@1.0.1(eslint@9.28.0(jiti@2.4.2)))(eslint-plugin-react-hooks@5.2.0(eslint@9.28.0(jiti@2.4.2)))(eslint-plugin-react-refresh@0.4.20(eslint@9.28.0(jiti@2.4.2)))(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3)': + '@antfu/eslint-config@4.14.1(@eslint-react/eslint-plugin@1.52.1(eslint@9.28.0(jiti@2.4.2))(ts-api-utils@2.1.0(typescript@5.8.3))(typescript@5.8.3))(@vue/compiler-sfc@3.5.16)(eslint-plugin-format@1.0.1(eslint@9.28.0(jiti@2.4.2)))(eslint-plugin-react-hooks@5.2.0(eslint@9.28.0(jiti@2.4.2)))(eslint-plugin-react-refresh@0.4.20(eslint@9.28.0(jiti@2.4.2)))(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3)': dependencies: '@antfu/install-pkg': 1.1.0 - '@clack/prompts': 0.10.1 + '@clack/prompts': 0.11.0 '@eslint-community/eslint-plugin-eslint-comments': 4.5.0(eslint@9.28.0(jiti@2.4.2)) - '@eslint/markdown': 6.4.0 - '@stylistic/eslint-plugin': 4.4.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) - '@typescript-eslint/eslint-plugin': 8.33.0(@typescript-eslint/parser@8.33.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3))(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) - '@typescript-eslint/parser': 8.33.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) + '@eslint/markdown': 6.5.0 + '@stylistic/eslint-plugin': 5.0.0-beta.3(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) + '@typescript-eslint/eslint-plugin': 8.34.0(@typescript-eslint/parser@8.34.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3))(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) + '@typescript-eslint/parser': 8.34.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) '@vitest/eslint-plugin': 1.2.1(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) ansis: 4.1.0 cac: 6.7.14 @@ -5444,18 +5588,17 @@ snapshots: eslint-merge-processors: 2.0.0(eslint@9.28.0(jiti@2.4.2)) eslint-plugin-antfu: 3.1.1(eslint@9.28.0(jiti@2.4.2)) eslint-plugin-command: 3.2.1(eslint@9.28.0(jiti@2.4.2)) - eslint-plugin-import-x: 4.13.3(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) - eslint-plugin-jsdoc: 50.6.17(eslint@9.28.0(jiti@2.4.2)) + eslint-plugin-jsdoc: 50.8.0(eslint@9.28.0(jiti@2.4.2)) eslint-plugin-jsonc: 2.20.1(eslint@9.28.0(jiti@2.4.2)) - eslint-plugin-n: 17.18.0(eslint@9.28.0(jiti@2.4.2)) + eslint-plugin-n: 17.19.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) eslint-plugin-no-only-tests: 3.3.0 - eslint-plugin-perfectionist: 4.13.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) + eslint-plugin-perfectionist: 4.14.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) eslint-plugin-pnpm: 0.3.1(eslint@9.28.0(jiti@2.4.2)) - eslint-plugin-regexp: 2.7.0(eslint@9.28.0(jiti@2.4.2)) + eslint-plugin-regexp: 2.9.0(eslint@9.28.0(jiti@2.4.2)) eslint-plugin-toml: 0.12.0(eslint@9.28.0(jiti@2.4.2)) eslint-plugin-unicorn: 59.0.1(eslint@9.28.0(jiti@2.4.2)) - eslint-plugin-unused-imports: 4.1.4(@typescript-eslint/eslint-plugin@8.33.0(@typescript-eslint/parser@8.33.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3))(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3))(eslint@9.28.0(jiti@2.4.2)) - eslint-plugin-vue: 10.1.0(eslint@9.28.0(jiti@2.4.2))(vue-eslint-parser@10.1.3(eslint@9.28.0(jiti@2.4.2))) + eslint-plugin-unused-imports: 4.1.4(@typescript-eslint/eslint-plugin@8.34.0(@typescript-eslint/parser@8.34.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3))(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3))(eslint@9.28.0(jiti@2.4.2)) + eslint-plugin-vue: 10.2.0(eslint@9.28.0(jiti@2.4.2))(vue-eslint-parser@10.1.3(eslint@9.28.0(jiti@2.4.2))) eslint-plugin-yml: 1.18.0(eslint@9.28.0(jiti@2.4.2)) eslint-processor-vue-blocks: 2.0.0(@vue/compiler-sfc@3.5.16)(eslint@9.28.0(jiti@2.4.2)) globals: 16.2.0 @@ -5466,7 +5609,7 @@ snapshots: vue-eslint-parser: 10.1.3(eslint@9.28.0(jiti@2.4.2)) yaml-eslint-parser: 1.3.0 optionalDependencies: - '@eslint-react/eslint-plugin': 1.50.0(eslint@9.28.0(jiti@2.4.2))(ts-api-utils@2.1.0(typescript@5.8.3))(typescript@5.8.3) + '@eslint-react/eslint-plugin': 1.52.1(eslint@9.28.0(jiti@2.4.2))(ts-api-utils@2.1.0(typescript@5.8.3))(typescript@5.8.3) eslint-plugin-format: 1.0.1(eslint@9.28.0(jiti@2.4.2)) eslint-plugin-react-hooks: 5.2.0(eslint@9.28.0(jiti@2.4.2)) eslint-plugin-react-refresh: 0.4.20(eslint@9.28.0(jiti@2.4.2)) @@ -5484,6 +5627,12 @@ snapshots: '@antfu/utils@8.1.1': {} + '@babel/code-frame@7.27.1': + dependencies: + '@babel/helper-validator-identifier': 7.27.1 + js-tokens: 4.0.0 + picocolors: 1.1.1 + '@babel/helper-string-parser@7.27.1': {} '@babel/helper-validator-identifier@7.27.1': {} @@ -5518,27 +5667,137 @@ snapshots: '@chevrotain/utils@11.0.3': {} - '@clack/core@0.4.2': + '@clack/core@0.5.0': dependencies: picocolors: 1.1.1 sisteransi: 1.0.5 - '@clack/prompts@0.10.1': + '@clack/prompts@0.11.0': dependencies: - '@clack/core': 0.4.2 + '@clack/core': 0.5.0 picocolors: 1.1.1 sisteransi: 1.0.5 + '@commitlint/cli@19.8.1(@types/node@22.15.24)(typescript@5.8.3)': + dependencies: + '@commitlint/format': 19.8.1 + '@commitlint/lint': 19.8.1 + '@commitlint/load': 19.8.1(@types/node@22.15.24)(typescript@5.8.3) + '@commitlint/read': 19.8.1 + '@commitlint/types': 19.8.1 + tinyexec: 1.0.1 + yargs: 17.7.2 + transitivePeerDependencies: + - '@types/node' + - typescript + + '@commitlint/config-conventional@19.8.1': + dependencies: + '@commitlint/types': 19.8.1 + conventional-changelog-conventionalcommits: 7.0.2 + + '@commitlint/config-validator@19.8.1': + dependencies: + '@commitlint/types': 19.8.1 + ajv: 8.17.1 + + '@commitlint/ensure@19.8.1': + dependencies: + '@commitlint/types': 19.8.1 + lodash.camelcase: 4.3.0 + lodash.kebabcase: 4.1.1 + lodash.snakecase: 4.1.1 + lodash.startcase: 4.4.0 + lodash.upperfirst: 4.3.1 + + '@commitlint/execute-rule@19.8.1': {} + + '@commitlint/format@19.8.1': + dependencies: + '@commitlint/types': 19.8.1 + chalk: 5.4.1 + + '@commitlint/is-ignored@19.8.1': + dependencies: + '@commitlint/types': 19.8.1 + semver: 7.7.2 + + '@commitlint/lint@19.8.1': + dependencies: + '@commitlint/is-ignored': 19.8.1 + '@commitlint/parse': 19.8.1 + '@commitlint/rules': 19.8.1 + '@commitlint/types': 19.8.1 + + '@commitlint/load@19.8.1(@types/node@22.15.24)(typescript@5.8.3)': + dependencies: + '@commitlint/config-validator': 19.8.1 + '@commitlint/execute-rule': 19.8.1 + '@commitlint/resolve-extends': 19.8.1 + '@commitlint/types': 19.8.1 + chalk: 5.4.1 + cosmiconfig: 9.0.0(typescript@5.8.3) + cosmiconfig-typescript-loader: 6.1.0(@types/node@22.15.24)(cosmiconfig@9.0.0(typescript@5.8.3))(typescript@5.8.3) + lodash.isplainobject: 4.0.6 + lodash.merge: 4.6.2 + lodash.uniq: 4.5.0 + transitivePeerDependencies: + - '@types/node' + - typescript + + '@commitlint/message@19.8.1': {} + + '@commitlint/parse@19.8.1': + dependencies: + '@commitlint/types': 19.8.1 + conventional-changelog-angular: 7.0.0 + conventional-commits-parser: 5.0.0 + + '@commitlint/read@19.8.1': + dependencies: + '@commitlint/top-level': 19.8.1 + '@commitlint/types': 19.8.1 + git-raw-commits: 4.0.0 + minimist: 1.2.8 + tinyexec: 1.0.1 + + '@commitlint/resolve-extends@19.8.1': + dependencies: + '@commitlint/config-validator': 19.8.1 + '@commitlint/types': 19.8.1 + global-directory: 4.0.1 + import-meta-resolve: 4.1.0 + lodash.mergewith: 4.6.2 + resolve-from: 5.0.0 + + '@commitlint/rules@19.8.1': + dependencies: + '@commitlint/ensure': 19.8.1 + '@commitlint/message': 19.8.1 + '@commitlint/to-lines': 19.8.1 + '@commitlint/types': 19.8.1 + + '@commitlint/to-lines@19.8.1': {} + + '@commitlint/top-level@19.8.1': + dependencies: + find-up: 7.0.0 + + '@commitlint/types@19.8.1': + dependencies: + '@types/conventional-commits-parser': 5.0.1 + chalk: 5.4.1 + '@docsearch/css@3.9.0': {} - '@docsearch/react@3.9.0(@algolia/client-search@5.25.0)(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(search-insights@2.17.3)': + '@docsearch/react@3.9.0(@algolia/client-search@5.25.0)(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(search-insights@2.17.3)': dependencies: '@algolia/autocomplete-core': 1.17.9(@algolia/client-search@5.25.0)(algoliasearch@5.25.0)(search-insights@2.17.3) '@algolia/autocomplete-preset-algolia': 1.17.9(@algolia/client-search@5.25.0)(algoliasearch@5.25.0) '@docsearch/css': 3.9.0 algoliasearch: 5.25.0 optionalDependencies: - '@types/react': 19.1.6 + '@types/react': 19.1.8 react: 19.1.0 react-dom: 19.1.0(react@19.1.0) search-insights: 2.17.3 @@ -5549,24 +5808,13 @@ snapshots: '@dprint/markdown@0.17.8': {} - '@dprint/toml@0.6.4': {} - - '@emnapi/core@1.4.3': - dependencies: - '@emnapi/wasi-threads': 1.0.2 - tslib: 2.8.1 - optional: true + '@dprint/toml@0.6.4': {} '@emnapi/runtime@1.4.3': dependencies: tslib: 2.8.1 optional: true - '@emnapi/wasi-threads@1.0.2': - dependencies: - tslib: 2.8.1 - optional: true - '@es-joy/jsdoccomment@0.50.2': dependencies: '@types/estree': 1.0.7 @@ -5588,12 +5836,12 @@ snapshots: '@eslint-community/regexpp@4.12.1': {} - '@eslint-react/ast@1.50.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3)': + '@eslint-react/ast@1.52.1(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3)': dependencies: - '@eslint-react/eff': 1.50.0 - '@typescript-eslint/types': 8.33.0 - '@typescript-eslint/typescript-estree': 8.33.0(typescript@5.8.3) - '@typescript-eslint/utils': 8.33.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) + '@eslint-react/eff': 1.52.1 + '@typescript-eslint/types': 8.34.0 + '@typescript-eslint/typescript-estree': 8.34.0(typescript@5.8.3) + '@typescript-eslint/utils': 8.34.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) string-ts: 2.2.1 ts-pattern: 5.7.1 transitivePeerDependencies: @@ -5601,17 +5849,17 @@ snapshots: - supports-color - typescript - '@eslint-react/core@1.50.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3)': - dependencies: - '@eslint-react/ast': 1.50.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) - '@eslint-react/eff': 1.50.0 - '@eslint-react/kit': 1.50.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) - '@eslint-react/shared': 1.50.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) - '@eslint-react/var': 1.50.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) - '@typescript-eslint/scope-manager': 8.33.0 - '@typescript-eslint/type-utils': 8.33.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) - '@typescript-eslint/types': 8.33.0 - '@typescript-eslint/utils': 8.33.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) + '@eslint-react/core@1.52.1(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3)': + dependencies: + '@eslint-react/ast': 1.52.1(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) + '@eslint-react/eff': 1.52.1 + '@eslint-react/kit': 1.52.1(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) + '@eslint-react/shared': 1.52.1(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) + '@eslint-react/var': 1.52.1(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) + '@typescript-eslint/scope-manager': 8.34.0 + '@typescript-eslint/type-utils': 8.34.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) + '@typescript-eslint/types': 8.34.0 + '@typescript-eslint/utils': 8.34.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) birecord: 0.1.1 ts-pattern: 5.7.1 transitivePeerDependencies: @@ -5619,60 +5867,60 @@ snapshots: - supports-color - typescript - '@eslint-react/eff@1.50.0': {} + '@eslint-react/eff@1.52.1': {} - '@eslint-react/eslint-plugin@1.50.0(eslint@9.28.0(jiti@2.4.2))(ts-api-utils@2.1.0(typescript@5.8.3))(typescript@5.8.3)': + '@eslint-react/eslint-plugin@1.52.1(eslint@9.28.0(jiti@2.4.2))(ts-api-utils@2.1.0(typescript@5.8.3))(typescript@5.8.3)': dependencies: - '@eslint-react/eff': 1.50.0 - '@eslint-react/kit': 1.50.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) - '@eslint-react/shared': 1.50.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) - '@typescript-eslint/scope-manager': 8.33.0 - '@typescript-eslint/type-utils': 8.33.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) - '@typescript-eslint/types': 8.33.0 - '@typescript-eslint/utils': 8.33.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) + '@eslint-react/eff': 1.52.1 + '@eslint-react/kit': 1.52.1(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) + '@eslint-react/shared': 1.52.1(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) + '@typescript-eslint/scope-manager': 8.34.0 + '@typescript-eslint/type-utils': 8.34.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) + '@typescript-eslint/types': 8.34.0 + '@typescript-eslint/utils': 8.34.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) eslint: 9.28.0(jiti@2.4.2) - eslint-plugin-react-debug: 1.50.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) - eslint-plugin-react-dom: 1.50.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) - eslint-plugin-react-hooks-extra: 1.50.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) - eslint-plugin-react-naming-convention: 1.50.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) - eslint-plugin-react-web-api: 1.50.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) - eslint-plugin-react-x: 1.50.0(eslint@9.28.0(jiti@2.4.2))(ts-api-utils@2.1.0(typescript@5.8.3))(typescript@5.8.3) + eslint-plugin-react-debug: 1.52.1(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) + eslint-plugin-react-dom: 1.52.1(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) + eslint-plugin-react-hooks-extra: 1.52.1(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) + eslint-plugin-react-naming-convention: 1.52.1(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) + eslint-plugin-react-web-api: 1.52.1(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) + eslint-plugin-react-x: 1.52.1(eslint@9.28.0(jiti@2.4.2))(ts-api-utils@2.1.0(typescript@5.8.3))(typescript@5.8.3) optionalDependencies: typescript: 5.8.3 transitivePeerDependencies: - supports-color - ts-api-utils - '@eslint-react/kit@1.50.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3)': + '@eslint-react/kit@1.52.1(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3)': dependencies: - '@eslint-react/eff': 1.50.0 - '@typescript-eslint/utils': 8.33.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) + '@eslint-react/eff': 1.52.1 + '@typescript-eslint/utils': 8.34.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) ts-pattern: 5.7.1 - zod: 3.25.36 + zod: 3.25.63 transitivePeerDependencies: - eslint - supports-color - typescript - '@eslint-react/shared@1.50.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3)': + '@eslint-react/shared@1.52.1(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3)': dependencies: - '@eslint-react/eff': 1.50.0 - '@eslint-react/kit': 1.50.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) - '@typescript-eslint/utils': 8.33.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) + '@eslint-react/eff': 1.52.1 + '@eslint-react/kit': 1.52.1(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) + '@typescript-eslint/utils': 8.34.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) ts-pattern: 5.7.1 - zod: 3.25.36 + zod: 3.25.63 transitivePeerDependencies: - eslint - supports-color - typescript - '@eslint-react/var@1.50.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3)': + '@eslint-react/var@1.52.1(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3)': dependencies: - '@eslint-react/ast': 1.50.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) - '@eslint-react/eff': 1.50.0 - '@typescript-eslint/scope-manager': 8.33.0 - '@typescript-eslint/types': 8.33.0 - '@typescript-eslint/utils': 8.33.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) + '@eslint-react/ast': 1.52.1(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) + '@eslint-react/eff': 1.52.1 + '@typescript-eslint/scope-manager': 8.34.0 + '@typescript-eslint/types': 8.34.0 + '@typescript-eslint/utils': 8.34.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) string-ts: 2.2.1 ts-pattern: 5.7.1 transitivePeerDependencies: @@ -5694,10 +5942,6 @@ snapshots: '@eslint/config-helpers@0.2.2': {} - '@eslint/core@0.10.0': - dependencies: - '@types/json-schema': 7.0.15 - '@eslint/core@0.13.0': dependencies: '@types/json-schema': 7.0.15 @@ -5722,10 +5966,10 @@ snapshots: '@eslint/js@9.28.0': {} - '@eslint/markdown@6.4.0': + '@eslint/markdown@6.5.0': dependencies: - '@eslint/core': 0.10.0 - '@eslint/plugin-kit': 0.2.8 + '@eslint/core': 0.14.0 + '@eslint/plugin-kit': 0.3.1 mdast-util-from-markdown: 2.0.2 mdast-util-frontmatter: 2.0.1 mdast-util-gfm: 3.1.0 @@ -6036,13 +6280,6 @@ snapshots: '@napi-rs/simple-git-win32-arm64-msvc': 0.1.19 '@napi-rs/simple-git-win32-x64-msvc': 0.1.19 - '@napi-rs/wasm-runtime@0.2.10': - dependencies: - '@emnapi/core': 1.4.3 - '@emnapi/runtime': 1.4.3 - '@tybys/wasm-util': 0.9.0 - optional: true - '@next/env@15.3.3': {} '@next/swc-darwin-arm64@15.3.3': @@ -6114,341 +6351,341 @@ snapshots: '@radix-ui/primitive@1.1.2': {} - '@radix-ui/react-arrow@1.1.7(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + '@radix-ui/react-arrow@1.1.7(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': dependencies: - '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) react: 19.1.0 react-dom: 19.1.0(react@19.1.0) optionalDependencies: - '@types/react': 19.1.6 - '@types/react-dom': 19.1.5(@types/react@19.1.6) + '@types/react': 19.1.8 + '@types/react-dom': 19.1.6(@types/react@19.1.8) - '@radix-ui/react-collection@1.1.7(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + '@radix-ui/react-collection@1.1.7(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': dependencies: - '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.6)(react@19.1.0) - '@radix-ui/react-context': 1.1.2(@types/react@19.1.6)(react@19.1.0) - '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) - '@radix-ui/react-slot': 1.2.3(@types/react@19.1.6)(react@19.1.0) + '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.8)(react@19.1.0) + '@radix-ui/react-context': 1.1.2(@types/react@19.1.8)(react@19.1.0) + '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-slot': 1.2.3(@types/react@19.1.8)(react@19.1.0) react: 19.1.0 react-dom: 19.1.0(react@19.1.0) optionalDependencies: - '@types/react': 19.1.6 - '@types/react-dom': 19.1.5(@types/react@19.1.6) + '@types/react': 19.1.8 + '@types/react-dom': 19.1.6(@types/react@19.1.8) - '@radix-ui/react-compose-refs@1.1.2(@types/react@19.1.6)(react@19.1.0)': + '@radix-ui/react-compose-refs@1.1.2(@types/react@19.1.8)(react@19.1.0)': dependencies: react: 19.1.0 optionalDependencies: - '@types/react': 19.1.6 + '@types/react': 19.1.8 - '@radix-ui/react-context@1.1.2(@types/react@19.1.6)(react@19.1.0)': + '@radix-ui/react-context@1.1.2(@types/react@19.1.8)(react@19.1.0)': dependencies: react: 19.1.0 optionalDependencies: - '@types/react': 19.1.6 + '@types/react': 19.1.8 - '@radix-ui/react-dialog@1.1.14(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + '@radix-ui/react-dialog@1.1.14(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': dependencies: '@radix-ui/primitive': 1.1.2 - '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.6)(react@19.1.0) - '@radix-ui/react-context': 1.1.2(@types/react@19.1.6)(react@19.1.0) - '@radix-ui/react-dismissable-layer': 1.1.10(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) - '@radix-ui/react-focus-guards': 1.1.2(@types/react@19.1.6)(react@19.1.0) - '@radix-ui/react-focus-scope': 1.1.7(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) - '@radix-ui/react-id': 1.1.1(@types/react@19.1.6)(react@19.1.0) - '@radix-ui/react-portal': 1.1.9(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) - '@radix-ui/react-presence': 1.1.4(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) - '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) - '@radix-ui/react-slot': 1.2.3(@types/react@19.1.6)(react@19.1.0) - '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.6)(react@19.1.0) + '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.8)(react@19.1.0) + '@radix-ui/react-context': 1.1.2(@types/react@19.1.8)(react@19.1.0) + '@radix-ui/react-dismissable-layer': 1.1.10(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-focus-guards': 1.1.2(@types/react@19.1.8)(react@19.1.0) + '@radix-ui/react-focus-scope': 1.1.7(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-id': 1.1.1(@types/react@19.1.8)(react@19.1.0) + '@radix-ui/react-portal': 1.1.9(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-presence': 1.1.4(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-slot': 1.2.3(@types/react@19.1.8)(react@19.1.0) + '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.8)(react@19.1.0) aria-hidden: 1.2.6 react: 19.1.0 react-dom: 19.1.0(react@19.1.0) - react-remove-scroll: 2.7.0(@types/react@19.1.6)(react@19.1.0) + react-remove-scroll: 2.7.0(@types/react@19.1.8)(react@19.1.0) optionalDependencies: - '@types/react': 19.1.6 - '@types/react-dom': 19.1.5(@types/react@19.1.6) + '@types/react': 19.1.8 + '@types/react-dom': 19.1.6(@types/react@19.1.8) - '@radix-ui/react-direction@1.1.1(@types/react@19.1.6)(react@19.1.0)': + '@radix-ui/react-direction@1.1.1(@types/react@19.1.8)(react@19.1.0)': dependencies: react: 19.1.0 optionalDependencies: - '@types/react': 19.1.6 + '@types/react': 19.1.8 - '@radix-ui/react-dismissable-layer@1.1.10(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + '@radix-ui/react-dismissable-layer@1.1.10(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': dependencies: '@radix-ui/primitive': 1.1.2 - '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.6)(react@19.1.0) - '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) - '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.1.6)(react@19.1.0) - '@radix-ui/react-use-escape-keydown': 1.1.1(@types/react@19.1.6)(react@19.1.0) + '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.8)(react@19.1.0) + '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.1.8)(react@19.1.0) + '@radix-ui/react-use-escape-keydown': 1.1.1(@types/react@19.1.8)(react@19.1.0) react: 19.1.0 react-dom: 19.1.0(react@19.1.0) optionalDependencies: - '@types/react': 19.1.6 - '@types/react-dom': 19.1.5(@types/react@19.1.6) + '@types/react': 19.1.8 + '@types/react-dom': 19.1.6(@types/react@19.1.8) - '@radix-ui/react-dropdown-menu@2.1.15(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + '@radix-ui/react-dropdown-menu@2.1.15(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': dependencies: '@radix-ui/primitive': 1.1.2 - '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.6)(react@19.1.0) - '@radix-ui/react-context': 1.1.2(@types/react@19.1.6)(react@19.1.0) - '@radix-ui/react-id': 1.1.1(@types/react@19.1.6)(react@19.1.0) - '@radix-ui/react-menu': 2.1.15(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) - '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) - '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.6)(react@19.1.0) + '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.8)(react@19.1.0) + '@radix-ui/react-context': 1.1.2(@types/react@19.1.8)(react@19.1.0) + '@radix-ui/react-id': 1.1.1(@types/react@19.1.8)(react@19.1.0) + '@radix-ui/react-menu': 2.1.15(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.8)(react@19.1.0) react: 19.1.0 react-dom: 19.1.0(react@19.1.0) optionalDependencies: - '@types/react': 19.1.6 - '@types/react-dom': 19.1.5(@types/react@19.1.6) + '@types/react': 19.1.8 + '@types/react-dom': 19.1.6(@types/react@19.1.8) - '@radix-ui/react-focus-guards@1.1.2(@types/react@19.1.6)(react@19.1.0)': + '@radix-ui/react-focus-guards@1.1.2(@types/react@19.1.8)(react@19.1.0)': dependencies: react: 19.1.0 optionalDependencies: - '@types/react': 19.1.6 + '@types/react': 19.1.8 - '@radix-ui/react-focus-scope@1.1.7(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + '@radix-ui/react-focus-scope@1.1.7(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': dependencies: - '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.6)(react@19.1.0) - '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) - '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.1.6)(react@19.1.0) + '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.8)(react@19.1.0) + '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.1.8)(react@19.1.0) react: 19.1.0 react-dom: 19.1.0(react@19.1.0) optionalDependencies: - '@types/react': 19.1.6 - '@types/react-dom': 19.1.5(@types/react@19.1.6) + '@types/react': 19.1.8 + '@types/react-dom': 19.1.6(@types/react@19.1.8) - '@radix-ui/react-hover-card@1.1.14(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + '@radix-ui/react-hover-card@1.1.14(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': dependencies: '@radix-ui/primitive': 1.1.2 - '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.6)(react@19.1.0) - '@radix-ui/react-context': 1.1.2(@types/react@19.1.6)(react@19.1.0) - '@radix-ui/react-dismissable-layer': 1.1.10(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) - '@radix-ui/react-popper': 1.2.7(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) - '@radix-ui/react-portal': 1.1.9(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) - '@radix-ui/react-presence': 1.1.4(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) - '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) - '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.6)(react@19.1.0) + '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.8)(react@19.1.0) + '@radix-ui/react-context': 1.1.2(@types/react@19.1.8)(react@19.1.0) + '@radix-ui/react-dismissable-layer': 1.1.10(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-popper': 1.2.7(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-portal': 1.1.9(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-presence': 1.1.4(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.8)(react@19.1.0) react: 19.1.0 react-dom: 19.1.0(react@19.1.0) optionalDependencies: - '@types/react': 19.1.6 - '@types/react-dom': 19.1.5(@types/react@19.1.6) + '@types/react': 19.1.8 + '@types/react-dom': 19.1.6(@types/react@19.1.8) - '@radix-ui/react-id@1.1.1(@types/react@19.1.6)(react@19.1.0)': + '@radix-ui/react-id@1.1.1(@types/react@19.1.8)(react@19.1.0)': dependencies: - '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.6)(react@19.1.0) + '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.8)(react@19.1.0) react: 19.1.0 optionalDependencies: - '@types/react': 19.1.6 + '@types/react': 19.1.8 - '@radix-ui/react-menu@2.1.15(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + '@radix-ui/react-menu@2.1.15(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': dependencies: '@radix-ui/primitive': 1.1.2 - '@radix-ui/react-collection': 1.1.7(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) - '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.6)(react@19.1.0) - '@radix-ui/react-context': 1.1.2(@types/react@19.1.6)(react@19.1.0) - '@radix-ui/react-direction': 1.1.1(@types/react@19.1.6)(react@19.1.0) - '@radix-ui/react-dismissable-layer': 1.1.10(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) - '@radix-ui/react-focus-guards': 1.1.2(@types/react@19.1.6)(react@19.1.0) - '@radix-ui/react-focus-scope': 1.1.7(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) - '@radix-ui/react-id': 1.1.1(@types/react@19.1.6)(react@19.1.0) - '@radix-ui/react-popper': 1.2.7(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) - '@radix-ui/react-portal': 1.1.9(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) - '@radix-ui/react-presence': 1.1.4(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) - '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) - '@radix-ui/react-roving-focus': 1.1.10(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) - '@radix-ui/react-slot': 1.2.3(@types/react@19.1.6)(react@19.1.0) - '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.1.6)(react@19.1.0) + '@radix-ui/react-collection': 1.1.7(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.8)(react@19.1.0) + '@radix-ui/react-context': 1.1.2(@types/react@19.1.8)(react@19.1.0) + '@radix-ui/react-direction': 1.1.1(@types/react@19.1.8)(react@19.1.0) + '@radix-ui/react-dismissable-layer': 1.1.10(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-focus-guards': 1.1.2(@types/react@19.1.8)(react@19.1.0) + '@radix-ui/react-focus-scope': 1.1.7(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-id': 1.1.1(@types/react@19.1.8)(react@19.1.0) + '@radix-ui/react-popper': 1.2.7(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-portal': 1.1.9(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-presence': 1.1.4(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-roving-focus': 1.1.10(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-slot': 1.2.3(@types/react@19.1.8)(react@19.1.0) + '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.1.8)(react@19.1.0) aria-hidden: 1.2.6 react: 19.1.0 react-dom: 19.1.0(react@19.1.0) - react-remove-scroll: 2.7.0(@types/react@19.1.6)(react@19.1.0) + react-remove-scroll: 2.7.0(@types/react@19.1.8)(react@19.1.0) optionalDependencies: - '@types/react': 19.1.6 - '@types/react-dom': 19.1.5(@types/react@19.1.6) + '@types/react': 19.1.8 + '@types/react-dom': 19.1.6(@types/react@19.1.8) - '@radix-ui/react-popover@1.1.14(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + '@radix-ui/react-popover@1.1.14(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': dependencies: '@radix-ui/primitive': 1.1.2 - '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.6)(react@19.1.0) - '@radix-ui/react-context': 1.1.2(@types/react@19.1.6)(react@19.1.0) - '@radix-ui/react-dismissable-layer': 1.1.10(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) - '@radix-ui/react-focus-guards': 1.1.2(@types/react@19.1.6)(react@19.1.0) - '@radix-ui/react-focus-scope': 1.1.7(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) - '@radix-ui/react-id': 1.1.1(@types/react@19.1.6)(react@19.1.0) - '@radix-ui/react-popper': 1.2.7(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) - '@radix-ui/react-portal': 1.1.9(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) - '@radix-ui/react-presence': 1.1.4(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) - '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) - '@radix-ui/react-slot': 1.2.3(@types/react@19.1.6)(react@19.1.0) - '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.6)(react@19.1.0) + '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.8)(react@19.1.0) + '@radix-ui/react-context': 1.1.2(@types/react@19.1.8)(react@19.1.0) + '@radix-ui/react-dismissable-layer': 1.1.10(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-focus-guards': 1.1.2(@types/react@19.1.8)(react@19.1.0) + '@radix-ui/react-focus-scope': 1.1.7(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-id': 1.1.1(@types/react@19.1.8)(react@19.1.0) + '@radix-ui/react-popper': 1.2.7(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-portal': 1.1.9(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-presence': 1.1.4(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-slot': 1.2.3(@types/react@19.1.8)(react@19.1.0) + '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.8)(react@19.1.0) aria-hidden: 1.2.6 react: 19.1.0 react-dom: 19.1.0(react@19.1.0) - react-remove-scroll: 2.7.0(@types/react@19.1.6)(react@19.1.0) + react-remove-scroll: 2.7.0(@types/react@19.1.8)(react@19.1.0) optionalDependencies: - '@types/react': 19.1.6 - '@types/react-dom': 19.1.5(@types/react@19.1.6) + '@types/react': 19.1.8 + '@types/react-dom': 19.1.6(@types/react@19.1.8) - '@radix-ui/react-popper@1.2.7(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + '@radix-ui/react-popper@1.2.7(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': dependencies: '@floating-ui/react-dom': 2.1.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) - '@radix-ui/react-arrow': 1.1.7(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) - '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.6)(react@19.1.0) - '@radix-ui/react-context': 1.1.2(@types/react@19.1.6)(react@19.1.0) - '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) - '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.1.6)(react@19.1.0) - '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.6)(react@19.1.0) - '@radix-ui/react-use-rect': 1.1.1(@types/react@19.1.6)(react@19.1.0) - '@radix-ui/react-use-size': 1.1.1(@types/react@19.1.6)(react@19.1.0) + '@radix-ui/react-arrow': 1.1.7(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.8)(react@19.1.0) + '@radix-ui/react-context': 1.1.2(@types/react@19.1.8)(react@19.1.0) + '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.1.8)(react@19.1.0) + '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.8)(react@19.1.0) + '@radix-ui/react-use-rect': 1.1.1(@types/react@19.1.8)(react@19.1.0) + '@radix-ui/react-use-size': 1.1.1(@types/react@19.1.8)(react@19.1.0) '@radix-ui/rect': 1.1.1 react: 19.1.0 react-dom: 19.1.0(react@19.1.0) optionalDependencies: - '@types/react': 19.1.6 - '@types/react-dom': 19.1.5(@types/react@19.1.6) + '@types/react': 19.1.8 + '@types/react-dom': 19.1.6(@types/react@19.1.8) - '@radix-ui/react-portal@1.1.9(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + '@radix-ui/react-portal@1.1.9(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': dependencies: - '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) - '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.6)(react@19.1.0) + '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.8)(react@19.1.0) react: 19.1.0 react-dom: 19.1.0(react@19.1.0) optionalDependencies: - '@types/react': 19.1.6 - '@types/react-dom': 19.1.5(@types/react@19.1.6) + '@types/react': 19.1.8 + '@types/react-dom': 19.1.6(@types/react@19.1.8) - '@radix-ui/react-presence@1.1.4(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + '@radix-ui/react-presence@1.1.4(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': dependencies: - '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.6)(react@19.1.0) - '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.6)(react@19.1.0) + '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.8)(react@19.1.0) + '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.8)(react@19.1.0) react: 19.1.0 react-dom: 19.1.0(react@19.1.0) optionalDependencies: - '@types/react': 19.1.6 - '@types/react-dom': 19.1.5(@types/react@19.1.6) + '@types/react': 19.1.8 + '@types/react-dom': 19.1.6(@types/react@19.1.8) - '@radix-ui/react-primitive@2.1.3(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + '@radix-ui/react-primitive@2.1.3(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': dependencies: - '@radix-ui/react-slot': 1.2.3(@types/react@19.1.6)(react@19.1.0) + '@radix-ui/react-slot': 1.2.3(@types/react@19.1.8)(react@19.1.0) react: 19.1.0 react-dom: 19.1.0(react@19.1.0) optionalDependencies: - '@types/react': 19.1.6 - '@types/react-dom': 19.1.5(@types/react@19.1.6) + '@types/react': 19.1.8 + '@types/react-dom': 19.1.6(@types/react@19.1.8) - '@radix-ui/react-roving-focus@1.1.10(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + '@radix-ui/react-roving-focus@1.1.10(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': dependencies: '@radix-ui/primitive': 1.1.2 - '@radix-ui/react-collection': 1.1.7(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) - '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.6)(react@19.1.0) - '@radix-ui/react-context': 1.1.2(@types/react@19.1.6)(react@19.1.0) - '@radix-ui/react-direction': 1.1.1(@types/react@19.1.6)(react@19.1.0) - '@radix-ui/react-id': 1.1.1(@types/react@19.1.6)(react@19.1.0) - '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) - '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.1.6)(react@19.1.0) - '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.6)(react@19.1.0) + '@radix-ui/react-collection': 1.1.7(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.8)(react@19.1.0) + '@radix-ui/react-context': 1.1.2(@types/react@19.1.8)(react@19.1.0) + '@radix-ui/react-direction': 1.1.1(@types/react@19.1.8)(react@19.1.0) + '@radix-ui/react-id': 1.1.1(@types/react@19.1.8)(react@19.1.0) + '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.1.8)(react@19.1.0) + '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.8)(react@19.1.0) react: 19.1.0 react-dom: 19.1.0(react@19.1.0) optionalDependencies: - '@types/react': 19.1.6 - '@types/react-dom': 19.1.5(@types/react@19.1.6) + '@types/react': 19.1.8 + '@types/react-dom': 19.1.6(@types/react@19.1.8) - '@radix-ui/react-separator@1.1.7(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + '@radix-ui/react-separator@1.1.7(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': dependencies: - '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) react: 19.1.0 react-dom: 19.1.0(react@19.1.0) optionalDependencies: - '@types/react': 19.1.6 - '@types/react-dom': 19.1.5(@types/react@19.1.6) + '@types/react': 19.1.8 + '@types/react-dom': 19.1.6(@types/react@19.1.8) - '@radix-ui/react-slot@1.2.3(@types/react@19.1.6)(react@19.1.0)': + '@radix-ui/react-slot@1.2.3(@types/react@19.1.8)(react@19.1.0)': dependencies: - '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.6)(react@19.1.0) + '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.8)(react@19.1.0) react: 19.1.0 optionalDependencies: - '@types/react': 19.1.6 + '@types/react': 19.1.8 - '@radix-ui/react-tooltip@1.2.7(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + '@radix-ui/react-tooltip@1.2.7(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': dependencies: '@radix-ui/primitive': 1.1.2 - '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.6)(react@19.1.0) - '@radix-ui/react-context': 1.1.2(@types/react@19.1.6)(react@19.1.0) - '@radix-ui/react-dismissable-layer': 1.1.10(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) - '@radix-ui/react-id': 1.1.1(@types/react@19.1.6)(react@19.1.0) - '@radix-ui/react-popper': 1.2.7(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) - '@radix-ui/react-portal': 1.1.9(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) - '@radix-ui/react-presence': 1.1.4(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) - '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) - '@radix-ui/react-slot': 1.2.3(@types/react@19.1.6)(react@19.1.0) - '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.6)(react@19.1.0) - '@radix-ui/react-visually-hidden': 1.2.3(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.8)(react@19.1.0) + '@radix-ui/react-context': 1.1.2(@types/react@19.1.8)(react@19.1.0) + '@radix-ui/react-dismissable-layer': 1.1.10(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-id': 1.1.1(@types/react@19.1.8)(react@19.1.0) + '@radix-ui/react-popper': 1.2.7(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-portal': 1.1.9(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-presence': 1.1.4(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-slot': 1.2.3(@types/react@19.1.8)(react@19.1.0) + '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.8)(react@19.1.0) + '@radix-ui/react-visually-hidden': 1.2.3(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) react: 19.1.0 react-dom: 19.1.0(react@19.1.0) optionalDependencies: - '@types/react': 19.1.6 - '@types/react-dom': 19.1.5(@types/react@19.1.6) + '@types/react': 19.1.8 + '@types/react-dom': 19.1.6(@types/react@19.1.8) - '@radix-ui/react-use-callback-ref@1.1.1(@types/react@19.1.6)(react@19.1.0)': + '@radix-ui/react-use-callback-ref@1.1.1(@types/react@19.1.8)(react@19.1.0)': dependencies: react: 19.1.0 optionalDependencies: - '@types/react': 19.1.6 + '@types/react': 19.1.8 - '@radix-ui/react-use-controllable-state@1.2.2(@types/react@19.1.6)(react@19.1.0)': + '@radix-ui/react-use-controllable-state@1.2.2(@types/react@19.1.8)(react@19.1.0)': dependencies: - '@radix-ui/react-use-effect-event': 0.0.2(@types/react@19.1.6)(react@19.1.0) - '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.6)(react@19.1.0) + '@radix-ui/react-use-effect-event': 0.0.2(@types/react@19.1.8)(react@19.1.0) + '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.8)(react@19.1.0) react: 19.1.0 optionalDependencies: - '@types/react': 19.1.6 + '@types/react': 19.1.8 - '@radix-ui/react-use-effect-event@0.0.2(@types/react@19.1.6)(react@19.1.0)': + '@radix-ui/react-use-effect-event@0.0.2(@types/react@19.1.8)(react@19.1.0)': dependencies: - '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.6)(react@19.1.0) + '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.8)(react@19.1.0) react: 19.1.0 optionalDependencies: - '@types/react': 19.1.6 + '@types/react': 19.1.8 - '@radix-ui/react-use-escape-keydown@1.1.1(@types/react@19.1.6)(react@19.1.0)': + '@radix-ui/react-use-escape-keydown@1.1.1(@types/react@19.1.8)(react@19.1.0)': dependencies: - '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.1.6)(react@19.1.0) + '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.1.8)(react@19.1.0) react: 19.1.0 optionalDependencies: - '@types/react': 19.1.6 + '@types/react': 19.1.8 - '@radix-ui/react-use-layout-effect@1.1.1(@types/react@19.1.6)(react@19.1.0)': + '@radix-ui/react-use-layout-effect@1.1.1(@types/react@19.1.8)(react@19.1.0)': dependencies: react: 19.1.0 optionalDependencies: - '@types/react': 19.1.6 + '@types/react': 19.1.8 - '@radix-ui/react-use-rect@1.1.1(@types/react@19.1.6)(react@19.1.0)': + '@radix-ui/react-use-rect@1.1.1(@types/react@19.1.8)(react@19.1.0)': dependencies: '@radix-ui/rect': 1.1.1 react: 19.1.0 optionalDependencies: - '@types/react': 19.1.6 + '@types/react': 19.1.8 - '@radix-ui/react-use-size@1.1.1(@types/react@19.1.6)(react@19.1.0)': + '@radix-ui/react-use-size@1.1.1(@types/react@19.1.8)(react@19.1.0)': dependencies: - '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.6)(react@19.1.0) + '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.8)(react@19.1.0) react: 19.1.0 optionalDependencies: - '@types/react': 19.1.6 + '@types/react': 19.1.8 - '@radix-ui/react-visually-hidden@1.2.3(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + '@radix-ui/react-visually-hidden@1.2.3(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': dependencies: - '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) react: 19.1.0 react-dom: 19.1.0(react@19.1.0) optionalDependencies: - '@types/react': 19.1.6 - '@types/react-dom': 19.1.5(@types/react@19.1.6) + '@types/react': 19.1.8 + '@types/react-dom': 19.1.6(@types/react@19.1.8) '@radix-ui/rect@1.1.1': {} @@ -6529,9 +6766,9 @@ snapshots: '@types/hast': 3.0.4 hast-util-to-html: 9.0.5 - '@shikijs/core@3.4.2': + '@shikijs/core@3.6.0': dependencies: - '@shikijs/types': 3.4.2 + '@shikijs/types': 3.6.0 '@shikijs/vscode-textmate': 10.0.2 '@types/hast': 3.0.4 hast-util-to-html: 9.0.5 @@ -6542,9 +6779,9 @@ snapshots: '@shikijs/vscode-textmate': 10.0.2 oniguruma-to-es: 3.1.1 - '@shikijs/engine-javascript@3.4.2': + '@shikijs/engine-javascript@3.6.0': dependencies: - '@shikijs/types': 3.4.2 + '@shikijs/types': 3.6.0 '@shikijs/vscode-textmate': 10.0.2 oniguruma-to-es: 4.3.3 @@ -6553,26 +6790,26 @@ snapshots: '@shikijs/types': 2.5.0 '@shikijs/vscode-textmate': 10.0.2 - '@shikijs/engine-oniguruma@3.4.2': + '@shikijs/engine-oniguruma@3.6.0': dependencies: - '@shikijs/types': 3.4.2 + '@shikijs/types': 3.6.0 '@shikijs/vscode-textmate': 10.0.2 '@shikijs/langs@2.5.0': dependencies: '@shikijs/types': 2.5.0 - '@shikijs/langs@3.4.2': + '@shikijs/langs@3.6.0': dependencies: - '@shikijs/types': 3.4.2 + '@shikijs/types': 3.6.0 '@shikijs/themes@2.5.0': dependencies: '@shikijs/types': 2.5.0 - '@shikijs/themes@3.4.2': + '@shikijs/themes@3.6.0': dependencies: - '@shikijs/types': 3.4.2 + '@shikijs/types': 3.6.0 '@shikijs/twoslash@2.5.0(typescript@5.8.3)': dependencies: @@ -6588,14 +6825,14 @@ snapshots: '@shikijs/vscode-textmate': 10.0.2 '@types/hast': 3.0.4 - '@shikijs/types@3.4.2': + '@shikijs/types@3.6.0': dependencies: '@shikijs/vscode-textmate': 10.0.2 '@types/hast': 3.0.4 '@shikijs/vscode-textmate@10.0.2': {} - '@stylistic/eslint-plugin@4.4.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3)': + '@stylistic/eslint-plugin@5.0.0-beta.3(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3)': dependencies: '@typescript-eslint/utils': 8.33.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) eslint: 9.28.0(jiti@2.4.2) @@ -6617,7 +6854,7 @@ snapshots: dependencies: tslib: 2.8.1 - '@tailwindcss/node@4.1.8': + '@tailwindcss/node@4.1.10': dependencies: '@ampproject/remapping': 2.3.0 enhanced-resolve: 5.18.1 @@ -6625,69 +6862,69 @@ snapshots: lightningcss: 1.30.1 magic-string: 0.30.17 source-map-js: 1.2.1 - tailwindcss: 4.1.8 + tailwindcss: 4.1.10 - '@tailwindcss/oxide-android-arm64@4.1.8': + '@tailwindcss/oxide-android-arm64@4.1.10': optional: true - '@tailwindcss/oxide-darwin-arm64@4.1.8': + '@tailwindcss/oxide-darwin-arm64@4.1.10': optional: true - '@tailwindcss/oxide-darwin-x64@4.1.8': + '@tailwindcss/oxide-darwin-x64@4.1.10': optional: true - '@tailwindcss/oxide-freebsd-x64@4.1.8': + '@tailwindcss/oxide-freebsd-x64@4.1.10': optional: true - '@tailwindcss/oxide-linux-arm-gnueabihf@4.1.8': + '@tailwindcss/oxide-linux-arm-gnueabihf@4.1.10': optional: true - '@tailwindcss/oxide-linux-arm64-gnu@4.1.8': + '@tailwindcss/oxide-linux-arm64-gnu@4.1.10': optional: true - '@tailwindcss/oxide-linux-arm64-musl@4.1.8': + '@tailwindcss/oxide-linux-arm64-musl@4.1.10': optional: true - '@tailwindcss/oxide-linux-x64-gnu@4.1.8': + '@tailwindcss/oxide-linux-x64-gnu@4.1.10': optional: true - '@tailwindcss/oxide-linux-x64-musl@4.1.8': + '@tailwindcss/oxide-linux-x64-musl@4.1.10': optional: true - '@tailwindcss/oxide-wasm32-wasi@4.1.8': + '@tailwindcss/oxide-wasm32-wasi@4.1.10': optional: true - '@tailwindcss/oxide-win32-arm64-msvc@4.1.8': + '@tailwindcss/oxide-win32-arm64-msvc@4.1.10': optional: true - '@tailwindcss/oxide-win32-x64-msvc@4.1.8': + '@tailwindcss/oxide-win32-x64-msvc@4.1.10': optional: true - '@tailwindcss/oxide@4.1.8': + '@tailwindcss/oxide@4.1.10': dependencies: detect-libc: 2.0.4 tar: 7.4.3 optionalDependencies: - '@tailwindcss/oxide-android-arm64': 4.1.8 - '@tailwindcss/oxide-darwin-arm64': 4.1.8 - '@tailwindcss/oxide-darwin-x64': 4.1.8 - '@tailwindcss/oxide-freebsd-x64': 4.1.8 - '@tailwindcss/oxide-linux-arm-gnueabihf': 4.1.8 - '@tailwindcss/oxide-linux-arm64-gnu': 4.1.8 - '@tailwindcss/oxide-linux-arm64-musl': 4.1.8 - '@tailwindcss/oxide-linux-x64-gnu': 4.1.8 - '@tailwindcss/oxide-linux-x64-musl': 4.1.8 - '@tailwindcss/oxide-wasm32-wasi': 4.1.8 - '@tailwindcss/oxide-win32-arm64-msvc': 4.1.8 - '@tailwindcss/oxide-win32-x64-msvc': 4.1.8 - - '@tailwindcss/postcss@4.1.8': + '@tailwindcss/oxide-android-arm64': 4.1.10 + '@tailwindcss/oxide-darwin-arm64': 4.1.10 + '@tailwindcss/oxide-darwin-x64': 4.1.10 + '@tailwindcss/oxide-freebsd-x64': 4.1.10 + '@tailwindcss/oxide-linux-arm-gnueabihf': 4.1.10 + '@tailwindcss/oxide-linux-arm64-gnu': 4.1.10 + '@tailwindcss/oxide-linux-arm64-musl': 4.1.10 + '@tailwindcss/oxide-linux-x64-gnu': 4.1.10 + '@tailwindcss/oxide-linux-x64-musl': 4.1.10 + '@tailwindcss/oxide-wasm32-wasi': 4.1.10 + '@tailwindcss/oxide-win32-arm64-msvc': 4.1.10 + '@tailwindcss/oxide-win32-x64-msvc': 4.1.10 + + '@tailwindcss/postcss@4.1.10': dependencies: '@alloc/quick-lru': 5.2.0 - '@tailwindcss/node': 4.1.8 - '@tailwindcss/oxide': 4.1.8 - postcss: 8.5.4 - tailwindcss: 4.1.8 + '@tailwindcss/node': 4.1.10 + '@tailwindcss/oxide': 4.1.10 + postcss: 8.5.5 + tailwindcss: 4.1.10 '@tanstack/react-virtual@3.13.9(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': dependencies: @@ -6710,10 +6947,9 @@ snapshots: npm-to-yarn: 3.0.1 unist-util-visit: 5.0.0 - '@tybys/wasm-util@0.9.0': + '@types/conventional-commits-parser@5.0.1': dependencies: - tslib: 2.8.1 - optional: true + '@types/node': 22.15.24 '@types/d3-array@3.2.1': {} @@ -6860,7 +7096,7 @@ snapshots: '@types/hoist-non-react-statics@3.3.6': dependencies: - '@types/react': 19.1.6 + '@types/react': 19.1.8 hoist-non-react-statics: 3.3.2 '@types/json-schema@7.0.15': {} @@ -6883,18 +7119,18 @@ snapshots: dependencies: undici-types: 6.21.0 - '@types/react-dom@19.1.5(@types/react@19.1.6)': + '@types/react-dom@19.1.6(@types/react@19.1.8)': dependencies: - '@types/react': 19.1.6 + '@types/react': 19.1.8 '@types/react-redux@7.1.34': dependencies: '@types/hoist-non-react-statics': 3.3.6 - '@types/react': 19.1.6 + '@types/react': 19.1.8 hoist-non-react-statics: 3.3.2 redux: 4.2.1 - '@types/react@19.1.6': + '@types/react@19.1.8': dependencies: csstype: 3.1.3 @@ -6905,14 +7141,14 @@ snapshots: '@types/unist@3.0.3': {} - '@typescript-eslint/eslint-plugin@8.33.0(@typescript-eslint/parser@8.33.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3))(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3)': + '@typescript-eslint/eslint-plugin@8.34.0(@typescript-eslint/parser@8.34.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3))(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3)': dependencies: '@eslint-community/regexpp': 4.12.1 - '@typescript-eslint/parser': 8.33.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) - '@typescript-eslint/scope-manager': 8.33.0 - '@typescript-eslint/type-utils': 8.33.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) - '@typescript-eslint/utils': 8.33.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) - '@typescript-eslint/visitor-keys': 8.33.0 + '@typescript-eslint/parser': 8.34.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) + '@typescript-eslint/scope-manager': 8.34.0 + '@typescript-eslint/type-utils': 8.34.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) + '@typescript-eslint/utils': 8.34.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) + '@typescript-eslint/visitor-keys': 8.34.0 eslint: 9.28.0(jiti@2.4.2) graphemer: 1.4.0 ignore: 7.0.4 @@ -6922,12 +7158,12 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/parser@8.33.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3)': + '@typescript-eslint/parser@8.34.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3)': dependencies: - '@typescript-eslint/scope-manager': 8.33.0 - '@typescript-eslint/types': 8.33.0 - '@typescript-eslint/typescript-estree': 8.33.0(typescript@5.8.3) - '@typescript-eslint/visitor-keys': 8.33.0 + '@typescript-eslint/scope-manager': 8.34.0 + '@typescript-eslint/types': 8.34.0 + '@typescript-eslint/typescript-estree': 8.34.0(typescript@5.8.3) + '@typescript-eslint/visitor-keys': 8.34.0 debug: 4.4.1 eslint: 9.28.0(jiti@2.4.2) typescript: 5.8.3 @@ -6943,19 +7179,37 @@ snapshots: - supports-color - typescript + '@typescript-eslint/project-service@8.34.0(typescript@5.8.3)': + dependencies: + '@typescript-eslint/tsconfig-utils': 8.34.0(typescript@5.8.3) + '@typescript-eslint/types': 8.34.0 + debug: 4.4.1 + typescript: 5.8.3 + transitivePeerDependencies: + - supports-color + '@typescript-eslint/scope-manager@8.33.0': dependencies: '@typescript-eslint/types': 8.33.0 '@typescript-eslint/visitor-keys': 8.33.0 + '@typescript-eslint/scope-manager@8.34.0': + dependencies: + '@typescript-eslint/types': 8.34.0 + '@typescript-eslint/visitor-keys': 8.34.0 + '@typescript-eslint/tsconfig-utils@8.33.0(typescript@5.8.3)': dependencies: typescript: 5.8.3 - '@typescript-eslint/type-utils@8.33.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3)': + '@typescript-eslint/tsconfig-utils@8.34.0(typescript@5.8.3)': dependencies: - '@typescript-eslint/typescript-estree': 8.33.0(typescript@5.8.3) - '@typescript-eslint/utils': 8.33.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) + typescript: 5.8.3 + + '@typescript-eslint/type-utils@8.34.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3)': + dependencies: + '@typescript-eslint/typescript-estree': 8.34.0(typescript@5.8.3) + '@typescript-eslint/utils': 8.34.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) debug: 4.4.1 eslint: 9.28.0(jiti@2.4.2) ts-api-utils: 2.1.0(typescript@5.8.3) @@ -6965,6 +7219,8 @@ snapshots: '@typescript-eslint/types@8.33.0': {} + '@typescript-eslint/types@8.34.0': {} + '@typescript-eslint/typescript-estree@8.33.0(typescript@5.8.3)': dependencies: '@typescript-eslint/project-service': 8.33.0(typescript@5.8.3) @@ -6981,6 +7237,22 @@ snapshots: transitivePeerDependencies: - supports-color + '@typescript-eslint/typescript-estree@8.34.0(typescript@5.8.3)': + dependencies: + '@typescript-eslint/project-service': 8.34.0(typescript@5.8.3) + '@typescript-eslint/tsconfig-utils': 8.34.0(typescript@5.8.3) + '@typescript-eslint/types': 8.34.0 + '@typescript-eslint/visitor-keys': 8.34.0 + debug: 4.4.1 + fast-glob: 3.3.3 + is-glob: 4.0.3 + minimatch: 9.0.5 + semver: 7.7.2 + ts-api-utils: 2.1.0(typescript@5.8.3) + typescript: 5.8.3 + transitivePeerDependencies: + - supports-color + '@typescript-eslint/utils@8.33.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3)': dependencies: '@eslint-community/eslint-utils': 4.7.0(eslint@9.28.0(jiti@2.4.2)) @@ -6992,11 +7264,27 @@ snapshots: transitivePeerDependencies: - supports-color + '@typescript-eslint/utils@8.34.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3)': + dependencies: + '@eslint-community/eslint-utils': 4.7.0(eslint@9.28.0(jiti@2.4.2)) + '@typescript-eslint/scope-manager': 8.34.0 + '@typescript-eslint/types': 8.34.0 + '@typescript-eslint/typescript-estree': 8.34.0(typescript@5.8.3) + eslint: 9.28.0(jiti@2.4.2) + typescript: 5.8.3 + transitivePeerDependencies: + - supports-color + '@typescript-eslint/visitor-keys@8.33.0': dependencies: '@typescript-eslint/types': 8.33.0 eslint-visitor-keys: 4.2.0 + '@typescript-eslint/visitor-keys@8.34.0': + dependencies: + '@typescript-eslint/types': 8.34.0 + eslint-visitor-keys: 4.2.0 + '@typescript/vfs@1.6.1(typescript@5.8.3)': dependencies: debug: 4.4.1 @@ -7006,24 +7294,24 @@ snapshots: '@ungap/structured-clone@1.3.0': {} - '@univerjs-pro/collaboration-client-ui@0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3)': - dependencies: - '@univerjs-pro/collaboration': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs-pro/collaboration-client': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/core': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/design': 0.8.0(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) - '@univerjs/docs': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/docs-ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) - '@univerjs/drawing': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/engine-formula': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/engine-render': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) + '@univerjs-pro/collaboration-client-ui@0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3)': + dependencies: + '@univerjs-pro/collaboration': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs-pro/collaboration-client': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/core': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/design': 0.8.1(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@univerjs/docs': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/docs-ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/drawing': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/engine-formula': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/engine-render': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) '@univerjs/icons': 0.4.4(react-dom@19.1.0(react@19.1.0))(react@19.1.0) - '@univerjs/network': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) + '@univerjs/network': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) '@univerjs/protocol': 0.1.47-alpha.0(@grpc/grpc-js@1.13.4)(rxjs@7.8.2) - '@univerjs/rpc': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/sheets': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/sheets-ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) - '@univerjs/ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/rpc': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/sheets': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/sheets-ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) crypto-js: 4.2.0 react: 19.1.0 rxjs: 7.8.2 @@ -7038,48 +7326,48 @@ snapshots: - react-dom - typescript - '@univerjs-pro/collaboration-client@0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2)': + '@univerjs-pro/collaboration-client@0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2)': dependencies: - '@univerjs-pro/collaboration': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs-pro/license': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/core': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/docs': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/drawing': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/network': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) + '@univerjs-pro/collaboration': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs-pro/license': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/core': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/docs': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/drawing': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/network': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) '@univerjs/protocol': 0.1.47-alpha.0(@grpc/grpc-js@1.13.4)(rxjs@7.8.2) - '@univerjs/sheets': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/telemetry': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) + '@univerjs/sheets': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/telemetry': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) crypto-js: 4.2.0 rxjs: 7.8.2 transitivePeerDependencies: - '@grpc/grpc-js' - '@wendellhu/redi' - '@univerjs-pro/collaboration@0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2)': + '@univerjs-pro/collaboration@0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2)': dependencies: - '@univerjs-pro/license': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/core': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/data-validation': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/docs': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/engine-formula': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) + '@univerjs-pro/license': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/core': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/data-validation': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/docs': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/engine-formula': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) '@univerjs/protocol': 0.1.47-alpha.0(@grpc/grpc-js@1.13.4)(rxjs@7.8.2) - '@univerjs/sheets': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/sheets-conditional-formatting': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/sheets-drawing': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/sheets-filter': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/sheets-hyper-link': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/thread-comment': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) + '@univerjs/sheets': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/sheets-conditional-formatting': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/sheets-drawing': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/sheets-filter': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/sheets-hyper-link': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/thread-comment': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) uuid: 11.1.0 transitivePeerDependencies: - '@grpc/grpc-js' - '@wendellhu/redi' - rxjs - '@univerjs-pro/docs-exchange-client@0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3)': + '@univerjs-pro/docs-exchange-client@0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3)': dependencies: - '@univerjs-pro/exchange-client': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) - '@univerjs/core': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs-pro/exchange-client': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/core': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) transitivePeerDependencies: - '@grpc/grpc-js' - '@types/react' @@ -7093,20 +7381,20 @@ snapshots: - rxjs - typescript - '@univerjs-pro/docs-print@0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3)': + '@univerjs-pro/docs-print@0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3)': dependencies: - '@univerjs-pro/license': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs-pro/print': 0.8.0 - '@univerjs/core': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/docs': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/docs-ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) - '@univerjs/engine-render': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) + '@univerjs-pro/license': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs-pro/print': 0.8.1 + '@univerjs/core': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/docs': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/docs-ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/engine-render': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) '@univerjs/icons': 0.4.4(react-dom@19.1.0(react@19.1.0))(react@19.1.0) - '@univerjs/network': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/network': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) react: 19.1.0 optionalDependencies: - '@univerjs-pro/collaboration-client': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) + '@univerjs-pro/collaboration-client': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) transitivePeerDependencies: - '@grpc/grpc-js' - '@types/react' @@ -7119,43 +7407,43 @@ snapshots: - rxjs - typescript - '@univerjs-pro/edit-history-loader@0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3)': - dependencies: - '@univerjs-pro/collaboration': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs-pro/collaboration-client': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs-pro/edit-history-viewer': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) - '@univerjs-pro/license': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs-pro/sheets-pivot': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs-pro/sheets-sparkline': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs-pro/sheets-sparkline-ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) - '@univerjs/core': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/data-validation': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/design': 0.8.0(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) - '@univerjs/docs': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/docs-ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) - '@univerjs/drawing': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/drawing-ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) - '@univerjs/engine-formula': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/engine-render': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) + '@univerjs-pro/edit-history-loader@0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3)': + dependencies: + '@univerjs-pro/collaboration': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs-pro/collaboration-client': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs-pro/edit-history-viewer': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs-pro/license': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs-pro/sheets-pivot': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs-pro/sheets-sparkline': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs-pro/sheets-sparkline-ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/core': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/data-validation': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/design': 0.8.1(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@univerjs/docs': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/docs-ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/drawing': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/drawing-ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/engine-formula': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/engine-render': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) '@univerjs/icons': 0.4.4(react-dom@19.1.0(react@19.1.0))(react@19.1.0) - '@univerjs/network': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/rpc': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/sheets': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/sheets-conditional-formatting': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/sheets-conditional-formatting-ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) - '@univerjs/sheets-data-validation': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/sheets-data-validation-ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) - '@univerjs/sheets-drawing': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/sheets-drawing-ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) - '@univerjs/sheets-filter': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/sheets-filter-ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) - '@univerjs/sheets-formula': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/sheets-formula-ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) - '@univerjs/sheets-hyper-link': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/sheets-hyper-link-ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) - '@univerjs/sheets-numfmt': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/sheets-ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) - '@univerjs/ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/network': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/rpc': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/sheets': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/sheets-conditional-formatting': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/sheets-conditional-formatting-ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/sheets-data-validation': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/sheets-data-validation-ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/sheets-drawing': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/sheets-drawing-ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/sheets-filter': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/sheets-filter-ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/sheets-formula': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/sheets-formula-ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/sheets-hyper-link': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/sheets-hyper-link-ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/sheets-numfmt': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/sheets-ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) react: 19.1.0 rxjs: 7.8.2 transitivePeerDependencies: @@ -7169,25 +7457,25 @@ snapshots: - react-dom - typescript - '@univerjs-pro/edit-history-viewer@0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3)': - dependencies: - '@univerjs-pro/collaboration': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs-pro/collaboration-client': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs-pro/collaboration-client-ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) - '@univerjs-pro/sheets-sparkline': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/core': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/data-validation': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/design': 0.8.0(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) - '@univerjs/drawing': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/engine-render': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) + '@univerjs-pro/edit-history-viewer@0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3)': + dependencies: + '@univerjs-pro/collaboration': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs-pro/collaboration-client': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs-pro/collaboration-client-ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs-pro/sheets-sparkline': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/core': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/data-validation': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/design': 0.8.1(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@univerjs/drawing': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/engine-render': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) '@univerjs/icons': 0.4.4(react-dom@19.1.0(react@19.1.0))(react@19.1.0) - '@univerjs/network': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) + '@univerjs/network': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) '@univerjs/protocol': 0.1.47-alpha.0(@grpc/grpc-js@1.13.4)(rxjs@7.8.2) - '@univerjs/sheets': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/sheets-conditional-formatting': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/sheets-filter': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/sheets-ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) - '@univerjs/ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/sheets': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/sheets-conditional-formatting': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/sheets-filter': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/sheets-ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) react: 19.1.0 rxjs: 7.8.2 transitivePeerDependencies: @@ -7201,37 +7489,37 @@ snapshots: - react-dom - typescript - '@univerjs-pro/engine-chart@0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2)': + '@univerjs-pro/engine-chart@0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2)': dependencies: - '@univerjs/core': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/engine-render': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) + '@univerjs/core': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/engine-render': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) rxjs: 7.8.2 transitivePeerDependencies: - '@grpc/grpc-js' - '@wendellhu/redi' - '@univerjs-pro/engine-formula@0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2)': + '@univerjs-pro/engine-formula@0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2)': dependencies: - '@univerjs-pro/license': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/core': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/engine-formula': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) + '@univerjs-pro/license': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/core': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/engine-formula': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) rxjs: 7.8.2 transitivePeerDependencies: - '@grpc/grpc-js' - '@wendellhu/redi' - '@univerjs-pro/engine-pivot@0.8.0': {} + '@univerjs-pro/engine-pivot@0.8.1': {} - '@univerjs-pro/exchange-client@0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3)': + '@univerjs-pro/exchange-client@0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3)': dependencies: - '@univerjs-pro/collaboration': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs-pro/license': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/core': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/design': 0.8.0(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@univerjs-pro/collaboration': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs-pro/license': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/core': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/design': 0.8.1(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) '@univerjs/icons': 0.4.4(react-dom@19.1.0(react@19.1.0))(react@19.1.0) - '@univerjs/network': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) + '@univerjs/network': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) '@univerjs/protocol': 0.1.47-alpha.0(@grpc/grpc-js@1.13.4)(rxjs@7.8.2) - '@univerjs/ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) pako: 2.1.0 react: 19.1.0 rxjs: 7.8.2 @@ -7246,34 +7534,34 @@ snapshots: - react-dom - typescript - '@univerjs-pro/license@0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2)': + '@univerjs-pro/license@0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2)': dependencies: '@noble/ed25519': 2.2.3 '@noble/hashes': 1.7.1 - '@univerjs/core': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/engine-render': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) + '@univerjs/core': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/engine-render': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) rxjs: 7.8.2 transitivePeerDependencies: - '@grpc/grpc-js' - '@wendellhu/redi' - '@univerjs-pro/print@0.8.0': {} + '@univerjs-pro/print@0.8.1': {} - '@univerjs-pro/sheets-chart-ui@0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3)': + '@univerjs-pro/sheets-chart-ui@0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3)': dependencies: - '@univerjs-pro/engine-chart': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs-pro/sheets-chart': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/core': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/design': 0.8.0(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) - '@univerjs/drawing': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/engine-formula': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/engine-render': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) + '@univerjs-pro/engine-chart': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs-pro/sheets-chart': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/core': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/design': 0.8.1(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@univerjs/drawing': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/engine-formula': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/engine-render': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) '@univerjs/icons': 0.4.4(react-dom@19.1.0(react@19.1.0))(react@19.1.0) - '@univerjs/sheets': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/sheets-drawing-ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) - '@univerjs/sheets-formula-ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) - '@univerjs/sheets-ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) - '@univerjs/ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/sheets': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/sheets-drawing-ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/sheets-formula-ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/sheets-ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) echarts: 5.6.0 echarts-wordcloud: 2.1.0(echarts@5.6.0) react: 19.1.0 @@ -7289,24 +7577,24 @@ snapshots: - react-dom - typescript - '@univerjs-pro/sheets-chart@0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2)': + '@univerjs-pro/sheets-chart@0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2)': dependencies: - '@univerjs-pro/engine-chart': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs-pro/license': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/core': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/sheets': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) + '@univerjs-pro/engine-chart': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs-pro/license': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/core': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/sheets': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) rxjs: 7.8.2 transitivePeerDependencies: - '@grpc/grpc-js' - '@wendellhu/redi' - '@univerjs-pro/sheets-exchange-client@0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3)': + '@univerjs-pro/sheets-exchange-client@0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3)': dependencies: - '@univerjs-pro/exchange-client': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) - '@univerjs/core': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/sheets': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/sheets-ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) - '@univerjs/ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs-pro/exchange-client': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/core': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/sheets': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/sheets-ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) transitivePeerDependencies: - '@grpc/grpc-js' - '@types/react' @@ -7320,20 +7608,20 @@ snapshots: - rxjs - typescript - '@univerjs-pro/sheets-pivot-ui@0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3)': + '@univerjs-pro/sheets-pivot-ui@0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3)': dependencies: - '@univerjs-pro/engine-pivot': 0.8.0 - '@univerjs-pro/sheets-pivot': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/core': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/design': 0.8.0(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) - '@univerjs/docs-ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) - '@univerjs/engine-formula': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/engine-render': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) + '@univerjs-pro/engine-pivot': 0.8.1 + '@univerjs-pro/sheets-pivot': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/core': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/design': 0.8.1(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@univerjs/docs-ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/engine-formula': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/engine-render': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) '@univerjs/icons': 0.4.4(react-dom@19.1.0(react@19.1.0))(react@19.1.0) - '@univerjs/sheets': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/sheets-formula-ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) - '@univerjs/sheets-ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) - '@univerjs/ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/sheets': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/sheets-formula-ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/sheets-ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) react: 19.1.0 react-beautiful-dnd: 13.1.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) react-dom: 19.1.0(react@19.1.0) @@ -7349,39 +7637,39 @@ snapshots: - react-native - typescript - '@univerjs-pro/sheets-pivot@0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2)': + '@univerjs-pro/sheets-pivot@0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2)': dependencies: - '@univerjs-pro/engine-pivot': 0.8.0 - '@univerjs-pro/license': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/core': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/engine-formula': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/engine-render': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/rpc': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/sheets': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/sheets-filter': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) + '@univerjs-pro/engine-pivot': 0.8.1 + '@univerjs-pro/license': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/core': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/engine-formula': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/engine-render': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/rpc': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/sheets': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/sheets-filter': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) rxjs: 7.8.2 transitivePeerDependencies: - '@grpc/grpc-js' - '@wendellhu/redi' - '@univerjs-pro/sheets-print@0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3)': + '@univerjs-pro/sheets-print@0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3)': dependencies: - '@univerjs-pro/license': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs-pro/print': 0.8.0 - '@univerjs/core': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/design': 0.8.0(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) - '@univerjs/docs': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/docs-ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) - '@univerjs/engine-render': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) + '@univerjs-pro/license': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs-pro/print': 0.8.1 + '@univerjs/core': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/design': 0.8.1(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@univerjs/docs': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/docs-ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/engine-render': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) '@univerjs/icons': 0.4.4(react-dom@19.1.0(react@19.1.0))(react@19.1.0) - '@univerjs/network': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/sheets': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/sheets-ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) - '@univerjs/ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/network': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/sheets': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/sheets-ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) react: 19.1.0 rxjs: 7.8.2 optionalDependencies: - '@univerjs-pro/collaboration-client': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) + '@univerjs-pro/collaboration-client': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) transitivePeerDependencies: - '@grpc/grpc-js' - '@types/react' @@ -7393,19 +7681,19 @@ snapshots: - react-dom - typescript - '@univerjs-pro/sheets-sparkline-ui@0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3)': + '@univerjs-pro/sheets-sparkline-ui@0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3)': dependencies: - '@univerjs-pro/sheets-sparkline': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/core': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/design': 0.8.0(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) - '@univerjs/engine-formula': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/engine-render': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) + '@univerjs-pro/sheets-sparkline': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/core': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/design': 0.8.1(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@univerjs/engine-formula': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/engine-render': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) '@univerjs/icons': 0.4.4(react-dom@19.1.0(react@19.1.0))(react@19.1.0) - '@univerjs/sheets': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/sheets-formula-ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) - '@univerjs/sheets-graphics': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) - '@univerjs/sheets-ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) - '@univerjs/ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/sheets': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/sheets-formula-ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/sheets-graphics': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/sheets-ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) react: 19.1.0 rxjs: 7.8.2 transitivePeerDependencies: @@ -7419,25 +7707,25 @@ snapshots: - react-dom - typescript - '@univerjs-pro/sheets-sparkline@0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2)': + '@univerjs-pro/sheets-sparkline@0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2)': dependencies: - '@univerjs-pro/license': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/core': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/sheets': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) + '@univerjs-pro/license': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/core': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/sheets': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) rxjs: 7.8.2 transitivePeerDependencies: - '@grpc/grpc-js' - '@wendellhu/redi' - '@univerjs-pro/thread-comment-datasource@0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3)': + '@univerjs-pro/thread-comment-datasource@0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3)': dependencies: - '@univerjs-pro/collaboration-client': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs-pro/license': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/core': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/network': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) + '@univerjs-pro/collaboration-client': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs-pro/license': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/core': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/network': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) '@univerjs/protocol': 0.1.47-alpha.0(@grpc/grpc-js@1.13.4)(rxjs@7.8.2) - '@univerjs/thread-comment': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/thread-comment-ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/thread-comment': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/thread-comment-ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) rxjs: 7.8.2 transitivePeerDependencies: - '@grpc/grpc-js' @@ -7451,11 +7739,11 @@ snapshots: - react-dom - typescript - '@univerjs/core@0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2)': + '@univerjs/core@0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2)': dependencies: '@univerjs/protocol': 0.1.46(@grpc/grpc-js@1.13.4)(rxjs@7.8.2) - '@univerjs/themes': 0.8.0 - '@wendellhu/redi': 0.18.0 + '@univerjs/themes': 0.8.1 + '@wendellhu/redi': 0.18.3 async-lock: 1.4.1 dayjs: 1.11.13 fast-diff: 1.3.0 @@ -7469,26 +7757,26 @@ snapshots: transitivePeerDependencies: - '@grpc/grpc-js' - '@univerjs/data-validation@0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2)': + '@univerjs/data-validation@0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2)': dependencies: - '@univerjs/core': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) + '@univerjs/core': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) rxjs: 7.8.2 transitivePeerDependencies: - '@grpc/grpc-js' - '@wendellhu/redi' - '@univerjs/design@0.8.0(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': + '@univerjs/design@0.8.1(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': dependencies: - '@radix-ui/react-dialog': 1.1.14(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) - '@radix-ui/react-dropdown-menu': 2.1.15(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) - '@radix-ui/react-hover-card': 1.1.14(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) - '@radix-ui/react-popover': 1.1.14(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) - '@radix-ui/react-separator': 1.1.7(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) - '@radix-ui/react-slot': 1.2.3(@types/react@19.1.6)(react@19.1.0) - '@radix-ui/react-tooltip': 1.2.7(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-dialog': 1.1.14(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-dropdown-menu': 2.1.15(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-hover-card': 1.1.14(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-popover': 1.1.14(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-separator': 1.1.7(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-slot': 1.2.3(@types/react@19.1.8)(react@19.1.0) + '@radix-ui/react-tooltip': 1.2.7(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) '@rc-component/trigger': 2.2.6(react-dom@19.1.0(react@19.1.0))(react@19.1.0) '@univerjs/icons': 0.4.4(react-dom@19.1.0(react@19.1.0))(react@19.1.0) - '@univerjs/themes': 0.8.0 + '@univerjs/themes': 0.8.1 class-variance-authority: 0.7.1 clsx: 2.1.1 dayjs: 1.11.13 @@ -7501,7 +7789,7 @@ snapshots: react-grid-layout: 1.5.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) react-transition-group: 4.4.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0) sonner: 2.0.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0) - tailwind-merge: 3.3.0 + tailwind-merge: 3.3.1 transitivePeerDependencies: - '@types/react' - '@types/react-dom' @@ -7509,17 +7797,17 @@ snapshots: - luxon - moment - '@univerjs/docs-drawing-ui@0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3)': + '@univerjs/docs-drawing-ui@0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3)': dependencies: - '@univerjs/core': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/design': 0.8.0(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) - '@univerjs/docs': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/docs-drawing': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/docs-ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) - '@univerjs/drawing': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/drawing-ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) - '@univerjs/engine-render': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/core': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/design': 0.8.1(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@univerjs/docs': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/docs-drawing': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/docs-ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/drawing': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/drawing-ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/engine-render': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) react: 19.1.0 rxjs: 7.8.2 transitivePeerDependencies: @@ -7533,25 +7821,25 @@ snapshots: - react-dom - typescript - '@univerjs/docs-drawing@0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2)': + '@univerjs/docs-drawing@0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2)': dependencies: - '@univerjs/core': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/drawing': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) + '@univerjs/core': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/drawing': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) transitivePeerDependencies: - '@grpc/grpc-js' - '@wendellhu/redi' - rxjs - '@univerjs/docs-hyper-link-ui@0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3)': + '@univerjs/docs-hyper-link-ui@0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3)': dependencies: - '@univerjs/core': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/design': 0.8.0(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) - '@univerjs/docs': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/docs-hyper-link': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/docs-ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) - '@univerjs/engine-render': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) + '@univerjs/core': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/design': 0.8.1(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@univerjs/docs': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/docs-hyper-link': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/docs-ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/engine-render': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) '@univerjs/icons': 0.4.4(react-dom@19.1.0(react@19.1.0))(react@19.1.0) - '@univerjs/ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) react: 19.1.0 rxjs: 7.8.2 transitivePeerDependencies: @@ -7565,24 +7853,24 @@ snapshots: - react-dom - typescript - '@univerjs/docs-hyper-link@0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2)': + '@univerjs/docs-hyper-link@0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2)': dependencies: - '@univerjs/core': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) + '@univerjs/core': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) transitivePeerDependencies: - '@grpc/grpc-js' - '@wendellhu/redi' - rxjs - '@univerjs/docs-thread-comment-ui@0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3)': + '@univerjs/docs-thread-comment-ui@0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3)': dependencies: - '@univerjs/core': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/docs': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/docs-ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) - '@univerjs/engine-render': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) + '@univerjs/core': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/docs': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/docs-ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/engine-render': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) '@univerjs/icons': 0.4.4(react-dom@19.1.0(react@19.1.0))(react@19.1.0) - '@univerjs/thread-comment': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/thread-comment-ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) - '@univerjs/ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/thread-comment': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/thread-comment-ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) react: 19.1.0 rxjs: 7.8.2 transitivePeerDependencies: @@ -7596,15 +7884,15 @@ snapshots: - react-dom - typescript - '@univerjs/docs-ui@0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3)': + '@univerjs/docs-ui@0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3)': dependencies: - '@univerjs/core': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/design': 0.8.0(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) - '@univerjs/docs': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/drawing': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/engine-render': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) + '@univerjs/core': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/design': 0.8.1(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@univerjs/docs': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/drawing': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/engine-render': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) '@univerjs/icons': 0.4.4(react-dom@19.1.0(react@19.1.0))(react@19.1.0) - '@univerjs/ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) react: 19.1.0 rxjs: 7.8.2 transitivePeerDependencies: @@ -7618,23 +7906,23 @@ snapshots: - react-dom - typescript - '@univerjs/docs@0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2)': + '@univerjs/docs@0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2)': dependencies: - '@univerjs/core': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/engine-render': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) + '@univerjs/core': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/engine-render': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) rxjs: 7.8.2 transitivePeerDependencies: - '@grpc/grpc-js' - '@wendellhu/redi' - '@univerjs/drawing-ui@0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3)': + '@univerjs/drawing-ui@0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3)': dependencies: - '@univerjs/core': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/design': 0.8.0(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) - '@univerjs/drawing': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/engine-render': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) + '@univerjs/core': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/design': 0.8.1(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@univerjs/drawing': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/engine-render': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) '@univerjs/icons': 0.4.4(react-dom@19.1.0(react@19.1.0))(react@19.1.0) - '@univerjs/ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) react: 19.1.0 rxjs: 7.8.2 transitivePeerDependencies: @@ -7648,34 +7936,34 @@ snapshots: - react-dom - typescript - '@univerjs/drawing@0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2)': + '@univerjs/drawing@0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2)': dependencies: - '@univerjs/core': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) + '@univerjs/core': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) ot-json1: 1.0.2 rxjs: 7.8.2 transitivePeerDependencies: - '@grpc/grpc-js' - '@wendellhu/redi' - '@univerjs/engine-formula@0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2)': + '@univerjs/engine-formula@0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2)': dependencies: '@flatten-js/interval-tree': 1.1.3 - '@univerjs/core': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/engine-numfmt': 0.8.0 - '@univerjs/rpc': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) + '@univerjs/core': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/engine-numfmt': 0.8.1 + '@univerjs/rpc': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) decimal.js: 10.5.0 rxjs: 7.8.2 transitivePeerDependencies: - '@grpc/grpc-js' - '@wendellhu/redi' - '@univerjs/engine-numfmt@0.8.0': {} + '@univerjs/engine-numfmt@0.8.1': {} - '@univerjs/engine-render@0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2)': + '@univerjs/engine-render@0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2)': dependencies: '@floating-ui/dom': 1.7.0 '@floating-ui/utils': 0.2.9 - '@univerjs/core': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) + '@univerjs/core': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) cjk-regex: 3.3.0 franc-min: 6.2.0 opentype.js: 1.3.4 @@ -7684,13 +7972,13 @@ snapshots: - '@grpc/grpc-js' - '@wendellhu/redi' - '@univerjs/find-replace@0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3)': + '@univerjs/find-replace@0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3)': dependencies: - '@univerjs/core': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/design': 0.8.0(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) - '@univerjs/engine-render': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) + '@univerjs/core': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/design': 0.8.1(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@univerjs/engine-render': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) '@univerjs/icons': 0.4.4(react-dom@19.1.0(react@19.1.0))(react@19.1.0) - '@univerjs/ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) react: 19.1.0 rxjs: 7.8.2 transitivePeerDependencies: @@ -7709,20 +7997,20 @@ snapshots: react: 19.1.0 react-dom: 19.1.0(react@19.1.0) - '@univerjs/network@0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2)': + '@univerjs/network@0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2)': dependencies: - '@univerjs/core': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) + '@univerjs/core': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) rxjs: 7.8.2 transitivePeerDependencies: - '@grpc/grpc-js' - '@wendellhu/redi' - '@univerjs/preset-docs-advanced@0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3)': + '@univerjs/preset-docs-advanced@0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3)': dependencies: - '@univerjs-pro/docs-exchange-client': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) - '@univerjs-pro/docs-print': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) - '@univerjs-pro/exchange-client': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) - '@univerjs-pro/license': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) + '@univerjs-pro/docs-exchange-client': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs-pro/docs-print': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs-pro/exchange-client': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs-pro/license': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) react: 19.1.0 react-dom: 19.1.0(react@19.1.0) rxjs: 7.8.2 @@ -7736,11 +8024,11 @@ snapshots: - moment - typescript - '@univerjs/preset-docs-collaboration@0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3)': + '@univerjs/preset-docs-collaboration@0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3)': dependencies: - '@univerjs-pro/collaboration': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs-pro/collaboration-client': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs-pro/collaboration-client-ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs-pro/collaboration': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs-pro/collaboration-client': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs-pro/collaboration-client-ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) react: 19.1.0 react-dom: 19.1.0(react@19.1.0) rxjs: 7.8.2 @@ -7754,15 +8042,15 @@ snapshots: - moment - typescript - '@univerjs/preset-docs-core@0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3)': + '@univerjs/preset-docs-core@0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3)': dependencies: - '@univerjs/design': 0.8.0(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) - '@univerjs/docs': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/docs-ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) - '@univerjs/engine-formula': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/engine-render': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/network': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/design': 0.8.1(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@univerjs/docs': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/docs-ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/engine-formula': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/engine-render': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/network': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) react: 19.1.0 react-dom: 19.1.0(react@19.1.0) rxjs: 7.8.2 @@ -7776,12 +8064,12 @@ snapshots: - moment - typescript - '@univerjs/preset-docs-drawing@0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3)': + '@univerjs/preset-docs-drawing@0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3)': dependencies: - '@univerjs/docs-drawing': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/docs-drawing-ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) - '@univerjs/drawing': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/drawing-ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/docs-drawing': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/docs-drawing-ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/drawing': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/drawing-ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) react: 19.1.0 react-dom: 19.1.0(react@19.1.0) rxjs: 7.8.2 @@ -7795,10 +8083,10 @@ snapshots: - moment - typescript - '@univerjs/preset-docs-hyper-link@0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3)': + '@univerjs/preset-docs-hyper-link@0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3)': dependencies: - '@univerjs/docs-hyper-link': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/docs-hyper-link-ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/docs-hyper-link': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/docs-hyper-link-ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) react: 19.1.0 react-dom: 19.1.0(react@19.1.0) rxjs: 7.8.2 @@ -7812,10 +8100,10 @@ snapshots: - moment - typescript - '@univerjs/preset-docs-thread-comment@0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3)': + '@univerjs/preset-docs-thread-comment@0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3)': dependencies: - '@univerjs/docs-thread-comment-ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) - '@univerjs/thread-comment-ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/docs-thread-comment-ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/thread-comment-ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) react: 19.1.0 react-dom: 19.1.0(react@19.1.0) rxjs: 7.8.2 @@ -7829,21 +8117,21 @@ snapshots: - moment - typescript - '@univerjs/preset-sheets-advanced@0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3)': - dependencies: - '@univerjs-pro/engine-chart': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs-pro/engine-formula': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs-pro/exchange-client': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) - '@univerjs-pro/license': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs-pro/sheets-chart': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs-pro/sheets-chart-ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) - '@univerjs-pro/sheets-exchange-client': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) - '@univerjs-pro/sheets-pivot': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs-pro/sheets-pivot-ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) - '@univerjs-pro/sheets-print': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) - '@univerjs-pro/sheets-sparkline': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs-pro/sheets-sparkline-ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) - '@univerjs/sheets-graphics': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/preset-sheets-advanced@0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3)': + dependencies: + '@univerjs-pro/engine-chart': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs-pro/engine-formula': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs-pro/exchange-client': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs-pro/license': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs-pro/sheets-chart': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs-pro/sheets-chart-ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs-pro/sheets-exchange-client': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs-pro/sheets-pivot': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs-pro/sheets-pivot-ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs-pro/sheets-print': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs-pro/sheets-sparkline': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs-pro/sheets-sparkline-ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/sheets-graphics': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) react: 19.1.0 react-dom: 19.1.0(react@19.1.0) rxjs: 7.8.2 @@ -7858,15 +8146,15 @@ snapshots: - react-native - typescript - '@univerjs/preset-sheets-collaboration@0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3)': + '@univerjs/preset-sheets-collaboration@0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3)': dependencies: - '@univerjs-pro/collaboration': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs-pro/collaboration-client': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs-pro/collaboration-client-ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) - '@univerjs-pro/edit-history-loader': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) - '@univerjs-pro/edit-history-viewer': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) - '@univerjs-pro/thread-comment-datasource': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) - '@univerjs/preset-sheets-advanced': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs-pro/collaboration': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs-pro/collaboration-client': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs-pro/collaboration-client-ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs-pro/edit-history-loader': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs-pro/edit-history-viewer': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs-pro/thread-comment-datasource': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/preset-sheets-advanced': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) react: 19.1.0 react-dom: 19.1.0(react@19.1.0) rxjs: 7.8.2 @@ -7881,10 +8169,10 @@ snapshots: - react-native - typescript - '@univerjs/preset-sheets-conditional-formatting@0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3)': + '@univerjs/preset-sheets-conditional-formatting@0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3)': dependencies: - '@univerjs/sheets-conditional-formatting': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/sheets-conditional-formatting-ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/sheets-conditional-formatting': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/sheets-conditional-formatting-ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) react: 19.1.0 react-dom: 19.1.0(react@19.1.0) rxjs: 7.8.2 @@ -7898,23 +8186,23 @@ snapshots: - moment - typescript - '@univerjs/preset-sheets-core@0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3)': - dependencies: - '@univerjs/design': 0.8.0(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) - '@univerjs/docs': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/docs-ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) - '@univerjs/engine-formula': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/engine-numfmt': 0.8.0 - '@univerjs/engine-render': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/network': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/rpc': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/sheets': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/sheets-formula': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/sheets-formula-ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) - '@univerjs/sheets-numfmt': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/sheets-numfmt-ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) - '@univerjs/sheets-ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) - '@univerjs/ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/preset-sheets-core@0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3)': + dependencies: + '@univerjs/design': 0.8.1(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@univerjs/docs': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/docs-ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/engine-formula': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/engine-numfmt': 0.8.1 + '@univerjs/engine-render': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/network': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/rpc': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/sheets': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/sheets-formula': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/sheets-formula-ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/sheets-numfmt': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/sheets-numfmt-ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/sheets-ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) react: 19.1.0 react-dom: 19.1.0(react@19.1.0) rxjs: 7.8.2 @@ -7928,11 +8216,11 @@ snapshots: - moment - typescript - '@univerjs/preset-sheets-data-validation@0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3)': + '@univerjs/preset-sheets-data-validation@0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3)': dependencies: - '@univerjs/data-validation': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/sheets-data-validation': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/sheets-data-validation-ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/data-validation': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/sheets-data-validation': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/sheets-data-validation-ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) react: 19.1.0 react-dom: 19.1.0(react@19.1.0) rxjs: 7.8.2 @@ -7946,13 +8234,13 @@ snapshots: - moment - typescript - '@univerjs/preset-sheets-drawing@0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3)': + '@univerjs/preset-sheets-drawing@0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3)': dependencies: - '@univerjs/docs-drawing': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/drawing': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/drawing-ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) - '@univerjs/sheets-drawing': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/sheets-drawing-ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/docs-drawing': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/drawing': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/drawing-ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/sheets-drawing': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/sheets-drawing-ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) react: 19.1.0 react-dom: 19.1.0(react@19.1.0) rxjs: 7.8.2 @@ -7966,10 +8254,10 @@ snapshots: - moment - typescript - '@univerjs/preset-sheets-filter@0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3)': + '@univerjs/preset-sheets-filter@0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3)': dependencies: - '@univerjs/sheets-filter': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/sheets-filter-ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/sheets-filter': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/sheets-filter-ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) react: 19.1.0 react-dom: 19.1.0(react@19.1.0) rxjs: 7.8.2 @@ -7983,10 +8271,10 @@ snapshots: - moment - typescript - '@univerjs/preset-sheets-find-replace@0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3)': + '@univerjs/preset-sheets-find-replace@0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3)': dependencies: - '@univerjs/find-replace': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) - '@univerjs/sheets-find-replace': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/find-replace': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/sheets-find-replace': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) react: 19.1.0 react-dom: 19.1.0(react@19.1.0) rxjs: 7.8.2 @@ -8000,10 +8288,10 @@ snapshots: - moment - typescript - '@univerjs/preset-sheets-hyper-link@0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3)': + '@univerjs/preset-sheets-hyper-link@0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3)': dependencies: - '@univerjs/sheets-hyper-link': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/sheets-hyper-link-ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/sheets-hyper-link': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/sheets-hyper-link-ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) react: 19.1.0 react-dom: 19.1.0(react@19.1.0) rxjs: 7.8.2 @@ -8017,31 +8305,31 @@ snapshots: - moment - typescript - '@univerjs/preset-sheets-node-core@0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2)': - dependencies: - '@univerjs/docs': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/engine-formula': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/engine-render': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/rpc-node': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/sheets': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/sheets-data-validation': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/sheets-drawing': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/sheets-filter': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/sheets-formula': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/sheets-hyper-link': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/sheets-numfmt': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/sheets-sort': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/sheets-thread-comment': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/thread-comment': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) + '@univerjs/preset-sheets-node-core@0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2)': + dependencies: + '@univerjs/docs': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/engine-formula': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/engine-render': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/rpc-node': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/sheets': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/sheets-data-validation': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/sheets-drawing': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/sheets-filter': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/sheets-formula': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/sheets-hyper-link': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/sheets-numfmt': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/sheets-sort': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/sheets-thread-comment': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/thread-comment': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) rxjs: 7.8.2 transitivePeerDependencies: - '@grpc/grpc-js' - '@wendellhu/redi' - '@univerjs/preset-sheets-note@0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3)': + '@univerjs/preset-sheets-note@0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3)': dependencies: - '@univerjs/sheets-note': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/sheets-note-ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/sheets-note': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/sheets-note-ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) react: 19.1.0 react-dom: 19.1.0(react@19.1.0) rxjs: 7.8.2 @@ -8055,10 +8343,10 @@ snapshots: - moment - typescript - '@univerjs/preset-sheets-sort@0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3)': + '@univerjs/preset-sheets-sort@0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3)': dependencies: - '@univerjs/sheets-sort': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/sheets-sort-ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/sheets-sort': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/sheets-sort-ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) react: 19.1.0 react-dom: 19.1.0(react@19.1.0) rxjs: 7.8.2 @@ -8072,10 +8360,10 @@ snapshots: - moment - typescript - '@univerjs/preset-sheets-table@0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3)': + '@univerjs/preset-sheets-table@0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3)': dependencies: - '@univerjs/sheets-table': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/sheets-table-ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/sheets-table': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/sheets-table-ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) react: 19.1.0 react-dom: 19.1.0(react@19.1.0) rxjs: 7.8.2 @@ -8089,12 +8377,12 @@ snapshots: - moment - typescript - '@univerjs/preset-sheets-thread-comment@0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3)': + '@univerjs/preset-sheets-thread-comment@0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3)': dependencies: - '@univerjs/sheets-thread-comment': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/sheets-thread-comment-ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) - '@univerjs/thread-comment': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/thread-comment-ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/sheets-thread-comment': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/sheets-thread-comment-ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/thread-comment': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/thread-comment-ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) react: 19.1.0 react-dom: 19.1.0(react@19.1.0) rxjs: 7.8.2 @@ -8108,30 +8396,30 @@ snapshots: - moment - typescript - '@univerjs/presets@0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3)': - dependencies: - '@univerjs/core': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/design': 0.8.0(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) - '@univerjs/preset-docs-advanced': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) - '@univerjs/preset-docs-collaboration': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) - '@univerjs/preset-docs-core': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) - '@univerjs/preset-docs-drawing': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) - '@univerjs/preset-docs-hyper-link': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) - '@univerjs/preset-docs-thread-comment': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) - '@univerjs/preset-sheets-advanced': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) - '@univerjs/preset-sheets-collaboration': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) - '@univerjs/preset-sheets-conditional-formatting': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) - '@univerjs/preset-sheets-core': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) - '@univerjs/preset-sheets-data-validation': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) - '@univerjs/preset-sheets-drawing': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) - '@univerjs/preset-sheets-filter': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) - '@univerjs/preset-sheets-find-replace': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) - '@univerjs/preset-sheets-hyper-link': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) - '@univerjs/preset-sheets-node-core': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/preset-sheets-note': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) - '@univerjs/preset-sheets-sort': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) - '@univerjs/preset-sheets-table': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) - '@univerjs/preset-sheets-thread-comment': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/presets@0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3)': + dependencies: + '@univerjs/core': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/design': 0.8.1(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@univerjs/preset-docs-advanced': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/preset-docs-collaboration': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/preset-docs-core': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/preset-docs-drawing': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/preset-docs-hyper-link': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/preset-docs-thread-comment': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/preset-sheets-advanced': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/preset-sheets-collaboration': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/preset-sheets-conditional-formatting': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/preset-sheets-core': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/preset-sheets-data-validation': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/preset-sheets-drawing': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/preset-sheets-filter': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/preset-sheets-find-replace': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/preset-sheets-hyper-link': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/preset-sheets-node-core': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/preset-sheets-note': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/preset-sheets-sort': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/preset-sheets-table': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/preset-sheets-thread-comment': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) react: 19.1.0 react-dom: 19.1.0(react@19.1.0) rxjs: 7.8.2 @@ -8156,35 +8444,35 @@ snapshots: '@grpc/grpc-js': 1.13.4 rxjs: 7.8.2 - '@univerjs/rpc-node@0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2)': + '@univerjs/rpc-node@0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2)': dependencies: - '@univerjs/core': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/rpc': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) + '@univerjs/core': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/rpc': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) rxjs: 7.8.2 transitivePeerDependencies: - '@grpc/grpc-js' - '@wendellhu/redi' - '@univerjs/rpc@0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2)': + '@univerjs/rpc@0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2)': dependencies: - '@univerjs/core': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) + '@univerjs/core': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) rxjs: 7.8.2 transitivePeerDependencies: - '@grpc/grpc-js' - '@wendellhu/redi' - '@univerjs/sheets-conditional-formatting-ui@0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3)': + '@univerjs/sheets-conditional-formatting-ui@0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3)': dependencies: - '@univerjs/core': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/design': 0.8.0(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) - '@univerjs/engine-formula': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/engine-render': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) + '@univerjs/core': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/design': 0.8.1(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@univerjs/engine-formula': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/engine-render': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) '@univerjs/icons': 0.4.4(react-dom@19.1.0(react@19.1.0))(react@19.1.0) - '@univerjs/sheets': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/sheets-conditional-formatting': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/sheets-formula-ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) - '@univerjs/sheets-ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) - '@univerjs/ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/sheets': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/sheets-conditional-formatting': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/sheets-formula-ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/sheets-ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) react: 19.1.0 rxjs: 7.8.2 transitivePeerDependencies: @@ -8198,26 +8486,26 @@ snapshots: - react-dom - typescript - '@univerjs/sheets-conditional-formatting@0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2)': + '@univerjs/sheets-conditional-formatting@0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2)': dependencies: - '@univerjs/core': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/engine-formula': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/engine-render': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/sheets': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) + '@univerjs/core': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/engine-formula': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/engine-render': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/sheets': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) rxjs: 7.8.2 transitivePeerDependencies: - '@grpc/grpc-js' - '@wendellhu/redi' - '@univerjs/sheets-crosshair-highlight@0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3)': + '@univerjs/sheets-crosshair-highlight@0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3)': dependencies: - '@univerjs/core': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/design': 0.8.0(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) - '@univerjs/engine-render': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) + '@univerjs/core': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/design': 0.8.1(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@univerjs/engine-render': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) '@univerjs/icons': 0.4.4(react-dom@19.1.0(react@19.1.0))(react@19.1.0) - '@univerjs/sheets': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/sheets-ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) - '@univerjs/ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/sheets': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/sheets-ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) react: 19.1.0 rxjs: 7.8.2 transitivePeerDependencies: @@ -8231,21 +8519,21 @@ snapshots: - react-dom - typescript - '@univerjs/sheets-data-validation-ui@0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3)': + '@univerjs/sheets-data-validation-ui@0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3)': dependencies: '@flatten-js/interval-tree': 1.1.3 - '@univerjs/core': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/data-validation': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/design': 0.8.0(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) - '@univerjs/engine-formula': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/engine-render': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) + '@univerjs/core': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/data-validation': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/design': 0.8.1(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@univerjs/engine-formula': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/engine-render': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) '@univerjs/icons': 0.4.4(react-dom@19.1.0(react@19.1.0))(react@19.1.0) - '@univerjs/sheets': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/sheets-data-validation': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/sheets-formula-ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) - '@univerjs/sheets-numfmt': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/sheets-ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) - '@univerjs/ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/sheets': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/sheets-data-validation': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/sheets-formula-ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/sheets-numfmt': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/sheets-ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) react: 19.1.0 rxjs: 7.8.2 transitivePeerDependencies: @@ -8259,32 +8547,32 @@ snapshots: - react-dom - typescript - '@univerjs/sheets-data-validation@0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2)': + '@univerjs/sheets-data-validation@0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2)': dependencies: - '@univerjs/core': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/data-validation': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/engine-formula': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) + '@univerjs/core': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/data-validation': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/engine-formula': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) '@univerjs/protocol': 0.1.46(@grpc/grpc-js@1.13.4)(rxjs@7.8.2) - '@univerjs/sheets': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/sheets-formula': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) + '@univerjs/sheets': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/sheets-formula': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) rxjs: 7.8.2 transitivePeerDependencies: - '@grpc/grpc-js' - '@wendellhu/redi' - '@univerjs/sheets-drawing-ui@0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3)': + '@univerjs/sheets-drawing-ui@0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3)': dependencies: - '@univerjs/core': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/design': 0.8.0(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) - '@univerjs/docs-drawing': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/docs-ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) - '@univerjs/drawing': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/drawing-ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) - '@univerjs/engine-render': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/sheets': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/sheets-drawing': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/sheets-ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) - '@univerjs/ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/core': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/design': 0.8.1(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@univerjs/docs-drawing': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/docs-ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/drawing': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/drawing-ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/engine-render': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/sheets': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/sheets-drawing': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/sheets-ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) react: 19.1.0 rxjs: 7.8.2 transitivePeerDependencies: @@ -8298,26 +8586,26 @@ snapshots: - react-dom - typescript - '@univerjs/sheets-drawing@0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2)': + '@univerjs/sheets-drawing@0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2)': dependencies: - '@univerjs/core': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/drawing': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) + '@univerjs/core': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/drawing': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) transitivePeerDependencies: - '@grpc/grpc-js' - '@wendellhu/redi' - rxjs - '@univerjs/sheets-filter-ui@0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3)': + '@univerjs/sheets-filter-ui@0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3)': dependencies: - '@univerjs/core': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/design': 0.8.0(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) - '@univerjs/engine-render': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) + '@univerjs/core': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/design': 0.8.1(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@univerjs/engine-render': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) '@univerjs/icons': 0.4.4(react-dom@19.1.0(react@19.1.0))(react@19.1.0) - '@univerjs/rpc': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/sheets': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/sheets-filter': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/sheets-ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) - '@univerjs/ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/rpc': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/sheets': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/sheets-filter': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/sheets-ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) react: 19.1.0 rxjs: 7.8.2 transitivePeerDependencies: @@ -8331,24 +8619,24 @@ snapshots: - react-dom - typescript - '@univerjs/sheets-filter@0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2)': + '@univerjs/sheets-filter@0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2)': dependencies: - '@univerjs/core': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/engine-formula': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/rpc': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/sheets': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) + '@univerjs/core': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/engine-formula': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/rpc': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/sheets': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) rxjs: 7.8.2 transitivePeerDependencies: - '@grpc/grpc-js' - '@wendellhu/redi' - '@univerjs/sheets-find-replace@0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3)': + '@univerjs/sheets-find-replace@0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3)': dependencies: - '@univerjs/core': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/engine-render': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/find-replace': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) - '@univerjs/sheets': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/sheets-ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/core': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/engine-render': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/find-replace': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/sheets': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/sheets-ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) rxjs: 7.8.2 transitivePeerDependencies: - '@grpc/grpc-js' @@ -8362,19 +8650,19 @@ snapshots: - react-dom - typescript - '@univerjs/sheets-formula-ui@0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3)': + '@univerjs/sheets-formula-ui@0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3)': dependencies: - '@univerjs/core': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/design': 0.8.0(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) - '@univerjs/docs': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/docs-ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) - '@univerjs/engine-formula': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/engine-render': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) + '@univerjs/core': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/design': 0.8.1(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@univerjs/docs': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/docs-ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/engine-formula': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/engine-render': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) '@univerjs/icons': 0.4.4(react-dom@19.1.0(react@19.1.0))(react@19.1.0) - '@univerjs/sheets': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/sheets-formula': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/sheets-ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) - '@univerjs/ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/sheets': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/sheets-formula': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/sheets-ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) react: 19.1.0 rxjs: 7.8.2 transitivePeerDependencies: @@ -8388,22 +8676,22 @@ snapshots: - react-dom - typescript - '@univerjs/sheets-formula@0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2)': + '@univerjs/sheets-formula@0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2)': dependencies: - '@univerjs/core': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/engine-formula': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/rpc': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/sheets': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) + '@univerjs/core': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/engine-formula': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/rpc': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/sheets': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) rxjs: 7.8.2 transitivePeerDependencies: - '@grpc/grpc-js' - '@wendellhu/redi' - '@univerjs/sheets-graphics@0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3)': + '@univerjs/sheets-graphics@0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3)': dependencies: - '@univerjs/core': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/engine-render': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/sheets-ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/core': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/engine-render': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/sheets-ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) transitivePeerDependencies: - '@grpc/grpc-js' - '@types/react' @@ -8417,21 +8705,21 @@ snapshots: - rxjs - typescript - '@univerjs/sheets-hyper-link-ui@0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3)': + '@univerjs/sheets-hyper-link-ui@0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3)': dependencies: - '@univerjs/core': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/design': 0.8.0(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) - '@univerjs/docs': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/docs-ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) - '@univerjs/engine-formula': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/engine-render': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) + '@univerjs/core': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/design': 0.8.1(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@univerjs/docs': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/docs-ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/engine-formula': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/engine-render': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) '@univerjs/icons': 0.4.4(react-dom@19.1.0(react@19.1.0))(react@19.1.0) - '@univerjs/sheets': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/sheets-data-validation': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/sheets-formula-ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) - '@univerjs/sheets-hyper-link': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/sheets-ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) - '@univerjs/ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/sheets': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/sheets-data-validation': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/sheets-formula-ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/sheets-hyper-link': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/sheets-ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) react: 19.1.0 rxjs: 7.8.2 transitivePeerDependencies: @@ -8445,27 +8733,27 @@ snapshots: - react-dom - typescript - '@univerjs/sheets-hyper-link@0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2)': + '@univerjs/sheets-hyper-link@0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2)': dependencies: - '@univerjs/core': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/docs': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/engine-formula': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/sheets': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) + '@univerjs/core': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/docs': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/engine-formula': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/sheets': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) rxjs: 7.8.2 transitivePeerDependencies: - '@grpc/grpc-js' - '@wendellhu/redi' - '@univerjs/sheets-note-ui@0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3)': + '@univerjs/sheets-note-ui@0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3)': dependencies: - '@univerjs/core': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/design': 0.8.0(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) - '@univerjs/engine-render': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) + '@univerjs/core': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/design': 0.8.1(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@univerjs/engine-render': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) '@univerjs/icons': 0.4.4(react-dom@19.1.0(react@19.1.0))(react@19.1.0) - '@univerjs/sheets': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/sheets-note': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/sheets-ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) - '@univerjs/ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/sheets': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/sheets-note': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/sheets-ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) react: 19.1.0 rxjs: 7.8.2 transitivePeerDependencies: @@ -8479,26 +8767,26 @@ snapshots: - react-dom - typescript - '@univerjs/sheets-note@0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2)': + '@univerjs/sheets-note@0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2)': dependencies: - '@univerjs/core': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/sheets': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) + '@univerjs/core': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/sheets': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) rxjs: 7.8.2 transitivePeerDependencies: - '@grpc/grpc-js' - '@wendellhu/redi' - '@univerjs/sheets-numfmt-ui@0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3)': + '@univerjs/sheets-numfmt-ui@0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3)': dependencies: - '@univerjs/core': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/design': 0.8.0(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) - '@univerjs/engine-numfmt': 0.8.0 - '@univerjs/engine-render': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) + '@univerjs/core': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/design': 0.8.1(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@univerjs/engine-numfmt': 0.8.1 + '@univerjs/engine-render': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) '@univerjs/icons': 0.4.4(react-dom@19.1.0(react@19.1.0))(react@19.1.0) - '@univerjs/sheets': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/sheets-numfmt': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/sheets-ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) - '@univerjs/ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/sheets': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/sheets-numfmt': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/sheets-ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) react: 19.1.0 rxjs: 7.8.2 transitivePeerDependencies: @@ -8512,27 +8800,27 @@ snapshots: - react-dom - typescript - '@univerjs/sheets-numfmt@0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2)': + '@univerjs/sheets-numfmt@0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2)': dependencies: - '@univerjs/core': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/engine-formula': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/engine-numfmt': 0.8.0 - '@univerjs/sheets': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) + '@univerjs/core': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/engine-formula': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/engine-numfmt': 0.8.1 + '@univerjs/sheets': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) rxjs: 7.8.2 transitivePeerDependencies: - '@grpc/grpc-js' - '@wendellhu/redi' - '@univerjs/sheets-sort-ui@0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3)': + '@univerjs/sheets-sort-ui@0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3)': dependencies: - '@univerjs/core': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/design': 0.8.0(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) - '@univerjs/engine-formula': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) + '@univerjs/core': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/design': 0.8.1(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@univerjs/engine-formula': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) '@univerjs/icons': 0.4.4(react-dom@19.1.0(react@19.1.0))(react@19.1.0) - '@univerjs/sheets': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/sheets-sort': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/sheets-ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) - '@univerjs/ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/sheets': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/sheets-sort': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/sheets-ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) react: 19.1.0 rxjs: 7.8.2 transitivePeerDependencies: @@ -8546,29 +8834,29 @@ snapshots: - react-dom - typescript - '@univerjs/sheets-sort@0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2)': + '@univerjs/sheets-sort@0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2)': dependencies: - '@univerjs/core': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/engine-formula': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/sheets': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) + '@univerjs/core': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/engine-formula': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/sheets': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) transitivePeerDependencies: - '@grpc/grpc-js' - '@wendellhu/redi' - rxjs - '@univerjs/sheets-table-ui@0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3)': + '@univerjs/sheets-table-ui@0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3)': dependencies: - '@univerjs/core': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/design': 0.8.0(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) - '@univerjs/engine-formula': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/engine-render': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) + '@univerjs/core': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/design': 0.8.1(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@univerjs/engine-formula': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/engine-render': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) '@univerjs/icons': 0.4.4(react-dom@19.1.0(react@19.1.0))(react@19.1.0) - '@univerjs/sheets': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/sheets-formula-ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) - '@univerjs/sheets-sort': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/sheets-table': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/sheets-ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) - '@univerjs/ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/sheets': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/sheets-formula-ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/sheets-sort': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/sheets-table': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/sheets-ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) react: 19.1.0 rxjs: 7.8.2 transitivePeerDependencies: @@ -8582,27 +8870,27 @@ snapshots: - react-dom - typescript - '@univerjs/sheets-table@0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2)': + '@univerjs/sheets-table@0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2)': dependencies: - '@univerjs/core': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/sheets': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) + '@univerjs/core': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/sheets': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) rxjs: 7.8.2 transitivePeerDependencies: - '@grpc/grpc-js' - '@wendellhu/redi' - '@univerjs/sheets-thread-comment-ui@0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3)': + '@univerjs/sheets-thread-comment-ui@0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3)': dependencies: - '@univerjs/core': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/engine-formula': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/engine-render': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) + '@univerjs/core': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/engine-formula': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/engine-render': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) '@univerjs/icons': 0.4.4(react-dom@19.1.0(react@19.1.0))(react@19.1.0) - '@univerjs/sheets': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/sheets-thread-comment': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/sheets-ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) - '@univerjs/thread-comment': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/thread-comment-ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) - '@univerjs/ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/sheets': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/sheets-thread-comment': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/sheets-ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/thread-comment': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/thread-comment-ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) react: 19.1.0 rxjs: 7.8.2 transitivePeerDependencies: @@ -8616,31 +8904,31 @@ snapshots: - react-dom - typescript - '@univerjs/sheets-thread-comment@0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2)': + '@univerjs/sheets-thread-comment@0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2)': dependencies: - '@univerjs/core': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/engine-formula': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/sheets': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/thread-comment': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) + '@univerjs/core': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/engine-formula': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/sheets': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/thread-comment': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) rxjs: 7.8.2 transitivePeerDependencies: - '@grpc/grpc-js' - '@wendellhu/redi' - '@univerjs/sheets-ui@0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3)': + '@univerjs/sheets-ui@0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3)': dependencies: - '@univerjs/core': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/design': 0.8.0(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) - '@univerjs/docs': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/docs-ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) - '@univerjs/engine-formula': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/engine-numfmt': 0.8.0 - '@univerjs/engine-render': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) + '@univerjs/core': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/design': 0.8.1(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@univerjs/docs': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/docs-ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/engine-formula': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/engine-numfmt': 0.8.1 + '@univerjs/engine-render': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) '@univerjs/icons': 0.4.4(react-dom@19.1.0(react@19.1.0))(react@19.1.0) '@univerjs/protocol': 0.1.46(@grpc/grpc-js@1.13.4)(rxjs@7.8.2) - '@univerjs/sheets': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/telemetry': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/sheets': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/telemetry': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) react: 19.1.0 rxjs: 7.8.2 transitivePeerDependencies: @@ -8654,36 +8942,36 @@ snapshots: - react-dom - typescript - '@univerjs/sheets@0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2)': + '@univerjs/sheets@0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2)': dependencies: - '@univerjs/core': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/engine-formula': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/engine-numfmt': 0.8.0 + '@univerjs/core': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/engine-formula': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/engine-numfmt': 0.8.1 '@univerjs/protocol': 0.1.46(@grpc/grpc-js@1.13.4)(rxjs@7.8.2) - '@univerjs/rpc': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) + '@univerjs/rpc': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) rxjs: 7.8.2 transitivePeerDependencies: - '@grpc/grpc-js' - '@wendellhu/redi' - '@univerjs/telemetry@0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2)': + '@univerjs/telemetry@0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2)': dependencies: - '@univerjs/core': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) + '@univerjs/core': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) transitivePeerDependencies: - '@grpc/grpc-js' - '@wendellhu/redi' - rxjs - '@univerjs/themes@0.8.0': {} + '@univerjs/themes@0.8.1': {} - '@univerjs/thread-comment-ui@0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3)': + '@univerjs/thread-comment-ui@0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3)': dependencies: - '@univerjs/core': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/design': 0.8.0(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) - '@univerjs/docs-ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/core': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/design': 0.8.1(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@univerjs/docs-ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) '@univerjs/icons': 0.4.4(react-dom@19.1.0(react@19.1.0))(react@19.1.0) - '@univerjs/thread-comment': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/thread-comment': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) react: 19.1.0 rxjs: 7.8.2 transitivePeerDependencies: @@ -8697,21 +8985,21 @@ snapshots: - react-dom - typescript - '@univerjs/thread-comment@0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2)': + '@univerjs/thread-comment@0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2)': dependencies: - '@univerjs/core': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) + '@univerjs/core': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) rxjs: 7.8.2 transitivePeerDependencies: - '@grpc/grpc-js' - '@wendellhu/redi' - '@univerjs/ui@0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3)': + '@univerjs/ui@0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3)': dependencies: - '@univerjs/core': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/design': 0.8.0(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) - '@univerjs/engine-render': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) + '@univerjs/core': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/design': 0.8.1(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@univerjs/engine-render': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) '@univerjs/icons': 0.4.4(react-dom@19.1.0(react@19.1.0))(react@19.1.0) - '@wendellhu/redi': 0.18.0 + '@wendellhu/redi': 0.18.3 localforage: 1.10.0 react: 19.1.0 react-dom: 19.1.0(react@19.1.0) @@ -8727,13 +9015,13 @@ snapshots: - moment - typescript - '@univerjs/uniscript@0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(monaco-editor@0.52.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3)': + '@univerjs/uniscript@0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(monaco-editor@0.52.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3)': dependencies: - '@univerjs/core': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/design': 0.8.0(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) - '@univerjs/sheets': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/sheets-ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(@wendellhu/redi@0.18.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) - '@univerjs/ui': 0.8.0(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.5(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/core': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/design': 0.8.1(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@univerjs/sheets': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/sheets-ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(@wendellhu/redi@0.18.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) + '@univerjs/ui': 0.8.1(@grpc/grpc-js@1.13.4)(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)(typescript@5.8.3) monaco-editor: 0.52.2 react: 19.1.0 rxjs: 7.8.2 @@ -8748,68 +9036,15 @@ snapshots: - react-dom - typescript - '@univerjs/watermark@0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2)': + '@univerjs/watermark@0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2)': dependencies: - '@univerjs/core': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) - '@univerjs/engine-render': 0.8.0(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.0)(rxjs@7.8.2) + '@univerjs/core': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) + '@univerjs/engine-render': 0.8.1(@grpc/grpc-js@1.13.4)(@wendellhu/redi@0.18.3)(rxjs@7.8.2) rxjs: 7.8.2 transitivePeerDependencies: - '@grpc/grpc-js' - '@wendellhu/redi' - '@unrs/resolver-binding-darwin-arm64@1.7.8': - optional: true - - '@unrs/resolver-binding-darwin-x64@1.7.8': - optional: true - - '@unrs/resolver-binding-freebsd-x64@1.7.8': - optional: true - - '@unrs/resolver-binding-linux-arm-gnueabihf@1.7.8': - optional: true - - '@unrs/resolver-binding-linux-arm-musleabihf@1.7.8': - optional: true - - '@unrs/resolver-binding-linux-arm64-gnu@1.7.8': - optional: true - - '@unrs/resolver-binding-linux-arm64-musl@1.7.8': - optional: true - - '@unrs/resolver-binding-linux-ppc64-gnu@1.7.8': - optional: true - - '@unrs/resolver-binding-linux-riscv64-gnu@1.7.8': - optional: true - - '@unrs/resolver-binding-linux-riscv64-musl@1.7.8': - optional: true - - '@unrs/resolver-binding-linux-s390x-gnu@1.7.8': - optional: true - - '@unrs/resolver-binding-linux-x64-gnu@1.7.8': - optional: true - - '@unrs/resolver-binding-linux-x64-musl@1.7.8': - optional: true - - '@unrs/resolver-binding-wasm32-wasi@1.7.8': - dependencies: - '@napi-rs/wasm-runtime': 0.2.10 - optional: true - - '@unrs/resolver-binding-win32-arm64-msvc@1.7.8': - optional: true - - '@unrs/resolver-binding-win32-ia32-msvc@1.7.8': - optional: true - - '@unrs/resolver-binding-win32-x64-msvc@1.7.8': - optional: true - '@vitest/eslint-plugin@1.2.1(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3)': dependencies: '@typescript-eslint/utils': 8.33.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) @@ -8841,7 +9076,7 @@ snapshots: '@vue/shared': 3.5.16 estree-walker: 2.0.2 magic-string: 0.30.17 - postcss: 8.5.4 + postcss: 8.5.5 source-map-js: 1.2.1 '@vue/compiler-ssr@3.5.16': @@ -8953,7 +9188,7 @@ snapshots: '@webassemblyjs/ast': 1.14.1 '@xtuc/long': 4.2.2 - '@wendellhu/redi@0.18.0': {} + '@wendellhu/redi@0.18.3': {} '@xmldom/xmldom@0.9.8': {} @@ -8961,6 +9196,11 @@ snapshots: '@xtuc/long@4.2.2': {} + JSONStream@1.3.5: + dependencies: + jsonparse: 1.3.1 + through: 2.3.8 + acorn-jsx@5.3.2(acorn@8.14.1): dependencies: acorn: 8.14.1 @@ -9036,6 +9276,8 @@ snapshots: dependencies: tslib: 2.8.1 + array-ify@1.0.0: {} + array-iterate@2.0.1: {} astring@1.9.0: {} @@ -9206,6 +9448,11 @@ snapshots: comment-parser@1.4.1: {} + compare-func@2.0.0: + dependencies: + array-ify: 1.0.0 + dot-prop: 5.3.0 + compare-versions@6.1.1: {} compute-scroll-into-view@3.1.1: {} @@ -9216,6 +9463,21 @@ snapshots: confbox@0.2.2: {} + conventional-changelog-angular@7.0.0: + dependencies: + compare-func: 2.0.0 + + conventional-changelog-conventionalcommits@7.0.2: + dependencies: + compare-func: 2.0.0 + + conventional-commits-parser@5.0.0: + dependencies: + JSONStream: 1.3.5 + is-text-path: 2.0.0 + meow: 12.1.1 + split2: 4.2.0 + core-js-compat@3.42.0: dependencies: browserslist: 4.25.0 @@ -9228,6 +9490,22 @@ snapshots: dependencies: layout-base: 2.0.1 + cosmiconfig-typescript-loader@6.1.0(@types/node@22.15.24)(cosmiconfig@9.0.0(typescript@5.8.3))(typescript@5.8.3): + dependencies: + '@types/node': 22.15.24 + cosmiconfig: 9.0.0(typescript@5.8.3) + jiti: 2.4.2 + typescript: 5.8.3 + + cosmiconfig@9.0.0(typescript@5.8.3): + dependencies: + env-paths: 2.2.1 + import-fresh: 3.3.1 + js-yaml: 4.1.0 + parse-json: 5.2.0 + optionalDependencies: + typescript: 5.8.3 + cross-spawn@7.0.6: dependencies: path-key: 3.1.1 @@ -9428,11 +9706,9 @@ snapshots: d3: 7.9.0 lodash-es: 4.17.21 - dayjs@1.11.13: {} + dargs@8.1.0: {} - debug@3.2.7: - dependencies: - ms: 2.1.3 + dayjs@1.11.13: {} debug@4.4.1: dependencies: @@ -9469,6 +9745,10 @@ snapshots: optionalDependencies: '@types/trusted-types': 2.0.7 + dot-prop@5.3.0: + dependencies: + is-obj: 2.0.0 + echarts-wordcloud@2.1.0(echarts@5.6.0): dependencies: echarts: 5.6.0 @@ -9497,8 +9777,14 @@ snapshots: entities@6.0.0: {} + env-paths@2.2.1: {} + environment@1.1.0: {} + error-ex@1.3.2: + dependencies: + is-arrayish: 0.2.1 + es-module-lexer@1.7.0: {} esast-util-from-estree@2.0.0: @@ -9547,21 +9833,6 @@ snapshots: eslint: 9.28.0(jiti@2.4.2) prettier-linter-helpers: 1.0.0 - eslint-import-context@0.1.6(unrs-resolver@1.7.8): - dependencies: - get-tsconfig: 4.10.1 - stable-hash: 0.0.5 - optionalDependencies: - unrs-resolver: 1.7.8 - - eslint-import-resolver-node@0.3.9: - dependencies: - debug: 3.2.7 - is-core-module: 2.16.1 - resolve: 1.22.10 - transitivePeerDependencies: - - supports-color - eslint-json-compat-utils@0.2.1(eslint@9.28.0(jiti@2.4.2))(jsonc-eslint-parser@2.4.0): dependencies: eslint: 9.28.0(jiti@2.4.2) @@ -9578,6 +9849,16 @@ snapshots: dependencies: eslint: 9.28.0(jiti@2.4.2) + eslint-plugin-better-tailwindcss@3.1.0(eslint@9.28.0(jiti@2.4.2))(tailwindcss@4.1.10): + dependencies: + enhanced-resolve: 5.18.1 + eslint: 9.28.0(jiti@2.4.2) + jiti: 2.4.2 + postcss: 8.5.5 + postcss-import: 16.1.0(postcss@8.5.5) + synckit: 0.9.2 + tailwindcss: 4.1.10 + eslint-plugin-command@3.2.1(eslint@9.28.0(jiti@2.4.2)): dependencies: '@es-joy/jsdoccomment': 0.50.2 @@ -9601,25 +9882,7 @@ snapshots: prettier: 3.5.3 synckit: 0.9.2 - eslint-plugin-import-x@4.13.3(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3): - dependencies: - '@typescript-eslint/utils': 8.33.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) - comment-parser: 1.4.1 - debug: 4.4.1 - eslint: 9.28.0(jiti@2.4.2) - eslint-import-context: 0.1.6(unrs-resolver@1.7.8) - eslint-import-resolver-node: 0.3.9 - is-glob: 4.0.3 - minimatch: 10.0.1 - semver: 7.7.2 - stable-hash: 0.0.5 - tslib: 2.8.1 - unrs-resolver: 1.7.8 - transitivePeerDependencies: - - supports-color - - typescript - - eslint-plugin-jsdoc@50.6.17(eslint@9.28.0(jiti@2.4.2)): + eslint-plugin-jsdoc@50.8.0(eslint@9.28.0(jiti@2.4.2)): dependencies: '@es-joy/jsdoccomment': 0.50.2 are-docs-informative: 0.0.2 @@ -9649,9 +9912,10 @@ snapshots: transitivePeerDependencies: - '@eslint/json' - eslint-plugin-n@17.18.0(eslint@9.28.0(jiti@2.4.2)): + eslint-plugin-n@17.19.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3): dependencies: '@eslint-community/eslint-utils': 4.7.0(eslint@9.28.0(jiti@2.4.2)) + '@typescript-eslint/utils': 8.33.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) enhanced-resolve: 5.18.1 eslint: 9.28.0(jiti@2.4.2) eslint-plugin-es-x: 7.8.0(eslint@9.28.0(jiti@2.4.2)) @@ -9660,13 +9924,17 @@ snapshots: ignore: 5.3.2 minimatch: 9.0.5 semver: 7.7.2 + ts-declaration-location: 1.0.7(typescript@5.8.3) + transitivePeerDependencies: + - supports-color + - typescript eslint-plugin-no-only-tests@3.3.0: {} - eslint-plugin-perfectionist@4.13.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3): + eslint-plugin-perfectionist@4.14.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3): dependencies: - '@typescript-eslint/types': 8.33.0 - '@typescript-eslint/utils': 8.33.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) + '@typescript-eslint/types': 8.34.0 + '@typescript-eslint/utils': 8.34.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) eslint: 9.28.0(jiti@2.4.2) natural-orderby: 5.0.0 transitivePeerDependencies: @@ -9683,18 +9951,18 @@ snapshots: tinyglobby: 0.2.14 yaml-eslint-parser: 1.3.0 - eslint-plugin-react-debug@1.50.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3): - dependencies: - '@eslint-react/ast': 1.50.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) - '@eslint-react/core': 1.50.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) - '@eslint-react/eff': 1.50.0 - '@eslint-react/kit': 1.50.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) - '@eslint-react/shared': 1.50.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) - '@eslint-react/var': 1.50.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) - '@typescript-eslint/scope-manager': 8.33.0 - '@typescript-eslint/type-utils': 8.33.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) - '@typescript-eslint/types': 8.33.0 - '@typescript-eslint/utils': 8.33.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) + eslint-plugin-react-debug@1.52.1(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3): + dependencies: + '@eslint-react/ast': 1.52.1(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) + '@eslint-react/core': 1.52.1(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) + '@eslint-react/eff': 1.52.1 + '@eslint-react/kit': 1.52.1(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) + '@eslint-react/shared': 1.52.1(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) + '@eslint-react/var': 1.52.1(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) + '@typescript-eslint/scope-manager': 8.34.0 + '@typescript-eslint/type-utils': 8.34.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) + '@typescript-eslint/types': 8.34.0 + '@typescript-eslint/utils': 8.34.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) eslint: 9.28.0(jiti@2.4.2) string-ts: 2.2.1 ts-pattern: 5.7.1 @@ -9703,17 +9971,17 @@ snapshots: transitivePeerDependencies: - supports-color - eslint-plugin-react-dom@1.50.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3): - dependencies: - '@eslint-react/ast': 1.50.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) - '@eslint-react/core': 1.50.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) - '@eslint-react/eff': 1.50.0 - '@eslint-react/kit': 1.50.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) - '@eslint-react/shared': 1.50.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) - '@eslint-react/var': 1.50.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) - '@typescript-eslint/scope-manager': 8.33.0 - '@typescript-eslint/types': 8.33.0 - '@typescript-eslint/utils': 8.33.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) + eslint-plugin-react-dom@1.52.1(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3): + dependencies: + '@eslint-react/ast': 1.52.1(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) + '@eslint-react/core': 1.52.1(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) + '@eslint-react/eff': 1.52.1 + '@eslint-react/kit': 1.52.1(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) + '@eslint-react/shared': 1.52.1(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) + '@eslint-react/var': 1.52.1(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) + '@typescript-eslint/scope-manager': 8.34.0 + '@typescript-eslint/types': 8.34.0 + '@typescript-eslint/utils': 8.34.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) compare-versions: 6.1.1 eslint: 9.28.0(jiti@2.4.2) string-ts: 2.2.1 @@ -9723,18 +9991,18 @@ snapshots: transitivePeerDependencies: - supports-color - eslint-plugin-react-hooks-extra@1.50.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3): - dependencies: - '@eslint-react/ast': 1.50.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) - '@eslint-react/core': 1.50.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) - '@eslint-react/eff': 1.50.0 - '@eslint-react/kit': 1.50.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) - '@eslint-react/shared': 1.50.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) - '@eslint-react/var': 1.50.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) - '@typescript-eslint/scope-manager': 8.33.0 - '@typescript-eslint/type-utils': 8.33.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) - '@typescript-eslint/types': 8.33.0 - '@typescript-eslint/utils': 8.33.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) + eslint-plugin-react-hooks-extra@1.52.1(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3): + dependencies: + '@eslint-react/ast': 1.52.1(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) + '@eslint-react/core': 1.52.1(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) + '@eslint-react/eff': 1.52.1 + '@eslint-react/kit': 1.52.1(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) + '@eslint-react/shared': 1.52.1(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) + '@eslint-react/var': 1.52.1(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) + '@typescript-eslint/scope-manager': 8.34.0 + '@typescript-eslint/type-utils': 8.34.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) + '@typescript-eslint/types': 8.34.0 + '@typescript-eslint/utils': 8.34.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) eslint: 9.28.0(jiti@2.4.2) string-ts: 2.2.1 ts-pattern: 5.7.1 @@ -9747,18 +10015,18 @@ snapshots: dependencies: eslint: 9.28.0(jiti@2.4.2) - eslint-plugin-react-naming-convention@1.50.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3): - dependencies: - '@eslint-react/ast': 1.50.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) - '@eslint-react/core': 1.50.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) - '@eslint-react/eff': 1.50.0 - '@eslint-react/kit': 1.50.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) - '@eslint-react/shared': 1.50.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) - '@eslint-react/var': 1.50.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) - '@typescript-eslint/scope-manager': 8.33.0 - '@typescript-eslint/type-utils': 8.33.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) - '@typescript-eslint/types': 8.33.0 - '@typescript-eslint/utils': 8.33.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) + eslint-plugin-react-naming-convention@1.52.1(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3): + dependencies: + '@eslint-react/ast': 1.52.1(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) + '@eslint-react/core': 1.52.1(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) + '@eslint-react/eff': 1.52.1 + '@eslint-react/kit': 1.52.1(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) + '@eslint-react/shared': 1.52.1(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) + '@eslint-react/var': 1.52.1(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) + '@typescript-eslint/scope-manager': 8.34.0 + '@typescript-eslint/type-utils': 8.34.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) + '@typescript-eslint/types': 8.34.0 + '@typescript-eslint/utils': 8.34.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) eslint: 9.28.0(jiti@2.4.2) string-ts: 2.2.1 ts-pattern: 5.7.1 @@ -9771,17 +10039,17 @@ snapshots: dependencies: eslint: 9.28.0(jiti@2.4.2) - eslint-plugin-react-web-api@1.50.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3): - dependencies: - '@eslint-react/ast': 1.50.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) - '@eslint-react/core': 1.50.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) - '@eslint-react/eff': 1.50.0 - '@eslint-react/kit': 1.50.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) - '@eslint-react/shared': 1.50.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) - '@eslint-react/var': 1.50.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) - '@typescript-eslint/scope-manager': 8.33.0 - '@typescript-eslint/types': 8.33.0 - '@typescript-eslint/utils': 8.33.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) + eslint-plugin-react-web-api@1.52.1(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3): + dependencies: + '@eslint-react/ast': 1.52.1(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) + '@eslint-react/core': 1.52.1(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) + '@eslint-react/eff': 1.52.1 + '@eslint-react/kit': 1.52.1(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) + '@eslint-react/shared': 1.52.1(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) + '@eslint-react/var': 1.52.1(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) + '@typescript-eslint/scope-manager': 8.34.0 + '@typescript-eslint/types': 8.34.0 + '@typescript-eslint/utils': 8.34.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) eslint: 9.28.0(jiti@2.4.2) string-ts: 2.2.1 ts-pattern: 5.7.1 @@ -9790,18 +10058,18 @@ snapshots: transitivePeerDependencies: - supports-color - eslint-plugin-react-x@1.50.0(eslint@9.28.0(jiti@2.4.2))(ts-api-utils@2.1.0(typescript@5.8.3))(typescript@5.8.3): - dependencies: - '@eslint-react/ast': 1.50.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) - '@eslint-react/core': 1.50.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) - '@eslint-react/eff': 1.50.0 - '@eslint-react/kit': 1.50.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) - '@eslint-react/shared': 1.50.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) - '@eslint-react/var': 1.50.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) - '@typescript-eslint/scope-manager': 8.33.0 - '@typescript-eslint/type-utils': 8.33.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) - '@typescript-eslint/types': 8.33.0 - '@typescript-eslint/utils': 8.33.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) + eslint-plugin-react-x@1.52.1(eslint@9.28.0(jiti@2.4.2))(ts-api-utils@2.1.0(typescript@5.8.3))(typescript@5.8.3): + dependencies: + '@eslint-react/ast': 1.52.1(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) + '@eslint-react/core': 1.52.1(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) + '@eslint-react/eff': 1.52.1 + '@eslint-react/kit': 1.52.1(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) + '@eslint-react/shared': 1.52.1(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) + '@eslint-react/var': 1.52.1(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) + '@typescript-eslint/scope-manager': 8.34.0 + '@typescript-eslint/type-utils': 8.34.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) + '@typescript-eslint/types': 8.34.0 + '@typescript-eslint/utils': 8.34.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) compare-versions: 6.1.1 eslint: 9.28.0(jiti@2.4.2) is-immutable-type: 5.0.1(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) @@ -9813,17 +10081,7 @@ snapshots: transitivePeerDependencies: - supports-color - eslint-plugin-readable-tailwind@2.1.2(eslint@9.28.0(jiti@2.4.2))(tailwindcss@4.1.8): - dependencies: - enhanced-resolve: 5.18.1 - eslint: 9.28.0(jiti@2.4.2) - jiti: 2.4.2 - postcss: 8.5.4 - postcss-import: 16.1.0(postcss@8.5.4) - synckit: 0.9.2 - tailwindcss: 4.1.8 - - eslint-plugin-regexp@2.7.0(eslint@9.28.0(jiti@2.4.2)): + eslint-plugin-regexp@2.9.0(eslint@9.28.0(jiti@2.4.2)): dependencies: '@eslint-community/eslint-utils': 4.7.0(eslint@9.28.0(jiti@2.4.2)) '@eslint-community/regexpp': 4.12.1 @@ -9865,13 +10123,13 @@ snapshots: semver: 7.7.2 strip-indent: 4.0.0 - eslint-plugin-unused-imports@4.1.4(@typescript-eslint/eslint-plugin@8.33.0(@typescript-eslint/parser@8.33.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3))(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3))(eslint@9.28.0(jiti@2.4.2)): + eslint-plugin-unused-imports@4.1.4(@typescript-eslint/eslint-plugin@8.34.0(@typescript-eslint/parser@8.34.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3))(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3))(eslint@9.28.0(jiti@2.4.2)): dependencies: eslint: 9.28.0(jiti@2.4.2) optionalDependencies: - '@typescript-eslint/eslint-plugin': 8.33.0(@typescript-eslint/parser@8.33.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3))(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) + '@typescript-eslint/eslint-plugin': 8.34.0(@typescript-eslint/parser@8.34.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3))(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) - eslint-plugin-vue@10.1.0(eslint@9.28.0(jiti@2.4.2))(vue-eslint-parser@10.1.3(eslint@9.28.0(jiti@2.4.2))): + eslint-plugin-vue@10.2.0(eslint@9.28.0(jiti@2.4.2))(vue-eslint-parser@10.1.3(eslint@9.28.0(jiti@2.4.2))): dependencies: '@eslint-community/eslint-utils': 4.7.0(eslint@9.28.0(jiti@2.4.2)) eslint: 9.28.0(jiti@2.4.2) @@ -10096,6 +10354,12 @@ snapshots: locate-path: 6.0.0 path-exists: 4.0.0 + find-up@7.0.0: + dependencies: + locate-path: 7.2.0 + path-exists: 5.0.0 + unicorn-magic: 0.1.0 + flat-cache@4.0.1: dependencies: flatted: 3.3.3 @@ -10123,6 +10387,12 @@ snapshots: dependencies: resolve-pkg-maps: 1.0.0 + git-raw-commits@4.0.0: + dependencies: + dargs: 8.1.0 + meow: 12.1.1 + split2: 4.2.0 + github-slugger@2.0.0: {} glob-parent@5.1.2: @@ -10135,6 +10405,10 @@ snapshots: glob-to-regexp@0.4.1: {} + global-directory@4.0.1: + dependencies: + ini: 4.1.1 + globals@14.0.0: {} globals@15.15.0: {} @@ -10306,6 +10580,8 @@ snapshots: human-signals@5.0.0: {} + husky@9.1.7: {} + iconv-lite@0.6.3: dependencies: safer-buffer: 2.1.2 @@ -10321,10 +10597,14 @@ snapshots: parent-module: 1.0.1 resolve-from: 4.0.0 + import-meta-resolve@4.1.0: {} + imurmurhash@0.1.4: {} indent-string@5.0.0: {} + ini@4.1.1: {} + inline-style-parser@0.2.4: {} internmap@1.0.1: {} @@ -10338,6 +10618,8 @@ snapshots: is-alphabetical: 2.0.1 is-decimal: 2.0.1 + is-arrayish@0.2.1: {} + is-arrayish@0.3.2: optional: true @@ -10371,7 +10653,7 @@ snapshots: is-immutable-type@5.0.1(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3): dependencies: - '@typescript-eslint/type-utils': 8.33.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) + '@typescript-eslint/type-utils': 8.34.0(eslint@9.28.0(jiti@2.4.2))(typescript@5.8.3) eslint: 9.28.0(jiti@2.4.2) ts-api-utils: 2.1.0(typescript@5.8.3) ts-declaration-location: 1.0.7(typescript@5.8.3) @@ -10385,10 +10667,16 @@ snapshots: is-number@7.0.0: {} + is-obj@2.0.0: {} + is-plain-obj@4.1.0: {} is-stream@3.0.0: {} + is-text-path@2.0.0: + dependencies: + text-extensions: 2.4.0 + is-wsl@3.1.0: dependencies: is-inside-container: 1.0.0 @@ -10438,6 +10726,8 @@ snapshots: espree: 9.6.1 semver: 7.7.2 + jsonparse@1.3.1: {} + katex@0.16.22: dependencies: commander: 8.3.0 @@ -10520,6 +10810,8 @@ snapshots: lilconfig@3.1.3: {} + lines-and-columns@1.2.4: {} + lint-staged@16.1.0: dependencies: chalk: 5.4.1 @@ -10566,12 +10858,30 @@ snapshots: dependencies: p-locate: 5.0.0 + locate-path@7.2.0: + dependencies: + p-locate: 6.0.0 + lodash-es@4.17.21: {} lodash.camelcase@4.3.0: {} + lodash.isplainobject@4.0.6: {} + + lodash.kebabcase@4.1.1: {} + lodash.merge@4.6.2: {} + lodash.mergewith@4.6.2: {} + + lodash.snakecase@4.1.1: {} + + lodash.startcase@4.4.0: {} + + lodash.uniq@4.5.0: {} + + lodash.upperfirst@4.3.1: {} + lodash@4.17.21: {} log-update@6.1.0: @@ -10795,6 +11105,8 @@ snapshots: memoize-one@5.2.1: {} + meow@12.1.1: {} + merge-stream@2.0.0: {} merge2@1.4.1: {} @@ -11124,10 +11436,6 @@ snapshots: min-indent@1.0.1: {} - minimatch@10.0.1: - dependencies: - brace-expansion: 2.0.1 - minimatch@3.1.2: dependencies: brace-expansion: 1.1.11 @@ -11136,6 +11444,8 @@ snapshots: dependencies: brace-expansion: 2.0.1 + minimist@1.2.8: {} + minipass@7.1.2: {} minizlib@3.0.2: @@ -11165,8 +11475,6 @@ snapshots: nanoid@5.1.5: {} - napi-postinstall@0.2.4: {} - natural-compare@1.4.0: {} natural-orderby@5.0.0: {} @@ -11205,7 +11513,7 @@ snapshots: - '@babel/core' - babel-plugin-macros - nextra-theme-docs@4.2.17(@types/react@19.1.6)(next@15.3.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(nextra@4.2.17(acorn@8.14.1)(next@15.3.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(typescript@5.8.3))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(use-sync-external-store@1.5.0(react@19.1.0)): + nextra-theme-docs@4.2.17(@types/react@19.1.8)(next@15.3.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(nextra@4.2.17(acorn@8.14.1)(next@15.3.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(typescript@5.8.3))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(use-sync-external-store@1.5.0(react@19.1.0)): dependencies: '@headlessui/react': 2.2.4(react-dom@19.1.0(react@19.1.0))(react@19.1.0) clsx: 2.1.1 @@ -11218,7 +11526,7 @@ snapshots: scroll-into-view-if-needed: 3.1.0 zod: 3.25.36 zod-validation-error: 3.4.1(zod@3.25.36) - zustand: 5.0.5(@types/react@19.1.6)(react@19.1.0)(use-sync-external-store@1.5.0(react@19.1.0)) + zustand: 5.0.5(@types/react@19.1.8)(react@19.1.0)(use-sync-external-store@1.5.0(react@19.1.0)) transitivePeerDependencies: - '@types/react' - immer @@ -11340,10 +11648,18 @@ snapshots: dependencies: yocto-queue: 0.1.0 + p-limit@4.0.0: + dependencies: + yocto-queue: 1.2.1 + p-locate@5.0.0: dependencies: p-limit: 3.1.0 + p-locate@6.0.0: + dependencies: + p-limit: 4.0.0 + package-manager-detector@1.3.0: {} pako@2.1.0: {} @@ -11368,6 +11684,13 @@ snapshots: dependencies: parse-statements: 1.0.11 + parse-json@5.2.0: + dependencies: + '@babel/code-frame': 7.27.1 + error-ex: 1.3.2 + json-parse-even-better-errors: 2.3.1 + lines-and-columns: 1.2.4 + parse-latin@7.0.0: dependencies: '@types/nlcst': 2.0.3 @@ -11389,6 +11712,8 @@ snapshots: path-exists@4.0.0: {} + path-exists@5.0.0: {} + path-key@3.1.1: {} path-key@4.0.0: {} @@ -11432,9 +11757,9 @@ snapshots: path-data-parser: 0.1.0 points-on-curve: 0.2.0 - postcss-import@16.1.0(postcss@8.5.4): + postcss-import@16.1.0(postcss@8.5.5): dependencies: - postcss: 8.5.4 + postcss: 8.5.5 postcss-value-parser: 4.2.0 read-cache: 1.0.0 resolve: 1.22.10 @@ -11452,7 +11777,7 @@ snapshots: picocolors: 1.1.1 source-map-js: 1.2.1 - postcss@8.5.4: + postcss@8.5.5: dependencies: nanoid: 3.3.11 picocolors: 1.1.1 @@ -11648,24 +11973,24 @@ snapshots: optionalDependencies: react-dom: 19.1.0(react@19.1.0) - react-remove-scroll-bar@2.3.8(@types/react@19.1.6)(react@19.1.0): + react-remove-scroll-bar@2.3.8(@types/react@19.1.8)(react@19.1.0): dependencies: react: 19.1.0 - react-style-singleton: 2.2.3(@types/react@19.1.6)(react@19.1.0) + react-style-singleton: 2.2.3(@types/react@19.1.8)(react@19.1.0) tslib: 2.8.1 optionalDependencies: - '@types/react': 19.1.6 + '@types/react': 19.1.8 - react-remove-scroll@2.7.0(@types/react@19.1.6)(react@19.1.0): + react-remove-scroll@2.7.0(@types/react@19.1.8)(react@19.1.0): dependencies: react: 19.1.0 - react-remove-scroll-bar: 2.3.8(@types/react@19.1.6)(react@19.1.0) - react-style-singleton: 2.2.3(@types/react@19.1.6)(react@19.1.0) + react-remove-scroll-bar: 2.3.8(@types/react@19.1.8)(react@19.1.0) + react-style-singleton: 2.2.3(@types/react@19.1.8)(react@19.1.0) tslib: 2.8.1 - use-callback-ref: 1.3.3(@types/react@19.1.6)(react@19.1.0) - use-sidecar: 1.1.3(@types/react@19.1.6)(react@19.1.0) + use-callback-ref: 1.3.3(@types/react@19.1.8)(react@19.1.0) + use-sidecar: 1.1.3(@types/react@19.1.8)(react@19.1.0) optionalDependencies: - '@types/react': 19.1.6 + '@types/react': 19.1.8 react-resizable@3.0.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0): dependencies: @@ -11675,13 +12000,13 @@ snapshots: transitivePeerDependencies: - react-dom - react-style-singleton@2.2.3(@types/react@19.1.6)(react@19.1.0): + react-style-singleton@2.2.3(@types/react@19.1.8)(react@19.1.0): dependencies: get-nonce: 1.0.1 react: 19.1.0 tslib: 2.8.1 optionalDependencies: - '@types/react': 19.1.6 + '@types/react': 19.1.8 react-transition-group@4.4.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0): dependencies: @@ -11882,6 +12207,8 @@ snapshots: resolve-from@4.0.0: {} + resolve-from@5.0.0: {} + resolve-pkg-maps@1.0.0: {} resolve@1.22.10: @@ -12026,21 +12353,19 @@ snapshots: '@shikijs/vscode-textmate': 10.0.2 '@types/hast': 3.0.4 - shiki@3.4.2: + shiki@3.6.0: dependencies: - '@shikijs/core': 3.4.2 - '@shikijs/engine-javascript': 3.4.2 - '@shikijs/engine-oniguruma': 3.4.2 - '@shikijs/langs': 3.4.2 - '@shikijs/themes': 3.4.2 - '@shikijs/types': 3.4.2 + '@shikijs/core': 3.6.0 + '@shikijs/engine-javascript': 3.6.0 + '@shikijs/engine-oniguruma': 3.6.0 + '@shikijs/langs': 3.6.0 + '@shikijs/themes': 3.6.0 + '@shikijs/types': 3.6.0 '@shikijs/vscode-textmate': 10.0.2 '@types/hast': 3.0.4 signal-exit@4.1.0: {} - simple-git-hooks@2.13.0: {} - simple-swizzle@0.2.2: dependencies: is-arrayish: 0.3.2 @@ -12093,7 +12418,7 @@ snapshots: commander: 13.1.0 wicked-good-xpath: 1.3.0 - stable-hash@0.0.5: {} + split2@4.2.0: {} streamsearch@1.1.0: {} @@ -12174,13 +12499,13 @@ snapshots: tabbable@6.2.0: {} - tailwind-merge@3.3.0: {} + tailwind-merge@3.3.1: {} - tailwindcss-animate@1.0.7(tailwindcss@4.1.8): + tailwindcss-animate@1.0.7(tailwindcss@4.1.10): dependencies: - tailwindcss: 4.1.8 + tailwindcss: 4.1.10 - tailwindcss@4.1.8: {} + tailwindcss@4.1.10: {} tapable@2.2.2: {} @@ -12209,6 +12534,10 @@ snapshots: commander: 2.20.3 source-map-support: 0.5.21 + text-extensions@2.4.0: {} + + through@2.3.8: {} + tiny-inflate@1.0.3: {} tiny-invariant@1.3.3: {} @@ -12284,6 +12613,8 @@ snapshots: dependencies: regexp-util: 2.0.3 + unicorn-magic@0.1.0: {} + unicount@1.1.0: {} unified@11.0.5: @@ -12363,28 +12694,6 @@ snapshots: unist-util-is: 6.0.0 unist-util-visit-parents: 6.0.1 - unrs-resolver@1.7.8: - dependencies: - napi-postinstall: 0.2.4 - optionalDependencies: - '@unrs/resolver-binding-darwin-arm64': 1.7.8 - '@unrs/resolver-binding-darwin-x64': 1.7.8 - '@unrs/resolver-binding-freebsd-x64': 1.7.8 - '@unrs/resolver-binding-linux-arm-gnueabihf': 1.7.8 - '@unrs/resolver-binding-linux-arm-musleabihf': 1.7.8 - '@unrs/resolver-binding-linux-arm64-gnu': 1.7.8 - '@unrs/resolver-binding-linux-arm64-musl': 1.7.8 - '@unrs/resolver-binding-linux-ppc64-gnu': 1.7.8 - '@unrs/resolver-binding-linux-riscv64-gnu': 1.7.8 - '@unrs/resolver-binding-linux-riscv64-musl': 1.7.8 - '@unrs/resolver-binding-linux-s390x-gnu': 1.7.8 - '@unrs/resolver-binding-linux-x64-gnu': 1.7.8 - '@unrs/resolver-binding-linux-x64-musl': 1.7.8 - '@unrs/resolver-binding-wasm32-wasi': 1.7.8 - '@unrs/resolver-binding-win32-arm64-msvc': 1.7.8 - '@unrs/resolver-binding-win32-ia32-msvc': 1.7.8 - '@unrs/resolver-binding-win32-x64-msvc': 1.7.8 - update-browserslist-db@1.1.3(browserslist@4.25.0): dependencies: browserslist: 4.25.0 @@ -12395,24 +12704,24 @@ snapshots: dependencies: punycode: 2.3.1 - use-callback-ref@1.3.3(@types/react@19.1.6)(react@19.1.0): + use-callback-ref@1.3.3(@types/react@19.1.8)(react@19.1.0): dependencies: react: 19.1.0 tslib: 2.8.1 optionalDependencies: - '@types/react': 19.1.6 + '@types/react': 19.1.8 use-memo-one@1.1.3(react@19.1.0): dependencies: react: 19.1.0 - use-sidecar@1.1.3(@types/react@19.1.6)(react@19.1.0): + use-sidecar@1.1.3(@types/react@19.1.8)(react@19.1.0): dependencies: detect-node-es: 1.1.0 react: 19.1.0 tslib: 2.8.1 optionalDependencies: - '@types/react': 19.1.6 + '@types/react': 19.1.8 use-sync-external-store@1.5.0(react@19.1.0): dependencies: @@ -12565,19 +12874,23 @@ snapshots: yocto-queue@0.1.0: {} + yocto-queue@1.2.1: {} + zod-validation-error@3.4.1(zod@3.25.36): dependencies: zod: 3.25.36 zod@3.25.36: {} + zod@3.25.63: {} + zrender@5.6.1: dependencies: tslib: 2.3.0 - zustand@5.0.5(@types/react@19.1.6)(react@19.1.0)(use-sync-external-store@1.5.0(react@19.1.0)): + zustand@5.0.5(@types/react@19.1.8)(react@19.1.0)(use-sync-external-store@1.5.0(react@19.1.0)): optionalDependencies: - '@types/react': 19.1.6 + '@types/react': 19.1.8 react: 19.1.0 use-sync-external-store: 1.5.0(react@19.1.0) diff --git a/showcase/sheets/basic/data.ts b/showcase/sheets/basic/data.ts index 062067de..f03f343a 100644 --- a/showcase/sheets/basic/data.ts +++ b/showcase/sheets/basic/data.ts @@ -10602,352 +10602,352 @@ export const WORKBOOK_DATA: IWorkbookData = { }, rightToLeft: 0, }, - "sheet-08": { - "name": "Hyperlink", - "id": "sheet-08", - "tabColor": "", - "hidden": 0, - "rowCount": 1000, - "columnCount": 20, - "zoomRatio": 1, - "freeze": { - "xSplit": 0, - "ySplit": 0, - "startRow": -1, - "startColumn": -1 - }, - "scrollTop": 0, - "scrollLeft": 0, - "defaultColumnWidth": 88, - "defaultRowHeight": 24, - "mergeData": [], - "cellData": { - "1": { - "1": { - "v": "Jump to Link", - "t": 1, - "p": { - "id": "d", - "documentStyle": { - "pageSize": { - "width": null, - "height": null + 'sheet-08': { + name: 'Hyperlink', + id: 'sheet-08', + tabColor: '', + hidden: 0, + rowCount: 1000, + columnCount: 20, + zoomRatio: 1, + freeze: { + xSplit: 0, + ySplit: 0, + startRow: -1, + startColumn: -1, + }, + scrollTop: 0, + scrollLeft: 0, + defaultColumnWidth: 88, + defaultRowHeight: 24, + mergeData: [], + cellData: { + 1: { + 1: { + v: 'Jump to Link', + t: 1, + p: { + id: 'd', + documentStyle: { + pageSize: { + width: null, + height: null, + }, + marginTop: 0, + marginBottom: 2, + marginRight: 2, + marginLeft: 2, + renderConfig: { + horizontalAlign: 0, + verticalAlign: 0, + centerAngle: 0, + vertexAngle: 0, + wrapStrategy: 0, + cellValueType: 1, + zeroWidthParagraphBreak: 1, }, - "marginTop": 0, - "marginBottom": 2, - "marginRight": 2, - "marginLeft": 2, - "renderConfig": { - "horizontalAlign": 0, - "verticalAlign": 0, - "centerAngle": 0, - "vertexAngle": 0, - "wrapStrategy": 0, - "cellValueType": 1, - "zeroWidthParagraphBreak": 1 - } }, - "body": { - "dataStream": "Jump to Link\r\n", - "textRuns": [ + body: { + dataStream: 'Jump to Link\r\n', + textRuns: [ { - "ts": {}, - "st": 0, - "ed": 12 - } + ts: {}, + st: 0, + ed: 12, + }, ], - "paragraphs": [ + paragraphs: [ { - "startIndex": 12, - "paragraphStyle": { - "horizontalAlign": 0 - } - } + startIndex: 12, + paragraphStyle: { + horizontalAlign: 0, + }, + }, ], - "sectionBreaks": [ + sectionBreaks: [ { - "startIndex": 13 - } + startIndex: 13, + }, ], - "customRanges": [ + customRanges: [ { - "rangeId": "WrcjNj2emJmIhjEAlhW5i", - "rangeType": 0, - "startIndex": 0, - "endIndex": 11, - "properties": { - "url": "https://github.com/dream-num/univer", - "refId": "WrcjNj2emJmIhjEAlhW5i" - } - } + rangeId: 'WrcjNj2emJmIhjEAlhW5i', + rangeType: 0, + startIndex: 0, + endIndex: 11, + properties: { + url: 'https://github.com/dream-num/univer', + refId: 'WrcjNj2emJmIhjEAlhW5i', + }, + }, ], - "customDecorations": [] + customDecorations: [], }, - "drawings": {}, - "drawingsOrder": [] - } - } - }, - "3": { - "1": { - "v": "Jump to Range", - "t": 1, - "p": { - "id": "d", - "documentStyle": { - "pageSize": { - "width": null, - "height": null + drawings: {}, + drawingsOrder: [], + }, + }, + }, + 3: { + 1: { + v: 'Jump to Range', + t: 1, + p: { + id: 'd', + documentStyle: { + pageSize: { + width: null, + height: null, + }, + marginTop: 0, + marginBottom: 2, + marginRight: 2, + marginLeft: 2, + renderConfig: { + horizontalAlign: 0, + verticalAlign: 0, + centerAngle: 0, + vertexAngle: 0, + wrapStrategy: 0, + cellValueType: 1, + zeroWidthParagraphBreak: 1, }, - "marginTop": 0, - "marginBottom": 2, - "marginRight": 2, - "marginLeft": 2, - "renderConfig": { - "horizontalAlign": 0, - "verticalAlign": 0, - "centerAngle": 0, - "vertexAngle": 0, - "wrapStrategy": 0, - "cellValueType": 1, - "zeroWidthParagraphBreak": 1 - } }, - "body": { - "dataStream": "Jump to Range\r\n", - "textRuns": [ + body: { + dataStream: 'Jump to Range\r\n', + textRuns: [ { - "ts": {}, - "st": 0, - "ed": 13 - } + ts: {}, + st: 0, + ed: 13, + }, ], - "paragraphs": [ + paragraphs: [ { - "startIndex": 13, - "paragraphStyle": { - "horizontalAlign": 0 - } - } + startIndex: 13, + paragraphStyle: { + horizontalAlign: 0, + }, + }, ], - "sectionBreaks": [ + sectionBreaks: [ { - "startIndex": 14 - } + startIndex: 14, + }, ], - "customRanges": [ + customRanges: [ { - "rangeId": "RcIqw2HJEZYvxWwDPeWdz", - "rangeType": 0, - "startIndex": 0, - "endIndex": 12, - "properties": { - "url": "#gid=sheet-08&range=H3:H6", - "refId": "RcIqw2HJEZYvxWwDPeWdz" - } - } + rangeId: 'RcIqw2HJEZYvxWwDPeWdz', + rangeType: 0, + startIndex: 0, + endIndex: 12, + properties: { + url: '#gid=sheet-08&range=H3:H6', + refId: 'RcIqw2HJEZYvxWwDPeWdz', + }, + }, ], - "customDecorations": [] + customDecorations: [], }, - "drawings": {}, - "drawingsOrder": [] - } - } - }, - "5": { - "1": { - "v": "Jump to Worksheet", - "t": 1, - "p": { - "id": "d", - "documentStyle": { - "pageSize": { - "width": null, - "height": null + drawings: {}, + drawingsOrder: [], + }, + }, + }, + 5: { + 1: { + v: 'Jump to Worksheet', + t: 1, + p: { + id: 'd', + documentStyle: { + pageSize: { + width: null, + height: null, + }, + marginTop: 0, + marginBottom: 2, + marginRight: 2, + marginLeft: 2, + renderConfig: { + horizontalAlign: 0, + verticalAlign: 0, + centerAngle: 0, + vertexAngle: 0, + wrapStrategy: 0, + cellValueType: 1, + zeroWidthParagraphBreak: 1, }, - "marginTop": 0, - "marginBottom": 2, - "marginRight": 2, - "marginLeft": 2, - "renderConfig": { - "horizontalAlign": 0, - "verticalAlign": 0, - "centerAngle": 0, - "vertexAngle": 0, - "wrapStrategy": 0, - "cellValueType": 1, - "zeroWidthParagraphBreak": 1 - } }, - "body": { - "dataStream": "Jump to Worksheet\r\n", - "textRuns": [ + body: { + dataStream: 'Jump to Worksheet\r\n', + textRuns: [ { - "ts": {}, - "st": 0, - "ed": 17 - } + ts: {}, + st: 0, + ed: 17, + }, ], - "paragraphs": [ + paragraphs: [ { - "startIndex": 17, - "paragraphStyle": { - "horizontalAlign": 0 - } - } + startIndex: 17, + paragraphStyle: { + horizontalAlign: 0, + }, + }, ], - "sectionBreaks": [ + sectionBreaks: [ { - "startIndex": 18 - } + startIndex: 18, + }, ], - "customRanges": [ + customRanges: [ { - "rangeId": "nmxnAHsdQ4O_woJ9yIKZI", - "rangeType": 0, - "startIndex": 0, - "endIndex": 16, - "properties": { - "url": "#gid=sheet-01", - "refId": "nmxnAHsdQ4O_woJ9yIKZI" - } - } + rangeId: 'nmxnAHsdQ4O_woJ9yIKZI', + rangeType: 0, + startIndex: 0, + endIndex: 16, + properties: { + url: '#gid=sheet-01', + refId: 'nmxnAHsdQ4O_woJ9yIKZI', + }, + }, ], - "customDecorations": [] + customDecorations: [], }, - "drawings": {}, - "drawingsOrder": [] - } - } - }, - "7": { - "1": { - "v": "Jump to Defined Name", - "t": 1, - "p": { - "id": "d", - "documentStyle": { - "pageSize": { - "width": null, - "height": null + drawings: {}, + drawingsOrder: [], + }, + }, + }, + 7: { + 1: { + v: 'Jump to Defined Name', + t: 1, + p: { + id: 'd', + documentStyle: { + pageSize: { + width: null, + height: null, + }, + marginTop: 0, + marginBottom: 2, + marginRight: 2, + marginLeft: 2, + renderConfig: { + horizontalAlign: 0, + verticalAlign: 0, + centerAngle: 0, + vertexAngle: 0, + wrapStrategy: 0, + cellValueType: 1, + zeroWidthParagraphBreak: 1, }, - "marginTop": 0, - "marginBottom": 2, - "marginRight": 2, - "marginLeft": 2, - "renderConfig": { - "horizontalAlign": 0, - "verticalAlign": 0, - "centerAngle": 0, - "vertexAngle": 0, - "wrapStrategy": 0, - "cellValueType": 1, - "zeroWidthParagraphBreak": 1 - } }, - "body": { - "dataStream": "Jump to Defined Name\r\n", - "textRuns": [ + body: { + dataStream: 'Jump to Defined Name\r\n', + textRuns: [ { - "ts": {}, - "st": 0, - "ed": 20 - } + ts: {}, + st: 0, + ed: 20, + }, ], - "paragraphs": [ + paragraphs: [ { - "startIndex": 20, - "paragraphStyle": { - "horizontalAlign": 0 - } - } + startIndex: 20, + paragraphStyle: { + horizontalAlign: 0, + }, + }, ], - "sectionBreaks": [ + sectionBreaks: [ { - "startIndex": 21 - } + startIndex: 21, + }, ], - "customRanges": [ + customRanges: [ { - "rangeId": "ETET-njv7iKCJWTj8cITJ", - "rangeType": 0, - "startIndex": 0, - "endIndex": 19, - "properties": { - "url": "#rangeid=AnKVqePS89", - "refId": "ETET-njv7iKCJWTj8cITJ" - } - } + rangeId: 'ETET-njv7iKCJWTj8cITJ', + rangeType: 0, + startIndex: 0, + endIndex: 19, + properties: { + url: '#rangeid=AnKVqePS89', + refId: 'ETET-njv7iKCJWTj8cITJ', + }, + }, ], - "customDecorations": [] + customDecorations: [], }, - "drawings": {}, - "drawingsOrder": [] - } - } - } - }, - "rowData": { - "1": { - "hd": 0, - "h": 24, - "ah": 24, - "ia": 0 - }, - "2": { - "hd": 0, - "h": 24, - "ah": 24, - "ia": 0 - }, - "3": { - "hd": 0, - "h": 24, - "ah": 24 - }, - "4": { - "hd": 0, - "h": 24, - "ah": 24 - }, - "5": { - "hd": 0, - "h": 24 - }, - "6": { - "hd": 0, - "h": 24 - }, - "7": { - "hd": 0, - "h": 24 - }, - "8": { - "hd": 0, - "h": 24 - } - }, - "columnData": { - "1": { - "w": 176, - "hd": 0 - }, - "2": { - "w": 103, - "hd": 0 - } - }, - "showGridlines": 1, - "rowHeader": { - "width": 46, - "hidden": 0 - }, - "columnHeader": { - "height": 20, - "hidden": 0 - }, - "rightToLeft": 0 - } + drawings: {}, + drawingsOrder: [], + }, + }, + }, + }, + rowData: { + 1: { + hd: 0, + h: 24, + ah: 24, + ia: 0, + }, + 2: { + hd: 0, + h: 24, + ah: 24, + ia: 0, + }, + 3: { + hd: 0, + h: 24, + ah: 24, + }, + 4: { + hd: 0, + h: 24, + ah: 24, + }, + 5: { + hd: 0, + h: 24, + }, + 6: { + hd: 0, + h: 24, + }, + 7: { + hd: 0, + h: 24, + }, + 8: { + hd: 0, + h: 24, + }, + }, + columnData: { + 1: { + w: 176, + hd: 0, + }, + 2: { + w: 103, + hd: 0, + }, + }, + showGridlines: 1, + rowHeader: { + width: 46, + hidden: 0, + }, + columnHeader: { + height: 20, + hidden: 0, + }, + rightToLeft: 0, + }, }, resources: [ { diff --git a/showcase/sheets/migrate-from-luckysheet/common/interface/data-verification.ts b/showcase/sheets/migrate-from-luckysheet/common/interface/data-verification.ts index 5f6d4db2..e7526515 100644 --- a/showcase/sheets/migrate-from-luckysheet/common/interface/data-verification.ts +++ b/showcase/sheets/migrate-from-luckysheet/common/interface/data-verification.ts @@ -15,13 +15,13 @@ export interface IluckysheetDataVerificationValue { hintText: string } -export type IluckysheetDataVerificationType = - | 'dropdown' - | 'checkbox' - | 'number' - | 'number_integer' - | 'number_decimal' - | 'text_content' - | 'text_length' - | 'date' - | 'validity' +export type IluckysheetDataVerificationType + = | 'dropdown' + | 'checkbox' + | 'number' + | 'number_integer' + | 'number_decimal' + | 'text_content' + | 'text_length' + | 'date' + | 'validity'