@backstage/plugin-api-docs 0.0.0-nightly-20230328022219 → 0.0.0-nightly-20230330022134

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,18 +1,32 @@
1
1
  # @backstage/plugin-api-docs
2
2
 
3
- ## 0.0.0-nightly-20230328022219
3
+ ## 0.0.0-nightly-20230330022134
4
4
 
5
5
  ### Patch Changes
6
6
 
7
7
  - ca50c3bbea1: Corrected styling of nested objects in AsyncAPI to avoid inappropriate uppercase text transformation of nested objects.
8
8
  - 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
9
+ - e0c6e8b9c3c: Update peer dependencies
9
10
  - Updated dependencies
10
- - @backstage/core-components@0.0.0-nightly-20230328022219
11
- - @backstage/plugin-catalog@0.0.0-nightly-20230328022219
12
- - @backstage/plugin-catalog-react@0.0.0-nightly-20230328022219
11
+ - @backstage/core-components@0.0.0-nightly-20230330022134
12
+ - @backstage/plugin-catalog@0.0.0-nightly-20230330022134
13
+ - @backstage/plugin-catalog-react@0.0.0-nightly-20230330022134
14
+ - @backstage/core-plugin-api@0.0.0-nightly-20230330022134
15
+ - @backstage/theme@0.0.0-nightly-20230330022134
16
+ - @backstage/catalog-model@1.2.1
17
+
18
+ ## 0.9.2-next.1
19
+
20
+ ### Patch Changes
21
+
22
+ - e0c6e8b9c3c: Update peer dependencies
23
+ - Updated dependencies
24
+ - @backstage/core-components@0.12.6-next.1
25
+ - @backstage/core-plugin-api@1.5.1-next.0
26
+ - @backstage/plugin-catalog-react@1.4.1-next.1
27
+ - @backstage/plugin-catalog@1.10.0-next.1
28
+ - @backstage/theme@0.2.19-next.0
13
29
  - @backstage/catalog-model@1.2.1
14
- - @backstage/core-plugin-api@1.5.0
15
- - @backstage/theme@0.2.18
16
30
 
17
31
  ## 0.9.2-next.0
18
32
 
package/dist/index.d.ts CHANGED
@@ -11,7 +11,7 @@ import * as _backstage_core_plugin_api from '@backstage/core-plugin-api';
11
11
  * DefaultApiExplorerPageProps
12
12
  * @public
13
13
  */
