diff --git a/.github/actions/setup-node/action.yml b/.github/actions/setup-node/action.yml index 5de87e4f2a..e080322838 100644 --- a/.github/actions/setup-node/action.yml +++ b/.github/actions/setup-node/action.yml @@ -12,7 +12,7 @@ runs: - name: Setup Node.js uses: actions/setup-node@v4 with: - node-version: 20.18.3 + node-version: 24.3.0 cache: pnpm - name: Install dependencies diff --git a/.github/workflows/preview-deploy.yml b/.github/workflows/preview-deploy.yml index d58a9b498d..8bd02db5b1 100644 --- a/.github/workflows/preview-deploy.yml +++ b/.github/workflows/preview-deploy.yml @@ -114,7 +114,7 @@ jobs: - name: Setup Node.js uses: actions/setup-node@v4 with: - node-version: 20.18.3 + node-version: 24.3.0 cache: pnpm - name: Install dependencies @@ -184,7 +184,7 @@ jobs: - name: Setup Node.js uses: actions/setup-node@v4 with: - node-version: 20.18.3 + node-version: 24.3.0 cache: pnpm - name: Install dependencies diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8336bea27f..a0e322bfc4 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -60,7 +60,7 @@ jobs: - name: Install Node.js uses: actions/setup-node@v4 with: - node-version: 20.18.3 + node-version: 24.3.0 registry-url: https://registry.npmjs.org - name: 🚚 Install dependencies and build diff --git a/.nvmrc b/.nvmrc deleted file mode 100644 index 87bc4c77fe..0000000000 --- a/.nvmrc +++ /dev/null @@ -1 +0,0 @@ -20.18.3 diff --git a/common/shared/package.json b/common/shared/package.json index 51b408cd5d..8a28a76693 100644 --- a/common/shared/package.json +++ b/common/shared/package.json @@ -25,12 +25,12 @@ "univer-cli": "bin/index.ts" }, "dependencies": { - "@typescript-eslint/parser": "^8.36.0", + "@typescript-eslint/parser": "^8.37.0", "@vitejs/plugin-react": "^4.6.0", "@vitejs/plugin-vue": "^6.0.0", "@vitest/coverage-istanbul": "^3.2.4", "autoprefixer": "^10.4.21", - "eslint-plugin-better-tailwindcss": "^3.6.0", + "eslint-plugin-better-tailwindcss": "^3.6.2", "fs-extra": "^11.3.0", "happy-dom": "18.0.1", "javascript-obfuscator": "^4.1.1", @@ -39,7 +39,7 @@ "sort-keys": "^5.1.0", "tailwind-scrollbar": "^4.0.2", "tailwindcss": "3.4.17", - "vite": "^6.3.5", + "vite": "^7.0.5", "vite-plugin-dts": "^4.5.4", "vite-plugin-external": "^6.2.2", "vitest": "^3.2.4" diff --git a/common/storybook/package.json b/common/storybook/package.json index bd87e206ab..5cf84843e5 100644 --- a/common/storybook/package.json +++ b/common/storybook/package.json @@ -17,20 +17,20 @@ }, "dependencies": { "@chromatic-com/storybook": "^4.0.1", - "@storybook/addon-docs": "^9.0.16", - "@storybook/addon-links": "^9.0.16", + "@storybook/addon-docs": "^9.0.17", + "@storybook/addon-links": "^9.0.17", "@storybook/addon-styling-webpack": "^2.0.0", "@storybook/addon-webpack5-compiler-swc": "^3.0.0", "@storybook/icons": "^1.4.0", - "@storybook/react": "^9.0.16", - "@storybook/react-webpack5": "^9.0.16", + "@storybook/react": "^9.0.17", + "@storybook/react-webpack5": "^9.0.17", "@univerjs/core": "workspace:*", "@univerjs/design": "workspace:*", "@univerjs/themes": "workspace:*", "@univerjs/ui": "workspace:*", "css-loader": "^7.1.2", "postcss-loader": "^8.1.1", - "storybook": "^9.0.16", + "storybook": "^9.0.17", "storybook-addon-swc": "^1.2.0", "style-loader": "^4.0.0", "tsconfig-paths-webpack-plugin": "^4.2.0", diff --git a/e2e/perf/scroll.spec.ts b/e2e/perf/scroll.spec.ts index 496f94fabf..74f0e0b390 100644 --- a/e2e/perf/scroll.spec.ts +++ b/e2e/perf/scroll.spec.ts @@ -143,7 +143,7 @@ const createTest = (title: string, telemetryName: string, sheetData: IJsonObject await test.step('create univer', async () => { await page.evaluate(({ sheetData, window }: any) => { window.E2EControllerAPI.disposeCurrSheetUnit(); - window.univer.createUniverSheet(sheetData); + window.univerAPI.createWorkbook(sheetData); }, { sheetData, window: windowOfPage }); // wait for canvas has data await page.waitForTimeout(2000); diff --git a/examples/src/node/cases/basic.ts b/examples/src/node/cases/basic.ts index 081fee0ef1..ee079dd0f3 100644 --- a/examples/src/node/cases/basic.ts +++ b/examples/src/node/cases/basic.ts @@ -23,7 +23,7 @@ import { createUniverOnNode } from '../sdk'; async function run(): Promise { const API = FUniver.newAPI(createUniverOnNode()); - const univerSheet = API.createUniverSheet({}); + const univerSheet = API.createWorkbook({}); const a1 = univerSheet.getActiveSheet().getRange('A1'); await a1.setValue({ v: 123 }); diff --git a/package.json b/package.json index 52bfa3aaf3..e5125bc797 100644 --- a/package.json +++ b/package.json @@ -45,7 +45,7 @@ "release": "release-it" }, "devDependencies": { - "@antfu/eslint-config": "4.16.2", + "@antfu/eslint-config": "4.17.0", "@commitlint/cli": "^19.8.1", "@commitlint/config-conventional": "^19.8.1", "@eslint-react/eslint-plugin": "^1.52.3", @@ -53,7 +53,7 @@ "@release-it-plugins/workspaces": "^5.0.3", "@release-it/conventional-changelog": "^10.0.1", "@types/fs-extra": "^11.0.4", - "@types/node": "^24.0.13", + "@types/node": "^24.0.14", "@types/react": "19.1.8", "@types/react-dom": "19.1.6", "@univerjs-infra/shared": "workspace:*", @@ -62,7 +62,7 @@ "eslint": "9.31.0", "eslint-plugin-format": "^1.0.1", "eslint-plugin-header": "^3.1.1", - "eslint-plugin-jsdoc": "^51.3.4", + "eslint-plugin-jsdoc": "^51.4.1", "eslint-plugin-no-barrel-import": "^0.0.2", "eslint-plugin-no-penetrating-import": "^0.0.1", "eslint-plugin-react": "^7.37.5", @@ -71,14 +71,14 @@ "fs-extra": "^11.3.0", "husky": "^9.1.7", "lint-staged": "^16.1.2", - "posthog-node": "^5.5.0", + "posthog-node": "^5.5.1", "react": "19.1.0", "react-dom": "19.1.0", - "release-it": "^19.0.3", + "release-it": "^19.0.4", "serve": "^14.2.4", "tailwindcss": "3.4.17", "tsx": "^4.20.3", - "turbo": "^2.5.4", + "turbo": "^2.5.5", "typescript": "^5.8.3", "vitest": "^3.2.4" }, diff --git a/packages-experimental/debugger/package.json b/packages-experimental/debugger/package.json index 0b261ccca8..7946dff96c 100644 --- a/packages-experimental/debugger/package.json +++ b/packages-experimental/debugger/package.json @@ -76,7 +76,7 @@ "rxjs": "^7.8.2", "tailwindcss": "3.4.17", "typescript": "^5.8.3", - "vite": "^6.3.5", + "vite": "^7.0.5", "vitest": "^3.2.4", "vue": "^3.5.17" } diff --git a/packages-experimental/uni-docs-ui/package.json b/packages-experimental/uni-docs-ui/package.json index 5d2a654de5..0e4863e8d1 100644 --- a/packages-experimental/uni-docs-ui/package.json +++ b/packages-experimental/uni-docs-ui/package.json @@ -73,7 +73,7 @@ "rxjs": "^7.8.2", "tailwindcss": "3.4.17", "typescript": "^5.8.3", - "vite": "^6.3.5", + "vite": "^7.0.5", "vitest": "^3.2.4" } } diff --git a/packages-experimental/uni-formula-ui/package.json b/packages-experimental/uni-formula-ui/package.json index 4a502cdf0b..2ef3a7b1b0 100644 --- a/packages-experimental/uni-formula-ui/package.json +++ b/packages-experimental/uni-formula-ui/package.json @@ -86,7 +86,7 @@ "rxjs": "^7.8.2", "tailwindcss": "3.4.17", "typescript": "^5.8.3", - "vite": "^6.3.5", + "vite": "^7.0.5", "vitest": "^3.2.4" } } diff --git a/packages-experimental/uni-formula/package.json b/packages-experimental/uni-formula/package.json index bac6706539..83c7cd578d 100644 --- a/packages-experimental/uni-formula/package.json +++ b/packages-experimental/uni-formula/package.json @@ -61,7 +61,7 @@ "devDependencies": { "@univerjs-infra/shared": "workspace:*", "typescript": "^5.8.3", - "vite": "^6.3.5", + "vite": "^7.0.5", "vitest": "^3.2.4" } } diff --git a/packages-experimental/uni-sheets-ui/package.json b/packages-experimental/uni-sheets-ui/package.json index 5ec181f1ff..cdee5fa538 100644 --- a/packages-experimental/uni-sheets-ui/package.json +++ b/packages-experimental/uni-sheets-ui/package.json @@ -78,7 +78,7 @@ "rxjs": "^7.8.2", "tailwindcss": "3.4.17", "typescript": "^5.8.3", - "vite": "^6.3.5", + "vite": "^7.0.5", "vitest": "^3.2.4" } } diff --git a/packages-experimental/uni-slides-ui/package.json b/packages-experimental/uni-slides-ui/package.json index 873212b1d9..803984f370 100644 --- a/packages-experimental/uni-slides-ui/package.json +++ b/packages-experimental/uni-slides-ui/package.json @@ -74,7 +74,7 @@ "rxjs": "^7.8.2", "tailwindcss": "3.4.17", "typescript": "^5.8.3", - "vite": "^6.3.5", + "vite": "^7.0.5", "vitest": "^3.2.4" } } diff --git a/packages-experimental/uniui/package.json b/packages-experimental/uniui/package.json index 487f04b778..06625bdd74 100644 --- a/packages-experimental/uniui/package.json +++ b/packages-experimental/uniui/package.json @@ -80,7 +80,7 @@ "rxjs": "^7.8.2", "tailwindcss": "3.4.17", "typescript": "^5.8.3", - "vite": "^6.3.5", + "vite": "^7.0.5", "vitest": "^3.2.4" } } diff --git a/packages/action-recorder/package.json b/packages/action-recorder/package.json index 916ca76142..14bfd6d25b 100644 --- a/packages/action-recorder/package.json +++ b/packages/action-recorder/package.json @@ -80,7 +80,7 @@ "rxjs": "^7.8.2", "tailwindcss": "3.4.17", "typescript": "^5.8.3", - "vite": "^6.3.5", + "vite": "^7.0.5", "vitest": "^3.2.4" } } diff --git a/packages/core/package.json b/packages/core/package.json index 3e95066566..1a5dd02df5 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -93,7 +93,7 @@ "@univerjs-infra/shared": "workspace:*", "rxjs": "^7.8.2", "typescript": "^5.8.3", - "vite": "^6.3.5", + "vite": "^7.0.5", "vitest": "^3.2.4" } } diff --git a/packages/core/src/shared/__tests__/object-matrix.spec.ts b/packages/core/src/shared/__tests__/object-matrix.spec.ts index d435b4bb38..2d158d036b 100644 --- a/packages/core/src/shared/__tests__/object-matrix.spec.ts +++ b/packages/core/src/shared/__tests__/object-matrix.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { moveMatrixArray, ObjectMatrix, spliceArray } from '../object-matrix'; describe('test ObjectMatrix', () => { diff --git a/packages/core/src/shared/__tests__/ref-alias.spec.ts b/packages/core/src/shared/__tests__/ref-alias.spec.ts index 3e98111745..fd99713bfd 100644 --- a/packages/core/src/shared/__tests__/ref-alias.spec.ts +++ b/packages/core/src/shared/__tests__/ref-alias.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { RefAlias } from '../ref-alias'; const createInstance = () => diff --git a/packages/core/src/sheets/__tests__/create-core-test-bed.ts b/packages/core/src/sheets/__tests__/create-core-test-bed.ts index fedbc16519..765f12fa12 100644 --- a/packages/core/src/sheets/__tests__/create-core-test-bed.ts +++ b/packages/core/src/sheets/__tests__/create-core-test-bed.ts @@ -14,11 +14,13 @@ * limitations under the License. */ -import { Univer } from '../../univer'; +import type { IWorkbookData } from '../typedef'; +import type { Workbook } from '../workbook'; +import { UniverInstanceType } from '../../common/unit'; import { IUniverInstanceService } from '../../services/instance/instance.service'; import { ILogService, LogLevel } from '../../services/log/log.service'; import { LocaleType } from '../../types/enum/locale-type'; -import type { IWorkbookData } from '../typedef'; +import { Univer } from '../../univer'; const testWorkbookDataFactory: () => IWorkbookData = () => ({ id: 'test', @@ -50,7 +52,7 @@ export function createCoreTestBed(workbookData?: IWorkbookData) { const injector = univer.__getInjector(); const get = injector.get.bind(injector); - const sheet = univer.createUniverSheet(workbookData || testWorkbookDataFactory()); + const sheet = univer.createUnit(UniverInstanceType.UNIVER_SHEET, workbookData || testWorkbookDataFactory()); const univerInstanceService = get(IUniverInstanceService); univerInstanceService.focusUnit(workbookData?.id ?? 'test'); diff --git a/packages/core/src/sheets/__tests__/styles.spec.ts b/packages/core/src/sheets/__tests__/styles.spec.ts index 7d840a723d..54271ab4fc 100644 --- a/packages/core/src/sheets/__tests__/styles.spec.ts +++ b/packages/core/src/sheets/__tests__/styles.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { Styles } from '../styles'; describe('Test Styles', () => { diff --git a/packages/data-validation/package.json b/packages/data-validation/package.json index ffc7f4f67c..a738fd8143 100644 --- a/packages/data-validation/package.json +++ b/packages/data-validation/package.json @@ -70,7 +70,7 @@ "@univerjs/sheets": "workspace:*", "rxjs": "^7.8.2", "typescript": "^5.8.3", - "vite": "^6.3.5", + "vite": "^7.0.5", "vitest": "^3.2.4" } } diff --git a/packages/design/package.json b/packages/design/package.json index 50ab4f2730..6295c82b37 100644 --- a/packages/design/package.json +++ b/packages/design/package.json @@ -102,7 +102,7 @@ "tailwindcss": "3.4.17", "tailwindcss-animate": "^1.0.7", "typescript": "^5.8.3", - "vite": "^6.3.5", + "vite": "^7.0.5", "vitest": "^3.2.4" } } diff --git a/packages/design/src/components/checkbox/__tests__/index.spec.tsx b/packages/design/src/components/checkbox/__tests__/index.spec.tsx index 4ea989a6e0..6db11ba2a2 100644 --- a/packages/design/src/components/checkbox/__tests__/index.spec.tsx +++ b/packages/design/src/components/checkbox/__tests__/index.spec.tsx @@ -17,7 +17,6 @@ import { fireEvent, render } from '@testing-library/react'; import { useState } from 'react'; import { describe, expect, it } from 'vitest'; - import { Checkbox } from '../Checkbox'; describe('Checkbox', () => { diff --git a/packages/design/src/components/color-picker/__tests__/index.spec.tsx b/packages/design/src/components/color-picker/__tests__/index.spec.tsx index 04ef59a9b2..6dfd0138e0 100644 --- a/packages/design/src/components/color-picker/__tests__/index.spec.tsx +++ b/packages/design/src/components/color-picker/__tests__/index.spec.tsx @@ -16,7 +16,6 @@ import { render } from '@testing-library/react'; import { describe, expect, it } from 'vitest'; - import { ColorPicker } from '../ColorPicker'; describe('ColorPicker', () => { diff --git a/packages/docs-drawing-ui/package.json b/packages/docs-drawing-ui/package.json index 169de3d3d5..7dea1a5bfc 100644 --- a/packages/docs-drawing-ui/package.json +++ b/packages/docs-drawing-ui/package.json @@ -83,7 +83,7 @@ "rxjs": "^7.8.2", "tailwindcss": "3.4.17", "typescript": "^5.8.3", - "vite": "^6.3.5", + "vite": "^7.0.5", "vitest": "^3.2.4" } } diff --git a/packages/docs-drawing/package.json b/packages/docs-drawing/package.json index 11c06435ff..bae0e395e4 100644 --- a/packages/docs-drawing/package.json +++ b/packages/docs-drawing/package.json @@ -62,7 +62,7 @@ "devDependencies": { "@univerjs-infra/shared": "workspace:*", "typescript": "^5.8.3", - "vite": "^6.3.5", + "vite": "^7.0.5", "vitest": "^3.2.4" } } diff --git a/packages/docs-hyper-link-ui/package.json b/packages/docs-hyper-link-ui/package.json index dbc2be94b5..5ed69f0a7f 100644 --- a/packages/docs-hyper-link-ui/package.json +++ b/packages/docs-hyper-link-ui/package.json @@ -82,7 +82,7 @@ "rxjs": "^7.8.2", "tailwindcss": "3.4.17", "typescript": "^5.8.3", - "vite": "^6.3.5", + "vite": "^7.0.5", "vitest": "^3.2.4" } } diff --git a/packages/docs-hyper-link/package.json b/packages/docs-hyper-link/package.json index 463f711c5e..22dbd11c4c 100644 --- a/packages/docs-hyper-link/package.json +++ b/packages/docs-hyper-link/package.json @@ -61,7 +61,7 @@ "devDependencies": { "@univerjs-infra/shared": "workspace:*", "typescript": "^5.8.3", - "vite": "^6.3.5", + "vite": "^7.0.5", "vitest": "^3.2.4" } } diff --git a/packages/docs-mention-ui/package.json b/packages/docs-mention-ui/package.json index afbe925133..66cabc1e63 100644 --- a/packages/docs-mention-ui/package.json +++ b/packages/docs-mention-ui/package.json @@ -75,7 +75,7 @@ "rxjs": "^7.8.2", "tailwindcss": "3.4.17", "typescript": "^5.8.3", - "vite": "^6.3.5", + "vite": "^7.0.5", "vitest": "^3.2.4" } } diff --git a/packages/docs-quick-insert-ui/package.json b/packages/docs-quick-insert-ui/package.json index 294decb60a..20f07c9f0f 100644 --- a/packages/docs-quick-insert-ui/package.json +++ b/packages/docs-quick-insert-ui/package.json @@ -85,7 +85,7 @@ "rxjs": "^7.8.2", "tailwindcss": "3.4.17", "typescript": "^5.8.3", - "vite": "^6.3.5", + "vite": "^7.0.5", "vitest": "^3.2.4" } } diff --git a/packages/docs-thread-comment-ui/package.json b/packages/docs-thread-comment-ui/package.json index 20fac988fa..0616be8a42 100644 --- a/packages/docs-thread-comment-ui/package.json +++ b/packages/docs-thread-comment-ui/package.json @@ -76,7 +76,7 @@ "rxjs": "^7.8.2", "tailwindcss": "3.4.17", "typescript": "^5.8.3", - "vite": "^6.3.5", + "vite": "^7.0.5", "vitest": "^3.2.4" } } diff --git a/packages/docs-ui/package.json b/packages/docs-ui/package.json index b541077004..187558c209 100644 --- a/packages/docs-ui/package.json +++ b/packages/docs-ui/package.json @@ -97,7 +97,7 @@ "rxjs": "^7.8.2", "tailwindcss": "3.4.17", "typescript": "^5.8.3", - "vite": "^6.3.5", + "vite": "^7.0.5", "vitest": "^3.2.4" } } diff --git a/packages/docs-ui/src/commands/commands/__tests__/create-command-test-bed.ts b/packages/docs-ui/src/commands/commands/__tests__/create-command-test-bed.ts index 181ebce09d..ed649c3894 100644 --- a/packages/docs-ui/src/commands/commands/__tests__/create-command-test-bed.ts +++ b/packages/docs-ui/src/commands/commands/__tests__/create-command-test-bed.ts @@ -33,7 +33,6 @@ import { UniverInstanceType, } from '@univerjs/core'; import { DocSelectionManagerService, DocSkeletonManagerService, DocStateEmitService } from '@univerjs/docs'; - import { DocumentViewModel, IRenderManagerService } from '@univerjs/engine-render'; import { BehaviorSubject, takeUntil } from 'rxjs'; import { DocIMEInputManagerService } from '../../../services/doc-ime-input-manager.service'; @@ -134,7 +133,7 @@ export function createCommandTestBed(docData?: IDocumentData, dependencies?: Dep univer.registerPlugin(TestPlugin); - const doc = univer.createUniverDoc(docData || TEST_DOCUMENT_DATA_EN); + const doc = univer.createUnit(UniverInstanceType.UNIVER_DOC, docData || TEST_DOCUMENT_DATA_EN); const univerInstanceService = get(IUniverInstanceService); diff --git a/packages/docs-ui/src/facade/__tests__/create-test-bed.ts b/packages/docs-ui/src/facade/__tests__/create-test-bed.ts index 60c3b28dcc..bff35f600b 100644 --- a/packages/docs-ui/src/facade/__tests__/create-test-bed.ts +++ b/packages/docs-ui/src/facade/__tests__/create-test-bed.ts @@ -98,7 +98,7 @@ export function createTestBed(documentConfig?: IDocumentData, dependencies?: Dep injector.get(LocaleService).load({ zhCN, enUS }); univer.registerPlugin(TestPlugin); - const doc = univer.createUniverDoc(documentConfig || getTestDocumentDataDemo()); + const doc = univer.createUnit(UniverInstanceType.UNIVER_DOC, documentConfig ?? getTestDocumentDataDemo()); const univerInstanceService = injector.get(IUniverInstanceService); univerInstanceService.focusUnit('test'); diff --git a/packages/docs/package.json b/packages/docs/package.json index 600998bde7..e52846421b 100644 --- a/packages/docs/package.json +++ b/packages/docs/package.json @@ -68,7 +68,7 @@ "@univerjs-infra/shared": "workspace:*", "rxjs": "^7.8.2", "typescript": "^5.8.3", - "vite": "^6.3.5", + "vite": "^7.0.5", "vitest": "^3.2.4" } } diff --git a/packages/drawing-ui/package.json b/packages/drawing-ui/package.json index 7a2472519f..f3e8b51061 100644 --- a/packages/drawing-ui/package.json +++ b/packages/drawing-ui/package.json @@ -80,7 +80,7 @@ "rxjs": "^7.8.2", "tailwindcss": "3.4.17", "typescript": "^5.8.3", - "vite": "^6.3.5", + "vite": "^7.0.5", "vitest": "^3.2.4" } } diff --git a/packages/drawing/package.json b/packages/drawing/package.json index 1174dc1ff6..06b03adbe4 100644 --- a/packages/drawing/package.json +++ b/packages/drawing/package.json @@ -66,7 +66,7 @@ "@univerjs-infra/shared": "workspace:*", "rxjs": "^7.8.2", "typescript": "^5.8.3", - "vite": "^6.3.5", + "vite": "^7.0.5", "vitest": "^3.2.4" } } diff --git a/packages/engine-formula/package.json b/packages/engine-formula/package.json index 3bbd20b94d..aa1274d73a 100644 --- a/packages/engine-formula/package.json +++ b/packages/engine-formula/package.json @@ -81,7 +81,7 @@ "@univerjs-infra/shared": "workspace:*", "rxjs": "^7.8.2", "typescript": "^5.8.3", - "vite": "^6.3.5", + "vite": "^7.0.5", "vitest": "^3.2.4" } } diff --git a/packages/engine-formula/src/engine/analysis/__tests__/create-command-test-bed.ts b/packages/engine-formula/src/engine/analysis/__tests__/create-command-test-bed.ts index 47dad82918..25e0ae52bf 100644 --- a/packages/engine-formula/src/engine/analysis/__tests__/create-command-test-bed.ts +++ b/packages/engine-formula/src/engine/analysis/__tests__/create-command-test-bed.ts @@ -255,7 +255,7 @@ export function createCommandTestBed(workbookData?: IWorkbookData, dependencies? } univer.registerPlugin(TestPlugin); - const sheet = univer.createUniverSheet(workbookData || TEST_WORKBOOK_DATA); + const sheet = univer.createUnit(UniverInstanceType.UNIVER_SHEET, workbookData || TEST_WORKBOOK_DATA); const univerInstanceService = get(IUniverInstanceService); univerInstanceService.focusUnit('test'); @@ -264,7 +264,7 @@ export function createCommandTestBed(workbookData?: IWorkbookData, dependencies? logService.setLogLevel(LogLevel.SILENT); // change this to `true` to debug tests via logs const sheetData: ISheetData = {}; - const workbook = univerInstanceService.getCurrentUnitForType(UniverInstanceType.UNIVER_SHEET)!; + const workbook = univerInstanceService.getCurrentUnitOfType(UniverInstanceType.UNIVER_SHEET)!; const unitId = workbook.getUnitId(); const sheetId = workbook.getActiveSheet()!.getSheetId(); workbook.getSheets().forEach((sheet) => { diff --git a/packages/engine-formula/src/engine/utils/__tests__/cell.spec.ts b/packages/engine-formula/src/engine/utils/__tests__/cell.spec.ts index ac08e05e1b..2beb075adb 100644 --- a/packages/engine-formula/src/engine/utils/__tests__/cell.spec.ts +++ b/packages/engine-formula/src/engine/utils/__tests__/cell.spec.ts @@ -14,9 +14,8 @@ * limitations under the License. */ -import { describe, expect, it } from 'vitest'; - import type { ICellData } from '@univerjs/core'; +import { describe, expect, it } from 'vitest'; import { getCellValue } from '../cell'; describe('Test cell', () => { diff --git a/packages/engine-formula/src/engine/utils/__tests__/compare.spec.ts b/packages/engine-formula/src/engine/utils/__tests__/compare.spec.ts index c7bfb4a989..e9531accf2 100644 --- a/packages/engine-formula/src/engine/utils/__tests__/compare.spec.ts +++ b/packages/engine-formula/src/engine/utils/__tests__/compare.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { compareToken } from '../../../basics/token'; import { compareWithWildcard, isMatchWildcard, isWildcard, replaceWildcard } from '../compare'; diff --git a/packages/engine-formula/src/engine/utils/__tests__/object-compare.spec.ts b/packages/engine-formula/src/engine/utils/__tests__/object-compare.spec.ts index 53a96db6bf..1d2bf9c5a3 100644 --- a/packages/engine-formula/src/engine/utils/__tests__/object-compare.spec.ts +++ b/packages/engine-formula/src/engine/utils/__tests__/object-compare.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../basics/error-type'; +import { compareToken } from '../../../basics/token'; +import { getObjectValue } from '../../../functions/__tests__/create-function-test-bed'; import { ArrayValueObject, transformToValue, transformToValueObject } from '../../value-object/array-value-object'; import { BooleanValueObject, NumberValueObject, StringValueObject } from '../../value-object/primitive-object'; import { valueObjectCompare } from '../object-compare'; -import { compareToken } from '../../../basics/token'; -import { ErrorType } from '../../../basics/error-type'; -import { getObjectValue } from '../../../functions/__tests__/create-function-test-bed'; const range = ArrayValueObject.create(/*ts*/ `{ Ada; diff --git a/packages/engine-formula/src/engine/utils/__tests__/reference.spec.ts b/packages/engine-formula/src/engine/utils/__tests__/reference.spec.ts index c791a1703d..9fd3c4c428 100644 --- a/packages/engine-formula/src/engine/utils/__tests__/reference.spec.ts +++ b/packages/engine-formula/src/engine/utils/__tests__/reference.spec.ts @@ -16,7 +16,6 @@ import { AbsoluteRefType, RANGE_TYPE } from '@univerjs/core'; import { describe, expect, it } from 'vitest'; - import { deserializeRangeWithSheet, getAbsoluteRefTypeWithSingleString, diff --git a/packages/engine-formula/src/engine/value-object/__tests__/array-value-abs.spec.ts b/packages/engine-formula/src/engine/value-object/__tests__/array-value-abs.spec.ts index 46e0cf563c..4996bf0a7c 100644 --- a/packages/engine-formula/src/engine/value-object/__tests__/array-value-abs.spec.ts +++ b/packages/engine-formula/src/engine/value-object/__tests__/array-value-abs.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ArrayValueObject, transformToValueObject } from '../array-value-object'; describe('arrayValueObject abs method test', () => { diff --git a/packages/engine-formula/src/engine/value-object/__tests__/array-value-acos.spec.ts b/packages/engine-formula/src/engine/value-object/__tests__/array-value-acos.spec.ts index 2dbcbb1ec4..e034fa3167 100644 --- a/packages/engine-formula/src/engine/value-object/__tests__/array-value-acos.spec.ts +++ b/packages/engine-formula/src/engine/value-object/__tests__/array-value-acos.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ArrayValueObject, transformToValueObject } from '../array-value-object'; describe('arrayValueObject acos method test', () => { diff --git a/packages/engine-formula/src/engine/value-object/__tests__/array-value-acosh.spec.ts b/packages/engine-formula/src/engine/value-object/__tests__/array-value-acosh.spec.ts index ffcb48458f..5c0bbb7b62 100644 --- a/packages/engine-formula/src/engine/value-object/__tests__/array-value-acosh.spec.ts +++ b/packages/engine-formula/src/engine/value-object/__tests__/array-value-acosh.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ArrayValueObject, transformToValueObject } from '../array-value-object'; describe('arrayValueObject acosh method test', () => { diff --git a/packages/engine-formula/src/engine/value-object/__tests__/array-value-asin.spec.ts b/packages/engine-formula/src/engine/value-object/__tests__/array-value-asin.spec.ts index 5bf4165169..1d6a4ccde1 100644 --- a/packages/engine-formula/src/engine/value-object/__tests__/array-value-asin.spec.ts +++ b/packages/engine-formula/src/engine/value-object/__tests__/array-value-asin.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ArrayValueObject, transformToValueObject } from '../array-value-object'; describe('arrayValueObject asin method test', () => { diff --git a/packages/engine-formula/src/engine/value-object/__tests__/array-value-asinh.spec.ts b/packages/engine-formula/src/engine/value-object/__tests__/array-value-asinh.spec.ts index c3bfff3bcc..be236cbd88 100644 --- a/packages/engine-formula/src/engine/value-object/__tests__/array-value-asinh.spec.ts +++ b/packages/engine-formula/src/engine/value-object/__tests__/array-value-asinh.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ArrayValueObject, transformToValueObject } from '../array-value-object'; describe('arrayValueObject asinh method test', () => { diff --git a/packages/engine-formula/src/engine/value-object/__tests__/array-value-atan.spec.ts b/packages/engine-formula/src/engine/value-object/__tests__/array-value-atan.spec.ts index e6350c75d5..535184cfab 100644 --- a/packages/engine-formula/src/engine/value-object/__tests__/array-value-atan.spec.ts +++ b/packages/engine-formula/src/engine/value-object/__tests__/array-value-atan.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ArrayValueObject, transformToValueObject } from '../array-value-object'; describe('arrayValueObject atan method test', () => { diff --git a/packages/engine-formula/src/engine/value-object/__tests__/array-value-atan2.spec.ts b/packages/engine-formula/src/engine/value-object/__tests__/array-value-atan2.spec.ts index 03285af4e0..8c9ff74885 100644 --- a/packages/engine-formula/src/engine/value-object/__tests__/array-value-atan2.spec.ts +++ b/packages/engine-formula/src/engine/value-object/__tests__/array-value-atan2.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ArrayValueObject, transformToValueObject } from '../array-value-object'; import { NumberValueObject } from '../primitive-object'; diff --git a/packages/engine-formula/src/engine/value-object/__tests__/array-value-atanh.spec.ts b/packages/engine-formula/src/engine/value-object/__tests__/array-value-atanh.spec.ts index fea6a2a97f..1a5575acc9 100644 --- a/packages/engine-formula/src/engine/value-object/__tests__/array-value-atanh.spec.ts +++ b/packages/engine-formula/src/engine/value-object/__tests__/array-value-atanh.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ArrayValueObject, transformToValueObject } from '../array-value-object'; describe('arrayValueObject atanh method test', () => { diff --git a/packages/engine-formula/src/engine/value-object/__tests__/array-value-cbrt.spec.ts b/packages/engine-formula/src/engine/value-object/__tests__/array-value-cbrt.spec.ts index af323a5b23..a43619190f 100644 --- a/packages/engine-formula/src/engine/value-object/__tests__/array-value-cbrt.spec.ts +++ b/packages/engine-formula/src/engine/value-object/__tests__/array-value-cbrt.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ArrayValueObject, transformToValueObject } from '../array-value-object'; describe('arrayValueObject cbrt method test', () => { diff --git a/packages/engine-formula/src/engine/value-object/__tests__/array-value-ceil.spec.ts b/packages/engine-formula/src/engine/value-object/__tests__/array-value-ceil.spec.ts index 2f8c1b9f30..5a33c0ff71 100644 --- a/packages/engine-formula/src/engine/value-object/__tests__/array-value-ceil.spec.ts +++ b/packages/engine-formula/src/engine/value-object/__tests__/array-value-ceil.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { stripArrayValue } from '../../../functions/__tests__/create-function-test-bed'; import { ArrayValueObject, transformToValueObject } from '../array-value-object'; import { NumberValueObject } from '../primitive-object'; diff --git a/packages/engine-formula/src/engine/value-object/__tests__/array-value-cos.spec.ts b/packages/engine-formula/src/engine/value-object/__tests__/array-value-cos.spec.ts index 40f6628cf7..89404e3b58 100644 --- a/packages/engine-formula/src/engine/value-object/__tests__/array-value-cos.spec.ts +++ b/packages/engine-formula/src/engine/value-object/__tests__/array-value-cos.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ArrayValueObject, transformToValueObject } from '../array-value-object'; describe('arrayValueObject cos method test', () => { diff --git a/packages/engine-formula/src/engine/value-object/__tests__/array-value-divided.spec.ts b/packages/engine-formula/src/engine/value-object/__tests__/array-value-divided.spec.ts index 4de6aa1b9b..e96cac0e2f 100644 --- a/packages/engine-formula/src/engine/value-object/__tests__/array-value-divided.spec.ts +++ b/packages/engine-formula/src/engine/value-object/__tests__/array-value-divided.spec.ts @@ -15,10 +15,9 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../array-value-object'; import { NumberValueObject } from '../primitive-object'; -import { ErrorType } from '../../../basics/error-type'; describe('ArrayValueObject divided method test', () => { describe('Divided', () => { diff --git a/packages/engine-formula/src/engine/value-object/__tests__/array-value-exp.spec.ts b/packages/engine-formula/src/engine/value-object/__tests__/array-value-exp.spec.ts index 9081c068c6..f6c92a6792 100644 --- a/packages/engine-formula/src/engine/value-object/__tests__/array-value-exp.spec.ts +++ b/packages/engine-formula/src/engine/value-object/__tests__/array-value-exp.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ArrayValueObject, transformToValueObject } from '../array-value-object'; describe('arrayValueObject exp method test', () => { diff --git a/packages/engine-formula/src/engine/value-object/__tests__/array-value-floor.spec.ts b/packages/engine-formula/src/engine/value-object/__tests__/array-value-floor.spec.ts index afe02af0aa..8664ab790e 100644 --- a/packages/engine-formula/src/engine/value-object/__tests__/array-value-floor.spec.ts +++ b/packages/engine-formula/src/engine/value-object/__tests__/array-value-floor.spec.ts @@ -15,10 +15,9 @@ */ import { describe, expect, it } from 'vitest'; - +import { stripArrayValue } from '../../../functions/__tests__/create-function-test-bed'; import { ArrayValueObject, transformToValueObject } from '../array-value-object'; import { NumberValueObject } from '../primitive-object'; -import { stripArrayValue } from '../../../functions/__tests__/create-function-test-bed'; describe('arrayValueObject floor method test', () => { const originArrayValueObject = ArrayValueObject.create({ diff --git a/packages/engine-formula/src/engine/value-object/__tests__/array-value-log.spec.ts b/packages/engine-formula/src/engine/value-object/__tests__/array-value-log.spec.ts index 7a078d2630..bfe9ee93a3 100644 --- a/packages/engine-formula/src/engine/value-object/__tests__/array-value-log.spec.ts +++ b/packages/engine-formula/src/engine/value-object/__tests__/array-value-log.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ArrayValueObject, transformToValueObject } from '../array-value-object'; describe('arrayValueObject log method test', () => { diff --git a/packages/engine-formula/src/engine/value-object/__tests__/array-value-log10.spec.ts b/packages/engine-formula/src/engine/value-object/__tests__/array-value-log10.spec.ts index 5603b66a30..84d128cf3f 100644 --- a/packages/engine-formula/src/engine/value-object/__tests__/array-value-log10.spec.ts +++ b/packages/engine-formula/src/engine/value-object/__tests__/array-value-log10.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ArrayValueObject, transformToValueObject } from '../array-value-object'; describe('arrayValueObject log10 method test', () => { diff --git a/packages/engine-formula/src/engine/value-object/__tests__/array-value-minus.spec.ts b/packages/engine-formula/src/engine/value-object/__tests__/array-value-minus.spec.ts index 7a1c1dcbea..6924b76146 100644 --- a/packages/engine-formula/src/engine/value-object/__tests__/array-value-minus.spec.ts +++ b/packages/engine-formula/src/engine/value-object/__tests__/array-value-minus.spec.ts @@ -15,11 +15,10 @@ */ import { describe, expect, it } from 'vitest'; - -import { ArrayValueObject, transformToValueObject } from '../array-value-object'; -import { NumberValueObject } from '../primitive-object'; import { ErrorType } from '../../../basics/error-type'; import { stripArrayValue } from '../../../functions/__tests__/create-function-test-bed'; +import { ArrayValueObject, transformToValueObject } from '../array-value-object'; +import { NumberValueObject } from '../primitive-object'; describe('ArrayValueObject minus method test', () => { describe('Minus', () => { diff --git a/packages/engine-formula/src/engine/value-object/__tests__/array-value-multiply.spec.ts b/packages/engine-formula/src/engine/value-object/__tests__/array-value-multiply.spec.ts index 9cd43bd16a..5101867ddb 100644 --- a/packages/engine-formula/src/engine/value-object/__tests__/array-value-multiply.spec.ts +++ b/packages/engine-formula/src/engine/value-object/__tests__/array-value-multiply.spec.ts @@ -15,10 +15,9 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../array-value-object'; import { NumberValueObject } from '../primitive-object'; -import { ErrorType } from '../../../basics/error-type'; describe('ArrayValueObject multiply method test', () => { describe('Multiply', () => { diff --git a/packages/engine-formula/src/engine/value-object/__tests__/array-value-object.spec.ts b/packages/engine-formula/src/engine/value-object/__tests__/array-value-object.spec.ts index 3a88205df0..1be6fbc14b 100644 --- a/packages/engine-formula/src/engine/value-object/__tests__/array-value-object.spec.ts +++ b/packages/engine-formula/src/engine/value-object/__tests__/array-value-object.spec.ts @@ -14,15 +14,14 @@ * limitations under the License. */ -import { describe, expect, it } from 'vitest'; - import type { Nullable } from '@univerjs/core'; -import { ArrayValueObject, transformToValueObject, ValueObjectFactory } from '../array-value-object'; -import { BooleanValueObject, NumberValueObject } from '../primitive-object'; import type { BaseValueObject } from '../base-value-object'; -import { ErrorValueObject } from '../base-value-object'; +import { describe, expect, it } from 'vitest'; import { ErrorType } from '../../../basics/error-type'; import { stripErrorMargin } from '../../utils/math-kit'; +import { ArrayValueObject, transformToValueObject, ValueObjectFactory } from '../array-value-object'; +import { ErrorValueObject } from '../base-value-object'; +import { BooleanValueObject, NumberValueObject } from '../primitive-object'; describe('arrayValueObject test', () => { const originArrayValueObject = ArrayValueObject.create({ diff --git a/packages/engine-formula/src/engine/value-object/__tests__/array-value-plus.spec.ts b/packages/engine-formula/src/engine/value-object/__tests__/array-value-plus.spec.ts index d0ac3743ab..0ad6efd91b 100644 --- a/packages/engine-formula/src/engine/value-object/__tests__/array-value-plus.spec.ts +++ b/packages/engine-formula/src/engine/value-object/__tests__/array-value-plus.spec.ts @@ -15,10 +15,9 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../array-value-object'; import { NumberValueObject } from '../primitive-object'; -import { ErrorType } from '../../../basics/error-type'; describe('ArrayValueObject plus method test', () => { describe('Plus', () => { diff --git a/packages/engine-formula/src/engine/value-object/__tests__/array-value-pow.spec.ts b/packages/engine-formula/src/engine/value-object/__tests__/array-value-pow.spec.ts index cef227f77c..f28adae195 100644 --- a/packages/engine-formula/src/engine/value-object/__tests__/array-value-pow.spec.ts +++ b/packages/engine-formula/src/engine/value-object/__tests__/array-value-pow.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ArrayValueObject, transformToValueObject } from '../array-value-object'; import { NumberValueObject } from '../primitive-object'; diff --git a/packages/engine-formula/src/engine/value-object/__tests__/array-value-round.spec.ts b/packages/engine-formula/src/engine/value-object/__tests__/array-value-round.spec.ts index 50d8b67ae7..783ffcb86f 100644 --- a/packages/engine-formula/src/engine/value-object/__tests__/array-value-round.spec.ts +++ b/packages/engine-formula/src/engine/value-object/__tests__/array-value-round.spec.ts @@ -15,10 +15,9 @@ */ import { describe, expect, it } from 'vitest'; - +import { stripArrayValue } from '../../../functions/__tests__/create-function-test-bed'; import { ArrayValueObject, transformToValueObject } from '../array-value-object'; import { NumberValueObject } from '../primitive-object'; -import { stripArrayValue } from '../../../functions/__tests__/create-function-test-bed'; describe('arrayValueObject round method test', () => { const originArrayValueObject = ArrayValueObject.create({ diff --git a/packages/engine-formula/src/engine/value-object/__tests__/array-value-sin.spec.ts b/packages/engine-formula/src/engine/value-object/__tests__/array-value-sin.spec.ts index 9d6fb8939c..fbb66c3a04 100644 --- a/packages/engine-formula/src/engine/value-object/__tests__/array-value-sin.spec.ts +++ b/packages/engine-formula/src/engine/value-object/__tests__/array-value-sin.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ArrayValueObject, transformToValueObject } from '../array-value-object'; describe('arrayValueObject sin method test', () => { diff --git a/packages/engine-formula/src/engine/value-object/__tests__/array-value-tan.spec.ts b/packages/engine-formula/src/engine/value-object/__tests__/array-value-tan.spec.ts index e32c8a8d29..3951698c9c 100644 --- a/packages/engine-formula/src/engine/value-object/__tests__/array-value-tan.spec.ts +++ b/packages/engine-formula/src/engine/value-object/__tests__/array-value-tan.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ArrayValueObject, transformToValueObject } from '../array-value-object'; describe('arrayValueObject tan method test', () => { diff --git a/packages/engine-formula/src/engine/value-object/__tests__/array-value-tanh.spec.ts b/packages/engine-formula/src/engine/value-object/__tests__/array-value-tanh.spec.ts index 66eaff5b57..83a3cc626b 100644 --- a/packages/engine-formula/src/engine/value-object/__tests__/array-value-tanh.spec.ts +++ b/packages/engine-formula/src/engine/value-object/__tests__/array-value-tanh.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ArrayValueObject, transformToValueObject } from '../array-value-object'; describe('arrayValueObject tanh method test', () => { diff --git a/packages/engine-formula/src/functions/__tests__/create-function-test-bed.ts b/packages/engine-formula/src/functions/__tests__/create-function-test-bed.ts index 3e58c71507..1228d57df6 100644 --- a/packages/engine-formula/src/functions/__tests__/create-function-test-bed.ts +++ b/packages/engine-formula/src/functions/__tests__/create-function-test-bed.ts @@ -206,7 +206,7 @@ export function createFunctionTestBed(workbookData?: IWorkbookData, dependencies } univer.registerPlugin(TestPlugin); - const sheet = univer.createUniverSheet(workbookData || getTestWorkbookData()); + const sheet = univer.createUnit(UniverInstanceType.UNIVER_SHEET, workbookData || getTestWorkbookData()); const univerInstanceService = get(IUniverInstanceService); univerInstanceService.focusUnit('test'); @@ -215,7 +215,7 @@ export function createFunctionTestBed(workbookData?: IWorkbookData, dependencies logService.setLogLevel(LogLevel.SILENT); // change this to `true` to debug tests via logs const sheetData: ISheetData = {}; - const workbook = univerInstanceService.getCurrentUnitForType(UniverInstanceType.UNIVER_SHEET)!; + const workbook = univerInstanceService.getCurrentUnitOfType(UniverInstanceType.UNIVER_SHEET)!; const unitId = workbook.getUnitId(); const sheetId = workbook.getActiveSheet()!.getSheetId(); workbook.getSheets().forEach((sheet) => { diff --git a/packages/engine-formula/src/functions/array/array-constrain/__tests__/index.spec.ts b/packages/engine-formula/src/functions/array/array-constrain/__tests__/index.spec.ts index e8303c1c23..7343f6a0b2 100644 --- a/packages/engine-formula/src/functions/array/array-constrain/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/array/array-constrain/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/array/flatten/__tests__/index.spec.ts b/packages/engine-formula/src/functions/array/flatten/__tests__/index.spec.ts index c6375564e6..40288972a5 100644 --- a/packages/engine-formula/src/functions/array/flatten/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/array/flatten/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; diff --git a/packages/engine-formula/src/functions/compatibility/betadist/__tests__/index.spec.ts b/packages/engine-formula/src/functions/compatibility/betadist/__tests__/index.spec.ts index 68e0b755f1..777a0f6d71 100644 --- a/packages/engine-formula/src/functions/compatibility/betadist/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/compatibility/betadist/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/compatibility/hypgeomdist/__tests__/index.spec.ts b/packages/engine-formula/src/functions/compatibility/hypgeomdist/__tests__/index.spec.ts index 3068d25cad..21d74ea170 100644 --- a/packages/engine-formula/src/functions/compatibility/hypgeomdist/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/compatibility/hypgeomdist/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/compatibility/lognormdist/__tests__/index.spec.ts b/packages/engine-formula/src/functions/compatibility/lognormdist/__tests__/index.spec.ts index e50d53d68f..299edcc5a8 100644 --- a/packages/engine-formula/src/functions/compatibility/lognormdist/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/compatibility/lognormdist/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/compatibility/negbinomdist/__tests__/index.spec.ts b/packages/engine-formula/src/functions/compatibility/negbinomdist/__tests__/index.spec.ts index ddd0817f3e..5f42dafdd4 100644 --- a/packages/engine-formula/src/functions/compatibility/negbinomdist/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/compatibility/negbinomdist/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/compatibility/normsdist/__tests__/index.spec.ts b/packages/engine-formula/src/functions/compatibility/normsdist/__tests__/index.spec.ts index 3b20708e98..d062e6789c 100644 --- a/packages/engine-formula/src/functions/compatibility/normsdist/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/compatibility/normsdist/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/compatibility/tdist/__tests__/index.spec.ts b/packages/engine-formula/src/functions/compatibility/tdist/__tests__/index.spec.ts index 27e6fc961e..59758ee9f6 100644 --- a/packages/engine-formula/src/functions/compatibility/tdist/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/compatibility/tdist/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/database/daverage/__tests__/index.spec.ts b/packages/engine-formula/src/functions/database/daverage/__tests__/index.spec.ts index 8fc6e5e57f..7b692e7e6f 100644 --- a/packages/engine-formula/src/functions/database/daverage/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/database/daverage/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/database/dcount/__tests__/index.spec.ts b/packages/engine-formula/src/functions/database/dcount/__tests__/index.spec.ts index 35d5cd5593..53695b7533 100644 --- a/packages/engine-formula/src/functions/database/dcount/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/database/dcount/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/database/dcounta/__tests__/index.spec.ts b/packages/engine-formula/src/functions/database/dcounta/__tests__/index.spec.ts index 288a31f815..c0d3fb3db7 100644 --- a/packages/engine-formula/src/functions/database/dcounta/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/database/dcounta/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/database/dget/__tests__/index.spec.ts b/packages/engine-formula/src/functions/database/dget/__tests__/index.spec.ts index ed05ac0962..802ad86d69 100644 --- a/packages/engine-formula/src/functions/database/dget/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/database/dget/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/database/dmax/__tests__/index.spec.ts b/packages/engine-formula/src/functions/database/dmax/__tests__/index.spec.ts index 5bd880965f..57d59e4d6a 100644 --- a/packages/engine-formula/src/functions/database/dmax/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/database/dmax/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/database/dmin/__tests__/index.spec.ts b/packages/engine-formula/src/functions/database/dmin/__tests__/index.spec.ts index e06461cc7b..465ca9feb4 100644 --- a/packages/engine-formula/src/functions/database/dmin/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/database/dmin/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/database/dproduct/__tests__/index.spec.ts b/packages/engine-formula/src/functions/database/dproduct/__tests__/index.spec.ts index 88516ef46d..8f21660151 100644 --- a/packages/engine-formula/src/functions/database/dproduct/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/database/dproduct/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/database/dstdev/__tests__/index.spec.ts b/packages/engine-formula/src/functions/database/dstdev/__tests__/index.spec.ts index 488b059035..be6a0d1e94 100644 --- a/packages/engine-formula/src/functions/database/dstdev/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/database/dstdev/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/database/dstdevp/__tests__/index.spec.ts b/packages/engine-formula/src/functions/database/dstdevp/__tests__/index.spec.ts index 8e52ca7e49..44228c8dd2 100644 --- a/packages/engine-formula/src/functions/database/dstdevp/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/database/dstdevp/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/database/dsum/__tests__/index.spec.ts b/packages/engine-formula/src/functions/database/dsum/__tests__/index.spec.ts index 0714cc81c8..4402ee059b 100644 --- a/packages/engine-formula/src/functions/database/dsum/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/database/dsum/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/database/dvar/__tests__/index.spec.ts b/packages/engine-formula/src/functions/database/dvar/__tests__/index.spec.ts index 7bb32ee6dc..51fabc38e9 100644 --- a/packages/engine-formula/src/functions/database/dvar/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/database/dvar/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/database/dvarp/__tests__/index.spec.ts b/packages/engine-formula/src/functions/database/dvarp/__tests__/index.spec.ts index a6566ecba6..4885280ba9 100644 --- a/packages/engine-formula/src/functions/database/dvarp/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/database/dvarp/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/date/date/__tests__/index.spec.ts b/packages/engine-formula/src/functions/date/date/__tests__/index.spec.ts index 1a51405d5b..4f434dfade 100644 --- a/packages/engine-formula/src/functions/date/date/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/date/date/__tests__/index.spec.ts @@ -15,12 +15,11 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { NumberValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_DATE } from '../../function-names'; import { DateFunction } from '../index'; -import { NumberValueObject } from '../../../../engine/value-object/primitive-object'; -import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; -import { ErrorType } from '../../../../basics/error-type'; describe('Test date function', () => { const testFunction = new DateFunction(FUNCTION_NAMES_DATE.DATE); diff --git a/packages/engine-formula/src/functions/date/datedif/__tests__/index.spec.ts b/packages/engine-formula/src/functions/date/datedif/__tests__/index.spec.ts index 335666eddc..544812019c 100644 --- a/packages/engine-formula/src/functions/date/datedif/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/date/datedif/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/date/datevalue/__tests__/index.spec.ts b/packages/engine-formula/src/functions/date/datevalue/__tests__/index.spec.ts index 264229a690..ab2d90a4ff 100644 --- a/packages/engine-formula/src/functions/date/datevalue/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/date/datevalue/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/date/day/__tests__/index.spec.ts b/packages/engine-formula/src/functions/date/day/__tests__/index.spec.ts index 53e9984917..6860e46afe 100644 --- a/packages/engine-formula/src/functions/date/day/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/date/day/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/date/days/__tests__/index.spec.ts b/packages/engine-formula/src/functions/date/days/__tests__/index.spec.ts index 26ca62f49e..5094dae6bb 100644 --- a/packages/engine-formula/src/functions/date/days/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/date/days/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - -import { FUNCTION_NAMES_DATE } from '../../function-names'; -import { Days } from '../index'; -import { BooleanValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; -import { ErrorType } from '../../../../basics/error-type'; +import { BooleanValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { FUNCTION_NAMES_DATE } from '../../function-names'; +import { Days } from '../index'; describe('Test days function', () => { const testFunction = new Days(FUNCTION_NAMES_DATE.DAYS); diff --git a/packages/engine-formula/src/functions/date/days360/__tests__/index.spec.ts b/packages/engine-formula/src/functions/date/days360/__tests__/index.spec.ts index 116b6bb66a..13b08e125e 100644 --- a/packages/engine-formula/src/functions/date/days360/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/date/days360/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - -import { FUNCTION_NAMES_DATE } from '../../function-names'; -import { Days360 } from '../index'; -import { BooleanValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; -import { ErrorType } from '../../../../basics/error-type'; +import { BooleanValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { FUNCTION_NAMES_DATE } from '../../function-names'; +import { Days360 } from '../index'; describe('Test days360 function', () => { const testFunction = new Days360(FUNCTION_NAMES_DATE.DAYS360); diff --git a/packages/engine-formula/src/functions/date/edate/__tests__/index.spec.ts b/packages/engine-formula/src/functions/date/edate/__tests__/index.spec.ts index 6a402ffeaa..8e3e06635e 100644 --- a/packages/engine-formula/src/functions/date/edate/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/date/edate/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { NumberValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_DATE } from '../../function-names'; diff --git a/packages/engine-formula/src/functions/date/eomonth/__tests__/index.spec.ts b/packages/engine-formula/src/functions/date/eomonth/__tests__/index.spec.ts index 1e02ed9d3c..c637bdfb2e 100644 --- a/packages/engine-formula/src/functions/date/eomonth/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/date/eomonth/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - -import { FUNCTION_NAMES_DATE } from '../../function-names'; -import { Eomonth } from '../index'; -import { BooleanValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; -import { ErrorType } from '../../../../basics/error-type'; +import { BooleanValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { FUNCTION_NAMES_DATE } from '../../function-names'; +import { Eomonth } from '../index'; describe('Test eomonth function', () => { const testFunction = new Eomonth(FUNCTION_NAMES_DATE.EOMONTH); diff --git a/packages/engine-formula/src/functions/date/epochtodate/__tests__/index.spec.ts b/packages/engine-formula/src/functions/date/epochtodate/__tests__/index.spec.ts index 6207723675..ed485410c0 100644 --- a/packages/engine-formula/src/functions/date/epochtodate/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/date/epochtodate/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/date/hour/__tests__/index.spec.ts b/packages/engine-formula/src/functions/date/hour/__tests__/index.spec.ts index 171ae97bf1..0f800b6ac7 100644 --- a/packages/engine-formula/src/functions/date/hour/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/date/hour/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - -import { FUNCTION_NAMES_DATE } from '../../function-names'; -import { Hour } from '../index'; -import { NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; -import { ErrorType } from '../../../../basics/error-type'; +import { NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { FUNCTION_NAMES_DATE } from '../../function-names'; +import { Hour } from '../index'; describe('Test hour function', () => { const testFunction = new Hour(FUNCTION_NAMES_DATE.HOUR); diff --git a/packages/engine-formula/src/functions/date/isoweeknum/__tests__/index.spec.ts b/packages/engine-formula/src/functions/date/isoweeknum/__tests__/index.spec.ts index e73d2a5c35..9f4d80d4bf 100644 --- a/packages/engine-formula/src/functions/date/isoweeknum/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/date/isoweeknum/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - -import { FUNCTION_NAMES_DATE } from '../../function-names'; -import { Isoweeknum } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; -import { ErrorType } from '../../../../basics/error-type'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { FUNCTION_NAMES_DATE } from '../../function-names'; +import { Isoweeknum } from '../index'; describe('Test isoweeknum function', () => { const testFunction = new Isoweeknum(FUNCTION_NAMES_DATE.ISOWEEKNUM); diff --git a/packages/engine-formula/src/functions/date/minute/__tests__/index.spec.ts b/packages/engine-formula/src/functions/date/minute/__tests__/index.spec.ts index 73d7a560bf..8eca09ca6a 100644 --- a/packages/engine-formula/src/functions/date/minute/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/date/minute/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - -import { FUNCTION_NAMES_DATE } from '../../function-names'; -import { Minute } from '../index'; -import { NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; -import { ErrorType } from '../../../../basics/error-type'; +import { NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { FUNCTION_NAMES_DATE } from '../../function-names'; +import { Minute } from '../index'; describe('Test minute function', () => { const testFunction = new Minute(FUNCTION_NAMES_DATE.MINUTE); diff --git a/packages/engine-formula/src/functions/date/month/__tests__/index.spec.ts b/packages/engine-formula/src/functions/date/month/__tests__/index.spec.ts index 5419ac6ce1..95b70ee24f 100644 --- a/packages/engine-formula/src/functions/date/month/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/date/month/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_DATE } from '../../function-names'; diff --git a/packages/engine-formula/src/functions/date/networkdays-intl/__tests__/index.spec.ts b/packages/engine-formula/src/functions/date/networkdays-intl/__tests__/index.spec.ts index 72fe4692af..2b95b6f8a5 100644 --- a/packages/engine-formula/src/functions/date/networkdays-intl/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/date/networkdays-intl/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/date/networkdays/__tests__/index.spec.ts b/packages/engine-formula/src/functions/date/networkdays/__tests__/index.spec.ts index b76bdd620b..a75dc7fd0d 100644 --- a/packages/engine-formula/src/functions/date/networkdays/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/date/networkdays/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - -import { FUNCTION_NAMES_DATE } from '../../function-names'; -import { Networkdays } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; -import { ErrorType } from '../../../../basics/error-type'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { FUNCTION_NAMES_DATE } from '../../function-names'; +import { Networkdays } from '../index'; describe('Test networkdays function', () => { const testFunction = new Networkdays(FUNCTION_NAMES_DATE.NETWORKDAYS); diff --git a/packages/engine-formula/src/functions/date/second/__tests__/index.spec.ts b/packages/engine-formula/src/functions/date/second/__tests__/index.spec.ts index c964d638d0..be6a853ead 100644 --- a/packages/engine-formula/src/functions/date/second/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/date/second/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - -import { FUNCTION_NAMES_DATE } from '../../function-names'; -import { Second } from '../index'; -import { NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; -import { ErrorType } from '../../../../basics/error-type'; +import { NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { FUNCTION_NAMES_DATE } from '../../function-names'; +import { Second } from '../index'; describe('Test second function', () => { const testFunction = new Second(FUNCTION_NAMES_DATE.SECOND); diff --git a/packages/engine-formula/src/functions/date/time/__tests__/index.spec.ts b/packages/engine-formula/src/functions/date/time/__tests__/index.spec.ts index 8ccb4a3a52..d28b571c9a 100644 --- a/packages/engine-formula/src/functions/date/time/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/date/time/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { BooleanValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { stripArrayValue } from '../../../__tests__/create-function-test-bed'; import { FUNCTION_NAMES_DATE } from '../../function-names'; import { Time } from '../index'; -import { BooleanValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { stripArrayValue } from '../../../__tests__/create-function-test-bed'; describe('Test time function', () => { const testFunction = new Time(FUNCTION_NAMES_DATE.TIME); diff --git a/packages/engine-formula/src/functions/date/timevalue/__tests__/index.spec.ts b/packages/engine-formula/src/functions/date/timevalue/__tests__/index.spec.ts index 93ed6f3c04..28c804787f 100644 --- a/packages/engine-formula/src/functions/date/timevalue/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/date/timevalue/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/date/to-date/__tests__/index.spec.ts b/packages/engine-formula/src/functions/date/to-date/__tests__/index.spec.ts index 1b7d669651..fb97807c88 100644 --- a/packages/engine-formula/src/functions/date/to-date/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/date/to-date/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/date/weekday/__tests__/index.spec.ts b/packages/engine-formula/src/functions/date/weekday/__tests__/index.spec.ts index c767162508..f98534e065 100644 --- a/packages/engine-formula/src/functions/date/weekday/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/date/weekday/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - -import { FUNCTION_NAMES_DATE } from '../../function-names'; -import { Weekday } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; -import { ErrorType } from '../../../../basics/error-type'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { FUNCTION_NAMES_DATE } from '../../function-names'; +import { Weekday } from '../index'; describe('Test weekday function', () => { const testFunction = new Weekday(FUNCTION_NAMES_DATE.WEEKDAY); diff --git a/packages/engine-formula/src/functions/date/weeknum/__tests__/index.spec.ts b/packages/engine-formula/src/functions/date/weeknum/__tests__/index.spec.ts index aa5d4c426d..132b12997d 100644 --- a/packages/engine-formula/src/functions/date/weeknum/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/date/weeknum/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - -import { FUNCTION_NAMES_DATE } from '../../function-names'; -import { Weeknum } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; -import { ErrorType } from '../../../../basics/error-type'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { FUNCTION_NAMES_DATE } from '../../function-names'; +import { Weeknum } from '../index'; describe('Test weeknum function', () => { const testFunction = new Weeknum(FUNCTION_NAMES_DATE.WEEKNUM); diff --git a/packages/engine-formula/src/functions/date/workday-intl/__tests__/index.spec.ts b/packages/engine-formula/src/functions/date/workday-intl/__tests__/index.spec.ts index b2d6e7861e..cf81c73198 100644 --- a/packages/engine-formula/src/functions/date/workday-intl/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/date/workday-intl/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - -import { FUNCTION_NAMES_DATE } from '../../function-names'; -import { WorkdayIntl } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; -import { ErrorType } from '../../../../basics/error-type'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { FUNCTION_NAMES_DATE } from '../../function-names'; +import { WorkdayIntl } from '../index'; describe('Test workday.intl function', () => { const testFunction = new WorkdayIntl(FUNCTION_NAMES_DATE.NETWORKDAYS); diff --git a/packages/engine-formula/src/functions/date/workday/__tests__/index.spec.ts b/packages/engine-formula/src/functions/date/workday/__tests__/index.spec.ts index 71a0cc1dad..040113755b 100644 --- a/packages/engine-formula/src/functions/date/workday/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/date/workday/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - -import { FUNCTION_NAMES_DATE } from '../../function-names'; -import { Workday } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; -import { ErrorType } from '../../../../basics/error-type'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { FUNCTION_NAMES_DATE } from '../../function-names'; +import { Workday } from '../index'; describe('Test workday function', () => { const testFunction = new Workday(FUNCTION_NAMES_DATE.WORKDAY); diff --git a/packages/engine-formula/src/functions/date/year/__tests__/index.spec.ts b/packages/engine-formula/src/functions/date/year/__tests__/index.spec.ts index f43388ee11..d2a8690632 100644 --- a/packages/engine-formula/src/functions/date/year/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/date/year/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_DATE } from '../../function-names'; diff --git a/packages/engine-formula/src/functions/date/yearfrac/__tests__/index.spec.ts b/packages/engine-formula/src/functions/date/yearfrac/__tests__/index.spec.ts index 59af7d6796..f1d01f0ce5 100644 --- a/packages/engine-formula/src/functions/date/yearfrac/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/date/yearfrac/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - -import { FUNCTION_NAMES_DATE } from '../../function-names'; -import { Yearfrac } from '../index'; -import { BooleanValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; -import { ErrorType } from '../../../../basics/error-type'; +import { BooleanValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { FUNCTION_NAMES_DATE } from '../../function-names'; +import { Yearfrac } from '../index'; describe('Test yearfrac function', () => { const testFunction = new Yearfrac(FUNCTION_NAMES_DATE.YEARFRAC); diff --git a/packages/engine-formula/src/functions/engineering/besseli/__tests__/index.spec.ts b/packages/engine-formula/src/functions/engineering/besseli/__tests__/index.spec.ts index 980d8d1bfd..c236641c25 100644 --- a/packages/engine-formula/src/functions/engineering/besseli/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/engineering/besseli/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_ENGINEERING } from '../../function-names'; import { Besseli } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; describe('Test besseli function', () => { const testFunction = new Besseli(FUNCTION_NAMES_ENGINEERING.BESSELI); diff --git a/packages/engine-formula/src/functions/engineering/besselj/__tests__/index.spec.ts b/packages/engine-formula/src/functions/engineering/besselj/__tests__/index.spec.ts index 390382a8d3..a93b22a956 100644 --- a/packages/engine-formula/src/functions/engineering/besselj/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/engineering/besselj/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_ENGINEERING } from '../../function-names'; import { Besselj } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; describe('Test besselj function', () => { const testFunction = new Besselj(FUNCTION_NAMES_ENGINEERING.BESSELJ); diff --git a/packages/engine-formula/src/functions/engineering/besselk/__tests__/index.spec.ts b/packages/engine-formula/src/functions/engineering/besselk/__tests__/index.spec.ts index bb5de9b629..756a1321f8 100644 --- a/packages/engine-formula/src/functions/engineering/besselk/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/engineering/besselk/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_ENGINEERING } from '../../function-names'; import { Besselk } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; describe('Test besselk function', () => { const testFunction = new Besselk(FUNCTION_NAMES_ENGINEERING.BESSELK); diff --git a/packages/engine-formula/src/functions/engineering/bessely/__tests__/index.spec.ts b/packages/engine-formula/src/functions/engineering/bessely/__tests__/index.spec.ts index 66cdb75b7a..652849787f 100644 --- a/packages/engine-formula/src/functions/engineering/bessely/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/engineering/bessely/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_ENGINEERING } from '../../function-names'; import { Bessely } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; describe('Test bessely function', () => { const testFunction = new Bessely(FUNCTION_NAMES_ENGINEERING.BESSELY); diff --git a/packages/engine-formula/src/functions/engineering/bin2dec/__tests__/index.spec.ts b/packages/engine-formula/src/functions/engineering/bin2dec/__tests__/index.spec.ts index cbcd6f54ac..7542f5d648 100644 --- a/packages/engine-formula/src/functions/engineering/bin2dec/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/engineering/bin2dec/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_ENGINEERING } from '../../function-names'; import { Bin2dec } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; describe('Test bin2dec function', () => { const testFunction = new Bin2dec(FUNCTION_NAMES_ENGINEERING.BIN2DEC); diff --git a/packages/engine-formula/src/functions/engineering/bin2hex/__tests__/index.spec.ts b/packages/engine-formula/src/functions/engineering/bin2hex/__tests__/index.spec.ts index bb7d4f0e43..affb8b4451 100644 --- a/packages/engine-formula/src/functions/engineering/bin2hex/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/engineering/bin2hex/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_ENGINEERING } from '../../function-names'; import { Bin2hex } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; describe('Test bin2hex function', () => { const testFunction = new Bin2hex(FUNCTION_NAMES_ENGINEERING.BIN2HEX); diff --git a/packages/engine-formula/src/functions/engineering/bin2oct/__tests__/index.spec.ts b/packages/engine-formula/src/functions/engineering/bin2oct/__tests__/index.spec.ts index 947fe822c2..621688dab6 100644 --- a/packages/engine-formula/src/functions/engineering/bin2oct/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/engineering/bin2oct/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_ENGINEERING } from '../../function-names'; import { Bin2oct } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; describe('Test bin2oct function', () => { const testFunction = new Bin2oct(FUNCTION_NAMES_ENGINEERING.BIN2OCT); diff --git a/packages/engine-formula/src/functions/engineering/bitand/__tests__/index.spec.ts b/packages/engine-formula/src/functions/engineering/bitand/__tests__/index.spec.ts index a0d4e54c8e..242441aef6 100644 --- a/packages/engine-formula/src/functions/engineering/bitand/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/engineering/bitand/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_ENGINEERING } from '../../function-names'; import { Bitand } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; describe('Test bitand function', () => { const testFunction = new Bitand(FUNCTION_NAMES_ENGINEERING.BITAND); diff --git a/packages/engine-formula/src/functions/engineering/bitlshift/__tests__/index.spec.ts b/packages/engine-formula/src/functions/engineering/bitlshift/__tests__/index.spec.ts index 2d3aa48550..4042d4c300 100644 --- a/packages/engine-formula/src/functions/engineering/bitlshift/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/engineering/bitlshift/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_ENGINEERING } from '../../function-names'; import { Bitlshift } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; describe('Test bitlshift function', () => { const testFunction = new Bitlshift(FUNCTION_NAMES_ENGINEERING.BITLSHIFT); diff --git a/packages/engine-formula/src/functions/engineering/bitor/__tests__/index.spec.ts b/packages/engine-formula/src/functions/engineering/bitor/__tests__/index.spec.ts index de3212f1ff..64fbf7e23b 100644 --- a/packages/engine-formula/src/functions/engineering/bitor/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/engineering/bitor/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_ENGINEERING } from '../../function-names'; import { Bitor } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; describe('Test bitor function', () => { const testFunction = new Bitor(FUNCTION_NAMES_ENGINEERING.BITOR); diff --git a/packages/engine-formula/src/functions/engineering/bitrshift/__tests__/index.spec.ts b/packages/engine-formula/src/functions/engineering/bitrshift/__tests__/index.spec.ts index 2c36a14736..5b262ff986 100644 --- a/packages/engine-formula/src/functions/engineering/bitrshift/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/engineering/bitrshift/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_ENGINEERING } from '../../function-names'; import { Bitrshift } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; describe('Test bitrshift function', () => { const testFunction = new Bitrshift(FUNCTION_NAMES_ENGINEERING.BITRSHIFT); diff --git a/packages/engine-formula/src/functions/engineering/bitxor/__tests__/index.spec.ts b/packages/engine-formula/src/functions/engineering/bitxor/__tests__/index.spec.ts index a78e5034e1..19ebaf2129 100644 --- a/packages/engine-formula/src/functions/engineering/bitxor/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/engineering/bitxor/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_ENGINEERING } from '../../function-names'; import { Bitxor } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; describe('Test bitxor function', () => { const testFunction = new Bitxor(FUNCTION_NAMES_ENGINEERING.BITXOR); diff --git a/packages/engine-formula/src/functions/engineering/complex/__tests__/index.spec.ts b/packages/engine-formula/src/functions/engineering/complex/__tests__/index.spec.ts index 0a3aeb16b9..08ffdf8d60 100644 --- a/packages/engine-formula/src/functions/engineering/complex/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/engineering/complex/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_ENGINEERING } from '../../function-names'; import { Complex } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; describe('Test complex function', () => { const testFunction = new Complex(FUNCTION_NAMES_ENGINEERING.COMPLEX); diff --git a/packages/engine-formula/src/functions/engineering/convert/__tests__/index.spec.ts b/packages/engine-formula/src/functions/engineering/convert/__tests__/index.spec.ts index 5f8ee1bb48..189d86c7bc 100644 --- a/packages/engine-formula/src/functions/engineering/convert/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/engineering/convert/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_ENGINEERING } from '../../function-names'; import { Convert } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; describe('Test convert function', () => { const testFunction = new Convert(FUNCTION_NAMES_ENGINEERING.CONVERT); diff --git a/packages/engine-formula/src/functions/engineering/dec2bin/__tests__/index.spec.ts b/packages/engine-formula/src/functions/engineering/dec2bin/__tests__/index.spec.ts index 847f5b2c39..0a933b2ba9 100644 --- a/packages/engine-formula/src/functions/engineering/dec2bin/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/engineering/dec2bin/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_ENGINEERING } from '../../function-names'; import { Dec2bin } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; describe('Test dec2bin function', () => { const testFunction = new Dec2bin(FUNCTION_NAMES_ENGINEERING.DEC2BIN); diff --git a/packages/engine-formula/src/functions/engineering/dec2hex/__tests__/index.spec.ts b/packages/engine-formula/src/functions/engineering/dec2hex/__tests__/index.spec.ts index f6bfbc295e..f7ebefd2d3 100644 --- a/packages/engine-formula/src/functions/engineering/dec2hex/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/engineering/dec2hex/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_ENGINEERING } from '../../function-names'; import { Dec2hex } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; describe('Test dec2hex function', () => { const testFunction = new Dec2hex(FUNCTION_NAMES_ENGINEERING.DEC2HEX); diff --git a/packages/engine-formula/src/functions/engineering/dec2oct/__tests__/index.spec.ts b/packages/engine-formula/src/functions/engineering/dec2oct/__tests__/index.spec.ts index 83acb90893..a6690fe2c2 100644 --- a/packages/engine-formula/src/functions/engineering/dec2oct/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/engineering/dec2oct/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_ENGINEERING } from '../../function-names'; import { Dec2oct } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; describe('Test Dec2oct function', () => { const testFunction = new Dec2oct(FUNCTION_NAMES_ENGINEERING.DEC2OCT); diff --git a/packages/engine-formula/src/functions/engineering/delta/__tests__/index.spec.ts b/packages/engine-formula/src/functions/engineering/delta/__tests__/index.spec.ts index bbd830aae2..a30825bad6 100644 --- a/packages/engine-formula/src/functions/engineering/delta/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/engineering/delta/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_ENGINEERING } from '../../function-names'; import { Delta } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; describe('Test delta function', () => { const testFunction = new Delta(FUNCTION_NAMES_ENGINEERING.DELTA); diff --git a/packages/engine-formula/src/functions/engineering/erf-precise/__tests__/index.spec.ts b/packages/engine-formula/src/functions/engineering/erf-precise/__tests__/index.spec.ts index f98c14b759..d3a9520d07 100644 --- a/packages/engine-formula/src/functions/engineering/erf-precise/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/engineering/erf-precise/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_ENGINEERING } from '../../function-names'; import { ErfPrecise } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; describe('Test erf.precise function', () => { const testFunction = new ErfPrecise(FUNCTION_NAMES_ENGINEERING.ERF_PRECISE); diff --git a/packages/engine-formula/src/functions/engineering/erf/__tests__/index.spec.ts b/packages/engine-formula/src/functions/engineering/erf/__tests__/index.spec.ts index cac905a575..6ca67c822e 100644 --- a/packages/engine-formula/src/functions/engineering/erf/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/engineering/erf/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_ENGINEERING } from '../../function-names'; import { Erf } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; describe('Test erf function', () => { const testFunction = new Erf(FUNCTION_NAMES_ENGINEERING.ERF); diff --git a/packages/engine-formula/src/functions/engineering/erfc-precise/__tests__/index.spec.ts b/packages/engine-formula/src/functions/engineering/erfc-precise/__tests__/index.spec.ts index f0cd3f777c..b7d6b21758 100644 --- a/packages/engine-formula/src/functions/engineering/erfc-precise/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/engineering/erfc-precise/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/engineering/erfc/__tests__/index.spec.ts b/packages/engine-formula/src/functions/engineering/erfc/__tests__/index.spec.ts index df146dd82e..cd229ca79f 100644 --- a/packages/engine-formula/src/functions/engineering/erfc/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/engineering/erfc/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/engineering/gestep/__tests__/index.spec.ts b/packages/engine-formula/src/functions/engineering/gestep/__tests__/index.spec.ts index 973d7e3b44..e7c245355e 100644 --- a/packages/engine-formula/src/functions/engineering/gestep/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/engineering/gestep/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_ENGINEERING } from '../../function-names'; import { Gestep } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; describe('Test gestep function', () => { const testFunction = new Gestep(FUNCTION_NAMES_ENGINEERING.GESTEP); diff --git a/packages/engine-formula/src/functions/engineering/hex2bin/__tests__/index.spec.ts b/packages/engine-formula/src/functions/engineering/hex2bin/__tests__/index.spec.ts index 42e649d150..56cf434635 100644 --- a/packages/engine-formula/src/functions/engineering/hex2bin/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/engineering/hex2bin/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_ENGINEERING } from '../../function-names'; import { Hex2bin } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; describe('Test hex2bin function', () => { const testFunction = new Hex2bin(FUNCTION_NAMES_ENGINEERING.HEX2BIN); diff --git a/packages/engine-formula/src/functions/engineering/hex2dec/__tests__/index.spec.ts b/packages/engine-formula/src/functions/engineering/hex2dec/__tests__/index.spec.ts index 3d013f6ac0..84032c3b03 100644 --- a/packages/engine-formula/src/functions/engineering/hex2dec/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/engineering/hex2dec/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NullValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_ENGINEERING } from '../../function-names'; import { Hex2dec } from '../index'; -import { BooleanValueObject, NullValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; describe('Test hex2dec function', () => { const testFunction = new Hex2dec(FUNCTION_NAMES_ENGINEERING.HEX2DEC); diff --git a/packages/engine-formula/src/functions/engineering/hex2oct/__tests__/index.spec.ts b/packages/engine-formula/src/functions/engineering/hex2oct/__tests__/index.spec.ts index d796a8e6f4..b9b59a59bf 100644 --- a/packages/engine-formula/src/functions/engineering/hex2oct/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/engineering/hex2oct/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_ENGINEERING } from '../../function-names'; import { Hex2oct } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; describe('Test hex2oct function', () => { const testFunction = new Hex2oct(FUNCTION_NAMES_ENGINEERING.HEX2OCT); diff --git a/packages/engine-formula/src/functions/engineering/imabs/__tests__/index.spec.ts b/packages/engine-formula/src/functions/engineering/imabs/__tests__/index.spec.ts index e30f49789a..20f0e0bc59 100644 --- a/packages/engine-formula/src/functions/engineering/imabs/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/engineering/imabs/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_ENGINEERING } from '../../function-names'; import { Imabs } from '../index'; -import { BooleanValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; describe('Test imabs function', () => { const testFunction = new Imabs(FUNCTION_NAMES_ENGINEERING.IMABS); diff --git a/packages/engine-formula/src/functions/engineering/imaginary/__tests__/index.spec.ts b/packages/engine-formula/src/functions/engineering/imaginary/__tests__/index.spec.ts index 3815bc3f35..c147bfa85d 100644 --- a/packages/engine-formula/src/functions/engineering/imaginary/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/engineering/imaginary/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_ENGINEERING } from '../../function-names'; import { Imaginary } from '../index'; -import { BooleanValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; describe('Test imaginary function', () => { const testFunction = new Imaginary(FUNCTION_NAMES_ENGINEERING.IMAGINARY); diff --git a/packages/engine-formula/src/functions/engineering/imargument/__tests__/index.spec.ts b/packages/engine-formula/src/functions/engineering/imargument/__tests__/index.spec.ts index 094ad30adb..23d1baec3d 100644 --- a/packages/engine-formula/src/functions/engineering/imargument/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/engineering/imargument/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_ENGINEERING } from '../../function-names'; import { Imargument } from '../index'; -import { BooleanValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; describe('Test imargument function', () => { const testFunction = new Imargument(FUNCTION_NAMES_ENGINEERING.IMARGUMENT); diff --git a/packages/engine-formula/src/functions/engineering/imconjugate/__tests__/index.spec.ts b/packages/engine-formula/src/functions/engineering/imconjugate/__tests__/index.spec.ts index 47c887ed98..9566b120f8 100644 --- a/packages/engine-formula/src/functions/engineering/imconjugate/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/engineering/imconjugate/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_ENGINEERING } from '../../function-names'; import { Imconjugate } from '../index'; -import { BooleanValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; describe('Test imconjugate function', () => { const testFunction = new Imconjugate(FUNCTION_NAMES_ENGINEERING.IMCONJUGATE); diff --git a/packages/engine-formula/src/functions/engineering/imcos/__tests__/index.spec.ts b/packages/engine-formula/src/functions/engineering/imcos/__tests__/index.spec.ts index 3cbf100465..b134f0ada4 100644 --- a/packages/engine-formula/src/functions/engineering/imcos/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/engineering/imcos/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_ENGINEERING } from '../../function-names'; import { Imcos } from '../index'; -import { BooleanValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; describe('Test imcos function', () => { const testFunction = new Imcos(FUNCTION_NAMES_ENGINEERING.IMCOS); diff --git a/packages/engine-formula/src/functions/engineering/imcosh/__tests__/index.spec.ts b/packages/engine-formula/src/functions/engineering/imcosh/__tests__/index.spec.ts index 7448b84f40..23a6ea5c06 100644 --- a/packages/engine-formula/src/functions/engineering/imcosh/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/engineering/imcosh/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_ENGINEERING } from '../../function-names'; import { Imcosh } from '../index'; -import { BooleanValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; describe('Test imcosh function', () => { const testFunction = new Imcosh(FUNCTION_NAMES_ENGINEERING.IMCOSH); diff --git a/packages/engine-formula/src/functions/engineering/imcot/__tests__/index.spec.ts b/packages/engine-formula/src/functions/engineering/imcot/__tests__/index.spec.ts index 5ef439bd30..4f48b1f606 100644 --- a/packages/engine-formula/src/functions/engineering/imcot/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/engineering/imcot/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_ENGINEERING } from '../../function-names'; import { Imcot } from '../index'; -import { BooleanValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; describe('Test imcot function', () => { const testFunction = new Imcot(FUNCTION_NAMES_ENGINEERING.IMCOT); diff --git a/packages/engine-formula/src/functions/engineering/imcoth/__tests__/index.spec.ts b/packages/engine-formula/src/functions/engineering/imcoth/__tests__/index.spec.ts index 64da7da0fb..19851e56b0 100644 --- a/packages/engine-formula/src/functions/engineering/imcoth/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/engineering/imcoth/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/engineering/imcsc/__tests__/index.spec.ts b/packages/engine-formula/src/functions/engineering/imcsc/__tests__/index.spec.ts index 40fd031644..9907c8876c 100644 --- a/packages/engine-formula/src/functions/engineering/imcsc/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/engineering/imcsc/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_ENGINEERING } from '../../function-names'; import { Imcsc } from '../index'; -import { BooleanValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; describe('Test imcsc function', () => { const testFunction = new Imcsc(FUNCTION_NAMES_ENGINEERING.IMCSC); diff --git a/packages/engine-formula/src/functions/engineering/imcsch/__tests__/index.spec.ts b/packages/engine-formula/src/functions/engineering/imcsch/__tests__/index.spec.ts index d9765936ce..67a0a10002 100644 --- a/packages/engine-formula/src/functions/engineering/imcsch/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/engineering/imcsch/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_ENGINEERING } from '../../function-names'; import { Imcsch } from '../index'; -import { BooleanValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; describe('Test imcsch function', () => { const testFunction = new Imcsch(FUNCTION_NAMES_ENGINEERING.IMCSCH); diff --git a/packages/engine-formula/src/functions/engineering/imdiv/__tests__/index.spec.ts b/packages/engine-formula/src/functions/engineering/imdiv/__tests__/index.spec.ts index 7a6da54a03..1c0a2ce6b1 100644 --- a/packages/engine-formula/src/functions/engineering/imdiv/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/engineering/imdiv/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_ENGINEERING } from '../../function-names'; import { Imdiv } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; describe('Test imdiv function', () => { const testFunction = new Imdiv(FUNCTION_NAMES_ENGINEERING.IMDIV); diff --git a/packages/engine-formula/src/functions/engineering/imexp/__tests__/index.spec.ts b/packages/engine-formula/src/functions/engineering/imexp/__tests__/index.spec.ts index 30c695b584..831e00a38b 100644 --- a/packages/engine-formula/src/functions/engineering/imexp/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/engineering/imexp/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_ENGINEERING } from '../../function-names'; import { Imexp } from '../index'; -import { BooleanValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; describe('Test imexp function', () => { const testFunction = new Imexp(FUNCTION_NAMES_ENGINEERING.IMEXP); diff --git a/packages/engine-formula/src/functions/engineering/imln/__tests__/index.spec.ts b/packages/engine-formula/src/functions/engineering/imln/__tests__/index.spec.ts index af9f72ee78..dcc89c8301 100644 --- a/packages/engine-formula/src/functions/engineering/imln/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/engineering/imln/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_ENGINEERING } from '../../function-names'; import { Imln } from '../index'; -import { BooleanValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; describe('Test imln function', () => { const testFunction = new Imln(FUNCTION_NAMES_ENGINEERING.IMLN); diff --git a/packages/engine-formula/src/functions/engineering/imlog/__tests__/index.spec.ts b/packages/engine-formula/src/functions/engineering/imlog/__tests__/index.spec.ts index 46e37b82e8..49147342b1 100644 --- a/packages/engine-formula/src/functions/engineering/imlog/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/engineering/imlog/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/engineering/imlog10/__tests__/index.spec.ts b/packages/engine-formula/src/functions/engineering/imlog10/__tests__/index.spec.ts index 64ff84c7f9..c62fdbb36d 100644 --- a/packages/engine-formula/src/functions/engineering/imlog10/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/engineering/imlog10/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/engineering/imlog2/__tests__/index.spec.ts b/packages/engine-formula/src/functions/engineering/imlog2/__tests__/index.spec.ts index b2ed336891..489d9c2fa7 100644 --- a/packages/engine-formula/src/functions/engineering/imlog2/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/engineering/imlog2/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/engineering/impower/__tests__/index.spec.ts b/packages/engine-formula/src/functions/engineering/impower/__tests__/index.spec.ts index 6f4493dc36..2a42c85def 100644 --- a/packages/engine-formula/src/functions/engineering/impower/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/engineering/impower/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_ENGINEERING } from '../../function-names'; import { Impower } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; describe('Test impower function', () => { const testFunction = new Impower(FUNCTION_NAMES_ENGINEERING.IMPOWER); diff --git a/packages/engine-formula/src/functions/engineering/improduct/__tests__/index.spec.ts b/packages/engine-formula/src/functions/engineering/improduct/__tests__/index.spec.ts index a1e9a00518..909f133b9f 100644 --- a/packages/engine-formula/src/functions/engineering/improduct/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/engineering/improduct/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_ENGINEERING } from '../../function-names'; import { Improduct } from '../index'; -import { BooleanValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; describe('Test improduct function', () => { const testFunction = new Improduct(FUNCTION_NAMES_ENGINEERING.IMPRODUCT); diff --git a/packages/engine-formula/src/functions/engineering/imreal/__tests__/index.spec.ts b/packages/engine-formula/src/functions/engineering/imreal/__tests__/index.spec.ts index 8e11aa99c0..2f1d0b569e 100644 --- a/packages/engine-formula/src/functions/engineering/imreal/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/engineering/imreal/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_ENGINEERING } from '../../function-names'; import { Imreal } from '../index'; -import { BooleanValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; describe('Test imreal function', () => { const testFunction = new Imreal(FUNCTION_NAMES_ENGINEERING.IMREAL); diff --git a/packages/engine-formula/src/functions/engineering/imsec/__tests__/index.spec.ts b/packages/engine-formula/src/functions/engineering/imsec/__tests__/index.spec.ts index 07d1a3a8bd..457133a88e 100644 --- a/packages/engine-formula/src/functions/engineering/imsec/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/engineering/imsec/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_ENGINEERING } from '../../function-names'; import { Imsec } from '../index'; -import { BooleanValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; describe('Test imsec function', () => { const testFunction = new Imsec(FUNCTION_NAMES_ENGINEERING.IMSEC); diff --git a/packages/engine-formula/src/functions/engineering/imsech/__tests__/index.spec.ts b/packages/engine-formula/src/functions/engineering/imsech/__tests__/index.spec.ts index 59f4db1ccc..76f47b67a9 100644 --- a/packages/engine-formula/src/functions/engineering/imsech/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/engineering/imsech/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_ENGINEERING } from '../../function-names'; import { Imsech } from '../index'; -import { BooleanValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; describe('Test imsech function', () => { const testFunction = new Imsech(FUNCTION_NAMES_ENGINEERING.IMSECH); diff --git a/packages/engine-formula/src/functions/engineering/imsin/__tests__/index.spec.ts b/packages/engine-formula/src/functions/engineering/imsin/__tests__/index.spec.ts index 4c0d252a47..ce3ad9571d 100644 --- a/packages/engine-formula/src/functions/engineering/imsin/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/engineering/imsin/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_ENGINEERING } from '../../function-names'; import { Imsin } from '../index'; -import { BooleanValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; describe('Test imsin function', () => { const testFunction = new Imsin(FUNCTION_NAMES_ENGINEERING.IMSIN); diff --git a/packages/engine-formula/src/functions/engineering/imsinh/__tests__/index.spec.ts b/packages/engine-formula/src/functions/engineering/imsinh/__tests__/index.spec.ts index 6eae3306d8..841f0f8eea 100644 --- a/packages/engine-formula/src/functions/engineering/imsinh/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/engineering/imsinh/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_ENGINEERING } from '../../function-names'; import { Imsinh } from '../index'; -import { BooleanValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; describe('Test imsinh function', () => { const testFunction = new Imsinh(FUNCTION_NAMES_ENGINEERING.IMSINH); diff --git a/packages/engine-formula/src/functions/engineering/imsqrt/__tests__/index.spec.ts b/packages/engine-formula/src/functions/engineering/imsqrt/__tests__/index.spec.ts index c421c3ee7f..78665ad642 100644 --- a/packages/engine-formula/src/functions/engineering/imsqrt/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/engineering/imsqrt/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_ENGINEERING } from '../../function-names'; import { Imsqrt } from '../index'; -import { BooleanValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; describe('Test imsqrt function', () => { const testFunction = new Imsqrt(FUNCTION_NAMES_ENGINEERING.IMSQRT); diff --git a/packages/engine-formula/src/functions/engineering/imsub/__tests__/index.spec.ts b/packages/engine-formula/src/functions/engineering/imsub/__tests__/index.spec.ts index 013b745c44..2a595dce6c 100644 --- a/packages/engine-formula/src/functions/engineering/imsub/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/engineering/imsub/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_ENGINEERING } from '../../function-names'; import { Imsub } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; describe('Test imsub function', () => { const testFunction = new Imsub(FUNCTION_NAMES_ENGINEERING.IMSUB); diff --git a/packages/engine-formula/src/functions/engineering/imsum/__tests__/index.spec.ts b/packages/engine-formula/src/functions/engineering/imsum/__tests__/index.spec.ts index e05f3a7401..4c127436b9 100644 --- a/packages/engine-formula/src/functions/engineering/imsum/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/engineering/imsum/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_ENGINEERING } from '../../function-names'; import { Imsum } from '../index'; -import { BooleanValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; describe('Test imsum function', () => { const testFunction = new Imsum(FUNCTION_NAMES_ENGINEERING.IMSUM); diff --git a/packages/engine-formula/src/functions/engineering/imtan/__tests__/index.spec.ts b/packages/engine-formula/src/functions/engineering/imtan/__tests__/index.spec.ts index 563e2940d7..e8b89cc2d9 100644 --- a/packages/engine-formula/src/functions/engineering/imtan/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/engineering/imtan/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_ENGINEERING } from '../../function-names'; import { Imtan } from '../index'; -import { BooleanValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; describe('Test imtan function', () => { const testFunction = new Imtan(FUNCTION_NAMES_ENGINEERING.IMTAN); diff --git a/packages/engine-formula/src/functions/engineering/imtanh/__tests__/index.spec.ts b/packages/engine-formula/src/functions/engineering/imtanh/__tests__/index.spec.ts index f8fb7b3562..5671bc240d 100644 --- a/packages/engine-formula/src/functions/engineering/imtanh/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/engineering/imtanh/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/engineering/oct2bin/__tests__/index.spec.ts b/packages/engine-formula/src/functions/engineering/oct2bin/__tests__/index.spec.ts index 49848f4447..be7f231636 100644 --- a/packages/engine-formula/src/functions/engineering/oct2bin/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/engineering/oct2bin/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_ENGINEERING } from '../../function-names'; import { Oct2bin } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; describe('Test oct2bin function', () => { const testFunction = new Oct2bin(FUNCTION_NAMES_ENGINEERING.OCT2BIN); diff --git a/packages/engine-formula/src/functions/engineering/oct2dec/__tests__/index.spec.ts b/packages/engine-formula/src/functions/engineering/oct2dec/__tests__/index.spec.ts index b041de4b3c..021667a611 100644 --- a/packages/engine-formula/src/functions/engineering/oct2dec/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/engineering/oct2dec/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_ENGINEERING } from '../../function-names'; import { Oct2dec } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; describe('Test oct2dec function', () => { const testFunction = new Oct2dec(FUNCTION_NAMES_ENGINEERING.OCT2DEC); diff --git a/packages/engine-formula/src/functions/engineering/oct2hex/__tests__/index.spec.ts b/packages/engine-formula/src/functions/engineering/oct2hex/__tests__/index.spec.ts index 860b8db50c..164addb8e3 100644 --- a/packages/engine-formula/src/functions/engineering/oct2hex/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/engineering/oct2hex/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_ENGINEERING } from '../../function-names'; import { Oct2hex } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; describe('Test oct2hex function', () => { const testFunction = new Oct2hex(FUNCTION_NAMES_ENGINEERING.OCT2HEX); diff --git a/packages/engine-formula/src/functions/financial/accrint/__tests__/index.spec.ts b/packages/engine-formula/src/functions/financial/accrint/__tests__/index.spec.ts index ef9d36c93f..d57f0639f5 100644 --- a/packages/engine-formula/src/functions/financial/accrint/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/financial/accrint/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - -import { FUNCTION_NAMES_FINANCIAL } from '../../function-names'; -import { Accrint } from '../index'; -import { BooleanValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; -import { ErrorType } from '../../../../basics/error-type'; +import { BooleanValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { FUNCTION_NAMES_FINANCIAL } from '../../function-names'; +import { Accrint } from '../index'; describe('Test accrint function', () => { const testFunction = new Accrint(FUNCTION_NAMES_FINANCIAL.ACCRINT); diff --git a/packages/engine-formula/src/functions/financial/accrintm/__tests__/index.spec.ts b/packages/engine-formula/src/functions/financial/accrintm/__tests__/index.spec.ts index 0870937f87..cd8c80b75e 100644 --- a/packages/engine-formula/src/functions/financial/accrintm/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/financial/accrintm/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - -import { FUNCTION_NAMES_FINANCIAL } from '../../function-names'; -import { Accrintm } from '../index'; -import { BooleanValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; -import { ErrorType } from '../../../../basics/error-type'; +import { BooleanValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { FUNCTION_NAMES_FINANCIAL } from '../../function-names'; +import { Accrintm } from '../index'; describe('Test accrintm function', () => { const testFunction = new Accrintm(FUNCTION_NAMES_FINANCIAL.ACCRINTM); diff --git a/packages/engine-formula/src/functions/financial/amorlinc/__tests__/index.spec.ts b/packages/engine-formula/src/functions/financial/amorlinc/__tests__/index.spec.ts index a2a327ae31..978e95f4c1 100644 --- a/packages/engine-formula/src/functions/financial/amorlinc/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/financial/amorlinc/__tests__/index.spec.ts @@ -15,12 +15,11 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_FINANCIAL } from '../../function-names'; import { Amorlinc } from '../index'; -import { NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; -import { ErrorType } from '../../../../basics/error-type'; describe('Test amorlinc function', () => { const testFunction = new Amorlinc(FUNCTION_NAMES_FINANCIAL.AMORLINC); diff --git a/packages/engine-formula/src/functions/financial/coupdaybs/__tests__/index.spec.ts b/packages/engine-formula/src/functions/financial/coupdaybs/__tests__/index.spec.ts index 7466b48b19..feb9eb59cd 100644 --- a/packages/engine-formula/src/functions/financial/coupdaybs/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/financial/coupdaybs/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - -import { FUNCTION_NAMES_FINANCIAL } from '../../function-names'; -import { Coupdaybs } from '../index'; -import { BooleanValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; -import { ErrorType } from '../../../../basics/error-type'; +import { BooleanValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { FUNCTION_NAMES_FINANCIAL } from '../../function-names'; +import { Coupdaybs } from '../index'; describe('Test coupdaybs function', () => { const testFunction = new Coupdaybs(FUNCTION_NAMES_FINANCIAL.COUPDAYBS); diff --git a/packages/engine-formula/src/functions/financial/coupdays/__tests__/index.spec.ts b/packages/engine-formula/src/functions/financial/coupdays/__tests__/index.spec.ts index 9f3eadf45f..ee4ba46af5 100644 --- a/packages/engine-formula/src/functions/financial/coupdays/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/financial/coupdays/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - -import { FUNCTION_NAMES_FINANCIAL } from '../../function-names'; -import { Coupdays } from '../index'; -import { BooleanValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; -import { ErrorType } from '../../../../basics/error-type'; +import { BooleanValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { FUNCTION_NAMES_FINANCIAL } from '../../function-names'; +import { Coupdays } from '../index'; describe('Test coupdays function', () => { const testFunction = new Coupdays(FUNCTION_NAMES_FINANCIAL.COUPDAYS); diff --git a/packages/engine-formula/src/functions/financial/coupdaysnc/__tests__/index.spec.ts b/packages/engine-formula/src/functions/financial/coupdaysnc/__tests__/index.spec.ts index e4c5bd2114..aef12d2d26 100644 --- a/packages/engine-formula/src/functions/financial/coupdaysnc/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/financial/coupdaysnc/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - -import { FUNCTION_NAMES_FINANCIAL } from '../../function-names'; -import { Coupdaysnc } from '../index'; -import { BooleanValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; -import { ErrorType } from '../../../../basics/error-type'; +import { BooleanValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { FUNCTION_NAMES_FINANCIAL } from '../../function-names'; +import { Coupdaysnc } from '../index'; describe('Test coupdaysnc function', () => { const testFunction = new Coupdaysnc(FUNCTION_NAMES_FINANCIAL.COUPDAYSNC); diff --git a/packages/engine-formula/src/functions/financial/coupncd/__tests__/index.spec.ts b/packages/engine-formula/src/functions/financial/coupncd/__tests__/index.spec.ts index 18d1ed38cf..9294506bfb 100644 --- a/packages/engine-formula/src/functions/financial/coupncd/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/financial/coupncd/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - -import { FUNCTION_NAMES_FINANCIAL } from '../../function-names'; -import { Coupncd } from '../index'; -import { BooleanValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; -import { ErrorType } from '../../../../basics/error-type'; +import { BooleanValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { FUNCTION_NAMES_FINANCIAL } from '../../function-names'; +import { Coupncd } from '../index'; describe('Test coupncd function', () => { const testFunction = new Coupncd(FUNCTION_NAMES_FINANCIAL.COUPNCD); diff --git a/packages/engine-formula/src/functions/financial/coupnum/__tests__/index.spec.ts b/packages/engine-formula/src/functions/financial/coupnum/__tests__/index.spec.ts index e1da31c648..8c9e0bf2c0 100644 --- a/packages/engine-formula/src/functions/financial/coupnum/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/financial/coupnum/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - -import { FUNCTION_NAMES_FINANCIAL } from '../../function-names'; -import { Coupnum } from '../index'; -import { BooleanValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; -import { ErrorType } from '../../../../basics/error-type'; +import { BooleanValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { FUNCTION_NAMES_FINANCIAL } from '../../function-names'; +import { Coupnum } from '../index'; describe('Test coupnum function', () => { const testFunction = new Coupnum(FUNCTION_NAMES_FINANCIAL.COUPNUM); diff --git a/packages/engine-formula/src/functions/financial/couppcd/__tests__/index.spec.ts b/packages/engine-formula/src/functions/financial/couppcd/__tests__/index.spec.ts index 5bd34dad87..0abc42938b 100644 --- a/packages/engine-formula/src/functions/financial/couppcd/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/financial/couppcd/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - -import { FUNCTION_NAMES_FINANCIAL } from '../../function-names'; -import { Couppcd } from '../index'; -import { BooleanValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; -import { ErrorType } from '../../../../basics/error-type'; +import { BooleanValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { FUNCTION_NAMES_FINANCIAL } from '../../function-names'; +import { Couppcd } from '../index'; describe('Test couppcd function', () => { const testFunction = new Couppcd(FUNCTION_NAMES_FINANCIAL.COUPPCD); diff --git a/packages/engine-formula/src/functions/financial/cumipmt/__tests__/index.spec.ts b/packages/engine-formula/src/functions/financial/cumipmt/__tests__/index.spec.ts index 0ef3c80371..5022847956 100644 --- a/packages/engine-formula/src/functions/financial/cumipmt/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/financial/cumipmt/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - -import { FUNCTION_NAMES_FINANCIAL } from '../../function-names'; -import { Cumipmt } from '../index'; -import { BooleanValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; -import { ErrorType } from '../../../../basics/error-type'; +import { BooleanValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { FUNCTION_NAMES_FINANCIAL } from '../../function-names'; +import { Cumipmt } from '../index'; describe('Test cumipmt function', () => { const testFunction = new Cumipmt(FUNCTION_NAMES_FINANCIAL.CUMIPMT); diff --git a/packages/engine-formula/src/functions/financial/cumprinc/__tests__/index.spec.ts b/packages/engine-formula/src/functions/financial/cumprinc/__tests__/index.spec.ts index b7426f0602..86681c187c 100644 --- a/packages/engine-formula/src/functions/financial/cumprinc/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/financial/cumprinc/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - -import { FUNCTION_NAMES_FINANCIAL } from '../../function-names'; -import { Cumprinc } from '../index'; -import { BooleanValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; -import { ErrorType } from '../../../../basics/error-type'; +import { BooleanValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { FUNCTION_NAMES_FINANCIAL } from '../../function-names'; +import { Cumprinc } from '../index'; describe('Test cumprinc function', () => { const testFunction = new Cumprinc(FUNCTION_NAMES_FINANCIAL.CUMPRINC); diff --git a/packages/engine-formula/src/functions/financial/db/__tests__/index.spec.ts b/packages/engine-formula/src/functions/financial/db/__tests__/index.spec.ts index ee08ab52d4..0e05b91629 100644 --- a/packages/engine-formula/src/functions/financial/db/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/financial/db/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; diff --git a/packages/engine-formula/src/functions/financial/ddb/__tests__/index.spec.ts b/packages/engine-formula/src/functions/financial/ddb/__tests__/index.spec.ts index 09cb4dc89d..f70b07f1eb 100644 --- a/packages/engine-formula/src/functions/financial/ddb/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/financial/ddb/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; diff --git a/packages/engine-formula/src/functions/financial/disc/__tests__/index.spec.ts b/packages/engine-formula/src/functions/financial/disc/__tests__/index.spec.ts index dadb27119d..9ee01d34c9 100644 --- a/packages/engine-formula/src/functions/financial/disc/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/financial/disc/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - -import { FUNCTION_NAMES_FINANCIAL } from '../../function-names'; -import { Disc } from '../index'; -import { BooleanValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; -import { ErrorType } from '../../../../basics/error-type'; +import { BooleanValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { FUNCTION_NAMES_FINANCIAL } from '../../function-names'; +import { Disc } from '../index'; describe('Test disc function', () => { const testFunction = new Disc(FUNCTION_NAMES_FINANCIAL.DISC); diff --git a/packages/engine-formula/src/functions/financial/dollarde/__tests__/index.spec.ts b/packages/engine-formula/src/functions/financial/dollarde/__tests__/index.spec.ts index ee6481af97..77273d9936 100644 --- a/packages/engine-formula/src/functions/financial/dollarde/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/financial/dollarde/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - -import { FUNCTION_NAMES_FINANCIAL } from '../../function-names'; -import { Dollarde } from '../index'; -import { BooleanValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; -import { ErrorType } from '../../../../basics/error-type'; +import { BooleanValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { FUNCTION_NAMES_FINANCIAL } from '../../function-names'; +import { Dollarde } from '../index'; describe('Test dollarde function', () => { const testFunction = new Dollarde(FUNCTION_NAMES_FINANCIAL.DOLLARDE); diff --git a/packages/engine-formula/src/functions/financial/dollarfr/__tests__/index.spec.ts b/packages/engine-formula/src/functions/financial/dollarfr/__tests__/index.spec.ts index a24fd32b88..e40733c0bf 100644 --- a/packages/engine-formula/src/functions/financial/dollarfr/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/financial/dollarfr/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - -import { FUNCTION_NAMES_FINANCIAL } from '../../function-names'; -import { Dollarfr } from '../index'; -import { BooleanValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; -import { ErrorType } from '../../../../basics/error-type'; +import { BooleanValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { FUNCTION_NAMES_FINANCIAL } from '../../function-names'; +import { Dollarfr } from '../index'; describe('Test dollarfr function', () => { const testFunction = new Dollarfr(FUNCTION_NAMES_FINANCIAL.DOLLARFR); diff --git a/packages/engine-formula/src/functions/financial/duration/__tests__/index.spec.ts b/packages/engine-formula/src/functions/financial/duration/__tests__/index.spec.ts index 1b76a64ed2..2f4357803b 100644 --- a/packages/engine-formula/src/functions/financial/duration/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/financial/duration/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - -import { FUNCTION_NAMES_FINANCIAL } from '../../function-names'; -import { Duration } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; -import { ErrorType } from '../../../../basics/error-type'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { FUNCTION_NAMES_FINANCIAL } from '../../function-names'; +import { Duration } from '../index'; describe('Test duration function', () => { const testFunction = new Duration(FUNCTION_NAMES_FINANCIAL.DURATION); @@ -35,7 +34,7 @@ describe('Test duration function', () => { const frequency = NumberValueObject.create(2); const basis = NumberValueObject.create(1); const result = testFunction.calculate(settlement, maturity, coupon, yld, frequency, basis); - expect(result.getValue()).toStrictEqual(10.919145281591927); + expect(result.getValue()).toStrictEqual(10.919145281591925); }); it('Value is normal, settlement >= maturity', () => { @@ -113,23 +112,23 @@ describe('Test duration function', () => { const basis2 = NumberValueObject.create(0); const result2 = testFunction.calculate(settlement, maturity, coupon, yld, frequency, basis2); - expect(result2.getValue()).toStrictEqual(10.919145281591927); + expect(result2.getValue()).toStrictEqual(10.919145281591925); const basis3 = NumberValueObject.create(2); const result3 = testFunction.calculate(settlement, maturity, coupon, yld, frequency, basis3); - expect(result3.getValue()).toStrictEqual(10.919145281591927); + expect(result3.getValue()).toStrictEqual(10.919145281591925); const basis4 = NumberValueObject.create(3); const result4 = testFunction.calculate(settlement, maturity, coupon, yld, frequency, basis4); - expect(result4.getValue()).toStrictEqual(10.919145281591927); + expect(result4.getValue()).toStrictEqual(10.919145281591925); const basis5 = NumberValueObject.create(4); const result5 = testFunction.calculate(settlement, maturity, coupon, yld, frequency, basis5); - expect(result5.getValue()).toStrictEqual(10.919145281591927); + expect(result5.getValue()).toStrictEqual(10.919145281591925); const basis6 = NullValueObject.create(); const result6 = testFunction.calculate(settlement, maturity, coupon, yld, frequency, basis6); - expect(result6.getValue()).toStrictEqual(10.919145281591927); + expect(result6.getValue()).toStrictEqual(10.919145281591925); }); it('Value is error', () => { diff --git a/packages/engine-formula/src/functions/financial/effect/__tests__/index.spec.ts b/packages/engine-formula/src/functions/financial/effect/__tests__/index.spec.ts index 16b9e76866..1fa204a31c 100644 --- a/packages/engine-formula/src/functions/financial/effect/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/financial/effect/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - -import { FUNCTION_NAMES_FINANCIAL } from '../../function-names'; -import { Effect } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; -import { ErrorType } from '../../../../basics/error-type'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { FUNCTION_NAMES_FINANCIAL } from '../../function-names'; +import { Effect } from '../index'; describe('Test effect function', () => { const testFunction = new Effect(FUNCTION_NAMES_FINANCIAL.EFFECT); diff --git a/packages/engine-formula/src/functions/financial/fv/__tests__/index.spec.ts b/packages/engine-formula/src/functions/financial/fv/__tests__/index.spec.ts index 6d9c113c50..08e4c553f7 100644 --- a/packages/engine-formula/src/functions/financial/fv/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/financial/fv/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/financial/fvschedule/__tests__/index.spec.ts b/packages/engine-formula/src/functions/financial/fvschedule/__tests__/index.spec.ts index 4a7691dc8f..401aa68d7e 100644 --- a/packages/engine-formula/src/functions/financial/fvschedule/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/financial/fvschedule/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - -import { FUNCTION_NAMES_FINANCIAL } from '../../function-names'; -import { Fvschedule } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; -import { ErrorType } from '../../../../basics/error-type'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { FUNCTION_NAMES_FINANCIAL } from '../../function-names'; +import { Fvschedule } from '../index'; describe('Test fvschedule function', () => { const testFunction = new Fvschedule(FUNCTION_NAMES_FINANCIAL.FVSCHEDULE); diff --git a/packages/engine-formula/src/functions/financial/intrate/__tests__/index.spec.ts b/packages/engine-formula/src/functions/financial/intrate/__tests__/index.spec.ts index c9fe3ae6df..08778c92f6 100644 --- a/packages/engine-formula/src/functions/financial/intrate/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/financial/intrate/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - -import { FUNCTION_NAMES_FINANCIAL } from '../../function-names'; -import { Intrate } from '../index'; -import { BooleanValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; -import { ErrorType } from '../../../../basics/error-type'; +import { BooleanValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { FUNCTION_NAMES_FINANCIAL } from '../../function-names'; +import { Intrate } from '../index'; describe('Test intrate function', () => { const testFunction = new Intrate(FUNCTION_NAMES_FINANCIAL.INTRATE); diff --git a/packages/engine-formula/src/functions/financial/ipmt/__tests__/index.spec.ts b/packages/engine-formula/src/functions/financial/ipmt/__tests__/index.spec.ts index 5ccf5f76bc..571da083c7 100644 --- a/packages/engine-formula/src/functions/financial/ipmt/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/financial/ipmt/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/financial/irr/__tests__/index.spec.ts b/packages/engine-formula/src/functions/financial/irr/__tests__/index.spec.ts index 9b719a3faa..310520bf74 100644 --- a/packages/engine-formula/src/functions/financial/irr/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/financial/irr/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - -import { FUNCTION_NAMES_FINANCIAL } from '../../function-names'; -import { Irr } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; -import { ErrorType } from '../../../../basics/error-type'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { FUNCTION_NAMES_FINANCIAL } from '../../function-names'; +import { Irr } from '../index'; describe('Test irr function', () => { const testFunction = new Irr(FUNCTION_NAMES_FINANCIAL.IRR); @@ -31,7 +30,7 @@ describe('Test irr function', () => { const values = ArrayValueObject.create('{-700000,120000,150000,180000,210000,260000}'); const guess = NumberValueObject.create(0.1); const result = testFunction.calculate(values, guess); - expect(result.getValue()).toStrictEqual(0.08663094803653168); + expect(result.getValue()).toStrictEqual(0.0866309480365317); }); it('Value is normal, but no positive and negative number', () => { @@ -103,7 +102,7 @@ describe('Test irr function', () => { }); const result3 = testFunction.calculate(values3, guess3); expect(transformToValue(result3.getArrayValue())).toStrictEqual([ - [0.08663094803654446, ErrorType.VALUE, 0.08663094803650478, 0.08663094803653167, ErrorType.NAME, 0.08663094803653167], + [0.08663094803654446, ErrorType.VALUE, 0.08663094803650478, 0.08663094803653162, ErrorType.NAME, 0.08663094803653162], ]); }); }); diff --git a/packages/engine-formula/src/functions/financial/ispmt/__tests__/index.spec.ts b/packages/engine-formula/src/functions/financial/ispmt/__tests__/index.spec.ts index 304e0448fc..086e48e6e1 100644 --- a/packages/engine-formula/src/functions/financial/ispmt/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/financial/ispmt/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/financial/mduration/__tests__/index.spec.ts b/packages/engine-formula/src/functions/financial/mduration/__tests__/index.spec.ts index e57a0e68ce..9ebe5cb283 100644 --- a/packages/engine-formula/src/functions/financial/mduration/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/financial/mduration/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - -import { FUNCTION_NAMES_FINANCIAL } from '../../function-names'; -import { Mduration } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; -import { ErrorType } from '../../../../basics/error-type'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { FUNCTION_NAMES_FINANCIAL } from '../../function-names'; +import { Mduration } from '../index'; describe('Test mduration function', () => { const testFunction = new Mduration(FUNCTION_NAMES_FINANCIAL.MDURATION); @@ -35,7 +34,7 @@ describe('Test mduration function', () => { const frequency = NumberValueObject.create(2); const basis = NumberValueObject.create(1); const result = testFunction.calculate(settlement, maturity, coupon, yld, frequency, basis); - expect(result.getValue()).toStrictEqual(10.448942853198018); + expect(result.getValue()).toStrictEqual(10.448942853198016); }); it('Value is normal, settlement >= maturity', () => { @@ -102,23 +101,23 @@ describe('Test mduration function', () => { const basis2 = NumberValueObject.create(0); const result2 = testFunction.calculate(settlement, maturity, coupon, yld, frequency, basis2); - expect(result2.getValue()).toStrictEqual(10.448942853198018); + expect(result2.getValue()).toStrictEqual(10.448942853198016); const basis3 = NumberValueObject.create(2); const result3 = testFunction.calculate(settlement, maturity, coupon, yld, frequency, basis3); - expect(result3.getValue()).toStrictEqual(10.448942853198018); + expect(result3.getValue()).toStrictEqual(10.448942853198016); const basis4 = NumberValueObject.create(3); const result4 = testFunction.calculate(settlement, maturity, coupon, yld, frequency, basis4); - expect(result4.getValue()).toStrictEqual(10.448942853198018); + expect(result4.getValue()).toStrictEqual(10.448942853198016); const basis5 = NumberValueObject.create(4); const result5 = testFunction.calculate(settlement, maturity, coupon, yld, frequency, basis5); - expect(result5.getValue()).toStrictEqual(10.448942853198018); + expect(result5.getValue()).toStrictEqual(10.448942853198016); const basis6 = NullValueObject.create(); const result6 = testFunction.calculate(settlement, maturity, coupon, yld, frequency, basis6); - expect(result6.getValue()).toStrictEqual(10.448942853198018); + expect(result6.getValue()).toStrictEqual(10.448942853198016); }); it('Value is error', () => { diff --git a/packages/engine-formula/src/functions/financial/mirr/__tests__/index.spec.ts b/packages/engine-formula/src/functions/financial/mirr/__tests__/index.spec.ts index 8445473bd9..5b89c9d6d0 100644 --- a/packages/engine-formula/src/functions/financial/mirr/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/financial/mirr/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - -import { FUNCTION_NAMES_FINANCIAL } from '../../function-names'; -import { Mirr } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; -import { ErrorType } from '../../../../basics/error-type'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { FUNCTION_NAMES_FINANCIAL } from '../../function-names'; +import { Mirr } from '../index'; describe('Test mirr function', () => { const testFunction = new Mirr(FUNCTION_NAMES_FINANCIAL.MIRR); diff --git a/packages/engine-formula/src/functions/financial/nominal/__tests__/index.spec.ts b/packages/engine-formula/src/functions/financial/nominal/__tests__/index.spec.ts index 4e88c17651..6721f14355 100644 --- a/packages/engine-formula/src/functions/financial/nominal/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/financial/nominal/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - -import { FUNCTION_NAMES_FINANCIAL } from '../../function-names'; -import { Nominal } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; -import { ErrorType } from '../../../../basics/error-type'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { FUNCTION_NAMES_FINANCIAL } from '../../function-names'; +import { Nominal } from '../index'; describe('Test nominal function', () => { const testFunction = new Nominal(FUNCTION_NAMES_FINANCIAL.NOMINAL); diff --git a/packages/engine-formula/src/functions/financial/nper/__tests__/index.spec.ts b/packages/engine-formula/src/functions/financial/nper/__tests__/index.spec.ts index 6788539e84..a2c0195f6f 100644 --- a/packages/engine-formula/src/functions/financial/nper/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/financial/nper/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - -import { FUNCTION_NAMES_FINANCIAL } from '../../function-names'; -import { Nper } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; -import { ErrorType } from '../../../../basics/error-type'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { FUNCTION_NAMES_FINANCIAL } from '../../function-names'; +import { Nper } from '../index'; describe('Test nper function', () => { const testFunction = new Nper(FUNCTION_NAMES_FINANCIAL.NPER); diff --git a/packages/engine-formula/src/functions/financial/npv/__tests__/index.spec.ts b/packages/engine-formula/src/functions/financial/npv/__tests__/index.spec.ts index 0da19d5f4a..f3d6f875b2 100644 --- a/packages/engine-formula/src/functions/financial/npv/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/financial/npv/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; @@ -31,7 +30,7 @@ describe('Test npv function', () => { const rate = NumberValueObject.create(0.1); const value1 = ArrayValueObject.create('{-10000,3000,4200,6800}'); const result = testFunction.calculate(rate, value1); - expect(result.getValue()).toStrictEqual(1188.4434123352207); + expect(result.getValue()).toStrictEqual(1188.4434123352216); }); it('Value is error', () => { @@ -66,7 +65,7 @@ describe('Test npv function', () => { const value1 = ArrayValueObject.create('{-10000,3000,4200,6800}'); const value2 = BooleanValueObject.create(true); const result = testFunction.calculate(rate, value1, value2); - expect(result.getValue()).toStrictEqual(1189.0643336582798); + expect(result.getValue()).toStrictEqual(1189.0643336582807); }); it('Value is normal string', () => { @@ -86,7 +85,7 @@ describe('Test npv function', () => { const value1 = ArrayValueObject.create('{-10000,3000,4200,6800}'); const result = testFunction.calculate(rate, value1); expect(transformToValue(result.getArrayValue())).toStrictEqual([ - [1188.4434123352207, 8718.183203779909, ErrorType.DIV_BY_ZERO], + [1188.4434123352216, 8718.18320377991, ErrorType.DIV_BY_ZERO], ]); const value2 = ArrayValueObject.create({ @@ -103,7 +102,7 @@ describe('Test npv function', () => { }); const result2 = testFunction.calculate(rate, value2); expect(transformToValue(result2.getArrayValue())).toStrictEqual([ - [-108744.97535213304, 373909.0553792423, ErrorType.DIV_BY_ZERO], + [-108744.97535213304, 373909.05537924235, ErrorType.DIV_BY_ZERO], ]); }); }); diff --git a/packages/engine-formula/src/functions/financial/oddfprice/__tests__/index.spec.ts b/packages/engine-formula/src/functions/financial/oddfprice/__tests__/index.spec.ts index a83fad00da..61c64d04fd 100644 --- a/packages/engine-formula/src/functions/financial/oddfprice/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/financial/oddfprice/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - -import { FUNCTION_NAMES_FINANCIAL } from '../../function-names'; -import { Oddfprice } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; -import { ErrorType } from '../../../../basics/error-type'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { FUNCTION_NAMES_FINANCIAL } from '../../function-names'; +import { Oddfprice } from '../index'; describe('Test oddfprice function', () => { const testFunction = new Oddfprice(FUNCTION_NAMES_FINANCIAL.ODDFPRICE); diff --git a/packages/engine-formula/src/functions/financial/oddfyield/__tests__/index.spec.ts b/packages/engine-formula/src/functions/financial/oddfyield/__tests__/index.spec.ts index 4518cfbbfa..7a41040eb1 100644 --- a/packages/engine-formula/src/functions/financial/oddfyield/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/financial/oddfyield/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - -import { FUNCTION_NAMES_FINANCIAL } from '../../function-names'; -import { Oddfyield } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; -import { ErrorType } from '../../../../basics/error-type'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { FUNCTION_NAMES_FINANCIAL } from '../../function-names'; +import { Oddfyield } from '../index'; describe('Test oddfyield function', () => { const testFunction = new Oddfyield(FUNCTION_NAMES_FINANCIAL.ODDFYIELD); @@ -38,7 +37,7 @@ describe('Test oddfyield function', () => { const frequency = NumberValueObject.create(2); const basis = NumberValueObject.create(1); const result = testFunction.calculate(settlement, maturity, issue, firstCoupon, rate, pr, redemption, frequency, basis); - expect(result.getValue()).toStrictEqual(0.10076644980418786); + expect(result.getValue()).toStrictEqual(0.10076644980418793); }); it('Value is normal, but date valid error, return #NUM!', () => { @@ -107,7 +106,7 @@ describe('Test oddfyield function', () => { const frequency3 = NumberValueObject.create(4); const result3 = testFunction.calculate(settlement, maturity, issue, firstCoupon, rate, pr, redemption, frequency3, basis); - expect(result3.getValue()).toStrictEqual(0.1005633711558758); + expect(result3.getValue()).toStrictEqual(0.10056337115587563); }); it('Basis value test', () => { @@ -129,7 +128,7 @@ describe('Test oddfyield function', () => { const basis3 = NumberValueObject.create(2); const result3 = testFunction.calculate(settlement, maturity, issue, firstCoupon, rate, pr, redemption, frequency, basis3); - expect(result3.getValue()).toStrictEqual(0.10076426120146238); + expect(result3.getValue()).toStrictEqual(0.1007642612014625); const basis4 = NumberValueObject.create(3); const result4 = testFunction.calculate(settlement, maturity, issue, firstCoupon, rate, pr, redemption, frequency, basis4); diff --git a/packages/engine-formula/src/functions/financial/oddlprice/__tests__/index.spec.ts b/packages/engine-formula/src/functions/financial/oddlprice/__tests__/index.spec.ts index d6e59741d5..e17ec06272 100644 --- a/packages/engine-formula/src/functions/financial/oddlprice/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/financial/oddlprice/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - -import { FUNCTION_NAMES_FINANCIAL } from '../../function-names'; -import { Oddlprice } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; -import { ErrorType } from '../../../../basics/error-type'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { FUNCTION_NAMES_FINANCIAL } from '../../function-names'; +import { Oddlprice } from '../index'; describe('Test oddlprice function', () => { const testFunction = new Oddlprice(FUNCTION_NAMES_FINANCIAL.ODDLPRICE); diff --git a/packages/engine-formula/src/functions/financial/oddlyield/__tests__/index.spec.ts b/packages/engine-formula/src/functions/financial/oddlyield/__tests__/index.spec.ts index 57d18d4043..b045411529 100644 --- a/packages/engine-formula/src/functions/financial/oddlyield/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/financial/oddlyield/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - -import { FUNCTION_NAMES_FINANCIAL } from '../../function-names'; -import { Oddlyield } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; -import { ErrorType } from '../../../../basics/error-type'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { FUNCTION_NAMES_FINANCIAL } from '../../function-names'; +import { Oddlyield } from '../index'; describe('Test oddlyield function', () => { const testFunction = new Oddlyield(FUNCTION_NAMES_FINANCIAL.ODDLYIELD); diff --git a/packages/engine-formula/src/functions/financial/pduration/__tests__/index.spec.ts b/packages/engine-formula/src/functions/financial/pduration/__tests__/index.spec.ts index d48d3af90b..68d07975d8 100644 --- a/packages/engine-formula/src/functions/financial/pduration/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/financial/pduration/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - -import { FUNCTION_NAMES_FINANCIAL } from '../../function-names'; -import { Pduration } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; -import { ErrorType } from '../../../../basics/error-type'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { FUNCTION_NAMES_FINANCIAL } from '../../function-names'; +import { Pduration } from '../index'; describe('Test pduration function', () => { const testFunction = new Pduration(FUNCTION_NAMES_FINANCIAL.PDURATION); diff --git a/packages/engine-formula/src/functions/financial/pmt/__tests__/index.spec.ts b/packages/engine-formula/src/functions/financial/pmt/__tests__/index.spec.ts index dcd1cb74e3..3acd856543 100644 --- a/packages/engine-formula/src/functions/financial/pmt/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/financial/pmt/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/financial/ppmt/__tests__/index.spec.ts b/packages/engine-formula/src/functions/financial/ppmt/__tests__/index.spec.ts index cfe7c03f28..6966a14105 100644 --- a/packages/engine-formula/src/functions/financial/ppmt/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/financial/ppmt/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/financial/price/__tests__/index.spec.ts b/packages/engine-formula/src/functions/financial/price/__tests__/index.spec.ts index 210e6254e9..a96ba7abb1 100644 --- a/packages/engine-formula/src/functions/financial/price/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/financial/price/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - -import { FUNCTION_NAMES_FINANCIAL } from '../../function-names'; -import { Price } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; -import { ErrorType } from '../../../../basics/error-type'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { FUNCTION_NAMES_FINANCIAL } from '../../function-names'; +import { Price } from '../index'; describe('Test price function', () => { const testFunction = new Price(FUNCTION_NAMES_FINANCIAL.PRICE); @@ -108,7 +107,7 @@ describe('Test price function', () => { const basis2 = NumberValueObject.create(0); const result2 = testFunction.calculate(settlement, maturity, rate, yld, redemption, frequency, basis2); - expect(result2.getValue()).toStrictEqual(113.5813321520683); + expect(result2.getValue()).toStrictEqual(113.58133215206828); const basis3 = NumberValueObject.create(2); const result3 = testFunction.calculate(settlement, maturity, rate, yld, redemption, frequency, basis3); @@ -120,11 +119,11 @@ describe('Test price function', () => { const basis5 = NumberValueObject.create(4); const result5 = testFunction.calculate(settlement, maturity, rate, yld, redemption, frequency, basis5); - expect(result5.getValue()).toStrictEqual(113.5813321520683); + expect(result5.getValue()).toStrictEqual(113.58133215206828); const basis6 = NullValueObject.create(); const result6 = testFunction.calculate(settlement, maturity, rate, yld, redemption, frequency, basis6); - expect(result6.getValue()).toStrictEqual(113.5813321520683); + expect(result6.getValue()).toStrictEqual(113.58133215206828); }); it('Value is error', () => { diff --git a/packages/engine-formula/src/functions/financial/pricedisc/__tests__/index.spec.ts b/packages/engine-formula/src/functions/financial/pricedisc/__tests__/index.spec.ts index 6bda6a848d..773bf8cc59 100644 --- a/packages/engine-formula/src/functions/financial/pricedisc/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/financial/pricedisc/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - -import { FUNCTION_NAMES_FINANCIAL } from '../../function-names'; -import { Pricedisc } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; -import { ErrorType } from '../../../../basics/error-type'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { FUNCTION_NAMES_FINANCIAL } from '../../function-names'; +import { Pricedisc } from '../index'; describe('Test pricedisc function', () => { const testFunction = new Pricedisc(FUNCTION_NAMES_FINANCIAL.PRICEDISC); diff --git a/packages/engine-formula/src/functions/financial/pricemat/__tests__/index.spec.ts b/packages/engine-formula/src/functions/financial/pricemat/__tests__/index.spec.ts index 05398e456b..f57e1ba92e 100644 --- a/packages/engine-formula/src/functions/financial/pricemat/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/financial/pricemat/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - -import { FUNCTION_NAMES_FINANCIAL } from '../../function-names'; -import { Pricemat } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; -import { ErrorType } from '../../../../basics/error-type'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { FUNCTION_NAMES_FINANCIAL } from '../../function-names'; +import { Pricemat } from '../index'; describe('Test pricemat function', () => { const testFunction = new Pricemat(FUNCTION_NAMES_FINANCIAL.PRICEMAT); diff --git a/packages/engine-formula/src/functions/financial/pv/__tests__/index.spec.ts b/packages/engine-formula/src/functions/financial/pv/__tests__/index.spec.ts index efec545207..f006fc9322 100644 --- a/packages/engine-formula/src/functions/financial/pv/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/financial/pv/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/financial/rate/__tests__/index.spec.ts b/packages/engine-formula/src/functions/financial/rate/__tests__/index.spec.ts index aa89af9de3..398c98bfb3 100644 --- a/packages/engine-formula/src/functions/financial/rate/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/financial/rate/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - -import { FUNCTION_NAMES_FINANCIAL } from '../../function-names'; -import { Rate } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; -import { ErrorType } from '../../../../basics/error-type'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { FUNCTION_NAMES_FINANCIAL } from '../../function-names'; +import { Rate } from '../index'; describe('Test rate function', () => { const testFunction = new Rate(FUNCTION_NAMES_FINANCIAL.RATE); diff --git a/packages/engine-formula/src/functions/financial/received/__tests__/index.spec.ts b/packages/engine-formula/src/functions/financial/received/__tests__/index.spec.ts index 6b0c619432..7eadfb7450 100644 --- a/packages/engine-formula/src/functions/financial/received/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/financial/received/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - -import { FUNCTION_NAMES_FINANCIAL } from '../../function-names'; -import { Received } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; -import { ErrorType } from '../../../../basics/error-type'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { FUNCTION_NAMES_FINANCIAL } from '../../function-names'; +import { Received } from '../index'; describe('Test received function', () => { const testFunction = new Received(FUNCTION_NAMES_FINANCIAL.RECEIVED); diff --git a/packages/engine-formula/src/functions/financial/rri/__tests__/index.spec.ts b/packages/engine-formula/src/functions/financial/rri/__tests__/index.spec.ts index cc4363532e..85d55bac69 100644 --- a/packages/engine-formula/src/functions/financial/rri/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/financial/rri/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - -import { FUNCTION_NAMES_FINANCIAL } from '../../function-names'; -import { Rri } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; -import { ErrorType } from '../../../../basics/error-type'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { FUNCTION_NAMES_FINANCIAL } from '../../function-names'; +import { Rri } from '../index'; describe('Test rri function', () => { const testFunction = new Rri(FUNCTION_NAMES_FINANCIAL.RRI); diff --git a/packages/engine-formula/src/functions/financial/sln/__tests__/index.spec.ts b/packages/engine-formula/src/functions/financial/sln/__tests__/index.spec.ts index 4759144908..1ef2f2c3d4 100644 --- a/packages/engine-formula/src/functions/financial/sln/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/financial/sln/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/financial/syd/__tests__/index.spec.ts b/packages/engine-formula/src/functions/financial/syd/__tests__/index.spec.ts index 4e68852261..cd0a14fff7 100644 --- a/packages/engine-formula/src/functions/financial/syd/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/financial/syd/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/financial/tbilleq/__tests__/index.spec.ts b/packages/engine-formula/src/functions/financial/tbilleq/__tests__/index.spec.ts index 12aeea0e7b..ede695df48 100644 --- a/packages/engine-formula/src/functions/financial/tbilleq/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/financial/tbilleq/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - -import { FUNCTION_NAMES_FINANCIAL } from '../../function-names'; -import { Tbilleq } from '../index'; -import { BooleanValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; -import { ErrorType } from '../../../../basics/error-type'; +import { BooleanValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { FUNCTION_NAMES_FINANCIAL } from '../../function-names'; +import { Tbilleq } from '../index'; describe('Test tbilleq function', () => { const testFunction = new Tbilleq(FUNCTION_NAMES_FINANCIAL.TBILLEQ); diff --git a/packages/engine-formula/src/functions/financial/tbillprice/__tests__/index.spec.ts b/packages/engine-formula/src/functions/financial/tbillprice/__tests__/index.spec.ts index a2fd404a05..ddd1901034 100644 --- a/packages/engine-formula/src/functions/financial/tbillprice/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/financial/tbillprice/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/financial/tbillyield/__tests__/index.spec.ts b/packages/engine-formula/src/functions/financial/tbillyield/__tests__/index.spec.ts index 1496f1aae5..decccfac90 100644 --- a/packages/engine-formula/src/functions/financial/tbillyield/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/financial/tbillyield/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - -import { FUNCTION_NAMES_FINANCIAL } from '../../function-names'; -import { Tbillyield } from '../index'; -import { BooleanValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; -import { ErrorType } from '../../../../basics/error-type'; +import { BooleanValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { FUNCTION_NAMES_FINANCIAL } from '../../function-names'; +import { Tbillyield } from '../index'; describe('Test tbillyield function', () => { const testFunction = new Tbillyield(FUNCTION_NAMES_FINANCIAL.TBILLYIELD); diff --git a/packages/engine-formula/src/functions/financial/vdb/__tests__/index.spec.ts b/packages/engine-formula/src/functions/financial/vdb/__tests__/index.spec.ts index 2ffa9a5be9..0611846f01 100644 --- a/packages/engine-formula/src/functions/financial/vdb/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/financial/vdb/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; diff --git a/packages/engine-formula/src/functions/financial/xirr/__tests__/index.spec.ts b/packages/engine-formula/src/functions/financial/xirr/__tests__/index.spec.ts index 1a47255f43..1801c3a2b7 100644 --- a/packages/engine-formula/src/functions/financial/xirr/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/financial/xirr/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - -import { FUNCTION_NAMES_FINANCIAL } from '../../function-names'; -import { Xirr } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; -import { ErrorType } from '../../../../basics/error-type'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { FUNCTION_NAMES_FINANCIAL } from '../../function-names'; +import { Xirr } from '../index'; describe('Test xirr function', () => { const testFunction = new Xirr(FUNCTION_NAMES_FINANCIAL.XIRR); @@ -32,7 +31,7 @@ describe('Test xirr function', () => { const dates = ArrayValueObject.create('{39448,39508,39751,39859,39904}'); const guess = NumberValueObject.create(0.1); const result = testFunction.calculate(values, dates, guess); - expect(result.getValue()).toStrictEqual(0.3733625335188314); + expect(result.getValue()).toStrictEqual(0.3733625335188316); }); it('Value is normal, but no positive and negative number', () => { @@ -111,7 +110,7 @@ describe('Test xirr function', () => { const values2 = ArrayValueObject.create('{-10000,2750,4250,3250,2750}'); const guess2 = NullValueObject.create(); const result2 = testFunction.calculate(values2, dates, guess2); - expect(result2.getValue()).toStrictEqual(0.3733625335188314); + expect(result2.getValue()).toStrictEqual(0.3733625335188316); }); it('Value is array', () => { diff --git a/packages/engine-formula/src/functions/financial/xnpv/__tests__/index.spec.ts b/packages/engine-formula/src/functions/financial/xnpv/__tests__/index.spec.ts index 1e5e8c81a0..f6bfa5d366 100644 --- a/packages/engine-formula/src/functions/financial/xnpv/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/financial/xnpv/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - -import { FUNCTION_NAMES_FINANCIAL } from '../../function-names'; -import { Xnpv } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; -import { ErrorType } from '../../../../basics/error-type'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { FUNCTION_NAMES_FINANCIAL } from '../../function-names'; +import { Xnpv } from '../index'; describe('Test xnpv function', () => { const testFunction = new Xnpv(FUNCTION_NAMES_FINANCIAL.XNPV); @@ -32,7 +31,7 @@ describe('Test xnpv function', () => { const values = ArrayValueObject.create('{-10000,2750,4250,3250,2750}'); const dates = ArrayValueObject.create('{39448,39508,39751,39859,39904}'); const result = testFunction.calculate(rate, values, dates); - expect(result.getValue()).toStrictEqual(1994.5100406532624); + expect(result.getValue()).toStrictEqual(1994.510040653262); }); it('Value is normal, but no positive and negative number', () => { diff --git a/packages/engine-formula/src/functions/financial/yield/__tests__/index.spec.ts b/packages/engine-formula/src/functions/financial/yield/__tests__/index.spec.ts index 220b88d85a..b6eea46e00 100644 --- a/packages/engine-formula/src/functions/financial/yield/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/financial/yield/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - -import { FUNCTION_NAMES_FINANCIAL } from '../../function-names'; -import { Yield } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; -import { ErrorType } from '../../../../basics/error-type'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { FUNCTION_NAMES_FINANCIAL } from '../../function-names'; +import { Yield } from '../index'; describe('Test yield function', () => { const testFunction = new Yield(FUNCTION_NAMES_FINANCIAL.YIELD); @@ -121,11 +120,11 @@ describe('Test yield function', () => { const basis3 = NumberValueObject.create(2); const result3 = testFunction.calculate(settlement, maturity, rate, pr, redemption, frequency, basis3); - expect(result3.getValue()).toStrictEqual(0.08048425764748052); + expect(result3.getValue()).toStrictEqual(0.08048425764748053); const basis4 = NumberValueObject.create(3); const result4 = testFunction.calculate(settlement, maturity, rate, pr, redemption, frequency, basis4); - expect(result4.getValue()).toStrictEqual(0.0804841172323108); + expect(result4.getValue()).toStrictEqual(0.0804841172323109); const basis5 = NumberValueObject.create(4); const result5 = testFunction.calculate(settlement, maturity, rate, pr, redemption, frequency, basis5); diff --git a/packages/engine-formula/src/functions/financial/yielddisc/__tests__/index.spec.ts b/packages/engine-formula/src/functions/financial/yielddisc/__tests__/index.spec.ts index 4c3317a039..9bb6191a76 100644 --- a/packages/engine-formula/src/functions/financial/yielddisc/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/financial/yielddisc/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - -import { FUNCTION_NAMES_FINANCIAL } from '../../function-names'; -import { Yielddisc } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; -import { ErrorType } from '../../../../basics/error-type'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { FUNCTION_NAMES_FINANCIAL } from '../../function-names'; +import { Yielddisc } from '../index'; describe('Test yielddisc function', () => { const testFunction = new Yielddisc(FUNCTION_NAMES_FINANCIAL.YIELDDISC); diff --git a/packages/engine-formula/src/functions/financial/yieldmat/__tests__/index.spec.ts b/packages/engine-formula/src/functions/financial/yieldmat/__tests__/index.spec.ts index 948b3c9a21..141bffc756 100644 --- a/packages/engine-formula/src/functions/financial/yieldmat/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/financial/yieldmat/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - -import { FUNCTION_NAMES_FINANCIAL } from '../../function-names'; -import { Yieldmat } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; -import { ErrorType } from '../../../../basics/error-type'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { FUNCTION_NAMES_FINANCIAL } from '../../function-names'; +import { Yieldmat } from '../index'; describe('Test yieldmat function', () => { const testFunction = new Yieldmat(FUNCTION_NAMES_FINANCIAL.YIELDMAT); diff --git a/packages/engine-formula/src/functions/information/error-type/__tests__/index.spec.ts b/packages/engine-formula/src/functions/information/error-type/__tests__/index.spec.ts index 711e982a89..861c1616d0 100644 --- a/packages/engine-formula/src/functions/information/error-type/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/information/error-type/__tests__/index.spec.ts @@ -15,12 +15,11 @@ */ import { describe, expect, it } from 'vitest'; - -import { FUNCTION_NAMES_INFORMATION } from '../../function-names'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { ErrorType as ErrorTypeBase } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; -import { ErrorType as ErrorTypeBase } from '../../../../basics/error-type'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { FUNCTION_NAMES_INFORMATION } from '../../function-names'; import { ErrorType } from '../index'; describe('Test error.type function', () => { diff --git a/packages/engine-formula/src/functions/information/isbetween/__tests__/index.spec.ts b/packages/engine-formula/src/functions/information/isbetween/__tests__/index.spec.ts index 158ab08127..2a606f26f8 100644 --- a/packages/engine-formula/src/functions/information/isbetween/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/information/isbetween/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/information/isblank/__tests__/index.spec.ts b/packages/engine-formula/src/functions/information/isblank/__tests__/index.spec.ts index d263fa0fb4..8f35614d3f 100644 --- a/packages/engine-formula/src/functions/information/isblank/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/information/isblank/__tests__/index.spec.ts @@ -15,12 +15,11 @@ */ import { describe, expect, it } from 'vitest'; - -import { FUNCTION_NAMES_INFORMATION } from '../../function-names'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; -import { ErrorType } from '../../../../basics/error-type'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { FUNCTION_NAMES_INFORMATION } from '../../function-names'; import { Isblank } from '../index'; describe('Test isblank function', () => { diff --git a/packages/engine-formula/src/functions/information/isdate/__tests__/index.spec.ts b/packages/engine-formula/src/functions/information/isdate/__tests__/index.spec.ts index e0c3b87c2b..d89fb7bc9b 100644 --- a/packages/engine-formula/src/functions/information/isdate/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/information/isdate/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/information/isemail/__tests__/index.spec.ts b/packages/engine-formula/src/functions/information/isemail/__tests__/index.spec.ts index b0272f8800..f6d2c352f6 100644 --- a/packages/engine-formula/src/functions/information/isemail/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/information/isemail/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/information/iserr/__tests__/index.spec.ts b/packages/engine-formula/src/functions/information/iserr/__tests__/index.spec.ts index 80b96915b4..2f12c906cf 100644 --- a/packages/engine-formula/src/functions/information/iserr/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/information/iserr/__tests__/index.spec.ts @@ -15,11 +15,10 @@ */ import { describe, expect, it } from 'vitest'; - -import { FUNCTION_NAMES_INFORMATION } from '../../function-names'; +import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; -import { ErrorType } from '../../../../basics/error-type'; +import { FUNCTION_NAMES_INFORMATION } from '../../function-names'; import { Iserr } from '../index'; describe('Test iserr function', () => { diff --git a/packages/engine-formula/src/functions/information/iserror/__tests__/index.spec.ts b/packages/engine-formula/src/functions/information/iserror/__tests__/index.spec.ts index acd0e5ffd8..1a05f5c137 100644 --- a/packages/engine-formula/src/functions/information/iserror/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/information/iserror/__tests__/index.spec.ts @@ -15,11 +15,10 @@ */ import { describe, expect, it } from 'vitest'; - -import { FUNCTION_NAMES_INFORMATION } from '../../function-names'; +import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; -import { ErrorType } from '../../../../basics/error-type'; +import { FUNCTION_NAMES_INFORMATION } from '../../function-names'; import { Iserror } from '../index'; describe('Test iserror function', () => { diff --git a/packages/engine-formula/src/functions/information/iseven/__tests__/iseven.spec.ts b/packages/engine-formula/src/functions/information/iseven/__tests__/iseven.spec.ts index d94af663c7..d9c085bcc6 100644 --- a/packages/engine-formula/src/functions/information/iseven/__tests__/iseven.spec.ts +++ b/packages/engine-formula/src/functions/information/iseven/__tests__/iseven.spec.ts @@ -15,11 +15,10 @@ */ import { describe, expect, it } from 'vitest'; - -import { FUNCTION_NAMES_INFORMATION } from '../../function-names'; -import { BooleanValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject } from '../../../../engine/value-object/array-value-object'; +import { BooleanValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { FUNCTION_NAMES_INFORMATION } from '../../function-names'; import { Iseven } from '../iseven'; describe('Test iseven function', () => { diff --git a/packages/engine-formula/src/functions/information/islogical/__tests__/index.spec.ts b/packages/engine-formula/src/functions/information/islogical/__tests__/index.spec.ts index 977a9e3434..2fa127db55 100644 --- a/packages/engine-formula/src/functions/information/islogical/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/information/islogical/__tests__/index.spec.ts @@ -15,12 +15,11 @@ */ import { describe, expect, it } from 'vitest'; - -import { FUNCTION_NAMES_INFORMATION } from '../../function-names'; -import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorType } from '../../../../basics/error-type'; -import { Islogical } from '../index'; +import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { BooleanValueObject } from '../../../../engine/value-object/primitive-object'; +import { FUNCTION_NAMES_INFORMATION } from '../../function-names'; +import { Islogical } from '../index'; describe('Test islogical function', () => { const testFunction = new Islogical(FUNCTION_NAMES_INFORMATION.ISLOGICAL); diff --git a/packages/engine-formula/src/functions/information/isna/__tests__/index.spec.ts b/packages/engine-formula/src/functions/information/isna/__tests__/index.spec.ts index 78bf9d6a34..14a11f5a2b 100644 --- a/packages/engine-formula/src/functions/information/isna/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/information/isna/__tests__/index.spec.ts @@ -15,11 +15,10 @@ */ import { describe, expect, it } from 'vitest'; - -import { FUNCTION_NAMES_INFORMATION } from '../../function-names'; +import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; -import { ErrorType } from '../../../../basics/error-type'; +import { FUNCTION_NAMES_INFORMATION } from '../../function-names'; import { Isna } from '../index'; describe('Test isna function', () => { diff --git a/packages/engine-formula/src/functions/information/isnontext/__tests__/index.spec.ts b/packages/engine-formula/src/functions/information/isnontext/__tests__/index.spec.ts index 0e254efbbd..e310b2e051 100644 --- a/packages/engine-formula/src/functions/information/isnontext/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/information/isnontext/__tests__/index.spec.ts @@ -15,12 +15,11 @@ */ import { describe, expect, it } from 'vitest'; - -import { FUNCTION_NAMES_INFORMATION } from '../../function-names'; -import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorType } from '../../../../basics/error-type'; -import { Isnontext } from '../index'; +import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { FUNCTION_NAMES_INFORMATION } from '../../function-names'; +import { Isnontext } from '../index'; describe('Test isnontext function', () => { const testFunction = new Isnontext(FUNCTION_NAMES_INFORMATION.ISNONTEXT); diff --git a/packages/engine-formula/src/functions/information/isnumber/__tests__/index.spec.ts b/packages/engine-formula/src/functions/information/isnumber/__tests__/index.spec.ts index 2408a735e4..2eac08512a 100644 --- a/packages/engine-formula/src/functions/information/isnumber/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/information/isnumber/__tests__/index.spec.ts @@ -15,12 +15,11 @@ */ import { describe, expect, it } from 'vitest'; - -import { FUNCTION_NAMES_INFORMATION } from '../../function-names'; -import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorType } from '../../../../basics/error-type'; -import { Isnumber } from '../index'; +import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { NumberValueObject } from '../../../../engine/value-object/primitive-object'; +import { FUNCTION_NAMES_INFORMATION } from '../../function-names'; +import { Isnumber } from '../index'; describe('Test isnumber function', () => { const testFunction = new Isnumber(FUNCTION_NAMES_INFORMATION.ISNUMBER); diff --git a/packages/engine-formula/src/functions/information/istext/__tests__/index.spec.ts b/packages/engine-formula/src/functions/information/istext/__tests__/index.spec.ts index 0b01842745..448660a1aa 100644 --- a/packages/engine-formula/src/functions/information/istext/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/information/istext/__tests__/index.spec.ts @@ -15,12 +15,11 @@ */ import { describe, expect, it } from 'vitest'; - -import { FUNCTION_NAMES_INFORMATION } from '../../function-names'; -import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorType } from '../../../../basics/error-type'; -import { Istext } from '../index'; +import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { FUNCTION_NAMES_INFORMATION } from '../../function-names'; +import { Istext } from '../index'; describe('Test istext function', () => { const testFunction = new Istext(FUNCTION_NAMES_INFORMATION.ISTEXT); diff --git a/packages/engine-formula/src/functions/information/isurl/__tests__/index.spec.ts b/packages/engine-formula/src/functions/information/isurl/__tests__/index.spec.ts index c97039c59d..e199bf8e9e 100644 --- a/packages/engine-formula/src/functions/information/isurl/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/information/isurl/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/information/n/__tests__/index.spec.ts b/packages/engine-formula/src/functions/information/n/__tests__/index.spec.ts index 067010bc28..7ecb355322 100644 --- a/packages/engine-formula/src/functions/information/n/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/information/n/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - -import { FUNCTION_NAMES_INFORMATION } from '../../function-names'; -import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorType } from '../../../../basics/error-type'; -import { N } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { FUNCTION_NAMES_INFORMATION } from '../../function-names'; +import { N } from '../index'; describe('Test n function', () => { const testFunction = new N(FUNCTION_NAMES_INFORMATION.N); diff --git a/packages/engine-formula/src/functions/information/na/__tests__/index.spec.ts b/packages/engine-formula/src/functions/information/na/__tests__/index.spec.ts index 661a608ee3..940bd6ca1d 100644 --- a/packages/engine-formula/src/functions/information/na/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/information/na/__tests__/index.spec.ts @@ -15,10 +15,9 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; import { FUNCTION_NAMES_INFORMATION } from '../../function-names'; import { Na } from '../index'; -import { ErrorType } from '../../../../basics/error-type'; describe('Test na function', () => { const testFunction = new Na(FUNCTION_NAMES_INFORMATION.NA); diff --git a/packages/engine-formula/src/functions/information/type/__tests__/index.spec.ts b/packages/engine-formula/src/functions/information/type/__tests__/index.spec.ts index 7e7ab99e07..2669b4dc1e 100644 --- a/packages/engine-formula/src/functions/information/type/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/information/type/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - -import { FUNCTION_NAMES_INFORMATION } from '../../function-names'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { FUNCTION_NAMES_INFORMATION } from '../../function-names'; import { Type } from '../index'; -import { ErrorType } from '../../../../basics/error-type'; describe('Test type function', () => { const testFunction = new Type(FUNCTION_NAMES_INFORMATION.TYPE); diff --git a/packages/engine-formula/src/functions/logical/and/__tests__/index.spec.ts b/packages/engine-formula/src/functions/logical/and/__tests__/index.spec.ts index e4300cdcec..0d47bc47e5 100644 --- a/packages/engine-formula/src/functions/logical/and/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/logical/and/__tests__/index.spec.ts @@ -15,11 +15,10 @@ */ import { describe, expect, it } from 'vitest'; - -import { FUNCTION_NAMES_LOGICAL } from '../../function-names'; -import { And } from '../index'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { FUNCTION_NAMES_LOGICAL } from '../../function-names'; +import { And } from '../index'; describe('Test and function', () => { const testFunction = new And(FUNCTION_NAMES_LOGICAL.AND); diff --git a/packages/engine-formula/src/functions/logical/false/__tests__/index.spec.ts b/packages/engine-formula/src/functions/logical/false/__tests__/index.spec.ts index 116f1fa0b5..63cc7658fb 100644 --- a/packages/engine-formula/src/functions/logical/false/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/logical/false/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { FUNCTION_NAMES_LOGICAL } from '../../function-names'; import { False } from '../index'; diff --git a/packages/engine-formula/src/functions/logical/if/__tests__/index.spec.ts b/packages/engine-formula/src/functions/logical/if/__tests__/index.spec.ts index c34157e9e4..c776afa6f4 100644 --- a/packages/engine-formula/src/functions/logical/if/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/logical/if/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { BooleanValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { getObjectValue } from '../../../__tests__/create-function-test-bed'; diff --git a/packages/engine-formula/src/functions/logical/iferror/__tests__/index.spec.ts b/packages/engine-formula/src/functions/logical/iferror/__tests__/index.spec.ts index cc41a21f3f..c3bb64f4c9 100644 --- a/packages/engine-formula/src/functions/logical/iferror/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/logical/iferror/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/logical/ifna/__tests__/index.spec.ts b/packages/engine-formula/src/functions/logical/ifna/__tests__/index.spec.ts index f9e62b5f6e..e0d4c0515c 100644 --- a/packages/engine-formula/src/functions/logical/ifna/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/logical/ifna/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_LOGICAL } from '../../function-names'; import { Ifna } from '../index'; -import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; -import { NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; -import { ErrorType } from '../../../../basics/error-type'; describe('Test ifna function', () => { const textFunction = new Ifna(FUNCTION_NAMES_LOGICAL.IFNA); diff --git a/packages/engine-formula/src/functions/logical/ifs/__tests__/index.spec.ts b/packages/engine-formula/src/functions/logical/ifs/__tests__/index.spec.ts index 266d9f78c5..f474adb1fb 100644 --- a/packages/engine-formula/src/functions/logical/ifs/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/logical/ifs/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NullValueObject, NumberValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_LOGICAL } from '../../function-names'; import { Ifs } from '../index'; -import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; -import { BooleanValueObject, NullValueObject, NumberValueObject } from '../../../../engine/value-object/primitive-object'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; -import { ErrorType } from '../../../../basics/error-type'; describe('Test ifs function', () => { const textFunction = new Ifs(FUNCTION_NAMES_LOGICAL.IFS); diff --git a/packages/engine-formula/src/functions/logical/not/__tests__/index.spec.ts b/packages/engine-formula/src/functions/logical/not/__tests__/index.spec.ts index d5a9569c2f..09be0d552a 100644 --- a/packages/engine-formula/src/functions/logical/not/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/logical/not/__tests__/index.spec.ts @@ -15,12 +15,11 @@ */ import { describe, expect, it } from 'vitest'; - -import { FUNCTION_NAMES_LOGICAL } from '../../function-names'; -import { Not } from '../index'; +import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ErrorType } from '../../../../basics/error-type'; +import { FUNCTION_NAMES_LOGICAL } from '../../function-names'; +import { Not } from '../index'; describe('Test not function', () => { const textFunction = new Not(FUNCTION_NAMES_LOGICAL.NOT); diff --git a/packages/engine-formula/src/functions/logical/or/__tests__/index.spec.ts b/packages/engine-formula/src/functions/logical/or/__tests__/index.spec.ts index 20437d0152..d178fe3e6e 100644 --- a/packages/engine-formula/src/functions/logical/or/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/logical/or/__tests__/index.spec.ts @@ -15,11 +15,10 @@ */ import { describe, expect, it } from 'vitest'; - -import { FUNCTION_NAMES_LOGICAL } from '../../function-names'; +import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ErrorType } from '../../../../basics/error-type'; +import { FUNCTION_NAMES_LOGICAL } from '../../function-names'; import { Or } from '../index'; describe('Test or function', () => { diff --git a/packages/engine-formula/src/functions/logical/switch/__tests__/index.spec.ts b/packages/engine-formula/src/functions/logical/switch/__tests__/index.spec.ts index fd2b4ed16c..7e7d5b89b0 100644 --- a/packages/engine-formula/src/functions/logical/switch/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/logical/switch/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_LOGICAL } from '../../function-names'; import { Switch } from '../index'; -import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; -import { NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; -import { ErrorType } from '../../../../basics/error-type'; describe('Test switch function', () => { const textFunction = new Switch(FUNCTION_NAMES_LOGICAL.SWITCH); diff --git a/packages/engine-formula/src/functions/logical/true/__tests__/index.spec.ts b/packages/engine-formula/src/functions/logical/true/__tests__/index.spec.ts index 3d3ebd2f65..b2205ea376 100644 --- a/packages/engine-formula/src/functions/logical/true/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/logical/true/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { FUNCTION_NAMES_LOGICAL } from '../../function-names'; import { True } from '../index'; diff --git a/packages/engine-formula/src/functions/logical/xor/__tests__/index.spec.ts b/packages/engine-formula/src/functions/logical/xor/__tests__/index.spec.ts index b7db9ada43..ea54a41973 100644 --- a/packages/engine-formula/src/functions/logical/xor/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/logical/xor/__tests__/index.spec.ts @@ -15,11 +15,10 @@ */ import { describe, expect, it } from 'vitest'; - -import { FUNCTION_NAMES_LOGICAL } from '../../function-names'; +import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ErrorType } from '../../../../basics/error-type'; +import { FUNCTION_NAMES_LOGICAL } from '../../function-names'; import { Xor } from '../index'; describe('Test xor function', () => { diff --git a/packages/engine-formula/src/functions/lookup/address/__tests__/index.spec.ts b/packages/engine-formula/src/functions/lookup/address/__tests__/index.spec.ts index 7b8e00994d..b0a3e1c818 100644 --- a/packages/engine-formula/src/functions/lookup/address/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/lookup/address/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/lookup/areas/__tests__/index.spec.ts b/packages/engine-formula/src/functions/lookup/areas/__tests__/index.spec.ts index 5375611f08..c8936bcc19 100644 --- a/packages/engine-formula/src/functions/lookup/areas/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/lookup/areas/__tests__/index.spec.ts @@ -15,12 +15,11 @@ */ import { describe, expect, it } from 'vitest'; - -import { FUNCTION_NAMES_LOOKUP } from '../../function-names'; -import { Areas } from '../index'; -import { StringValueObject } from '../../../../engine/value-object/primitive-object'; import { ErrorType } from '../../../../basics/error-type'; import { CellReferenceObject } from '../../../../engine/reference-object/cell-reference-object'; +import { StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { FUNCTION_NAMES_LOOKUP } from '../../function-names'; +import { Areas } from '../index'; describe('Test areas function', () => { const testFunction = new Areas(FUNCTION_NAMES_LOOKUP.AREAS); diff --git a/packages/engine-formula/src/functions/lookup/choose/__tests__/index.spec.ts b/packages/engine-formula/src/functions/lookup/choose/__tests__/index.spec.ts index 038b976570..417ae9fd87 100644 --- a/packages/engine-formula/src/functions/lookup/choose/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/lookup/choose/__tests__/index.spec.ts @@ -15,14 +15,13 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { getObjectValue } from '../../../__tests__/create-function-test-bed'; import { FUNCTION_NAMES_LOOKUP } from '../../function-names'; import { Choose } from '../index'; -import { NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { getObjectValue } from '../../../__tests__/create-function-test-bed'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; describe('Test choose function', () => { const testFunction = new Choose(FUNCTION_NAMES_LOOKUP.CHOOSE); diff --git a/packages/engine-formula/src/functions/lookup/choosecols/__tests__/index.spec.ts b/packages/engine-formula/src/functions/lookup/choosecols/__tests__/index.spec.ts index 0dc81c2f1e..1af1e4b1c2 100644 --- a/packages/engine-formula/src/functions/lookup/choosecols/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/lookup/choosecols/__tests__/index.spec.ts @@ -15,14 +15,13 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { getObjectValue } from '../../../__tests__/create-function-test-bed'; import { FUNCTION_NAMES_LOOKUP } from '../../function-names'; import { Choosecols } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { getObjectValue } from '../../../__tests__/create-function-test-bed'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; describe('Test choosecols function', () => { const testFunction = new Choosecols(FUNCTION_NAMES_LOOKUP.CHOOSECOLS); diff --git a/packages/engine-formula/src/functions/lookup/chooserows/__tests__/index.spec.ts b/packages/engine-formula/src/functions/lookup/chooserows/__tests__/index.spec.ts index bc89ef5c2c..e0dd5f0037 100644 --- a/packages/engine-formula/src/functions/lookup/chooserows/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/lookup/chooserows/__tests__/index.spec.ts @@ -15,14 +15,13 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { getObjectValue } from '../../../__tests__/create-function-test-bed'; import { FUNCTION_NAMES_LOOKUP } from '../../function-names'; import { Chooserows } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { getObjectValue } from '../../../__tests__/create-function-test-bed'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; describe('Test chooserows function', () => { const testFunction = new Chooserows(FUNCTION_NAMES_LOOKUP.CHOOSEROWS); diff --git a/packages/engine-formula/src/functions/lookup/drop/__tests__/index.spec.ts b/packages/engine-formula/src/functions/lookup/drop/__tests__/index.spec.ts index 85fafb5daa..fb202ca18d 100644 --- a/packages/engine-formula/src/functions/lookup/drop/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/lookup/drop/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/lookup/expand/__tests__/index.spec.ts b/packages/engine-formula/src/functions/lookup/expand/__tests__/index.spec.ts index c7cdffae55..93c6f59eee 100644 --- a/packages/engine-formula/src/functions/lookup/expand/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/lookup/expand/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/lookup/filter/__tests__/index.spec.ts b/packages/engine-formula/src/functions/lookup/filter/__tests__/index.spec.ts index bc9df651a0..abccaa44e5 100644 --- a/packages/engine-formula/src/functions/lookup/filter/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/lookup/filter/__tests__/index.spec.ts @@ -15,14 +15,13 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { NumberValueObject } from '../../../../engine/value-object/primitive-object'; +import { getObjectValue } from '../../../__tests__/create-function-test-bed'; import { FUNCTION_NAMES_LOOKUP } from '../../function-names'; import { Filter } from '../index'; -import { NumberValueObject } from '../../../../engine/value-object/primitive-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { getObjectValue } from '../../../__tests__/create-function-test-bed'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; describe('Test filter function', () => { const testFunction = new Filter(FUNCTION_NAMES_LOOKUP.FILTER); diff --git a/packages/engine-formula/src/functions/lookup/hlookup/__tests__/index.spec.ts b/packages/engine-formula/src/functions/lookup/hlookup/__tests__/index.spec.ts index 1aeff0e768..e2f3f37aec 100644 --- a/packages/engine-formula/src/functions/lookup/hlookup/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/lookup/hlookup/__tests__/index.spec.ts @@ -14,14 +14,13 @@ * limitations under the License. */ +import type { BaseValueObject } from '../../../../engine/value-object/base-value-object'; import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject } from '../../../../engine/value-object/array-value-object'; import { NumberValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_LOOKUP } from '../../function-names'; import { Hlookup } from '../index'; -import type { BaseValueObject } from '../../../../engine/value-object/base-value-object'; const arrayValueObject1 = ArrayValueObject.create(/*ts*/ `{ 1,2,3,4,5,6,7,8; diff --git a/packages/engine-formula/src/functions/lookup/hstack/__tests__/index.spec.ts b/packages/engine-formula/src/functions/lookup/hstack/__tests__/index.spec.ts index ae52d3f419..8f84642293 100644 --- a/packages/engine-formula/src/functions/lookup/hstack/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/lookup/hstack/__tests__/index.spec.ts @@ -15,14 +15,13 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { getObjectValue } from '../../../__tests__/create-function-test-bed'; import { FUNCTION_NAMES_LOOKUP } from '../../function-names'; import { Hstack } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { getObjectValue } from '../../../__tests__/create-function-test-bed'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; describe('Test hstack function', () => { const testFunction = new Hstack(FUNCTION_NAMES_LOOKUP.HSTACK); diff --git a/packages/engine-formula/src/functions/lookup/lookup/__tests__/index.spec.ts b/packages/engine-formula/src/functions/lookup/lookup/__tests__/index.spec.ts index 0a968f89e8..a654496407 100644 --- a/packages/engine-formula/src/functions/lookup/lookup/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/lookup/lookup/__tests__/index.spec.ts @@ -14,14 +14,13 @@ * limitations under the License. */ +import type { BaseValueObject } from '../../../../engine/value-object/base-value-object'; import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject } from '../../../../engine/value-object/array-value-object'; import { NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_LOOKUP } from '../../function-names'; import { Lookup } from '../index'; -import type { BaseValueObject } from '../../../../engine/value-object/base-value-object'; const arrayValueObject1 = ArrayValueObject.create(/*ts*/ `{ 1, "First"; diff --git a/packages/engine-formula/src/functions/lookup/match/__tests__/index.spec.ts b/packages/engine-formula/src/functions/lookup/match/__tests__/index.spec.ts index ed4c662876..2c63035596 100644 --- a/packages/engine-formula/src/functions/lookup/match/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/lookup/match/__tests__/index.spec.ts @@ -15,14 +15,13 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { NumberValueObject, } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_LOOKUP } from '../../function-names'; import { Match } from '../index'; -import { ErrorType } from '../../../../basics/error-type'; describe('Test match', () => { const testFunction = new Match(FUNCTION_NAMES_LOOKUP.MATCH); diff --git a/packages/engine-formula/src/functions/lookup/sort/__tests__/index.spec.ts b/packages/engine-formula/src/functions/lookup/sort/__tests__/index.spec.ts index b1cc1ace32..7bf84d264c 100644 --- a/packages/engine-formula/src/functions/lookup/sort/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/lookup/sort/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { BooleanValueObject, NumberValueObject } from '../../../../engine/value-object/primitive-object'; +import { getObjectValue } from '../../../__tests__/create-function-test-bed'; import { FUNCTION_NAMES_LOOKUP } from '../../function-names'; import { Sort } from '../index'; -import { BooleanValueObject, NumberValueObject } from '../../../../engine/value-object/primitive-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { getObjectValue } from '../../../__tests__/create-function-test-bed'; describe('Test sort function', () => { const testFunction = new Sort(FUNCTION_NAMES_LOOKUP.SORT); diff --git a/packages/engine-formula/src/functions/lookup/sortby/__tests__/index.spec.ts b/packages/engine-formula/src/functions/lookup/sortby/__tests__/index.spec.ts index 6c1bd11f6f..cb3627306e 100644 --- a/packages/engine-formula/src/functions/lookup/sortby/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/lookup/sortby/__tests__/index.spec.ts @@ -15,14 +15,13 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { NumberValueObject } from '../../../../engine/value-object/primitive-object'; +import { getObjectValue } from '../../../__tests__/create-function-test-bed'; import { FUNCTION_NAMES_LOOKUP } from '../../function-names'; import { Sortby } from '../index'; -import { NumberValueObject } from '../../../../engine/value-object/primitive-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { getObjectValue } from '../../../__tests__/create-function-test-bed'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; describe('Test sortby function', () => { const testFunction = new Sortby(FUNCTION_NAMES_LOOKUP.SORTBY); diff --git a/packages/engine-formula/src/functions/lookup/take/__tests__/index.spec.ts b/packages/engine-formula/src/functions/lookup/take/__tests__/index.spec.ts index daf0a49799..2a3dac38d6 100644 --- a/packages/engine-formula/src/functions/lookup/take/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/lookup/take/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/lookup/tocol/__tests__/index.spec.ts b/packages/engine-formula/src/functions/lookup/tocol/__tests__/index.spec.ts index 50844c4127..792d3b6862 100644 --- a/packages/engine-formula/src/functions/lookup/tocol/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/lookup/tocol/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/lookup/torow/__tests__/index.spec.ts b/packages/engine-formula/src/functions/lookup/torow/__tests__/index.spec.ts index b944461df3..ad7860f755 100644 --- a/packages/engine-formula/src/functions/lookup/torow/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/lookup/torow/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/lookup/transpose/__tests__/index.spec.ts b/packages/engine-formula/src/functions/lookup/transpose/__tests__/index.spec.ts index e6a7afe502..9a5288473d 100644 --- a/packages/engine-formula/src/functions/lookup/transpose/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/lookup/transpose/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { getObjectValue } from '../../../__tests__/create-function-test-bed'; import { FUNCTION_NAMES_LOOKUP } from '../../function-names'; import { Transpose } from '../index'; -import { ErrorType } from '../../../../basics/error-type'; -import { getObjectValue } from '../../../__tests__/create-function-test-bed'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; describe('Test transpose function', () => { const testFunction = new Transpose(FUNCTION_NAMES_LOOKUP.TRANSPOSE); diff --git a/packages/engine-formula/src/functions/lookup/unique/__tests__/index.spec.ts b/packages/engine-formula/src/functions/lookup/unique/__tests__/index.spec.ts index 00202e198a..65e20c4c85 100644 --- a/packages/engine-formula/src/functions/lookup/unique/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/lookup/unique/__tests__/index.spec.ts @@ -15,14 +15,13 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NullValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { getObjectValue } from '../../../__tests__/create-function-test-bed'; import { FUNCTION_NAMES_LOOKUP } from '../../function-names'; import { Unique } from '../index'; -import { BooleanValueObject, NullValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { getObjectValue } from '../../../__tests__/create-function-test-bed'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; describe('Test unique function', () => { const testFunction = new Unique(FUNCTION_NAMES_LOOKUP.UNIQUE); diff --git a/packages/engine-formula/src/functions/lookup/vstack/__tests__/index.spec.ts b/packages/engine-formula/src/functions/lookup/vstack/__tests__/index.spec.ts index 727d8cda09..6456e09191 100644 --- a/packages/engine-formula/src/functions/lookup/vstack/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/lookup/vstack/__tests__/index.spec.ts @@ -15,14 +15,13 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; +import { getObjectValue } from '../../../__tests__/create-function-test-bed'; import { FUNCTION_NAMES_LOOKUP } from '../../function-names'; import { Vstack } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { getObjectValue } from '../../../__tests__/create-function-test-bed'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; describe('Test vstack function', () => { const testFunction = new Vstack(FUNCTION_NAMES_LOOKUP.VSTACK); diff --git a/packages/engine-formula/src/functions/lookup/wrapcols/__tests__/index.spec.ts b/packages/engine-formula/src/functions/lookup/wrapcols/__tests__/index.spec.ts index c1d4b43acb..2c1bf4c8f1 100644 --- a/packages/engine-formula/src/functions/lookup/wrapcols/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/lookup/wrapcols/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/lookup/wraprows/__tests__/index.spec.ts b/packages/engine-formula/src/functions/lookup/wraprows/__tests__/index.spec.ts index 1c11f4a444..e1d385b316 100644 --- a/packages/engine-formula/src/functions/lookup/wraprows/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/lookup/wraprows/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/lookup/xmatch/__tests__/index.spec.ts b/packages/engine-formula/src/functions/lookup/xmatch/__tests__/index.spec.ts index 246e92e3fb..0041e889f1 100644 --- a/packages/engine-formula/src/functions/lookup/xmatch/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/lookup/xmatch/__tests__/index.spec.ts @@ -15,12 +15,11 @@ */ import { describe, expect, it } from 'vitest'; - import { ArrayValueObject } from '../../../../engine/value-object/array-value-object'; +import { NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_LOOKUP } from '../../function-names'; import { Xmatch } from '../index'; -import { NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; const arrayValueObject1 = ArrayValueObject.create(/*ts*/ `{ 1, "First", 100, 89; diff --git a/packages/engine-formula/src/functions/math/abs/__tests__/index.spec.ts b/packages/engine-formula/src/functions/math/abs/__tests__/index.spec.ts index cb4bdce82f..4ef65ca462 100644 --- a/packages/engine-formula/src/functions/math/abs/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/math/abs/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_MATH } from '../../function-names'; import { Abs } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; describe('Test abs function', () => { const testFunction = new Abs(FUNCTION_NAMES_MATH.ABS); diff --git a/packages/engine-formula/src/functions/math/acos/__tests__/index.spec.ts b/packages/engine-formula/src/functions/math/acos/__tests__/index.spec.ts index e61d1554a4..6655a6394b 100644 --- a/packages/engine-formula/src/functions/math/acos/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/math/acos/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_MATH } from '../../function-names'; import { Acos } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; describe('Test acos function', () => { const testFunction = new Acos(FUNCTION_NAMES_MATH.ACOS); diff --git a/packages/engine-formula/src/functions/math/acosh/__tests__/index.spec.ts b/packages/engine-formula/src/functions/math/acosh/__tests__/index.spec.ts index a61fcb8e6f..ac0db8c07e 100644 --- a/packages/engine-formula/src/functions/math/acosh/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/math/acosh/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_MATH } from '../../function-names'; import { Acosh } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; describe('Test acosh function', () => { const testFunction = new Acosh(FUNCTION_NAMES_MATH.ACOSH); diff --git a/packages/engine-formula/src/functions/math/acot/__tests__/index.spec.ts b/packages/engine-formula/src/functions/math/acot/__tests__/index.spec.ts index 91ff4f8224..83ee8c3260 100644 --- a/packages/engine-formula/src/functions/math/acot/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/math/acot/__tests__/index.spec.ts @@ -80,21 +80,10 @@ describe('Test acot function', () => { column: 0, }); const result = testFunction.calculate(valueArray); - expect(transformToValue(result.getArrayValue())).toStrictEqual([[ - 0.7853981633974483, - ErrorType.VALUE, - 0.682622552417217, - 0.7853981633974483, - 1.5707963267948966, - 1.5707963267948966, - ], [ - 1.5707963267948966, - 0.009999666686665238, - 0.40385979490737667, - ErrorType.VALUE, - 2.819842099193151, - ErrorType.NAME, - ]]); + expect(transformToValue(result.getArrayValue())).toStrictEqual([ + [0.7853981633974483, ErrorType.VALUE, 0.682622552417217, 0.7853981633974483, 1.5707963267948966, 1.5707963267948966], + [1.5707963267948966, 0.009999666686665238, 0.40385979490737667, ErrorType.VALUE, 2.819842099193151, ErrorType.NAME], + ]); }); }); }); diff --git a/packages/engine-formula/src/functions/math/acoth/__tests__/index.spec.ts b/packages/engine-formula/src/functions/math/acoth/__tests__/index.spec.ts index 7404014b42..be4bfef752 100644 --- a/packages/engine-formula/src/functions/math/acoth/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/math/acoth/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_MATH } from '../../function-names'; import { Acoth } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; describe('Test acoth function', () => { const testFunction = new Acoth(FUNCTION_NAMES_MATH.ACOTH); diff --git a/packages/engine-formula/src/functions/math/arabic/__tests__/index.spec.ts b/packages/engine-formula/src/functions/math/arabic/__tests__/index.spec.ts index 3dfdb4d5e2..e162c02e21 100644 --- a/packages/engine-formula/src/functions/math/arabic/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/math/arabic/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/math/asin/__tests__/index.spec.ts b/packages/engine-formula/src/functions/math/asin/__tests__/index.spec.ts index 542276123d..c4ea63f8dc 100644 --- a/packages/engine-formula/src/functions/math/asin/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/math/asin/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_MATH } from '../../function-names'; import { Asin } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; describe('Test asin function', () => { const testFunction = new Asin(FUNCTION_NAMES_MATH.ASIN); diff --git a/packages/engine-formula/src/functions/math/asinh/__tests__/index.spec.ts b/packages/engine-formula/src/functions/math/asinh/__tests__/index.spec.ts index 2d9ae05541..06954affbf 100644 --- a/packages/engine-formula/src/functions/math/asinh/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/math/asinh/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_MATH } from '../../function-names'; import { Asinh } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; describe('Test asinh function', () => { const testFunction = new Asinh(FUNCTION_NAMES_MATH.ASINH); diff --git a/packages/engine-formula/src/functions/math/atan/__tests__/index.spec.ts b/packages/engine-formula/src/functions/math/atan/__tests__/index.spec.ts index 1faed7621d..2e6e5323c5 100644 --- a/packages/engine-formula/src/functions/math/atan/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/math/atan/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_MATH } from '../../function-names'; import { Atan } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; describe('Test atan function', () => { const testFunction = new Atan(FUNCTION_NAMES_MATH.ATAN); diff --git a/packages/engine-formula/src/functions/math/atan2/__tests__/index.spec.ts b/packages/engine-formula/src/functions/math/atan2/__tests__/index.spec.ts index 48d6dd7fe0..f3b88c1365 100644 --- a/packages/engine-formula/src/functions/math/atan2/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/math/atan2/__tests__/index.spec.ts @@ -143,7 +143,11 @@ describe('Test atan2 function', () => { column: 0, }); const result = testFunction.calculate(xNum, yNum); - expect(transformToValue(result.getArrayValue())).toStrictEqual([[0.7853981633974483, ErrorType.VALUE, 0.8881737743776796, 0.7853981633974483, 0, 0], [0, 1.550798992821746, 0.8635794970038352, ErrorType.VALUE, -0.982793723247329, ErrorType.NAME], [ErrorType.NA, ErrorType.NA, ErrorType.NA, ErrorType.NA, ErrorType.NA, ErrorType.NA]]); + expect(transformToValue(result.getArrayValue())).toStrictEqual([ + [0.7853981633974483, ErrorType.VALUE, 0.8881737743776796, 0.7853981633974483, 0, 0], + [0, 1.550798992821746, 0.8635794970038352, ErrorType.VALUE, -0.982793723247329, ErrorType.NAME], + [ErrorType.NA, ErrorType.NA, ErrorType.NA, ErrorType.NA, ErrorType.NA, ErrorType.NA], + ]); }); }); }); diff --git a/packages/engine-formula/src/functions/math/atanh/__tests__/index.spec.ts b/packages/engine-formula/src/functions/math/atanh/__tests__/index.spec.ts index 86d9c05fa3..7c0e4e35e4 100644 --- a/packages/engine-formula/src/functions/math/atanh/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/math/atanh/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_MATH } from '../../function-names'; import { Atanh } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; describe('Test atanh function', () => { const testFunction = new Atanh(FUNCTION_NAMES_MATH.ATANH); diff --git a/packages/engine-formula/src/functions/math/base/__tests__/index.spec.ts b/packages/engine-formula/src/functions/math/base/__tests__/index.spec.ts index 5600273714..3827ff8ca2 100644 --- a/packages/engine-formula/src/functions/math/base/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/math/base/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_MATH } from '../../function-names'; import { Base } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; -import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; describe('Test base function', () => { const testFunction = new Base(FUNCTION_NAMES_MATH.BASE); diff --git a/packages/engine-formula/src/functions/math/ceiling-math/__tests__/index.spec.ts b/packages/engine-formula/src/functions/math/ceiling-math/__tests__/index.spec.ts index fafa3a7054..ff976d6d9a 100644 --- a/packages/engine-formula/src/functions/math/ceiling-math/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/math/ceiling-math/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/math/ceiling-precise/__tests__/index.spec.ts b/packages/engine-formula/src/functions/math/ceiling-precise/__tests__/index.spec.ts index 46341de98d..a0e10da102 100644 --- a/packages/engine-formula/src/functions/math/ceiling-precise/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/math/ceiling-precise/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/math/ceiling/__tests__/index.spec.ts b/packages/engine-formula/src/functions/math/ceiling/__tests__/index.spec.ts index e523f9f02e..18eeb98cbe 100644 --- a/packages/engine-formula/src/functions/math/ceiling/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/math/ceiling/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/math/combin/__tests__/index.spec.ts b/packages/engine-formula/src/functions/math/combin/__tests__/index.spec.ts index c0785cd3ca..f8e28aa004 100644 --- a/packages/engine-formula/src/functions/math/combin/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/math/combin/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/math/combina/__tests__/index.spec.ts b/packages/engine-formula/src/functions/math/combina/__tests__/index.spec.ts index 09dfa45850..7816fdb39a 100644 --- a/packages/engine-formula/src/functions/math/combina/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/math/combina/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/math/cos/__tests__/index.spec.ts b/packages/engine-formula/src/functions/math/cos/__tests__/index.spec.ts index 8a14f63881..802f722def 100644 --- a/packages/engine-formula/src/functions/math/cos/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/math/cos/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_MATH } from '../../function-names'; import { Cos } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; describe('Test cos function', () => { const testFunction = new Cos(FUNCTION_NAMES_MATH.COS); diff --git a/packages/engine-formula/src/functions/math/cosh/__tests__/index.spec.ts b/packages/engine-formula/src/functions/math/cosh/__tests__/index.spec.ts index 9618f27ae5..504ec6c98a 100644 --- a/packages/engine-formula/src/functions/math/cosh/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/math/cosh/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_MATH } from '../../function-names'; import { Cosh } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; describe('Test cosh function', () => { const testFunction = new Cosh(FUNCTION_NAMES_MATH.COSH); diff --git a/packages/engine-formula/src/functions/math/cot/__tests__/index.spec.ts b/packages/engine-formula/src/functions/math/cot/__tests__/index.spec.ts index 73dfd10913..c756fc96a6 100644 --- a/packages/engine-formula/src/functions/math/cot/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/math/cot/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_MATH } from '../../function-names'; import { Cot } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; describe('Test cot function', () => { const testFunction = new Cot(FUNCTION_NAMES_MATH.COT); diff --git a/packages/engine-formula/src/functions/math/coth/__tests__/index.spec.ts b/packages/engine-formula/src/functions/math/coth/__tests__/index.spec.ts index f2f0bc31ac..476cbf2966 100644 --- a/packages/engine-formula/src/functions/math/coth/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/math/coth/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_MATH } from '../../function-names'; import { Coth } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; describe('Test coth function', () => { const testFunction = new Coth(FUNCTION_NAMES_MATH.COTH); diff --git a/packages/engine-formula/src/functions/math/csc/__tests__/index.spec.ts b/packages/engine-formula/src/functions/math/csc/__tests__/index.spec.ts index 80190c1edd..a89518539b 100644 --- a/packages/engine-formula/src/functions/math/csc/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/math/csc/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_MATH } from '../../function-names'; import { Csc } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; describe('Test csc function', () => { const testFunction = new Csc(FUNCTION_NAMES_MATH.CSC); diff --git a/packages/engine-formula/src/functions/math/csch/__tests__/index.spec.ts b/packages/engine-formula/src/functions/math/csch/__tests__/index.spec.ts index 3ba74fb876..170e527223 100644 --- a/packages/engine-formula/src/functions/math/csch/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/math/csch/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_MATH } from '../../function-names'; import { Csch } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; describe('Test csch function', () => { const testFunction = new Csch(FUNCTION_NAMES_MATH.CSCH); diff --git a/packages/engine-formula/src/functions/math/decimal/__tests__/index.spec.ts b/packages/engine-formula/src/functions/math/decimal/__tests__/index.spec.ts index c0222585de..f29f31dae9 100644 --- a/packages/engine-formula/src/functions/math/decimal/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/math/decimal/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_MATH } from '../../function-names'; import { Decimal } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; -import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; describe('Test decimal function', () => { const testFunction = new Decimal(FUNCTION_NAMES_MATH.DECIMAL); diff --git a/packages/engine-formula/src/functions/math/degrees/__tests__/index.spec.ts b/packages/engine-formula/src/functions/math/degrees/__tests__/index.spec.ts index 14daf28cc8..000c3f5365 100644 --- a/packages/engine-formula/src/functions/math/degrees/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/math/degrees/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_MATH } from '../../function-names'; import { Degrees } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; describe('Test degrees function', () => { const testFunction = new Degrees(FUNCTION_NAMES_MATH.DEGREES); diff --git a/packages/engine-formula/src/functions/math/even/__tests__/index.spec.ts b/packages/engine-formula/src/functions/math/even/__tests__/index.spec.ts index 021c03d4a3..52f7abc880 100644 --- a/packages/engine-formula/src/functions/math/even/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/math/even/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_MATH } from '../../function-names'; import { Even } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; describe('Test even function', () => { const testFunction = new Even(FUNCTION_NAMES_MATH.EVEN); diff --git a/packages/engine-formula/src/functions/math/exp/__tests__/index.spec.ts b/packages/engine-formula/src/functions/math/exp/__tests__/index.spec.ts index f2e0ed2af7..59a4c12836 100644 --- a/packages/engine-formula/src/functions/math/exp/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/math/exp/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_MATH } from '../../function-names'; import { Exp } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; describe('Test exp function', () => { const testFunction = new Exp(FUNCTION_NAMES_MATH.EXP); diff --git a/packages/engine-formula/src/functions/math/fact/__tests__/index.spec.ts b/packages/engine-formula/src/functions/math/fact/__tests__/index.spec.ts index e727a94321..2f98e55226 100644 --- a/packages/engine-formula/src/functions/math/fact/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/math/fact/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/math/factdouble/__tests__/index.spec.ts b/packages/engine-formula/src/functions/math/factdouble/__tests__/index.spec.ts index 4bcdb3db79..9f170d8735 100644 --- a/packages/engine-formula/src/functions/math/factdouble/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/math/factdouble/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/math/floor-math/__tests__/index.spec.ts b/packages/engine-formula/src/functions/math/floor-math/__tests__/index.spec.ts index b5e767492f..38ab14fdd0 100644 --- a/packages/engine-formula/src/functions/math/floor-math/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/math/floor-math/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/math/floor-precise/__tests__/index.spec.ts b/packages/engine-formula/src/functions/math/floor-precise/__tests__/index.spec.ts index c3afed091d..b3ef6569d9 100644 --- a/packages/engine-formula/src/functions/math/floor-precise/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/math/floor-precise/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_MATH } from '../../function-names'; import { FloorPrecise } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; describe('Test floor.precise function', () => { const testFunction = new FloorPrecise(FUNCTION_NAMES_MATH.FLOOR_PRECISE); diff --git a/packages/engine-formula/src/functions/math/floor/__tests__/index.spec.ts b/packages/engine-formula/src/functions/math/floor/__tests__/index.spec.ts index e34e5b88eb..a2f19987c1 100644 --- a/packages/engine-formula/src/functions/math/floor/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/math/floor/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_MATH } from '../../function-names'; import { Floor } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; describe('Test floor function', () => { const testFunction = new Floor(FUNCTION_NAMES_MATH.FLOOR); diff --git a/packages/engine-formula/src/functions/math/gcd/__tests__/index.spec.ts b/packages/engine-formula/src/functions/math/gcd/__tests__/index.spec.ts index 90a48c38cc..94b85c58d8 100644 --- a/packages/engine-formula/src/functions/math/gcd/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/math/gcd/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/math/int/__tests__/index.spec.ts b/packages/engine-formula/src/functions/math/int/__tests__/index.spec.ts index 232105ee08..0dd2fa637b 100644 --- a/packages/engine-formula/src/functions/math/int/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/math/int/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/math/lcm/__tests__/index.spec.ts b/packages/engine-formula/src/functions/math/lcm/__tests__/index.spec.ts index 11b075c5fa..dc307b3efe 100644 --- a/packages/engine-formula/src/functions/math/lcm/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/math/lcm/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/math/log/__tests__/index.spec.ts b/packages/engine-formula/src/functions/math/log/__tests__/index.spec.ts index be1ef48434..38c6e6436f 100644 --- a/packages/engine-formula/src/functions/math/log/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/math/log/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_MATH } from '../../function-names'; import { Log } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; describe('Test log function', () => { const testFunction = new Log(FUNCTION_NAMES_MATH.LOG); diff --git a/packages/engine-formula/src/functions/math/mdeterm/__tests__/index.spec.ts b/packages/engine-formula/src/functions/math/mdeterm/__tests__/index.spec.ts index fb8e90d031..6b5bea4b72 100644 --- a/packages/engine-formula/src/functions/math/mdeterm/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/math/mdeterm/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/math/minverse/__tests__/index.spec.ts b/packages/engine-formula/src/functions/math/minverse/__tests__/index.spec.ts index 90b8a98e3c..243f11418c 100644 --- a/packages/engine-formula/src/functions/math/minverse/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/math/minverse/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/math/mmult/__tests__/index.spec.ts b/packages/engine-formula/src/functions/math/mmult/__tests__/index.spec.ts index 3e8cc84e79..b8436225ee 100644 --- a/packages/engine-formula/src/functions/math/mmult/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/math/mmult/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/math/mod/__tests__/index.spec.ts b/packages/engine-formula/src/functions/math/mod/__tests__/index.spec.ts index 5b1108f233..299b3aaecf 100644 --- a/packages/engine-formula/src/functions/math/mod/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/math/mod/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; diff --git a/packages/engine-formula/src/functions/math/mround/__tests__/index.spec.ts b/packages/engine-formula/src/functions/math/mround/__tests__/index.spec.ts index a787a9ee1a..2401a85404 100644 --- a/packages/engine-formula/src/functions/math/mround/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/math/mround/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_MATH } from '../../function-names'; import { Mround } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; describe('Test mround function', () => { const testFunction = new Mround(FUNCTION_NAMES_MATH.MROUND); diff --git a/packages/engine-formula/src/functions/math/multinomial/__tests__/index.spec.ts b/packages/engine-formula/src/functions/math/multinomial/__tests__/index.spec.ts index 91816667e1..0f01d4a5fe 100644 --- a/packages/engine-formula/src/functions/math/multinomial/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/math/multinomial/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/math/munit/__tests__/index.spec.ts b/packages/engine-formula/src/functions/math/munit/__tests__/index.spec.ts index 34d568b1f2..3252b167bf 100644 --- a/packages/engine-formula/src/functions/math/munit/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/math/munit/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/math/odd/__tests__/index.spec.ts b/packages/engine-formula/src/functions/math/odd/__tests__/index.spec.ts index 84ce991aed..972cdffc57 100644 --- a/packages/engine-formula/src/functions/math/odd/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/math/odd/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_MATH } from '../../function-names'; import { Odd } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; describe('Test odd function', () => { const testFunction = new Odd(FUNCTION_NAMES_MATH.ODD); diff --git a/packages/engine-formula/src/functions/math/pi/__tests__/index.spec.ts b/packages/engine-formula/src/functions/math/pi/__tests__/index.spec.ts index 991413d5c7..d661249891 100644 --- a/packages/engine-formula/src/functions/math/pi/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/math/pi/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { FUNCTION_NAMES_MATH } from '../../function-names'; import { Pi } from '../index'; diff --git a/packages/engine-formula/src/functions/math/power/__tests__/index.spec.ts b/packages/engine-formula/src/functions/math/power/__tests__/index.spec.ts index 77f00911f9..0a728b96f1 100644 --- a/packages/engine-formula/src/functions/math/power/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/math/power/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; diff --git a/packages/engine-formula/src/functions/math/product/__tests__/index.spec.ts b/packages/engine-formula/src/functions/math/product/__tests__/index.spec.ts index 705b857add..3d75fc7e6f 100644 --- a/packages/engine-formula/src/functions/math/product/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/math/product/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/math/quotient/__tests__/index.spec.ts b/packages/engine-formula/src/functions/math/quotient/__tests__/index.spec.ts index 2b4b76d976..6b71a0be29 100644 --- a/packages/engine-formula/src/functions/math/quotient/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/math/quotient/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/math/radians/__tests__/index.spec.ts b/packages/engine-formula/src/functions/math/radians/__tests__/index.spec.ts index bde45d83f7..b6a0744472 100644 --- a/packages/engine-formula/src/functions/math/radians/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/math/radians/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_MATH } from '../../function-names'; import { Radians } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; describe('Test radians function', () => { const testFunction = new Radians(FUNCTION_NAMES_MATH.RADIANS); diff --git a/packages/engine-formula/src/functions/math/roman/__tests__/index.spec.ts b/packages/engine-formula/src/functions/math/roman/__tests__/index.spec.ts index 03fc4a172f..346fb4d393 100644 --- a/packages/engine-formula/src/functions/math/roman/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/math/roman/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/math/round/__tests__/index.spec.ts b/packages/engine-formula/src/functions/math/round/__tests__/index.spec.ts index e951f1e642..b4574c8850 100644 --- a/packages/engine-formula/src/functions/math/round/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/math/round/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/math/roundbank/__tests__/index.spec.ts b/packages/engine-formula/src/functions/math/roundbank/__tests__/index.spec.ts index d6f53445e8..84d0b45d21 100644 --- a/packages/engine-formula/src/functions/math/roundbank/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/math/roundbank/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/math/rounddown/__tests__/index.spec.ts b/packages/engine-formula/src/functions/math/rounddown/__tests__/index.spec.ts index 62257d41b2..0b47ad54bb 100644 --- a/packages/engine-formula/src/functions/math/rounddown/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/math/rounddown/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/math/roundup/__tests__/index.spec.ts b/packages/engine-formula/src/functions/math/roundup/__tests__/index.spec.ts index b14ad6b372..13a6dd86a4 100644 --- a/packages/engine-formula/src/functions/math/roundup/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/math/roundup/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_MATH } from '../../function-names'; import { Roundup } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; describe('Test roundup function', () => { const testFunction = new Roundup(FUNCTION_NAMES_MATH.ROUNDUP); diff --git a/packages/engine-formula/src/functions/math/sec/__tests__/index.spec.ts b/packages/engine-formula/src/functions/math/sec/__tests__/index.spec.ts index d6a42c567b..62cfa264d8 100644 --- a/packages/engine-formula/src/functions/math/sec/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/math/sec/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_MATH } from '../../function-names'; import { Sec } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; describe('Test sec function', () => { const testFunction = new Sec(FUNCTION_NAMES_MATH.SEC); diff --git a/packages/engine-formula/src/functions/math/sech/__tests__/index.spec.ts b/packages/engine-formula/src/functions/math/sech/__tests__/index.spec.ts index a74b1ef591..3b1517f4ec 100644 --- a/packages/engine-formula/src/functions/math/sech/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/math/sech/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_MATH } from '../../function-names'; import { Sech } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; describe('Test sech function', () => { const testFunction = new Sech(FUNCTION_NAMES_MATH.SECH); diff --git a/packages/engine-formula/src/functions/math/seriessum/__tests__/index.spec.ts b/packages/engine-formula/src/functions/math/seriessum/__tests__/index.spec.ts index 6e3c177b0a..480b95f1a8 100644 --- a/packages/engine-formula/src/functions/math/seriessum/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/math/seriessum/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/math/sign/__tests__/index.spec.ts b/packages/engine-formula/src/functions/math/sign/__tests__/index.spec.ts index ed7cd999b0..8e8d3fe301 100644 --- a/packages/engine-formula/src/functions/math/sign/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/math/sign/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/math/sin/__tests__/index.spec.ts b/packages/engine-formula/src/functions/math/sin/__tests__/index.spec.ts index 15fa80f58f..32f83d6134 100644 --- a/packages/engine-formula/src/functions/math/sin/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/math/sin/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_MATH } from '../../function-names'; import { Sin } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; describe('Test sin function', () => { const testFunction = new Sin(FUNCTION_NAMES_MATH.SIN); diff --git a/packages/engine-formula/src/functions/math/sinh/__tests__/index.spec.ts b/packages/engine-formula/src/functions/math/sinh/__tests__/index.spec.ts index bc29253581..7398d2cd7a 100644 --- a/packages/engine-formula/src/functions/math/sinh/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/math/sinh/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_MATH } from '../../function-names'; import { Sinh } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; describe('Test sinh function', () => { const testFunction = new Sinh(FUNCTION_NAMES_MATH.SINH); diff --git a/packages/engine-formula/src/functions/math/sqrt/__tests__/index.spec.ts b/packages/engine-formula/src/functions/math/sqrt/__tests__/index.spec.ts index a131238ad4..b3ee75c976 100644 --- a/packages/engine-formula/src/functions/math/sqrt/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/math/sqrt/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_MATH } from '../../function-names'; import { Sqrt } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; describe('Test sqrt function', () => { const testFunction = new Sqrt(FUNCTION_NAMES_MATH.SQRT); diff --git a/packages/engine-formula/src/functions/math/sqrtpi/__tests__/index.spec.ts b/packages/engine-formula/src/functions/math/sqrtpi/__tests__/index.spec.ts index 2a830846c6..cfc1419595 100644 --- a/packages/engine-formula/src/functions/math/sqrtpi/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/math/sqrtpi/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_MATH } from '../../function-names'; import { Sqrtpi } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; describe('Test sqrtpi function', () => { const testFunction = new Sqrtpi(FUNCTION_NAMES_MATH.SQRTPI); diff --git a/packages/engine-formula/src/functions/math/sum/__tests__/index.spec.ts b/packages/engine-formula/src/functions/math/sum/__tests__/index.spec.ts index 9a860a9017..c3fadcd5db 100644 --- a/packages/engine-formula/src/functions/math/sum/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/math/sum/__tests__/index.spec.ts @@ -15,14 +15,13 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { stripErrorMargin } from '../../../../engine/utils/math-kit'; +import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_MATH } from '../../function-names'; import { Sum } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; -import { stripErrorMargin } from '../../../../engine/utils/math-kit'; describe('Test sum function', () => { const testFunction = new Sum(FUNCTION_NAMES_MATH.SUM); diff --git a/packages/engine-formula/src/functions/math/sumifs/__tests__/index.spec.ts b/packages/engine-formula/src/functions/math/sumifs/__tests__/index.spec.ts index a3c7e37e41..1e3621c187 100644 --- a/packages/engine-formula/src/functions/math/sumifs/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/math/sumifs/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValue } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_MATH } from '../../function-names'; import { Sumifs } from '../index'; -import { NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; -import { ErrorType } from '../../../../basics/error-type'; describe('Test sumifs function', () => { const testFunction = new Sumifs(FUNCTION_NAMES_MATH.SUMIF); diff --git a/packages/engine-formula/src/functions/math/sumproduct/__tests__/index.spec.ts b/packages/engine-formula/src/functions/math/sumproduct/__tests__/index.spec.ts index 6ff7229504..fcc4c6df8c 100644 --- a/packages/engine-formula/src/functions/math/sumproduct/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/math/sumproduct/__tests__/index.spec.ts @@ -15,10 +15,9 @@ */ import { describe, expect, it } from 'vitest'; - -import { FUNCTION_NAMES_MATH } from '../../function-names'; -import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorType } from '../../../../basics/error-type'; +import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { FUNCTION_NAMES_MATH } from '../../function-names'; import { Sumproduct } from '../index'; describe('Test sumproduct function', () => { diff --git a/packages/engine-formula/src/functions/math/sumsq/__tests__/index.spec.ts b/packages/engine-formula/src/functions/math/sumsq/__tests__/index.spec.ts index 80c87638f9..3065018efe 100644 --- a/packages/engine-formula/src/functions/math/sumsq/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/math/sumsq/__tests__/index.spec.ts @@ -15,14 +15,13 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { stripErrorMargin } from '../../../../engine/utils/math-kit'; +import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_MATH } from '../../function-names'; import { Sumsq } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; -import { stripErrorMargin } from '../../../../engine/utils/math-kit'; describe('Test sumsq function', () => { const testFunction = new Sumsq(FUNCTION_NAMES_MATH.SUMSQ); diff --git a/packages/engine-formula/src/functions/math/sumx2my2/__tests__/index.spec.ts b/packages/engine-formula/src/functions/math/sumx2my2/__tests__/index.spec.ts index eb051f24d4..a8140ec33a 100644 --- a/packages/engine-formula/src/functions/math/sumx2my2/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/math/sumx2my2/__tests__/index.spec.ts @@ -15,14 +15,13 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { stripErrorMargin } from '../../../../engine/utils/math-kit'; +import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_MATH } from '../../function-names'; import { Sumx2my2 } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; -import { stripErrorMargin } from '../../../../engine/utils/math-kit'; describe('Test sumx2my2 function', () => { const testFunction = new Sumx2my2(FUNCTION_NAMES_MATH.SUMX2MY2); diff --git a/packages/engine-formula/src/functions/math/sumx2py2/__tests__/index.spec.ts b/packages/engine-formula/src/functions/math/sumx2py2/__tests__/index.spec.ts index 9e15ed1a19..37b15648fc 100644 --- a/packages/engine-formula/src/functions/math/sumx2py2/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/math/sumx2py2/__tests__/index.spec.ts @@ -15,14 +15,13 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { stripErrorMargin } from '../../../../engine/utils/math-kit'; +import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_MATH } from '../../function-names'; import { Sumx2py2 } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; -import { stripErrorMargin } from '../../../../engine/utils/math-kit'; describe('Test sumx2py2 function', () => { const testFunction = new Sumx2py2(FUNCTION_NAMES_MATH.SUMX2PY2); diff --git a/packages/engine-formula/src/functions/math/sumxmy2/__tests__/index.spec.ts b/packages/engine-formula/src/functions/math/sumxmy2/__tests__/index.spec.ts index bb4c8b332d..2fb51ca005 100644 --- a/packages/engine-formula/src/functions/math/sumxmy2/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/math/sumxmy2/__tests__/index.spec.ts @@ -15,14 +15,13 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { stripErrorMargin } from '../../../../engine/utils/math-kit'; +import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_MATH } from '../../function-names'; import { Sumxmy2 } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; -import { stripErrorMargin } from '../../../../engine/utils/math-kit'; describe('Test sumxmy2 function', () => { const testFunction = new Sumxmy2(FUNCTION_NAMES_MATH.SUMXMY2); diff --git a/packages/engine-formula/src/functions/math/tan/__tests__/index.spec.ts b/packages/engine-formula/src/functions/math/tan/__tests__/index.spec.ts index ef197ecfa4..bf78ff9bd4 100644 --- a/packages/engine-formula/src/functions/math/tan/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/math/tan/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_MATH } from '../../function-names'; import { Tan } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; describe('Test tan function', () => { const testFunction = new Tan(FUNCTION_NAMES_MATH.TAN); diff --git a/packages/engine-formula/src/functions/math/tanh/__tests__/index.spec.ts b/packages/engine-formula/src/functions/math/tanh/__tests__/index.spec.ts index 4e1cc34b31..51847aa146 100644 --- a/packages/engine-formula/src/functions/math/tanh/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/math/tanh/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_MATH } from '../../function-names'; import { Tanh } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; describe('Test tanh function', () => { const testFunction = new Tanh(FUNCTION_NAMES_MATH.TANH); diff --git a/packages/engine-formula/src/functions/math/trunc/__tests__/index.spec.ts b/packages/engine-formula/src/functions/math/trunc/__tests__/index.spec.ts index e056b9b537..a777480dbf 100644 --- a/packages/engine-formula/src/functions/math/trunc/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/math/trunc/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/statistical/avedev/__tests__/index.spec.ts b/packages/engine-formula/src/functions/statistical/avedev/__tests__/index.spec.ts index e3ce94aad0..ee6d013335 100644 --- a/packages/engine-formula/src/functions/statistical/avedev/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/statistical/avedev/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_STATISTICAL } from '../../function-names'; import { Avedev } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; describe('Test avedev function', () => { const testFunction = new Avedev(FUNCTION_NAMES_STATISTICAL.AVEDEV); diff --git a/packages/engine-formula/src/functions/statistical/average-weighted/__tests__/index.spec.ts b/packages/engine-formula/src/functions/statistical/average-weighted/__tests__/index.spec.ts index 31ea5679a9..ce5e2aa4bc 100644 --- a/packages/engine-formula/src/functions/statistical/average-weighted/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/statistical/average-weighted/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { NullValueObject, NumberValueObject } from '../../../../engine/value-object/primitive-object'; diff --git a/packages/engine-formula/src/functions/statistical/average/__tests__/index.spec.ts b/packages/engine-formula/src/functions/statistical/average/__tests__/index.spec.ts index 4ac304a767..4d474119c0 100644 --- a/packages/engine-formula/src/functions/statistical/average/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/statistical/average/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_STATISTICAL } from '../../function-names'; import { Average } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; describe('Test average function', () => { const testFunction = new Average(FUNCTION_NAMES_STATISTICAL.AVERAGE); diff --git a/packages/engine-formula/src/functions/statistical/averagea/__tests__/index.spec.ts b/packages/engine-formula/src/functions/statistical/averagea/__tests__/index.spec.ts index f5e5cc6639..a4b8f4c730 100644 --- a/packages/engine-formula/src/functions/statistical/averagea/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/statistical/averagea/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_STATISTICAL } from '../../function-names'; import { Averagea } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; describe('Test averagea function', () => { const testFunction = new Averagea(FUNCTION_NAMES_STATISTICAL.AVERAGEA); diff --git a/packages/engine-formula/src/functions/statistical/beta-dist/__tests__/index.spec.ts b/packages/engine-formula/src/functions/statistical/beta-dist/__tests__/index.spec.ts index 38f675c0cc..7f2766afe5 100644 --- a/packages/engine-formula/src/functions/statistical/beta-dist/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/statistical/beta-dist/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/statistical/beta-inv/__tests__/index.spec.ts b/packages/engine-formula/src/functions/statistical/beta-inv/__tests__/index.spec.ts index 18b6eeccf4..51508c798d 100644 --- a/packages/engine-formula/src/functions/statistical/beta-inv/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/statistical/beta-inv/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/statistical/binom-dist-range/__tests__/index.spec.ts b/packages/engine-formula/src/functions/statistical/binom-dist-range/__tests__/index.spec.ts index 6199915b59..ee7c36a15c 100644 --- a/packages/engine-formula/src/functions/statistical/binom-dist-range/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/statistical/binom-dist-range/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/statistical/binom-dist/__tests__/index.spec.ts b/packages/engine-formula/src/functions/statistical/binom-dist/__tests__/index.spec.ts index df0616cbf3..0636f69db9 100644 --- a/packages/engine-formula/src/functions/statistical/binom-dist/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/statistical/binom-dist/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/statistical/binom-inv/__tests__/index.spec.ts b/packages/engine-formula/src/functions/statistical/binom-inv/__tests__/index.spec.ts index e559ae7e6a..6a4214fc0d 100644 --- a/packages/engine-formula/src/functions/statistical/binom-inv/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/statistical/binom-inv/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/statistical/chisq-dist-rt/__tests__/index.spec.ts b/packages/engine-formula/src/functions/statistical/chisq-dist-rt/__tests__/index.spec.ts index edd19e0926..27cb782f8b 100644 --- a/packages/engine-formula/src/functions/statistical/chisq-dist-rt/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/statistical/chisq-dist-rt/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/statistical/chisq-dist/__tests__/index.spec.ts b/packages/engine-formula/src/functions/statistical/chisq-dist/__tests__/index.spec.ts index b294fb1ef8..eab08d50bf 100644 --- a/packages/engine-formula/src/functions/statistical/chisq-dist/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/statistical/chisq-dist/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/statistical/chisq-inv-rt/__tests__/index.spec.ts b/packages/engine-formula/src/functions/statistical/chisq-inv-rt/__tests__/index.spec.ts index f6bf9dcfa0..8b9ee2444d 100644 --- a/packages/engine-formula/src/functions/statistical/chisq-inv-rt/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/statistical/chisq-inv-rt/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/statistical/chisq-inv/__tests__/index.spec.ts b/packages/engine-formula/src/functions/statistical/chisq-inv/__tests__/index.spec.ts index 0df14f26e7..128ca2b642 100644 --- a/packages/engine-formula/src/functions/statistical/chisq-inv/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/statistical/chisq-inv/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/statistical/chisq-test/__tests__/index.spec.ts b/packages/engine-formula/src/functions/statistical/chisq-test/__tests__/index.spec.ts index 23ba3a0769..2764e27db8 100644 --- a/packages/engine-formula/src/functions/statistical/chisq-test/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/statistical/chisq-test/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/statistical/confidence-norm/__tests__/index.spec.ts b/packages/engine-formula/src/functions/statistical/confidence-norm/__tests__/index.spec.ts index da8e763bab..e3b926fdc4 100644 --- a/packages/engine-formula/src/functions/statistical/confidence-norm/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/statistical/confidence-norm/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/statistical/confidence-t/__tests__/index.spec.ts b/packages/engine-formula/src/functions/statistical/confidence-t/__tests__/index.spec.ts index 103d7d8e93..d028432852 100644 --- a/packages/engine-formula/src/functions/statistical/confidence-t/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/statistical/confidence-t/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/statistical/correl/__tests__/index.spec.ts b/packages/engine-formula/src/functions/statistical/correl/__tests__/index.spec.ts index f87ad58d80..8b65fda4fb 100644 --- a/packages/engine-formula/src/functions/statistical/correl/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/statistical/correl/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/statistical/count/__tests__/index.spec.ts b/packages/engine-formula/src/functions/statistical/count/__tests__/index.spec.ts index 079797f857..aecf62c09c 100644 --- a/packages/engine-formula/src/functions/statistical/count/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/statistical/count/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_STATISTICAL } from '../../function-names'; import { Count } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; describe('Test count function', () => { const testFunction = new Count(FUNCTION_NAMES_STATISTICAL.COUNT); diff --git a/packages/engine-formula/src/functions/statistical/counta/__tests__/index.spec.ts b/packages/engine-formula/src/functions/statistical/counta/__tests__/index.spec.ts index f91064f223..4575190abe 100644 --- a/packages/engine-formula/src/functions/statistical/counta/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/statistical/counta/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_STATISTICAL } from '../../function-names'; import { Counta } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; describe('Test counta function', () => { const testFunction = new Counta(FUNCTION_NAMES_STATISTICAL.COUNTA); diff --git a/packages/engine-formula/src/functions/statistical/countblank/__tests__/index.spec.ts b/packages/engine-formula/src/functions/statistical/countblank/__tests__/index.spec.ts index 4e7f24df74..8c407d38ff 100644 --- a/packages/engine-formula/src/functions/statistical/countblank/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/statistical/countblank/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_STATISTICAL } from '../../function-names'; import { Countblank } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; describe('Test countblank function', () => { const testFunction = new Countblank(FUNCTION_NAMES_STATISTICAL.COUNTBLANK); diff --git a/packages/engine-formula/src/functions/statistical/countif/__tests__/index.spec.ts b/packages/engine-formula/src/functions/statistical/countif/__tests__/index.spec.ts index bc66d7ff85..d64a26f81e 100644 --- a/packages/engine-formula/src/functions/statistical/countif/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/statistical/countif/__tests__/index.spec.ts @@ -15,12 +15,11 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_STATISTICAL } from '../../function-names'; import { Countif } from '../index'; -import { StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ErrorType } from '../../../../basics/error-type'; describe('Test countif function', () => { const testFunction = new Countif(FUNCTION_NAMES_STATISTICAL.COUNTIF); diff --git a/packages/engine-formula/src/functions/statistical/covariance-p/__tests__/index.spec.ts b/packages/engine-formula/src/functions/statistical/covariance-p/__tests__/index.spec.ts index fc6de31f87..405bf32996 100644 --- a/packages/engine-formula/src/functions/statistical/covariance-p/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/statistical/covariance-p/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/statistical/covariance-s/__tests__/index.spec.ts b/packages/engine-formula/src/functions/statistical/covariance-s/__tests__/index.spec.ts index db504f1f3b..ea1121523e 100644 --- a/packages/engine-formula/src/functions/statistical/covariance-s/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/statistical/covariance-s/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/statistical/devsq/__tests__/index.spec.ts b/packages/engine-formula/src/functions/statistical/devsq/__tests__/index.spec.ts index 3cc194f619..6c2d20101b 100644 --- a/packages/engine-formula/src/functions/statistical/devsq/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/statistical/devsq/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/statistical/expon-dist/__tests__/index.spec.ts b/packages/engine-formula/src/functions/statistical/expon-dist/__tests__/index.spec.ts index 57ca7c65e6..cff3828ece 100644 --- a/packages/engine-formula/src/functions/statistical/expon-dist/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/statistical/expon-dist/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/statistical/f-dist-rt/__tests__/index.spec.ts b/packages/engine-formula/src/functions/statistical/f-dist-rt/__tests__/index.spec.ts index 90fca253ee..0bc12c9b26 100644 --- a/packages/engine-formula/src/functions/statistical/f-dist-rt/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/statistical/f-dist-rt/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/statistical/f-dist/__tests__/index.spec.ts b/packages/engine-formula/src/functions/statistical/f-dist/__tests__/index.spec.ts index d8c8cd6fa7..da3bc8809c 100644 --- a/packages/engine-formula/src/functions/statistical/f-dist/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/statistical/f-dist/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/statistical/f-inv-rt/__tests__/index.spec.ts b/packages/engine-formula/src/functions/statistical/f-inv-rt/__tests__/index.spec.ts index a2454c090e..63fa2ed71e 100644 --- a/packages/engine-formula/src/functions/statistical/f-inv-rt/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/statistical/f-inv-rt/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/statistical/f-inv/__tests__/index.spec.ts b/packages/engine-formula/src/functions/statistical/f-inv/__tests__/index.spec.ts index bb5eb44f94..030cd958be 100644 --- a/packages/engine-formula/src/functions/statistical/f-inv/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/statistical/f-inv/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/statistical/f-test/__tests__/index.spec.ts b/packages/engine-formula/src/functions/statistical/f-test/__tests__/index.spec.ts index ab22fff323..36662b1111 100644 --- a/packages/engine-formula/src/functions/statistical/f-test/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/statistical/f-test/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/statistical/fisher/__tests__/index.spec.ts b/packages/engine-formula/src/functions/statistical/fisher/__tests__/index.spec.ts index e68ff62e81..78392c5add 100644 --- a/packages/engine-formula/src/functions/statistical/fisher/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/statistical/fisher/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/statistical/fisherinv/__tests__/index.spec.ts b/packages/engine-formula/src/functions/statistical/fisherinv/__tests__/index.spec.ts index 8f5ea8eb94..baa027d810 100644 --- a/packages/engine-formula/src/functions/statistical/fisherinv/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/statistical/fisherinv/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/statistical/forecast/__tests__/index.spec.ts b/packages/engine-formula/src/functions/statistical/forecast/__tests__/index.spec.ts index 71306c4013..e544bd21fb 100644 --- a/packages/engine-formula/src/functions/statistical/forecast/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/statistical/forecast/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/statistical/frequency/__tests__/index.spec.ts b/packages/engine-formula/src/functions/statistical/frequency/__tests__/index.spec.ts index f820e04055..353127f278 100644 --- a/packages/engine-formula/src/functions/statistical/frequency/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/statistical/frequency/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/statistical/gamma-dist/__tests__/index.spec.ts b/packages/engine-formula/src/functions/statistical/gamma-dist/__tests__/index.spec.ts index 6df086e258..70c15a0d35 100644 --- a/packages/engine-formula/src/functions/statistical/gamma-dist/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/statistical/gamma-dist/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/statistical/gamma-inv/__tests__/index.spec.ts b/packages/engine-formula/src/functions/statistical/gamma-inv/__tests__/index.spec.ts index ad08e0d603..283a1992b0 100644 --- a/packages/engine-formula/src/functions/statistical/gamma-inv/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/statistical/gamma-inv/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/statistical/gamma/__tests__/index.spec.ts b/packages/engine-formula/src/functions/statistical/gamma/__tests__/index.spec.ts index 70a4a4f309..645caf726b 100644 --- a/packages/engine-formula/src/functions/statistical/gamma/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/statistical/gamma/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/statistical/gammaln/__tests__/index.spec.ts b/packages/engine-formula/src/functions/statistical/gammaln/__tests__/index.spec.ts index 5196a8d99a..814cfae864 100644 --- a/packages/engine-formula/src/functions/statistical/gammaln/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/statistical/gammaln/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/statistical/gauss/__tests__/index.spec.ts b/packages/engine-formula/src/functions/statistical/gauss/__tests__/index.spec.ts index 447793a6e7..74eb6e1c02 100644 --- a/packages/engine-formula/src/functions/statistical/gauss/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/statistical/gauss/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/statistical/geomean/__tests__/index.spec.ts b/packages/engine-formula/src/functions/statistical/geomean/__tests__/index.spec.ts index 2ba1165baa..1538129e83 100644 --- a/packages/engine-formula/src/functions/statistical/geomean/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/statistical/geomean/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/statistical/growth/__tests__/index.spec.ts b/packages/engine-formula/src/functions/statistical/growth/__tests__/index.spec.ts index 848ab8968b..13b52c449d 100644 --- a/packages/engine-formula/src/functions/statistical/growth/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/statistical/growth/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; @@ -93,7 +92,7 @@ describe('Test growth function', () => { [69841.30085621751], [102197.07337883243], [149542.48674004586], - [218821.87621459534], + [218821.87621459537], ]); const knownYs2 = ArrayValueObject.create({ @@ -337,7 +336,7 @@ describe('Test growth function', () => { const constb = BooleanValueObject.create(false); const result = testFunction.calculate(knownYs, knownXs, newXs, constb); expect(getObjectValue(result)).toStrictEqual([ - [1806822.1964432173, 4216666.612455025], + [1806822.1964432176, 4216666.612455025], ]); const knownYs2 = ArrayValueObject.create({ @@ -466,7 +465,7 @@ describe('Test growth function', () => { const constb = BooleanValueObject.create(true); const result = testFunction.calculate(knownYs, knownXs, newXs, constb); expect(getObjectValue(result)).toStrictEqual([ - [3.2237097954706266, 5.583629154612603, 9.671129386411891, 16.750887463837827, 29.013388159235713, 50.252662391513546, 87.04016447770724], + [3.2237097954706266, 5.583629154612603, 9.671129386411893, 16.75088746383783, 29.013388159235713, 50.252662391513546, 87.04016447770724], ]); const newXs2 = ArrayValueObject.create({ @@ -559,15 +558,15 @@ describe('Test growth function', () => { expect(getObjectValue(result3)).toStrictEqual([ [1.1161231740339035], [1.7617295898720453], - [2.780778340631825], - [4.38928211467954], - [6.92820323027555], + [2.780778340631826], + [4.389282114679541], + [6.928203230275551], [10.935729065914696], [17.261354239796905], [27.245952089325364], [43.00600607235713], [67.88225099390954], - [107.14782470725653], + [107.14782470725655], ]); const result4 = testFunction.calculate(knownYs2, knownXs2, newXs3, constb2); @@ -575,14 +574,14 @@ describe('Test growth function', () => { [1.1161231740339097], [1.761729589872056], [2.7807783406318434], - [4.38928211467957], + [4.389282114679571], [6.928203230275601], [10.935729065914781], [17.261354239797047], [27.2459520893256], [43.00600607235752], [67.88225099391019], - [107.14782470725761], + [107.1478247072576], ]); const knownYs3 = ArrayValueObject.create({ @@ -622,7 +621,7 @@ describe('Test growth function', () => { }); const result5 = testFunction.calculate(knownYs3, knownXs3, newXs4, constb); expect(getObjectValue(result5)).toStrictEqual([ - [1.1161231740339035, 1.7617295898720453, 2.780778340631825, 4.38928211467954, 6.92820323027555, 10.935729065914696, 17.261354239796905], + [1.1161231740339035, 1.7617295898720453, 2.780778340631826, 4.389282114679541, 6.928203230275551, 10.935729065914696, 17.261354239796905], ]); }); }); diff --git a/packages/engine-formula/src/functions/statistical/harmean/__tests__/index.spec.ts b/packages/engine-formula/src/functions/statistical/harmean/__tests__/index.spec.ts index fa0514133c..917f9dff37 100644 --- a/packages/engine-formula/src/functions/statistical/harmean/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/statistical/harmean/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/statistical/hypgeom-dist/__tests__/index.spec.ts b/packages/engine-formula/src/functions/statistical/hypgeom-dist/__tests__/index.spec.ts index a00b091e44..801b16e422 100644 --- a/packages/engine-formula/src/functions/statistical/hypgeom-dist/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/statistical/hypgeom-dist/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/statistical/intercept/__tests__/index.spec.ts b/packages/engine-formula/src/functions/statistical/intercept/__tests__/index.spec.ts index dc92712aea..dedbc36e22 100644 --- a/packages/engine-formula/src/functions/statistical/intercept/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/statistical/intercept/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/statistical/kurt/__tests__/index.spec.ts b/packages/engine-formula/src/functions/statistical/kurt/__tests__/index.spec.ts index af9ff01d62..7925cd9838 100644 --- a/packages/engine-formula/src/functions/statistical/kurt/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/statistical/kurt/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/statistical/large/__tests__/index.spec.ts b/packages/engine-formula/src/functions/statistical/large/__tests__/index.spec.ts index 5002f991cc..170645dfa9 100644 --- a/packages/engine-formula/src/functions/statistical/large/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/statistical/large/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/statistical/linest/__tests__/index.spec.ts b/packages/engine-formula/src/functions/statistical/linest/__tests__/index.spec.ts index 62df5373f0..8b7eb96e3d 100644 --- a/packages/engine-formula/src/functions/statistical/linest/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/statistical/linest/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { BooleanValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; diff --git a/packages/engine-formula/src/functions/statistical/logest/__tests__/index.spec.ts b/packages/engine-formula/src/functions/statistical/logest/__tests__/index.spec.ts index 3f27183736..46f7e6b04f 100644 --- a/packages/engine-formula/src/functions/statistical/logest/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/statistical/logest/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { BooleanValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; @@ -61,10 +60,10 @@ describe('Test logest function', () => { const result = testFunction.calculate(knownYs, knownXs, constb, stats); expect(getObjectValue(result)).toStrictEqual([ [1.5784365299976528, 0.11391384443661104], - [0.06522558747032602, 0.4301922951970874], - [0.9607604883077162, 0.1458488474560075], - [48.96903385760741, 2], - [1.0416637206477855, 0.0425437726084915], + [0.06522558747032604, 0.4301922951970876], + [0.960760488307716, 0.1458488474560076], + [48.96903385760735, 2], + [1.0416637206477852, 0.04254377260849154], ]); const constb2 = BooleanValueObject.create(false); @@ -149,10 +148,10 @@ describe('Test logest function', () => { const result = testFunction.calculate(knownYs, knownXs, constb, stats); expect(getObjectValue(result)).toStrictEqual([ [1.0022562631143823, 0.9559927432167645, 1.3220173520215017, 0.9979673263194307, 1251594.7569785423], - [0.01111894485530442, 0.4652432570026924, 0.3493511018583655, 0.004803045273340239, 10.832016475252525], - [0.12342791182815234, 0.8485606231387034, ErrorType.NA, ErrorType.NA, ErrorType.NA], - [0.21121122864903766, 6, ErrorType.NA, ErrorType.NA, ErrorType.NA], - [0.6083349157737983, 4.320330786849268, ErrorType.NA, ErrorType.NA, ErrorType.NA], + [0.011118944855304421, 0.46524325700269253, 0.3493511018583656, 0.004803045273340241, 10.832016475252527], + [0.12342791182815198, 0.8485606231387036, ErrorType.NA, ErrorType.NA, ErrorType.NA], + [0.21121122864903694, 6, ErrorType.NA, ErrorType.NA, ErrorType.NA], + [0.6083349157737965, 4.3203307868492695, ErrorType.NA, ErrorType.NA, ErrorType.NA], ]); const constb2 = BooleanValueObject.create(false); diff --git a/packages/engine-formula/src/functions/statistical/lognorm-dist/__tests__/index.spec.ts b/packages/engine-formula/src/functions/statistical/lognorm-dist/__tests__/index.spec.ts index 129b939488..c0e8cd55f9 100644 --- a/packages/engine-formula/src/functions/statistical/lognorm-dist/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/statistical/lognorm-dist/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/statistical/lognorm-inv/__tests__/index.spec.ts b/packages/engine-formula/src/functions/statistical/lognorm-inv/__tests__/index.spec.ts index ba3d7f3b70..8ea70b46e7 100644 --- a/packages/engine-formula/src/functions/statistical/lognorm-inv/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/statistical/lognorm-inv/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/statistical/marginoferror/__tests__/index.spec.ts b/packages/engine-formula/src/functions/statistical/marginoferror/__tests__/index.spec.ts index 7af8946799..0f4dab56a2 100644 --- a/packages/engine-formula/src/functions/statistical/marginoferror/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/statistical/marginoferror/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; diff --git a/packages/engine-formula/src/functions/statistical/max/__tests__/index.spec.ts b/packages/engine-formula/src/functions/statistical/max/__tests__/index.spec.ts index a09fe8e855..e2047035bb 100644 --- a/packages/engine-formula/src/functions/statistical/max/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/statistical/max/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_STATISTICAL } from '../../function-names'; import { Max } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; describe('Test max function', () => { const testFunction = new Max(FUNCTION_NAMES_STATISTICAL.MAX); diff --git a/packages/engine-formula/src/functions/statistical/maxa/__tests__/index.spec.ts b/packages/engine-formula/src/functions/statistical/maxa/__tests__/index.spec.ts index 652bf031d7..f169f0c9b9 100644 --- a/packages/engine-formula/src/functions/statistical/maxa/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/statistical/maxa/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_STATISTICAL } from '../../function-names'; import { Maxa } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; describe('Test maxa function', () => { const testFunction = new Maxa(FUNCTION_NAMES_STATISTICAL.MAXA); diff --git a/packages/engine-formula/src/functions/statistical/median/__tests__/index.spec.ts b/packages/engine-formula/src/functions/statistical/median/__tests__/index.spec.ts index 326acbcc9b..146718f2be 100644 --- a/packages/engine-formula/src/functions/statistical/median/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/statistical/median/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/statistical/min/__tests__/index.spec.ts b/packages/engine-formula/src/functions/statistical/min/__tests__/index.spec.ts index 4b4833c7a7..3bfdb7be27 100644 --- a/packages/engine-formula/src/functions/statistical/min/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/statistical/min/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_STATISTICAL } from '../../function-names'; import { Min } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; describe('Test min function', () => { const testFunction = new Min(FUNCTION_NAMES_STATISTICAL.MIN); diff --git a/packages/engine-formula/src/functions/statistical/mina/__tests__/index.spec.ts b/packages/engine-formula/src/functions/statistical/mina/__tests__/index.spec.ts index 3bdbc7d47b..55bed3a0a6 100644 --- a/packages/engine-formula/src/functions/statistical/mina/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/statistical/mina/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_STATISTICAL } from '../../function-names'; import { Mina } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; describe('Test mina function', () => { const testFunction = new Mina(FUNCTION_NAMES_STATISTICAL.MINA); diff --git a/packages/engine-formula/src/functions/statistical/mode-mult/__tests__/index.spec.ts b/packages/engine-formula/src/functions/statistical/mode-mult/__tests__/index.spec.ts index a05ea84e0f..05474897e1 100644 --- a/packages/engine-formula/src/functions/statistical/mode-mult/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/statistical/mode-mult/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/statistical/mode-sngl/__tests__/index.spec.ts b/packages/engine-formula/src/functions/statistical/mode-sngl/__tests__/index.spec.ts index af1c9a91d0..2cdab5e456 100644 --- a/packages/engine-formula/src/functions/statistical/mode-sngl/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/statistical/mode-sngl/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/statistical/negbinom-dist/__tests__/index.spec.ts b/packages/engine-formula/src/functions/statistical/negbinom-dist/__tests__/index.spec.ts index b00b08ea91..7e2fa6b48f 100644 --- a/packages/engine-formula/src/functions/statistical/negbinom-dist/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/statistical/negbinom-dist/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/statistical/norm-dist/__tests__/index.spec.ts b/packages/engine-formula/src/functions/statistical/norm-dist/__tests__/index.spec.ts index 0318195fc1..e1ad789b3a 100644 --- a/packages/engine-formula/src/functions/statistical/norm-dist/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/statistical/norm-dist/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/statistical/norm-inv/__tests__/index.spec.ts b/packages/engine-formula/src/functions/statistical/norm-inv/__tests__/index.spec.ts index f23610c40b..55fc6730ab 100644 --- a/packages/engine-formula/src/functions/statistical/norm-inv/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/statistical/norm-inv/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/statistical/norm-s-dist/__tests__/index.spec.ts b/packages/engine-formula/src/functions/statistical/norm-s-dist/__tests__/index.spec.ts index 6f3a7eb9eb..d5550da177 100644 --- a/packages/engine-formula/src/functions/statistical/norm-s-dist/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/statistical/norm-s-dist/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/statistical/norm-s-inv/__tests__/index.spec.ts b/packages/engine-formula/src/functions/statistical/norm-s-inv/__tests__/index.spec.ts index caf4fa3623..c6638dee12 100644 --- a/packages/engine-formula/src/functions/statistical/norm-s-inv/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/statistical/norm-s-inv/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/statistical/pearson/__tests__/index.spec.ts b/packages/engine-formula/src/functions/statistical/pearson/__tests__/index.spec.ts index 2e150e3f31..a30c59bbef 100644 --- a/packages/engine-formula/src/functions/statistical/pearson/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/statistical/pearson/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/statistical/percentile-exc/__tests__/index.spec.ts b/packages/engine-formula/src/functions/statistical/percentile-exc/__tests__/index.spec.ts index b98f53e1f5..11347fd41d 100644 --- a/packages/engine-formula/src/functions/statistical/percentile-exc/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/statistical/percentile-exc/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/statistical/percentile-inc/__tests__/index.spec.ts b/packages/engine-formula/src/functions/statistical/percentile-inc/__tests__/index.spec.ts index 4ec11fceb1..193d855e03 100644 --- a/packages/engine-formula/src/functions/statistical/percentile-inc/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/statistical/percentile-inc/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/statistical/percentrank-exc/__tests__/index.spec.ts b/packages/engine-formula/src/functions/statistical/percentrank-exc/__tests__/index.spec.ts index d301117fa2..48ecc0a6a0 100644 --- a/packages/engine-formula/src/functions/statistical/percentrank-exc/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/statistical/percentrank-exc/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/statistical/percentrank-inc/__tests__/index.spec.ts b/packages/engine-formula/src/functions/statistical/percentrank-inc/__tests__/index.spec.ts index 7bc554c43e..49c0de7d63 100644 --- a/packages/engine-formula/src/functions/statistical/percentrank-inc/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/statistical/percentrank-inc/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/statistical/permut/__tests__/index.spec.ts b/packages/engine-formula/src/functions/statistical/permut/__tests__/index.spec.ts index 1dd857e990..77f823f2de 100644 --- a/packages/engine-formula/src/functions/statistical/permut/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/statistical/permut/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/statistical/permutationa/__tests__/index.spec.ts b/packages/engine-formula/src/functions/statistical/permutationa/__tests__/index.spec.ts index 6f764bf77f..2acbd68749 100644 --- a/packages/engine-formula/src/functions/statistical/permutationa/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/statistical/permutationa/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/statistical/phi/__tests__/index.spec.ts b/packages/engine-formula/src/functions/statistical/phi/__tests__/index.spec.ts index b4c52f7188..ebb414d195 100644 --- a/packages/engine-formula/src/functions/statistical/phi/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/statistical/phi/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/statistical/poisson-dist/__tests__/index.spec.ts b/packages/engine-formula/src/functions/statistical/poisson-dist/__tests__/index.spec.ts index c8674aadd1..bc071ed0c5 100644 --- a/packages/engine-formula/src/functions/statistical/poisson-dist/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/statistical/poisson-dist/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/statistical/prob/__tests__/index.spec.ts b/packages/engine-formula/src/functions/statistical/prob/__tests__/index.spec.ts index dd2688ee9a..e9cbaef00f 100644 --- a/packages/engine-formula/src/functions/statistical/prob/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/statistical/prob/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/statistical/quartile-exc/__tests__/index.spec.ts b/packages/engine-formula/src/functions/statistical/quartile-exc/__tests__/index.spec.ts index d50f8c980c..4c6de91ccd 100644 --- a/packages/engine-formula/src/functions/statistical/quartile-exc/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/statistical/quartile-exc/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/statistical/quartile-inc/__tests__/index.spec.ts b/packages/engine-formula/src/functions/statistical/quartile-inc/__tests__/index.spec.ts index db7c53620b..ceacc05027 100644 --- a/packages/engine-formula/src/functions/statistical/quartile-inc/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/statistical/quartile-inc/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/statistical/rsq/__tests__/index.spec.ts b/packages/engine-formula/src/functions/statistical/rsq/__tests__/index.spec.ts index e631a296c0..543d5b7632 100644 --- a/packages/engine-formula/src/functions/statistical/rsq/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/statistical/rsq/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/statistical/skew-p/__tests__/index.spec.ts b/packages/engine-formula/src/functions/statistical/skew-p/__tests__/index.spec.ts index 280d12da3d..69436804fb 100644 --- a/packages/engine-formula/src/functions/statistical/skew-p/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/statistical/skew-p/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/statistical/skew/__tests__/index.spec.ts b/packages/engine-formula/src/functions/statistical/skew/__tests__/index.spec.ts index 2eff98baf7..fff2962c10 100644 --- a/packages/engine-formula/src/functions/statistical/skew/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/statistical/skew/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/statistical/slope/__tests__/index.spec.ts b/packages/engine-formula/src/functions/statistical/slope/__tests__/index.spec.ts index 72adefc7b4..e260ccf4c7 100644 --- a/packages/engine-formula/src/functions/statistical/slope/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/statistical/slope/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/statistical/small/__tests__/index.spec.ts b/packages/engine-formula/src/functions/statistical/small/__tests__/index.spec.ts index a156dc75a0..497a57aaec 100644 --- a/packages/engine-formula/src/functions/statistical/small/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/statistical/small/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/statistical/standardize/__tests__/index.spec.ts b/packages/engine-formula/src/functions/statistical/standardize/__tests__/index.spec.ts index ca7ba90479..58ea3ad857 100644 --- a/packages/engine-formula/src/functions/statistical/standardize/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/statistical/standardize/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/statistical/stdev-p/__tests__/index.spec.ts b/packages/engine-formula/src/functions/statistical/stdev-p/__tests__/index.spec.ts index ed37beb3bc..9fe98558f1 100644 --- a/packages/engine-formula/src/functions/statistical/stdev-p/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/statistical/stdev-p/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_STATISTICAL } from '../../function-names'; import { StdevP } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; describe('Test stdev.p function', () => { const testFunction = new StdevP(FUNCTION_NAMES_STATISTICAL.STDEV_P); diff --git a/packages/engine-formula/src/functions/statistical/stdev-s/__tests__/index.spec.ts b/packages/engine-formula/src/functions/statistical/stdev-s/__tests__/index.spec.ts index 818f0d2f7a..5eae181305 100644 --- a/packages/engine-formula/src/functions/statistical/stdev-s/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/statistical/stdev-s/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_STATISTICAL } from '../../function-names'; import { StdevS } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; describe('Test stdev.s function', () => { const testFunction = new StdevS(FUNCTION_NAMES_STATISTICAL.STDEV_S); diff --git a/packages/engine-formula/src/functions/statistical/stdeva/__tests__/index.spec.ts b/packages/engine-formula/src/functions/statistical/stdeva/__tests__/index.spec.ts index 550f29c060..57359718dd 100644 --- a/packages/engine-formula/src/functions/statistical/stdeva/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/statistical/stdeva/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_STATISTICAL } from '../../function-names'; import { Stdeva } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; describe('Test stdeva function', () => { const testFunction = new Stdeva(FUNCTION_NAMES_STATISTICAL.STDEVA); diff --git a/packages/engine-formula/src/functions/statistical/stdevpa/__tests__/index.spec.ts b/packages/engine-formula/src/functions/statistical/stdevpa/__tests__/index.spec.ts index 3bcd2db20a..a6251f8eec 100644 --- a/packages/engine-formula/src/functions/statistical/stdevpa/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/statistical/stdevpa/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_STATISTICAL } from '../../function-names'; import { Stdevpa } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; describe('Test stdevpa function', () => { const testFunction = new Stdevpa(FUNCTION_NAMES_STATISTICAL.STDEVPA); diff --git a/packages/engine-formula/src/functions/statistical/steyx/__tests__/index.spec.ts b/packages/engine-formula/src/functions/statistical/steyx/__tests__/index.spec.ts index 9cbf615a06..432c424106 100644 --- a/packages/engine-formula/src/functions/statistical/steyx/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/statistical/steyx/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/statistical/t-dist-2t/__tests__/index.spec.ts b/packages/engine-formula/src/functions/statistical/t-dist-2t/__tests__/index.spec.ts index e7659aea63..d17540c3ae 100644 --- a/packages/engine-formula/src/functions/statistical/t-dist-2t/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/statistical/t-dist-2t/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/statistical/t-dist-rt/__tests__/index.spec.ts b/packages/engine-formula/src/functions/statistical/t-dist-rt/__tests__/index.spec.ts index fb481f3b59..7113a74f70 100644 --- a/packages/engine-formula/src/functions/statistical/t-dist-rt/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/statistical/t-dist-rt/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/statistical/t-dist/__tests__/index.spec.ts b/packages/engine-formula/src/functions/statistical/t-dist/__tests__/index.spec.ts index 9ec6ee4521..04cd5a958f 100644 --- a/packages/engine-formula/src/functions/statistical/t-dist/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/statistical/t-dist/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/statistical/t-inv-2t/__tests__/index.spec.ts b/packages/engine-formula/src/functions/statistical/t-inv-2t/__tests__/index.spec.ts index 5b9e2353e9..2ff7c2f975 100644 --- a/packages/engine-formula/src/functions/statistical/t-inv-2t/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/statistical/t-inv-2t/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/statistical/t-inv/__tests__/index.spec.ts b/packages/engine-formula/src/functions/statistical/t-inv/__tests__/index.spec.ts index d94cc40826..0d3be80b6b 100644 --- a/packages/engine-formula/src/functions/statistical/t-inv/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/statistical/t-inv/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/statistical/t-test/__tests__/index.spec.ts b/packages/engine-formula/src/functions/statistical/t-test/__tests__/index.spec.ts index 6405bc884e..36d2b6c9f9 100644 --- a/packages/engine-formula/src/functions/statistical/t-test/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/statistical/t-test/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/statistical/trend/__tests__/index.spec.ts b/packages/engine-formula/src/functions/statistical/trend/__tests__/index.spec.ts index 6f1ed453dc..670aa60196 100644 --- a/packages/engine-formula/src/functions/statistical/trend/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/statistical/trend/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/statistical/trimmean/__tests__/index.spec.ts b/packages/engine-formula/src/functions/statistical/trimmean/__tests__/index.spec.ts index 7ddaddf829..3a3ee6134a 100644 --- a/packages/engine-formula/src/functions/statistical/trimmean/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/statistical/trimmean/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/statistical/var-p/__tests__/index.spec.ts b/packages/engine-formula/src/functions/statistical/var-p/__tests__/index.spec.ts index 53f3757699..530a610b89 100644 --- a/packages/engine-formula/src/functions/statistical/var-p/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/statistical/var-p/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_STATISTICAL } from '../../function-names'; import { VarP } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; describe('Test var.p function', () => { const testFunction = new VarP(FUNCTION_NAMES_STATISTICAL.VAR_P); diff --git a/packages/engine-formula/src/functions/statistical/var-s/__tests__/index.spec.ts b/packages/engine-formula/src/functions/statistical/var-s/__tests__/index.spec.ts index d4e9ad595e..ba720c7eae 100644 --- a/packages/engine-formula/src/functions/statistical/var-s/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/statistical/var-s/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_STATISTICAL } from '../../function-names'; import { VarS } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; describe('Test var.s function', () => { const testFunction = new VarS(FUNCTION_NAMES_STATISTICAL.VAR_S); diff --git a/packages/engine-formula/src/functions/statistical/vara/__tests__/index.spec.ts b/packages/engine-formula/src/functions/statistical/vara/__tests__/index.spec.ts index 60d184b619..df5102802c 100644 --- a/packages/engine-formula/src/functions/statistical/vara/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/statistical/vara/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_STATISTICAL } from '../../function-names'; import { Vara } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; describe('Test vara function', () => { const testFunction = new Vara(FUNCTION_NAMES_STATISTICAL.VARA); diff --git a/packages/engine-formula/src/functions/statistical/varpa/__tests__/index.spec.ts b/packages/engine-formula/src/functions/statistical/varpa/__tests__/index.spec.ts index 3d24bcf956..178bd9aa48 100644 --- a/packages/engine-formula/src/functions/statistical/varpa/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/statistical/varpa/__tests__/index.spec.ts @@ -15,13 +15,12 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; +import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_STATISTICAL } from '../../function-names'; import { Varpa } from '../index'; -import { BooleanValueObject, NullValueObject, NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; -import { ErrorType } from '../../../../basics/error-type'; -import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; describe('Test varpa function', () => { const testFunction = new Varpa(FUNCTION_NAMES_STATISTICAL.VARPA); diff --git a/packages/engine-formula/src/functions/statistical/weibull-dist/__tests__/index.spec.ts b/packages/engine-formula/src/functions/statistical/weibull-dist/__tests__/index.spec.ts index d1386bf4ac..92afd1986f 100644 --- a/packages/engine-formula/src/functions/statistical/weibull-dist/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/statistical/weibull-dist/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/statistical/z-test/__tests__/index.spec.ts b/packages/engine-formula/src/functions/statistical/z-test/__tests__/index.spec.ts index b40915a708..7a7fdfb6a2 100644 --- a/packages/engine-formula/src/functions/statistical/z-test/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/statistical/z-test/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { NumberValueObject } from '../../../../engine/value-object/primitive-object'; diff --git a/packages/engine-formula/src/functions/text/arraytotext/__test__/index.spec.ts b/packages/engine-formula/src/functions/text/arraytotext/__test__/index.spec.ts index 69e54282a4..098bf30549 100644 --- a/packages/engine-formula/src/functions/text/arraytotext/__test__/index.spec.ts +++ b/packages/engine-formula/src/functions/text/arraytotext/__test__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/text/asc/__test__/index.spec.ts b/packages/engine-formula/src/functions/text/asc/__test__/index.spec.ts index 39ad1a1e3e..17e53e0409 100644 --- a/packages/engine-formula/src/functions/text/asc/__test__/index.spec.ts +++ b/packages/engine-formula/src/functions/text/asc/__test__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { StringValueObject } from '../../../../engine/value-object/primitive-object'; diff --git a/packages/engine-formula/src/functions/text/bahttext/__test__/index.spec.ts b/packages/engine-formula/src/functions/text/bahttext/__test__/index.spec.ts index 1b32ba7615..d077f95e40 100644 --- a/packages/engine-formula/src/functions/text/bahttext/__test__/index.spec.ts +++ b/packages/engine-formula/src/functions/text/bahttext/__test__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { NumberValueObject } from '../../../../engine/value-object/primitive-object'; diff --git a/packages/engine-formula/src/functions/text/char/__test__/index.spec.ts b/packages/engine-formula/src/functions/text/char/__test__/index.spec.ts index c87bd50589..8d61087eb0 100644 --- a/packages/engine-formula/src/functions/text/char/__test__/index.spec.ts +++ b/packages/engine-formula/src/functions/text/char/__test__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { NumberValueObject } from '../../../../engine/value-object/primitive-object'; diff --git a/packages/engine-formula/src/functions/text/clean/__test__/index.spec.ts b/packages/engine-formula/src/functions/text/clean/__test__/index.spec.ts index 25638f9112..61869bc2b4 100644 --- a/packages/engine-formula/src/functions/text/clean/__test__/index.spec.ts +++ b/packages/engine-formula/src/functions/text/clean/__test__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { StringValueObject } from '../../../../engine/value-object/primitive-object'; diff --git a/packages/engine-formula/src/functions/text/code/__test__/index.spec.ts b/packages/engine-formula/src/functions/text/code/__test__/index.spec.ts index 33c27a1731..cac90dc1b4 100644 --- a/packages/engine-formula/src/functions/text/code/__test__/index.spec.ts +++ b/packages/engine-formula/src/functions/text/code/__test__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { StringValueObject } from '../../../../engine/value-object/primitive-object'; diff --git a/packages/engine-formula/src/functions/text/concat/__tests__/index.spec.ts b/packages/engine-formula/src/functions/text/concat/__tests__/index.spec.ts index 7011826ae0..5f6b282d74 100644 --- a/packages/engine-formula/src/functions/text/concat/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/text/concat/__tests__/index.spec.ts @@ -15,12 +15,11 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_TEXT } from '../../function-names'; import { Concat } from '../index'; -import { StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; -import { ErrorType } from '../../../../basics/error-type'; describe('Test concat function', () => { const testFunction = new Concat(FUNCTION_NAMES_TEXT.CONCAT); diff --git a/packages/engine-formula/src/functions/text/concatenate/__tests__/index.spec.ts b/packages/engine-formula/src/functions/text/concatenate/__tests__/index.spec.ts index 6701bc735a..b7bee2f498 100644 --- a/packages/engine-formula/src/functions/text/concatenate/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/text/concatenate/__tests__/index.spec.ts @@ -15,12 +15,11 @@ */ import { describe, expect, it } from 'vitest'; - +import { ErrorType } from '../../../../basics/error-type'; +import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; +import { StringValueObject } from '../../../../engine/value-object/primitive-object'; import { FUNCTION_NAMES_TEXT } from '../../function-names'; import { Concatenate } from '../index'; -import { StringValueObject } from '../../../../engine/value-object/primitive-object'; -import { ArrayValueObject, transformToValue, transformToValueObject } from '../../../../engine/value-object/array-value-object'; -import { ErrorType } from '../../../../basics/error-type'; describe('Test concatenate function', () => { const testFunction = new Concatenate(FUNCTION_NAMES_TEXT.CONCATENATE); diff --git a/packages/engine-formula/src/functions/text/dbcs/__test__/index.spec.ts b/packages/engine-formula/src/functions/text/dbcs/__test__/index.spec.ts index 766876819c..8882f28635 100644 --- a/packages/engine-formula/src/functions/text/dbcs/__test__/index.spec.ts +++ b/packages/engine-formula/src/functions/text/dbcs/__test__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { StringValueObject } from '../../../../engine/value-object/primitive-object'; diff --git a/packages/engine-formula/src/functions/text/dollar/__test__/index.spec.ts b/packages/engine-formula/src/functions/text/dollar/__test__/index.spec.ts index e36ad877ad..5e8d3de527 100644 --- a/packages/engine-formula/src/functions/text/dollar/__test__/index.spec.ts +++ b/packages/engine-formula/src/functions/text/dollar/__test__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/text/exact/__test__/index.spec.ts b/packages/engine-formula/src/functions/text/exact/__test__/index.spec.ts index e794c3cead..4e7e627057 100644 --- a/packages/engine-formula/src/functions/text/exact/__test__/index.spec.ts +++ b/packages/engine-formula/src/functions/text/exact/__test__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/text/find/__test__/index.spec.ts b/packages/engine-formula/src/functions/text/find/__test__/index.spec.ts index 54f7eb24c8..02e7131828 100644 --- a/packages/engine-formula/src/functions/text/find/__test__/index.spec.ts +++ b/packages/engine-formula/src/functions/text/find/__test__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/text/findb/__test__/index.spec.ts b/packages/engine-formula/src/functions/text/findb/__test__/index.spec.ts index 068277f3c1..77421fdda3 100644 --- a/packages/engine-formula/src/functions/text/findb/__test__/index.spec.ts +++ b/packages/engine-formula/src/functions/text/findb/__test__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/text/fixed/__test__/index.spec.ts b/packages/engine-formula/src/functions/text/fixed/__test__/index.spec.ts index 5e51af9fb3..59aaf46110 100644 --- a/packages/engine-formula/src/functions/text/fixed/__test__/index.spec.ts +++ b/packages/engine-formula/src/functions/text/fixed/__test__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/text/left/__test__/index.spec.ts b/packages/engine-formula/src/functions/text/left/__test__/index.spec.ts index d82d544f4b..c38e7eb0d7 100644 --- a/packages/engine-formula/src/functions/text/left/__test__/index.spec.ts +++ b/packages/engine-formula/src/functions/text/left/__test__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/text/leftb/__test__/index.spec.ts b/packages/engine-formula/src/functions/text/leftb/__test__/index.spec.ts index 779e30446f..8ff4bc9d24 100644 --- a/packages/engine-formula/src/functions/text/leftb/__test__/index.spec.ts +++ b/packages/engine-formula/src/functions/text/leftb/__test__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; diff --git a/packages/engine-formula/src/functions/text/len/__test__/index.spec.ts b/packages/engine-formula/src/functions/text/len/__test__/index.spec.ts index 02920cd4f0..c33b5c7078 100644 --- a/packages/engine-formula/src/functions/text/len/__test__/index.spec.ts +++ b/packages/engine-formula/src/functions/text/len/__test__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; diff --git a/packages/engine-formula/src/functions/text/lenb/__test__/index.spec.ts b/packages/engine-formula/src/functions/text/lenb/__test__/index.spec.ts index d1b81b5510..d4aa556372 100644 --- a/packages/engine-formula/src/functions/text/lenb/__test__/index.spec.ts +++ b/packages/engine-formula/src/functions/text/lenb/__test__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { NumberValueObject, StringValueObject } from '../../../../engine/value-object/primitive-object'; diff --git a/packages/engine-formula/src/functions/text/lower/__test__/index.spec.ts b/packages/engine-formula/src/functions/text/lower/__test__/index.spec.ts index a143a24fc9..b7750a6782 100644 --- a/packages/engine-formula/src/functions/text/lower/__test__/index.spec.ts +++ b/packages/engine-formula/src/functions/text/lower/__test__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { StringValueObject } from '../../../../engine/value-object/primitive-object'; diff --git a/packages/engine-formula/src/functions/text/mid/__test__/index.spec.ts b/packages/engine-formula/src/functions/text/mid/__test__/index.spec.ts index 23165eff3c..6d77c1120c 100644 --- a/packages/engine-formula/src/functions/text/mid/__test__/index.spec.ts +++ b/packages/engine-formula/src/functions/text/mid/__test__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/text/midb/__test__/index.spec.ts b/packages/engine-formula/src/functions/text/midb/__test__/index.spec.ts index e02cfc584e..8ea7b484a9 100644 --- a/packages/engine-formula/src/functions/text/midb/__test__/index.spec.ts +++ b/packages/engine-formula/src/functions/text/midb/__test__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/text/numberstring/__test__/index.spec.ts b/packages/engine-formula/src/functions/text/numberstring/__test__/index.spec.ts index e51a758052..cc4dfaabbb 100644 --- a/packages/engine-formula/src/functions/text/numberstring/__test__/index.spec.ts +++ b/packages/engine-formula/src/functions/text/numberstring/__test__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/text/numbervalue/__test__/index.spec.ts b/packages/engine-formula/src/functions/text/numbervalue/__test__/index.spec.ts index 96473d8cc6..88a5013149 100644 --- a/packages/engine-formula/src/functions/text/numbervalue/__test__/index.spec.ts +++ b/packages/engine-formula/src/functions/text/numbervalue/__test__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/text/proper/__test__/index.spec.ts b/packages/engine-formula/src/functions/text/proper/__test__/index.spec.ts index 499b94bcd1..fd42a4c09a 100644 --- a/packages/engine-formula/src/functions/text/proper/__test__/index.spec.ts +++ b/packages/engine-formula/src/functions/text/proper/__test__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { StringValueObject } from '../../../../engine/value-object/primitive-object'; diff --git a/packages/engine-formula/src/functions/text/regexextract/__test__/index.spec.ts b/packages/engine-formula/src/functions/text/regexextract/__test__/index.spec.ts index aa18115914..206dcd1fe2 100644 --- a/packages/engine-formula/src/functions/text/regexextract/__test__/index.spec.ts +++ b/packages/engine-formula/src/functions/text/regexextract/__test__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/text/regexmatch/__test__/index.spec.ts b/packages/engine-formula/src/functions/text/regexmatch/__test__/index.spec.ts index a12a09d245..e91d869902 100644 --- a/packages/engine-formula/src/functions/text/regexmatch/__test__/index.spec.ts +++ b/packages/engine-formula/src/functions/text/regexmatch/__test__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/text/regexreplace/__test__/index.spec.ts b/packages/engine-formula/src/functions/text/regexreplace/__test__/index.spec.ts index 6c35fc9c99..1483a44057 100644 --- a/packages/engine-formula/src/functions/text/regexreplace/__test__/index.spec.ts +++ b/packages/engine-formula/src/functions/text/regexreplace/__test__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/text/replace/__test__/index.spec.ts b/packages/engine-formula/src/functions/text/replace/__test__/index.spec.ts index e273af7b7b..d53f64ce49 100644 --- a/packages/engine-formula/src/functions/text/replace/__test__/index.spec.ts +++ b/packages/engine-formula/src/functions/text/replace/__test__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/text/replaceb/__test__/index.spec.ts b/packages/engine-formula/src/functions/text/replaceb/__test__/index.spec.ts index 9d2b7498cd..15b0bdd5bc 100644 --- a/packages/engine-formula/src/functions/text/replaceb/__test__/index.spec.ts +++ b/packages/engine-formula/src/functions/text/replaceb/__test__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/text/rept/__test__/index.spec.ts b/packages/engine-formula/src/functions/text/rept/__test__/index.spec.ts index c840d56eda..632da2d066 100644 --- a/packages/engine-formula/src/functions/text/rept/__test__/index.spec.ts +++ b/packages/engine-formula/src/functions/text/rept/__test__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/text/right/__test__/index.spec.ts b/packages/engine-formula/src/functions/text/right/__test__/index.spec.ts index 1b6f51fb92..d15b308751 100644 --- a/packages/engine-formula/src/functions/text/right/__test__/index.spec.ts +++ b/packages/engine-formula/src/functions/text/right/__test__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/text/rightb/__test__/index.spec.ts b/packages/engine-formula/src/functions/text/rightb/__test__/index.spec.ts index 9e8a586b89..c0fb1a4a45 100644 --- a/packages/engine-formula/src/functions/text/rightb/__test__/index.spec.ts +++ b/packages/engine-formula/src/functions/text/rightb/__test__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/text/search/__test__/index.spec.ts b/packages/engine-formula/src/functions/text/search/__test__/index.spec.ts index 6b064540ab..d43e5aa519 100644 --- a/packages/engine-formula/src/functions/text/search/__test__/index.spec.ts +++ b/packages/engine-formula/src/functions/text/search/__test__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/text/searchb/__test__/index.spec.ts b/packages/engine-formula/src/functions/text/searchb/__test__/index.spec.ts index eb4b911b4f..4d8fd741cf 100644 --- a/packages/engine-formula/src/functions/text/searchb/__test__/index.spec.ts +++ b/packages/engine-formula/src/functions/text/searchb/__test__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/text/substitute/__test__/index.spec.ts b/packages/engine-formula/src/functions/text/substitute/__test__/index.spec.ts index 0776cdb6b7..6bf15c8362 100644 --- a/packages/engine-formula/src/functions/text/substitute/__test__/index.spec.ts +++ b/packages/engine-formula/src/functions/text/substitute/__test__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/text/t/__test__/index.spec.ts b/packages/engine-formula/src/functions/text/t/__test__/index.spec.ts index 0ab5d4cdd1..6c31d624c3 100644 --- a/packages/engine-formula/src/functions/text/t/__test__/index.spec.ts +++ b/packages/engine-formula/src/functions/text/t/__test__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/text/textafter/__test__/index.spec.ts b/packages/engine-formula/src/functions/text/textafter/__test__/index.spec.ts index dc5cac9c5d..b453fda5bf 100644 --- a/packages/engine-formula/src/functions/text/textafter/__test__/index.spec.ts +++ b/packages/engine-formula/src/functions/text/textafter/__test__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/text/textbefore/__test__/index.spec.ts b/packages/engine-formula/src/functions/text/textbefore/__test__/index.spec.ts index b47f20b850..59348c8361 100644 --- a/packages/engine-formula/src/functions/text/textbefore/__test__/index.spec.ts +++ b/packages/engine-formula/src/functions/text/textbefore/__test__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/text/textjoin/__test__/index.spec.ts b/packages/engine-formula/src/functions/text/textjoin/__test__/index.spec.ts index b96653adbf..c84e6c71c7 100644 --- a/packages/engine-formula/src/functions/text/textjoin/__test__/index.spec.ts +++ b/packages/engine-formula/src/functions/text/textjoin/__test__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/text/textsplit/__test__/index.spec.ts b/packages/engine-formula/src/functions/text/textsplit/__test__/index.spec.ts index 2273daf63f..e65578ec21 100644 --- a/packages/engine-formula/src/functions/text/textsplit/__test__/index.spec.ts +++ b/packages/engine-formula/src/functions/text/textsplit/__test__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/text/trim/__test__/index.spec.ts b/packages/engine-formula/src/functions/text/trim/__test__/index.spec.ts index 539e67e8f2..2e635d2dcb 100644 --- a/packages/engine-formula/src/functions/text/trim/__test__/index.spec.ts +++ b/packages/engine-formula/src/functions/text/trim/__test__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { StringValueObject } from '../../../../engine/value-object/primitive-object'; diff --git a/packages/engine-formula/src/functions/text/unichar/__test__/index.spec.ts b/packages/engine-formula/src/functions/text/unichar/__test__/index.spec.ts index 10258d6921..92a8fc1674 100644 --- a/packages/engine-formula/src/functions/text/unichar/__test__/index.spec.ts +++ b/packages/engine-formula/src/functions/text/unichar/__test__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { NumberValueObject } from '../../../../engine/value-object/primitive-object'; diff --git a/packages/engine-formula/src/functions/text/unicode/__test__/index.spec.ts b/packages/engine-formula/src/functions/text/unicode/__test__/index.spec.ts index 5b4e78cb85..0a672727d4 100644 --- a/packages/engine-formula/src/functions/text/unicode/__test__/index.spec.ts +++ b/packages/engine-formula/src/functions/text/unicode/__test__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { StringValueObject } from '../../../../engine/value-object/primitive-object'; diff --git a/packages/engine-formula/src/functions/text/upper/__test__/index.spec.ts b/packages/engine-formula/src/functions/text/upper/__test__/index.spec.ts index 6a105283ed..687eff1db7 100644 --- a/packages/engine-formula/src/functions/text/upper/__test__/index.spec.ts +++ b/packages/engine-formula/src/functions/text/upper/__test__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { StringValueObject } from '../../../../engine/value-object/primitive-object'; diff --git a/packages/engine-formula/src/functions/text/value/__test__/index.spec.ts b/packages/engine-formula/src/functions/text/value/__test__/index.spec.ts index d468070104..31b75b4e04 100644 --- a/packages/engine-formula/src/functions/text/value/__test__/index.spec.ts +++ b/packages/engine-formula/src/functions/text/value/__test__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject, ValueObjectFactory } from '../../../../engine/value-object/array-value-object'; import { StringValueObject } from '../../../../engine/value-object/primitive-object'; diff --git a/packages/engine-formula/src/functions/text/valuetotext/__test__/index.spec.ts b/packages/engine-formula/src/functions/text/valuetotext/__test__/index.spec.ts index 8716908e75..1a76744bc6 100644 --- a/packages/engine-formula/src/functions/text/valuetotext/__test__/index.spec.ts +++ b/packages/engine-formula/src/functions/text/valuetotext/__test__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/functions/web/encodeurl/__tests__/index.spec.ts b/packages/engine-formula/src/functions/web/encodeurl/__tests__/index.spec.ts index 6dcd2b8182..c4cfda6431 100644 --- a/packages/engine-formula/src/functions/web/encodeurl/__tests__/index.spec.ts +++ b/packages/engine-formula/src/functions/web/encodeurl/__tests__/index.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { ErrorType } from '../../../../basics/error-type'; import { ArrayValueObject, transformToValueObject } from '../../../../engine/value-object/array-value-object'; import { ErrorValueObject } from '../../../../engine/value-object/base-value-object'; diff --git a/packages/engine-formula/src/models/__tests__/create-command-test-bed.ts b/packages/engine-formula/src/models/__tests__/create-command-test-bed.ts index 0316ad8a70..07e80bca88 100644 --- a/packages/engine-formula/src/models/__tests__/create-command-test-bed.ts +++ b/packages/engine-formula/src/models/__tests__/create-command-test-bed.ts @@ -86,7 +86,7 @@ export function createCommandTestBed(workbookData?: IWorkbookData, dependencies? } univer.registerPlugin(TestPlugin); - const sheet = univer.createUniverSheet(workbookData || TEST_WORKBOOK_DATA); + const sheet = univer.createUnit(UniverInstanceType.UNIVER_SHEET, workbookData || TEST_WORKBOOK_DATA); const univerInstanceService = get(IUniverInstanceService); univerInstanceService.focusUnit('test'); diff --git a/packages/engine-render/package.json b/packages/engine-render/package.json index 3567eb264b..297c596149 100644 --- a/packages/engine-render/package.json +++ b/packages/engine-render/package.json @@ -73,7 +73,7 @@ "@univerjs-infra/shared": "workspace:*", "rxjs": "^7.8.2", "typescript": "^5.8.3", - "vite": "^6.3.5", + "vite": "^7.0.5", "vitest": "^3.2.4" }, "browser": { diff --git a/packages/engine-render/src/components/docs/layout/line-breaker/__tests__/linebreak.spec.ts b/packages/engine-render/src/components/docs/layout/line-breaker/__tests__/linebreak.spec.ts index 6a8d1d9e17..2002f4759f 100644 --- a/packages/engine-render/src/components/docs/layout/line-breaker/__tests__/linebreak.spec.ts +++ b/packages/engine-render/src/components/docs/layout/line-breaker/__tests__/linebreak.spec.ts @@ -18,7 +18,6 @@ import fs from 'node:fs'; import { resolve } from 'node:path'; import { describe, expect, it } from 'vitest'; - import { tabLineBreakExtension } from '../extensions/tab-linebreak-extension'; import { LineBreaker } from '../line-breaker'; diff --git a/packages/find-replace/package.json b/packages/find-replace/package.json index 89efeddc97..70e4561cba 100644 --- a/packages/find-replace/package.json +++ b/packages/find-replace/package.json @@ -81,7 +81,7 @@ "rxjs": "^7.8.2", "tailwindcss": "3.4.17", "typescript": "^5.8.3", - "vite": "^6.3.5", + "vite": "^7.0.5", "vitest": "^3.2.4" } } diff --git a/packages/network/package.json b/packages/network/package.json index c446f18b1c..cf40d821f4 100644 --- a/packages/network/package.json +++ b/packages/network/package.json @@ -77,7 +77,7 @@ "@univerjs-infra/shared": "workspace:*", "rxjs": "^7.8.2", "typescript": "^5.8.3", - "vite": "^6.3.5", + "vite": "^7.0.5", "vitest": "^3.2.4" } } diff --git a/packages/rpc-node/package.json b/packages/rpc-node/package.json index 3959266b18..b41e5ff792 100644 --- a/packages/rpc-node/package.json +++ b/packages/rpc-node/package.json @@ -66,7 +66,7 @@ "@univerjs-infra/shared": "workspace:*", "rxjs": "^7.8.2", "typescript": "^5.8.3", - "vite": "^6.3.5", + "vite": "^7.0.5", "vitest": "^3.2.4" } } diff --git a/packages/rpc/package.json b/packages/rpc/package.json index 09089a4a55..dcbebe7efc 100644 --- a/packages/rpc/package.json +++ b/packages/rpc/package.json @@ -66,7 +66,7 @@ "@univerjs-infra/shared": "workspace:*", "rxjs": "^7.8.2", "typescript": "^5.8.3", - "vite": "^6.3.5", + "vite": "^7.0.5", "vitest": "^3.2.4" } } diff --git a/packages/sheets-conditional-formatting-ui/package.json b/packages/sheets-conditional-formatting-ui/package.json index 3ae3fbd6ec..051e8554a4 100644 --- a/packages/sheets-conditional-formatting-ui/package.json +++ b/packages/sheets-conditional-formatting-ui/package.json @@ -86,7 +86,7 @@ "rxjs": "^7.8.2", "tailwindcss": "3.4.17", "typescript": "^5.8.3", - "vite": "^6.3.5", + "vite": "^7.0.5", "vitest": "^3.2.4" } } diff --git a/packages/sheets-conditional-formatting/package.json b/packages/sheets-conditional-formatting/package.json index 95880d3ae7..c6d8b04541 100644 --- a/packages/sheets-conditional-formatting/package.json +++ b/packages/sheets-conditional-formatting/package.json @@ -83,7 +83,7 @@ "@univerjs/icons-svg": "^0.4.6", "rxjs": "^7.8.2", "typescript": "^5.8.3", - "vite": "^6.3.5", + "vite": "^7.0.5", "vitest": "^3.2.4" } } diff --git a/packages/sheets-conditional-formatting/src/models/calculate-unit-v2/__test__/test.util.ts b/packages/sheets-conditional-formatting/src/models/calculate-unit-v2/__test__/test.util.ts index cef29eae07..e07d1f8ef4 100644 --- a/packages/sheets-conditional-formatting/src/models/calculate-unit-v2/__test__/test.util.ts +++ b/packages/sheets-conditional-formatting/src/models/calculate-unit-v2/__test__/test.util.ts @@ -17,18 +17,14 @@ import type { Dependency, IWorkbookData } from '@univerjs/core'; import { ICommandService, Inject, Injector, IUniverInstanceService, LocaleType, Plugin, Univer, UniverInstanceType } from '@univerjs/core'; import { IActiveDirtyManagerService } from '@univerjs/engine-formula'; -import { - SheetInterceptorService, -} from '@univerjs/sheets'; +import { SheetInterceptorService } from '@univerjs/sheets'; import { AddConditionalRuleMutation } from '../../../commands/mutations/add-conditional-rule.mutation'; import { DeleteConditionalRuleMutation } from '../../../commands/mutations/delete-conditional-rule.mutation'; import { ConditionalFormattingFormulaMarkDirty } from '../../../commands/mutations/formula-mark-dirty.mutation'; import { MoveConditionalRuleMutation } from '../../../commands/mutations/move-conditional-rule.mutation'; import { SetConditionalRuleMutation } from '../../../commands/mutations/set-conditional-rule.mutation'; - import { ConditionalFormattingRuleModel } from '../../../models/conditional-formatting-rule-model'; import { ConditionalFormattingFormulaService } from '../../../services/conditional-formatting-formula.service'; - import { ConditionalFormattingService } from '../../../services/conditional-formatting.service'; import { ConditionalFormattingViewModel } from '../../conditional-formatting-view-model'; @@ -89,7 +85,7 @@ export const createTestBed = (dependencies?: Dependency[]) => { univer.registerPlugin(TestPlugin); const workbookJson = TEST_WORKBOOK_DATA_DEMO(); - const workbook = univer.createUniverSheet(workbookJson); + const workbook = univer.createUnit(UniverInstanceType.UNIVER_SHEET, workbookJson); const univerInstanceService = injector.get(IUniverInstanceService); const commandService = injector.get(ICommandService); diff --git a/packages/sheets-crosshair-highlight/package.json b/packages/sheets-crosshair-highlight/package.json index 622836a2cb..7ddbabf5ba 100644 --- a/packages/sheets-crosshair-highlight/package.json +++ b/packages/sheets-crosshair-highlight/package.json @@ -92,7 +92,7 @@ "rxjs": "^7.8.2", "tailwindcss": "3.4.17", "typescript": "^5.8.3", - "vite": "^6.3.5", + "vite": "^7.0.5", "vitest": "^3.2.4" } } diff --git a/packages/sheets-data-validation-ui/package.json b/packages/sheets-data-validation-ui/package.json index 0714f35fe9..854d9b9634 100644 --- a/packages/sheets-data-validation-ui/package.json +++ b/packages/sheets-data-validation-ui/package.json @@ -90,7 +90,7 @@ "rxjs": "^7.8.2", "tailwindcss": "3.4.17", "typescript": "^5.8.3", - "vite": "^6.3.5", + "vite": "^7.0.5", "vitest": "^3.2.4" } } diff --git a/packages/sheets-data-validation/package.json b/packages/sheets-data-validation/package.json index 6dffe83bf3..a085099700 100644 --- a/packages/sheets-data-validation/package.json +++ b/packages/sheets-data-validation/package.json @@ -84,7 +84,7 @@ "@univerjs-infra/shared": "workspace:*", "rxjs": "^7.8.2", "typescript": "^5.8.3", - "vite": "^6.3.5", + "vite": "^7.0.5", "vitest": "^3.2.4" } } diff --git a/packages/sheets-drawing-ui/package.json b/packages/sheets-drawing-ui/package.json index 466b7416a7..90c616bb7b 100644 --- a/packages/sheets-drawing-ui/package.json +++ b/packages/sheets-drawing-ui/package.json @@ -96,7 +96,7 @@ "rxjs": "^7.8.2", "tailwindcss": "3.4.17", "typescript": "^5.8.3", - "vite": "^6.3.5", + "vite": "^7.0.5", "vitest": "^3.2.4" } } diff --git a/packages/sheets-drawing/package.json b/packages/sheets-drawing/package.json index 1beb666513..5a2d675ce9 100644 --- a/packages/sheets-drawing/package.json +++ b/packages/sheets-drawing/package.json @@ -63,7 +63,7 @@ "@univerjs-infra/shared": "workspace:*", "@univerjs/sheets": "workspace:*", "typescript": "^5.8.3", - "vite": "^6.3.5", + "vite": "^7.0.5", "vitest": "^3.2.4" } } diff --git a/packages/sheets-filter-ui/package.json b/packages/sheets-filter-ui/package.json index c048808bbb..6f133d5079 100644 --- a/packages/sheets-filter-ui/package.json +++ b/packages/sheets-filter-ui/package.json @@ -84,7 +84,7 @@ "rxjs": "^7.8.2", "tailwindcss": "3.4.17", "typescript": "^5.8.3", - "vite": "^6.3.5", + "vite": "^7.0.5", "vitest": "^3.2.4" } } diff --git a/packages/sheets-filter-ui/src/models/__tests__/conditions.spec.ts b/packages/sheets-filter-ui/src/models/__tests__/conditions.spec.ts index 4333f17a86..702aa2a8ad 100644 --- a/packages/sheets-filter-ui/src/models/__tests__/conditions.spec.ts +++ b/packages/sheets-filter-ui/src/models/__tests__/conditions.spec.ts @@ -17,7 +17,6 @@ import { BooleanNumber } from '@univerjs/core'; import { CustomFilterOperator } from '@univerjs/sheets-filter'; import { describe, expect, it } from 'vitest'; - import { FilterConditionItems } from '../conditions'; import { ExtendCustomFilterOperator } from '../extended-operators'; diff --git a/packages/sheets-filter/package.json b/packages/sheets-filter/package.json index 6d7cbe9a2b..35e1d990f0 100644 --- a/packages/sheets-filter/package.json +++ b/packages/sheets-filter/package.json @@ -80,7 +80,7 @@ "@univerjs-infra/shared": "workspace:*", "rxjs": "^7.8.2", "typescript": "^5.8.3", - "vite": "^6.3.5", + "vite": "^7.0.5", "vitest": "^3.2.4" } } diff --git a/packages/sheets-filter/src/commands/mutations/__tests__/sheets-filter.mutation.spec.ts b/packages/sheets-filter/src/commands/mutations/__tests__/sheets-filter.mutation.spec.ts index 07dd6ba15b..6f5ee00126 100644 --- a/packages/sheets-filter/src/commands/mutations/__tests__/sheets-filter.mutation.spec.ts +++ b/packages/sheets-filter/src/commands/mutations/__tests__/sheets-filter.mutation.spec.ts @@ -111,7 +111,7 @@ function createFilterMutationTestBed(workbookData?: IWorkbookData) { univer.registerPlugin(SheetsFilterTestPlugin); - const sheet = univer.createUniverSheet(workbookData || testWorkbookDataFactory()); + const sheet = univer.createUnit(UniverInstanceType.UNIVER_SHEET, workbookData || testWorkbookDataFactory()); const sheetsFilterService = get(SheetsFilterService); const commandService = get(ICommandService); diff --git a/packages/sheets-filter/src/controllers/__tests__/sheets-filter.controller.spec.ts b/packages/sheets-filter/src/controllers/__tests__/sheets-filter.controller.spec.ts index 4567b2ee88..fd599b1f61 100644 --- a/packages/sheets-filter/src/controllers/__tests__/sheets-filter.controller.spec.ts +++ b/packages/sheets-filter/src/controllers/__tests__/sheets-filter.controller.spec.ts @@ -145,7 +145,7 @@ function createFilterControllerTestBed(workbookData?: IWorkbookData) { univer.registerPlugin(SheetsFilterTestPlugin); - const sheet = univer.createUniverSheet(workbookData || testWorkbookDataWithFilterFactory()); + const sheet = univer.createUnit(UniverInstanceType.UNIVER_SHEET, workbookData ?? testWorkbookDataWithFilterFactory()); const sheetsFilterService = get(SheetsFilterService); const commandService = get(ICommandService); diff --git a/packages/sheets-filter/src/models/__tests__/filter-interceptor.spec.ts b/packages/sheets-filter/src/models/__tests__/filter-interceptor.spec.ts index 7f8886a588..bec468d404 100644 --- a/packages/sheets-filter/src/models/__tests__/filter-interceptor.spec.ts +++ b/packages/sheets-filter/src/models/__tests__/filter-interceptor.spec.ts @@ -15,10 +15,40 @@ */ import type { Dependency, IWorkbookData, LocaleType } from '@univerjs/core'; -import type { IInsertColCommandParams, IInsertRowCommandParams, IMoveColsCommandParams, IMoveRowsCommandParams, IRemoveRowColCommandParams, IRemoveSheetCommandParams, ISetSelectionsOperationParams } from '@univerjs/sheets'; +import type { + IInsertColCommandParams, + IInsertRowCommandParams, + IMoveColsCommandParams, + IMoveRowsCommandParams, + IRemoveRowColCommandParams, + IRemoveSheetCommandParams, + ISetSelectionsOperationParams, +} from '@univerjs/sheets'; import { Direction, ICommandService, Inject, Injector, Plugin, RANGE_TYPE, Univer, UniverInstanceType } from '@univerjs/core'; - -import { InsertColByRangeCommand, InsertColCommand, InsertColMutation, InsertRowByRangeCommand, InsertRowCommand, InsertRowMutation, MoveColsCommand, MoveColsMutation, MoveRowsCommand, MoveRowsMutation, RefRangeService, RemoveColByRangeCommand, RemoveColCommand, RemoveColMutation, RemoveRowByRangeCommand, RemoveRowCommand, RemoveRowMutation, RemoveSheetCommand, RemoveSheetMutation, SetSelectionsOperation, SheetInterceptorService, SheetsSelectionsService } from '@univerjs/sheets'; +import { + InsertColByRangeCommand, + InsertColCommand, + InsertColMutation, + InsertRowByRangeCommand, + InsertRowCommand, + InsertRowMutation, + MoveColsCommand, + MoveColsMutation, + MoveRowsCommand, + MoveRowsMutation, + RefRangeService, + RemoveColByRangeCommand, + RemoveColCommand, + RemoveColMutation, + RemoveRowByRangeCommand, + RemoveRowCommand, + RemoveRowMutation, + RemoveSheetCommand, + RemoveSheetMutation, + SetSelectionsOperation, + SheetInterceptorService, + SheetsSelectionsService, +} from '@univerjs/sheets'; import { afterEach, beforeEach, describe, expect, it } from 'vitest'; import { SheetsFilterController } from '../../controllers/sheets-filter.controller'; import { SHEET_FILTER_SNAPSHOT_ID, SheetsFilterService } from '../../services/sheet-filter.service'; @@ -294,7 +324,7 @@ function createFilterTestUniver(dependencies?: Dependency[], workbookData?: IWor univer.registerPlugin(TestPlugin); - univer.createUniverSheet(workbookData || testWorkbookDataFactory()); + univer.createUnit(UniverInstanceType.UNIVER_SHEET, workbookData || testWorkbookDataFactory()); const sheetsFilterService = injector.get(SheetsFilterService); diff --git a/packages/sheets-filter/src/models/__tests__/filter-model.spec.ts b/packages/sheets-filter/src/models/__tests__/filter-model.spec.ts index 352536be58..1601b6dae2 100644 --- a/packages/sheets-filter/src/models/__tests__/filter-model.spec.ts +++ b/packages/sheets-filter/src/models/__tests__/filter-model.spec.ts @@ -17,7 +17,6 @@ import type { Injector, IWorkbookData, Workbook } from '@univerjs/core'; import { ILogService, IUniverInstanceService, LocaleType, LogLevel, Univer, UniverInstanceType } from '@univerjs/core'; import { afterEach, beforeEach, describe, expect, it } from 'vitest'; - import { FilterColumn, generateFilterFn } from '../filter-model'; import { CustomFilterOperator } from '../types'; @@ -224,7 +223,7 @@ function createFilterModelTestBed(workbookData: IWorkbookData) { const injector = univer.__getInjector(); const get = injector.get.bind(injector); - const sheet = univer.createUniverSheet(workbookData); + const sheet = univer.createUnit(UniverInstanceType.UNIVER_SHEET, workbookData); const univerInstanceService = get(IUniverInstanceService); univerInstanceService.focusUnit('test'); diff --git a/packages/sheets-find-replace/package.json b/packages/sheets-find-replace/package.json index f5c430011c..ea1ed24950 100644 --- a/packages/sheets-find-replace/package.json +++ b/packages/sheets-find-replace/package.json @@ -88,7 +88,7 @@ "@univerjs-infra/shared": "workspace:*", "rxjs": "^7.8.2", "typescript": "^5.8.3", - "vite": "^6.3.5", + "vite": "^7.0.5", "vitest": "^3.2.4" } } diff --git a/packages/sheets-find-replace/src/controllers/__tests__/utils.spec.ts b/packages/sheets-find-replace/src/controllers/__tests__/utils.spec.ts index 85cc31e736..aee0f03e32 100644 --- a/packages/sheets-find-replace/src/controllers/__tests__/utils.spec.ts +++ b/packages/sheets-find-replace/src/controllers/__tests__/utils.spec.ts @@ -14,10 +14,9 @@ * limitations under the License. */ -import type { Dependency, IWorkbookData, Worksheet } from '@univerjs/core'; - +import type { Dependency, IWorkbookData, Workbook, Worksheet } from '@univerjs/core'; import type { IFindQuery } from '@univerjs/find-replace'; -import { ILogService, IUniverInstanceService, LocaleType, LogLevel, Univer } from '@univerjs/core'; +import { ILogService, IUniverInstanceService, LocaleType, LogLevel, Univer, UniverInstanceType } from '@univerjs/core'; import { FindBy, FindDirection, FindScope } from '@univerjs/find-replace'; import { afterEach, beforeEach, describe, expect, it } from 'vitest'; import { hitCell } from '../sheet-find-replace.controller'; @@ -310,7 +309,7 @@ function createTestBed(dependencies?: Dependency[]) { dependencies?.forEach((d) => injector.add(d)); - const sheet = univer.createUniverSheet(TEST_WORKBOOK_DATA); + const sheet = univer.createUnit(UniverInstanceType.UNIVER_SHEET, TEST_WORKBOOK_DATA); const univerInstanceService = get(IUniverInstanceService); univerInstanceService.focusUnit(TEST_WORKBOOK_DATA.id); diff --git a/packages/sheets-formula-ui/package.json b/packages/sheets-formula-ui/package.json index 6e72769305..492f2f770e 100644 --- a/packages/sheets-formula-ui/package.json +++ b/packages/sheets-formula-ui/package.json @@ -97,7 +97,7 @@ "rxjs": "^7.8.2", "tailwindcss": "3.4.17", "typescript": "^5.8.3", - "vite": "^6.3.5", + "vite": "^7.0.5", "vitest": "^3.2.4" } } diff --git a/packages/sheets-formula-ui/src/facade/__tests__/create-formula-test-bed.ts b/packages/sheets-formula-ui/src/facade/__tests__/create-formula-test-bed.ts index f196590927..9b3a928b91 100644 --- a/packages/sheets-formula-ui/src/facade/__tests__/create-formula-test-bed.ts +++ b/packages/sheets-formula-ui/src/facade/__tests__/create-formula-test-bed.ts @@ -122,7 +122,7 @@ export function createFormulaTestBed(workbookData?: IWorkbookData, dependencies? injector.get(LocaleService).load({ zhCN, enUS }); univer.registerPlugin(TestPlugin); - const sheet = univer.createUniverSheet(workbookData || getTestWorkbookDataDemo()); + const sheet = univer.createUnit(UniverInstanceType.UNIVER_SHEET, workbookData || getTestWorkbookDataDemo()); const univerInstanceService = injector.get(IUniverInstanceService); univerInstanceService.focusUnit('test'); diff --git a/packages/sheets-formula/package.json b/packages/sheets-formula/package.json index e389c16996..60620cd286 100644 --- a/packages/sheets-formula/package.json +++ b/packages/sheets-formula/package.json @@ -87,7 +87,7 @@ "@univerjs/docs": "workspace:*", "rxjs": "^7.8.2", "typescript": "^5.8.3", - "vite": "^6.3.5", + "vite": "^7.0.5", "vitest": "^3.2.4" } } diff --git a/packages/sheets-formula/src/controllers/utils/__tests__/offset-formula-data.spec.ts b/packages/sheets-formula/src/controllers/utils/__tests__/offset-formula-data.spec.ts index 04b7aa9d56..050ad36704 100644 --- a/packages/sheets-formula/src/controllers/utils/__tests__/offset-formula-data.spec.ts +++ b/packages/sheets-formula/src/controllers/utils/__tests__/offset-formula-data.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { removeFormulaData } from '../offset-formula-data'; describe('Utils offset formula data test', () => { diff --git a/packages/sheets-formula/src/controllers/utils/__tests__/ref-range-formula.spec.ts b/packages/sheets-formula/src/controllers/utils/__tests__/ref-range-formula.spec.ts index 9f95d90c81..0d867a6634 100644 --- a/packages/sheets-formula/src/controllers/utils/__tests__/ref-range-formula.spec.ts +++ b/packages/sheets-formula/src/controllers/utils/__tests__/ref-range-formula.spec.ts @@ -14,9 +14,8 @@ * limitations under the License. */ -import { describe, expect, it } from 'vitest'; - import type { IFormulaDataItem } from '@univerjs/engine-formula'; +import { describe, expect, it } from 'vitest'; import { formulaDataItemToCellData, formulaDataToCellData, isFormulaDataItem } from '../ref-range-formula'; describe('Ref range formula test', () => { diff --git a/packages/sheets-graphics/package.json b/packages/sheets-graphics/package.json index fffdeb6799..c51c9fbaac 100644 --- a/packages/sheets-graphics/package.json +++ b/packages/sheets-graphics/package.json @@ -63,7 +63,7 @@ "devDependencies": { "@univerjs-infra/shared": "workspace:*", "typescript": "^5.8.3", - "vite": "^6.3.5", + "vite": "^7.0.5", "vitest": "^3.2.4" } } diff --git a/packages/sheets-hyper-link-ui/package.json b/packages/sheets-hyper-link-ui/package.json index 86bd45086f..64cb45f5c8 100644 --- a/packages/sheets-hyper-link-ui/package.json +++ b/packages/sheets-hyper-link-ui/package.json @@ -100,7 +100,7 @@ "rxjs": "^7.8.2", "tailwindcss": "3.4.17", "typescript": "^5.8.3", - "vite": "^6.3.5", + "vite": "^7.0.5", "vitest": "^3.2.4" } } diff --git a/packages/sheets-hyper-link/package.json b/packages/sheets-hyper-link/package.json index b4a02ed401..f6b487d213 100644 --- a/packages/sheets-hyper-link/package.json +++ b/packages/sheets-hyper-link/package.json @@ -79,7 +79,7 @@ "@univerjs-infra/shared": "workspace:*", "rxjs": "^7.8.2", "typescript": "^5.8.3", - "vite": "^6.3.5", + "vite": "^7.0.5", "vitest": "^3.2.4" } } diff --git a/packages/sheets-note-ui/package.json b/packages/sheets-note-ui/package.json index 16c166464b..7de0bdc9ca 100644 --- a/packages/sheets-note-ui/package.json +++ b/packages/sheets-note-ui/package.json @@ -79,7 +79,7 @@ "postcss": "^8.5.6", "tailwindcss": "3.4.17", "typescript": "^5.8.3", - "vite": "^6.3.5", + "vite": "^7.0.5", "vitest": "^3.2.4" } } diff --git a/packages/sheets-note/package.json b/packages/sheets-note/package.json index f9202bd30d..4191e352e0 100644 --- a/packages/sheets-note/package.json +++ b/packages/sheets-note/package.json @@ -77,7 +77,7 @@ "@univerjs-infra/shared": "workspace:*", "rxjs": "^7.8.2", "typescript": "^5.8.3", - "vite": "^6.3.5", + "vite": "^7.0.5", "vitest": "^3.2.4" } } diff --git a/packages/sheets-numfmt-ui/package.json b/packages/sheets-numfmt-ui/package.json index 062ba9c02b..65bb9f84e3 100644 --- a/packages/sheets-numfmt-ui/package.json +++ b/packages/sheets-numfmt-ui/package.json @@ -85,7 +85,7 @@ "rxjs": "^7.8.2", "tailwindcss": "3.4.17", "typescript": "^5.8.3", - "vite": "^6.3.5", + "vite": "^7.0.5", "vitest": "^3.2.4" } } diff --git a/packages/sheets-numfmt-ui/src/controllers/__tests__/test.util.ts b/packages/sheets-numfmt-ui/src/controllers/__tests__/test.util.ts index 843927a653..a9a5992650 100644 --- a/packages/sheets-numfmt-ui/src/controllers/__tests__/test.util.ts +++ b/packages/sheets-numfmt-ui/src/controllers/__tests__/test.util.ts @@ -82,7 +82,7 @@ export const createTestBed = (defaultWorkbook?: IWorkbookData, dependencies?: De univer.registerPlugin(TestPlugin); const workbookJson = defaultWorkbook ?? TEST_WORKBOOK_DATA_DEMO(); - const sheet = univer.createUniverSheet(workbookJson); + const sheet = univer.createUnit(UniverInstanceType.UNIVER_SHEET, workbookJson); const univerInstanceService = injector.get(IUniverInstanceService); const commandService = injector.get(ICommandService); diff --git a/packages/sheets-numfmt/package.json b/packages/sheets-numfmt/package.json index 5968f4b012..64e2e75e57 100644 --- a/packages/sheets-numfmt/package.json +++ b/packages/sheets-numfmt/package.json @@ -80,7 +80,7 @@ "@univerjs-infra/shared": "workspace:*", "rxjs": "^7.8.2", "typescript": "^5.8.3", - "vite": "^6.3.5", + "vite": "^7.0.5", "vitest": "^3.2.4" } } diff --git a/packages/sheets-numfmt/src/__tests__/utils.test.ts b/packages/sheets-numfmt/src/__tests__/utils.test.ts index 981d104288..8004a3408e 100644 --- a/packages/sheets-numfmt/src/__tests__/utils.test.ts +++ b/packages/sheets-numfmt/src/__tests__/utils.test.ts @@ -17,14 +17,9 @@ import { cellToRange, isPatternEqualWithoutDecimal } from '@univerjs/core'; import { RemoveNumfmtMutation, SetNumfmtMutation } from '@univerjs/sheets'; import { describe, expect, it } from 'vitest'; - import { currencySymbols } from '../base/const/currency-symbols'; import { getCurrencyType } from '../utils/currency'; -import { - getDecimalFromPattern, - getDecimalString, - setPatternDecimal, -} from '../utils/decimal'; +import { getDecimalFromPattern, getDecimalString, setPatternDecimal } from '../utils/decimal'; import { mergeNumfmtMutations } from '../utils/mutation'; describe('test numfmt utils function', () => { diff --git a/packages/sheets-sort-ui/package.json b/packages/sheets-sort-ui/package.json index 98d22dd754..b419671f02 100644 --- a/packages/sheets-sort-ui/package.json +++ b/packages/sheets-sort-ui/package.json @@ -83,7 +83,7 @@ "rxjs": "^7.8.2", "tailwindcss": "3.4.17", "typescript": "^5.8.3", - "vite": "^6.3.5", + "vite": "^7.0.5", "vitest": "^3.2.4" } } diff --git a/packages/sheets-sort-ui/src/commands/commands/__tests__/create-command-test-bed.ts b/packages/sheets-sort-ui/src/commands/commands/__tests__/create-command-test-bed.ts index 9fc325ed18..5704fe41bc 100644 --- a/packages/sheets-sort-ui/src/commands/commands/__tests__/create-command-test-bed.ts +++ b/packages/sheets-sort-ui/src/commands/commands/__tests__/create-command-test-bed.ts @@ -168,7 +168,7 @@ export function createCommandTestBed(workbookData?: IWorkbookData, dependencies? } univer.registerPlugin(TestPlugin); - const sheet = univer.createUniverSheet(Tools.deepClone(workbookData || TEST_WORKBOOK_DATA_DEMO)); + const sheet = univer.createUnit(UniverInstanceType.UNIVER_SHEET, Tools.deepClone(workbookData ?? TEST_WORKBOOK_DATA_DEMO)); const univerInstanceService = injector.get(IUniverInstanceService); univerInstanceService.focusUnit('test'); diff --git a/packages/sheets-sort/package.json b/packages/sheets-sort/package.json index f2ccb5f64e..ce8de46490 100644 --- a/packages/sheets-sort/package.json +++ b/packages/sheets-sort/package.json @@ -80,7 +80,7 @@ "devDependencies": { "@univerjs-infra/shared": "workspace:*", "typescript": "^5.8.3", - "vite": "^6.3.5", + "vite": "^7.0.5", "vitest": "^3.2.4" } } diff --git a/packages/sheets-sort/src/commands/commands/__tests__/create-command-test-bed.ts b/packages/sheets-sort/src/commands/commands/__tests__/create-command-test-bed.ts index f382edb193..0767976ff0 100644 --- a/packages/sheets-sort/src/commands/commands/__tests__/create-command-test-bed.ts +++ b/packages/sheets-sort/src/commands/commands/__tests__/create-command-test-bed.ts @@ -155,7 +155,7 @@ export function createCommandTestBed(workbookData?: IWorkbookData, dependencies? } univer.registerPlugin(TestPlugin); - const sheet = univer.createUniverSheet(Tools.deepClone(workbookData || TEST_WORKBOOK_DATA_DEMO)); + const sheet = univer.createUnit(UniverInstanceType.UNIVER_SHEET, Tools.deepClone(workbookData || TEST_WORKBOOK_DATA_DEMO)); const univerInstanceService = injector.get(IUniverInstanceService); univerInstanceService.focusUnit('test'); diff --git a/packages/sheets-table-ui/package.json b/packages/sheets-table-ui/package.json index 4d3696a591..b46ea6e916 100644 --- a/packages/sheets-table-ui/package.json +++ b/packages/sheets-table-ui/package.json @@ -90,7 +90,7 @@ "rxjs": "^7.8.2", "tailwindcss": "3.4.17", "typescript": "^5.8.3", - "vite": "^6.3.5", + "vite": "^7.0.5", "vitest": "^3.2.4" } } diff --git a/packages/sheets-table/package.json b/packages/sheets-table/package.json index d130384b18..d41f1606d1 100644 --- a/packages/sheets-table/package.json +++ b/packages/sheets-table/package.json @@ -81,7 +81,7 @@ "@univerjs-infra/shared": "workspace:*", "rxjs": "^7.8.2", "typescript": "^5.8.3", - "vite": "^6.3.5", + "vite": "^7.0.5", "vitest": "^3.2.4" } } diff --git a/packages/sheets-thread-comment-ui/package.json b/packages/sheets-thread-comment-ui/package.json index b81d418757..4b015f7235 100644 --- a/packages/sheets-thread-comment-ui/package.json +++ b/packages/sheets-thread-comment-ui/package.json @@ -84,7 +84,7 @@ "rxjs": "^7.8.2", "tailwindcss": "3.4.17", "typescript": "^5.8.3", - "vite": "^6.3.5", + "vite": "^7.0.5", "vitest": "^3.2.4" } } diff --git a/packages/sheets-thread-comment/package.json b/packages/sheets-thread-comment/package.json index 20a669f60d..13d84600e3 100644 --- a/packages/sheets-thread-comment/package.json +++ b/packages/sheets-thread-comment/package.json @@ -79,7 +79,7 @@ "@univerjs-infra/shared": "workspace:*", "rxjs": "^7.8.2", "typescript": "^5.8.3", - "vite": "^6.3.5", + "vite": "^7.0.5", "vitest": "^3.2.4" } } diff --git a/packages/sheets-ui/package.json b/packages/sheets-ui/package.json index 939c27b6f3..5f3801155e 100644 --- a/packages/sheets-ui/package.json +++ b/packages/sheets-ui/package.json @@ -99,7 +99,7 @@ "rxjs": "^7.8.2", "tailwindcss": "3.4.17", "typescript": "^5.8.3", - "vite": "^6.3.5", + "vite": "^7.0.5", "vitest": "^3.2.4" } } diff --git a/packages/sheets-ui/src/commands/commands/__tests__/selection-utils.spec.ts b/packages/sheets-ui/src/commands/commands/__tests__/selection-utils.spec.ts index 6b630805a3..a8ca93ad73 100644 --- a/packages/sheets-ui/src/commands/commands/__tests__/selection-utils.spec.ts +++ b/packages/sheets-ui/src/commands/commands/__tests__/selection-utils.spec.ts @@ -15,7 +15,6 @@ */ import { describe, expect, it } from 'vitest'; - import { isAllColumnsCovered, isAllRowsCovered } from '../utils/selection-utils'; describe('Test selection utils', () => { diff --git a/packages/sheets-ui/src/controllers/editor/__tests__/create-test-bed.ts b/packages/sheets-ui/src/controllers/editor/__tests__/create-test-bed.ts index cc011d69c9..bdb83a05b6 100644 --- a/packages/sheets-ui/src/controllers/editor/__tests__/create-test-bed.ts +++ b/packages/sheets-ui/src/controllers/editor/__tests__/create-test-bed.ts @@ -65,7 +65,7 @@ export function createTestBed(workbookData?: IWorkbookData, dependencies?: Depen } univer.registerPlugin(TestPlugin); - const sheet = univer.createUniverSheet(workbookData || getTestWorkbookDataDemo()); + const sheet = univer.createUnit(UniverInstanceType.UNIVER_SHEET, workbookData ?? getTestWorkbookDataDemo()); const univerInstanceService = injector.get(IUniverInstanceService); univerInstanceService.focusUnit('test'); diff --git a/packages/sheets-ui/src/controllers/menu/__tests__/create-menu-test-bed.ts b/packages/sheets-ui/src/controllers/menu/__tests__/create-menu-test-bed.ts index 9ecdef09bb..1114d0dfa2 100644 --- a/packages/sheets-ui/src/controllers/menu/__tests__/create-menu-test-bed.ts +++ b/packages/sheets-ui/src/controllers/menu/__tests__/create-menu-test-bed.ts @@ -17,7 +17,21 @@ import type { IWorkbookData } from '@univerjs/core'; import { Inject, Injector, LocaleType, Plugin, Univer, UniverInstanceType } from '@univerjs/core'; import { IRenderManagerService, RenderManagerService } from '@univerjs/engine-render'; -import { RangeProtectionCache, RangeProtectionRefRangeService, RangeProtectionRenderModel, RangeProtectionRuleModel, RangeProtectionService, RefRangeService, SheetInterceptorService, SheetSkeletonService, SheetsSelectionsService, WorkbookPermissionService, WorksheetPermissionService, WorksheetProtectionPointModel, WorksheetProtectionRuleModel } from '@univerjs/sheets'; +import { + RangeProtectionCache, + RangeProtectionRefRangeService, + RangeProtectionRenderModel, + RangeProtectionRuleModel, + RangeProtectionService, + RefRangeService, + SheetInterceptorService, + SheetSkeletonService, + SheetsSelectionsService, + WorkbookPermissionService, + WorksheetPermissionService, + WorksheetProtectionPointModel, + WorksheetProtectionRuleModel, +} from '@univerjs/sheets'; import { IMenuManagerService, IPlatformService, IShortcutService, MenuManagerService, PlatformService, ShortcutService } from '@univerjs/ui'; const TEST_WORKBOOK_DATA_DEMO: IWorkbookData = { @@ -83,7 +97,7 @@ export function createMenuTestBed() { } univer.registerPlugin(TestPlugin); - const sheet = univer.createUniverSheet(TEST_WORKBOOK_DATA_DEMO); + const sheet = univer.createUnit(UniverInstanceType.UNIVER_SHEET, TEST_WORKBOOK_DATA_DEMO); return { univer, diff --git a/packages/sheets-ui/src/services/clipboard/__tests__/clipboard-test-bed.ts b/packages/sheets-ui/src/services/clipboard/__tests__/clipboard-test-bed.ts index acb0dc3fd9..c77b43ed49 100644 --- a/packages/sheets-ui/src/services/clipboard/__tests__/clipboard-test-bed.ts +++ b/packages/sheets-ui/src/services/clipboard/__tests__/clipboard-test-bed.ts @@ -16,7 +16,7 @@ /* eslint-disable ts/no-explicit-any */ -import type { Dependency, IDisposable, IWorkbookData } from '@univerjs/core'; +import type { Dependency, IDisposable, IWorkbookData, Workbook } from '@univerjs/core'; import { DisposableCollection, ILogService, Inject, Injector, IUniverInstanceService, LocaleService, LocaleType, LogLevel, Plugin, Univer, UniverInstanceType } from '@univerjs/core'; import { CalculateFormulaService, DefinedNamesService, FormulaCurrentConfigService, FormulaDataModel, FormulaRuntimeService, HyperlinkEngineFormulaService, ICalculateFormulaService, IDefinedNamesService, IFormulaCurrentConfigService, IFormulaRuntimeService, IHyperlinkEngineFormulaService, LexerTreeBuilder } from '@univerjs/engine-formula'; import { IRenderManagerService, RenderManagerService } from '@univerjs/engine-render'; @@ -587,7 +587,7 @@ export function clipboardTestBed(workbookData?: IWorkbookData, dependencies?: De } univer.registerPlugin(TestPlugin); - const sheet = univer.createUniverSheet(workbookData || TEST_WORKBOOK_DATA_DEMO); + const sheet = univer.createUnit(UniverInstanceType.UNIVER_SHEET, workbookData || TEST_WORKBOOK_DATA_DEMO); const univerInstanceService = get(IUniverInstanceService); univerInstanceService.focusUnit('test'); @@ -597,7 +597,6 @@ export function clipboardTestBed(workbookData?: IWorkbookData, dependencies?: De // NOTE: This is pretty hack for the test. But with these hacks we can avoid to create // real canvas-environment in univerjs/sheets-ui. If some we have to do that, this hack could be removed. - const mockSheetSkService = new SheetSkeletonService(injector); const fakeSheetSkeletonManagerService = new SheetSkeletonManagerService({ unit: sheet, unitId: 'test', diff --git a/packages/sheets-ui/src/services/clipboard/__tests__/utils.spec.ts b/packages/sheets-ui/src/services/clipboard/__tests__/utils.spec.ts index 7454037979..ef38ee4985 100644 --- a/packages/sheets-ui/src/services/clipboard/__tests__/utils.spec.ts +++ b/packages/sheets-ui/src/services/clipboard/__tests__/utils.spec.ts @@ -16,9 +16,7 @@ import type { IMutationInfo, IRange } from '@univerjs/core'; import { SetRangeValuesMutation } from '@univerjs/sheets'; - import { describe, expect, it } from 'vitest'; - import { getRepeatRange, mergeSetRangeValues } from '../utils'; describe('test getRepeatRange', () => { diff --git a/packages/sheets-zen-editor/package.json b/packages/sheets-zen-editor/package.json index d1da6d1a78..528c5d84f5 100644 --- a/packages/sheets-zen-editor/package.json +++ b/packages/sheets-zen-editor/package.json @@ -96,7 +96,7 @@ "rxjs": "^7.8.2", "tailwindcss": "3.4.17", "typescript": "^5.8.3", - "vite": "^6.3.5", + "vite": "^7.0.5", "vitest": "^3.2.4" } } diff --git a/packages/sheets/package.json b/packages/sheets/package.json index 522d329507..06dd1a9e0b 100644 --- a/packages/sheets/package.json +++ b/packages/sheets/package.json @@ -89,7 +89,7 @@ "@univerjs/network": "workspace:*", "rxjs": "^7.8.2", "typescript": "^5.8.3", - "vite": "^6.3.5", + "vite": "^7.0.5", "vitest": "^3.2.4" } } diff --git a/packages/sheets/src/basics/__tests__/range-merge.spec.ts b/packages/sheets/src/basics/__tests__/range-merge.spec.ts index 7afc4891cb..9a06b78b14 100644 --- a/packages/sheets/src/basics/__tests__/range-merge.spec.ts +++ b/packages/sheets/src/basics/__tests__/range-merge.spec.ts @@ -17,7 +17,6 @@ import type { IRange } from '@univerjs/core'; import { cellToRange } from '@univerjs/core'; import { describe, expect, it } from 'vitest'; - import { rangeMerge, RangeMergeUtil } from '../range-merge'; describe('test rangeMerge', () => { diff --git a/packages/sheets/src/basics/__tests__/utils.spec.ts b/packages/sheets/src/basics/__tests__/utils.spec.ts index 2f092ec3e5..8b98a44204 100644 --- a/packages/sheets/src/basics/__tests__/utils.spec.ts +++ b/packages/sheets/src/basics/__tests__/utils.spec.ts @@ -17,7 +17,6 @@ import type { IRange } from '@univerjs/core'; import { cellToRange } from '@univerjs/core'; import { describe, expect, it } from 'vitest'; - import { generateNullCell, generateNullCellStyle, generateNullCellValue } from '../utils'; describe('Test utils', () => { diff --git a/packages/sheets/src/commands/mutations/__tests__/move-rows-cols.mutation.spec.ts b/packages/sheets/src/commands/mutations/__tests__/move-rows-cols.mutation.spec.ts index 948d31c7b7..50e6dd00e2 100644 --- a/packages/sheets/src/commands/mutations/__tests__/move-rows-cols.mutation.spec.ts +++ b/packages/sheets/src/commands/mutations/__tests__/move-rows-cols.mutation.spec.ts @@ -14,9 +14,8 @@ * limitations under the License. */ -import { describe, expect, it } from 'vitest'; - import type { IMoveColumnsMutationParams, IMoveRowsMutationParams } from '../move-rows-cols.mutation'; +import { describe, expect, it } from 'vitest'; import { MoveColsMutationUndoFactory, MoveRowsMutationUndoFactory } from '../move-rows-cols.mutation'; describe('Test moving rows & cols', () => { diff --git a/packages/sheets/src/controllers/__tests__/formula/create-function-test-bed.ts b/packages/sheets/src/controllers/__tests__/formula/create-function-test-bed.ts index 2b34cf2ce2..f8b364b0f7 100644 --- a/packages/sheets/src/controllers/__tests__/formula/create-function-test-bed.ts +++ b/packages/sheets/src/controllers/__tests__/formula/create-function-test-bed.ts @@ -242,7 +242,7 @@ export function createFunctionTestBed(workbookData?: IWorkbookData, dependencies } univer.registerPlugin(TestPlugin); - const sheet = univer.createUniverSheet(workbookData || getTestWorkbookData()); + const sheet = univer.createUnit(UniverInstanceType.UNIVER_SHEET, workbookData || getTestWorkbookData()); const univerInstanceService = get(IUniverInstanceService); univerInstanceService.focusUnit('test'); diff --git a/packages/slides-ui/package.json b/packages/slides-ui/package.json index 01ee00f616..0e02af297e 100644 --- a/packages/slides-ui/package.json +++ b/packages/slides-ui/package.json @@ -85,7 +85,7 @@ "rxjs": "^7.8.2", "tailwindcss": "3.4.17", "typescript": "^5.8.3", - "vite": "^6.3.5", + "vite": "^7.0.5", "vitest": "^3.2.4" } } diff --git a/packages/slides/package.json b/packages/slides/package.json index bd60a6e28d..271c7e770f 100644 --- a/packages/slides/package.json +++ b/packages/slides/package.json @@ -64,7 +64,7 @@ "devDependencies": { "@univerjs-infra/shared": "workspace:*", "typescript": "^5.8.3", - "vite": "^6.3.5", + "vite": "^7.0.5", "vitest": "^3.2.4" } } diff --git a/packages/telemetry/package.json b/packages/telemetry/package.json index 48bf629315..4d95657a90 100644 --- a/packages/telemetry/package.json +++ b/packages/telemetry/package.json @@ -60,7 +60,7 @@ "devDependencies": { "@univerjs-infra/shared": "workspace:*", "typescript": "^5.8.3", - "vite": "^6.3.5", + "vite": "^7.0.5", "vitest": "^3.2.4" } } diff --git a/packages/themes/package.json b/packages/themes/package.json index dee34957c7..764c25af39 100644 --- a/packages/themes/package.json +++ b/packages/themes/package.json @@ -57,6 +57,6 @@ }, "devDependencies": { "@univerjs-infra/shared": "workspace:*", - "vite": "^6.3.5" + "vite": "^7.0.5" } } diff --git a/packages/thread-comment-ui/package.json b/packages/thread-comment-ui/package.json index fa479403ec..4090d91621 100644 --- a/packages/thread-comment-ui/package.json +++ b/packages/thread-comment-ui/package.json @@ -80,7 +80,7 @@ "rxjs": "^7.8.2", "tailwindcss": "3.4.17", "typescript": "^5.8.3", - "vite": "^6.3.5", + "vite": "^7.0.5", "vitest": "^3.2.4" } } diff --git a/packages/thread-comment/package.json b/packages/thread-comment/package.json index cfa9467524..118c5931c5 100644 --- a/packages/thread-comment/package.json +++ b/packages/thread-comment/package.json @@ -65,7 +65,7 @@ "@univerjs-infra/shared": "workspace:*", "rxjs": "^7.8.2", "typescript": "^5.8.3", - "vite": "^6.3.5", + "vite": "^7.0.5", "vitest": "^3.2.4" } } diff --git a/packages/ui-adapter-vue3/package.json b/packages/ui-adapter-vue3/package.json index 003701e6ab..6b8df5af0f 100644 --- a/packages/ui-adapter-vue3/package.json +++ b/packages/ui-adapter-vue3/package.json @@ -67,7 +67,7 @@ "devDependencies": { "@univerjs-infra/shared": "workspace:*", "typescript": "^5.8.3", - "vite": "^6.3.5", + "vite": "^7.0.5", "vitest": "^3.2.4", "vue": "^3.5.17" } diff --git a/packages/ui-adapter-web-component/package.json b/packages/ui-adapter-web-component/package.json index 2794d4fb69..5447f2e7a4 100644 --- a/packages/ui-adapter-web-component/package.json +++ b/packages/ui-adapter-web-component/package.json @@ -67,7 +67,7 @@ "devDependencies": { "@univerjs-infra/shared": "workspace:*", "typescript": "^5.8.3", - "vite": "^6.3.5", + "vite": "^7.0.5", "vitest": "^3.2.4" } } diff --git a/packages/ui/package.json b/packages/ui/package.json index c386abc1c1..e1157de63f 100644 --- a/packages/ui/package.json +++ b/packages/ui/package.json @@ -98,7 +98,7 @@ "tailwindcss": "3.4.17", "tailwindcss-animate": "^1.0.7", "typescript": "^5.8.3", - "vite": "^6.3.5", + "vite": "^7.0.5", "vitest": "^3.2.4" } } diff --git a/packages/uniscript/package.json b/packages/uniscript/package.json index 8e7830d8c2..6df67c1592 100644 --- a/packages/uniscript/package.json +++ b/packages/uniscript/package.json @@ -83,7 +83,7 @@ "rxjs": "^7.8.2", "tailwindcss": "3.4.17", "typescript": "^5.8.3", - "vite": "^6.3.5", + "vite": "^7.0.5", "vitest": "^3.2.4" } } diff --git a/packages/watermark/package.json b/packages/watermark/package.json index 26364400ba..5a13a642e3 100644 --- a/packages/watermark/package.json +++ b/packages/watermark/package.json @@ -79,7 +79,7 @@ "@univerjs-infra/shared": "workspace:*", "rxjs": "^7.8.2", "typescript": "^5.8.3", - "vite": "^6.3.5", + "vite": "^7.0.5", "vitest": "^3.2.4" } } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 943b14c869..02d7f0ab45 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -15,11 +15,11 @@ importers: .: devDependencies: '@antfu/eslint-config': - specifier: 4.16.2 - version: 4.16.2(@eslint-react/eslint-plugin@1.52.3(eslint@9.31.0(jiti@2.4.2))(ts-api-utils@2.1.0(typescript@5.8.3))(typescript@5.8.3))(@vue/compiler-sfc@3.5.17)(eslint-plugin-format@1.0.1(eslint@9.31.0(jiti@2.4.2)))(eslint-plugin-react-hooks@5.2.0(eslint@9.31.0(jiti@2.4.2)))(eslint-plugin-react-refresh@0.4.20(eslint@9.31.0(jiti@2.4.2)))(eslint@9.31.0(jiti@2.4.2))(typescript@5.8.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@24.0.13)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0)) + specifier: 4.17.0 + version: 4.17.0(@eslint-react/eslint-plugin@1.52.3(eslint@9.31.0(jiti@2.4.2))(ts-api-utils@2.1.0(typescript@5.8.3))(typescript@5.8.3))(@vue/compiler-sfc@3.5.17)(eslint-plugin-format@1.0.1(eslint@9.31.0(jiti@2.4.2)))(eslint-plugin-react-hooks@5.2.0(eslint@9.31.0(jiti@2.4.2)))(eslint-plugin-react-refresh@0.4.20(eslint@9.31.0(jiti@2.4.2)))(eslint@9.31.0(jiti@2.4.2))(typescript@5.8.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@24.0.14)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0)) '@commitlint/cli': specifier: ^19.8.1 - version: 19.8.1(@types/node@24.0.13)(typescript@5.8.3) + version: 19.8.1(@types/node@24.0.14)(typescript@5.8.3) '@commitlint/config-conventional': specifier: ^19.8.1 version: 19.8.1 @@ -31,16 +31,16 @@ importers: version: 1.54.1 '@release-it-plugins/workspaces': specifier: ^5.0.3 - version: 5.0.3(release-it@19.0.3(@types/node@24.0.13)(magicast@0.3.5)) + version: 5.0.3(release-it@19.0.4(@types/node@24.0.14)(magicast@0.3.5)) '@release-it/conventional-changelog': specifier: ^10.0.1 - version: 10.0.1(conventional-commits-filter@5.0.0)(conventional-commits-parser@6.2.0)(release-it@19.0.3(@types/node@24.0.13)(magicast@0.3.5)) + version: 10.0.1(conventional-commits-filter@5.0.0)(conventional-commits-parser@6.2.0)(release-it@19.0.4(@types/node@24.0.14)(magicast@0.3.5)) '@types/fs-extra': specifier: ^11.0.4 version: 11.0.4 '@types/node': - specifier: ^24.0.13 - version: 24.0.13 + specifier: ^24.0.14 + version: 24.0.14 '@types/react': specifier: 19.1.8 version: 19.1.8 @@ -55,7 +55,7 @@ importers: version: link:packages/design '@vitejs/plugin-react': specifier: ^4.6.0 - version: 4.6.0(vite@6.3.5(@types/node@24.0.13)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0)) + version: 4.6.0(vite@7.0.5(@types/node@24.0.14)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0)) eslint: specifier: 9.31.0 version: 9.31.0(jiti@2.4.2) @@ -66,8 +66,8 @@ importers: specifier: ^3.1.1 version: 3.1.1(eslint@9.31.0(jiti@2.4.2)) eslint-plugin-jsdoc: - specifier: ^51.3.4 - version: 51.3.4(eslint@9.31.0(jiti@2.4.2)) + specifier: ^51.4.1 + version: 51.4.1(eslint@9.31.0(jiti@2.4.2)) eslint-plugin-no-barrel-import: specifier: ^0.0.2 version: 0.0.2(eslint@9.31.0(jiti@2.4.2)) @@ -93,8 +93,8 @@ importers: specifier: ^16.1.2 version: 16.1.2 posthog-node: - specifier: ^5.5.0 - version: 5.5.0 + specifier: ^5.5.1 + version: 5.5.1 react: specifier: 19.1.0 version: 19.1.0 @@ -102,8 +102,8 @@ importers: specifier: 19.1.0 version: 19.1.0(react@19.1.0) release-it: - specifier: ^19.0.3 - version: 19.0.3(@types/node@24.0.13)(magicast@0.3.5) + specifier: ^19.0.4 + version: 19.0.4(@types/node@24.0.14)(magicast@0.3.5) serve: specifier: ^14.2.4 version: 14.2.4 @@ -114,35 +114,35 @@ importers: specifier: ^4.20.3 version: 4.20.3 turbo: - specifier: ^2.5.4 - version: 2.5.4 + specifier: ^2.5.5 + version: 2.5.5 typescript: specifier: ^5.8.3 version: 5.8.3 vitest: specifier: ^3.2.4 - version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.13)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.14)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) common/shared: dependencies: '@typescript-eslint/parser': - specifier: ^8.36.0 - version: 8.36.0(eslint@9.31.0(jiti@2.4.2))(typescript@5.8.3) + specifier: ^8.37.0 + version: 8.37.0(eslint@9.31.0(jiti@2.4.2))(typescript@5.8.3) '@vitejs/plugin-react': specifier: ^4.6.0 - version: 4.6.0(vite@6.3.5(@types/node@24.0.13)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0)) + version: 4.6.0(vite@7.0.5(@types/node@24.0.14)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0)) '@vitejs/plugin-vue': specifier: ^6.0.0 - version: 6.0.0(vite@6.3.5(@types/node@24.0.13)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0))(vue@3.5.17(typescript@5.8.3)) + version: 6.0.0(vite@7.0.5(@types/node@24.0.14)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0))(vue@3.5.17(typescript@5.8.3)) '@vitest/coverage-istanbul': specifier: ^3.2.4 - version: 3.2.4(vitest@3.2.4(@types/debug@4.1.12)(@types/node@24.0.13)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0)) + version: 3.2.4(vitest@3.2.4(@types/debug@4.1.12)(@types/node@24.0.14)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0)) autoprefixer: specifier: ^10.4.21 version: 10.4.21(postcss@8.5.6) eslint-plugin-better-tailwindcss: - specifier: ^3.6.0 - version: 3.6.0(eslint@9.31.0(jiti@2.4.2))(tailwindcss@3.4.17) + specifier: ^3.6.2 + version: 3.6.2(eslint@9.31.0(jiti@2.4.2))(tailwindcss@3.4.17) fs-extra: specifier: ^11.3.0 version: 11.3.0 @@ -168,17 +168,17 @@ importers: specifier: 3.4.17 version: 3.4.17 vite: - specifier: ^6.3.5 - version: 6.3.5(@types/node@24.0.13)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + specifier: ^7.0.5 + version: 7.0.5(@types/node@24.0.14)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) vite-plugin-dts: specifier: ^4.5.4 - version: 4.5.4(@types/node@24.0.13)(rollup@4.40.2)(typescript@5.8.3)(vite@6.3.5(@types/node@24.0.13)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0)) + version: 4.5.4(@types/node@24.0.14)(rollup@4.45.1)(typescript@5.8.3)(vite@7.0.5(@types/node@24.0.14)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0)) vite-plugin-external: specifier: ^6.2.2 version: 6.2.2 vitest: specifier: ^3.2.4 - version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.13)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.14)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) devDependencies: '@types/fs-extra': specifier: ^11.0.4 @@ -197,16 +197,16 @@ importers: dependencies: '@chromatic-com/storybook': specifier: ^4.0.1 - version: 4.0.1(storybook@9.0.16(@testing-library/dom@10.4.0)(prettier@3.5.3)) + version: 4.0.1(storybook@9.0.17(@testing-library/dom@10.4.0)(prettier@3.6.2)) '@storybook/addon-docs': - specifier: ^9.0.16 - version: 9.0.16(@types/react@19.1.8)(storybook@9.0.16(@testing-library/dom@10.4.0)(prettier@3.5.3)) + specifier: ^9.0.17 + version: 9.0.17(@types/react@19.1.8)(storybook@9.0.17(@testing-library/dom@10.4.0)(prettier@3.6.2)) '@storybook/addon-links': - specifier: ^9.0.16 - version: 9.0.16(react@19.1.0)(storybook@9.0.16(@testing-library/dom@10.4.0)(prettier@3.5.3)) + specifier: ^9.0.17 + version: 9.0.17(react@19.1.0)(storybook@9.0.17(@testing-library/dom@10.4.0)(prettier@3.6.2)) '@storybook/addon-styling-webpack': specifier: ^2.0.0 - version: 2.0.0(storybook@9.0.16(@testing-library/dom@10.4.0)(prettier@3.5.3))(webpack@5.99.8(@swc/core@1.11.24)(esbuild@0.25.6)) + version: 2.0.0(storybook@9.0.17(@testing-library/dom@10.4.0)(prettier@3.6.2))(webpack@5.99.8(@swc/core@1.11.24)(esbuild@0.25.6)) '@storybook/addon-webpack5-compiler-swc': specifier: ^3.0.0 version: 3.0.0(webpack@5.99.8(@swc/core@1.11.24)(esbuild@0.25.6)) @@ -214,11 +214,11 @@ importers: specifier: ^1.4.0 version: 1.4.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) '@storybook/react': - specifier: ^9.0.16 - version: 9.0.16(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(storybook@9.0.16(@testing-library/dom@10.4.0)(prettier@3.5.3))(typescript@5.8.3) + specifier: ^9.0.17 + version: 9.0.17(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(storybook@9.0.17(@testing-library/dom@10.4.0)(prettier@3.6.2))(typescript@5.8.3) '@storybook/react-webpack5': - specifier: ^9.0.16 - version: 9.0.16(@swc/core@1.11.24)(esbuild@0.25.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(storybook@9.0.16(@testing-library/dom@10.4.0)(prettier@3.5.3))(typescript@5.8.3) + specifier: ^9.0.17 + version: 9.0.17(@swc/core@1.11.24)(esbuild@0.25.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(storybook@9.0.17(@testing-library/dom@10.4.0)(prettier@3.6.2))(typescript@5.8.3) '@univerjs/core': specifier: workspace:* version: link:../../packages/core @@ -238,8 +238,8 @@ importers: specifier: ^8.1.1 version: 8.1.1(postcss@8.5.6)(typescript@5.8.3)(webpack@5.99.8(@swc/core@1.11.24)(esbuild@0.25.6)) storybook: - specifier: ^9.0.16 - version: 9.0.16(@testing-library/dom@10.4.0)(prettier@3.5.3) + specifier: ^9.0.17 + version: 9.0.17(@testing-library/dom@10.4.0)(prettier@3.6.2) storybook-addon-swc: specifier: ^1.2.0 version: 1.2.0(@swc/core@1.11.24)(terser-webpack-plugin@5.3.14(@swc/core@1.11.24)(esbuild@0.25.6)(webpack@5.99.8(@swc/core@1.11.24)(esbuild@0.25.6)))(webpack@5.99.8(@swc/core@1.11.24)(esbuild@0.25.6)) @@ -489,7 +489,7 @@ importers: version: 19.1.0(react@19.1.0) react-mosaic-component: specifier: ^6.1.1 - version: 6.1.1(@types/node@24.0.13)(@types/react@19.1.8)(dnd-core@16.0.1)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + version: 6.1.1(@types/node@24.0.14)(@types/react@19.1.8)(dnd-core@16.0.1)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) devDependencies: '@types/fs-extra': specifier: ^11.0.4 @@ -740,11 +740,11 @@ importers: specifier: ^5.8.3 version: 5.8.3 vite: - specifier: ^6.3.5 - version: 6.3.5(@types/node@24.0.13)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + specifier: ^7.0.5 + version: 7.0.5(@types/node@24.0.14)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) vitest: specifier: ^3.2.4 - version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.13)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.14)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) vue: specifier: ^3.5.17 version: 3.5.17(typescript@5.8.3) @@ -789,11 +789,11 @@ importers: specifier: ^5.8.3 version: 5.8.3 vite: - specifier: ^6.3.5 - version: 6.3.5(@types/node@24.0.13)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + specifier: ^7.0.5 + version: 7.0.5(@types/node@24.0.14)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) vitest: specifier: ^3.2.4 - version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.13)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.14)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) packages-experimental/uni-formula: dependencies: @@ -808,11 +808,11 @@ importers: specifier: ^5.8.3 version: 5.8.3 vite: - specifier: ^6.3.5 - version: 6.3.5(@types/node@24.0.13)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + specifier: ^7.0.5 + version: 7.0.5(@types/node@24.0.14)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) vitest: specifier: ^3.2.4 - version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.13)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.14)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) packages-experimental/uni-formula-ui: dependencies: @@ -872,11 +872,11 @@ importers: specifier: ^5.8.3 version: 5.8.3 vite: - specifier: ^6.3.5 - version: 6.3.5(@types/node@24.0.13)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + specifier: ^7.0.5 + version: 7.0.5(@types/node@24.0.14)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) vitest: specifier: ^3.2.4 - version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.13)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.14)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) packages-experimental/uni-sheets-ui: dependencies: @@ -930,11 +930,11 @@ importers: specifier: ^5.8.3 version: 5.8.3 vite: - specifier: ^6.3.5 - version: 6.3.5(@types/node@24.0.13)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + specifier: ^7.0.5 + version: 7.0.5(@types/node@24.0.14)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) vitest: specifier: ^3.2.4 - version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.13)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.14)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) packages-experimental/uni-slides-ui: dependencies: @@ -979,11 +979,11 @@ importers: specifier: ^5.8.3 version: 5.8.3 vite: - specifier: ^6.3.5 - version: 6.3.5(@types/node@24.0.13)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + specifier: ^7.0.5 + version: 7.0.5(@types/node@24.0.14)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) vitest: specifier: ^3.2.4 - version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.13)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.14)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) packages-experimental/uniui: dependencies: @@ -1040,11 +1040,11 @@ importers: specifier: ^5.8.3 version: 5.8.3 vite: - specifier: ^6.3.5 - version: 6.3.5(@types/node@24.0.13)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + specifier: ^7.0.5 + version: 7.0.5(@types/node@24.0.14)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) vitest: specifier: ^3.2.4 - version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.13)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.14)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) packages/action-recorder: dependencies: @@ -1086,11 +1086,11 @@ importers: specifier: ^5.8.3 version: 5.8.3 vite: - specifier: ^6.3.5 - version: 6.3.5(@types/node@24.0.13)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + specifier: ^7.0.5 + version: 7.0.5(@types/node@24.0.14)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) vitest: specifier: ^3.2.4 - version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.13)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.14)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) packages/core: dependencies: @@ -1150,11 +1150,11 @@ importers: specifier: ^5.8.3 version: 5.8.3 vite: - specifier: ^6.3.5 - version: 6.3.5(@types/node@24.0.13)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + specifier: ^7.0.5 + version: 7.0.5(@types/node@24.0.14)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) vitest: specifier: ^3.2.4 - version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.13)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.14)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) packages/data-validation: dependencies: @@ -1178,11 +1178,11 @@ importers: specifier: ^5.8.3 version: 5.8.3 vite: - specifier: ^6.3.5 - version: 6.3.5(@types/node@24.0.13)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + specifier: ^7.0.5 + version: 7.0.5(@types/node@24.0.14)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) vitest: specifier: ^3.2.4 - version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.13)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.14)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) packages/design: dependencies: @@ -1284,11 +1284,11 @@ importers: specifier: ^5.8.3 version: 5.8.3 vite: - specifier: ^6.3.5 - version: 6.3.5(@types/node@24.0.13)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + specifier: ^7.0.5 + version: 7.0.5(@types/node@24.0.14)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) vitest: specifier: ^3.2.4 - version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.13)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.14)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) packages/docs: dependencies: @@ -1309,11 +1309,11 @@ importers: specifier: ^5.8.3 version: 5.8.3 vite: - specifier: ^6.3.5 - version: 6.3.5(@types/node@24.0.13)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + specifier: ^7.0.5 + version: 7.0.5(@types/node@24.0.14)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) vitest: specifier: ^3.2.4 - version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.13)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.14)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) packages/docs-drawing: dependencies: @@ -1331,11 +1331,11 @@ importers: specifier: ^5.8.3 version: 5.8.3 vite: - specifier: ^6.3.5 - version: 6.3.5(@types/node@24.0.13)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + specifier: ^7.0.5 + version: 7.0.5(@types/node@24.0.14)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) vitest: specifier: ^3.2.4 - version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.13)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.14)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) packages/docs-drawing-ui: dependencies: @@ -1386,11 +1386,11 @@ importers: specifier: ^5.8.3 version: 5.8.3 vite: - specifier: ^6.3.5 - version: 6.3.5(@types/node@24.0.13)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + specifier: ^7.0.5 + version: 7.0.5(@types/node@24.0.14)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) vitest: specifier: ^3.2.4 - version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.13)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.14)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) packages/docs-hyper-link: dependencies: @@ -1405,11 +1405,11 @@ importers: specifier: ^5.8.3 version: 5.8.3 vite: - specifier: ^6.3.5 - version: 6.3.5(@types/node@24.0.13)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + specifier: ^7.0.5 + version: 7.0.5(@types/node@24.0.14)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) vitest: specifier: ^3.2.4 - version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.13)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.14)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) packages/docs-hyper-link-ui: dependencies: @@ -1457,11 +1457,11 @@ importers: specifier: ^5.8.3 version: 5.8.3 vite: - specifier: ^6.3.5 - version: 6.3.5(@types/node@24.0.13)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + specifier: ^7.0.5 + version: 7.0.5(@types/node@24.0.14)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) vitest: specifier: ^3.2.4 - version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.13)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.14)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) packages/docs-mention-ui: dependencies: @@ -1500,11 +1500,11 @@ importers: specifier: ^5.8.3 version: 5.8.3 vite: - specifier: ^6.3.5 - version: 6.3.5(@types/node@24.0.13)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + specifier: ^7.0.5 + version: 7.0.5(@types/node@24.0.14)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) vitest: specifier: ^3.2.4 - version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.13)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.14)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) packages/docs-quick-insert-ui: dependencies: @@ -1561,11 +1561,11 @@ importers: specifier: ^5.8.3 version: 5.8.3 vite: - specifier: ^6.3.5 - version: 6.3.5(@types/node@24.0.13)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + specifier: ^7.0.5 + version: 7.0.5(@types/node@24.0.14)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) vitest: specifier: ^3.2.4 - version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.13)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.14)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) packages/docs-thread-comment-ui: dependencies: @@ -1613,11 +1613,11 @@ importers: specifier: ^5.8.3 version: 5.8.3 vite: - specifier: ^6.3.5 - version: 6.3.5(@types/node@24.0.13)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + specifier: ^7.0.5 + version: 7.0.5(@types/node@24.0.14)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) vitest: specifier: ^3.2.4 - version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.13)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.14)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) packages/docs-ui: dependencies: @@ -1671,11 +1671,11 @@ importers: specifier: ^5.8.3 version: 5.8.3 vite: - specifier: ^6.3.5 - version: 6.3.5(@types/node@24.0.13)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + specifier: ^7.0.5 + version: 7.0.5(@types/node@24.0.14)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) vitest: specifier: ^3.2.4 - version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.13)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.14)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) packages/drawing: dependencies: @@ -1696,11 +1696,11 @@ importers: specifier: ^5.8.3 version: 5.8.3 vite: - specifier: ^6.3.5 - version: 6.3.5(@types/node@24.0.13)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + specifier: ^7.0.5 + version: 7.0.5(@types/node@24.0.14)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) vitest: specifier: ^3.2.4 - version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.13)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.14)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) packages/drawing-ui: dependencies: @@ -1742,11 +1742,11 @@ importers: specifier: ^5.8.3 version: 5.8.3 vite: - specifier: ^6.3.5 - version: 6.3.5(@types/node@24.0.13)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + specifier: ^7.0.5 + version: 7.0.5(@types/node@24.0.14)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) vitest: specifier: ^3.2.4 - version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.13)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.14)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) packages/engine-formula: dependencies: @@ -1773,11 +1773,11 @@ importers: specifier: ^5.8.3 version: 5.8.3 vite: - specifier: ^6.3.5 - version: 6.3.5(@types/node@24.0.13)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + specifier: ^7.0.5 + version: 7.0.5(@types/node@24.0.14)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) vitest: specifier: ^3.2.4 - version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.13)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.14)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) packages/engine-render: dependencies: @@ -1813,11 +1813,11 @@ importers: specifier: ^5.8.3 version: 5.8.3 vite: - specifier: ^6.3.5 - version: 6.3.5(@types/node@24.0.13)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + specifier: ^7.0.5 + version: 7.0.5(@types/node@24.0.14)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) vitest: specifier: ^3.2.4 - version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.13)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.14)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) packages/find-replace: dependencies: @@ -1856,11 +1856,11 @@ importers: specifier: ^5.8.3 version: 5.8.3 vite: - specifier: ^6.3.5 - version: 6.3.5(@types/node@24.0.13)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + specifier: ^7.0.5 + version: 7.0.5(@types/node@24.0.14)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) vitest: specifier: ^3.2.4 - version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.13)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.14)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) packages/network: dependencies: @@ -1878,11 +1878,11 @@ importers: specifier: ^5.8.3 version: 5.8.3 vite: - specifier: ^6.3.5 - version: 6.3.5(@types/node@24.0.13)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + specifier: ^7.0.5 + version: 7.0.5(@types/node@24.0.14)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) vitest: specifier: ^3.2.4 - version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.13)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.14)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) packages/rpc: dependencies: @@ -1900,11 +1900,11 @@ importers: specifier: ^5.8.3 version: 5.8.3 vite: - specifier: ^6.3.5 - version: 6.3.5(@types/node@24.0.13)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + specifier: ^7.0.5 + version: 7.0.5(@types/node@24.0.14)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) vitest: specifier: ^3.2.4 - version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.13)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.14)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) packages/rpc-node: dependencies: @@ -1925,11 +1925,11 @@ importers: specifier: ^5.8.3 version: 5.8.3 vite: - specifier: ^6.3.5 - version: 6.3.5(@types/node@24.0.13)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + specifier: ^7.0.5 + version: 7.0.5(@types/node@24.0.14)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) vitest: specifier: ^3.2.4 - version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.13)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.14)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) packages/sheets: dependencies: @@ -1962,11 +1962,11 @@ importers: specifier: ^5.8.3 version: 5.8.3 vite: - specifier: ^6.3.5 - version: 6.3.5(@types/node@24.0.13)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + specifier: ^7.0.5 + version: 7.0.5(@types/node@24.0.14)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) vitest: specifier: ^3.2.4 - version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.13)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.14)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) packages/sheets-conditional-formatting: dependencies: @@ -1996,11 +1996,11 @@ importers: specifier: ^5.8.3 version: 5.8.3 vite: - specifier: ^6.3.5 - version: 6.3.5(@types/node@24.0.13)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + specifier: ^7.0.5 + version: 7.0.5(@types/node@24.0.14)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) vitest: specifier: ^3.2.4 - version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.13)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.14)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) packages/sheets-conditional-formatting-ui: dependencies: @@ -2054,11 +2054,11 @@ importers: specifier: ^5.8.3 version: 5.8.3 vite: - specifier: ^6.3.5 - version: 6.3.5(@types/node@24.0.13)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + specifier: ^7.0.5 + version: 7.0.5(@types/node@24.0.14)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) vitest: specifier: ^3.2.4 - version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.13)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.14)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) packages/sheets-crosshair-highlight: dependencies: @@ -2103,11 +2103,11 @@ importers: specifier: ^5.8.3 version: 5.8.3 vite: - specifier: ^6.3.5 - version: 6.3.5(@types/node@24.0.13)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + specifier: ^7.0.5 + version: 7.0.5(@types/node@24.0.14)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) vitest: specifier: ^3.2.4 - version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.13)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.14)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) packages/sheets-data-validation: dependencies: @@ -2140,11 +2140,11 @@ importers: specifier: ^5.8.3 version: 5.8.3 vite: - specifier: ^6.3.5 - version: 6.3.5(@types/node@24.0.13)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + specifier: ^7.0.5 + version: 7.0.5(@types/node@24.0.14)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) vitest: specifier: ^3.2.4 - version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.13)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.14)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) packages/sheets-data-validation-ui: dependencies: @@ -2207,11 +2207,11 @@ importers: specifier: ^5.8.3 version: 5.8.3 vite: - specifier: ^6.3.5 - version: 6.3.5(@types/node@24.0.13)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + specifier: ^7.0.5 + version: 7.0.5(@types/node@24.0.14)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) vitest: specifier: ^3.2.4 - version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.13)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.14)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) packages/sheets-drawing: dependencies: @@ -2232,11 +2232,11 @@ importers: specifier: ^5.8.3 version: 5.8.3 vite: - specifier: ^6.3.5 - version: 6.3.5(@types/node@24.0.13)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + specifier: ^7.0.5 + version: 7.0.5(@types/node@24.0.14)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) vitest: specifier: ^3.2.4 - version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.13)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.14)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) packages/sheets-drawing-ui: dependencies: @@ -2293,11 +2293,11 @@ importers: specifier: ^5.8.3 version: 5.8.3 vite: - specifier: ^6.3.5 - version: 6.3.5(@types/node@24.0.13)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + specifier: ^7.0.5 + version: 7.0.5(@types/node@24.0.14)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) vitest: specifier: ^3.2.4 - version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.13)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.14)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) packages/sheets-filter: dependencies: @@ -2327,11 +2327,11 @@ importers: specifier: ^5.8.3 version: 5.8.3 vite: - specifier: ^6.3.5 - version: 6.3.5(@types/node@24.0.13)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + specifier: ^7.0.5 + version: 7.0.5(@types/node@24.0.14)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) vitest: specifier: ^3.2.4 - version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.13)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.14)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) packages/sheets-filter-ui: dependencies: @@ -2385,11 +2385,11 @@ importers: specifier: ^5.8.3 version: 5.8.3 vite: - specifier: ^6.3.5 - version: 6.3.5(@types/node@24.0.13)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + specifier: ^7.0.5 + version: 7.0.5(@types/node@24.0.14)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) vitest: specifier: ^3.2.4 - version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.13)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.14)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) packages/sheets-find-replace: dependencies: @@ -2419,11 +2419,11 @@ importers: specifier: ^5.8.3 version: 5.8.3 vite: - specifier: ^6.3.5 - version: 6.3.5(@types/node@24.0.13)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + specifier: ^7.0.5 + version: 7.0.5(@types/node@24.0.14)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) vitest: specifier: ^3.2.4 - version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.13)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.14)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) packages/sheets-formula: dependencies: @@ -2453,11 +2453,11 @@ importers: specifier: ^5.8.3 version: 5.8.3 vite: - specifier: ^6.3.5 - version: 6.3.5(@types/node@24.0.13)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + specifier: ^7.0.5 + version: 7.0.5(@types/node@24.0.14)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) vitest: specifier: ^3.2.4 - version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.13)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.14)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) packages/sheets-formula-ui: dependencies: @@ -2514,11 +2514,11 @@ importers: specifier: ^5.8.3 version: 5.8.3 vite: - specifier: ^6.3.5 - version: 6.3.5(@types/node@24.0.13)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + specifier: ^7.0.5 + version: 7.0.5(@types/node@24.0.14)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) vitest: specifier: ^3.2.4 - version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.13)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.14)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) packages/sheets-graphics: dependencies: @@ -2539,11 +2539,11 @@ importers: specifier: ^5.8.3 version: 5.8.3 vite: - specifier: ^6.3.5 - version: 6.3.5(@types/node@24.0.13)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + specifier: ^7.0.5 + version: 7.0.5(@types/node@24.0.14)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) vitest: specifier: ^3.2.4 - version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.13)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.14)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) packages/sheets-hyper-link: dependencies: @@ -2570,11 +2570,11 @@ importers: specifier: ^5.8.3 version: 5.8.3 vite: - specifier: ^6.3.5 - version: 6.3.5(@types/node@24.0.13)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + specifier: ^7.0.5 + version: 7.0.5(@types/node@24.0.14)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) vitest: specifier: ^3.2.4 - version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.13)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.14)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) packages/sheets-hyper-link-ui: dependencies: @@ -2637,11 +2637,11 @@ importers: specifier: ^5.8.3 version: 5.8.3 vite: - specifier: ^6.3.5 - version: 6.3.5(@types/node@24.0.13)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + specifier: ^7.0.5 + version: 7.0.5(@types/node@24.0.14)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) vitest: specifier: ^3.2.4 - version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.13)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.14)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) packages/sheets-note: dependencies: @@ -2662,11 +2662,11 @@ importers: specifier: ^5.8.3 version: 5.8.3 vite: - specifier: ^6.3.5 - version: 6.3.5(@types/node@24.0.13)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + specifier: ^7.0.5 + version: 7.0.5(@types/node@24.0.14)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) vitest: specifier: ^3.2.4 - version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.13)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.14)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) packages/sheets-note-ui: dependencies: @@ -2717,11 +2717,11 @@ importers: specifier: ^5.8.3 version: 5.8.3 vite: - specifier: ^6.3.5 - version: 6.3.5(@types/node@24.0.13)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + specifier: ^7.0.5 + version: 7.0.5(@types/node@24.0.14)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) vitest: specifier: ^3.2.4 - version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.13)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.14)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) packages/sheets-numfmt: dependencies: @@ -2745,11 +2745,11 @@ importers: specifier: ^5.8.3 version: 5.8.3 vite: - specifier: ^6.3.5 - version: 6.3.5(@types/node@24.0.13)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + specifier: ^7.0.5 + version: 7.0.5(@types/node@24.0.14)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) vitest: specifier: ^3.2.4 - version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.13)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.14)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) packages/sheets-numfmt-ui: dependencies: @@ -2800,11 +2800,11 @@ importers: specifier: ^5.8.3 version: 5.8.3 vite: - specifier: ^6.3.5 - version: 6.3.5(@types/node@24.0.13)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + specifier: ^7.0.5 + version: 7.0.5(@types/node@24.0.14)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) vitest: specifier: ^3.2.4 - version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.13)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.14)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) packages/sheets-sort: dependencies: @@ -2825,11 +2825,11 @@ importers: specifier: ^5.8.3 version: 5.8.3 vite: - specifier: ^6.3.5 - version: 6.3.5(@types/node@24.0.13)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + specifier: ^7.0.5 + version: 7.0.5(@types/node@24.0.14)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) vitest: specifier: ^3.2.4 - version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.13)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.14)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) packages/sheets-sort-ui: dependencies: @@ -2880,11 +2880,11 @@ importers: specifier: ^5.8.3 version: 5.8.3 vite: - specifier: ^6.3.5 - version: 6.3.5(@types/node@24.0.13)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + specifier: ^7.0.5 + version: 7.0.5(@types/node@24.0.14)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) vitest: specifier: ^3.2.4 - version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.13)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.14)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) packages/sheets-table: dependencies: @@ -2905,11 +2905,11 @@ importers: specifier: ^5.8.3 version: 5.8.3 vite: - specifier: ^6.3.5 - version: 6.3.5(@types/node@24.0.13)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + specifier: ^7.0.5 + version: 7.0.5(@types/node@24.0.14)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) vitest: specifier: ^3.2.4 - version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.13)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.14)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) packages/sheets-table-ui: dependencies: @@ -2966,11 +2966,11 @@ importers: specifier: ^5.8.3 version: 5.8.3 vite: - specifier: ^6.3.5 - version: 6.3.5(@types/node@24.0.13)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + specifier: ^7.0.5 + version: 7.0.5(@types/node@24.0.14)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) vitest: specifier: ^3.2.4 - version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.13)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.14)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) packages/sheets-thread-comment: dependencies: @@ -2997,11 +2997,11 @@ importers: specifier: ^5.8.3 version: 5.8.3 vite: - specifier: ^6.3.5 - version: 6.3.5(@types/node@24.0.13)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + specifier: ^7.0.5 + version: 7.0.5(@types/node@24.0.14)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) vitest: specifier: ^3.2.4 - version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.13)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.14)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) packages/sheets-thread-comment-ui: dependencies: @@ -3055,11 +3055,11 @@ importers: specifier: ^5.8.3 version: 5.8.3 vite: - specifier: ^6.3.5 - version: 6.3.5(@types/node@24.0.13)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + specifier: ^7.0.5 + version: 7.0.5(@types/node@24.0.14)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) vitest: specifier: ^3.2.4 - version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.13)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.14)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) packages/sheets-ui: dependencies: @@ -3119,11 +3119,11 @@ importers: specifier: ^5.8.3 version: 5.8.3 vite: - specifier: ^6.3.5 - version: 6.3.5(@types/node@24.0.13)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + specifier: ^7.0.5 + version: 7.0.5(@types/node@24.0.14)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) vitest: specifier: ^3.2.4 - version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.13)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.14)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) packages/sheets-zen-editor: dependencies: @@ -3174,11 +3174,11 @@ importers: specifier: ^5.8.3 version: 5.8.3 vite: - specifier: ^6.3.5 - version: 6.3.5(@types/node@24.0.13)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + specifier: ^7.0.5 + version: 7.0.5(@types/node@24.0.14)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) vitest: specifier: ^3.2.4 - version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.13)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.14)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) packages/slides: dependencies: @@ -3196,11 +3196,11 @@ importers: specifier: ^5.8.3 version: 5.8.3 vite: - specifier: ^6.3.5 - version: 6.3.5(@types/node@24.0.13)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + specifier: ^7.0.5 + version: 7.0.5(@types/node@24.0.14)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) vitest: specifier: ^3.2.4 - version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.13)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.14)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) packages/slides-ui: dependencies: @@ -3251,11 +3251,11 @@ importers: specifier: ^5.8.3 version: 5.8.3 vite: - specifier: ^6.3.5 - version: 6.3.5(@types/node@24.0.13)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + specifier: ^7.0.5 + version: 7.0.5(@types/node@24.0.14)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) vitest: specifier: ^3.2.4 - version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.13)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.14)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) packages/telemetry: dependencies: @@ -3270,11 +3270,11 @@ importers: specifier: ^5.8.3 version: 5.8.3 vite: - specifier: ^6.3.5 - version: 6.3.5(@types/node@24.0.13)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + specifier: ^7.0.5 + version: 7.0.5(@types/node@24.0.14)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) vitest: specifier: ^3.2.4 - version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.13)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.14)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) packages/themes: devDependencies: @@ -3282,8 +3282,8 @@ importers: specifier: workspace:* version: link:../../common/shared vite: - specifier: ^6.3.5 - version: 6.3.5(@types/node@24.0.13)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + specifier: ^7.0.5 + version: 7.0.5(@types/node@24.0.14)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) packages/thread-comment: dependencies: @@ -3301,11 +3301,11 @@ importers: specifier: ^5.8.3 version: 5.8.3 vite: - specifier: ^6.3.5 - version: 6.3.5(@types/node@24.0.13)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + specifier: ^7.0.5 + version: 7.0.5(@types/node@24.0.14)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) vitest: specifier: ^3.2.4 - version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.13)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.14)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) packages/thread-comment-ui: dependencies: @@ -3347,11 +3347,11 @@ importers: specifier: ^5.8.3 version: 5.8.3 vite: - specifier: ^6.3.5 - version: 6.3.5(@types/node@24.0.13)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + specifier: ^7.0.5 + version: 7.0.5(@types/node@24.0.14)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) vitest: specifier: ^3.2.4 - version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.13)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.14)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) packages/ui: dependencies: @@ -3405,11 +3405,11 @@ importers: specifier: ^5.8.3 version: 5.8.3 vite: - specifier: ^6.3.5 - version: 6.3.5(@types/node@24.0.13)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + specifier: ^7.0.5 + version: 7.0.5(@types/node@24.0.14)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) vitest: specifier: ^3.2.4 - version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.13)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.14)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) packages/ui-adapter-vue3: dependencies: @@ -3427,11 +3427,11 @@ importers: specifier: ^5.8.3 version: 5.8.3 vite: - specifier: ^6.3.5 - version: 6.3.5(@types/node@24.0.13)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + specifier: ^7.0.5 + version: 7.0.5(@types/node@24.0.14)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) vitest: specifier: ^3.2.4 - version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.13)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.14)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) vue: specifier: ^3.5.17 version: 3.5.17(typescript@5.8.3) @@ -3455,11 +3455,11 @@ importers: specifier: ^5.8.3 version: 5.8.3 vite: - specifier: ^6.3.5 - version: 6.3.5(@types/node@24.0.13)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + specifier: ^7.0.5 + version: 7.0.5(@types/node@24.0.14)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) vitest: specifier: ^3.2.4 - version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.13)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.14)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) packages/uniscript: dependencies: @@ -3501,11 +3501,11 @@ importers: specifier: ^5.8.3 version: 5.8.3 vite: - specifier: ^6.3.5 - version: 6.3.5(@types/node@24.0.13)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + specifier: ^7.0.5 + version: 7.0.5(@types/node@24.0.14)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) vitest: specifier: ^3.2.4 - version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.13)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.14)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) packages/watermark: dependencies: @@ -3526,11 +3526,11 @@ importers: specifier: ^5.8.3 version: 5.8.3 vite: - specifier: ^6.3.5 - version: 6.3.5(@types/node@24.0.13)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + specifier: ^7.0.5 + version: 7.0.5(@types/node@24.0.14)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) vitest: specifier: ^3.2.4 - version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.13)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.14)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) tests/formula-integration: dependencies: @@ -3582,7 +3582,7 @@ importers: version: 5.8.3 vitest: specifier: ^3.2.4 - version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.13)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + version: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.14)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) packages: @@ -3597,8 +3597,8 @@ packages: resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==} engines: {node: '>=6.0.0'} - '@antfu/eslint-config@4.16.2': - resolution: {integrity: sha512-5KHZR+7ne+HZnOJUKeTTdHKYA/yOygPssaJ7TZOMoBqjSMtVAa7FO5Wvu2dEtkibM6v3emYyKnQnia1S8NHQeA==} + '@antfu/eslint-config@4.17.0': + resolution: {integrity: sha512-S1y0A1+0DcpV6GmjwB9gQCQc7ni9zlKa3MQRqRCEZ0E1WW+nRL1BUwnbk3DpMJAMsb3UIAt1lsAiIBnvIw2NDw==} hasBin: true peerDependencies: '@eslint-react/eslint-plugin': ^1.38.4 @@ -4148,132 +4148,66 @@ packages: resolution: {integrity: sha512-BXuN7BII+8AyNtn57euU2Yxo9yA/KUDNzrpXyi3pfqKmBhhysR6ZWOebFh3vyPoqA3/j1SOvGgucElMGwlXing==} engines: {node: '>=20.11.0'} - '@esbuild/aix-ppc64@0.25.4': - resolution: {integrity: sha512-1VCICWypeQKhVbE9oW/sJaAmjLxhVqacdkvPLEjwlttjfwENRSClS8EjBz0KzRyFSCPDIkuXW34Je/vk7zdB7Q==} - engines: {node: '>=18'} - cpu: [ppc64] - os: [aix] - '@esbuild/aix-ppc64@0.25.6': resolution: {integrity: sha512-ShbM/3XxwuxjFiuVBHA+d3j5dyac0aEVVq1oluIDf71hUw0aRF59dV/efUsIwFnR6m8JNM2FjZOzmaZ8yG61kw==} engines: {node: '>=18'} cpu: [ppc64] os: [aix] - '@esbuild/android-arm64@0.25.4': - resolution: {integrity: sha512-bBy69pgfhMGtCnwpC/x5QhfxAz/cBgQ9enbtwjf6V9lnPI/hMyT9iWpR1arm0l3kttTr4L0KSLpKmLp/ilKS9A==} - engines: {node: '>=18'} - cpu: [arm64] - os: [android] - '@esbuild/android-arm64@0.25.6': resolution: {integrity: sha512-hd5zdUarsK6strW+3Wxi5qWws+rJhCCbMiC9QZyzoxfk5uHRIE8T287giQxzVpEvCwuJ9Qjg6bEjcRJcgfLqoA==} engines: {node: '>=18'} cpu: [arm64] os: [android] - '@esbuild/android-arm@0.25.4': - resolution: {integrity: sha512-QNdQEps7DfFwE3hXiU4BZeOV68HHzYwGd0Nthhd3uCkkEKK7/R6MTgM0P7H7FAs5pU/DIWsviMmEGxEoxIZ+ZQ==} - engines: {node: '>=18'} - cpu: [arm] - os: [android] - '@esbuild/android-arm@0.25.6': resolution: {integrity: sha512-S8ToEOVfg++AU/bHwdksHNnyLyVM+eMVAOf6yRKFitnwnbwwPNqKr3srzFRe7nzV69RQKb5DgchIX5pt3L53xg==} engines: {node: '>=18'} cpu: [arm] os: [android] - '@esbuild/android-x64@0.25.4': - resolution: {integrity: sha512-TVhdVtQIFuVpIIR282btcGC2oGQoSfZfmBdTip2anCaVYcqWlZXGcdcKIUklfX2wj0JklNYgz39OBqh2cqXvcQ==} - engines: {node: '>=18'} - cpu: [x64] - os: [android] - '@esbuild/android-x64@0.25.6': resolution: {integrity: sha512-0Z7KpHSr3VBIO9A/1wcT3NTy7EB4oNC4upJ5ye3R7taCc2GUdeynSLArnon5G8scPwaU866d3H4BCrE5xLW25A==} engines: {node: '>=18'} cpu: [x64] os: [android] - '@esbuild/darwin-arm64@0.25.4': - resolution: {integrity: sha512-Y1giCfM4nlHDWEfSckMzeWNdQS31BQGs9/rouw6Ub91tkK79aIMTH3q9xHvzH8d0wDru5Ci0kWB8b3up/nl16g==} - engines: {node: '>=18'} - cpu: [arm64] - os: [darwin] - '@esbuild/darwin-arm64@0.25.6': resolution: {integrity: sha512-FFCssz3XBavjxcFxKsGy2DYK5VSvJqa6y5HXljKzhRZ87LvEi13brPrf/wdyl/BbpbMKJNOr1Sd0jtW4Ge1pAA==} engines: {node: '>=18'} cpu: [arm64] os: [darwin] - '@esbuild/darwin-x64@0.25.4': - resolution: {integrity: sha512-CJsry8ZGM5VFVeyUYB3cdKpd/H69PYez4eJh1W/t38vzutdjEjtP7hB6eLKBoOdxcAlCtEYHzQ/PJ/oU9I4u0A==} - engines: {node: '>=18'} - cpu: [x64] - os: [darwin] - '@esbuild/darwin-x64@0.25.6': resolution: {integrity: sha512-GfXs5kry/TkGM2vKqK2oyiLFygJRqKVhawu3+DOCk7OxLy/6jYkWXhlHwOoTb0WqGnWGAS7sooxbZowy+pK9Yg==} engines: {node: '>=18'} cpu: [x64] os: [darwin] - '@esbuild/freebsd-arm64@0.25.4': - resolution: {integrity: sha512-yYq+39NlTRzU2XmoPW4l5Ifpl9fqSk0nAJYM/V/WUGPEFfek1epLHJIkTQM6bBs1swApjO5nWgvr843g6TjxuQ==} - engines: {node: '>=18'} - cpu: [arm64] - os: [freebsd] - '@esbuild/freebsd-arm64@0.25.6': resolution: {integrity: sha512-aoLF2c3OvDn2XDTRvn8hN6DRzVVpDlj2B/F66clWd/FHLiHaG3aVZjxQX2DYphA5y/evbdGvC6Us13tvyt4pWg==} engines: {node: '>=18'} cpu: [arm64] os: [freebsd] - '@esbuild/freebsd-x64@0.25.4': - resolution: {integrity: sha512-0FgvOJ6UUMflsHSPLzdfDnnBBVoCDtBTVyn/MrWloUNvq/5SFmh13l3dvgRPkDihRxb77Y17MbqbCAa2strMQQ==} - engines: {node: '>=18'} - cpu: [x64] - os: [freebsd] - '@esbuild/freebsd-x64@0.25.6': resolution: {integrity: sha512-2SkqTjTSo2dYi/jzFbU9Plt1vk0+nNg8YC8rOXXea+iA3hfNJWebKYPs3xnOUf9+ZWhKAaxnQNUf2X9LOpeiMQ==} engines: {node: '>=18'} cpu: [x64] os: [freebsd] - '@esbuild/linux-arm64@0.25.4': - resolution: {integrity: sha512-+89UsQTfXdmjIvZS6nUnOOLoXnkUTB9hR5QAeLrQdzOSWZvNSAXAtcRDHWtqAUtAmv7ZM1WPOOeSxDzzzMogiQ==} - engines: {node: '>=18'} - cpu: [arm64] - os: [linux] - '@esbuild/linux-arm64@0.25.6': resolution: {integrity: sha512-b967hU0gqKd9Drsh/UuAm21Khpoh6mPBSgz8mKRq4P5mVK8bpA+hQzmm/ZwGVULSNBzKdZPQBRT3+WuVavcWsQ==} engines: {node: '>=18'} cpu: [arm64] os: [linux] - '@esbuild/linux-arm@0.25.4': - resolution: {integrity: sha512-kro4c0P85GMfFYqW4TWOpvmF8rFShbWGnrLqlzp4X1TNWjRY3JMYUfDCtOxPKOIY8B0WC8HN51hGP4I4hz4AaQ==} - engines: {node: '>=18'} - cpu: [arm] - os: [linux] - '@esbuild/linux-arm@0.25.6': resolution: {integrity: sha512-SZHQlzvqv4Du5PrKE2faN0qlbsaW/3QQfUUc6yO2EjFcA83xnwm91UbEEVx4ApZ9Z5oG8Bxz4qPE+HFwtVcfyw==} engines: {node: '>=18'} cpu: [arm] os: [linux] - '@esbuild/linux-ia32@0.25.4': - resolution: {integrity: sha512-yTEjoapy8UP3rv8dB0ip3AfMpRbyhSN3+hY8mo/i4QXFeDxmiYbEKp3ZRjBKcOP862Ua4b1PDfwlvbuwY7hIGQ==} - engines: {node: '>=18'} - cpu: [ia32] - os: [linux] - '@esbuild/linux-ia32@0.25.6': resolution: {integrity: sha512-aHWdQ2AAltRkLPOsKdi3xv0mZ8fUGPdlKEjIEhxCPm5yKEThcUjHpWB1idN74lfXGnZ5SULQSgtr5Qos5B0bPw==} engines: {node: '>=18'} @@ -4286,120 +4220,60 @@ packages: cpu: [loong64] os: [linux] - '@esbuild/linux-loong64@0.25.4': - resolution: {integrity: sha512-NeqqYkrcGzFwi6CGRGNMOjWGGSYOpqwCjS9fvaUlX5s3zwOtn1qwg1s2iE2svBe4Q/YOG1q6875lcAoQK/F4VA==} - engines: {node: '>=18'} - cpu: [loong64] - os: [linux] - '@esbuild/linux-loong64@0.25.6': resolution: {integrity: sha512-VgKCsHdXRSQ7E1+QXGdRPlQ/e08bN6WMQb27/TMfV+vPjjTImuT9PmLXupRlC90S1JeNNW5lzkAEO/McKeJ2yg==} engines: {node: '>=18'} cpu: [loong64] os: [linux] - '@esbuild/linux-mips64el@0.25.4': - resolution: {integrity: sha512-IcvTlF9dtLrfL/M8WgNI/qJYBENP3ekgsHbYUIzEzq5XJzzVEV/fXY9WFPfEEXmu3ck2qJP8LG/p3Q8f7Zc2Xg==} - engines: {node: '>=18'} - cpu: [mips64el] - os: [linux] - '@esbuild/linux-mips64el@0.25.6': resolution: {integrity: sha512-WViNlpivRKT9/py3kCmkHnn44GkGXVdXfdc4drNmRl15zVQ2+D2uFwdlGh6IuK5AAnGTo2qPB1Djppj+t78rzw==} engines: {node: '>=18'} cpu: [mips64el] os: [linux] - '@esbuild/linux-ppc64@0.25.4': - resolution: {integrity: sha512-HOy0aLTJTVtoTeGZh4HSXaO6M95qu4k5lJcH4gxv56iaycfz1S8GO/5Jh6X4Y1YiI0h7cRyLi+HixMR+88swag==} - engines: {node: '>=18'} - cpu: [ppc64] - os: [linux] - '@esbuild/linux-ppc64@0.25.6': resolution: {integrity: sha512-wyYKZ9NTdmAMb5730I38lBqVu6cKl4ZfYXIs31Baf8aoOtB4xSGi3THmDYt4BTFHk7/EcVixkOV2uZfwU3Q2Jw==} engines: {node: '>=18'} cpu: [ppc64] os: [linux] - '@esbuild/linux-riscv64@0.25.4': - resolution: {integrity: sha512-i8JUDAufpz9jOzo4yIShCTcXzS07vEgWzyX3NH2G7LEFVgrLEhjwL3ajFE4fZI3I4ZgiM7JH3GQ7ReObROvSUA==} - engines: {node: '>=18'} - cpu: [riscv64] - os: [linux] - '@esbuild/linux-riscv64@0.25.6': resolution: {integrity: sha512-KZh7bAGGcrinEj4qzilJ4hqTY3Dg2U82c8bv+e1xqNqZCrCyc+TL9AUEn5WGKDzm3CfC5RODE/qc96OcbIe33w==} engines: {node: '>=18'} cpu: [riscv64] os: [linux] - '@esbuild/linux-s390x@0.25.4': - resolution: {integrity: sha512-jFnu+6UbLlzIjPQpWCNh5QtrcNfMLjgIavnwPQAfoGx4q17ocOU9MsQ2QVvFxwQoWpZT8DvTLooTvmOQXkO51g==} - engines: {node: '>=18'} - cpu: [s390x] - os: [linux] - '@esbuild/linux-s390x@0.25.6': resolution: {integrity: sha512-9N1LsTwAuE9oj6lHMyyAM+ucxGiVnEqUdp4v7IaMmrwb06ZTEVCIs3oPPplVsnjPfyjmxwHxHMF8b6vzUVAUGw==} engines: {node: '>=18'} cpu: [s390x] os: [linux] - '@esbuild/linux-x64@0.25.4': - resolution: {integrity: sha512-6e0cvXwzOnVWJHq+mskP8DNSrKBr1bULBvnFLpc1KY+d+irZSgZ02TGse5FsafKS5jg2e4pbvK6TPXaF/A6+CA==} - engines: {node: '>=18'} - cpu: [x64] - os: [linux] - '@esbuild/linux-x64@0.25.6': resolution: {integrity: sha512-A6bJB41b4lKFWRKNrWoP2LHsjVzNiaurf7wyj/XtFNTsnPuxwEBWHLty+ZE0dWBKuSK1fvKgrKaNjBS7qbFKig==} engines: {node: '>=18'} cpu: [x64] os: [linux] - '@esbuild/netbsd-arm64@0.25.4': - resolution: {integrity: sha512-vUnkBYxZW4hL/ie91hSqaSNjulOnYXE1VSLusnvHg2u3jewJBz3YzB9+oCw8DABeVqZGg94t9tyZFoHma8gWZQ==} - engines: {node: '>=18'} - cpu: [arm64] - os: [netbsd] - '@esbuild/netbsd-arm64@0.25.6': resolution: {integrity: sha512-IjA+DcwoVpjEvyxZddDqBY+uJ2Snc6duLpjmkXm/v4xuS3H+3FkLZlDm9ZsAbF9rsfP3zeA0/ArNDORZgrxR/Q==} engines: {node: '>=18'} cpu: [arm64] os: [netbsd] - '@esbuild/netbsd-x64@0.25.4': - resolution: {integrity: sha512-XAg8pIQn5CzhOB8odIcAm42QsOfa98SBeKUdo4xa8OvX8LbMZqEtgeWE9P/Wxt7MlG2QqvjGths+nq48TrUiKw==} - engines: {node: '>=18'} - cpu: [x64] - os: [netbsd] - '@esbuild/netbsd-x64@0.25.6': resolution: {integrity: sha512-dUXuZr5WenIDlMHdMkvDc1FAu4xdWixTCRgP7RQLBOkkGgwuuzaGSYcOpW4jFxzpzL1ejb8yF620UxAqnBrR9g==} engines: {node: '>=18'} cpu: [x64] os: [netbsd] - '@esbuild/openbsd-arm64@0.25.4': - resolution: {integrity: sha512-Ct2WcFEANlFDtp1nVAXSNBPDxyU+j7+tId//iHXU2f/lN5AmO4zLyhDcpR5Cz1r08mVxzt3Jpyt4PmXQ1O6+7A==} - engines: {node: '>=18'} - cpu: [arm64] - os: [openbsd] - '@esbuild/openbsd-arm64@0.25.6': resolution: {integrity: sha512-l8ZCvXP0tbTJ3iaqdNf3pjaOSd5ex/e6/omLIQCVBLmHTlfXW3zAxQ4fnDmPLOB1x9xrcSi/xtCWFwCZRIaEwg==} engines: {node: '>=18'} cpu: [arm64] os: [openbsd] - '@esbuild/openbsd-x64@0.25.4': - resolution: {integrity: sha512-xAGGhyOQ9Otm1Xu8NT1ifGLnA6M3sJxZ6ixylb+vIUVzvvd6GOALpwQrYrtlPouMqd/vSbgehz6HaVk4+7Afhw==} - engines: {node: '>=18'} - cpu: [x64] - os: [openbsd] - '@esbuild/openbsd-x64@0.25.6': resolution: {integrity: sha512-hKrmDa0aOFOr71KQ/19JC7az1P0GWtCN1t2ahYAf4O007DHZt/dW8ym5+CUdJhQ/qkZmI1HAF8KkJbEFtCL7gw==} engines: {node: '>=18'} @@ -4412,48 +4286,24 @@ packages: cpu: [arm64] os: [openharmony] - '@esbuild/sunos-x64@0.25.4': - resolution: {integrity: sha512-Mw+tzy4pp6wZEK0+Lwr76pWLjrtjmJyUB23tHKqEDP74R3q95luY/bXqXZeYl4NYlvwOqoRKlInQialgCKy67Q==} - engines: {node: '>=18'} - cpu: [x64] - os: [sunos] - '@esbuild/sunos-x64@0.25.6': resolution: {integrity: sha512-dyCGxv1/Br7MiSC42qinGL8KkG4kX0pEsdb0+TKhmJZgCUDBGmyo1/ArCjNGiOLiIAgdbWgmWgib4HoCi5t7kA==} engines: {node: '>=18'} cpu: [x64] os: [sunos] - '@esbuild/win32-arm64@0.25.4': - resolution: {integrity: sha512-AVUP428VQTSddguz9dO9ngb+E5aScyg7nOeJDrF1HPYu555gmza3bDGMPhmVXL8svDSoqPCsCPjb265yG/kLKQ==} - engines: {node: '>=18'} - cpu: [arm64] - os: [win32] - '@esbuild/win32-arm64@0.25.6': resolution: {integrity: sha512-42QOgcZeZOvXfsCBJF5Afw73t4veOId//XD3i+/9gSkhSV6Gk3VPlWncctI+JcOyERv85FUo7RxuxGy+z8A43Q==} engines: {node: '>=18'} cpu: [arm64] os: [win32] - '@esbuild/win32-ia32@0.25.4': - resolution: {integrity: sha512-i1sW+1i+oWvQzSgfRcxxG2k4I9n3O9NRqy8U+uugaT2Dy7kLO9Y7wI72haOahxceMX8hZAzgGou1FhndRldxRg==} - engines: {node: '>=18'} - cpu: [ia32] - os: [win32] - '@esbuild/win32-ia32@0.25.6': resolution: {integrity: sha512-4AWhgXmDuYN7rJI6ORB+uU9DHLq/erBbuMoAuB4VWJTu5KtCgcKYPynF0YI1VkBNuEfjNlLrFr9KZPJzrtLkrQ==} engines: {node: '>=18'} cpu: [ia32] os: [win32] - '@esbuild/win32-x64@0.25.4': - resolution: {integrity: sha512-nOT2vZNw6hJ+z43oP1SPea/G/6AbN6X+bGNhNuq8NtRHy4wsMhw765IKLNmnjek7GvjWBYQ8Q5VBoYTFg9y1UQ==} - engines: {node: '>=18'} - cpu: [x64] - os: [win32] - '@esbuild/win32-x64@0.25.6': resolution: {integrity: sha512-NgJPHHbEpLQgDH2MjQu90pzW/5vvXIZ7KOnPyNBm92A6WgZ/7b6fJyUBjoumLqeOQQGqY2QjQxRo97ah4Sj0cA==} engines: {node: '>=18'} @@ -4510,11 +4360,11 @@ packages: resolution: {integrity: sha512-i2dfgoH93MHJNXqzS0vYIIpI2e6djIfzdnpMRHUyBYjTHFSPapE7RhcHFrAVPUrd85cUxIPW3pkTKAhkhUhYeA==} engines: {node: '>=18.18.0'} - '@eslint/compat@1.3.0': - resolution: {integrity: sha512-ZBygRBqpDYiIHsN+d1WyHn3TYgzgpzLEcgJUxTATyiInQbKZz6wZb6+ljwdg8xeeOe4v03z6Uh6lELiw0/mVhQ==} + '@eslint/compat@1.3.1': + resolution: {integrity: sha512-k8MHony59I5EPic6EQTCNOuPoVBnoYXkP+20xvwFjN7t0qI3ImyvyBgg+hIVPwC8JaxVjjUZld+cLfBLFDLucg==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: - eslint: ^9.10.0 + eslint: ^8.40 || 9 peerDependenciesMeta: eslint: optional: true @@ -4535,10 +4385,6 @@ packages: resolution: {integrity: sha512-qIbV0/JZr7iSDjqAc60IqbLdsj9GDt16xQtWD+B78d/HAlvysGdZZ6rpJHGAc2T0FQx1X6thsSPdnoiGKdNtdg==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@eslint/core@0.15.0': - resolution: {integrity: sha512-b7ePw78tEWWkpgZCDYkbqDOP8dmM6qe+AOC6iuJqlq1R/0ahMAeH3qynpnqKFGkMltrp44ohV4ubGyvLX28tzw==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@eslint/core@0.15.1': resolution: {integrity: sha512-bkOp+iumZCCbt1K1CmWf0R9pM5yKpDv+ZXtvSyQpudrI9kuFLp+bM2WOPXImuD/ceQuaa8f5pj93Y7zyECIGNA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} @@ -4555,8 +4401,8 @@ packages: resolution: {integrity: sha512-LOm5OVt7D4qiKCqoiPbA7LWmI+tbw1VbTUowBcUMgQSuM6poJufkFkYDcQpo5KfgD39TnNySV26QjOh7VFpSyw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@eslint/markdown@6.6.0': - resolution: {integrity: sha512-IsWPy2jU3gaQDlioDC4sT4I4kG1hX1OMWs/q2sWwJrPoMASHW/Z4SDw+6Aql6EsHejGbagYuJbFq9Zvx+Y1b1Q==} + '@eslint/markdown@7.0.0': + resolution: {integrity: sha512-0WNH6pSFHNlWSlNaIFQP0sLHpMUJw1FaJtyqapvGqOt0ISRgTUkTLVT0hT/zekDA1QlP2TT8pwjPkqYTu2s8yg==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} '@eslint/object-schema@2.1.6': @@ -4567,10 +4413,6 @@ packages: resolution: {integrity: sha512-ZAoA40rNMPwSm+AeHpCq8STiNAwzWLJuP8Xv4CHIc9wv/PSuExjMrmjfYNj682vW0OOiZ1HKxzvjQr9XZIisQA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@eslint/plugin-kit@0.3.2': - resolution: {integrity: sha512-4SaFZCNfJqvk/kenHpI8xvN42DMaoycy4PzKc5otHxRswww1kAt82OlBuwRVLofCACCTZEcla2Ydxv8scMXaTg==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@eslint/plugin-kit@0.3.3': resolution: {integrity: sha512-1+WqvgNMhmlAambTvT3KPtCl/Ibr68VldY2XY40SL1CE0ZXiakFR/cbTspaF5HsnpDMvcYYoJHfl4980NBjGag==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} @@ -4626,8 +4468,8 @@ packages: resolution: {integrity: sha512-e5+YUKENATs1JgYHMzTr2MW/NDcXGfYFAuOQU8gJgF/kEh4EqKgfGrfLI67bMD4tbhZVlkigz/9YYwWcbOFthg==} engines: {node: '>=10.13.0'} - '@inquirer/checkbox@4.1.8': - resolution: {integrity: sha512-d/QAsnwuHX2OPolxvYcgSj7A9DO9H6gVOy2DvBTx+P2LH2iRTo/RSGV3iwCzW024nP9hw98KIuDmdyhZQj1UQg==} + '@inquirer/checkbox@4.1.9': + resolution: {integrity: sha512-DBJBkzI5Wx4jFaYm221LHvAhpKYkhVS0k9plqHwaHhofGNxvYB7J3Bz8w+bFJ05zaMb0sZNHo4KdmENQFlNTuQ==} engines: {node: '>=18'} peerDependencies: '@types/node': '>=18' @@ -4635,8 +4477,8 @@ packages: '@types/node': optional: true - '@inquirer/confirm@5.1.12': - resolution: {integrity: sha512-dpq+ielV9/bqgXRUbNH//KsY6WEw9DrGPmipkpmgC1Y46cwuBTNx7PXFWTjc3MQ+urcc0QxoVHcMI0FW4Ok0hg==} + '@inquirer/confirm@5.1.13': + resolution: {integrity: sha512-EkCtvp67ICIVVzjsquUiVSd+V5HRGOGQfsqA4E4vMWhYnB7InUL0pa0TIWt1i+OfP16Gkds8CdIu6yGZwOM1Yw==} engines: {node: '>=18'} peerDependencies: '@types/node': '>=18' @@ -4644,8 +4486,8 @@ packages: '@types/node': optional: true - '@inquirer/core@10.1.13': - resolution: {integrity: sha512-1viSxebkYN2nJULlzCxES6G9/stgHSepZ9LqqfdIGPHj5OHhiBUXVS0a6R0bEC2A+VL4D9w6QB66ebCr6HGllA==} + '@inquirer/core@10.1.14': + resolution: {integrity: sha512-Ma+ZpOJPewtIYl6HZHZckeX1STvDnHTCB2GVINNUlSEn2Am6LddWwfPkIGY0IUFVjUUrr/93XlBwTK6mfLjf0A==} engines: {node: '>=18'} peerDependencies: '@types/node': '>=18' @@ -4653,8 +4495,8 @@ packages: '@types/node': optional: true - '@inquirer/editor@4.2.13': - resolution: {integrity: sha512-WbicD9SUQt/K8O5Vyk9iC2ojq5RHoCLK6itpp2fHsWe44VxxcA9z3GTWlvjSTGmMQpZr+lbVmrxdHcumJoLbMA==} + '@inquirer/editor@4.2.14': + resolution: {integrity: sha512-yd2qtLl4QIIax9DTMZ1ZN2pFrrj+yL3kgIWxm34SS6uwCr0sIhsNyudUjAo5q3TqI03xx4SEBkUJqZuAInp9uA==} engines: {node: '>=18'} peerDependencies: '@types/node': '>=18' @@ -4662,8 +4504,8 @@ packages: '@types/node': optional: true - '@inquirer/expand@4.0.15': - resolution: {integrity: sha512-4Y+pbr/U9Qcvf+N/goHzPEXiHH8680lM3Dr3Y9h9FFw4gHS+zVpbj8LfbKWIb/jayIB4aSO4pWiBTrBYWkvi5A==} + '@inquirer/expand@4.0.16': + resolution: {integrity: sha512-oiDqafWzMtofeJyyGkb1CTPaxUkjIcSxePHHQCfif8t3HV9pHcw1Kgdw3/uGpDvaFfeTluwQtWiqzPVjAqS3zA==} engines: {node: '>=18'} peerDependencies: '@types/node': '>=18' @@ -4675,8 +4517,8 @@ packages: resolution: {integrity: sha512-MJttijd8rMFcKJC8NYmprWr6hD3r9Gd9qUC0XwPNwoEPWSMVJwA2MlXxF+nhZZNMY+HXsWa+o7KY2emWYIn0jQ==} engines: {node: '>=18'} - '@inquirer/input@4.1.12': - resolution: {integrity: sha512-xJ6PFZpDjC+tC1P8ImGprgcsrzQRsUh9aH3IZixm1lAZFK49UGHxM3ltFfuInN2kPYNfyoPRh+tU4ftsjPLKqQ==} + '@inquirer/input@4.2.0': + resolution: {integrity: sha512-opqpHPB1NjAmDISi3uvZOTrjEEU5CWVu/HBkDby8t93+6UxYX0Z7Ps0Ltjm5sZiEbWenjubwUkivAEYQmy9xHw==} engines: {node: '>=18'} peerDependencies: '@types/node': '>=18' @@ -4684,8 +4526,8 @@ packages: '@types/node': optional: true - '@inquirer/number@3.0.15': - resolution: {integrity: sha512-xWg+iYfqdhRiM55MvqiTCleHzszpoigUpN5+t1OMcRkJrUrw7va3AzXaxvS+Ak7Gny0j2mFSTv2JJj8sMtbV2g==} + '@inquirer/number@3.0.16': + resolution: {integrity: sha512-kMrXAaKGavBEoBYUCgualbwA9jWUx2TjMA46ek+pEKy38+LFpL9QHlTd8PO2kWPUgI/KB+qi02o4y2rwXbzr3Q==} engines: {node: '>=18'} peerDependencies: '@types/node': '>=18' @@ -4693,8 +4535,8 @@ packages: '@types/node': optional: true - '@inquirer/password@4.0.15': - resolution: {integrity: sha512-75CT2p43DGEnfGTaqFpbDC2p2EEMrq0S+IRrf9iJvYreMy5mAWj087+mdKyLHapUEPLjN10mNvABpGbk8Wdraw==} + '@inquirer/password@4.0.16': + resolution: {integrity: sha512-g8BVNBj5Zeb5/Y3cSN+hDUL7CsIFDIuVxb9EPty3lkxBaYpjL5BNRKSYOF9yOLe+JOcKFd+TSVeADQ4iSY7rbg==} engines: {node: '>=18'} peerDependencies: '@types/node': '>=18' @@ -4702,8 +4544,8 @@ packages: '@types/node': optional: true - '@inquirer/prompts@7.5.3': - resolution: {integrity: sha512-8YL0WiV7J86hVAxrh3fE5mDCzcTDe1670unmJRz6ArDgN+DBK1a0+rbnNWp4DUB5rPMwqD5ZP6YHl9KK1mbZRg==} + '@inquirer/prompts@7.6.0': + resolution: {integrity: sha512-jAhL7tyMxB3Gfwn4HIJ0yuJ5pvcB5maYUcouGcgd/ub79f9MqZ+aVnBtuFf+VC2GTkCBF+R+eo7Vi63w5VZlzw==} engines: {node: '>=18'} peerDependencies: '@types/node': '>=18' @@ -4711,8 +4553,8 @@ packages: '@types/node': optional: true - '@inquirer/rawlist@4.1.3': - resolution: {integrity: sha512-7XrV//6kwYumNDSsvJIPeAqa8+p7GJh7H5kRuxirct2cgOcSWwwNGoXDRgpNFbY/MG2vQ4ccIWCi8+IXXyFMZA==} + '@inquirer/rawlist@4.1.4': + resolution: {integrity: sha512-5GGvxVpXXMmfZNtvWw4IsHpR7RzqAR624xtkPd1NxxlV5M+pShMqzL4oRddRkg8rVEOK9fKdJp1jjVML2Lr7TQ==} engines: {node: '>=18'} peerDependencies: '@types/node': '>=18' @@ -4720,8 +4562,8 @@ packages: '@types/node': optional: true - '@inquirer/search@3.0.15': - resolution: {integrity: sha512-YBMwPxYBrADqyvP4nNItpwkBnGGglAvCLVW8u4pRmmvOsHUtCAUIMbUrLX5B3tFL1/WsLGdQ2HNzkqswMs5Uaw==} + '@inquirer/search@3.0.16': + resolution: {integrity: sha512-POCmXo+j97kTGU6aeRjsPyuCpQQfKcMXdeTMw708ZMtWrj5aykZvlUxH4Qgz3+Y1L/cAVZsSpA+UgZCu2GMOMg==} engines: {node: '>=18'} peerDependencies: '@types/node': '>=18' @@ -4729,8 +4571,8 @@ packages: '@types/node': optional: true - '@inquirer/select@4.2.3': - resolution: {integrity: sha512-OAGhXU0Cvh0PhLz9xTF/kx6g6x+sP+PcyTiLvCrewI99P3BBeexD+VbuwkNDvqGkk3y2h5ZiWLeRP7BFlhkUDg==} + '@inquirer/select@4.2.4': + resolution: {integrity: sha512-unTppUcTjmnbl/q+h8XeQDhAqIOmwWYWNyiiP2e3orXrg6tOaa5DHXja9PChCSbChOsktyKgOieRZFnajzxoBg==} engines: {node: '>=18'} peerDependencies: '@types/node': '>=18' @@ -4839,8 +4681,8 @@ packages: resolution: {integrity: sha512-JcQDsBdg49Yky2w2ld20IHAlwr8d/d8N6NiOXbtuoPCqzbsiJgF633mVUw3x4mo0H5ypataQIX7SFu3yy44Mpw==} engines: {node: '>= 18'} - '@octokit/core@6.1.5': - resolution: {integrity: sha512-vvmsN0r7rguA+FySiCsbaTTobSftpIDIpPW81trAmsv9TGxg3YCujAxRYp/Uy8xmDgYCzzgulG62H7KYUFmeIg==} + '@octokit/core@6.1.6': + resolution: {integrity: sha512-kIU8SLQkYWGp3pVKiYzA5OSaNF5EE03P/R8zEmmrG6XwOg5oBjXyQVVIauQ0dgau4zYhpZEhJrvIYt6oM+zZZA==} engines: {node: '>= 18'} '@octokit/endpoint@10.1.4': @@ -4879,8 +4721,8 @@ packages: resolution: {integrity: sha512-WEi/R0Jmq+IJKydWlKDmryPcmdYSVjL3ekaiEL1L9eo1sUnqMJ+grqmC9cjk7CA7+b2/T397tO5d8YLOH3qYpQ==} engines: {node: '>= 18'} - '@octokit/request@9.2.3': - resolution: {integrity: sha512-Ma+pZU8PXLOEYzsWf0cn/gY+ME57Wq8f49WTXA8FMHp2Ps9djKw//xYJ1je8Hm0pR2lU9FUGeJRWOtxq6olt4w==} + '@octokit/request@9.2.4': + resolution: {integrity: sha512-q8ybdytBmxa6KogWlNa818r0k1wlqzNC+yNkcQDECHvQo8Vmstrg18JwqJHdJdUiHD2sjlwBgSm9kHkOKe2iyA==} engines: {node: '>= 18'} '@octokit/rest@21.1.1': @@ -4893,6 +4735,46 @@ packages: '@octokit/types@14.1.0': resolution: {integrity: sha512-1y6DgTy8Jomcpu33N+p5w58l6xyt55Ar2I91RPiIA0xCJBXyUAhXCcmZaDWSANiha7R9a6qJJ2CRomGPZ6f46g==} + '@oxlint/darwin-arm64@1.7.0': + resolution: {integrity: sha512-51vhCSQO4NSkedwEwOyqThiYqV0DAUkwNdqMQK0d29j5zmtNJJJRRBLeQuLGdstNmn3F7WMQ75Ci0/3Nq4ff8A==} + cpu: [arm64] + os: [darwin] + + '@oxlint/darwin-x64@1.7.0': + resolution: {integrity: sha512-c0GN52yehYZ4TYuh4lBH9wYbBOI/RDOxZhJdBsttG0GwfvKYg/tiPNrNEsPzu0/rd1j6x3yT0zt6vezDMeC1sQ==} + cpu: [x64] + os: [darwin] + + '@oxlint/linux-arm64-gnu@1.7.0': + resolution: {integrity: sha512-pam/lbzbzVMDzc3f1hoRPtnUMEIqkn0dynlB5nUll/MVBSIvIPLS9kJLrRA48lrlqbkS9LGiF37JvpwXA58A9A==} + cpu: [arm64] + os: [linux] + + '@oxlint/linux-arm64-musl@1.7.0': + resolution: {integrity: sha512-LTyPy9FYS3SZ2XxJx+ITvlAq/ek5PtZK9Z2m3W72TA8hchGhJy5eQ+aotYjd/YVXOpGRpB12RdOpOTsZRu50bA==} + cpu: [arm64] + os: [linux] + + '@oxlint/linux-x64-gnu@1.7.0': + resolution: {integrity: sha512-YtZ4DiAgjaEiqUiwnvtJ/znZMAAVPKR7pnsi6lqbA3BfXJ/IwMaNpdoGlCGVdDGeN4BuGCwnFtBVqKVvVg3DDg==} + cpu: [x64] + os: [linux] + + '@oxlint/linux-x64-musl@1.7.0': + resolution: {integrity: sha512-5aIpemNUBvwMMk4MCx1V3M6R9eMB1/SS6/24Orax9FqaI1lDX08tySdv696sr4Lms9ocA+rotxIPW9NP9439vA==} + cpu: [x64] + os: [linux] + + '@oxlint/win32-arm64@1.7.0': + resolution: {integrity: sha512-fpFpkHwbAu0NcR5bc1WapCPcM9qSYi5lCRVOp1WwDoFLKI2b9/UWB8OEg8UHWV5dnBu7HZAWH/SEslYGkZNsbQ==} + cpu: [arm64] + os: [win32] + + '@oxlint/win32-x64@1.7.0': + resolution: {integrity: sha512-0EPWBWOiD3wZHgeWDlTUaiFzhzIonXykxYUC+NRerPQFkO/G+bd9uLMJddHDKqfP/7g8s3E5V6KvBvvFpb7U6g==} + cpu: [x64] + os: [win32] + '@parcel/watcher-android-arm64@2.5.1': resolution: {integrity: sha512-KF8+j9nNbUN8vzOFDpRMsaKBHZ/mcjEjMToVMJOhTozkDonQFFrRcfdLWn6yWKCmJKmdVxSgHiYvTCef4/qcBA==} engines: {node: '>= 10.0.0'} @@ -5417,103 +5299,103 @@ packages: rollup: optional: true - '@rollup/rollup-android-arm-eabi@4.40.2': - resolution: {integrity: sha512-JkdNEq+DFxZfUwxvB58tHMHBHVgX23ew41g1OQinthJ+ryhdRk67O31S7sYw8u2lTjHUPFxwar07BBt1KHp/hg==} + '@rollup/rollup-android-arm-eabi@4.45.1': + resolution: {integrity: sha512-NEySIFvMY0ZQO+utJkgoMiCAjMrGvnbDLHvcmlA33UXJpYBCvlBEbMMtV837uCkS+plG2umfhn0T5mMAxGrlRA==} cpu: [arm] os: [android] - '@rollup/rollup-android-arm64@4.40.2': - resolution: {integrity: sha512-13unNoZ8NzUmnndhPTkWPWbX3vtHodYmy+I9kuLxN+F+l+x3LdVF7UCu8TWVMt1POHLh6oDHhnOA04n8oJZhBw==} + '@rollup/rollup-android-arm64@4.45.1': + resolution: {integrity: sha512-ujQ+sMXJkg4LRJaYreaVx7Z/VMgBBd89wGS4qMrdtfUFZ+TSY5Rs9asgjitLwzeIbhwdEhyj29zhst3L1lKsRQ==} cpu: [arm64] os: [android] - '@rollup/rollup-darwin-arm64@4.40.2': - resolution: {integrity: sha512-Gzf1Hn2Aoe8VZzevHostPX23U7N5+4D36WJNHK88NZHCJr7aVMG4fadqkIf72eqVPGjGc0HJHNuUaUcxiR+N/w==} + '@rollup/rollup-darwin-arm64@4.45.1': + resolution: {integrity: sha512-FSncqHvqTm3lC6Y13xncsdOYfxGSLnP+73k815EfNmpewPs+EyM49haPS105Rh4aF5mJKywk9X0ogzLXZzN9lA==} cpu: [arm64] os: [darwin] - '@rollup/rollup-darwin-x64@4.40.2': - resolution: {integrity: sha512-47N4hxa01a4x6XnJoskMKTS8XZ0CZMd8YTbINbi+w03A2w4j1RTlnGHOz/P0+Bg1LaVL6ufZyNprSg+fW5nYQQ==} + '@rollup/rollup-darwin-x64@4.45.1': + resolution: {integrity: sha512-2/vVn/husP5XI7Fsf/RlhDaQJ7x9zjvC81anIVbr4b/f0xtSmXQTFcGIQ/B1cXIYM6h2nAhJkdMHTnD7OtQ9Og==} cpu: [x64] os: [darwin] - '@rollup/rollup-freebsd-arm64@4.40.2': - resolution: {integrity: sha512-8t6aL4MD+rXSHHZUR1z19+9OFJ2rl1wGKvckN47XFRVO+QL/dUSpKA2SLRo4vMg7ELA8pzGpC+W9OEd1Z/ZqoQ==} + '@rollup/rollup-freebsd-arm64@4.45.1': + resolution: {integrity: sha512-4g1kaDxQItZsrkVTdYQ0bxu4ZIQ32cotoQbmsAnW1jAE4XCMbcBPDirX5fyUzdhVCKgPcrwWuucI8yrVRBw2+g==} cpu: [arm64] os: [freebsd] - '@rollup/rollup-freebsd-x64@4.40.2': - resolution: {integrity: sha512-C+AyHBzfpsOEYRFjztcYUFsH4S7UsE9cDtHCtma5BK8+ydOZYgMmWg1d/4KBytQspJCld8ZIujFMAdKG1xyr4Q==} + '@rollup/rollup-freebsd-x64@4.45.1': + resolution: {integrity: sha512-L/6JsfiL74i3uK1Ti2ZFSNsp5NMiM4/kbbGEcOCps99aZx3g8SJMO1/9Y0n/qKlWZfn6sScf98lEOUe2mBvW9A==} cpu: [x64] os: [freebsd] - '@rollup/rollup-linux-arm-gnueabihf@4.40.2': - resolution: {integrity: sha512-de6TFZYIvJwRNjmW3+gaXiZ2DaWL5D5yGmSYzkdzjBDS3W+B9JQ48oZEsmMvemqjtAFzE16DIBLqd6IQQRuG9Q==} + '@rollup/rollup-linux-arm-gnueabihf@4.45.1': + resolution: {integrity: sha512-RkdOTu2jK7brlu+ZwjMIZfdV2sSYHK2qR08FUWcIoqJC2eywHbXr0L8T/pONFwkGukQqERDheaGTeedG+rra6Q==} cpu: [arm] os: [linux] - '@rollup/rollup-linux-arm-musleabihf@4.40.2': - resolution: {integrity: sha512-urjaEZubdIkacKc930hUDOfQPysezKla/O9qV+O89enqsqUmQm8Xj8O/vh0gHg4LYfv7Y7UsE3QjzLQzDYN1qg==} + '@rollup/rollup-linux-arm-musleabihf@4.45.1': + resolution: {integrity: sha512-3kJ8pgfBt6CIIr1o+HQA7OZ9mp/zDk3ctekGl9qn/pRBgrRgfwiffaUmqioUGN9hv0OHv2gxmvdKOkARCtRb8Q==} cpu: [arm] os: [linux] - '@rollup/rollup-linux-arm64-gnu@4.40.2': - resolution: {integrity: sha512-KlE8IC0HFOC33taNt1zR8qNlBYHj31qGT1UqWqtvR/+NuCVhfufAq9fxO8BMFC22Wu0rxOwGVWxtCMvZVLmhQg==} + '@rollup/rollup-linux-arm64-gnu@4.45.1': + resolution: {integrity: sha512-k3dOKCfIVixWjG7OXTCOmDfJj3vbdhN0QYEqB+OuGArOChek22hn7Uy5A/gTDNAcCy5v2YcXRJ/Qcnm4/ma1xw==} cpu: [arm64] os: [linux] - '@rollup/rollup-linux-arm64-musl@4.40.2': - resolution: {integrity: sha512-j8CgxvfM0kbnhu4XgjnCWJQyyBOeBI1Zq91Z850aUddUmPeQvuAy6OiMdPS46gNFgy8gN1xkYyLgwLYZG3rBOg==} + '@rollup/rollup-linux-arm64-musl@4.45.1': + resolution: {integrity: sha512-PmI1vxQetnM58ZmDFl9/Uk2lpBBby6B6rF4muJc65uZbxCs0EA7hhKCk2PKlmZKuyVSHAyIw3+/SiuMLxKxWog==} cpu: [arm64] os: [linux] - '@rollup/rollup-linux-loongarch64-gnu@4.40.2': - resolution: {integrity: sha512-Ybc/1qUampKuRF4tQXc7G7QY9YRyeVSykfK36Y5Qc5dmrIxwFhrOzqaVTNoZygqZ1ZieSWTibfFhQ5qK8jpWxw==} + '@rollup/rollup-linux-loongarch64-gnu@4.45.1': + resolution: {integrity: sha512-9UmI0VzGmNJ28ibHW2GpE2nF0PBQqsyiS4kcJ5vK+wuwGnV5RlqdczVocDSUfGX/Na7/XINRVoUgJyFIgipoRg==} cpu: [loong64] os: [linux] - '@rollup/rollup-linux-powerpc64le-gnu@4.40.2': - resolution: {integrity: sha512-3FCIrnrt03CCsZqSYAOW/k9n625pjpuMzVfeI+ZBUSDT3MVIFDSPfSUgIl9FqUftxcUXInvFah79hE1c9abD+Q==} + '@rollup/rollup-linux-powerpc64le-gnu@4.45.1': + resolution: {integrity: sha512-7nR2KY8oEOUTD3pBAxIBBbZr0U7U+R9HDTPNy+5nVVHDXI4ikYniH1oxQz9VoB5PbBU1CZuDGHkLJkd3zLMWsg==} cpu: [ppc64] os: [linux] - '@rollup/rollup-linux-riscv64-gnu@4.40.2': - resolution: {integrity: sha512-QNU7BFHEvHMp2ESSY3SozIkBPaPBDTsfVNGx3Xhv+TdvWXFGOSH2NJvhD1zKAT6AyuuErJgbdvaJhYVhVqrWTg==} + '@rollup/rollup-linux-riscv64-gnu@4.45.1': + resolution: {integrity: sha512-nlcl3jgUultKROfZijKjRQLUu9Ma0PeNv/VFHkZiKbXTBQXhpytS8CIj5/NfBeECZtY2FJQubm6ltIxm/ftxpw==} cpu: [riscv64] os: [linux] - '@rollup/rollup-linux-riscv64-musl@4.40.2': - resolution: {integrity: sha512-5W6vNYkhgfh7URiXTO1E9a0cy4fSgfE4+Hl5agb/U1sa0kjOLMLC1wObxwKxecE17j0URxuTrYZZME4/VH57Hg==} + '@rollup/rollup-linux-riscv64-musl@4.45.1': + resolution: {integrity: sha512-HJV65KLS51rW0VY6rvZkiieiBnurSzpzore1bMKAhunQiECPuxsROvyeaot/tcK3A3aGnI+qTHqisrpSgQrpgA==} cpu: [riscv64] os: [linux] - '@rollup/rollup-linux-s390x-gnu@4.40.2': - resolution: {integrity: sha512-B7LKIz+0+p348JoAL4X/YxGx9zOx3sR+o6Hj15Y3aaApNfAshK8+mWZEf759DXfRLeL2vg5LYJBB7DdcleYCoQ==} + '@rollup/rollup-linux-s390x-gnu@4.45.1': + resolution: {integrity: sha512-NITBOCv3Qqc6hhwFt7jLV78VEO/il4YcBzoMGGNxznLgRQf43VQDae0aAzKiBeEPIxnDrACiMgbqjuihx08OOw==} cpu: [s390x] os: [linux] - '@rollup/rollup-linux-x64-gnu@4.40.2': - resolution: {integrity: sha512-lG7Xa+BmBNwpjmVUbmyKxdQJ3Q6whHjMjzQplOs5Z+Gj7mxPtWakGHqzMqNER68G67kmCX9qX57aRsW5V0VOng==} + '@rollup/rollup-linux-x64-gnu@4.45.1': + resolution: {integrity: sha512-+E/lYl6qu1zqgPEnTrs4WysQtvc/Sh4fC2nByfFExqgYrqkKWp1tWIbe+ELhixnenSpBbLXNi6vbEEJ8M7fiHw==} cpu: [x64] os: [linux] - '@rollup/rollup-linux-x64-musl@4.40.2': - resolution: {integrity: sha512-tD46wKHd+KJvsmije4bUskNuvWKFcTOIM9tZ/RrmIvcXnbi0YK/cKS9FzFtAm7Oxi2EhV5N2OpfFB348vSQRXA==} + '@rollup/rollup-linux-x64-musl@4.45.1': + resolution: {integrity: sha512-a6WIAp89p3kpNoYStITT9RbTbTnqarU7D8N8F2CV+4Cl9fwCOZraLVuVFvlpsW0SbIiYtEnhCZBPLoNdRkjQFw==} cpu: [x64] os: [linux] - '@rollup/rollup-win32-arm64-msvc@4.40.2': - resolution: {integrity: sha512-Bjv/HG8RRWLNkXwQQemdsWw4Mg+IJ29LK+bJPW2SCzPKOUaMmPEppQlu/Fqk1d7+DX3V7JbFdbkh/NMmurT6Pg==} + '@rollup/rollup-win32-arm64-msvc@4.45.1': + resolution: {integrity: sha512-T5Bi/NS3fQiJeYdGvRpTAP5P02kqSOpqiopwhj0uaXB6nzs5JVi2XMJb18JUSKhCOX8+UE1UKQufyD6Or48dJg==} cpu: [arm64] os: [win32] - '@rollup/rollup-win32-ia32-msvc@4.40.2': - resolution: {integrity: sha512-dt1llVSGEsGKvzeIO76HToiYPNPYPkmjhMHhP00T9S4rDern8P2ZWvWAQUEJ+R1UdMWJ/42i/QqJ2WV765GZcA==} + '@rollup/rollup-win32-ia32-msvc@4.45.1': + resolution: {integrity: sha512-lxV2Pako3ujjuUe9jiU3/s7KSrDfH6IgTSQOnDWr9aJ92YsFd7EurmClK0ly/t8dzMkDtd04g60WX6yl0sGfdw==} cpu: [ia32] os: [win32] - '@rollup/rollup-win32-x64-msvc@4.40.2': - resolution: {integrity: sha512-bwspbWB04XJpeElvsp+DCylKfF4trJDa2Y9Go8O6A7YLX2LIKGcNK/CYImJN6ZP4DcuOHB4Utl3iCbnR62DudA==} + '@rollup/rollup-win32-x64-msvc@4.45.1': + resolution: {integrity: sha512-M/fKi4sasCdM8i0aWJjCSFm2qEnYRR8AMLG2kxp6wD13+tMGA4Z1tVAuHkNRjud5SW2EM3naLuK35w9twvf6aA==} cpu: [x64] os: [win32] @@ -5539,16 +5421,16 @@ packages: '@rushstack/ts-command-line@5.0.1': resolution: {integrity: sha512-bsbUucn41UXrQK7wgM8CNM/jagBytEyJqXw/umtI8d68vFm1Jwxh1OtLrlW7uGZgjCWiiPH6ooUNa1aVsuVr3Q==} - '@storybook/addon-docs@9.0.16': - resolution: {integrity: sha512-/ZXaxMC/JqL0cnVuyPHXdJhNvgCrKvxcnM3ACdgBLsEIGcIqegPF+Ahkb2f9sjU36sR7ihT81cL/7cUvQwzd4Q==} + '@storybook/addon-docs@9.0.17': + resolution: {integrity: sha512-LOX/kKgQGnyulrqZHsvf77+ZoH/nSUaplGr5hvZglW/U6ak6fO9seJyXAzVKEnC6p+F8n02kFBZbi3s+znQhSg==} peerDependencies: - storybook: ^9.0.16 + storybook: ^9.0.17 - '@storybook/addon-links@9.0.16': - resolution: {integrity: sha512-8jiFKeW7gTGZ/WhBnB38dTVFDapyiyLMCvktIcrsVrJTBbj/bC1+ts7OoeuJCs7/EN+2zn9vf+V17ZqI0I2sIA==} + '@storybook/addon-links@9.0.17': + resolution: {integrity: sha512-c4hYojq0O6n5fD8MS+Ss1njR3qs88LLlO3LLaRD4bxsIgn8WFNjgG5677M7m8WjzTgWSxFWN0KAra2kaDZ8Jlg==} peerDependencies: react: 19.1.0 - storybook: ^9.0.16 + storybook: ^9.0.17 peerDependenciesMeta: react: optional: true @@ -5563,24 +5445,24 @@ packages: resolution: {integrity: sha512-qkQwQEvHlxwPCHz/xakGfXJusEa1gKMw7enELh6QGopblfN3rMiV084boqiIqBReqWTasSwHOqvuElAu0NQ+8w==} engines: {node: '>=18'} - '@storybook/builder-webpack5@9.0.16': - resolution: {integrity: sha512-Hb45cgUr6aYK24HBt42EGApbJVosunt7x6DTjawHD2BAqpfSxo6urLnKFIhx8H+af88XN37MTbp5bNozvw4WPA==} + '@storybook/builder-webpack5@9.0.17': + resolution: {integrity: sha512-LiP/nq3qv+Nowxeo4v/p/Rv7FkZS347iBnjTQJxXWpFXrCjfJujzcYizQ1WXKC5jXnLSl4hqLmaB0tzMc/zFiQ==} peerDependencies: - storybook: ^9.0.16 + storybook: ^9.0.17 typescript: '*' peerDependenciesMeta: typescript: optional: true - '@storybook/core-webpack@9.0.16': - resolution: {integrity: sha512-U1SiqRywp6pu0DNy1uSH6b6B4aw7clYvICf+HNRzULYfS6V7ZHD2VaBmcf1xgx0aqVEPUGv6f46oZr2pzmcjGw==} + '@storybook/core-webpack@9.0.17': + resolution: {integrity: sha512-NyPSqYUZiD3ICHq/07IC06cDI5mwLA7cqmekWbD9BfSriI9RES88aQ7/WzliHLWwqQXj5Van3tt4IUfaU4Q3ng==} peerDependencies: - storybook: ^9.0.16 + storybook: ^9.0.17 - '@storybook/csf-plugin@9.0.16': - resolution: {integrity: sha512-MSmfPwI0j1mMAc+R3DVkVBQf2KLzaVn2SLdEwweesx63Nh9j3zu9CqKEa0zOuDX1lR2M0DZU0lV6K4sc2EYI4A==} + '@storybook/csf-plugin@9.0.17': + resolution: {integrity: sha512-6Q4eo1ObrLlsnB6bIt6T8+45XAb4to2pQGNrI7QPkLQRLrZinrJcNbLY7AGkyIoCOEsEbq08n09/nClQUbu8HA==} peerDependencies: - storybook: ^9.0.16 + storybook: ^9.0.17 '@storybook/global@5.0.0': resolution: {integrity: sha512-FcOqPAXACP0I3oJ/ws6/rrPT9WGhu915Cg8D02a9YxLo0DE9zI+a9A5gRGvmQ09fiWPukqI8ZAEoQEdWUKMQdQ==} @@ -5592,13 +5474,13 @@ packages: react: 19.1.0 react-dom: 19.1.0 - '@storybook/preset-react-webpack@9.0.16': - resolution: {integrity: sha512-esAGMKxeXfbW2O86u9foSOGegGQz78335u9RiCKaHXz6gl/xsoE60q3EEQhYxftO630YRfIXbZY7+N9rvbs78w==} + '@storybook/preset-react-webpack@9.0.17': + resolution: {integrity: sha512-7PnsgK1T8qqR5TwzGN7lYcnpIUgp7B716V6hYClAhn8rVMHHvK0HD4Inu5vyCCTZUHimr6XAxGmeyGSzuwA1WA==} engines: {node: '>=20.0.0'} peerDependencies: react: 19.1.0 react-dom: 19.1.0 - storybook: ^9.0.16 + storybook: ^9.0.17 typescript: '*' peerDependenciesMeta: typescript: @@ -5610,39 +5492,39 @@ packages: typescript: '>= 4.x' webpack: '>= 4' - '@storybook/react-dom-shim@9.0.16': - resolution: {integrity: sha512-5aIK+31R41mRUvDB4vmBv8hwh3IVHIk/Zbs6kkWF2a+swOsB2+a06aLX21lma4/0T/AuFVXHWat0+inQ4nrXRg==} + '@storybook/react-dom-shim@9.0.17': + resolution: {integrity: sha512-ak/x/m6MDDxdE6rCDymTltaiQF3oiKrPHSwfM+YPgQR6MVmzTTs4+qaPfeev7FZEHq23IkfDMTmSTTJtX7Vs9A==} peerDependencies: react: 19.1.0 react-dom: 19.1.0 - storybook: ^9.0.16 + storybook: ^9.0.17 - '@storybook/react-webpack5@9.0.16': - resolution: {integrity: sha512-0m2JKE+ZiEquC6CBwVnsgzOFlkRNNRKnBUJg/K38QSeK62l3zD8Dy7j19LQzUUyMCnYdKYql67kKn8tDOeekOw==} + '@storybook/react-webpack5@9.0.17': + resolution: {integrity: sha512-hRDaUvQnB517jhB2FvNrhdhP2mF4up+CNYP8RnYI9zPEHXkaM9qpUxkoZF4NouS4RAZxsJXJI7fT+nNc/niE1A==} engines: {node: '>=20.0.0'} peerDependencies: react: 19.1.0 react-dom: 19.1.0 - storybook: ^9.0.16 + storybook: ^9.0.17 typescript: '>= 4.9.x' peerDependenciesMeta: typescript: optional: true - '@storybook/react@9.0.16': - resolution: {integrity: sha512-1jk9fBe8vEoZrba9cK19ZDdZgYMXUNl3Egjj5RsTMYMc1L2mtIu9o56VyK/1V4Q52N9IyawHvmIIuxc5pCZHkQ==} + '@storybook/react@9.0.17': + resolution: {integrity: sha512-wssao+uXg72OHtEJdQmmQJGdX90x/aU/6avoP3fgVgepWdZXVgciS9mnqHjKRF/vP+vPOlNQcJjojF/zTtq5qg==} engines: {node: '>=20.0.0'} peerDependencies: react: 19.1.0 react-dom: 19.1.0 - storybook: ^9.0.16 + storybook: ^9.0.17 typescript: '>= 4.9.x' peerDependenciesMeta: typescript: optional: true - '@stylistic/eslint-plugin@5.1.0': - resolution: {integrity: sha512-TJRJul4u/lmry5N/kyCU+7RWWOk0wyXN+BncRlDYBqpLFnzXkd7QGVfN7KewarFIXv0IX0jSF/Ksu7aHWEDeuw==} + '@stylistic/eslint-plugin@5.2.0': + resolution: {integrity: sha512-RCEdbREv9EBiToUBQTlRhVYKG093I6ZnnQ990j08eJ6uRZh71DXkOnoxtTLfDQ6utVCVQzrhZFHZP0zfrfOIjA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: '>=9.0.0' @@ -5859,8 +5741,8 @@ packages: '@types/node@22.15.17': resolution: {integrity: sha512-wIX2aSZL5FE+MR0JlvF87BNVrtFWf6AE6rxSE9X7OwnVvoyCQjpzSRJ+M87se/4QCkCiebQAqrJ0y6fwIyi7nw==} - '@types/node@24.0.13': - resolution: {integrity: sha512-Qm9OYVOFHFYg3wJoTSrz80hoec5Lia/dPp84do3X7dZvLikQvM1YpmvTBEdIr/e+U8HTkFjLHLnl78K/qjf+jQ==} + '@types/node@24.0.14': + resolution: {integrity: sha512-4zXMWD91vBLGRtHK3YbIoFMia+1nqEz72coM42C5ETjnNCa/heoj7NT1G67iAfOqMmcfhuCZ4uNpyz8EjlAejw==} '@types/normalize-package-data@2.4.4': resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==} @@ -5922,62 +5804,40 @@ packages: '@types/whatwg-mimetype@3.0.2': resolution: {integrity: sha512-c2AKvDT8ToxLIOUlN51gTiHXflsfIFisS4pO7pDPoKouJCESkhZnEy623gwP9laCy5lnLDAw1vAzu2vM2YLOrA==} - '@typescript-eslint/eslint-plugin@8.35.1': - resolution: {integrity: sha512-9XNTlo7P7RJxbVeICaIIIEipqxLKguyh+3UbXuT2XQuFp6d8VOeDEGuz5IiX0dgZo8CiI6aOFLg4e8cF71SFVg==} + '@typescript-eslint/eslint-plugin@8.37.0': + resolution: {integrity: sha512-jsuVWeIkb6ggzB+wPCsR4e6loj+rM72ohW6IBn2C+5NCvfUVY8s33iFPySSVXqtm5Hu29Ne/9bnA0JmyLmgenA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: - '@typescript-eslint/parser': ^8.35.1 + '@typescript-eslint/parser': ^8.37.0 eslint: ^8.57.0 || ^9.0.0 typescript: '>=4.8.4 <5.9.0' - '@typescript-eslint/parser@8.36.0': - resolution: {integrity: sha512-FuYgkHwZLuPbZjQHzJXrtXreJdFMKl16BFYyRrLxDhWr6Qr7Kbcu2s1Yhu8tsiMXw1S0W1pjfFfYEt+R604s+Q==} + '@typescript-eslint/parser@8.37.0': + resolution: {integrity: sha512-kVIaQE9vrN9RLCQMQ3iyRlVJpTiDUY6woHGb30JDkfJErqrQEmtdWH3gV0PBAfGZgQXoqzXOO0T3K6ioApbbAA==} 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/project-service@8.34.1': - resolution: {integrity: sha512-nuHlOmFZfuRwLJKDGQOVc0xnQrAmuq1Mj/ISou5044y1ajGNp2BNliIqp7F2LPQ5sForz8lempMFCovfeS1XoA==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - peerDependencies: - typescript: '>=4.8.4 <5.9.0' - - '@typescript-eslint/project-service@8.35.1': - resolution: {integrity: sha512-VYxn/5LOpVxADAuP3NrnxxHYfzVtQzLKeldIhDhzC8UHaiQvYlXvKuVho1qLduFbJjjy5U5bkGwa3rUGUb1Q6Q==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - peerDependencies: - typescript: '>=4.8.4 <5.9.0' - '@typescript-eslint/project-service@8.36.0': resolution: {integrity: sha512-JAhQFIABkWccQYeLMrHadu/fhpzmSQ1F1KXkpzqiVxA/iYI6UnRt2trqXHt1sYEcw1mxLnB9rKMsOxXPxowN/g==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: typescript: '>=4.8.4 <5.9.0' - '@typescript-eslint/scope-manager@8.34.1': - resolution: {integrity: sha512-beu6o6QY4hJAgL1E8RaXNC071G4Kso2MGmJskCFQhRhg8VOH/FDbC8soP8NHN7e/Hdphwp8G8cE6OBzC8o41ZA==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - - '@typescript-eslint/scope-manager@8.35.1': - resolution: {integrity: sha512-s/Bpd4i7ht2934nG+UoSPlYXd08KYz3bmjLEb7Ye1UVob0d1ENiT3lY8bsCmik4RqfSbPw9xJJHbugpPpP5JUg==} + '@typescript-eslint/project-service@8.37.0': + resolution: {integrity: sha512-BIUXYsbkl5A1aJDdYJCBAo8rCEbAvdquQ8AnLb6z5Lp1u3x5PNgSSx9A/zqYc++Xnr/0DVpls8iQ2cJs/izTXA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + typescript: '>=4.8.4 <5.9.0' '@typescript-eslint/scope-manager@8.36.0': resolution: {integrity: sha512-wCnapIKnDkN62fYtTGv2+RY8FlnBYA3tNm0fm91kc2BjPhV2vIjwwozJ7LToaLAyb1ca8BxrS7vT+Pvvf7RvqA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@typescript-eslint/tsconfig-utils@8.34.1': - resolution: {integrity: sha512-K4Sjdo4/xF9NEeA2khOb7Y5nY6NSXBnod87uniVYW9kHP+hNlDV8trUSFeynA2uxWam4gIWgWoygPrv9VMWrYg==} + '@typescript-eslint/scope-manager@8.37.0': + resolution: {integrity: sha512-0vGq0yiU1gbjKob2q691ybTg9JX6ShiVXAAfm2jGf3q0hdP6/BruaFjL/ManAR/lj05AvYCH+5bbVo0VtzmjOA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - peerDependencies: - typescript: '>=4.8.4 <5.9.0' - - '@typescript-eslint/tsconfig-utils@8.35.1': - resolution: {integrity: sha512-K5/U9VmT9dTHoNowWZpz+/TObS3xqC5h0xAIjXPw+MNcKV9qg6eSatEnmeAwkjHijhACH0/N7bkhKvbt1+DXWQ==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - peerDependencies: - typescript: '>=4.8.4 <5.9.0' '@typescript-eslint/tsconfig-utils@8.36.0': resolution: {integrity: sha512-Nhh3TIEgN18mNbdXpd5Q8mSCBnrZQeY9V7Ca3dqYvNDStNIGRmJA6dmrIPMJ0kow3C7gcQbpsG2rPzy1Ks/AnA==} @@ -5985,11 +5845,10 @@ packages: peerDependencies: typescript: '>=4.8.4 <5.9.0' - '@typescript-eslint/type-utils@8.35.1': - resolution: {integrity: sha512-HOrUBlfVRz5W2LIKpXzZoy6VTZzMu2n8q9C2V/cFngIC5U1nStJgv0tMV4sZPzdf4wQm9/ToWUFPMN9Vq9VJQQ==} + '@typescript-eslint/tsconfig-utils@8.37.0': + resolution: {integrity: sha512-1/YHvAVTimMM9mmlPvTec9NP4bobA1RkDbMydxG8omqwJJLEW/Iy2C4adsAESIXU3WGLXFHSZUU+C9EoFWl4Zg==} 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/type-utils@8.36.0': @@ -5999,29 +5858,20 @@ packages: eslint: ^8.57.0 || ^9.0.0 typescript: '>=4.8.4 <5.9.0' - '@typescript-eslint/types@8.34.1': - resolution: {integrity: sha512-rjLVbmE7HR18kDsjNIZQHxmv9RZwlgzavryL5Lnj2ujIRTeXlKtILHgRNmQ3j4daw7zd+mQgy+uyt6Zo6I0IGA==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - - '@typescript-eslint/types@8.35.1': - resolution: {integrity: sha512-q/O04vVnKHfrrhNAscndAn1tuQhIkwqnaW+eu5waD5IPts2eX1dgJxgqcPx5BX109/qAz7IG6VrEPTOYKCNfRQ==} + '@typescript-eslint/type-utils@8.37.0': + resolution: {integrity: sha512-SPkXWIkVZxhgwSwVq9rqj/4VFo7MnWwVaRNznfQDc/xPYHjXnPfLWn+4L6FF1cAz6e7dsqBeMawgl7QjUMj4Ow==} 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/types@8.36.0': resolution: {integrity: sha512-xGms6l5cTJKQPZOKM75Dl9yBfNdGeLRsIyufewnxT4vZTrjC0ImQT4fj8QmtJK84F58uSh5HVBSANwcfiXxABQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@typescript-eslint/typescript-estree@8.34.1': - resolution: {integrity: sha512-rjCNqqYPuMUF5ODD+hWBNmOitjBWghkGKJg6hiCHzUvXRy6rK22Jd3rwbP2Xi+R7oYVvIKhokHVhH41BxPV5mA==} + '@typescript-eslint/types@8.37.0': + resolution: {integrity: sha512-ax0nv7PUF9NOVPs+lmQ7yIE7IQmAf8LGcXbMvHX5Gm+YJUYNAl340XkGnrimxZ0elXyoQJuN5sbg6C4evKA4SQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - peerDependencies: - typescript: '>=4.8.4 <5.9.0' - - '@typescript-eslint/typescript-estree@8.35.1': - resolution: {integrity: sha512-Vvpuvj4tBxIka7cPs6Y1uvM7gJgdF5Uu9F+mBJBPY4MhvjrjWGK4H0lVgLJd/8PWZ23FTqsaJaLEkBCFUk8Y9g==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - peerDependencies: - typescript: '>=4.8.4 <5.9.0' '@typescript-eslint/typescript-estree@8.36.0': resolution: {integrity: sha512-JaS8bDVrfVJX4av0jLpe4ye0BpAaUW7+tnS4Y4ETa3q7NoZgzYbN9zDQTJ8kPb5fQ4n0hliAt9tA4Pfs2zA2Hg==} @@ -6029,18 +5879,10 @@ packages: peerDependencies: typescript: '>=4.8.4 <5.9.0' - '@typescript-eslint/utils@8.34.1': - resolution: {integrity: sha512-mqOwUdZ3KjtGk7xJJnLbHxTuWVn3GO2WZZuM+Slhkun4+qthLdXx32C8xIXbO1kfCECb3jIs3eoxK3eryk7aoQ==} + '@typescript-eslint/typescript-estree@8.37.0': + resolution: {integrity: sha512-zuWDMDuzMRbQOM+bHyU4/slw27bAUEcKSKKs3hcv2aNnc/tvE/h7w60dwVw8vnal2Pub6RT1T7BI8tFZ1fE+yg==} 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/utils@8.35.1': - resolution: {integrity: sha512-lhnwatFmOFcazAsUm3ZnZFpXSxiwoa1Lj50HphnDe1Et01NF4+hrdXONSUHIcbVu2eFb1bAf+5yjXkGVkXBKAQ==} - 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/utils@8.36.0': @@ -6050,18 +5892,21 @@ packages: eslint: ^8.57.0 || ^9.0.0 typescript: '>=4.8.4 <5.9.0' - '@typescript-eslint/visitor-keys@8.34.1': - resolution: {integrity: sha512-xoh5rJ+tgsRKoXnkBPFRLZ7rjKM0AfVbC68UZ/ECXoDbfggb9RbEySN359acY1vS3qZ0jVTVWzbtfapwm5ztxw==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - - '@typescript-eslint/visitor-keys@8.35.1': - resolution: {integrity: sha512-VRwixir4zBWCSTP/ljEo091lbpypz57PoeAQ9imjG+vbeof9LplljsL1mos4ccG6H9IjfrVGM359RozUnuFhpw==} + '@typescript-eslint/utils@8.37.0': + resolution: {integrity: sha512-TSFvkIW6gGjN2p6zbXo20FzCABbyUAuq6tBvNRGsKdsSQ6a7rnV6ADfZ7f4iI3lIiXc4F4WWvtUfDw9CJ9pO5A==} 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.36.0': resolution: {integrity: sha512-vZrhV2lRPWDuGoxcmrzRZyxAggPL+qp3WzUrlZD+slFueDiYHxeBa34dUXPuC0RmGKzl4lS5kFJYvKCq9cnNDA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + '@typescript-eslint/visitor-keys@8.37.0': + resolution: {integrity: sha512-YzfhzcTnZVPiLfP/oeKtDp2evwvHLMe0LOy7oe+hb9KKIumLNohYS9Hgp1ifwpu42YWxhZE8yieggz6JpqO/1w==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + '@univerjs/icons-svg@0.4.6': resolution: {integrity: sha512-7WbVw1piJRvDWvIEaW/xjX69g7uIvrUpEE1MNSZSzlcWslAG6MkGeidPq0nAMUekAKzOnLFlEotb8z9+iPhFFg==} @@ -6297,6 +6142,10 @@ packages: resolution: {integrity: sha512-jRR5wdylq8CkOe6hei19GGZnxM6rBGwFl3Bg0YItGDimvjGtAvdZk4Pu6Cl4u4Igsws4a1fd1Vq3ezrhn4KmFw==} engines: {node: '>= 14'} + agent-base@7.1.4: + resolution: {integrity: sha512-MnA+YT8fwfJPgBx3m60MNqakm30XOkyIoH1y6huTQvC0PwZG7ki8NacLBcrPbNoo8vEZy7Jpuk7+jMO+CUovTQ==} + engines: {node: '>= 14'} + aggregate-error@3.1.0: resolution: {integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==} engines: {node: '>=8'} @@ -6560,6 +6409,11 @@ packages: engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} hasBin: true + browserslist@4.25.1: + resolution: {integrity: sha512-KGj0KoOMXLpSNkkEI6Z6mShmQy0bc1I+T7K9N81k4WWMrfz+6fQ6es80B/YLAeRoKvjYE1YSHHOW1qe9xIVzHw==} + engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} + hasBin: true + buffer-from@1.1.2: resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==} @@ -6575,8 +6429,8 @@ packages: resolution: {integrity: sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==} engines: {node: '>= 0.8'} - c12@3.0.4: - resolution: {integrity: sha512-t5FaZTYbbCtvxuZq9xxIruYydrAGsJ+8UdP0pZzMiK2xl/gNiSOy0OxhLzHUEEb0m1QXYqfzfvyIFEmz/g9lqg==} + c12@3.1.0: + resolution: {integrity: sha512-uWoS8OU1MEIsOv8p/5a82c3H31LsWVR5qiyXVfBNOzfffjUWtPnhAb4BYI2uG2HfGmZmFjCtui5XNWaps+iFuw==} peerDependencies: magicast: ^0.3.5 peerDependenciesMeta: @@ -6620,6 +6474,9 @@ packages: caniuse-lite@1.0.30001721: resolution: {integrity: sha512-cOuvmUVtKrtEaoKiO0rSc29jcjwMwX5tOHDy4MgVFEWiUXj4uBMJkwI8MDySkgXidpMiHUcviogAvFi4pA2hDQ==} + caniuse-lite@1.0.30001727: + resolution: {integrity: sha512-pB68nIHmbN6L/4C6MH1DokyR3bYqFwjaSs/sWDHGj4CTcFtQUQMuJftVwWkXq7mNWOybD3KhUv3oWHoGxgP14Q==} + case-sensitive-paths-webpack-plugin@2.4.0: resolution: {integrity: sha512-roIFONhcxog0JSSWbvVAh3OocukmSgpqOH6YpMkCvav/ySIV3JKg4Dc8vYtQjYi/UxpNE36r/9v+VqTQqgkYmw==} engines: {node: '>=4'} @@ -6627,9 +6484,9 @@ packages: ccount@2.0.1: resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==} - chai@5.2.0: - resolution: {integrity: sha512-mCuXncKXk5iCLhfhwTc0izo0gtEmpz5CtG2y8GiOINBlMVS6v8TMRc5TaLWKS6692m9+dVVfzgeVxR5UxWHTYw==} - engines: {node: '>=12'} + chai@5.2.1: + resolution: {integrity: sha512-5nFxhUrX0PqtyogoYOA8IPswy5sZFTOsBFl/9bNsmDLgsxYTzSZQJDPppDnZPTQbzSEm0hqGjWPzRemQCYbD6A==} + engines: {node: '>=18'} chalk-template@0.4.0: resolution: {integrity: sha512-/ghrgmhfY8RaSdeo43hNXxpoHAtxdbskUHjPpfqUWGttFgycUhYPGx3YZBCnUCvOa7Doivn1IZec3DEGFoMgLg==} @@ -6695,8 +6552,8 @@ packages: resolution: {integrity: sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==} engines: {node: '>=6.0'} - ci-info@4.2.0: - resolution: {integrity: sha512-cYY9mypksY8NRqgDB1XD1RiJL338v/551niynFTGkZOO2LHuB2OmOYxDIe/ttN9AHwrqdum1360G3ald0W9kCg==} + ci-info@4.3.0: + resolution: {integrity: sha512-l+2bNRMiQgcfILUi33labAZYIWlH1kWDp+ecNo5iisRKrbm0xcRyCww71/YU0Fkw0mAFpz9bJayXPjey6vkmaQ==} engines: {node: '>=8'} citty@0.1.6: @@ -6926,8 +6783,8 @@ packages: convert-source-map@2.0.0: resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==} - core-js-compat@3.43.0: - resolution: {integrity: sha512-2GML2ZsCc5LR7hZYz4AXmjQw8zuy2T//2QntwdnpuYI7jteT6GVYJL7F6C2C57R7gSYrcqVW3lAALefdbhBLDA==} + core-js-compat@3.44.0: + resolution: {integrity: sha512-JepmAj2zfl6ogy34qfWtcE7nHKAJnKsQFRn++scjVS2bZFllwptzw61BZcZFYBPpUznLfAvh0LGhxKppk04ClA==} cosmiconfig-typescript-loader@6.1.0: resolution: {integrity: sha512-tJ1w35ZRUiM5FeTzT7DtYWAFFv37ZLqSRkGi2oeCK1gPhvaWjkAtfXvLmvE1pRfxxp9aQo6ba/Pvg1dKj05D4g==} @@ -7280,8 +7137,8 @@ packages: resolution: {integrity: sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==} engines: {node: '>=8'} - dotenv@16.5.0: - resolution: {integrity: sha512-m/C+AwOAr9/W1UOIZUo232ejMNnJAJtYQjUbHoNTBNTJSvqzzDh7vnrei3o3r3m9blf6ZoDkvcw0VmozNRFJxg==} + dotenv@16.6.1: + resolution: {integrity: sha512-uBq4egWHTcTt33a72vpSG0z3HnPuIl6NqYcTrKEg2azoEyl2hpW0zqlxysq2pK9HlDIHyHyakeYaYnSAwd8bow==} engines: {node: '>=12'} dunder-proto@1.0.1: @@ -7297,6 +7154,9 @@ packages: electron-to-chromium@1.5.165: resolution: {integrity: sha512-naiMx1Z6Nb2TxPU6fiFrUrDTjyPMLdTtaOd2oLmG8zVSg2hCWGkhPyxwk+qRmZ1ytwVqUv0u7ZcDA5+ALhaUtw==} + electron-to-chromium@1.5.186: + resolution: {integrity: sha512-lur7L4BFklgepaJxj4DqPk7vKbTEl0pajNlg2QjE5shefmlmBLm2HvQ7PMf1R/GvlevT/581cop33/quQcfX3A==} + emoji-regex@10.4.0: resolution: {integrity: sha512-EC+0oUMY1Rqm4O6LLrgjtYDvcVYTy7chDnM4Q7030tP4Kwj3u/pR6gP9ygnp2CJMK5Gq+9Q2oqmrFJAz01DXjw==} @@ -7544,11 +7404,6 @@ packages: engines: {node: '>=12'} hasBin: true - esbuild@0.25.4: - resolution: {integrity: sha512-8pgjLUcUjcgDg+2Q4NYXnPbo/vncAY4UmyaCm0jZevERqCHZIaWwdJHkf8XQtu4AxSKCdvrUbT0XUr1IdZzI8Q==} - engines: {node: '>=18'} - hasBin: true - esbuild@0.25.6: resolution: {integrity: sha512-GVuzuUwtdsghE3ocJ9Bs8PNoF13HNQ5TXbEi2AhvVb8xU1Iwt9Fos9FEamfoee+u/TOsn7GUWc04lz46n2bbTg==} engines: {node: '>=18'} @@ -7624,8 +7479,8 @@ packages: peerDependencies: eslint: '*' - eslint-plugin-better-tailwindcss@3.6.0: - resolution: {integrity: sha512-ndgbUTGmcUVdnbFxIXIXvCMZqBuZEEBDj54jqmNKoRHLizC6sjQnRi0l88jYo2v9+fWcYZRPmzCoOm3FUTQhiQ==} + eslint-plugin-better-tailwindcss@3.6.2: + resolution: {integrity: sha512-wx76kveaZGH9DwR6YMKixGKLaaiyAd97RVHMbzDiIOZL5ZR0Cmwkk2pqazrIi5K3CwnJeCDKPBuafZmd9ewrxw==} engines: {node: ^20.11.0 || >=21.2.0} peerDependencies: eslint: ^7.0.0 || ^8.0.0 || ^9.0.0 @@ -7662,8 +7517,8 @@ packages: typescript: optional: true - eslint-plugin-jsdoc@51.3.4: - resolution: {integrity: sha512-maz6qa95+sAjMr9m5oRyfejc+mnyQWsWSe9oyv9371bh4/T0kWOMryJNO4h8rEd97wo/9lbzwi3OOX4rDhnAzg==} + eslint-plugin-jsdoc@51.4.1: + resolution: {integrity: sha512-y4CA9OkachG8v5nAtrwvcvjIbdcKgSyS6U//IfQr4FZFFyeBFwZFf/tfSsMr46mWDJgidZjBTqoCRlXywfFBMg==} engines: {node: '>=20.11.0'} peerDependencies: eslint: ^7.0.0 || ^8.0.0 || ^9.0.0 @@ -7674,8 +7529,8 @@ packages: peerDependencies: eslint: '>=6.0.0' - eslint-plugin-n@17.20.0: - resolution: {integrity: sha512-IRSoatgB/NQJZG5EeTbv/iAx1byOGdbbyhQrNvWdCfTnmPxUT0ao9/eGOeG7ljD8wJBsxwE8f6tES5Db0FRKEw==} + eslint-plugin-n@17.21.0: + resolution: {integrity: sha512-1+iZ8We4ZlwVMtb/DcHG3y5/bZOdazIpa/4TySo22MLKdwrLcfrX0hbadnCvykSQCCmkAnWmIP8jZVb2AAq29A==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: '>=8.23.0' @@ -7702,8 +7557,8 @@ packages: peerDependencies: eslint: '>=8.45.0' - eslint-plugin-pnpm@0.3.1: - resolution: {integrity: sha512-vi5iHoELIAlBbX4AW8ZGzU3tUnfxuXhC/NKo3qRcI5o9igbz6zJUqSlQ03bPeMqWIGTPatZnbWsNR1RnlNERNQ==} + eslint-plugin-pnpm@1.0.0: + resolution: {integrity: sha512-tyEA10k7psB9HFCx8R4/bU4JS2tSKfXaCnrCcis+1R4FucfMIc6HgcFl4msZbwY2I0D9Vec3xAEkXV0aPechhQ==} peerDependencies: eslint: ^9.0.0 @@ -7814,12 +7669,16 @@ packages: '@typescript-eslint/eslint-plugin': optional: true - eslint-plugin-vue@10.2.0: - resolution: {integrity: sha512-tl9s+KN3z0hN2b8fV2xSs5ytGl7Esk1oSCxULLwFcdaElhZ8btYYZFrWxvh4En+czrSDtuLCeCOGa8HhEZuBdQ==} + eslint-plugin-vue@10.3.0: + resolution: {integrity: sha512-A0u9snqjCfYaPnqqOaH6MBLVWDUIN4trXn8J3x67uDcXvR7X6Ut8p16N+nYhMCQ9Y7edg2BIRGzfyZsY0IdqoQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: + '@typescript-eslint/parser': ^7.0.0 || ^8.0.0 eslint: ^8.57.0 || ^9.0.0 vue-eslint-parser: ^10.0.0 + peerDependenciesMeta: + '@typescript-eslint/parser': + optional: true eslint-plugin-yml@1.18.0: resolution: {integrity: sha512-9NtbhHRN2NJa/s3uHchO3qVVZw0vyOIvWlXWGaKCr/6l3Go62wsvJK5byiI6ZoYztDsow4GnS69BZD3GnqH3hA==} @@ -7925,15 +7784,15 @@ packages: resolution: {integrity: sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==} engines: {node: '>=16.17'} - expect-type@1.2.1: - resolution: {integrity: sha512-/kP8CAwxzLVEeFrMm4kMmy4CCDlpipyA7MYLVrdJIkV0fYF0UaigQHRsxHiuY/GEea+bh4KSv3TIlgr+2UL6bw==} + expect-type@1.2.2: + resolution: {integrity: sha512-JhFGDVJ7tmDJItKhYgJCGLOWjuK9vPxiXoUFLwLDc99NlmklilbiQJwoctZtt13+xMw91MCk/REan6MWHqDjyA==} engines: {node: '>=12.0.0'} exsolve@1.0.5: resolution: {integrity: sha512-pz5dvkYYKQ1AHVrgOzBKWeP4u4FRb3a6DNK2ucr0OoNwYIU4QWsJ+NM36LLzORT+z845MzKHHhpXiUF5nvQoJg==} - exsolve@1.0.6: - resolution: {integrity: sha512-Q05uIdxhPBVBwK29gcPsl2K220xSBy52TZQPdeYWE0zOs8jM+yJ6y5h7jm6cpAo1p+OOMZRIj/Ftku4EQQBLnQ==} + exsolve@1.0.7: + resolution: {integrity: sha512-VO5fQUzZtI6C+vx4w/4BWJpg3s/5l+6pRQEHzFRM8WFi4XffSP1Z+4qi7GbjWbvRQEbdIco5mIMq+zX4rPuLrw==} external-editor@3.1.0: resolution: {integrity: sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==} @@ -7973,14 +7832,6 @@ packages: fault@2.0.1: resolution: {integrity: sha512-WtySTkS4OKev5JtpHXnib4Gxiurzh5NCGvWrFaZ34m6JehfTUhKZvn9njTfw48t6JumVQOmrKqpmGcdwxnhqBQ==} - fdir@6.4.4: - resolution: {integrity: sha512-1NZP+GK4GfuAv3PqKvxQRDMjdSRZjnkq7KfhlNrCNNlZ0ygQFpebfrnfnq/W7fpUnAv9aGWmY1zKx7FYL3gwhg==} - peerDependencies: - picomatch: ^3 || ^4 - peerDependenciesMeta: - picomatch: - optional: true - fdir@6.4.6: resolution: {integrity: sha512-hiFoqpyZcfNm1yc4u8oWCf9A2c4D3QjCrks3zmoVKVxpQRzmPNar1hUJcBG2RQHvEVGDN+Jm81ZheVLAQMK6+w==} peerDependencies: @@ -8138,8 +7989,8 @@ packages: get-tsconfig@4.10.1: resolution: {integrity: sha512-auHyJ4AgMz7vgS8Hp3N6HXSmlMdUyhSUrfBF16w153rxtLIEOE+HGqaBppczZvnHLqQJfiHotCYpNhl0lUROFQ==} - get-uri@6.0.4: - resolution: {integrity: sha512-E1b1lFFLvLgak2whF2xDBcOy6NLVGZBqqjJjsIhvopKfWWEi64pLVTWWehV8KlLerZkfNTA95sTe2OdJKm1OzQ==} + get-uri@6.0.5: + resolution: {integrity: sha512-b1O07XYq8eRuVzBNgJLstU6FYc1tS6wnMtF1I1D9lE8LxZSOGZ7LhxN54yPP6mGw5f2CkXY2BQUL9Fx41qvcIg==} engines: {node: '>= 14'} giget@2.0.0: @@ -8397,8 +8248,8 @@ packages: resolution: {integrity: sha512-QQnnxNyfvmHFIsj7gkPcYymR8Jdw/o7mp5ZFihxn6h8Ci6fh3Dx4E1gPjpQEpIuPo9XVNY/ZUwh4BPMjGyL01g==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - inquirer@12.6.3: - resolution: {integrity: sha512-eX9beYAjr1MqYsIjx1vAheXsRk1jbZRvHLcBu5nA9wX0rXR1IfCZLnVLp4Ym4mrhqmh7AuANwcdtgQ291fZDfQ==} + inquirer@12.7.0: + resolution: {integrity: sha512-KKFRc++IONSyE2UYw9CJ1V0IWx5yQKomwB+pp3cWomWs+v2+ZsG11G2OVfAjFS6WWCppKw+RfKmpqGfSzD5QBQ==} engines: {node: '>=18'} peerDependencies: '@types/node': '>=18' @@ -8855,10 +8706,6 @@ packages: lodash.escaperegexp@4.1.2: resolution: {integrity: sha512-TM9YBvyC84ZxE3rgfefxUWiQKLilstD6k7PTGt6wfbtXF8ixIJLOL3VYyV/z+ZiPLsVxAsKAFVwWlWeb2Y8Yyw==} - lodash.get@4.4.2: - resolution: {integrity: sha512-z+Uw/vLuy6gQe8cfaFWD7p0wVv8fJl3mbzXh33RS+0oW2wvUqiRXiQ69gLWSLpgB5/6sU+r6BlQR0MBILadqTQ==} - deprecated: This package is deprecated. Use the optional chaining (?.) operator instead. - lodash.isplainobject@4.0.6: resolution: {integrity: sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==} @@ -8910,9 +8757,6 @@ packages: resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==} hasBin: true - loupe@3.1.3: - resolution: {integrity: sha512-kkIp7XSkP78ZxJEsSxW3712C6teJVoeHHwgo9zJ380de7IYyJ2ISlxojcH2pC5OFLewESmnRi/+XCDIEEVyoug==} - loupe@3.1.4: resolution: {integrity: sha512-wJzkKwJrheKtknCOKNEtDK4iqg/MxmZheEMtSTYvnzRdEYaZzmgH976nenp8WdJRdx5Vc1X/9MO0Oszl6ezeXg==} @@ -9362,8 +9206,8 @@ packages: resolution: {integrity: sha512-VXJjc87FScF88uafS3JllDgvAm+c/Slfz06lorj2uAY34rlUu0Nt+v8wreiImcrgAjjIHp1rXpTDlLOGw29WwQ==} engines: {node: '>=18'} - open@10.1.2: - resolution: {integrity: sha512-cxN6aIDPz6rm8hbebcP7vrQNhvRcveZoJU72Y7vskh4oIm+BZwBECnx5nTmrlres1Qapvx27Qo1Auukpf8PKXw==} + open@10.2.0: + resolution: {integrity: sha512-YgBpdJHPyQ2UE5x+hlSXcnejzAvD0b22U2OuAP+8OnlJT+PjWPxtgmGqKKc+RgTM63U9gN0YzrYc71R2WT/hTA==} engines: {node: '>=18'} open@8.4.2: @@ -9409,6 +9253,11 @@ packages: resolution: {integrity: sha512-qFOyK5PjiWZd+QQIh+1jhdb9LpxTF0qs7Pm8o5QHYZ0M3vKqSqzsZaEB6oWlxZ+q2sJBMI/Ktgd2N5ZwQoRHfg==} engines: {node: '>= 0.4'} + oxlint@1.7.0: + resolution: {integrity: sha512-krJN1fIRhs3xK1FyVyPtYIV9tkT4WDoIwI7eiMEKBuCjxqjQt5ZemQm1htPvHqNDOaWFRFt4btcwFdU8bbwgvA==} + engines: {node: '>=8.*'} + hasBin: true + p-limit@2.3.0: resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==} engines: {node: '>=6'} @@ -9544,8 +9393,8 @@ packages: pathe@2.0.3: resolution: {integrity: sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==} - pathval@2.0.0: - resolution: {integrity: sha512-vE7JKRyES09KiunauX7nd2Q9/L7lhok4smP9RZTDeD4MVs72Dp2qNFVz39Nz5a0FVEW0BJR6C0DYrq6unoziZA==} + pathval@2.0.1: + resolution: {integrity: sha512-//nshmD55c46FuFw26xV/xFAaB5HF9Xdap7HJBBnrKdAd6/GxDBaNA1870O79+9ueg61cZLSVc+OaFlfmObYVQ==} engines: {node: '>= 14.16'} perfect-debounce@1.0.0: @@ -9562,6 +9411,10 @@ packages: resolution: {integrity: sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==} engines: {node: '>=12'} + picomatch@4.0.3: + resolution: {integrity: sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==} + engines: {node: '>=12'} + pidtree@0.6.0: resolution: {integrity: sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==} engines: {node: '>=0.10'} @@ -9585,6 +9438,9 @@ packages: pkg-types@2.1.0: resolution: {integrity: sha512-wmJwA+8ihJixSoHKxZJRBQG1oY8Yr9pGLzRmSsNms0iNWyHHAlZCa7mmKiFR10YPZuz/2k169JiS/inOjBCZ2A==} + pkg-types@2.2.0: + resolution: {integrity: sha512-2SM/GZGAEkPp3KWORxQZns4M+WSeXbC2HEvmOIJe3Cmiv6ieAJvdVhDldtHqM5J1Y7MrR1XhkBT/rMlhh9FdqQ==} + playwright-core@1.54.1: resolution: {integrity: sha512-Nbjs2zjj0htNhzgiy5wu+3w09YetDx5pkrpI/kZotDlDUaYk0HVA5xrBVPdow4SAUIlhgKcJeJg4GRKW6xHusA==} engines: {node: '>=18'} @@ -9599,8 +9455,8 @@ packages: resolution: {integrity: sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==} engines: {node: '>=4'} - pnpm-workspace-yaml@0.3.1: - resolution: {integrity: sha512-3nW5RLmREmZ8Pm8MbPsO2RM+99RRjYd25ynj3NV0cFsN7CcEl4sDFzgoFmSyduFwxFQ2Qbu3y2UdCh6HlyUOeA==} + pnpm-workspace-yaml@1.0.0: + resolution: {integrity: sha512-2RKg3khFgX/oeKIQnxxlj+OUoKbaZjBt7EsmQiLfl8AHZKMIpLmXLRPptZ5eq2Rlumh2gILs6OWNky5dzP+f8A==} possible-typed-array-names@1.1.0: resolution: {integrity: sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg==} @@ -9854,16 +9710,12 @@ packages: postcss-value-parser@4.2.0: resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==} - postcss@8.5.3: - resolution: {integrity: sha512-dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A==} - engines: {node: ^10 || ^12 || >=14} - postcss@8.5.6: resolution: {integrity: sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==} engines: {node: ^10 || ^12 || >=14} - posthog-node@5.5.0: - resolution: {integrity: sha512-q+d6yuwCw88ZkcYTDlrF6eBkbRDgn4pA4Jp8ghm8uTfgxoGUKEcajnuMfmYudAXsly6UC4YccwQThey8p1jvgg==} + posthog-node@5.5.1: + resolution: {integrity: sha512-y2TBl6H27vEbXk7sqG8QISmYaUN/UcPOYYDAK0wtnXRG3ySb93mG//vri1zS2hZvYHbBv0Tz8sLpZRCq4/v99A==} engines: {node: '>=20'} prelude-ls@1.1.2: @@ -9883,6 +9735,11 @@ packages: engines: {node: '>=14'} hasBin: true + prettier@3.6.2: + resolution: {integrity: sha512-I7AIg5boAr5R0FFtJ6rCfD+LFsWHp81dolrFD8S79U9tb8Az2nGrJncnMSnys+bpQJfRUzqs9hnA81OAA3hCuQ==} + engines: {node: '>=14'} + hasBin: true + pretty-error@4.0.0: resolution: {integrity: sha512-AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw==} @@ -10216,8 +10073,8 @@ packages: resolution: {integrity: sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==} engines: {node: '>= 0.10'} - release-it@19.0.3: - resolution: {integrity: sha512-lEXp7w9BZZ4r51toFtE3KnR67doEsyRSUzSONW1mMvinMNjBjKKySEBQxPcSQK9nKV1cpwHI0ONhr66M/gSYIw==} + release-it@19.0.4: + resolution: {integrity: sha512-W9A26FW+l1wy5fDg9BeAknZ19wV+UvHUDOC4D355yIOZF/nHBOIhjDwutKd4pikkjvL7CpKeF+4zLxVP9kmVEw==} engines: {node: ^20.12.0 || >=22.0.0} hasBin: true @@ -10283,8 +10140,8 @@ packages: deprecated: Rimraf versions prior to v4 are no longer supported hasBin: true - rollup@4.40.2: - resolution: {integrity: sha512-tfUOg6DTP4rhQ3VjOO6B4wyrJnGOX85requAXvqYTHsOgb2TFJdZ3aWpT8W2kPoypSGP7dZUyzxJ9ee4buM5Fg==} + rollup@4.45.1: + resolution: {integrity: sha512-4iya7Jb76fVpQyLoiVpzUrsjQ12r3dM7fIVz+4NwoYvZOShknRmiv+iu9CClZml5ZLGb0XMcYLutK6w9tgxHDw==} engines: {node: '>=18.0.0', npm: '>=8.0.0'} hasBin: true @@ -10295,8 +10152,8 @@ packages: resolution: {integrity: sha512-9by4Ij99JUr/MCFBUkDKLWK3G9HVXmabKz9U5MlIAIuvuzkiOicRYs8XJLxX+xahD+mLiiCYDqF9dKAgtzKP1A==} engines: {node: '>=18'} - run-async@3.0.0: - resolution: {integrity: sha512-540WwVDOMxA6dN6We19EcT9sc3hkXPw5mzRNGM3FkdN/vtE9NFvj5lFAPNwUDmJjXidm3v7TC1cTE7t17Ulm1Q==} + run-async@4.0.4: + resolution: {integrity: sha512-2cgeRHnV11lSXBEhq7sN7a5UVjTKm9JTb9x8ApIT//16D7QL96AgnNeWSGoB4gIHc0iYw/Ha0Z+waBaCYZVNhg==} engines: {node: '>=0.12.0'} run-parallel@1.2.0: @@ -10449,8 +10306,8 @@ packages: resolution: {integrity: sha512-HehCEsotFqbPW9sJ8WVYB6UbmIMv7kUUORIF2Nncq4VQvBfNBLibW9YZR5dlYCSUhwcD628pRllm7n+E+YTzJw==} engines: {node: '>= 14'} - socks@2.8.5: - resolution: {integrity: sha512-iF+tNDQla22geJdTyJB1wM/qrX9DMRwWrciEPwWLPRWAUEM8sQiyxgckLxWT1f7+9VabJS0jTGGr4QgBuvi6Ww==} + socks@2.8.6: + resolution: {integrity: sha512-pe4Y2yzru68lXCb38aAqRf5gvN8YdjP1lok5o0J7BOHljkyCGKVz7H3vpVIXKD27rj2giOJ7DwVyk/GWrPHDWA==} engines: {node: '>= 10.0.0', npm: '>= 3.0.0'} sonner@2.0.6: @@ -10521,8 +10378,8 @@ packages: webpack: optional: true - storybook@9.0.16: - resolution: {integrity: sha512-DzjzeggdzlXKKBK1L9iqNKqqNpyfeaL1hxxeAOmqgeMezwy5d5mCJmjNcZEmx+prsRmvj1OWm4ZZAg6iP/wABg==} + storybook@9.0.17: + resolution: {integrity: sha512-O+9jgJ+Trlq9VGD1uY4OBLKQWHHDKM/A/pA8vMW6PVehhGHNvpzcIC1bngr6mL5gGHZP2nBv+9XG8pTMcggMmg==} hasBin: true peerDependencies: prettier: ^2 || ^3 @@ -10755,10 +10612,6 @@ packages: tinyexec@1.0.1: resolution: {integrity: sha512-5uC6DDlmeqiOwCPmK9jMSdOuZTh8bU39Ys6yidB+UTt5hfZUPGAypSgFRiEp+jbi9qH40BLDvy85jIU88wKSqw==} - tinyglobby@0.2.13: - resolution: {integrity: sha512-mEwzpUgrLySlveBwEVDMKk5B57bhLPYovRfPAXD5gA/98Opn0rCDj3GtLwFvCvH5RK9uPCExUROW5NjDwvqkxw==} - engines: {node: '>=12.0.0'} - tinyglobby@0.2.14: resolution: {integrity: sha512-tX5e7OM1HnYr2+a2C/4V0htOcSQcoSTH9KgJnVvNm5zm/cyEWKJ7j7YutsH9CxMdtOkkLFy2AHrMci9IM8IPZQ==} engines: {node: '>=12.0.0'} @@ -10845,38 +10698,38 @@ packages: engines: {node: '>=18.0.0'} hasBin: true - turbo-darwin-64@2.5.4: - resolution: {integrity: sha512-ah6YnH2dErojhFooxEzmvsoZQTMImaruZhFPfMKPBq8sb+hALRdvBNLqfc8NWlZq576FkfRZ/MSi4SHvVFT9PQ==} + turbo-darwin-64@2.5.5: + resolution: {integrity: sha512-RYnTz49u4F5tDD2SUwwtlynABNBAfbyT2uU/brJcyh5k6lDLyNfYKdKmqd3K2ls4AaiALWrFKVSBsiVwhdFNzQ==} cpu: [x64] os: [darwin] - turbo-darwin-arm64@2.5.4: - resolution: {integrity: sha512-2+Nx6LAyuXw2MdXb7pxqle3MYignLvS7OwtsP9SgtSBaMlnNlxl9BovzqdYAgkUW3AsYiQMJ/wBRb7d+xemM5A==} + turbo-darwin-arm64@2.5.5: + resolution: {integrity: sha512-Tk+ZeSNdBobZiMw9aFypQt0DlLsWSFWu1ymqsAdJLuPoAH05qCfYtRxE1pJuYHcJB5pqI+/HOxtJoQ40726Btw==} cpu: [arm64] os: [darwin] - turbo-linux-64@2.5.4: - resolution: {integrity: sha512-5May2kjWbc8w4XxswGAl74GZ5eM4Gr6IiroqdLhXeXyfvWEdm2mFYCSWOzz0/z5cAgqyGidF1jt1qzUR8hTmOA==} + turbo-linux-64@2.5.5: + resolution: {integrity: sha512-2/XvMGykD7VgsvWesZZYIIVXMlgBcQy+ZAryjugoTcvJv8TZzSU/B1nShcA7IAjZ0q7OsZ45uP2cOb8EgKT30w==} cpu: [x64] os: [linux] - turbo-linux-arm64@2.5.4: - resolution: {integrity: sha512-/2yqFaS3TbfxV3P5yG2JUI79P7OUQKOUvAnx4MV9Bdz6jqHsHwc9WZPpO4QseQm+NvmgY6ICORnoVPODxGUiJg==} + turbo-linux-arm64@2.5.5: + resolution: {integrity: sha512-DW+8CjCjybu0d7TFm9dovTTVg1VRnlkZ1rceO4zqsaLrit3DgHnN4to4uwyuf9s2V/BwS3IYcRy+HG9BL596Iw==} cpu: [arm64] os: [linux] - turbo-windows-64@2.5.4: - resolution: {integrity: sha512-EQUO4SmaCDhO6zYohxIjJpOKRN3wlfU7jMAj3CgcyTPvQR/UFLEKAYHqJOnJtymbQmiiM/ihX6c6W6Uq0yC7mA==} + turbo-windows-64@2.5.5: + resolution: {integrity: sha512-q5p1BOy8ChtSZfULuF1BhFMYIx6bevXu4fJ+TE/hyNfyHJIfjl90Z6jWdqAlyaFLmn99X/uw+7d6T/Y/dr5JwQ==} cpu: [x64] os: [win32] - turbo-windows-arm64@2.5.4: - resolution: {integrity: sha512-oQ8RrK1VS8lrxkLriotFq+PiF7iiGgkZtfLKF4DDKsmdbPo0O9R2mQxm7jHLuXraRCuIQDWMIw6dpcr7Iykf4A==} + turbo-windows-arm64@2.5.5: + resolution: {integrity: sha512-AXbF1KmpHUq3PKQwddMGoKMYhHsy5t1YBQO8HZ04HLMR0rWv9adYlQ8kaeQJTko1Ay1anOBFTqaxfVOOsu7+1Q==} cpu: [arm64] os: [win32] - turbo@2.5.4: - resolution: {integrity: sha512-kc8ZibdRcuWUG1pbYSBFWqmIjynlD8Lp7IB6U3vIzvOv9VG+6Sp8bzyeBWE3Oi8XV5KsQrznyRTBPvrf99E4mA==} + turbo@2.5.5: + resolution: {integrity: sha512-eZ7wI6KjtT1eBqCnh2JPXWNUAxtoxxfi6VdBdZFvil0ychCOTxbm7YLRBi1JSt7U3c+u3CLxpoPxLdvr/Npr3A==} hasBin: true type-check@0.3.2: @@ -10951,8 +10804,8 @@ packages: undici-types@7.8.0: resolution: {integrity: sha512-9UJ2xGDvQ43tYyVMpuHlsgApydB8ZKfVYTsLDhXkFL/6gfkp+U8xTGdh8pMJv1SpZna0zxG1DwsKZsreLbXBxw==} - undici@6.21.2: - resolution: {integrity: sha512-uROZWze0R0itiAKVPsYhFov9LxrPMHLMEQFszeI2gCN6bnIIZ8twzBCJcN2LJrBBLfrP0t1FW0g+JmKVl8Vk1g==} + undici@6.21.3: + resolution: {integrity: sha512-gBLkYIlEnSp8pFbT64yFgGE6UIB9tAkhukC23PmMDCe5Nd+cRqKxSjw5y54MK2AZMgZfJWMaNE4nYUHgi1XEOw==} engines: {node: '>=18.17'} unicode-regex@4.1.2: @@ -11078,19 +10931,19 @@ packages: resolution: {integrity: sha512-OpdFlWgVfWyZgx9nym3LAQp4DciutbqwSKzbA1l2Bg7CNzlDd3jnHfv1uWTY4y5h2gRfgT60ZtOgF5+W95i+3A==} engines: {node: '>=14.18.0', vite: '>=3.1.0'} - vite@6.3.5: - resolution: {integrity: sha512-cZn6NDFE7wdTpINgs++ZJ4N49W2vRp8LCKrn3Ob1kYNtOo21vfDoaV5GzBfLU4MovSAB8uNRm4jgzVQZ+mBzPQ==} - engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0} + vite@7.0.5: + resolution: {integrity: sha512-1mncVwJxy2C9ThLwz0+2GKZyEXuC3MyWtAAlNftlZZXZDP3AJt5FmwcMit/IGGaNZ8ZOB2BNO/HFUB+CpN0NQw==} + engines: {node: ^20.19.0 || >=22.12.0} hasBin: true peerDependencies: - '@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0 + '@types/node': ^20.19.0 || >=22.12.0 jiti: '>=1.21.0' - less: '*' + less: ^4.0.0 lightningcss: ^1.21.0 - sass: '*' - sass-embedded: '*' - stylus: '*' - sugarss: '*' + sass: ^1.70.0 + sass-embedded: ^1.70.0 + stylus: '>=0.54.8' + sugarss: ^5.0.0 terser: ^5.16.0 tsx: ^4.8.1 yaml: ^2.4.2 @@ -11303,6 +11156,10 @@ packages: utf-8-validate: optional: true + wsl-utils@0.1.0: + resolution: {integrity: sha512-h3Fbisa2nKGPxCpm89Hk33lBLsnaGBvctQopaBSOW/uIs6FTe1ATyAnKFJrzVs9vpGdsTe73WF3V4lIsk4Gacw==} + engines: {node: '>=18'} + xml-name-validator@4.0.0: resolution: {integrity: sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==} engines: {node: '>=12'} @@ -11389,16 +11246,16 @@ snapshots: '@jridgewell/gen-mapping': 0.3.8 '@jridgewell/trace-mapping': 0.3.25 - '@antfu/eslint-config@4.16.2(@eslint-react/eslint-plugin@1.52.3(eslint@9.31.0(jiti@2.4.2))(ts-api-utils@2.1.0(typescript@5.8.3))(typescript@5.8.3))(@vue/compiler-sfc@3.5.17)(eslint-plugin-format@1.0.1(eslint@9.31.0(jiti@2.4.2)))(eslint-plugin-react-hooks@5.2.0(eslint@9.31.0(jiti@2.4.2)))(eslint-plugin-react-refresh@0.4.20(eslint@9.31.0(jiti@2.4.2)))(eslint@9.31.0(jiti@2.4.2))(typescript@5.8.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@24.0.13)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0))': + '@antfu/eslint-config@4.17.0(@eslint-react/eslint-plugin@1.52.3(eslint@9.31.0(jiti@2.4.2))(ts-api-utils@2.1.0(typescript@5.8.3))(typescript@5.8.3))(@vue/compiler-sfc@3.5.17)(eslint-plugin-format@1.0.1(eslint@9.31.0(jiti@2.4.2)))(eslint-plugin-react-hooks@5.2.0(eslint@9.31.0(jiti@2.4.2)))(eslint-plugin-react-refresh@0.4.20(eslint@9.31.0(jiti@2.4.2)))(eslint@9.31.0(jiti@2.4.2))(typescript@5.8.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@24.0.14)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0))': dependencies: '@antfu/install-pkg': 1.1.0 '@clack/prompts': 0.11.0 '@eslint-community/eslint-plugin-eslint-comments': 4.5.0(eslint@9.31.0(jiti@2.4.2)) - '@eslint/markdown': 6.6.0 - '@stylistic/eslint-plugin': 5.1.0(eslint@9.31.0(jiti@2.4.2)) - '@typescript-eslint/eslint-plugin': 8.35.1(@typescript-eslint/parser@8.36.0(eslint@9.31.0(jiti@2.4.2))(typescript@5.8.3))(eslint@9.31.0(jiti@2.4.2))(typescript@5.8.3) - '@typescript-eslint/parser': 8.36.0(eslint@9.31.0(jiti@2.4.2))(typescript@5.8.3) - '@vitest/eslint-plugin': 1.3.4(eslint@9.31.0(jiti@2.4.2))(typescript@5.8.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@24.0.13)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0)) + '@eslint/markdown': 7.0.0 + '@stylistic/eslint-plugin': 5.2.0(eslint@9.31.0(jiti@2.4.2)) + '@typescript-eslint/eslint-plugin': 8.37.0(@typescript-eslint/parser@8.37.0(eslint@9.31.0(jiti@2.4.2))(typescript@5.8.3))(eslint@9.31.0(jiti@2.4.2))(typescript@5.8.3) + '@typescript-eslint/parser': 8.37.0(eslint@9.31.0(jiti@2.4.2))(typescript@5.8.3) + '@vitest/eslint-plugin': 1.3.4(eslint@9.31.0(jiti@2.4.2))(typescript@5.8.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@24.0.14)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0)) ansis: 4.1.0 cac: 6.7.14 eslint: 9.31.0(jiti@2.4.2) @@ -11408,17 +11265,17 @@ snapshots: eslint-plugin-antfu: 3.1.1(eslint@9.31.0(jiti@2.4.2)) eslint-plugin-command: 3.3.1(eslint@9.31.0(jiti@2.4.2)) eslint-plugin-import-lite: 0.3.0(eslint@9.31.0(jiti@2.4.2))(typescript@5.8.3) - eslint-plugin-jsdoc: 51.3.4(eslint@9.31.0(jiti@2.4.2)) + eslint-plugin-jsdoc: 51.4.1(eslint@9.31.0(jiti@2.4.2)) eslint-plugin-jsonc: 2.20.1(eslint@9.31.0(jiti@2.4.2)) - eslint-plugin-n: 17.20.0(eslint@9.31.0(jiti@2.4.2))(typescript@5.8.3) + eslint-plugin-n: 17.21.0(eslint@9.31.0(jiti@2.4.2))(typescript@5.8.3) eslint-plugin-no-only-tests: 3.3.0 eslint-plugin-perfectionist: 4.15.0(eslint@9.31.0(jiti@2.4.2))(typescript@5.8.3) - eslint-plugin-pnpm: 0.3.1(eslint@9.31.0(jiti@2.4.2)) + eslint-plugin-pnpm: 1.0.0(eslint@9.31.0(jiti@2.4.2)) eslint-plugin-regexp: 2.9.0(eslint@9.31.0(jiti@2.4.2)) eslint-plugin-toml: 0.12.0(eslint@9.31.0(jiti@2.4.2)) eslint-plugin-unicorn: 59.0.1(eslint@9.31.0(jiti@2.4.2)) - eslint-plugin-unused-imports: 4.1.4(@typescript-eslint/eslint-plugin@8.35.1(@typescript-eslint/parser@8.36.0(eslint@9.31.0(jiti@2.4.2))(typescript@5.8.3))(eslint@9.31.0(jiti@2.4.2))(typescript@5.8.3))(eslint@9.31.0(jiti@2.4.2)) - eslint-plugin-vue: 10.2.0(eslint@9.31.0(jiti@2.4.2))(vue-eslint-parser@10.2.0(eslint@9.31.0(jiti@2.4.2))) + eslint-plugin-unused-imports: 4.1.4(@typescript-eslint/eslint-plugin@8.37.0(@typescript-eslint/parser@8.37.0(eslint@9.31.0(jiti@2.4.2))(typescript@5.8.3))(eslint@9.31.0(jiti@2.4.2))(typescript@5.8.3))(eslint@9.31.0(jiti@2.4.2)) + eslint-plugin-vue: 10.3.0(@typescript-eslint/parser@8.37.0(eslint@9.31.0(jiti@2.4.2))(typescript@5.8.3))(eslint@9.31.0(jiti@2.4.2))(vue-eslint-parser@10.2.0(eslint@9.31.0(jiti@2.4.2))) eslint-plugin-yml: 1.18.0(eslint@9.31.0(jiti@2.4.2)) eslint-processor-vue-blocks: 2.0.0(@vue/compiler-sfc@3.5.17)(eslint@9.31.0(jiti@2.4.2)) globals: 16.3.0 @@ -11596,13 +11453,13 @@ snapshots: '@babel/helper-string-parser': 7.27.1 '@babel/helper-validator-identifier': 7.27.1 - '@chromatic-com/storybook@4.0.1(storybook@9.0.16(@testing-library/dom@10.4.0)(prettier@3.5.3))': + '@chromatic-com/storybook@4.0.1(storybook@9.0.17(@testing-library/dom@10.4.0)(prettier@3.6.2))': dependencies: '@neoconfetti/react': 1.0.0 chromatic: 12.2.0 filesize: 10.1.6 jsonfile: 6.1.0 - storybook: 9.0.16(@testing-library/dom@10.4.0)(prettier@3.5.3) + storybook: 9.0.17(@testing-library/dom@10.4.0)(prettier@3.6.2) strip-ansi: 7.1.0 transitivePeerDependencies: - '@chromatic-com/cypress' @@ -11619,11 +11476,11 @@ snapshots: picocolors: 1.1.1 sisteransi: 1.0.5 - '@commitlint/cli@19.8.1(@types/node@24.0.13)(typescript@5.8.3)': + '@commitlint/cli@19.8.1(@types/node@24.0.14)(typescript@5.8.3)': dependencies: '@commitlint/format': 19.8.1 '@commitlint/lint': 19.8.1 - '@commitlint/load': 19.8.1(@types/node@24.0.13)(typescript@5.8.3) + '@commitlint/load': 19.8.1(@types/node@24.0.14)(typescript@5.8.3) '@commitlint/read': 19.8.1 '@commitlint/types': 19.8.1 tinyexec: 1.0.1 @@ -11670,7 +11527,7 @@ snapshots: '@commitlint/rules': 19.8.1 '@commitlint/types': 19.8.1 - '@commitlint/load@19.8.1(@types/node@24.0.13)(typescript@5.8.3)': + '@commitlint/load@19.8.1(@types/node@24.0.14)(typescript@5.8.3)': dependencies: '@commitlint/config-validator': 19.8.1 '@commitlint/execute-rule': 19.8.1 @@ -11678,7 +11535,7 @@ snapshots: '@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@24.0.13)(cosmiconfig@9.0.0(typescript@5.8.3))(typescript@5.8.3) + cosmiconfig-typescript-loader: 6.1.0(@types/node@24.0.14)(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 @@ -12025,7 +11882,7 @@ snapshots: '@es-joy/jsdoccomment@0.50.2': dependencies: '@types/estree': 1.0.8 - '@typescript-eslint/types': 8.35.1 + '@typescript-eslint/types': 8.37.0 comment-parser: 1.4.1 esquery: 1.6.0 jsdoc-type-pratt-parser: 4.1.0 @@ -12033,164 +11890,89 @@ snapshots: '@es-joy/jsdoccomment@0.52.0': dependencies: '@types/estree': 1.0.8 - '@typescript-eslint/types': 8.36.0 + '@typescript-eslint/types': 8.37.0 comment-parser: 1.4.1 esquery: 1.6.0 jsdoc-type-pratt-parser: 4.1.0 - '@esbuild/aix-ppc64@0.25.4': - optional: true - '@esbuild/aix-ppc64@0.25.6': optional: true - '@esbuild/android-arm64@0.25.4': - optional: true - '@esbuild/android-arm64@0.25.6': optional: true - '@esbuild/android-arm@0.25.4': - optional: true - '@esbuild/android-arm@0.25.6': optional: true - '@esbuild/android-x64@0.25.4': - optional: true - '@esbuild/android-x64@0.25.6': optional: true - '@esbuild/darwin-arm64@0.25.4': - optional: true - '@esbuild/darwin-arm64@0.25.6': optional: true - '@esbuild/darwin-x64@0.25.4': - optional: true - '@esbuild/darwin-x64@0.25.6': optional: true - '@esbuild/freebsd-arm64@0.25.4': - optional: true - '@esbuild/freebsd-arm64@0.25.6': optional: true - '@esbuild/freebsd-x64@0.25.4': - optional: true - '@esbuild/freebsd-x64@0.25.6': optional: true - '@esbuild/linux-arm64@0.25.4': - optional: true - '@esbuild/linux-arm64@0.25.6': optional: true - '@esbuild/linux-arm@0.25.4': - optional: true - '@esbuild/linux-arm@0.25.6': optional: true - '@esbuild/linux-ia32@0.25.4': - optional: true - '@esbuild/linux-ia32@0.25.6': optional: true '@esbuild/linux-loong64@0.14.54': optional: true - '@esbuild/linux-loong64@0.25.4': - optional: true - '@esbuild/linux-loong64@0.25.6': optional: true - '@esbuild/linux-mips64el@0.25.4': - optional: true - '@esbuild/linux-mips64el@0.25.6': optional: true - '@esbuild/linux-ppc64@0.25.4': - optional: true - '@esbuild/linux-ppc64@0.25.6': optional: true - '@esbuild/linux-riscv64@0.25.4': - optional: true - '@esbuild/linux-riscv64@0.25.6': optional: true - '@esbuild/linux-s390x@0.25.4': - optional: true - '@esbuild/linux-s390x@0.25.6': optional: true - '@esbuild/linux-x64@0.25.4': - optional: true - '@esbuild/linux-x64@0.25.6': optional: true - '@esbuild/netbsd-arm64@0.25.4': - optional: true - '@esbuild/netbsd-arm64@0.25.6': optional: true - '@esbuild/netbsd-x64@0.25.4': - optional: true - '@esbuild/netbsd-x64@0.25.6': optional: true - '@esbuild/openbsd-arm64@0.25.4': - optional: true - '@esbuild/openbsd-arm64@0.25.6': optional: true - '@esbuild/openbsd-x64@0.25.4': - optional: true - '@esbuild/openbsd-x64@0.25.6': optional: true '@esbuild/openharmony-arm64@0.25.6': optional: true - '@esbuild/sunos-x64@0.25.4': - optional: true - '@esbuild/sunos-x64@0.25.6': optional: true - '@esbuild/win32-arm64@0.25.4': - optional: true - '@esbuild/win32-arm64@0.25.6': optional: true - '@esbuild/win32-ia32@0.25.4': - optional: true - '@esbuild/win32-ia32@0.25.6': optional: true - '@esbuild/win32-x64@0.25.4': - optional: true - '@esbuild/win32-x64@0.25.6': optional: true @@ -12299,7 +12081,7 @@ snapshots: - supports-color - typescript - '@eslint/compat@1.3.0(eslint@9.31.0(jiti@2.4.2))': + '@eslint/compat@1.3.1(eslint@9.31.0(jiti@2.4.2))': optionalDependencies: eslint: 9.31.0(jiti@2.4.2) @@ -12321,10 +12103,6 @@ snapshots: dependencies: '@types/json-schema': 7.0.15 - '@eslint/core@0.15.0': - dependencies: - '@types/json-schema': 7.0.15 - '@eslint/core@0.15.1': dependencies: '@types/json-schema': 7.0.15 @@ -12350,10 +12128,10 @@ snapshots: '@eslint/js@9.31.0': {} - '@eslint/markdown@6.6.0': + '@eslint/markdown@7.0.0': dependencies: '@eslint/core': 0.14.0 - '@eslint/plugin-kit': 0.3.2 + '@eslint/plugin-kit': 0.3.3 github-slugger: 2.0.0 mdast-util-from-markdown: 2.0.2 mdast-util-frontmatter: 2.0.1 @@ -12370,11 +12148,6 @@ snapshots: '@eslint/core': 0.13.0 levn: 0.4.1 - '@eslint/plugin-kit@0.3.2': - dependencies: - '@eslint/core': 0.15.0 - levn: 0.4.1 - '@eslint/plugin-kit@0.3.3': dependencies: '@eslint/core': 0.15.1 @@ -12426,27 +12199,27 @@ snapshots: '@hutson/parse-repository-url@5.0.0': {} - '@inquirer/checkbox@4.1.8(@types/node@24.0.13)': + '@inquirer/checkbox@4.1.9(@types/node@24.0.14)': dependencies: - '@inquirer/core': 10.1.13(@types/node@24.0.13) + '@inquirer/core': 10.1.14(@types/node@24.0.14) '@inquirer/figures': 1.0.12 - '@inquirer/type': 3.0.7(@types/node@24.0.13) + '@inquirer/type': 3.0.7(@types/node@24.0.14) ansi-escapes: 4.3.2 yoctocolors-cjs: 2.1.2 optionalDependencies: - '@types/node': 24.0.13 + '@types/node': 24.0.14 - '@inquirer/confirm@5.1.12(@types/node@24.0.13)': + '@inquirer/confirm@5.1.13(@types/node@24.0.14)': dependencies: - '@inquirer/core': 10.1.13(@types/node@24.0.13) - '@inquirer/type': 3.0.7(@types/node@24.0.13) + '@inquirer/core': 10.1.14(@types/node@24.0.14) + '@inquirer/type': 3.0.7(@types/node@24.0.14) optionalDependencies: - '@types/node': 24.0.13 + '@types/node': 24.0.14 - '@inquirer/core@10.1.13(@types/node@24.0.13)': + '@inquirer/core@10.1.14(@types/node@24.0.14)': dependencies: '@inquirer/figures': 1.0.12 - '@inquirer/type': 3.0.7(@types/node@24.0.13) + '@inquirer/type': 3.0.7(@types/node@24.0.14) ansi-escapes: 4.3.2 cli-width: 4.1.0 mute-stream: 2.0.0 @@ -12454,93 +12227,93 @@ snapshots: wrap-ansi: 6.2.0 yoctocolors-cjs: 2.1.2 optionalDependencies: - '@types/node': 24.0.13 + '@types/node': 24.0.14 - '@inquirer/editor@4.2.13(@types/node@24.0.13)': + '@inquirer/editor@4.2.14(@types/node@24.0.14)': dependencies: - '@inquirer/core': 10.1.13(@types/node@24.0.13) - '@inquirer/type': 3.0.7(@types/node@24.0.13) + '@inquirer/core': 10.1.14(@types/node@24.0.14) + '@inquirer/type': 3.0.7(@types/node@24.0.14) external-editor: 3.1.0 optionalDependencies: - '@types/node': 24.0.13 + '@types/node': 24.0.14 - '@inquirer/expand@4.0.15(@types/node@24.0.13)': + '@inquirer/expand@4.0.16(@types/node@24.0.14)': dependencies: - '@inquirer/core': 10.1.13(@types/node@24.0.13) - '@inquirer/type': 3.0.7(@types/node@24.0.13) + '@inquirer/core': 10.1.14(@types/node@24.0.14) + '@inquirer/type': 3.0.7(@types/node@24.0.14) yoctocolors-cjs: 2.1.2 optionalDependencies: - '@types/node': 24.0.13 + '@types/node': 24.0.14 '@inquirer/figures@1.0.12': {} - '@inquirer/input@4.1.12(@types/node@24.0.13)': + '@inquirer/input@4.2.0(@types/node@24.0.14)': dependencies: - '@inquirer/core': 10.1.13(@types/node@24.0.13) - '@inquirer/type': 3.0.7(@types/node@24.0.13) + '@inquirer/core': 10.1.14(@types/node@24.0.14) + '@inquirer/type': 3.0.7(@types/node@24.0.14) optionalDependencies: - '@types/node': 24.0.13 + '@types/node': 24.0.14 - '@inquirer/number@3.0.15(@types/node@24.0.13)': + '@inquirer/number@3.0.16(@types/node@24.0.14)': dependencies: - '@inquirer/core': 10.1.13(@types/node@24.0.13) - '@inquirer/type': 3.0.7(@types/node@24.0.13) + '@inquirer/core': 10.1.14(@types/node@24.0.14) + '@inquirer/type': 3.0.7(@types/node@24.0.14) optionalDependencies: - '@types/node': 24.0.13 + '@types/node': 24.0.14 - '@inquirer/password@4.0.15(@types/node@24.0.13)': + '@inquirer/password@4.0.16(@types/node@24.0.14)': dependencies: - '@inquirer/core': 10.1.13(@types/node@24.0.13) - '@inquirer/type': 3.0.7(@types/node@24.0.13) + '@inquirer/core': 10.1.14(@types/node@24.0.14) + '@inquirer/type': 3.0.7(@types/node@24.0.14) ansi-escapes: 4.3.2 optionalDependencies: - '@types/node': 24.0.13 + '@types/node': 24.0.14 - '@inquirer/prompts@7.5.3(@types/node@24.0.13)': + '@inquirer/prompts@7.6.0(@types/node@24.0.14)': dependencies: - '@inquirer/checkbox': 4.1.8(@types/node@24.0.13) - '@inquirer/confirm': 5.1.12(@types/node@24.0.13) - '@inquirer/editor': 4.2.13(@types/node@24.0.13) - '@inquirer/expand': 4.0.15(@types/node@24.0.13) - '@inquirer/input': 4.1.12(@types/node@24.0.13) - '@inquirer/number': 3.0.15(@types/node@24.0.13) - '@inquirer/password': 4.0.15(@types/node@24.0.13) - '@inquirer/rawlist': 4.1.3(@types/node@24.0.13) - '@inquirer/search': 3.0.15(@types/node@24.0.13) - '@inquirer/select': 4.2.3(@types/node@24.0.13) + '@inquirer/checkbox': 4.1.9(@types/node@24.0.14) + '@inquirer/confirm': 5.1.13(@types/node@24.0.14) + '@inquirer/editor': 4.2.14(@types/node@24.0.14) + '@inquirer/expand': 4.0.16(@types/node@24.0.14) + '@inquirer/input': 4.2.0(@types/node@24.0.14) + '@inquirer/number': 3.0.16(@types/node@24.0.14) + '@inquirer/password': 4.0.16(@types/node@24.0.14) + '@inquirer/rawlist': 4.1.4(@types/node@24.0.14) + '@inquirer/search': 3.0.16(@types/node@24.0.14) + '@inquirer/select': 4.2.4(@types/node@24.0.14) optionalDependencies: - '@types/node': 24.0.13 + '@types/node': 24.0.14 - '@inquirer/rawlist@4.1.3(@types/node@24.0.13)': + '@inquirer/rawlist@4.1.4(@types/node@24.0.14)': dependencies: - '@inquirer/core': 10.1.13(@types/node@24.0.13) - '@inquirer/type': 3.0.7(@types/node@24.0.13) + '@inquirer/core': 10.1.14(@types/node@24.0.14) + '@inquirer/type': 3.0.7(@types/node@24.0.14) yoctocolors-cjs: 2.1.2 optionalDependencies: - '@types/node': 24.0.13 + '@types/node': 24.0.14 - '@inquirer/search@3.0.15(@types/node@24.0.13)': + '@inquirer/search@3.0.16(@types/node@24.0.14)': dependencies: - '@inquirer/core': 10.1.13(@types/node@24.0.13) + '@inquirer/core': 10.1.14(@types/node@24.0.14) '@inquirer/figures': 1.0.12 - '@inquirer/type': 3.0.7(@types/node@24.0.13) + '@inquirer/type': 3.0.7(@types/node@24.0.14) yoctocolors-cjs: 2.1.2 optionalDependencies: - '@types/node': 24.0.13 + '@types/node': 24.0.14 - '@inquirer/select@4.2.3(@types/node@24.0.13)': + '@inquirer/select@4.2.4(@types/node@24.0.14)': dependencies: - '@inquirer/core': 10.1.13(@types/node@24.0.13) + '@inquirer/core': 10.1.14(@types/node@24.0.14) '@inquirer/figures': 1.0.12 - '@inquirer/type': 3.0.7(@types/node@24.0.13) + '@inquirer/type': 3.0.7(@types/node@24.0.14) ansi-escapes: 4.3.2 yoctocolors-cjs: 2.1.2 optionalDependencies: - '@types/node': 24.0.13 + '@types/node': 24.0.14 - '@inquirer/type@3.0.7(@types/node@24.0.13)': + '@inquirer/type@3.0.7(@types/node@24.0.14)': optionalDependencies: - '@types/node': 24.0.13 + '@types/node': 24.0.14 '@isaacs/cliui@8.0.2': dependencies: @@ -12604,23 +12377,23 @@ snapshots: '@types/react': 19.1.8 react: 19.1.0 - '@microsoft/api-extractor-model@7.30.6(@types/node@24.0.13)': + '@microsoft/api-extractor-model@7.30.6(@types/node@24.0.14)': dependencies: '@microsoft/tsdoc': 0.15.1 '@microsoft/tsdoc-config': 0.17.1 - '@rushstack/node-core-library': 5.13.1(@types/node@24.0.13) + '@rushstack/node-core-library': 5.13.1(@types/node@24.0.14) transitivePeerDependencies: - '@types/node' - '@microsoft/api-extractor@7.52.7(@types/node@24.0.13)': + '@microsoft/api-extractor@7.52.7(@types/node@24.0.14)': dependencies: - '@microsoft/api-extractor-model': 7.30.6(@types/node@24.0.13) + '@microsoft/api-extractor-model': 7.30.6(@types/node@24.0.14) '@microsoft/tsdoc': 0.15.1 '@microsoft/tsdoc-config': 0.17.1 - '@rushstack/node-core-library': 5.13.1(@types/node@24.0.13) + '@rushstack/node-core-library': 5.13.1(@types/node@24.0.14) '@rushstack/rig-package': 0.5.3 - '@rushstack/terminal': 0.15.3(@types/node@24.0.13) - '@rushstack/ts-command-line': 5.0.1(@types/node@24.0.13) + '@rushstack/terminal': 0.15.3(@types/node@24.0.14) + '@rushstack/ts-command-line': 5.0.1(@types/node@24.0.14) lodash: 4.17.21 minimatch: 3.0.8 resolve: 1.22.10 @@ -12659,11 +12432,11 @@ snapshots: '@octokit/auth-token@5.1.2': {} - '@octokit/core@6.1.5': + '@octokit/core@6.1.6': dependencies: '@octokit/auth-token': 5.1.2 '@octokit/graphql': 8.2.2 - '@octokit/request': 9.2.3 + '@octokit/request': 9.2.4 '@octokit/request-error': 6.1.8 '@octokit/types': 14.1.0 before-after-hook: 3.0.2 @@ -12676,7 +12449,7 @@ snapshots: '@octokit/graphql@8.2.2': dependencies: - '@octokit/request': 9.2.3 + '@octokit/request': 9.2.4 '@octokit/types': 14.1.0 universal-user-agent: 7.0.3 @@ -12684,25 +12457,25 @@ snapshots: '@octokit/openapi-types@25.1.0': {} - '@octokit/plugin-paginate-rest@11.6.0(@octokit/core@6.1.5)': + '@octokit/plugin-paginate-rest@11.6.0(@octokit/core@6.1.6)': dependencies: - '@octokit/core': 6.1.5 + '@octokit/core': 6.1.6 '@octokit/types': 13.10.0 - '@octokit/plugin-request-log@5.3.1(@octokit/core@6.1.5)': + '@octokit/plugin-request-log@5.3.1(@octokit/core@6.1.6)': dependencies: - '@octokit/core': 6.1.5 + '@octokit/core': 6.1.6 - '@octokit/plugin-rest-endpoint-methods@13.5.0(@octokit/core@6.1.5)': + '@octokit/plugin-rest-endpoint-methods@13.5.0(@octokit/core@6.1.6)': dependencies: - '@octokit/core': 6.1.5 + '@octokit/core': 6.1.6 '@octokit/types': 13.10.0 '@octokit/request-error@6.1.8': dependencies: '@octokit/types': 14.1.0 - '@octokit/request@9.2.3': + '@octokit/request@9.2.4': dependencies: '@octokit/endpoint': 10.1.4 '@octokit/request-error': 6.1.8 @@ -12712,10 +12485,10 @@ snapshots: '@octokit/rest@21.1.1': dependencies: - '@octokit/core': 6.1.5 - '@octokit/plugin-paginate-rest': 11.6.0(@octokit/core@6.1.5) - '@octokit/plugin-request-log': 5.3.1(@octokit/core@6.1.5) - '@octokit/plugin-rest-endpoint-methods': 13.5.0(@octokit/core@6.1.5) + '@octokit/core': 6.1.6 + '@octokit/plugin-paginate-rest': 11.6.0(@octokit/core@6.1.6) + '@octokit/plugin-request-log': 5.3.1(@octokit/core@6.1.6) + '@octokit/plugin-rest-endpoint-methods': 13.5.0(@octokit/core@6.1.6) '@octokit/types@13.10.0': dependencies: @@ -12725,6 +12498,30 @@ snapshots: dependencies: '@octokit/openapi-types': 25.1.0 + '@oxlint/darwin-arm64@1.7.0': + optional: true + + '@oxlint/darwin-x64@1.7.0': + optional: true + + '@oxlint/linux-arm64-gnu@1.7.0': + optional: true + + '@oxlint/linux-arm64-musl@1.7.0': + optional: true + + '@oxlint/linux-x64-gnu@1.7.0': + optional: true + + '@oxlint/linux-x64-musl@1.7.0': + optional: true + + '@oxlint/win32-arm64@1.7.0': + optional: true + + '@oxlint/win32-x64@1.7.0': + optional: true + '@parcel/watcher-android-arm64@2.5.1': optional: true @@ -13187,25 +12984,25 @@ snapshots: '@react-dnd/shallowequal@4.0.2': {} - '@release-it-plugins/workspaces@5.0.3(release-it@19.0.3(@types/node@24.0.13)(magicast@0.3.5))': + '@release-it-plugins/workspaces@5.0.3(release-it@19.0.4(@types/node@24.0.14)(magicast@0.3.5))': dependencies: detect-indent: 6.1.0 detect-newline: 3.1.0 execa: 8.0.1 - release-it: 19.0.3(@types/node@24.0.13)(magicast@0.3.5) + release-it: 19.0.4(@types/node@24.0.14)(magicast@0.3.5) semver: 7.7.2 url-join: 4.0.1 validate-peer-dependencies: 1.2.0 walk-sync: 2.2.0 yaml: 2.8.0 - '@release-it/conventional-changelog@10.0.1(conventional-commits-filter@5.0.0)(conventional-commits-parser@6.2.0)(release-it@19.0.3(@types/node@24.0.13)(magicast@0.3.5))': + '@release-it/conventional-changelog@10.0.1(conventional-commits-filter@5.0.0)(conventional-commits-parser@6.2.0)(release-it@19.0.4(@types/node@24.0.14)(magicast@0.3.5))': dependencies: concat-stream: 2.0.0 conventional-changelog: 6.0.0(conventional-commits-filter@5.0.0) conventional-recommended-bump: 10.0.0 git-semver-tags: 8.0.0(conventional-commits-filter@5.0.0)(conventional-commits-parser@6.2.0) - release-it: 19.0.3(@types/node@24.0.13)(magicast@0.3.5) + release-it: 19.0.4(@types/node@24.0.14)(magicast@0.3.5) semver: 7.7.2 transitivePeerDependencies: - conventional-commits-filter @@ -13213,75 +13010,75 @@ snapshots: '@rolldown/pluginutils@1.0.0-beta.19': {} - '@rollup/pluginutils@5.1.4(rollup@4.40.2)': + '@rollup/pluginutils@5.1.4(rollup@4.45.1)': dependencies: '@types/estree': 1.0.7 estree-walker: 2.0.2 picomatch: 4.0.2 optionalDependencies: - rollup: 4.40.2 + rollup: 4.45.1 - '@rollup/rollup-android-arm-eabi@4.40.2': + '@rollup/rollup-android-arm-eabi@4.45.1': optional: true - '@rollup/rollup-android-arm64@4.40.2': + '@rollup/rollup-android-arm64@4.45.1': optional: true - '@rollup/rollup-darwin-arm64@4.40.2': + '@rollup/rollup-darwin-arm64@4.45.1': optional: true - '@rollup/rollup-darwin-x64@4.40.2': + '@rollup/rollup-darwin-x64@4.45.1': optional: true - '@rollup/rollup-freebsd-arm64@4.40.2': + '@rollup/rollup-freebsd-arm64@4.45.1': optional: true - '@rollup/rollup-freebsd-x64@4.40.2': + '@rollup/rollup-freebsd-x64@4.45.1': optional: true - '@rollup/rollup-linux-arm-gnueabihf@4.40.2': + '@rollup/rollup-linux-arm-gnueabihf@4.45.1': optional: true - '@rollup/rollup-linux-arm-musleabihf@4.40.2': + '@rollup/rollup-linux-arm-musleabihf@4.45.1': optional: true - '@rollup/rollup-linux-arm64-gnu@4.40.2': + '@rollup/rollup-linux-arm64-gnu@4.45.1': optional: true - '@rollup/rollup-linux-arm64-musl@4.40.2': + '@rollup/rollup-linux-arm64-musl@4.45.1': optional: true - '@rollup/rollup-linux-loongarch64-gnu@4.40.2': + '@rollup/rollup-linux-loongarch64-gnu@4.45.1': optional: true - '@rollup/rollup-linux-powerpc64le-gnu@4.40.2': + '@rollup/rollup-linux-powerpc64le-gnu@4.45.1': optional: true - '@rollup/rollup-linux-riscv64-gnu@4.40.2': + '@rollup/rollup-linux-riscv64-gnu@4.45.1': optional: true - '@rollup/rollup-linux-riscv64-musl@4.40.2': + '@rollup/rollup-linux-riscv64-musl@4.45.1': optional: true - '@rollup/rollup-linux-s390x-gnu@4.40.2': + '@rollup/rollup-linux-s390x-gnu@4.45.1': optional: true - '@rollup/rollup-linux-x64-gnu@4.40.2': + '@rollup/rollup-linux-x64-gnu@4.45.1': optional: true - '@rollup/rollup-linux-x64-musl@4.40.2': + '@rollup/rollup-linux-x64-musl@4.45.1': optional: true - '@rollup/rollup-win32-arm64-msvc@4.40.2': + '@rollup/rollup-win32-arm64-msvc@4.45.1': optional: true - '@rollup/rollup-win32-ia32-msvc@4.40.2': + '@rollup/rollup-win32-ia32-msvc@4.45.1': optional: true - '@rollup/rollup-win32-x64-msvc@4.40.2': + '@rollup/rollup-win32-x64-msvc@4.45.1': optional: true - '@rushstack/node-core-library@5.13.1(@types/node@24.0.13)': + '@rushstack/node-core-library@5.13.1(@types/node@24.0.14)': dependencies: ajv: 8.13.0 ajv-draft-04: 1.0.0(ajv@8.13.0) @@ -13292,52 +13089,52 @@ snapshots: resolve: 1.22.10 semver: 7.5.4 optionalDependencies: - '@types/node': 24.0.13 + '@types/node': 24.0.14 '@rushstack/rig-package@0.5.3': dependencies: resolve: 1.22.10 strip-json-comments: 3.1.1 - '@rushstack/terminal@0.15.3(@types/node@24.0.13)': + '@rushstack/terminal@0.15.3(@types/node@24.0.14)': dependencies: - '@rushstack/node-core-library': 5.13.1(@types/node@24.0.13) + '@rushstack/node-core-library': 5.13.1(@types/node@24.0.14) supports-color: 8.1.1 optionalDependencies: - '@types/node': 24.0.13 + '@types/node': 24.0.14 - '@rushstack/ts-command-line@5.0.1(@types/node@24.0.13)': + '@rushstack/ts-command-line@5.0.1(@types/node@24.0.14)': dependencies: - '@rushstack/terminal': 0.15.3(@types/node@24.0.13) + '@rushstack/terminal': 0.15.3(@types/node@24.0.14) '@types/argparse': 1.0.38 argparse: 1.0.10 string-argv: 0.3.2 transitivePeerDependencies: - '@types/node' - '@storybook/addon-docs@9.0.16(@types/react@19.1.8)(storybook@9.0.16(@testing-library/dom@10.4.0)(prettier@3.5.3))': + '@storybook/addon-docs@9.0.17(@types/react@19.1.8)(storybook@9.0.17(@testing-library/dom@10.4.0)(prettier@3.6.2))': dependencies: '@mdx-js/react': 3.1.0(@types/react@19.1.8)(react@19.1.0) - '@storybook/csf-plugin': 9.0.16(storybook@9.0.16(@testing-library/dom@10.4.0)(prettier@3.5.3)) + '@storybook/csf-plugin': 9.0.17(storybook@9.0.17(@testing-library/dom@10.4.0)(prettier@3.6.2)) '@storybook/icons': 1.4.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) - '@storybook/react-dom-shim': 9.0.16(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(storybook@9.0.16(@testing-library/dom@10.4.0)(prettier@3.5.3)) + '@storybook/react-dom-shim': 9.0.17(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(storybook@9.0.17(@testing-library/dom@10.4.0)(prettier@3.6.2)) react: 19.1.0 react-dom: 19.1.0(react@19.1.0) - storybook: 9.0.16(@testing-library/dom@10.4.0)(prettier@3.5.3) + storybook: 9.0.17(@testing-library/dom@10.4.0)(prettier@3.6.2) ts-dedent: 2.2.0 transitivePeerDependencies: - '@types/react' - '@storybook/addon-links@9.0.16(react@19.1.0)(storybook@9.0.16(@testing-library/dom@10.4.0)(prettier@3.5.3))': + '@storybook/addon-links@9.0.17(react@19.1.0)(storybook@9.0.17(@testing-library/dom@10.4.0)(prettier@3.6.2))': dependencies: '@storybook/global': 5.0.0 - storybook: 9.0.16(@testing-library/dom@10.4.0)(prettier@3.5.3) + storybook: 9.0.17(@testing-library/dom@10.4.0)(prettier@3.6.2) optionalDependencies: react: 19.1.0 - '@storybook/addon-styling-webpack@2.0.0(storybook@9.0.16(@testing-library/dom@10.4.0)(prettier@3.5.3))(webpack@5.99.8(@swc/core@1.11.24)(esbuild@0.25.6))': + '@storybook/addon-styling-webpack@2.0.0(storybook@9.0.17(@testing-library/dom@10.4.0)(prettier@3.6.2))(webpack@5.99.8(@swc/core@1.11.24)(esbuild@0.25.6))': dependencies: - storybook: 9.0.16(@testing-library/dom@10.4.0)(prettier@3.5.3) + storybook: 9.0.17(@testing-library/dom@10.4.0)(prettier@3.6.2) webpack: 5.99.8(@swc/core@1.11.24)(esbuild@0.25.6) '@storybook/addon-webpack5-compiler-swc@3.0.0(webpack@5.99.8(@swc/core@1.11.24)(esbuild@0.25.6))': @@ -13348,9 +13145,9 @@ snapshots: - '@swc/helpers' - webpack - '@storybook/builder-webpack5@9.0.16(@swc/core@1.11.24)(esbuild@0.25.6)(storybook@9.0.16(@testing-library/dom@10.4.0)(prettier@3.5.3))(typescript@5.8.3)': + '@storybook/builder-webpack5@9.0.17(@swc/core@1.11.24)(esbuild@0.25.6)(storybook@9.0.17(@testing-library/dom@10.4.0)(prettier@3.6.2))(typescript@5.8.3)': dependencies: - '@storybook/core-webpack': 9.0.16(storybook@9.0.16(@testing-library/dom@10.4.0)(prettier@3.5.3)) + '@storybook/core-webpack': 9.0.17(storybook@9.0.17(@testing-library/dom@10.4.0)(prettier@3.6.2)) case-sensitive-paths-webpack-plugin: 2.4.0 cjs-module-lexer: 1.4.3 css-loader: 6.11.0(webpack@5.99.8(@swc/core@1.11.24)(esbuild@0.25.6)) @@ -13358,7 +13155,7 @@ snapshots: fork-ts-checker-webpack-plugin: 8.0.0(typescript@5.8.3)(webpack@5.99.8(@swc/core@1.11.24)(esbuild@0.25.6)) html-webpack-plugin: 5.6.3(webpack@5.99.8(@swc/core@1.11.24)(esbuild@0.25.6)) magic-string: 0.30.17 - storybook: 9.0.16(@testing-library/dom@10.4.0)(prettier@3.5.3) + storybook: 9.0.17(@testing-library/dom@10.4.0)(prettier@3.6.2) style-loader: 3.3.4(webpack@5.99.8(@swc/core@1.11.24)(esbuild@0.25.6)) terser-webpack-plugin: 5.3.14(@swc/core@1.11.24)(esbuild@0.25.6)(webpack@5.99.8(@swc/core@1.11.24)(esbuild@0.25.6)) ts-dedent: 2.2.0 @@ -13375,14 +13172,14 @@ snapshots: - uglify-js - webpack-cli - '@storybook/core-webpack@9.0.16(storybook@9.0.16(@testing-library/dom@10.4.0)(prettier@3.5.3))': + '@storybook/core-webpack@9.0.17(storybook@9.0.17(@testing-library/dom@10.4.0)(prettier@3.6.2))': dependencies: - storybook: 9.0.16(@testing-library/dom@10.4.0)(prettier@3.5.3) + storybook: 9.0.17(@testing-library/dom@10.4.0)(prettier@3.6.2) ts-dedent: 2.2.0 - '@storybook/csf-plugin@9.0.16(storybook@9.0.16(@testing-library/dom@10.4.0)(prettier@3.5.3))': + '@storybook/csf-plugin@9.0.17(storybook@9.0.17(@testing-library/dom@10.4.0)(prettier@3.6.2))': dependencies: - storybook: 9.0.16(@testing-library/dom@10.4.0)(prettier@3.5.3) + storybook: 9.0.17(@testing-library/dom@10.4.0)(prettier@3.6.2) unplugin: 1.16.1 '@storybook/global@5.0.0': {} @@ -13392,9 +13189,9 @@ snapshots: react: 19.1.0 react-dom: 19.1.0(react@19.1.0) - '@storybook/preset-react-webpack@9.0.16(@swc/core@1.11.24)(esbuild@0.25.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(storybook@9.0.16(@testing-library/dom@10.4.0)(prettier@3.5.3))(typescript@5.8.3)': + '@storybook/preset-react-webpack@9.0.17(@swc/core@1.11.24)(esbuild@0.25.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(storybook@9.0.17(@testing-library/dom@10.4.0)(prettier@3.6.2))(typescript@5.8.3)': dependencies: - '@storybook/core-webpack': 9.0.16(storybook@9.0.16(@testing-library/dom@10.4.0)(prettier@3.5.3)) + '@storybook/core-webpack': 9.0.17(storybook@9.0.17(@testing-library/dom@10.4.0)(prettier@3.6.2)) '@storybook/react-docgen-typescript-plugin': 1.0.6--canary.9.0c3f3b7.0(typescript@5.8.3)(webpack@5.99.8(@swc/core@1.11.24)(esbuild@0.25.6)) '@types/semver': 7.7.0 find-up: 7.0.0 @@ -13404,7 +13201,7 @@ snapshots: react-dom: 19.1.0(react@19.1.0) resolve: 1.22.10 semver: 7.7.2 - storybook: 9.0.16(@testing-library/dom@10.4.0)(prettier@3.5.3) + storybook: 9.0.17(@testing-library/dom@10.4.0)(prettier@3.6.2) tsconfig-paths: 4.2.0 webpack: 5.99.8(@swc/core@1.11.24)(esbuild@0.25.6) optionalDependencies: @@ -13430,20 +13227,20 @@ snapshots: transitivePeerDependencies: - supports-color - '@storybook/react-dom-shim@9.0.16(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(storybook@9.0.16(@testing-library/dom@10.4.0)(prettier@3.5.3))': + '@storybook/react-dom-shim@9.0.17(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(storybook@9.0.17(@testing-library/dom@10.4.0)(prettier@3.6.2))': dependencies: react: 19.1.0 react-dom: 19.1.0(react@19.1.0) - storybook: 9.0.16(@testing-library/dom@10.4.0)(prettier@3.5.3) + storybook: 9.0.17(@testing-library/dom@10.4.0)(prettier@3.6.2) - '@storybook/react-webpack5@9.0.16(@swc/core@1.11.24)(esbuild@0.25.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(storybook@9.0.16(@testing-library/dom@10.4.0)(prettier@3.5.3))(typescript@5.8.3)': + '@storybook/react-webpack5@9.0.17(@swc/core@1.11.24)(esbuild@0.25.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(storybook@9.0.17(@testing-library/dom@10.4.0)(prettier@3.6.2))(typescript@5.8.3)': dependencies: - '@storybook/builder-webpack5': 9.0.16(@swc/core@1.11.24)(esbuild@0.25.6)(storybook@9.0.16(@testing-library/dom@10.4.0)(prettier@3.5.3))(typescript@5.8.3) - '@storybook/preset-react-webpack': 9.0.16(@swc/core@1.11.24)(esbuild@0.25.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(storybook@9.0.16(@testing-library/dom@10.4.0)(prettier@3.5.3))(typescript@5.8.3) - '@storybook/react': 9.0.16(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(storybook@9.0.16(@testing-library/dom@10.4.0)(prettier@3.5.3))(typescript@5.8.3) + '@storybook/builder-webpack5': 9.0.17(@swc/core@1.11.24)(esbuild@0.25.6)(storybook@9.0.17(@testing-library/dom@10.4.0)(prettier@3.6.2))(typescript@5.8.3) + '@storybook/preset-react-webpack': 9.0.17(@swc/core@1.11.24)(esbuild@0.25.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(storybook@9.0.17(@testing-library/dom@10.4.0)(prettier@3.6.2))(typescript@5.8.3) + '@storybook/react': 9.0.17(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(storybook@9.0.17(@testing-library/dom@10.4.0)(prettier@3.6.2))(typescript@5.8.3) react: 19.1.0 react-dom: 19.1.0(react@19.1.0) - storybook: 9.0.16(@testing-library/dom@10.4.0)(prettier@3.5.3) + storybook: 9.0.17(@testing-library/dom@10.4.0)(prettier@3.6.2) optionalDependencies: typescript: 5.8.3 transitivePeerDependencies: @@ -13454,25 +13251,25 @@ snapshots: - uglify-js - webpack-cli - '@storybook/react@9.0.16(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(storybook@9.0.16(@testing-library/dom@10.4.0)(prettier@3.5.3))(typescript@5.8.3)': + '@storybook/react@9.0.17(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(storybook@9.0.17(@testing-library/dom@10.4.0)(prettier@3.6.2))(typescript@5.8.3)': dependencies: '@storybook/global': 5.0.0 - '@storybook/react-dom-shim': 9.0.16(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(storybook@9.0.16(@testing-library/dom@10.4.0)(prettier@3.5.3)) + '@storybook/react-dom-shim': 9.0.17(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(storybook@9.0.17(@testing-library/dom@10.4.0)(prettier@3.6.2)) react: 19.1.0 react-dom: 19.1.0(react@19.1.0) - storybook: 9.0.16(@testing-library/dom@10.4.0)(prettier@3.5.3) + storybook: 9.0.17(@testing-library/dom@10.4.0)(prettier@3.6.2) optionalDependencies: typescript: 5.8.3 - '@stylistic/eslint-plugin@5.1.0(eslint@9.31.0(jiti@2.4.2))': + '@stylistic/eslint-plugin@5.2.0(eslint@9.31.0(jiti@2.4.2))': dependencies: '@eslint-community/eslint-utils': 4.7.0(eslint@9.31.0(jiti@2.4.2)) - '@typescript-eslint/types': 8.35.1 + '@typescript-eslint/types': 8.37.0 eslint: 9.31.0(jiti@2.4.2) eslint-visitor-keys: 4.2.1 espree: 10.4.0 estraverse: 5.3.0 - picomatch: 4.0.2 + picomatch: 4.0.3 '@swc/core-darwin-arm64@1.11.24': optional: true @@ -13596,7 +13393,7 @@ snapshots: '@types/conventional-commits-parser@5.0.1': dependencies: - '@types/node': 24.0.13 + '@types/node': 24.0.14 '@types/d3-color@3.1.3': {} @@ -13680,7 +13477,7 @@ snapshots: dependencies: undici-types: 6.21.0 - '@types/node@24.0.13': + '@types/node@24.0.14': dependencies: undici-types: 7.8.0 @@ -13724,7 +13521,7 @@ snapshots: '@types/stylus@0.48.43': dependencies: - '@types/node': 24.0.13 + '@types/node': 24.0.14 '@types/trusted-types@2.0.7': {} @@ -13734,14 +13531,14 @@ snapshots: '@types/whatwg-mimetype@3.0.2': {} - '@typescript-eslint/eslint-plugin@8.35.1(@typescript-eslint/parser@8.36.0(eslint@9.31.0(jiti@2.4.2))(typescript@5.8.3))(eslint@9.31.0(jiti@2.4.2))(typescript@5.8.3)': + '@typescript-eslint/eslint-plugin@8.37.0(@typescript-eslint/parser@8.37.0(eslint@9.31.0(jiti@2.4.2))(typescript@5.8.3))(eslint@9.31.0(jiti@2.4.2))(typescript@5.8.3)': dependencies: '@eslint-community/regexpp': 4.12.1 - '@typescript-eslint/parser': 8.36.0(eslint@9.31.0(jiti@2.4.2))(typescript@5.8.3) - '@typescript-eslint/scope-manager': 8.35.1 - '@typescript-eslint/type-utils': 8.35.1(eslint@9.31.0(jiti@2.4.2))(typescript@5.8.3) - '@typescript-eslint/utils': 8.35.1(eslint@9.31.0(jiti@2.4.2))(typescript@5.8.3) - '@typescript-eslint/visitor-keys': 8.35.1 + '@typescript-eslint/parser': 8.37.0(eslint@9.31.0(jiti@2.4.2))(typescript@5.8.3) + '@typescript-eslint/scope-manager': 8.37.0 + '@typescript-eslint/type-utils': 8.37.0(eslint@9.31.0(jiti@2.4.2))(typescript@5.8.3) + '@typescript-eslint/utils': 8.37.0(eslint@9.31.0(jiti@2.4.2))(typescript@5.8.3) + '@typescript-eslint/visitor-keys': 8.37.0 eslint: 9.31.0(jiti@2.4.2) graphemer: 1.4.0 ignore: 7.0.5 @@ -13751,36 +13548,18 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/parser@8.36.0(eslint@9.31.0(jiti@2.4.2))(typescript@5.8.3)': + '@typescript-eslint/parser@8.37.0(eslint@9.31.0(jiti@2.4.2))(typescript@5.8.3)': dependencies: - '@typescript-eslint/scope-manager': 8.36.0 - '@typescript-eslint/types': 8.36.0 - '@typescript-eslint/typescript-estree': 8.36.0(typescript@5.8.3) - '@typescript-eslint/visitor-keys': 8.36.0 + '@typescript-eslint/scope-manager': 8.37.0 + '@typescript-eslint/types': 8.37.0 + '@typescript-eslint/typescript-estree': 8.37.0(typescript@5.8.3) + '@typescript-eslint/visitor-keys': 8.37.0 debug: 4.4.1 eslint: 9.31.0(jiti@2.4.2) typescript: 5.8.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/project-service@8.34.1(typescript@5.8.3)': - dependencies: - '@typescript-eslint/tsconfig-utils': 8.34.1(typescript@5.8.3) - '@typescript-eslint/types': 8.34.1 - debug: 4.4.1 - typescript: 5.8.3 - transitivePeerDependencies: - - supports-color - - '@typescript-eslint/project-service@8.35.1(typescript@5.8.3)': - dependencies: - '@typescript-eslint/tsconfig-utils': 8.35.1(typescript@5.8.3) - '@typescript-eslint/types': 8.35.1 - debug: 4.4.1 - typescript: 5.8.3 - transitivePeerDependencies: - - supports-color - '@typescript-eslint/project-service@8.36.0(typescript@5.8.3)': dependencies: '@typescript-eslint/tsconfig-utils': 8.36.0(typescript@5.8.3) @@ -13790,43 +13569,32 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/scope-manager@8.34.1': + '@typescript-eslint/project-service@8.37.0(typescript@5.8.3)': dependencies: - '@typescript-eslint/types': 8.34.1 - '@typescript-eslint/visitor-keys': 8.34.1 - - '@typescript-eslint/scope-manager@8.35.1': - dependencies: - '@typescript-eslint/types': 8.35.1 - '@typescript-eslint/visitor-keys': 8.35.1 + '@typescript-eslint/tsconfig-utils': 8.37.0(typescript@5.8.3) + '@typescript-eslint/types': 8.37.0 + debug: 4.4.1 + typescript: 5.8.3 + transitivePeerDependencies: + - supports-color '@typescript-eslint/scope-manager@8.36.0': dependencies: '@typescript-eslint/types': 8.36.0 '@typescript-eslint/visitor-keys': 8.36.0 - '@typescript-eslint/tsconfig-utils@8.34.1(typescript@5.8.3)': + '@typescript-eslint/scope-manager@8.37.0': dependencies: - typescript: 5.8.3 - - '@typescript-eslint/tsconfig-utils@8.35.1(typescript@5.8.3)': - dependencies: - typescript: 5.8.3 + '@typescript-eslint/types': 8.37.0 + '@typescript-eslint/visitor-keys': 8.37.0 '@typescript-eslint/tsconfig-utils@8.36.0(typescript@5.8.3)': dependencies: typescript: 5.8.3 - '@typescript-eslint/type-utils@8.35.1(eslint@9.31.0(jiti@2.4.2))(typescript@5.8.3)': + '@typescript-eslint/tsconfig-utils@8.37.0(typescript@5.8.3)': dependencies: - '@typescript-eslint/typescript-estree': 8.35.1(typescript@5.8.3) - '@typescript-eslint/utils': 8.35.1(eslint@9.31.0(jiti@2.4.2))(typescript@5.8.3) - debug: 4.4.1 - eslint: 9.31.0(jiti@2.4.2) - ts-api-utils: 2.1.0(typescript@5.8.3) typescript: 5.8.3 - transitivePeerDependencies: - - supports-color '@typescript-eslint/type-utils@8.36.0(eslint@9.31.0(jiti@2.4.2))(typescript@5.8.3)': dependencies: @@ -13839,43 +13607,21 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/types@8.34.1': {} - - '@typescript-eslint/types@8.35.1': {} + '@typescript-eslint/type-utils@8.37.0(eslint@9.31.0(jiti@2.4.2))(typescript@5.8.3)': + dependencies: + '@typescript-eslint/types': 8.37.0 + '@typescript-eslint/typescript-estree': 8.37.0(typescript@5.8.3) + '@typescript-eslint/utils': 8.37.0(eslint@9.31.0(jiti@2.4.2))(typescript@5.8.3) + debug: 4.4.1 + eslint: 9.31.0(jiti@2.4.2) + ts-api-utils: 2.1.0(typescript@5.8.3) + typescript: 5.8.3 + transitivePeerDependencies: + - supports-color '@typescript-eslint/types@8.36.0': {} - '@typescript-eslint/typescript-estree@8.34.1(typescript@5.8.3)': - dependencies: - '@typescript-eslint/project-service': 8.34.1(typescript@5.8.3) - '@typescript-eslint/tsconfig-utils': 8.34.1(typescript@5.8.3) - '@typescript-eslint/types': 8.34.1 - '@typescript-eslint/visitor-keys': 8.34.1 - 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/typescript-estree@8.35.1(typescript@5.8.3)': - dependencies: - '@typescript-eslint/project-service': 8.35.1(typescript@5.8.3) - '@typescript-eslint/tsconfig-utils': 8.35.1(typescript@5.8.3) - '@typescript-eslint/types': 8.35.1 - '@typescript-eslint/visitor-keys': 8.35.1 - 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/types@8.37.0': {} '@typescript-eslint/typescript-estree@8.36.0(typescript@5.8.3)': dependencies: @@ -13893,24 +13639,18 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/utils@8.34.1(eslint@9.31.0(jiti@2.4.2))(typescript@5.8.3)': + '@typescript-eslint/typescript-estree@8.37.0(typescript@5.8.3)': dependencies: - '@eslint-community/eslint-utils': 4.7.0(eslint@9.31.0(jiti@2.4.2)) - '@typescript-eslint/scope-manager': 8.34.1 - '@typescript-eslint/types': 8.34.1 - '@typescript-eslint/typescript-estree': 8.34.1(typescript@5.8.3) - eslint: 9.31.0(jiti@2.4.2) - typescript: 5.8.3 - transitivePeerDependencies: - - supports-color - - '@typescript-eslint/utils@8.35.1(eslint@9.31.0(jiti@2.4.2))(typescript@5.8.3)': - dependencies: - '@eslint-community/eslint-utils': 4.7.0(eslint@9.31.0(jiti@2.4.2)) - '@typescript-eslint/scope-manager': 8.35.1 - '@typescript-eslint/types': 8.35.1 - '@typescript-eslint/typescript-estree': 8.35.1(typescript@5.8.3) - eslint: 9.31.0(jiti@2.4.2) + '@typescript-eslint/project-service': 8.37.0(typescript@5.8.3) + '@typescript-eslint/tsconfig-utils': 8.37.0(typescript@5.8.3) + '@typescript-eslint/types': 8.37.0 + '@typescript-eslint/visitor-keys': 8.37.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 @@ -13926,21 +13666,27 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/visitor-keys@8.34.1': + '@typescript-eslint/utils@8.37.0(eslint@9.31.0(jiti@2.4.2))(typescript@5.8.3)': dependencies: - '@typescript-eslint/types': 8.34.1 - eslint-visitor-keys: 4.2.1 - - '@typescript-eslint/visitor-keys@8.35.1': - dependencies: - '@typescript-eslint/types': 8.35.1 - eslint-visitor-keys: 4.2.1 + '@eslint-community/eslint-utils': 4.7.0(eslint@9.31.0(jiti@2.4.2)) + '@typescript-eslint/scope-manager': 8.37.0 + '@typescript-eslint/types': 8.37.0 + '@typescript-eslint/typescript-estree': 8.37.0(typescript@5.8.3) + eslint: 9.31.0(jiti@2.4.2) + typescript: 5.8.3 + transitivePeerDependencies: + - supports-color '@typescript-eslint/visitor-keys@8.36.0': dependencies: '@typescript-eslint/types': 8.36.0 eslint-visitor-keys: 4.2.1 + '@typescript-eslint/visitor-keys@8.37.0': + dependencies: + '@typescript-eslint/types': 8.37.0 + eslint-visitor-keys: 4.2.1 + '@univerjs/icons-svg@0.4.6': {} '@univerjs/icons@0.4.6(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': @@ -13953,7 +13699,7 @@ snapshots: '@grpc/grpc-js': 1.13.3 rxjs: 7.8.2 - '@vitejs/plugin-react@4.6.0(vite@6.3.5(@types/node@24.0.13)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0))': + '@vitejs/plugin-react@4.6.0(vite@7.0.5(@types/node@24.0.14)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0))': dependencies: '@babel/core': 7.27.4 '@babel/plugin-transform-react-jsx-self': 7.27.1(@babel/core@7.27.4) @@ -13961,17 +13707,17 @@ snapshots: '@rolldown/pluginutils': 1.0.0-beta.19 '@types/babel__core': 7.20.5 react-refresh: 0.17.0 - vite: 6.3.5(@types/node@24.0.13)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + vite: 7.0.5(@types/node@24.0.14)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) transitivePeerDependencies: - supports-color - '@vitejs/plugin-vue@6.0.0(vite@6.3.5(@types/node@24.0.13)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0))(vue@3.5.17(typescript@5.8.3))': + '@vitejs/plugin-vue@6.0.0(vite@7.0.5(@types/node@24.0.14)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0))(vue@3.5.17(typescript@5.8.3))': dependencies: '@rolldown/pluginutils': 1.0.0-beta.19 - vite: 6.3.5(@types/node@24.0.13)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + vite: 7.0.5(@types/node@24.0.14)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) vue: 3.5.17(typescript@5.8.3) - '@vitest/coverage-istanbul@3.2.4(vitest@3.2.4(@types/debug@4.1.12)(@types/node@24.0.13)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0))': + '@vitest/coverage-istanbul@3.2.4(vitest@3.2.4(@types/debug@4.1.12)(@types/node@24.0.14)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0))': dependencies: '@istanbuljs/schema': 0.1.3 debug: 4.4.1 @@ -13983,17 +13729,17 @@ snapshots: magicast: 0.3.5 test-exclude: 7.0.1 tinyrainbow: 2.0.0 - vitest: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.13)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + vitest: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.14)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) transitivePeerDependencies: - supports-color - '@vitest/eslint-plugin@1.3.4(eslint@9.31.0(jiti@2.4.2))(typescript@5.8.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@24.0.13)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0))': + '@vitest/eslint-plugin@1.3.4(eslint@9.31.0(jiti@2.4.2))(typescript@5.8.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@24.0.14)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0))': dependencies: - '@typescript-eslint/utils': 8.34.1(eslint@9.31.0(jiti@2.4.2))(typescript@5.8.3) + '@typescript-eslint/utils': 8.37.0(eslint@9.31.0(jiti@2.4.2))(typescript@5.8.3) eslint: 9.31.0(jiti@2.4.2) optionalDependencies: typescript: 5.8.3 - vitest: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.13)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + vitest: 3.2.4(@types/debug@4.1.12)(@types/node@24.0.14)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) transitivePeerDependencies: - supports-color @@ -14002,16 +13748,16 @@ snapshots: '@types/chai': 5.2.2 '@vitest/spy': 3.2.4 '@vitest/utils': 3.2.4 - chai: 5.2.0 + chai: 5.2.1 tinyrainbow: 2.0.0 - '@vitest/mocker@3.2.4(vite@6.3.5(@types/node@24.0.13)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0))': + '@vitest/mocker@3.2.4(vite@7.0.5(@types/node@24.0.14)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0))': dependencies: '@vitest/spy': 3.2.4 estree-walker: 3.0.3 magic-string: 0.30.17 optionalDependencies: - vite: 6.3.5(@types/node@24.0.13)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + vite: 7.0.5(@types/node@24.0.14)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) '@vitest/pretty-format@3.2.4': dependencies: @@ -14258,6 +14004,8 @@ snapshots: agent-base@7.1.3: {} + agent-base@7.1.4: {} + aggregate-error@3.1.0: dependencies: clean-stack: 2.2.0 @@ -14547,6 +14295,13 @@ snapshots: node-releases: 2.0.19 update-browserslist-db: 1.1.3(browserslist@4.25.0) + browserslist@4.25.1: + dependencies: + caniuse-lite: 1.0.30001727 + electron-to-chromium: 1.5.186 + node-releases: 2.0.19 + update-browserslist-db: 1.1.3(browserslist@4.25.1) + buffer-from@1.1.2: {} builtin-modules@5.0.0: {} @@ -14557,19 +14312,19 @@ snapshots: bytes@3.0.0: {} - c12@3.0.4(magicast@0.3.5): + c12@3.1.0(magicast@0.3.5): dependencies: chokidar: 4.0.3 confbox: 0.2.2 defu: 6.1.4 - dotenv: 16.5.0 - exsolve: 1.0.6 + dotenv: 16.6.1 + exsolve: 1.0.7 giget: 2.0.0 jiti: 2.4.2 ohash: 2.0.11 pathe: 2.0.3 perfect-debounce: 1.0.0 - pkg-types: 2.1.0 + pkg-types: 2.2.0 rc9: 2.1.2 optionalDependencies: magicast: 0.3.5 @@ -14608,17 +14363,19 @@ snapshots: caniuse-lite@1.0.30001721: {} + caniuse-lite@1.0.30001727: {} + case-sensitive-paths-webpack-plugin@2.4.0: {} ccount@2.0.1: {} - chai@5.2.0: + chai@5.2.1: dependencies: assertion-error: 2.0.1 check-error: 2.1.1 deep-eql: 5.0.2 - loupe: 3.1.3 - pathval: 2.0.0 + loupe: 3.1.4 + pathval: 2.0.1 chalk-template@0.4.0: dependencies: @@ -14670,7 +14427,7 @@ snapshots: chrome-trace-event@1.0.4: {} - ci-info@4.2.0: {} + ci-info@4.3.0: {} citty@0.1.6: dependencies: @@ -14897,13 +14654,13 @@ snapshots: convert-source-map@2.0.0: {} - core-js-compat@3.43.0: + core-js-compat@3.44.0: dependencies: - browserslist: 4.25.0 + browserslist: 4.25.1 - cosmiconfig-typescript-loader@6.1.0(@types/node@24.0.13)(cosmiconfig@9.0.0(typescript@5.8.3))(typescript@5.8.3): + cosmiconfig-typescript-loader@6.1.0(@types/node@24.0.14)(cosmiconfig@9.0.0(typescript@5.8.3))(typescript@5.8.3): dependencies: - '@types/node': 24.0.13 + '@types/node': 24.0.14 cosmiconfig: 9.0.0(typescript@5.8.3) jiti: 2.4.2 typescript: 5.8.3 @@ -15232,7 +14989,7 @@ snapshots: dependencies: is-obj: 2.0.0 - dotenv@16.5.0: {} + dotenv@16.6.1: {} dunder-proto@1.0.1: dependencies: @@ -15246,6 +15003,8 @@ snapshots: electron-to-chromium@1.5.165: {} + electron-to-chromium@1.5.186: {} + emoji-regex@10.4.0: {} emoji-regex@8.0.0: {} @@ -15510,34 +15269,6 @@ snapshots: esbuild-windows-64: 0.14.54 esbuild-windows-arm64: 0.14.54 - esbuild@0.25.4: - optionalDependencies: - '@esbuild/aix-ppc64': 0.25.4 - '@esbuild/android-arm': 0.25.4 - '@esbuild/android-arm64': 0.25.4 - '@esbuild/android-x64': 0.25.4 - '@esbuild/darwin-arm64': 0.25.4 - '@esbuild/darwin-x64': 0.25.4 - '@esbuild/freebsd-arm64': 0.25.4 - '@esbuild/freebsd-x64': 0.25.4 - '@esbuild/linux-arm': 0.25.4 - '@esbuild/linux-arm64': 0.25.4 - '@esbuild/linux-ia32': 0.25.4 - '@esbuild/linux-loong64': 0.25.4 - '@esbuild/linux-mips64el': 0.25.4 - '@esbuild/linux-ppc64': 0.25.4 - '@esbuild/linux-riscv64': 0.25.4 - '@esbuild/linux-s390x': 0.25.4 - '@esbuild/linux-x64': 0.25.4 - '@esbuild/netbsd-arm64': 0.25.4 - '@esbuild/netbsd-x64': 0.25.4 - '@esbuild/openbsd-arm64': 0.25.4 - '@esbuild/openbsd-x64': 0.25.4 - '@esbuild/sunos-x64': 0.25.4 - '@esbuild/win32-arm64': 0.25.4 - '@esbuild/win32-ia32': 0.25.4 - '@esbuild/win32-x64': 0.25.4 - esbuild@0.25.6: optionalDependencies: '@esbuild/aix-ppc64': 0.25.6 @@ -15595,7 +15326,7 @@ snapshots: eslint-config-flat-gitignore@2.1.0(eslint@9.31.0(jiti@2.4.2)): dependencies: - '@eslint/compat': 1.3.0(eslint@9.31.0(jiti@2.4.2)) + '@eslint/compat': 1.3.1(eslint@9.31.0(jiti@2.4.2)) eslint: 9.31.0(jiti@2.4.2) eslint-flat-config-utils@2.1.0: @@ -15623,7 +15354,7 @@ snapshots: dependencies: eslint: 9.31.0(jiti@2.4.2) - eslint-plugin-better-tailwindcss@3.6.0(eslint@9.31.0(jiti@2.4.2))(tailwindcss@3.4.17): + eslint-plugin-better-tailwindcss@3.6.2(eslint@9.31.0(jiti@2.4.2))(tailwindcss@3.4.17): dependencies: '@eslint/css-tree': 3.6.1 enhanced-resolve: 5.18.2 @@ -15665,12 +15396,12 @@ snapshots: eslint-plugin-import-lite@0.3.0(eslint@9.31.0(jiti@2.4.2))(typescript@5.8.3): dependencies: '@eslint-community/eslint-utils': 4.7.0(eslint@9.31.0(jiti@2.4.2)) - '@typescript-eslint/types': 8.35.1 + '@typescript-eslint/types': 8.37.0 eslint: 9.31.0(jiti@2.4.2) optionalDependencies: typescript: 5.8.3 - eslint-plugin-jsdoc@51.3.4(eslint@9.31.0(jiti@2.4.2)): + eslint-plugin-jsdoc@51.4.1(eslint@9.31.0(jiti@2.4.2)): dependencies: '@es-joy/jsdoccomment': 0.52.0 are-docs-informative: 0.0.2 @@ -15700,10 +15431,9 @@ snapshots: transitivePeerDependencies: - '@eslint/json' - eslint-plugin-n@17.20.0(eslint@9.31.0(jiti@2.4.2))(typescript@5.8.3): + eslint-plugin-n@17.21.0(eslint@9.31.0(jiti@2.4.2))(typescript@5.8.3): dependencies: '@eslint-community/eslint-utils': 4.7.0(eslint@9.31.0(jiti@2.4.2)) - '@typescript-eslint/utils': 8.34.1(eslint@9.31.0(jiti@2.4.2))(typescript@5.8.3) enhanced-resolve: 5.18.2 eslint: 9.31.0(jiti@2.4.2) eslint-plugin-es-x: 7.8.0(eslint@9.31.0(jiti@2.4.2)) @@ -15714,7 +15444,6 @@ snapshots: semver: 7.7.2 ts-declaration-location: 1.0.7(typescript@5.8.3) transitivePeerDependencies: - - supports-color - typescript eslint-plugin-no-barrel-import@0.0.2(eslint@9.31.0(jiti@2.4.2)): @@ -15731,21 +15460,21 @@ snapshots: eslint-plugin-perfectionist@4.15.0(eslint@9.31.0(jiti@2.4.2))(typescript@5.8.3): dependencies: - '@typescript-eslint/types': 8.35.1 - '@typescript-eslint/utils': 8.34.1(eslint@9.31.0(jiti@2.4.2))(typescript@5.8.3) + '@typescript-eslint/types': 8.37.0 + '@typescript-eslint/utils': 8.37.0(eslint@9.31.0(jiti@2.4.2))(typescript@5.8.3) eslint: 9.31.0(jiti@2.4.2) natural-orderby: 5.0.0 transitivePeerDependencies: - supports-color - typescript - eslint-plugin-pnpm@0.3.1(eslint@9.31.0(jiti@2.4.2)): + eslint-plugin-pnpm@1.0.0(eslint@9.31.0(jiti@2.4.2)): dependencies: eslint: 9.31.0(jiti@2.4.2) find-up-simple: 1.0.1 jsonc-eslint-parser: 2.4.0 pathe: 2.0.3 - pnpm-workspace-yaml: 0.3.1 + pnpm-workspace-yaml: 1.0.0 tinyglobby: 0.2.14 yaml-eslint-parser: 1.3.0 @@ -15927,9 +15656,9 @@ snapshots: '@babel/helper-validator-identifier': 7.27.1 '@eslint-community/eslint-utils': 4.7.0(eslint@9.31.0(jiti@2.4.2)) '@eslint/plugin-kit': 0.2.8 - ci-info: 4.2.0 + ci-info: 4.3.0 clean-regexp: 1.0.0 - core-js-compat: 3.43.0 + core-js-compat: 3.44.0 eslint: 9.31.0(jiti@2.4.2) esquery: 1.6.0 find-up-simple: 1.0.1 @@ -15943,13 +15672,13 @@ snapshots: semver: 7.7.2 strip-indent: 4.0.0 - eslint-plugin-unused-imports@4.1.4(@typescript-eslint/eslint-plugin@8.35.1(@typescript-eslint/parser@8.36.0(eslint@9.31.0(jiti@2.4.2))(typescript@5.8.3))(eslint@9.31.0(jiti@2.4.2))(typescript@5.8.3))(eslint@9.31.0(jiti@2.4.2)): + eslint-plugin-unused-imports@4.1.4(@typescript-eslint/eslint-plugin@8.37.0(@typescript-eslint/parser@8.37.0(eslint@9.31.0(jiti@2.4.2))(typescript@5.8.3))(eslint@9.31.0(jiti@2.4.2))(typescript@5.8.3))(eslint@9.31.0(jiti@2.4.2)): dependencies: eslint: 9.31.0(jiti@2.4.2) optionalDependencies: - '@typescript-eslint/eslint-plugin': 8.35.1(@typescript-eslint/parser@8.36.0(eslint@9.31.0(jiti@2.4.2))(typescript@5.8.3))(eslint@9.31.0(jiti@2.4.2))(typescript@5.8.3) + '@typescript-eslint/eslint-plugin': 8.37.0(@typescript-eslint/parser@8.37.0(eslint@9.31.0(jiti@2.4.2))(typescript@5.8.3))(eslint@9.31.0(jiti@2.4.2))(typescript@5.8.3) - eslint-plugin-vue@10.2.0(eslint@9.31.0(jiti@2.4.2))(vue-eslint-parser@10.2.0(eslint@9.31.0(jiti@2.4.2))): + eslint-plugin-vue@10.3.0(@typescript-eslint/parser@8.37.0(eslint@9.31.0(jiti@2.4.2))(typescript@5.8.3))(eslint@9.31.0(jiti@2.4.2))(vue-eslint-parser@10.2.0(eslint@9.31.0(jiti@2.4.2))): dependencies: '@eslint-community/eslint-utils': 4.7.0(eslint@9.31.0(jiti@2.4.2)) eslint: 9.31.0(jiti@2.4.2) @@ -15959,6 +15688,8 @@ snapshots: semver: 7.7.2 vue-eslint-parser: 10.2.0(eslint@9.31.0(jiti@2.4.2)) xml-name-validator: 4.0.0 + optionalDependencies: + '@typescript-eslint/parser': 8.37.0(eslint@9.31.0(jiti@2.4.2))(typescript@5.8.3) eslint-plugin-yml@1.18.0(eslint@9.31.0(jiti@2.4.2)): dependencies: @@ -16069,7 +15800,7 @@ snapshots: estree-walker@3.0.3: dependencies: - '@types/estree': 1.0.7 + '@types/estree': 1.0.8 esutils@2.0.3: {} @@ -16103,11 +15834,11 @@ snapshots: signal-exit: 4.1.0 strip-final-newline: 3.0.0 - expect-type@1.2.1: {} + expect-type@1.2.2: {} exsolve@1.0.5: {} - exsolve@1.0.6: {} + exsolve@1.0.7: {} external-editor@3.1.0: dependencies: @@ -16147,13 +15878,9 @@ snapshots: dependencies: format: 0.2.2 - fdir@6.4.4(picomatch@4.0.2): + fdir@6.4.6(picomatch@4.0.3): optionalDependencies: - picomatch: 4.0.2 - - fdir@6.4.6(picomatch@4.0.2): - optionalDependencies: - picomatch: 4.0.2 + picomatch: 4.0.3 figlet@1.8.1: {} @@ -16317,7 +16044,7 @@ snapshots: dependencies: resolve-pkg-maps: 1.0.0 - get-uri@6.0.4: + get-uri@6.0.5: dependencies: basic-ftp: 5.0.5 data-uri-to-buffer: 6.0.2 @@ -16579,17 +16306,17 @@ snapshots: ini@4.1.1: {} - inquirer@12.6.3(@types/node@24.0.13): + inquirer@12.7.0(@types/node@24.0.14): dependencies: - '@inquirer/core': 10.1.13(@types/node@24.0.13) - '@inquirer/prompts': 7.5.3(@types/node@24.0.13) - '@inquirer/type': 3.0.7(@types/node@24.0.13) + '@inquirer/core': 10.1.14(@types/node@24.0.14) + '@inquirer/prompts': 7.6.0(@types/node@24.0.14) + '@inquirer/type': 3.0.7(@types/node@24.0.14) ansi-escapes: 4.3.2 mute-stream: 2.0.0 - run-async: 3.0.0 + run-async: 4.0.4 rxjs: 7.8.2 optionalDependencies: - '@types/node': 24.0.13 + '@types/node': 24.0.14 internal-slot@1.1.0: dependencies: @@ -16888,7 +16615,7 @@ snapshots: jest-worker@27.5.1: dependencies: - '@types/node': 24.0.13 + '@types/node': 24.0.14 merge-stream: 2.0.0 supports-color: 8.1.1 @@ -17081,8 +16808,6 @@ snapshots: lodash.escaperegexp@4.1.2: {} - lodash.get@4.4.2: {} - lodash.isplainobject@4.0.6: {} lodash.isstring@4.0.1: {} @@ -17126,8 +16851,6 @@ snapshots: dependencies: js-tokens: 4.0.0 - loupe@3.1.3: {} - loupe@3.1.4: {} lower-case@2.0.2: @@ -17659,7 +17382,7 @@ snapshots: citty: 0.1.6 consola: 3.4.2 pathe: 2.0.3 - pkg-types: 2.1.0 + pkg-types: 2.2.0 tinyexec: 0.3.2 object-assign@4.1.1: {} @@ -17729,12 +17452,12 @@ snapshots: dependencies: mimic-function: 5.0.1 - open@10.1.2: + open@10.2.0: dependencies: default-browser: 5.2.1 define-lazy-prop: 3.0.0 is-inside-container: 1.0.0 - is-wsl: 3.1.0 + wsl-utils: 0.1.0 open@8.4.2: dependencies: @@ -17800,6 +17523,17 @@ snapshots: object-keys: 1.1.1 safe-push-apply: 1.0.0 + oxlint@1.7.0: + optionalDependencies: + '@oxlint/darwin-arm64': 1.7.0 + '@oxlint/darwin-x64': 1.7.0 + '@oxlint/linux-arm64-gnu': 1.7.0 + '@oxlint/linux-arm64-musl': 1.7.0 + '@oxlint/linux-x64-gnu': 1.7.0 + '@oxlint/linux-x64-musl': 1.7.0 + '@oxlint/win32-arm64': 1.7.0 + '@oxlint/win32-x64': 1.7.0 + p-limit@2.3.0: dependencies: p-try: 2.2.0 @@ -17833,9 +17567,9 @@ snapshots: pac-proxy-agent@7.2.0: dependencies: '@tootallnate/quickjs-emscripten': 0.23.0 - agent-base: 7.1.3 + agent-base: 7.1.4 debug: 4.4.1 - get-uri: 6.0.4 + get-uri: 6.0.5 http-proxy-agent: 7.0.2 https-proxy-agent: 7.0.6 pac-resolver: 7.0.1 @@ -17933,7 +17667,7 @@ snapshots: pathe@2.0.3: {} - pathval@2.0.0: {} + pathval@2.0.1: {} perfect-debounce@1.0.0: {} @@ -17943,6 +17677,8 @@ snapshots: picomatch@4.0.2: {} + picomatch@4.0.3: {} + pidtree@0.6.0: {} pify@2.3.0: {} @@ -17965,6 +17701,12 @@ snapshots: exsolve: 1.0.5 pathe: 2.0.3 + pkg-types@2.2.0: + dependencies: + confbox: 0.2.2 + exsolve: 1.0.7 + pathe: 2.0.3 + playwright-core@1.54.1: {} playwright@1.54.1: @@ -17975,7 +17717,7 @@ snapshots: pluralize@8.0.0: {} - pnpm-workspace-yaml@0.3.1: + pnpm-workspace-yaml@1.0.0: dependencies: yaml: 2.8.0 @@ -18287,19 +18029,13 @@ snapshots: postcss-value-parser@4.2.0: {} - postcss@8.5.3: - dependencies: - nanoid: 3.3.11 - picocolors: 1.1.1 - source-map-js: 1.2.1 - postcss@8.5.6: dependencies: nanoid: 3.3.11 picocolors: 1.1.1 source-map-js: 1.2.1 - posthog-node@5.5.0: {} + posthog-node@5.5.1: {} prelude-ls@1.1.2: {} @@ -18311,6 +18047,8 @@ snapshots: prettier@3.5.3: {} + prettier@3.6.2: {} + pretty-error@4.0.0: dependencies: lodash: 4.17.21 @@ -18348,14 +18086,14 @@ snapshots: '@protobufjs/path': 1.1.2 '@protobufjs/pool': 1.1.0 '@protobufjs/utf8': 1.1.0 - '@types/node': 24.0.13 + '@types/node': 24.0.14 long: 5.3.2 protocols@2.0.2: {} proxy-agent@6.5.0: dependencies: - agent-base: 7.1.3 + agent-base: 7.1.4 debug: 4.4.1 http-proxy-agent: 7.0.2 https-proxy-agent: 7.0.6 @@ -18487,26 +18225,26 @@ snapshots: dependencies: dnd-core: 16.0.1 - react-dnd-multi-backend@8.1.2(dnd-core@16.0.1)(react-dnd@16.0.1(@types/node@24.0.13)(@types/react@19.1.8)(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0): + react-dnd-multi-backend@8.1.2(dnd-core@16.0.1)(react-dnd@16.0.1(@types/node@24.0.14)(@types/react@19.1.8)(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0): dependencies: dnd-core: 16.0.1 dnd-multi-backend: 8.1.2(dnd-core@16.0.1) react: 19.1.0 - react-dnd: 16.0.1(@types/node@24.0.13)(@types/react@19.1.8)(react@19.1.0) - react-dnd-preview: 8.1.2(react-dnd@16.0.1(@types/node@24.0.13)(@types/react@19.1.8)(react@19.1.0))(react@19.1.0) + react-dnd: 16.0.1(@types/node@24.0.14)(@types/react@19.1.8)(react@19.1.0) + react-dnd-preview: 8.1.2(react-dnd@16.0.1(@types/node@24.0.14)(@types/react@19.1.8)(react@19.1.0))(react@19.1.0) react-dom: 19.1.0(react@19.1.0) - react-dnd-preview@8.1.2(react-dnd@16.0.1(@types/node@24.0.13)(@types/react@19.1.8)(react@19.1.0))(react@19.1.0): + react-dnd-preview@8.1.2(react-dnd@16.0.1(@types/node@24.0.14)(@types/react@19.1.8)(react@19.1.0))(react@19.1.0): dependencies: react: 19.1.0 - react-dnd: 16.0.1(@types/node@24.0.13)(@types/react@19.1.8)(react@19.1.0) + react-dnd: 16.0.1(@types/node@24.0.14)(@types/react@19.1.8)(react@19.1.0) react-dnd-touch-backend@16.0.1: dependencies: '@react-dnd/invariant': 4.0.2 dnd-core: 16.0.1 - react-dnd@16.0.1(@types/node@24.0.13)(@types/react@19.1.8)(react@19.1.0): + react-dnd@16.0.1(@types/node@24.0.14)(@types/react@19.1.8)(react@19.1.0): dependencies: '@react-dnd/invariant': 4.0.2 '@react-dnd/shallowequal': 4.0.2 @@ -18515,7 +18253,7 @@ snapshots: hoist-non-react-statics: 3.3.2 react: 19.1.0 optionalDependencies: - '@types/node': 24.0.13 + '@types/node': 24.0.14 '@types/react': 19.1.8 react-docgen-typescript@2.2.2(typescript@5.8.3): @@ -18566,7 +18304,7 @@ snapshots: react-is@18.3.1: {} - react-mosaic-component@6.1.1(@types/node@24.0.13)(@types/react@19.1.8)(dnd-core@16.0.1)(react-dom@19.1.0(react@19.1.0))(react@19.1.0): + react-mosaic-component@6.1.1(@types/node@24.0.14)(@types/react@19.1.8)(dnd-core@16.0.1)(react-dom@19.1.0(react@19.1.0))(react@19.1.0): dependencies: classnames: 2.5.1 immutability-helper: 3.1.1 @@ -18574,9 +18312,9 @@ snapshots: prop-types: 15.8.1 rdndmb-html5-to-touch: 8.1.2(dnd-core@16.0.1) react: 19.1.0 - react-dnd: 16.0.1(@types/node@24.0.13)(@types/react@19.1.8)(react@19.1.0) + react-dnd: 16.0.1(@types/node@24.0.14)(@types/react@19.1.8)(react@19.1.0) react-dnd-html5-backend: 16.0.1 - react-dnd-multi-backend: 8.1.2(dnd-core@16.0.1)(react-dnd@16.0.1(@types/node@24.0.13)(@types/react@19.1.8)(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + react-dnd-multi-backend: 8.1.2(dnd-core@16.0.1)(react-dnd@16.0.1(@types/node@24.0.14)(@types/react@19.1.8)(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) react-dnd-touch-backend: 16.0.1 uuid: 9.0.1 transitivePeerDependencies: @@ -18731,29 +18469,28 @@ snapshots: relateurl@0.2.7: {} - release-it@19.0.3(@types/node@24.0.13)(magicast@0.3.5): + release-it@19.0.4(@types/node@24.0.14)(magicast@0.3.5): dependencies: '@nodeutils/defaults-deep': 1.1.0 '@octokit/rest': 21.1.1 '@phun-ky/typeof': 1.2.8 async-retry: 1.3.3 - c12: 3.0.4(magicast@0.3.5) - ci-info: 4.2.0 + c12: 3.1.0(magicast@0.3.5) + ci-info: 4.3.0 eta: 3.5.0 git-url-parse: 16.1.0 - inquirer: 12.6.3(@types/node@24.0.13) + inquirer: 12.7.0(@types/node@24.0.14) issue-parser: 7.0.1 - lodash.get: 4.4.2 lodash.merge: 4.6.2 mime-types: 3.0.1 new-github-release-url: 2.0.0 - open: 10.1.2 + open: 10.2.0 ora: 8.2.0 os-name: 6.1.0 proxy-agent: 6.5.0 semver: 7.7.2 tinyglobby: 0.2.14 - undici: 6.21.2 + undici: 6.21.3 url-join: 5.0.0 wildcard-match: 5.1.4 yargs-parser: 21.1.1 @@ -18816,37 +18553,40 @@ snapshots: dependencies: glob: 7.2.3 - rollup@4.40.2: + rollup@4.45.1: dependencies: - '@types/estree': 1.0.7 + '@types/estree': 1.0.8 optionalDependencies: - '@rollup/rollup-android-arm-eabi': 4.40.2 - '@rollup/rollup-android-arm64': 4.40.2 - '@rollup/rollup-darwin-arm64': 4.40.2 - '@rollup/rollup-darwin-x64': 4.40.2 - '@rollup/rollup-freebsd-arm64': 4.40.2 - '@rollup/rollup-freebsd-x64': 4.40.2 - '@rollup/rollup-linux-arm-gnueabihf': 4.40.2 - '@rollup/rollup-linux-arm-musleabihf': 4.40.2 - '@rollup/rollup-linux-arm64-gnu': 4.40.2 - '@rollup/rollup-linux-arm64-musl': 4.40.2 - '@rollup/rollup-linux-loongarch64-gnu': 4.40.2 - '@rollup/rollup-linux-powerpc64le-gnu': 4.40.2 - '@rollup/rollup-linux-riscv64-gnu': 4.40.2 - '@rollup/rollup-linux-riscv64-musl': 4.40.2 - '@rollup/rollup-linux-s390x-gnu': 4.40.2 - '@rollup/rollup-linux-x64-gnu': 4.40.2 - '@rollup/rollup-linux-x64-musl': 4.40.2 - '@rollup/rollup-win32-arm64-msvc': 4.40.2 - '@rollup/rollup-win32-ia32-msvc': 4.40.2 - '@rollup/rollup-win32-x64-msvc': 4.40.2 + '@rollup/rollup-android-arm-eabi': 4.45.1 + '@rollup/rollup-android-arm64': 4.45.1 + '@rollup/rollup-darwin-arm64': 4.45.1 + '@rollup/rollup-darwin-x64': 4.45.1 + '@rollup/rollup-freebsd-arm64': 4.45.1 + '@rollup/rollup-freebsd-x64': 4.45.1 + '@rollup/rollup-linux-arm-gnueabihf': 4.45.1 + '@rollup/rollup-linux-arm-musleabihf': 4.45.1 + '@rollup/rollup-linux-arm64-gnu': 4.45.1 + '@rollup/rollup-linux-arm64-musl': 4.45.1 + '@rollup/rollup-linux-loongarch64-gnu': 4.45.1 + '@rollup/rollup-linux-powerpc64le-gnu': 4.45.1 + '@rollup/rollup-linux-riscv64-gnu': 4.45.1 + '@rollup/rollup-linux-riscv64-musl': 4.45.1 + '@rollup/rollup-linux-s390x-gnu': 4.45.1 + '@rollup/rollup-linux-x64-gnu': 4.45.1 + '@rollup/rollup-linux-x64-musl': 4.45.1 + '@rollup/rollup-win32-arm64-msvc': 4.45.1 + '@rollup/rollup-win32-ia32-msvc': 4.45.1 + '@rollup/rollup-win32-x64-msvc': 4.45.1 fsevents: 2.3.3 rrweb-cssom@0.8.0: {} run-applescript@7.0.0: {} - run-async@3.0.0: {} + run-async@4.0.4: + dependencies: + oxlint: 1.7.0 + prettier: 3.6.2 run-parallel@1.2.0: dependencies: @@ -19034,13 +18774,13 @@ snapshots: socks-proxy-agent@8.0.5: dependencies: - agent-base: 7.1.3 + agent-base: 7.1.4 debug: 4.4.1 - socks: 2.8.5 + socks: 2.8.6 transitivePeerDependencies: - supports-color - socks@2.8.5: + socks@2.8.6: dependencies: ip-address: 9.0.5 smart-buffer: 4.2.0 @@ -19104,7 +18844,7 @@ snapshots: terser-webpack-plugin: 5.3.14(@swc/core@1.11.24)(esbuild@0.25.6)(webpack@5.99.8(@swc/core@1.11.24)(esbuild@0.25.6)) webpack: 5.99.8(@swc/core@1.11.24)(esbuild@0.25.6) - storybook@9.0.16(@testing-library/dom@10.4.0)(prettier@3.5.3): + storybook@9.0.17(@testing-library/dom@10.4.0)(prettier@3.6.2): dependencies: '@storybook/global': 5.0.0 '@testing-library/jest-dom': 6.6.3 @@ -19118,7 +18858,7 @@ snapshots: semver: 7.7.2 ws: 8.18.2 optionalDependencies: - prettier: 3.5.3 + prettier: 3.6.2 transitivePeerDependencies: - '@testing-library/dom' - bufferutil @@ -19376,15 +19116,10 @@ snapshots: tinyexec@1.0.1: {} - tinyglobby@0.2.13: - dependencies: - fdir: 6.4.4(picomatch@4.0.2) - picomatch: 4.0.2 - tinyglobby@0.2.14: dependencies: - fdir: 6.4.6(picomatch@4.0.2) - picomatch: 4.0.2 + fdir: 6.4.6(picomatch@4.0.3) + picomatch: 4.0.3 tinypool@1.1.1: {} @@ -19462,32 +19197,32 @@ snapshots: optionalDependencies: fsevents: 2.3.3 - turbo-darwin-64@2.5.4: + turbo-darwin-64@2.5.5: optional: true - turbo-darwin-arm64@2.5.4: + turbo-darwin-arm64@2.5.5: optional: true - turbo-linux-64@2.5.4: + turbo-linux-64@2.5.5: optional: true - turbo-linux-arm64@2.5.4: + turbo-linux-arm64@2.5.5: optional: true - turbo-windows-64@2.5.4: + turbo-windows-64@2.5.5: optional: true - turbo-windows-arm64@2.5.4: + turbo-windows-arm64@2.5.5: optional: true - turbo@2.5.4: + turbo@2.5.5: optionalDependencies: - turbo-darwin-64: 2.5.4 - turbo-darwin-arm64: 2.5.4 - turbo-linux-64: 2.5.4 - turbo-linux-arm64: 2.5.4 - turbo-windows-64: 2.5.4 - turbo-windows-arm64: 2.5.4 + turbo-darwin-64: 2.5.5 + turbo-darwin-arm64: 2.5.5 + turbo-linux-64: 2.5.5 + turbo-linux-arm64: 2.5.5 + turbo-windows-64: 2.5.5 + turbo-windows-arm64: 2.5.5 type-check@0.3.2: dependencies: @@ -19560,7 +19295,7 @@ snapshots: undici-types@7.8.0: {} - undici@6.21.2: {} + undici@6.21.3: {} unicode-regex@4.1.2: dependencies: @@ -19610,6 +19345,12 @@ snapshots: escalade: 3.2.0 picocolors: 1.1.1 + update-browserslist-db@1.1.3(browserslist@4.25.1): + dependencies: + browserslist: 4.25.1 + escalade: 3.2.0 + picocolors: 1.1.1 + update-check@1.5.4: dependencies: registry-auth-token: 3.3.2 @@ -19670,13 +19411,13 @@ snapshots: vary@1.1.2: {} - vite-node@3.2.4(@types/node@24.0.13)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0): + vite-node@3.2.4(@types/node@24.0.14)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0): dependencies: cac: 6.7.14 debug: 4.4.1 es-module-lexer: 1.7.0 pathe: 2.0.3 - vite: 6.3.5(@types/node@24.0.13)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + vite: 7.0.5(@types/node@24.0.14)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) transitivePeerDependencies: - '@types/node' - jiti @@ -19691,10 +19432,10 @@ snapshots: - tsx - yaml - vite-plugin-dts@4.5.4(@types/node@24.0.13)(rollup@4.40.2)(typescript@5.8.3)(vite@6.3.5(@types/node@24.0.13)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0)): + vite-plugin-dts@4.5.4(@types/node@24.0.14)(rollup@4.45.1)(typescript@5.8.3)(vite@7.0.5(@types/node@24.0.14)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0)): dependencies: - '@microsoft/api-extractor': 7.52.7(@types/node@24.0.13) - '@rollup/pluginutils': 5.1.4(rollup@4.40.2) + '@microsoft/api-extractor': 7.52.7(@types/node@24.0.14) + '@rollup/pluginutils': 5.1.4(rollup@4.45.1) '@volar/typescript': 2.4.13 '@vue/language-core': 2.2.0(typescript@5.8.3) compare-versions: 6.1.1 @@ -19704,7 +19445,7 @@ snapshots: magic-string: 0.30.17 typescript: 5.8.3 optionalDependencies: - vite: 6.3.5(@types/node@24.0.13)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + vite: 7.0.5(@types/node@24.0.14)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) transitivePeerDependencies: - '@types/node' - rollup @@ -19719,16 +19460,16 @@ snapshots: transitivePeerDependencies: - supports-color - vite@6.3.5(@types/node@24.0.13)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0): + vite@7.0.5(@types/node@24.0.14)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0): dependencies: - esbuild: 0.25.4 - fdir: 6.4.4(picomatch@4.0.2) - picomatch: 4.0.2 - postcss: 8.5.3 - rollup: 4.40.2 - tinyglobby: 0.2.13 + esbuild: 0.25.6 + fdir: 6.4.6(picomatch@4.0.3) + picomatch: 4.0.3 + postcss: 8.5.6 + rollup: 4.45.1 + tinyglobby: 0.2.14 optionalDependencies: - '@types/node': 24.0.13 + '@types/node': 24.0.14 fsevents: 2.3.3 jiti: 2.4.2 sass: 1.87.0 @@ -19736,34 +19477,34 @@ snapshots: tsx: 4.20.3 yaml: 2.8.0 - vitest@3.2.4(@types/debug@4.1.12)(@types/node@24.0.13)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0): + vitest@3.2.4(@types/debug@4.1.12)(@types/node@24.0.14)(happy-dom@18.0.1)(jiti@2.4.2)(jsdom@26.1.0)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0): dependencies: '@types/chai': 5.2.2 '@vitest/expect': 3.2.4 - '@vitest/mocker': 3.2.4(vite@6.3.5(@types/node@24.0.13)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0)) + '@vitest/mocker': 3.2.4(vite@7.0.5(@types/node@24.0.14)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0)) '@vitest/pretty-format': 3.2.4 '@vitest/runner': 3.2.4 '@vitest/snapshot': 3.2.4 '@vitest/spy': 3.2.4 '@vitest/utils': 3.2.4 - chai: 5.2.0 + chai: 5.2.1 debug: 4.4.1 - expect-type: 1.2.1 + expect-type: 1.2.2 magic-string: 0.30.17 pathe: 2.0.3 - picomatch: 4.0.2 + picomatch: 4.0.3 std-env: 3.9.0 tinybench: 2.9.0 tinyexec: 0.3.2 tinyglobby: 0.2.14 tinypool: 1.1.1 tinyrainbow: 2.0.0 - vite: 6.3.5(@types/node@24.0.13)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) - vite-node: 3.2.4(@types/node@24.0.13)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + vite: 7.0.5(@types/node@24.0.14)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) + vite-node: 3.2.4(@types/node@24.0.14)(jiti@2.4.2)(sass@1.87.0)(terser@5.39.0)(tsx@4.20.3)(yaml@2.8.0) why-is-node-running: 2.3.0 optionalDependencies: '@types/debug': 4.1.12 - '@types/node': 24.0.13 + '@types/node': 24.0.14 happy-dom: 18.0.1 jsdom: 26.1.0 transitivePeerDependencies: @@ -19862,7 +19603,7 @@ snapshots: '@webassemblyjs/wasm-edit': 1.14.1 '@webassemblyjs/wasm-parser': 1.14.1 acorn: 8.15.0 - browserslist: 4.25.0 + browserslist: 4.25.1 chrome-trace-event: 1.0.4 enhanced-resolve: 5.18.2 es-module-lexer: 1.7.0 @@ -19989,6 +19730,10 @@ snapshots: ws@8.18.2: {} + wsl-utils@0.1.0: + dependencies: + is-wsl: 3.1.0 + xml-name-validator@4.0.0: {} xml-name-validator@5.0.0: {}