@backstage/plugin-catalog 1.5.0 → 1.5.1-next.2
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 +37 -0
- package/dist/esm/{index-7ef647a6.esm.js → index-04edc39b.esm.js} +4 -4
- package/dist/esm/{index-7ef647a6.esm.js.map → index-04edc39b.esm.js.map} +1 -1
- package/dist/esm/index-3763491b.esm.js.map +1 -1
- package/dist/esm/index-390fab14.esm.js.map +1 -1
- package/dist/esm/{index-8f06513a.esm.js → index-3ba9c2bf.esm.js} +4 -4
- package/dist/esm/{index-8f06513a.esm.js.map → index-3ba9c2bf.esm.js.map} +1 -1
- package/dist/esm/index-41ab53b6.esm.js.map +1 -1
- package/dist/esm/index-46417657.esm.js.map +1 -1
- package/dist/esm/index-66fdb6ad.esm.js.map +1 -1
- package/dist/esm/{index-80f70ef8.esm.js → index-764c49a1.esm.js} +2 -2
- package/dist/esm/index-764c49a1.esm.js.map +1 -0
- package/dist/esm/index-acb3cf04.esm.js.map +1 -1
- package/dist/esm/index-b3ad464b.esm.js.map +1 -1
- package/dist/esm/index-d41abbff.esm.js.map +1 -1
- package/dist/esm/{index-c4f1c4b9.esm.js → index-edefe23e.esm.js} +2 -2
- package/dist/esm/index-edefe23e.esm.js.map +1 -0
- package/dist/esm/presets-13b889b9.esm.js.map +1 -1
- package/dist/index.d.ts +5 -3
- package/dist/index.esm.js +1 -1
- package/package.json +17 -19
- package/dist/esm/index-80f70ef8.esm.js.map +0 -1
- package/dist/esm/index-c4f1c4b9.esm.js.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,42 @@
|
|
|
1
1
|
# @backstage/plugin-catalog
|
|
2
2
|
|
|
3
|
+
## 1.5.1-next.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
- @backstage/catalog-client@1.0.5-next.1
|
|
9
|
+
- @backstage/core-components@0.11.1-next.2
|
|
10
|
+
- @backstage/core-plugin-api@1.0.6-next.2
|
|
11
|
+
- @backstage/integration-react@1.1.4-next.1
|
|
12
|
+
- @backstage/plugin-search-react@1.1.0-next.2
|
|
13
|
+
|
|
14
|
+
## 1.5.1-next.1
|
|
15
|
+
|
|
16
|
+
### Patch Changes
|
|
17
|
+
|
|
18
|
+
- 817f3196f6: Updated React Router dependencies to be peer dependencies.
|
|
19
|
+
- d669d89206: Minor API signatures cleanup
|
|
20
|
+
- Updated dependencies
|
|
21
|
+
- @backstage/core-components@0.11.1-next.1
|
|
22
|
+
- @backstage/core-plugin-api@1.0.6-next.1
|
|
23
|
+
- @backstage/plugin-catalog-react@1.1.4-next.1
|
|
24
|
+
- @backstage/plugin-search-react@1.0.2-next.1
|
|
25
|
+
|
|
26
|
+
## 1.5.1-next.0
|
|
27
|
+
|
|
28
|
+
### Patch Changes
|
|
29
|
+
|
|
30
|
+
- Updated dependencies
|
|
31
|
+
- @backstage/core-plugin-api@1.0.6-next.0
|
|
32
|
+
- @backstage/core-components@0.11.1-next.0
|
|
33
|
+
- @backstage/catalog-client@1.0.5-next.0
|
|
34
|
+
- @backstage/integration-react@1.1.4-next.0
|
|
35
|
+
- @backstage/plugin-catalog-react@1.1.4-next.0
|
|
36
|
+
- @backstage/plugin-search-react@1.0.2-next.0
|
|
37
|
+
- @backstage/plugin-catalog-common@1.0.6-next.0
|
|
38
|
+
- @backstage/plugin-search-common@1.0.1-next.0
|
|
39
|
+
|
|
3
40
|
## 1.5.0
|
|
4
41
|
|
|
5
42
|
### Minor Changes
|
|
@@ -1296,7 +1296,7 @@ const catalogPlugin = createPlugin({
|
|
|
1296
1296
|
const CatalogIndexPage = catalogPlugin.provide(
|
|
1297
1297
|
createRoutableExtension({
|
|
1298
1298
|
name: "CatalogIndexPage",
|
|
1299
|
-
component: () => import('./index-
|
|
1299
|
+
component: () => import('./index-764c49a1.esm.js').then((m) => m.CatalogPage),
|
|
1300
1300
|
mountPoint: rootRouteRef
|
|
1301
1301
|
})
|
|
1302
1302
|
);
|
|
@@ -1311,7 +1311,7 @@ const EntityAboutCard = catalogPlugin.provide(
|
|
|
1311
1311
|
createComponentExtension({
|
|
1312
1312
|
name: "EntityAboutCard",
|
|
1313
1313
|
component: {
|
|
1314
|
-
lazy: () => import('./index-
|
|
1314
|
+
lazy: () => import('./index-edefe23e.esm.js').then((m) => m.AboutCard)
|
|
1315
1315
|
}
|
|
1316
1316
|
})
|
|
1317
1317
|
);
|
|
@@ -1319,7 +1319,7 @@ const EntityLinksCard = catalogPlugin.provide(
|
|
|
1319
1319
|
createComponentExtension({
|
|
1320
1320
|
name: "EntityLinksCard",
|
|
1321
1321
|
component: {
|
|
1322
|
-
lazy: () => import('./index-
|
|
1322
|
+
lazy: () => import('./index-3ba9c2bf.esm.js').then((m) => m.EntityLinksCard)
|
|
1323
1323
|
}
|
|
1324
1324
|
})
|
|
1325
1325
|
);
|
|
@@ -1399,4 +1399,4 @@ const RelatedEntitiesCard = catalogPlugin.provide(
|
|
|
1399
1399
|
);
|
|
1400
1400
|
|
|
1401
1401
|
export { AboutCard as A, EntityListContainer as B, CatalogKindHeader as C, DefaultStarredEntitiesApi as D, EntityAboutCard as E, FilteredEntityLayout as F, LinksGridList as L, RelatedEntitiesCard as R, CatalogTable as a, AboutContent as b, createComponentRouteRef as c, AboutField as d, CatalogEntityPage as e, CatalogIndexPage as f, catalogPlugin as g, EntityDependencyOfComponentsCard as h, EntityDependsOnComponentsCard as i, EntityDependsOnResourcesCard as j, EntityHasComponentsCard as k, EntityHasResourcesCard as l, EntityHasSubcomponentsCard as m, EntityHasSystemsCard as n, EntityLinksCard as o, CatalogSearchResultListItem as p, EntityLayout as q, EntityOrphanWarning as r, isOrphan as s, EntityProcessingErrorsPanel as t, hasCatalogProcessingErrors as u, EntitySwitch as v, isKind as w, isNamespace as x, isComponentType as y, FilterContainer as z };
|
|
1402
|
-
//# sourceMappingURL=index-
|
|
1402
|
+
//# sourceMappingURL=index-04edc39b.esm.js.map
|