refactor(editor): add gfx entry in bs global package (#10612)

This commit is contained in:
Saul-Mirone
2025-03-04 12:46:50 +00:00
parent 5ad3d3c94a
commit 66d9d576e0
216 changed files with 341 additions and 397 deletions

View File

@@ -30,8 +30,8 @@ import {
import type {
EdgelessRootBlockComponent,
NoteBlockModel,
} from '@blocksuite/blocks';
import type { IVec } from '@blocksuite/global/utils';
} from '@blocksuite/affine/blocks';
import type { IVec } from '@blocksuite/affine/global/gfx';
import { expect, type Page } from '@playwright/test';
const title = 'Edgeless Note Header Test';

View File

@@ -1,5 +1,5 @@
import type * as BlocksuiteBlocks from '@blocksuite/affine/blocks';
import type { IVec, XYWH } from '@blocksuite/global/utils';
import type { IVec, XYWH } from '@blocksuite/affine/global/gfx';
import { expect, type Locator, type Page } from '@playwright/test';
declare type _GLOBAL_ = typeof BlocksuiteBlocks;