Merge branch 'master' into use-search-icon
This commit is contained in:
@@ -1,5 +1,60 @@
|
||||
# @backstage/plugin-search-react
|
||||
|
||||
## 1.7.14-next.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 3123c16: Fix package metadata
|
||||
- Updated dependencies
|
||||
- @backstage/frontend-plugin-api@0.7.0-next.2
|
||||
- @backstage/plugin-search-common@1.2.14-next.1
|
||||
- @backstage/core-components@0.14.10-next.0
|
||||
- @backstage/core-plugin-api@1.9.3
|
||||
- @backstage/theme@0.5.6
|
||||
- @backstage/types@1.1.1
|
||||
- @backstage/version-bridge@1.0.8
|
||||
|
||||
## 1.7.14-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 6349099: Added config input type to the extensions
|
||||
- Updated dependencies
|
||||
- @backstage/frontend-plugin-api@0.6.8-next.1
|
||||
- @backstage/plugin-search-common@1.2.14-next.0
|
||||
- @backstage/core-components@0.14.10-next.0
|
||||
- @backstage/core-plugin-api@1.9.3
|
||||
- @backstage/theme@0.5.6
|
||||
- @backstage/types@1.1.1
|
||||
- @backstage/version-bridge@1.0.8
|
||||
|
||||
## 1.7.14-next.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 31bfc44: Updated alpha definitions of extension data references.
|
||||
- Updated dependencies
|
||||
- @backstage/frontend-plugin-api@0.6.8-next.0
|
||||
- @backstage/core-components@0.14.10-next.0
|
||||
- @backstage/core-plugin-api@1.9.3
|
||||
- @backstage/theme@0.5.6
|
||||
- @backstage/types@1.1.1
|
||||
- @backstage/version-bridge@1.0.8
|
||||
- @backstage/plugin-search-common@1.2.13
|
||||
|
||||
## 1.7.13
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/core-components@0.14.9
|
||||
- @backstage/plugin-search-common@1.2.13
|
||||
- @backstage/frontend-plugin-api@0.6.7
|
||||
- @backstage/core-plugin-api@1.9.3
|
||||
- @backstage/theme@0.5.6
|
||||
- @backstage/types@1.1.1
|
||||
- @backstage/version-bridge@1.0.8
|
||||
|
||||
## 1.7.13-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -25,7 +25,7 @@ export function createSearchResultListItemExtension<
|
||||
},
|
||||
>(
|
||||
options: SearchResultItemExtensionOptions<TConfig>,
|
||||
): ExtensionDefinition<TConfig>;
|
||||
): ExtensionDefinition<TConfig & {}, TConfig & {}>;
|
||||
|
||||
// @alpha (undocumented)
|
||||
export namespace createSearchResultListItemExtension {
|
||||
@@ -35,6 +35,7 @@ export namespace createSearchResultListItemExtension {
|
||||
predicate?: SearchResultItemExtensionPredicate | undefined;
|
||||
component: SearchResultItemExtensionComponent;
|
||||
},
|
||||
'search.search-result-list-item.item',
|
||||
{}
|
||||
>;
|
||||
}
|
||||
|
||||
@@ -6,4 +6,4 @@ metadata:
|
||||
spec:
|
||||
lifecycle: production
|
||||
type: backstage-web-library
|
||||
owner: discoverability-maintainers
|
||||
owner: search-maintainers
|
||||
|
||||
@@ -1,12 +1,13 @@
|
||||
{
|
||||
"name": "@backstage/plugin-search-react",
|
||||
"version": "1.7.13-next.1",
|
||||
"version": "1.7.14-next.2",
|
||||
"backstage": {
|
||||
"role": "web-library",
|
||||
"pluginId": "search",
|
||||
"pluginPackages": [
|
||||
"@backstage/plugin-search",
|
||||
"@backstage/plugin-search-backend",
|
||||
"@backstage/plugin-search-backend-node",
|
||||
"@backstage/plugin-search-common",
|
||||
"@backstage/plugin-search-react"
|
||||
]
|
||||
|
||||
@@ -137,5 +137,5 @@ export namespace createSearchResultListItemExtension {
|
||||
export const itemDataRef = createExtensionDataRef<{
|
||||
predicate?: SearchResultItemExtensionPredicate;
|
||||
component: SearchResultItemExtensionComponent;
|
||||
}>('search.search-result-list-item.item');
|
||||
}>().with({ id: 'search.search-result-list-item.item' });
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user