@20minutes/hela 2.16.9 → 2.16.10

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.
@@ -0,0 +1,7 @@
1
+ /**
2
+ * Images variables
3
+ */
4
+
5
+ @use '../functions/em' as *;
6
+
7
+ $image-border-radius: rem(4px);
@@ -2,6 +2,7 @@
2
2
  @forward 'breakpoints';
3
3
  @forward 'common';
4
4
  @forward 'grid';
5
+ @forward 'images';
5
6
  @forward 'layout';
6
7
  @forward 'old-spacings';
7
8
  @forward 'other-colors';
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Fri, 27 Feb 2026 13:27:55 GMT
3
+ * Generated on Mon, 02 Mar 2026 09:32:05 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 Fri, 27 Feb 2026 13:27:55 GMT
4
+ * Generated on Mon, 02 Mar 2026 09:32:05 GMT
5
5
  */
6
6
 
7
7
  $jeux: #4742ff !default;
@@ -1,6 +1,7 @@
1
1
  import { default as React } from 'react';
2
2
  import { ButtonProps, IconProps } from '../..';
3
3
  export interface AlertProps {
4
+ children?: React.ReactNode;
4
5
  variant?: 'success' | 'warning' | 'error' | 'info';
5
6
  title: string;
6
7
  description?: string | React.ReactNode;
@@ -19,3 +19,4 @@ export declare const ErrorFill: Story;
19
19
  export declare const WarningFill: Story;
20
20
  export declare const SuccessWithIcon: Story;
21
21
  export declare const SuccessWithLink: Story;
22
+ export declare const SuccessWithChildren: Story;