@20minutes/hela 2.22.3 → 2.22.5
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/assets/scripts/ranking.d.ts +1 -0
- package/dist/components/molecules/Header/HeaderPage/HeaderPage.d.ts +1 -0
- package/dist/components/organisms/Header/HeaderMobile.d.ts +1 -1
- package/dist/index.es.js +930 -966
- package/dist/index.umd.cjs +1 -1
- package/dist/js/scripts.es.js +129 -124
- package/dist/js/scripts.umd.cjs +1 -1
- package/dist/scss/abstracts/variables/_token-variables.scss +1 -1
- package/dist/style.css +1 -1
- package/package.json +14 -14
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const initRankingScroll: () => void;
|
|
@@ -16,6 +16,7 @@ export interface HeaderPageProps extends BoxProps {
|
|
|
16
16
|
countdownProps?: CountdownProps;
|
|
17
17
|
labelProps?: LabelProps;
|
|
18
18
|
hasPrintButton?: boolean;
|
|
19
|
+
hasRankingButton?: boolean;
|
|
19
20
|
variant?: 'default' | 'blue-grey';
|
|
20
21
|
}
|
|
21
22
|
export declare const HeaderPage: React.FC<HeaderPageProps>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { default as React } from 'react';
|
|
2
2
|
import { HeaderProps } from '../..';
|
|
3
|
-
export declare const HeaderMobile: React.FC<Pick<HeaderProps, 'logoHref' | 'logoIsHeading' | 'themeColor' | 'isHidden' | 'logoName' | 'showOpenButton'
|
|
3
|
+
export declare const HeaderMobile: React.FC<Pick<HeaderProps, 'logoHref' | 'logoIsHeading' | 'themeColor' | 'isHidden' | 'logoName' | 'showOpenButton'> & {
|
|
4
4
|
backhref?: string;
|
|
5
5
|
}>;
|