@backstage-community/plugin-tech-insights-react 1.2.1 → 1.3.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 +11 -0
- package/dist/index.d.ts +3 -3
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# @backstage-community/plugin-tech-insights-react
|
|
2
2
|
|
|
3
|
+
## 1.3.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- e8743d9: Backstage version bump to v1.46.2
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [e8743d9]
|
|
12
|
+
- @backstage-community/plugin-tech-insights-common@0.8.0
|
|
13
|
+
|
|
3
14
|
## 1.2.1
|
|
4
15
|
|
|
5
16
|
### Patch Changes
|
package/dist/index.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import * as
|
|
2
|
-
import { DiscoveryApi, IdentityApi } from '@backstage/core-plugin-api';
|
|
1
|
+
import * as _backstage_frontend_plugin_api from '@backstage/frontend-plugin-api';
|
|
3
2
|
import { CheckResult, Check, BulkCheckResponse, InsightFacts, FactSchema, CheckLink } from '@backstage-community/plugin-tech-insights-common';
|
|
4
3
|
import { ReactElement, PropsWithChildren, MouseEventHandler, ElementType, ReactNode } from 'react';
|
|
5
4
|
import { CompoundEntityRef, Entity } from '@backstage/catalog-model';
|
|
5
|
+
import { DiscoveryApi, IdentityApi } from '@backstage/core-plugin-api';
|
|
6
6
|
import { TechInsightsClient as TechInsightsClient$1 } from '@backstage-community/plugin-tech-insights-common/client';
|
|
7
7
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
8
8
|
|
|
@@ -29,7 +29,7 @@ declare const jsonRulesEngineCheckResultRenderer: CheckResultRenderer;
|
|
|
29
29
|
*
|
|
30
30
|
* @public
|
|
31
31
|
*/
|
|
32
|
-
declare const techInsightsApiRef:
|
|
32
|
+
declare const techInsightsApiRef: _backstage_frontend_plugin_api.ApiRef<TechInsightsApi>;
|
|
33
33
|
/**
|
|
34
34
|
* Tech Insights API client interface
|
|
35
35
|
*
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage-community/plugin-tech-insights-react",
|
|
3
3
|
"description": "Web library for the tech-insights plugin",
|
|
4
|
-
"version": "1.
|
|
4
|
+
"version": "1.3.0",
|
|
5
5
|
"main": "dist/index.esm.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -39,10 +39,10 @@
|
|
|
39
39
|
"postpack": "backstage-cli package postpack"
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@backstage-community/plugin-tech-insights-common": "^0.
|
|
43
|
-
"@backstage/catalog-model": "^1.7.
|
|
44
|
-
"@backstage/core-plugin-api": "^1.
|
|
45
|
-
"@backstage/types": "^1.2.
|
|
42
|
+
"@backstage-community/plugin-tech-insights-common": "^0.8.0",
|
|
43
|
+
"@backstage/catalog-model": "^1.7.6",
|
|
44
|
+
"@backstage/core-plugin-api": "^1.12.1",
|
|
45
|
+
"@backstage/types": "^1.2.2",
|
|
46
46
|
"@material-ui/core": "^4.9.13",
|
|
47
47
|
"@material-ui/icons": "^4.9.1",
|
|
48
48
|
"@material-ui/lab": "4.0.0-alpha.61"
|
|
@@ -51,8 +51,8 @@
|
|
|
51
51
|
"react": "^16.13.1 || ^17.0.0 || ^18.0.0"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
54
|
-
"@backstage/cli": "^0.
|
|
55
|
-
"@backstage/test-utils": "^1.7.
|
|
54
|
+
"@backstage/cli": "^0.35.1",
|
|
55
|
+
"@backstage/test-utils": "^1.7.14",
|
|
56
56
|
"@testing-library/jest-dom": "^6.0.0",
|
|
57
57
|
"@testing-library/react": "^14.0.0",
|
|
58
58
|
"react": "^16.13.1 || ^17.0.0 || ^18.0.0"
|