@20minutes/hela 0.1.69 → 0.1.71

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.
@@ -0,0 +1,2 @@
1
+ declare const listenerOfScrollDirection: (readAlsoBannerElement?: null | HTMLDivElement) => void;
2
+ export { listenerOfScrollDirection };
@@ -0,0 +1,9 @@
1
+ import * as React from 'react';
2
+ import { CardSmallProps } from '../../../components';
3
+ import { LayoutType } from '../../../types';
4
+ export interface ReadAlsoBannerProps {
5
+ layout: LayoutType;
6
+ articles: CardSmallProps[];
7
+ willNotReduceAtScroll?: boolean;
8
+ }
9
+ export declare const ReadAlsoBanner: React.FC<ReadAlsoBannerProps>;
@@ -0,0 +1 @@
1
+ export * from './ReadAlsoBanner';
@@ -15,6 +15,7 @@ export * from './MostReadArticles';
15
15
  export * from './Newsletter';
16
16
  export * from './OverviewBar';
17
17
  export * from './PartnerCards';
18
+ export * from './ReadAlsoBanner';
18
19
  export * from './RubricCards';
19
20
  export * from './SearchForm';
20
21
  export * from './Signature';