@20minutes/hela 0.1.75 → 0.1.76

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.
@@ -2,6 +2,7 @@ import React from 'react';
2
2
  import { FlexProps } from '../../../components';
3
3
  import { ColorSystemProps } from '../../../types';
4
4
  export interface HeaderMiniProps extends FlexProps {
5
+ logohref: string;
5
6
  headerLinks: {
6
7
  name: string;
7
8
  href: string;
@@ -11,6 +11,6 @@ export interface MenuProps {
11
11
  }[];
12
12
  tagsActu: TagProps[];
13
13
  layout: LayoutType;
14
- searchFormUrl?: string;
14
+ searchformurl?: string;
15
15
  }
16
16
  export declare const Menu: React.FC<MenuProps>;
@@ -1,9 +1,11 @@
1
1
  import React from 'react';
2
2
  import { CardExtraSmallProps, CardMediumProps } from '../../../components';
3
+ interface PartnerColumnProps {
4
+ label: string;
5
+ articles: CardMediumProps[] | CardExtraSmallProps[];
6
+ }
3
7
  export interface PartnerCardsProps {
4
- columns: {
5
- label: string;
6
- articles: CardMediumProps[] | CardExtraSmallProps[];
7
- }[];
8
+ columns: PartnerColumnProps[];
8
9
  }
9
10
  export declare const PartnerCards: React.FC<PartnerCardsProps>;
11
+ export {};
@@ -4,7 +4,7 @@ import { FooterSocialIconsProps } from './FooterSocialIcons';
4
4
  import { FooterLinksProps } from './FooterLinks';
5
5
  export interface FooterProps extends Pick<FooterLinksProps, 'footerBar'>, FooterSocialIconsProps {
6
6
  layout?: LayoutType;
7
- logoLink: string;
7
+ logohref: string;
8
8
  categories: {
9
9
  name: string;
10
10
  links: {
@@ -2,8 +2,8 @@ import React from 'react';
2
2
  import { ColorType } from '../../../types';
3
3
  import { SubMenuProps } from '../../../components';
4
4
  export interface HeaderDesktopProps {
5
- logoHref: string;
6
- searchFormUrl: string;
5
+ logohref: string;
6
+ searchformurl: string;
7
7
  headerLinks: {
8
8
  name: string;
9
9
  href: string;
@@ -1,5 +1,5 @@
1
1
  import React from 'react';
2
2
  export interface HeaderMobileProps {
3
- logoHref: string;
3
+ logohref: string;
4
4
  }
5
5
  export declare const HeaderMobile: React.FC<HeaderMobileProps>;