@20minutes/hela 2.8.21 → 2.8.23
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 +585 -573
- package/dist/index.umd.js +1 -1
- package/dist/scss/abstracts/variables/_token-variables.scss +1 -1
- package/dist/scss/abstracts/variables/_variables.scss +1 -1
- package/dist/src/components/molecules/IconItem/IconItem.d.ts +1 -1
- package/dist/src/components/molecules/SocialBar/SocialBar.d.ts +1 -1
- package/dist/src/components/molecules/SocialBar/SocialBar.stories.d.ts +2 -2
- package/dist/style.css +1 -1
- package/package.json +1 -1
|
@@ -2,7 +2,7 @@ import { default as React } from 'react';
|
|
|
2
2
|
import { FlexProps, IconProps } from '../..';
|
|
3
3
|
import { ColorType, LayoutType, ThemeColorType } from '../../../types';
|
|
4
4
|
export interface IconItemProps extends FlexProps {
|
|
5
|
-
variant: 'primary' | 'secondary' | 'small-with-background';
|
|
5
|
+
variant: 'primary' | 'secondary' | 'small-with-background' | 'blue-grey';
|
|
6
6
|
iconProps: IconProps;
|
|
7
7
|
count?: number;
|
|
8
8
|
countColor?: ColorType;
|
|
@@ -13,6 +13,6 @@ export interface SocialBarProps extends FlexProps {
|
|
|
13
13
|
commentAnchor?: string;
|
|
14
14
|
className?: string;
|
|
15
15
|
disableComment?: boolean;
|
|
16
|
-
blockVariant?: 'light' | 'dark';
|
|
16
|
+
blockVariant?: 'light' | 'dark' | 'blue-grey';
|
|
17
17
|
}
|
|
18
18
|
export declare const SocialBar: React.FC<SocialBarProps>;
|
|
@@ -1,8 +1,7 @@
|
|
|
1
|
-
import { default as React } from 'react';
|
|
2
1
|
import { StoryObj } from '@storybook/react-vite';
|
|
3
2
|
declare const meta: {
|
|
4
3
|
title: string;
|
|
5
|
-
component:
|
|
4
|
+
component: import('react').FC<import('./SocialBar').SocialBarProps>;
|
|
6
5
|
args: {
|
|
7
6
|
commentCount: number;
|
|
8
7
|
shareCount: number;
|
|
@@ -44,3 +43,4 @@ export declare const VerticalWithBookmark: Story;
|
|
|
44
43
|
export declare const ForCards: Story;
|
|
45
44
|
export declare const ForCardsWithoutComment: Story;
|
|
46
45
|
export declare const ForCardsWithDarkBlockVariant: Story;
|
|
46
|
+
export declare const ForCardsWithBlueGreyBlockVariant: Story;
|