@backstage/plugin-techdocs 0.12.1 → 0.12.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 +14 -0
- package/dist/index.d.ts +2 -2
- package/dist/index.esm.js +338 -289
- package/dist/index.esm.js.map +1 -1
- package/package.json +13 -13
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @backstage/plugin-techdocs
|
|
2
2
|
|
|
3
|
+
## 0.12.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 76fef740fe: Refactored `<Reader />` component internals to support future extensibility.
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @backstage/plugin-catalog-react@0.6.0
|
|
10
|
+
- @backstage/plugin-catalog@0.7.1
|
|
11
|
+
- @backstage/integration@0.6.8
|
|
12
|
+
- @backstage/core-components@0.7.0
|
|
13
|
+
- @backstage/theme@0.2.11
|
|
14
|
+
- @backstage/plugin-search@0.4.15
|
|
15
|
+
- @backstage/integration-react@0.1.12
|
|
16
|
+
|
|
3
17
|
## 0.12.1
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
package/dist/index.d.ts
CHANGED
|
@@ -245,10 +245,10 @@ declare const TechDocsReaderPage: ({ children }: TechDocsPageProps) => JSX.Eleme
|
|
|
245
245
|
|
|
246
246
|
declare type Props$1 = {
|
|
247
247
|
entityRef: EntityName;
|
|
248
|
-
onReady?: () => void;
|
|
249
248
|
withSearch?: boolean;
|
|
249
|
+
onReady?: () => void;
|
|
250
250
|
};
|
|
251
|
-
declare const Reader: ({ entityRef, onReady, withSearch }: Props$1) => JSX.Element;
|
|
251
|
+
declare const Reader: ({ entityRef, onReady, withSearch, }: Props$1) => JSX.Element;
|
|
252
252
|
|
|
253
253
|
declare type TechDocsPageHeaderProps = {
|
|
254
254
|
entityRef: EntityName;
|