chore(editor): reorg packages (#10702)

This commit is contained in:
Saul-Mirone
2025-03-08 03:57:04 +00:00
parent 334912e85b
commit 8aedef0a36
961 changed files with 837 additions and 927 deletions
@@ -0,0 +1,20 @@
import { BlockComponent } from '@blocksuite/block-std';
import { nothing } from 'lit';
import type { SurfaceBlockModel } from './surface-model.js';
import type { SurfaceBlockService } from './surface-service.js';
export class SurfaceBlockVoidComponent extends BlockComponent<
SurfaceBlockModel,
SurfaceBlockService
> {
override render() {
return nothing;
}
}
declare global {
interface HTMLElementTagNameMap {
'affine-surface-void': SurfaceBlockVoidComponent;
}
}