Skip to content

Commit

Permalink
Merge branch 'preview-features' into preview
Browse files Browse the repository at this point in the history
  • Loading branch information
the1812 committed Apr 23, 2024
2 parents a0cb82a + 0b3dfac commit 09b014c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/components/utils/comment-apis.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,3 +35,7 @@ export const addMenuItem = (
) => {
commentAreaManager.forEachCommentArea(area => area.addMenuItem(item, config))
}

export * from './comment/comment-area'
export * from './comment/comment-item'
export * from './comment/reply-item'
4 changes: 4 additions & 0 deletions src/components/utils/comment/comment-area.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,7 @@ export const getCommentArea = (element: HTMLElement): CommentArea => {
}
return new CommentAreaV1(element)
}

export * from './areas/base'
export * from './areas/v1'
export * from './areas/v2'

0 comments on commit 09b014c

Please sign in to comment.