@20minutes/hela 2.1.0 → 2.1.1
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/index.es.js +214 -193
- package/dist/index.umd.js +1 -1
- package/dist/js/scripts.es.js +298 -330
- package/dist/js/scripts.umd.js +3 -3
- package/dist/scss/abstracts/variables/_token-variables.scss +1 -1
- package/dist/scss/abstracts/variables/_variables.scss +1 -1
- package/dist/src/components/molecules/ReadAlsoBanner/ReadAlsoBanner.d.ts +1 -1
- package/dist/src/components/molecules/ReadAlsoBanner/ReadAlsoBanner.stories.d.ts +9 -2
- package/dist/src/components/organisms/Header/Header.d.ts +1 -0
- package/dist/src/components/organisms/Header/HeaderMobile.d.ts +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/dist/src/assets/scripts/scrollDirectionDetection.d.ts +0 -2
|
@@ -1,12 +1,19 @@
|
|
|
1
1
|
import { default as React } from 'react';
|
|
2
|
-
import { StoryObj } from '@storybook/react';
|
|
2
|
+
import { StoryContext, StoryFn, StoryObj } from '@storybook/react';
|
|
3
3
|
declare const meta: {
|
|
4
4
|
title: string;
|
|
5
5
|
component: React.FC<import('./ReadAlsoBanner').ReadAlsoBannerProps>;
|
|
6
6
|
args: {
|
|
7
|
-
willNotReduceAtScroll: false;
|
|
8
7
|
limitTop: number;
|
|
8
|
+
isFixedBelowHeader: true;
|
|
9
9
|
};
|
|
10
|
+
parameters: {
|
|
11
|
+
layout: string;
|
|
12
|
+
viewport: {
|
|
13
|
+
defaultViewport: string;
|
|
14
|
+
};
|
|
15
|
+
};
|
|
16
|
+
decorators: ((Story: StoryFn, params: StoryContext) => React.JSX.Element)[];
|
|
10
17
|
};
|
|
11
18
|
export default meta;
|
|
12
19
|
type Story = StoryObj<typeof meta>;
|
|
@@ -1,3 +1,3 @@
|
|
|
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'>>;
|
|
3
|
+
export declare const HeaderMobile: React.FC<Pick<HeaderProps, 'logohref' | 'logoIsHeading' | 'themeColor' | 'isHidden'>>;
|