@backstage/plugin-api-docs 0.12.0 → 0.12.1
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,20 @@
|
|
|
1
1
|
# @backstage/plugin-api-docs
|
|
2
2
|
|
|
3
|
+
## 0.12.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
- @backstage/frontend-plugin-api@0.9.2
|
|
9
|
+
- @backstage/catalog-model@1.7.1
|
|
10
|
+
- @backstage/core-compat-api@0.3.3
|
|
11
|
+
- @backstage/core-components@0.16.1
|
|
12
|
+
- @backstage/core-plugin-api@1.10.1
|
|
13
|
+
- @backstage/plugin-catalog@1.25.1
|
|
14
|
+
- @backstage/plugin-catalog-common@1.1.1
|
|
15
|
+
- @backstage/plugin-catalog-react@1.14.2
|
|
16
|
+
- @backstage/plugin-permission-react@0.4.28
|
|
17
|
+
|
|
3
18
|
## 0.12.0
|
|
4
19
|
|
|
5
20
|
### Minor Changes
|
package/dist/alpha.esm.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import Grid from '@material-ui/core/Grid';
|
|
3
3
|
import { NavItemBlueprint, ApiBlueprint, createApiFactory, PageBlueprint, createFrontendPlugin } from '@backstage/frontend-plugin-api';
|
|
4
|
-
import {
|
|
4
|
+
import { convertLegacyRouteRef, compatWrapper } from '@backstage/core-compat-api';
|
|
5
5
|
import { RELATION_HAS_PART, parseEntityRef } from '@backstage/catalog-model';
|
|
6
6
|
import '@backstage/plugin-catalog-react';
|
|
7
7
|
import '@material-ui/lab/Alert';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import AsyncApi from '@asyncapi/react-component';
|
|
2
2
|
import '@asyncapi/react-component/styles/default.css';
|
|
3
|
-
import { makeStyles,
|
|
3
|
+
import { makeStyles, alpha, darken, useTheme } from '@material-ui/core/styles';
|
|
4
4
|
import React from 'react';
|
|
5
5
|
|
|
6
6
|
const useStyles = makeStyles((theme) => ({
|
package/dist/plugin.esm.js
CHANGED
|
@@ -6,7 +6,7 @@ import '@backstage/core-components';
|
|
|
6
6
|
import { createPlugin, createApiFactory, createRoutableExtension, createComponentExtension } from '@backstage/core-plugin-api';
|
|
7
7
|
import { defaultDefinitionWidgets } from './components/ApiDefinitionCard/ApiDefinitionWidget.esm.js';
|
|
8
8
|
import '@material-ui/core/Typography';
|
|
9
|
-
import {
|
|
9
|
+
import { rootRoute, registerComponentRouteRef } from './routes.esm.js';
|
|
10
10
|
|
|
11
11
|
const apiDocsPlugin = createPlugin({
|
|
12
12
|
id: "api-docs",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-api-docs",
|
|
3
|
-
"version": "0.12.
|
|
3
|
+
"version": "0.12.1",
|
|
4
4
|
"description": "A Backstage plugin that helps represent API entities in the frontend",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "frontend-plugin",
|
|
@@ -64,13 +64,13 @@
|
|
|
64
64
|
"dependencies": {
|
|
65
65
|
"@asyncapi/react-component": "^2.3.3",
|
|
66
66
|
"@backstage/catalog-model": "^1.7.1",
|
|
67
|
-
"@backstage/core-compat-api": "^0.3.
|
|
68
|
-
"@backstage/core-components": "^0.16.
|
|
67
|
+
"@backstage/core-compat-api": "^0.3.3",
|
|
68
|
+
"@backstage/core-components": "^0.16.1",
|
|
69
69
|
"@backstage/core-plugin-api": "^1.10.1",
|
|
70
|
-
"@backstage/frontend-plugin-api": "^0.9.
|
|
71
|
-
"@backstage/plugin-catalog": "^1.25.
|
|
70
|
+
"@backstage/frontend-plugin-api": "^0.9.2",
|
|
71
|
+
"@backstage/plugin-catalog": "^1.25.1",
|
|
72
72
|
"@backstage/plugin-catalog-common": "^1.1.1",
|
|
73
|
-
"@backstage/plugin-catalog-react": "^1.14.
|
|
73
|
+
"@backstage/plugin-catalog-react": "^1.14.2",
|
|
74
74
|
"@backstage/plugin-permission-react": "^0.4.28",
|
|
75
75
|
"@graphiql/react": "^0.23.0",
|
|
76
76
|
"@material-ui/core": "^4.12.2",
|
|
@@ -84,10 +84,10 @@
|
|
|
84
84
|
"swagger-ui-react": "^5.0.0"
|
|
85
85
|
},
|
|
86
86
|
"devDependencies": {
|
|
87
|
-
"@backstage/cli": "^0.29.
|
|
87
|
+
"@backstage/cli": "^0.29.2",
|
|
88
88
|
"@backstage/core-app-api": "^1.15.2",
|
|
89
|
-
"@backstage/dev-utils": "^1.1.
|
|
90
|
-
"@backstage/test-utils": "^1.7.
|
|
89
|
+
"@backstage/dev-utils": "^1.1.4",
|
|
90
|
+
"@backstage/test-utils": "^1.7.2",
|
|
91
91
|
"@testing-library/dom": "^10.0.0",
|
|
92
92
|
"@testing-library/jest-dom": "^6.0.0",
|
|
93
93
|
"@testing-library/react": "^16.0.0",
|