mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-21 00:07:01 +08:00
<!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit - **Refactor** - Streamlined and consolidated block and inline extension exports by removing multiple block-spec and inline extension arrays from public APIs. - Reduced exported constants, types, and utility functions related to various block and embed features. - Simplified the codebase by removing deprecated type guards, adapter extensions, and redundant extension groupings. - **Chores** - Cleaned up internal APIs by deleting unused exports, imports, and outdated code, enhancing maintainability. <!-- end of auto-generated comment: release notes by coderabbit.ai -->
20 lines
872 B
TypeScript
20 lines
872 B
TypeScript
export { createEmbedBlockHtmlAdapterMatcher } from './common/adapters/html';
|
|
export { createEmbedBlockMarkdownAdapterMatcher } from './common/adapters/markdown';
|
|
export { createEmbedBlockPlainTextAdapterMatcher } from './common/adapters/plain-text';
|
|
export {
|
|
createEmbedEdgelessBlockInteraction,
|
|
EmbedBlockComponent,
|
|
} from './common/embed-block-element';
|
|
export * from './common/embed-note-content-styles';
|
|
export { insertEmbedCard } from './common/insert-embed-card';
|
|
export * from './common/render-linked-doc';
|
|
export { toEdgelessEmbedBlock } from './common/to-edgeless-embed-block';
|
|
export * from './common/utils';
|
|
export * from './embed-figma-block';
|
|
export * from './embed-github-block';
|
|
export * from './embed-html-block';
|
|
export * from './embed-iframe-block';
|
|
export * from './embed-loom-block';
|
|
export * from './embed-youtube-block';
|
|
export * from './types';
|