@backstage/plugin-api-docs 0.6.18 → 0.6.22
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 +50 -0
- package/dist/esm/{index-00ee1634.esm.js → index-02cb4cdc.esm.js} +7 -5
- package/dist/esm/index-02cb4cdc.esm.js.map +1 -0
- package/dist/esm/{index-f559083e.esm.js → index-30e4d7f8.esm.js} +7 -5
- package/dist/esm/index-30e4d7f8.esm.js.map +1 -0
- package/dist/esm/{index-75e11fdf.esm.js → index-32c80387.esm.js} +7 -5
- package/dist/esm/index-32c80387.esm.js.map +1 -0
- package/dist/esm/index-89d097b6.esm.js +11 -0
- package/dist/esm/index-89d097b6.esm.js.map +1 -0
- package/dist/index.d.ts +26 -13
- package/dist/index.esm.js +482 -8
- package/dist/index.esm.js.map +1 -1
- package/package.json +12 -12
- package/dist/esm/index-00ee1634.esm.js.map +0 -1
- package/dist/esm/index-2caea1c7.esm.js +0 -434
- package/dist/esm/index-2caea1c7.esm.js.map +0 -1
- package/dist/esm/index-75e11fdf.esm.js.map +0 -1
- package/dist/esm/index-81066cec.esm.js +0 -51
- package/dist/esm/index-81066cec.esm.js.map +0 -1
- package/dist/esm/index-f559083e.esm.js.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,55 @@
|
|
|
1
1
|
# @backstage/plugin-api-docs
|
|
2
2
|
|
|
3
|
+
## 0.6.22
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- faf844e269: Update @asyncapi/react-component to 1.0.0-next.26, which will fix the
|
|
8
|
+
`ResizeObserver loop limit exceeded` errors which we encountered in several E2E
|
|
9
|
+
tests.
|
|
10
|
+
|
|
11
|
+
For more details check the following links:
|
|
12
|
+
|
|
13
|
+
- https://github.com/backstage/backstage/pull/8088#issuecomment-991183968
|
|
14
|
+
- https://github.com/asyncapi/asyncapi-react/issues/498
|
|
15
|
+
|
|
16
|
+
- Updated dependencies
|
|
17
|
+
- @backstage/core-components@0.8.4
|
|
18
|
+
- @backstage/core-plugin-api@0.5.0
|
|
19
|
+
- @backstage/plugin-catalog-react@0.6.11
|
|
20
|
+
- @backstage/catalog-model@0.9.9
|
|
21
|
+
- @backstage/plugin-catalog@0.7.8
|
|
22
|
+
|
|
23
|
+
## 0.6.21
|
|
24
|
+
|
|
25
|
+
### Patch Changes
|
|
26
|
+
|
|
27
|
+
- 11b81683a9: Support customizing index page layouts via outlets
|
|
28
|
+
- Updated dependencies
|
|
29
|
+
- @backstage/core-plugin-api@0.4.1
|
|
30
|
+
- @backstage/plugin-catalog-react@0.6.10
|
|
31
|
+
- @backstage/core-components@0.8.3
|
|
32
|
+
- @backstage/plugin-catalog@0.7.7
|
|
33
|
+
|
|
34
|
+
## 0.6.20
|
|
35
|
+
|
|
36
|
+
### Patch Changes
|
|
37
|
+
|
|
38
|
+
- de81b7455e: Display entity title on `ApiDefinitionCard` if defined
|
|
39
|
+
- Updated dependencies
|
|
40
|
+
- @backstage/plugin-catalog@0.7.6
|
|
41
|
+
- @backstage/plugin-catalog-react@0.6.9
|
|
42
|
+
|
|
43
|
+
## 0.6.19
|
|
44
|
+
|
|
45
|
+
### Patch Changes
|
|
46
|
+
|
|
47
|
+
- Updated dependencies
|
|
48
|
+
- @backstage/core-plugin-api@0.4.0
|
|
49
|
+
- @backstage/plugin-catalog-react@0.6.8
|
|
50
|
+
- @backstage/core-components@0.8.2
|
|
51
|
+
- @backstage/plugin-catalog@0.7.5
|
|
52
|
+
|
|
3
53
|
## 0.6.18
|
|
4
54
|
|
|
5
55
|
### Patch Changes
|
|
@@ -1,9 +1,11 @@
|
|
|
1
|
-
export {
|
|
2
|
-
import '@backstage/plugin-catalog-react';
|
|
3
|
-
import '@material-ui/lab';
|
|
1
|
+
export { ApiExplorerIndexPage, DefaultApiExplorerPage } from '../index.esm.js';
|
|
4
2
|
import 'react';
|
|
5
|
-
import '
|
|
3
|
+
import 'react-router';
|
|
6
4
|
import '@backstage/core-components';
|
|
5
|
+
import '@backstage/core-plugin-api';
|
|
6
|
+
import '@backstage/plugin-catalog';
|
|
7
|
+
import '@backstage/plugin-catalog-react';
|
|
8
|
+
import '@material-ui/lab';
|
|
7
9
|
import '@backstage/catalog-model';
|
|
8
10
|
import '@material-ui/core';
|
|
9
|
-
//# sourceMappingURL=index-
|
|
11
|
+
//# sourceMappingURL=index-02cb4cdc.esm.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index-02cb4cdc.esm.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;"}
|
|
@@ -1,9 +1,11 @@
|
|
|
1
|
-
export {
|
|
2
|
-
import '@backstage/plugin-catalog-react';
|
|
3
|
-
import '@material-ui/lab';
|
|
1
|
+
export { ConsumingComponentsCard, ProvidingComponentsCard } from '../index.esm.js';
|
|
4
2
|
import 'react';
|
|
5
|
-
import '
|
|
3
|
+
import 'react-router';
|
|
6
4
|
import '@backstage/core-components';
|
|
5
|
+
import '@backstage/core-plugin-api';
|
|
6
|
+
import '@backstage/plugin-catalog';
|
|
7
|
+
import '@backstage/plugin-catalog-react';
|
|
8
|
+
import '@material-ui/lab';
|
|
7
9
|
import '@backstage/catalog-model';
|
|
8
10
|
import '@material-ui/core';
|
|
9
|
-
//# sourceMappingURL=index-
|
|
11
|
+
//# sourceMappingURL=index-30e4d7f8.esm.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index-30e4d7f8.esm.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;"}
|
|
@@ -1,9 +1,11 @@
|
|
|
1
|
-
export {
|
|
2
|
-
import '@backstage/plugin-catalog-react';
|
|
3
|
-
import '@material-ui/lab';
|
|
1
|
+
export { ConsumedApisCard, HasApisCard, ProvidedApisCard } from '../index.esm.js';
|
|
4
2
|
import 'react';
|
|
5
|
-
import '
|
|
3
|
+
import 'react-router';
|
|
6
4
|
import '@backstage/core-components';
|
|
5
|
+
import '@backstage/core-plugin-api';
|
|
6
|
+
import '@backstage/plugin-catalog';
|
|
7
|
+
import '@backstage/plugin-catalog-react';
|
|
8
|
+
import '@material-ui/lab';
|
|
7
9
|
import '@backstage/catalog-model';
|
|
8
10
|
import '@material-ui/core';
|
|
9
|
-
//# sourceMappingURL=index-
|
|
11
|
+
//# sourceMappingURL=index-32c80387.esm.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index-32c80387.esm.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export { ApiDefinitionCard, ApiTypeTitle, defaultDefinitionWidgets } from '../index.esm.js';
|
|
2
|
+
import 'react';
|
|
3
|
+
import 'react-router';
|
|
4
|
+
import '@backstage/core-components';
|
|
5
|
+
import '@backstage/core-plugin-api';
|
|
6
|
+
import '@backstage/plugin-catalog';
|
|
7
|
+
import '@backstage/plugin-catalog-react';
|
|
8
|
+
import '@material-ui/lab';
|
|
9
|
+
import '@backstage/catalog-model';
|
|
10
|
+
import '@material-ui/core';
|
|
11
|
+
//# sourceMappingURL=index-89d097b6.esm.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index-89d097b6.esm.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;"}
|
package/dist/index.d.ts
CHANGED
|
@@ -1,12 +1,32 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
+
import { TableColumn, TableProps } from '@backstage/core-components';
|
|
3
|
+
import { CatalogTableRow } from '@backstage/plugin-catalog';
|
|
4
|
+
import { UserListFilterKind } from '@backstage/plugin-catalog-react';
|
|
2
5
|
import * as _backstage_catalog_model from '@backstage/catalog-model';
|
|
3
6
|
import { ApiEntity, Entity } from '@backstage/catalog-model';
|
|
4
7
|
import React from 'react';
|
|
5
8
|
import * as _backstage_core_plugin_api from '@backstage/core-plugin-api';
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
9
|
+
|
|
10
|
+
/**
|
|
11
|
+
* DefaultApiExplorerPageProps
|
|
12
|
+
* @public
|
|
13
|
+
*/
|
|
14
|
+
declare type DefaultApiExplorerPageProps = {
|
|
15
|
+
initiallySelectedFilter?: UserListFilterKind;
|
|
16
|
+
columns?: TableColumn<CatalogTableRow>[];
|
|
17
|
+
actions?: TableProps<CatalogTableRow>['actions'];
|
|
18
|
+
};
|
|
19
|
+
/**
|
|
20
|
+
* DefaultApiExplorerPage
|
|
21
|
+
* @public
|
|
22
|
+
*/
|
|
23
|
+
declare const DefaultApiExplorerPage: ({ initiallySelectedFilter, columns, actions, }: DefaultApiExplorerPageProps) => JSX.Element;
|
|
24
|
+
|
|
25
|
+
/**
|
|
26
|
+
* ApiExplorerPage
|
|
27
|
+
* @public
|
|
28
|
+
*/
|
|
29
|
+
declare const ApiExplorerPage$1: (props: DefaultApiExplorerPageProps) => JSX.Element;
|
|
10
30
|
|
|
11
31
|
declare type Props$5 = {
|
|
12
32
|
/** @deprecated The entity is now grabbed from context instead */
|
|
@@ -85,14 +105,7 @@ declare const apiDocsPlugin: _backstage_core_plugin_api.BackstagePlugin<{
|
|
|
85
105
|
}, {
|
|
86
106
|
createComponent: _backstage_core_plugin_api.ExternalRouteRef<undefined, true>;
|
|
87
107
|
}>;
|
|
88
|
-
declare const ApiExplorerPage: (
|
|
89
|
-
initiallySelectedFilter?: _backstage_plugin_catalog_react.UserListFilterKind | undefined;
|
|
90
|
-
columns?: _backstage_core_components.TableColumn<_backstage_plugin_catalog.CatalogTableRow>[] | undefined;
|
|
91
|
-
actions?: (_material_table_core.Action<_backstage_plugin_catalog.CatalogTableRow> | {
|
|
92
|
-
action: (rowData: _backstage_plugin_catalog.CatalogTableRow) => _material_table_core.Action<_backstage_plugin_catalog.CatalogTableRow>;
|
|
93
|
-
position: string;
|
|
94
|
-
} | ((rowData: _backstage_plugin_catalog.CatalogTableRow) => _material_table_core.Action<_backstage_plugin_catalog.CatalogTableRow>))[] | undefined;
|
|
95
|
-
}) => JSX.Element;
|
|
108
|
+
declare const ApiExplorerPage: (props: DefaultApiExplorerPageProps) => JSX.Element;
|
|
96
109
|
declare const EntityApiDefinitionCard: (_: {
|
|
97
110
|
apiEntity?: ApiEntity | undefined;
|
|
98
111
|
}) => JSX.Element;
|
|
@@ -116,4 +129,4 @@ declare const EntityHasApisCard: ({ variant }: {
|
|
|
116
129
|
variant?: "gridItem" | undefined;
|
|
117
130
|
}) => JSX.Element;
|
|
118
131
|
|
|
119
|
-
export { ApiDefinitionCard, ApiDefinitionWidget, ApiExplorerPage, ApiTypeTitle, AsyncApiDefinitionWidget, AsyncApiDefinitionWidgetProps, ConsumedApisCard, ConsumingComponentsCard, EntityApiDefinitionCard, EntityConsumedApisCard, EntityConsumingComponentsCard, EntityHasApisCard, EntityProvidedApisCard, EntityProvidingComponentsCard, HasApisCard, OpenApiDefinitionWidget, OpenApiDefinitionWidgetProps, PlainApiDefinitionWidget, PlainApiDefinitionWidgetProps, ProvidedApisCard, ProvidingComponentsCard, apiDocsConfigRef, apiDocsPlugin, defaultDefinitionWidgets, apiDocsPlugin as plugin };
|
|
132
|
+
export { ApiDefinitionCard, ApiDefinitionWidget, ApiExplorerPage$1 as ApiExplorerIndexPage, ApiExplorerPage, ApiTypeTitle, AsyncApiDefinitionWidget, AsyncApiDefinitionWidgetProps, ConsumedApisCard, ConsumingComponentsCard, DefaultApiExplorerPage, DefaultApiExplorerPageProps, EntityApiDefinitionCard, EntityConsumedApisCard, EntityConsumingComponentsCard, EntityHasApisCard, EntityProvidedApisCard, EntityProvidingComponentsCard, HasApisCard, OpenApiDefinitionWidget, OpenApiDefinitionWidgetProps, PlainApiDefinitionWidget, PlainApiDefinitionWidgetProps, ProvidedApisCard, ProvidingComponentsCard, apiDocsConfigRef, apiDocsPlugin, defaultDefinitionWidgets, apiDocsPlugin as plugin };
|