feat(editor): support member node (#11075)

Close [BS-2793](https://linear.app/affine-design/issue/BS-2793/inline-member)
This commit is contained in:
Flrande
2025-03-24 05:57:03 +00:00
parent b8df65a2b0
commit 4bacfbd640
70 changed files with 582 additions and 117 deletions

View File

@@ -73,6 +73,10 @@ export interface AffineTextAttributes {
color?: string | null;
latex?: string | null;
footnote?: FootNote | null;
mention?: {
member: string;
notification: string;
} | null;
}
export type AffineInlineEditor = InlineEditor<AffineTextAttributes>;