@20minutes/hela 0.1.70 → 0.1.72

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.
@@ -1,6 +1,6 @@
1
1
  import React from 'react';
2
2
  import { FlexProps } from '../../../components';
3
3
  export interface SkeletonProps extends FlexProps {
4
- variant: 'button' | 'icon' | 'connexion' | 'commentButton';
4
+ variant: 'button' | 'icon' | 'commentButton';
5
5
  }
6
6
  export declare const Skeleton: React.FC<SkeletonProps>;
@@ -1,6 +1,7 @@
1
1
  import React from 'react';
2
+ import { FlexProps } from '../../../components';
2
3
  import { ColorSystemProps } from '../../../types';
3
- export interface HeaderMiniProps {
4
+ export interface HeaderMiniProps extends FlexProps {
4
5
  headerLinks: {
5
6
  name: string;
6
7
  href: string;
@@ -9,5 +10,6 @@ export interface HeaderMiniProps {
9
10
  isArticlePage?: boolean;
10
11
  shortTitle?: string;
11
12
  headline?: string;
13
+ isHidden?: boolean;
12
14
  }
13
15
  export declare const HeaderMini: React.FC<HeaderMiniProps>;