14
- declare type DefaultApiExplorerPageProps = {
14
+ type DefaultApiExplorerPageProps = {
15
15
  initiallySelectedFilter?: UserListFilterKind;
16
16
  columns?: TableColumn<CatalogTableRow>[];
17
17
  actions?: TableProps<CatalogTableRow>['actions'];
@@ -32,7 +32,7 @@ declare const ApiExplorerPage$1: (props: DefaultApiExplorerPageProps) => JSX.Ele
32
32
  declare const ApiDefinitionCard: () => JSX.Element;
33
33
 
34
34
  /** @public */
35
- declare type ApiDefinitionWidget = {
35
+ type ApiDefinitionWidget = {
36
36
  type: string;
37
37
  title: string;
38
38
  component: (definition: string) => React.ReactElement;
@@ -84,7 +84,7 @@ declare const ProvidedApisCard: (props: {
84
84
  }) => JSX.Element;
85
85
 
86
86
  /** @public */
87
- declare type AsyncApiDefinitionWidgetProps = {
87
+ type AsyncApiDefinitionWidgetProps = {
88
88
  definition: string;
89
89
  };
90
90
  /** @public */
@@ -103,21 +103,21 @@ declare const ProvidingComponentsCard: (props: {
103
103
  }) => JSX.Element;
104
104
 
105
105
  /** @public */
106
- declare type GraphQlDefinitionWidgetProps = {
106
+ type GraphQlDefinitionWidgetProps = {
107
107
  definition: string;
108
108
  };
109
109
  /** @public */
110
110
  declare const GraphQlDefinitionWidget: (props: GraphQlDefinitionWidgetProps) => JSX.Element;
111
111
 
112
112
  /** @public */
113
- declare type OpenApiDefinitionWidgetProps = {
113
+ type OpenApiDefinitionWidgetProps = {
114
114
  definition: string;
115
115
  };
116
116
  /** @public */
117
117
  declare const OpenApiDefinitionWidget: (props: OpenApiDefinitionWidgetProps) => JSX.Element;
118
118
 
119
119
  /** @public */
120
- declare type PlainApiDefinitionWidgetProps = {
120
+ type PlainApiDefinitionWidgetProps = {
121
121
  definition: any;
122
122
  language: string;
123
123
  };
@@ -125,7 +125,7 @@ declare type PlainApiDefinitionWidgetProps = {
125
125
  declare const PlainApiDefinitionWidget: (props: PlainApiDefinitionWidgetProps) => JSX.Element;
126
126
 
127
127
  /** @public */
128
- declare type TrpcApiDefinitionWidgetProps = {
128
+ type TrpcApiDefinitionWidgetProps = {
129
129
  definition: string;
130
130
  };
131
131
  /** @public */
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@backstage/plugin-api-docs",
3
3
  "description": "A Backstage plugin that helps represent API entities in the frontend",
4
- "version": "0.0.0-nightly-20230328022219",
4
+ "version": "0.0.0-nightly-20230330022134",
5
5
  "main": "dist/index.esm.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "license": "Apache-2.0",
@@ -34,14 +34,15 @@
34
34
  "dependencies": {
35
35
  "@asyncapi/react-component": "1.0.0-next.47",
36
36
  "@backstage/catalog-model": "^1.2.1",
37
- "@backstage/core-components": "^0.0.0-nightly-20230328022219",
38
- "@backstage/core-plugin-api": "^1.5.0",
39
- "@backstage/plugin-catalog": "^0.0.0-nightly-20230328022219",
40
- "@backstage/plugin-catalog-react": "^0.0.0-nightly-20230328022219",
41
- "@backstage/theme": "^0.2.18",
37
+ "@backstage/core-components": "^0.0.0-nightly-20230330022134",
38
+ "@backstage/core-plugin-api": "^0.0.0-nightly-20230330022134",
39
+ "@backstage/plugin-catalog": "^0.0.0-nightly-20230330022134",
40
+ "@backstage/plugin-catalog-react": "^0.0.0-nightly-20230330022134",
41
+ "@backstage/theme": "^0.0.0-nightly-20230330022134",
42
42
  "@material-ui/core": "^4.12.2",
43
43
  "@material-ui/icons": "^4.9.1",
44
44
  "@material-ui/lab": "4.0.0-alpha.61",
45
+ "@types/react": "^16.13.1 || ^17.0.0",
45
46
  "graphiql": "^1.8.8",
46
47
  "graphql": "^16.0.0",
47
48
  "graphql-ws": "^5.4.1",
@@ -50,15 +51,16 @@
50
51
  "swagger-ui-react": "^4.11.1"
51
52
  },
52
53
  "peerDependencies": {
53
- "@types/react": "^16.13.1 || ^17.0.0",
54
54
  "react": "^16.13.1 || ^17.0.0",
55
+ "react-dom": "^16.13.1 || ^17.0.0",
55
56
  "react-router-dom": "6.0.0-beta.0 || ^6.3.0"
56
57
  },
57
58
  "devDependencies": {
58
- "@backstage/cli": "^0.0.0-nightly-20230328022219",
59
- "@backstage/core-app-api": "^0.0.0-nightly-20230328022219",
60
- "@backstage/dev-utils": "^0.0.0-nightly-20230328022219",
61
- "@backstage/test-utils": "^0.0.0-nightly-20230328022219",
59
+ "@backstage/cli": "^0.0.0-nightly-20230330022134",
60
+ "@backstage/core-app-api": "^0.0.0-nightly-20230330022134",
61
+ "@backstage/dev-utils": "^0.0.0-nightly-20230330022134",
62
+ "@backstage/test-utils": "^0.0.0-nightly-20230330022134",
63
+ "@testing-library/dom": "^8.0.0",
62
64
  "@testing-library/jest-dom": "^5.10.1",
63
65
  "@testing-library/react": "^12.1.3",
64
66
  "@testing-library/user-event": "^14.0.0",