-
Notifications
You must be signed in to change notification settings - Fork 309
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Florian JUDITH <[email protected]>
- Loading branch information
Florian JUDITH
committed
Aug 7, 2024
1 parent
d4ac9ab
commit 03cfc14
Showing
4 changed files
with
35 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,10 @@ | ||
/** | ||
* Confluence frontend plugin. | ||
* | ||
* @packageDocumentation | ||
*/ | ||
|
||
export { confluencePlugin } from './plugin'; | ||
export { ConfluenceSearchIcon } from './icons'; | ||
export { ConfluenceSearchResultListItem } from './search/ConfluenceSearchResultListItem'; | ||
export type { ConfluenceResultItemProps } from './search/ConfluenceSearchResultListItem'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,10 @@ | ||
import { createPlugin } from '@backstage/core-plugin-api'; | ||
|
||
/** | ||
* The Backstage plugin that holds Confluence specific components | ||
* | ||
* @public | ||
*/ | ||
export const confluencePlugin = createPlugin({ | ||
id: 'confluence', | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters