@backstage-community/plugin-lighthouse 0.16.0 → 0.17.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,16 @@
1
1
  # @backstage-community/plugin-lighthouse
2
2
 
3
+ ## 0.17.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 5ea7ce0: Backstage version bump to v1.46.1
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies [5ea7ce0]
12
+ - @backstage-community/plugin-lighthouse-common@0.14.0
13
+
3
14
  ## 0.16.0
4
15
 
5
16
  ### Minor Changes
package/dist/alpha.d.ts CHANGED
@@ -3,7 +3,6 @@ import * as _backstage_catalog_model from '@backstage/catalog-model';
3
3
  import * as react from 'react';
4
4
  import * as _backstage_plugin_catalog_react_alpha from '@backstage/plugin-catalog-react/alpha';
5
5
  import * as _backstage_frontend_plugin_api from '@backstage/frontend-plugin-api';
6
- import * as _backstage_core_plugin_api from '@backstage/core-plugin-api';
7
6
 
8
7
  /**
9
8
  * @alpha
@@ -14,11 +13,11 @@ declare const lighthousePlugin: _backstage_frontend_plugin_api.OverridableFronte
14
13
  name: undefined;
15
14
  config: {};
16
15
  configInput: {};
17
- output: _backstage_frontend_plugin_api.ExtensionDataRef<_backstage_core_plugin_api.AnyApiFactory, "core.api.factory", {}>;
16
+ output: _backstage_frontend_plugin_api.ExtensionDataRef<_backstage_frontend_plugin_api.AnyApiFactory, "core.api.factory", {}>;
18
17
  inputs: {};
19
18
  params: <TApi, TImpl extends TApi, TDeps extends {
20
19
  [x: string]: unknown;
21
- }>(params: _backstage_core_plugin_api.ApiFactory<TApi, TImpl, TDeps>) => _backstage_frontend_plugin_api.ExtensionBlueprintParams<_backstage_core_plugin_api.AnyApiFactory>;
20
+ }>(params: _backstage_frontend_plugin_api.ApiFactory<TApi, TImpl, TDeps>) => _backstage_frontend_plugin_api.ExtensionBlueprintParams<_backstage_frontend_plugin_api.AnyApiFactory>;
22
21
  }>;
23
22
  "entity-card:lighthouse/lighthouse": _backstage_frontend_plugin_api.OverridableExtensionDefinition<{
24
23
  kind: "entity-card";
@@ -89,13 +88,13 @@ declare const lighthousePlugin: _backstage_frontend_plugin_api.OverridableFronte
89
88
  configInput: {};
90
89
  output: _backstage_frontend_plugin_api.ExtensionDataRef<{
91
90
  title: string;
92
- icon: _backstage_core_plugin_api.IconComponent;
91
+ icon: _backstage_frontend_plugin_api.IconComponent;
93
92
  routeRef: _backstage_frontend_plugin_api.RouteRef<undefined>;
94
93
  }, "core.nav-item.target", {}>;
95
94
  inputs: {};
96
95
  params: {
97
96
  title: string;
98
- icon: _backstage_core_plugin_api.IconComponent;
97
+ icon: _backstage_frontend_plugin_api.IconComponent;
99
98
  routeRef: _backstage_frontend_plugin_api.RouteRef<undefined>;
100
99
  };
101
100
  }>;
package/dist/index.d.ts CHANGED
@@ -3,6 +3,7 @@ import { InfoCardVariants } from '@backstage/core-components';
3
3
  import * as react_jsx_runtime from 'react/jsx-runtime';
4
4
  import * as _backstage_core_plugin_api from '@backstage/core-plugin-api';
5
5
  import { Entity } from '@backstage/catalog-model';
6
+ import * as _backstage_frontend_plugin_api from '@backstage/frontend-plugin-api';
6
7
  import { LighthouseApi } from '@backstage-community/plugin-lighthouse-common';
7
8
 
8
9
  /** @public */
@@ -28,7 +29,7 @@ declare const Router: () => react_jsx_runtime.JSX.Element;
28
29
  declare const EmbeddedRouter: () => react_jsx_runtime.JSX.Element;
29
30
 
30
31
  /** @public */
31
- declare const lighthouseApiRef: _backstage_core_plugin_api.ApiRef<LighthouseApi>;
32
+ declare const lighthouseApiRef: _backstage_frontend_plugin_api.ApiRef<LighthouseApi>;
32
33
 
33
34
  /** @public */
34
35
  declare const LastLighthouseAuditCard: (props: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage-community/plugin-lighthouse",
3
- "version": "0.16.0",
3
+ "version": "0.17.0",
4
4
  "description": "A Backstage plugin that integrates towards Lighthouse",
5
5
  "backstage": {
6
6
  "role": "frontend-plugin",
@@ -68,13 +68,13 @@
68
68
  "test": "backstage-cli package test"
69
69
  },
70
70
  "dependencies": {
71
- "@backstage-community/plugin-lighthouse-common": "^0.13.0",
71
+ "@backstage-community/plugin-lighthouse-common": "^0.14.0",
72
72
  "@backstage/catalog-model": "^1.7.6",
73
- "@backstage/core-compat-api": "^0.5.4",
74
- "@backstage/core-components": "^0.18.3",
75
- "@backstage/core-plugin-api": "^1.12.0",
76
- "@backstage/frontend-plugin-api": "^0.13.1",
77
- "@backstage/plugin-catalog-react": "^1.21.3",
73
+ "@backstage/core-compat-api": "^0.5.5",
74
+ "@backstage/core-components": "^0.18.4",
75
+ "@backstage/core-plugin-api": "^1.12.1",
76
+ "@backstage/frontend-plugin-api": "^0.13.2",
77
+ "@backstage/plugin-catalog-react": "^1.21.4",
78
78
  "@material-ui/core": "^4.12.2",
79
79
  "@material-ui/icons": "^4.9.1",
80
80
  "@material-ui/lab": "4.0.0-alpha.61",
@@ -82,12 +82,12 @@
82
82
  "react-use": "^17.2.4"
83
83
  },
84
84
  "devDependencies": {
85
- "@backstage/cli": "^0.34.5",
86
- "@backstage/core-app-api": "^1.19.2",
87
- "@backstage/dev-utils": "^1.1.17",
88
- "@backstage/frontend-defaults": "^0.3.3",
89
- "@backstage/plugin-catalog": "^1.32.0",
90
- "@backstage/test-utils": "^1.7.13",
85
+ "@backstage/cli": "^0.35.1",
86
+ "@backstage/core-app-api": "^1.19.3",
87
+ "@backstage/dev-utils": "^1.1.18",
88
+ "@backstage/frontend-defaults": "^0.3.4",
89
+ "@backstage/plugin-catalog": "^1.32.1",
90
+ "@backstage/test-utils": "^1.7.14",
91
91
  "@testing-library/dom": "^10.0.0",
92
92
  "@testing-library/jest-dom": "^6.0.0",
93
93
  "@testing-library/react": "^15.0.0",