@backstage/plugin-techdocs 0.0.0-nightly-20219622210 → 0.0.0-nightly-202191422038

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,31 @@
1
1
  # @backstage/plugin-techdocs
2
2
 
3
- ## 0.0.0-nightly-20219622210
3
+ ## 0.0.0-nightly-202191422038
4
+
5
+ ### Patch Changes
6
+
7
+ - 76fef740fe: Refactored `<Reader />` component internals to support future extensibility.
8
+ - Updated dependencies
9
+ - @backstage/core-components@0.0.0-nightly-202191422038
10
+ - @backstage/theme@0.0.0-nightly-202191422038
11
+ - @backstage/plugin-catalog@0.0.0-nightly-202191422038
12
+ - @backstage/plugin-search@0.0.0-nightly-202191422038
13
+ - @backstage/plugin-catalog-react@0.0.0-nightly-202191422038
14
+ - @backstage/integration-react@0.0.0-nightly-202191422038
15
+
16
+ ## 0.12.1
4
17
 
5
18
  ### Patch Changes
6
19
 
7
20
  - 81a41ec249: Added a `name` key to all extensions in order to improve Analytics API metadata.
8
21
  - Updated dependencies
9
- - @backstage/core-components@0.0.0-nightly-20219622210
10
- - @backstage/core-plugin-api@0.0.0-nightly-20219622210
11
- - @backstage/plugin-catalog@0.0.0-nightly-20219622210
12
- - @backstage/plugin-catalog-react@0.0.0-nightly-20219622210
13
- - @backstage/catalog-model@0.0.0-nightly-20219622210
14
- - @backstage/integration@0.0.0-nightly-20219622210
15
- - @backstage/plugin-search@0.0.0-nightly-20219622210
22
+ - @backstage/core-components@0.6.1
23
+ - @backstage/core-plugin-api@0.1.10
24
+ - @backstage/plugin-catalog@0.7.0
25
+ - @backstage/plugin-catalog-react@0.5.2
26
+ - @backstage/catalog-model@0.9.4
27
+ - @backstage/integration@0.6.7
28
+ - @backstage/plugin-search@0.4.14
16
29
 
17
30
  ## 0.12.0
18
31
 
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;