@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.
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Tue, 24 Jun 2025 13:25:53 GMT
3
+ * Generated on Wed, 25 Jun 2025 15:13:22 GMT
4
4
  */
5
5
 
6
6
  $token-variables: (
@@ -1,7 +1,7 @@
1
1
 
2
2
  /**
3
3
  * Do not edit directly
4
- * Generated on Tue, 24 Jun 2025 13:25:53 GMT
4
+ * Generated on Wed, 25 Jun 2025 15:13:22 GMT
5
5
  */
6
6
 
7
7
  $jeux: #4742ff !default;
@@ -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: React.FC<import('./SocialBar').SocialBarProps>;
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;