-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update workspaces to use backstage yarn plugin (#207)
- Loading branch information
1 parent
254d84d
commit 5f1eb70
Showing
39 changed files
with
32,943 additions
and
30,775 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
Large diffs are not rendered by default.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"version": "1.32.3" | ||
} |
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--- | ||
'@philips-software/backstage-plugin-search-confluence-frontend': minor | ||
'@philips-software/backstage-plugin-search-confluence-backend': minor | ||
--- | ||
|
||
Bump to backstage version 1.32.2 |
This file was deleted.
Oops, something went wrong.
Empty file.
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,3 @@ | ||
{ | ||
"version": "1.27.4" | ||
"version": "1.32.3" | ||
} |
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
13 changes: 0 additions & 13 deletions
13
workspaces/confluence/plugins/search-confluence-backend/api-report.md
This file was deleted.
Oops, something went wrong.
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
34 changes: 0 additions & 34 deletions
34
workspaces/confluence/plugins/search-confluence-frontend/api-report.md.api.md
This file was deleted.
Oops, something went wrong.
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
28 changes: 28 additions & 0 deletions
28
workspaces/confluence/plugins/search-confluence-frontend/report.api.md
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 |
---|---|---|
@@ -0,0 +1,28 @@ | ||
## API Report File for "@philips-software/backstage-plugin-search-confluence-frontend" | ||
|
||
> Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/). | ||
```ts | ||
import { BackstagePlugin } from '@backstage/core-plugin-api'; | ||
import { IndexableDocument } from '@backstage/plugin-search-common'; | ||
import { default as React_2 } from 'react'; | ||
import { ResultHighlight } from '@backstage/plugin-search-common'; | ||
|
||
// @public | ||
export interface ConfluenceResultItemProps { | ||
highlight?: ResultHighlight; | ||
result?: IndexableDocument; | ||
} | ||
|
||
// @public | ||
export const ConfluenceResultListItem: ({ | ||
result, | ||
highlight, | ||
}: ConfluenceResultItemProps) => React_2.JSX.Element | null; | ||
|
||
// @public | ||
export const ConfluenceSearchIcon: () => React_2.JSX.Element; | ||
|
||
// @public | ||
export const searchConfluenceFrontendPlugin: BackstagePlugin<{}, {}, {}>; | ||
``` |
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
11 changes: 10 additions & 1 deletion
11
workspaces/confluence/plugins/search-confluence-frontend/src/index.ts
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,12 @@ | ||
/** | ||
* Confluence search frontend plugin. | ||
* | ||
* @packageDocumentation | ||
*/ | ||
|
||
export { searchConfluenceFrontendPlugin } from './plugin'; | ||
export { ConfluenceSearchIcon } from './icons'; | ||
export { ConfluenceResultListItem } from './components/ConfluenceResultListItem'; | ||
export { | ||
ConfluenceResultListItem, | ||
type ConfluenceResultItemProps, | ||
} from './components/ConfluenceResultListItem'; |
5 changes: 5 additions & 0 deletions
5
workspaces/confluence/plugins/search-confluence-frontend/src/plugin.ts
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'; | ||
|
||
/** | ||
* A plugin to display search results from Confluence. | ||
* | ||
* @public | ||
*/ | ||
export const searchConfluenceFrontendPlugin = createPlugin({ | ||
id: 'search-confluence-frontend', | ||
}); |
Oops, something went wrong.