@backstage/plugin-techdocs 0.0.0-nightly-20219132255 → 0.0.0-nightly-202191822546

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,35 @@
1
1
  # @backstage/plugin-techdocs
2
2
 
3
- ## 0.0.0-nightly-20219132255
3
+ ## 0.0.0-nightly-202191822546
4
4
 
5
5
  ### Patch Changes
6
6
 
7
+ - cdf8ca6111: Only replace the shadow dom if the content is changed to avoid a flickering UI.
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/catalog-model@0.0.0-nightly-202191822546
10
+ - @backstage/core-components@0.0.0-nightly-202191822546
11
+ - @backstage/core-plugin-api@0.0.0-nightly-202191822546
12
+ - @backstage/errors@0.0.0-nightly-202191822546
13
+ - @backstage/integration@0.0.0-nightly-202191822546
14
+ - @backstage/integration-react@0.0.0-nightly-202191822546
15
+ - @backstage/theme@0.0.0-nightly-202191822546
16
+ - @backstage/plugin-catalog@0.0.0-nightly-202191822546
17
+ - @backstage/plugin-catalog-react@0.0.0-nightly-202191822546
18
+ - @backstage/plugin-search@0.0.0-nightly-202191822546
19
+
20
+ ## 0.12.2
21
+
22
+ ### Patch Changes
23
+
24
+ - 76fef740fe: Refactored `<Reader />` component internals to support future extensibility.
25
+ - Updated dependencies
26
+ - @backstage/plugin-catalog-react@0.6.0
27
+ - @backstage/plugin-catalog@0.7.1
28
+ - @backstage/integration@0.6.8
29
+ - @backstage/core-components@0.7.0
30
+ - @backstage/theme@0.2.11
31
+ - @backstage/plugin-search@0.4.15
32
+ - @backstage/integration-react@0.1.12
14
33
 
15
34
  ## 0.12.1
16
35
 
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;