Merge branch 'master' into techdocs/remove-warnings

Signed-off-by: Morgan Bentell <morgan.bentell@gmail.com>
This commit is contained in:
Morgan Bentell
2023-03-16 16:18:32 +01:00
committed by GitHub
1099 changed files with 36089 additions and 25992 deletions
+52
View File
@@ -1,5 +1,57 @@
# @backstage/plugin-explore
## 0.4.1
### Patch Changes
- 65454876fb2: Minor API report tweaks
- cb8ec97cdeb: Change black & white colors to be theme aware
- c10384a9235: Switch to using `LinkButton` instead of the deprecated `Button`
- 52b0022dab7: Updated dependency `msw` to `^1.0.0`.
- 3f75b7607ca: Add ability to pass icon as function to have ability to customize it by search item
- Updated dependencies
- @backstage/core-components@0.12.5
- @backstage/plugin-catalog-react@1.4.0
- @backstage/plugin-search-react@1.5.1
- @backstage/errors@1.1.5
- @backstage/core-plugin-api@1.5.0
- @backstage/catalog-model@1.2.1
- @backstage/plugin-explore-react@0.0.27
- @backstage/theme@0.2.18
- @backstage/plugin-explore-common@0.0.1
- @backstage/plugin-search-common@1.2.2
## 0.4.1-next.2
### Patch Changes
- 65454876fb2: Minor API report tweaks
- Updated dependencies
- @backstage/core-components@0.12.5-next.2
- @backstage/plugin-catalog-react@1.4.0-next.2
- @backstage/plugin-search-react@1.5.1-next.2
- @backstage/core-plugin-api@1.5.0-next.2
- @backstage/plugin-explore-react@0.0.27-next.2
## 0.4.1-next.1
### Patch Changes
- cb8ec97cdeb: Change black & white colors to be theme aware
- c10384a9235: Switch to using `LinkButton` instead of the deprecated `Button`
- 52b0022dab7: Updated dependency `msw` to `^1.0.0`.
- Updated dependencies
- @backstage/core-components@0.12.5-next.1
- @backstage/errors@1.1.5-next.0
- @backstage/core-plugin-api@1.4.1-next.1
- @backstage/plugin-explore-react@0.0.27-next.1
- @backstage/theme@0.2.18-next.0
- @backstage/plugin-catalog-react@1.4.0-next.1
- @backstage/catalog-model@1.2.1-next.1
- @backstage/plugin-explore-common@0.0.1
- @backstage/plugin-search-common@1.2.2-next.0
- @backstage/plugin-search-react@1.5.1-next.1
## 0.4.1-next.0
### Patch Changes
+1 -5
View File
@@ -50,11 +50,7 @@ export const exploreApiRef: ApiRef<ExploreApi>;
// @public
export class ExploreClient implements ExploreApi {
constructor({
discoveryApi,
fetchApi,
exploreToolsConfig,
}: {
constructor(options: {
discoveryApi: DiscoveryApi;
fetchApi: FetchApi;
exploreToolsConfig?: ExploreToolsConfig;
+1 -1
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/plugin-explore",
"description": "A Backstage plugin for building an exploration page of your software ecosystem",
"version": "0.4.1-next.0",
"version": "0.4.1",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
+8 -10
View File
@@ -24,7 +24,7 @@ import { ExploreToolsConfig } from '@backstage/plugin-explore-react';
import { ExploreApi } from './ExploreApi';
/**
* Default implementation of the ExploreApi.
* Default implementation of the {@link ExploreApi}.
*
* @public
*/
@@ -35,21 +35,19 @@ export class ExploreClient implements ExploreApi {
private readonly exploreToolsConfig: ExploreToolsConfig | undefined;
/**
* @remarks The exploreToolsConfig is for backwards compatibility with the exporeToolsConfigRef
* @remarks
*
* The `exploreToolsConfig` is for backwards compatibility with the `exploreToolsConfigRef`•
* and will be removed in the future.
*/
constructor({
discoveryApi,
fetchApi,
exploreToolsConfig = undefined,
}: {
constructor(options: {
discoveryApi: DiscoveryApi;
fetchApi: FetchApi;
exploreToolsConfig?: ExploreToolsConfig;
}) {
this.discoveryApi = discoveryApi;
this.fetchApi = fetchApi;
this.exploreToolsConfig = exploreToolsConfig;
this.discoveryApi = options.discoveryApi;
this.fetchApi = options.fetchApi;
this.exploreToolsConfig = options.exploreToolsConfig;
}
async getTools(