@backstage/plugin-techdocs 0.0.0-nightly-20219132255 → 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,16 +1,17 @@
1
1
  # @backstage/plugin-techdocs
2
2
 
3
- ## 0.0.0-nightly-20219132255
3
+ ## 0.0.0-nightly-202191422038
4
4
 
5
5
  ### Patch Changes
6
6
 
7
+ - 76fef740fe: Refactored `<Reader />` component internals to support future extensibility.
7
8
  - Updated dependencies
8
- - @backstage/core-components@0.0.0-nightly-20219132255
9
- - @backstage/theme@0.0.0-nightly-20219132255
10
- - @backstage/plugin-catalog@0.0.0-nightly-20219132255
11
- - @backstage/plugin-search@0.0.0-nightly-20219132255
12
- - @backstage/plugin-catalog-react@0.0.0-nightly-20219132255
13
- - @backstage/integration-react@0.0.0-nightly-20219132255
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
14
15
 
15
16
  ## 0.12.1
16
17
 
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;