@20minutes/hela 2.21.6 → 2.21.8
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/dist/components/molecules/Card/Templates/CardNewsletter/CardNewletter.d.ts +1 -1
- package/dist/components/molecules/Header/HeaderMini/HeaderMini.d.ts +1 -1
- package/dist/components/molecules/UserPanel/UserPanel.d.ts +2 -1
- package/dist/components/organisms/Header/Header.d.ts +1 -1
- package/dist/constants/tokenVariables.d.ts +1 -1
- package/dist/index.es.js +560 -563
- package/dist/index.umd.cjs +1 -1
- package/dist/scss/abstracts/variables/_token-variables.scss +1 -1
- package/package.json +1 -1
|
@@ -6,6 +6,6 @@ export interface HeaderMiniProps extends Pick<HeaderProps, 'logoHref' | 'headerL
|
|
|
6
6
|
shortTitle?: string;
|
|
7
7
|
isHidden?: boolean;
|
|
8
8
|
themeColor?: ThemeColorType | 'grey-300';
|
|
9
|
-
logoName?: 'logo' | 'logo-
|
|
9
|
+
logoName?: 'logo' | 'logo-instant' | 'logo-tv' | 'logo-games';
|
|
10
10
|
}
|
|
11
11
|
export declare const HeaderMini: React.FC<HeaderMiniProps>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { default as React } from 'react';
|
|
2
|
-
import { LinkProps, StreakBlockProps } from '../..';
|
|
2
|
+
import { AlertProps, LinkProps, StreakBlockProps } from '../..';
|
|
3
3
|
export interface UserPanelProps {
|
|
4
4
|
children?: React.ReactNode;
|
|
5
5
|
navigationLinks: LinkProps[];
|
|
@@ -11,5 +11,6 @@ export interface UserPanelProps {
|
|
|
11
11
|
};
|
|
12
12
|
streak?: StreakBlockProps;
|
|
13
13
|
darkmodeOption?: boolean;
|
|
14
|
+
warningMessage?: Pick<AlertProps, 'title' | 'description' | 'children'>;
|
|
14
15
|
}
|
|
15
16
|
export declare const UserPanel: React.FC<UserPanelProps>;
|
|
@@ -12,7 +12,7 @@ export interface HeaderProps {
|
|
|
12
12
|
layout?: LayoutType;
|
|
13
13
|
themeColor?: ThemeColorType;
|
|
14
14
|
isHidden?: boolean;
|
|
15
|
-
logoName?: 'logo' | 'logo-
|
|
15
|
+
logoName?: 'logo' | 'logo-instant' | 'logo-tv' | 'logo-games';
|
|
16
16
|
showOpenButton?: boolean;
|
|
17
17
|
isCurrentPageHome?: boolean;
|
|
18
18
|
backhref?: string;
|