mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-08-01 17:39:55 +08:00
4e201ede17
Closes: BS-3360 <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit - **New Features** - Introduced a new viewport overlay widget, making it available as part of the workspace and enabling its integration into supported pages. - **Refactor** - Updated internal imports and exports to utilize the new viewport overlay widget package. - Streamlined widget registration and extension mechanisms for improved modularity. - **Chores** - Added configuration and project references to support the new viewport overlay widget package in the build system. <!-- end of auto-generated comment: release notes by coderabbit.ai -->
12 lines
221 B
TypeScript
12 lines
221 B
TypeScript
import {
|
|
AFFINE_VIEWPORT_OVERLAY_WIDGET,
|
|
AffineViewportOverlayWidget,
|
|
} from './index';
|
|
|
|
export function effects() {
|
|
customElements.define(
|
|
AFFINE_VIEWPORT_OVERLAY_WIDGET,
|
|
AffineViewportOverlayWidget
|
|
);
|
|
}
|