@20minutes/hela 2.22.13 → 2.23.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.
@@ -1,7 +1,7 @@
1
1
  import { IconProps } from '../..';
2
2
  import { As, AsProps, SpacingSystemProps } from '../../../types';
3
3
  import { ButtonProps } from '../Button/Button';
4
- export declare const iconButtonColor: readonly ["primary", "secondary", "tertiary", "quaternary", "translucent", "dark", "white", "blue-ice", "blue-dark", "sport"];
4
+ export declare const iconButtonColor: readonly ["primary", "secondary", "tertiary", "quaternary", "translucent", "dark", "white", "blue-ice", "green", "blue-dark", "sport"];
5
5
  export type IconButtonColorType = (typeof iconButtonColor)[number];
6
6
  export interface IconButtonOptions {
7
7
  iconProps: IconProps;
@@ -1,6 +1,6 @@
1
1
  import { default as React } from 'react';
2
2
  export interface RadioButtonProps extends React.InputHTMLAttributes<HTMLInputElement> {
3
3
  label?: string;
4
- variant?: 'warning';
4
+ variant?: 'warning' | 'green';
5
5
  }
6
6
  export declare const RadioButton: React.FC<RadioButtonProps>;
@@ -0,0 +1,7 @@
1
+ import { default as React } from 'react';
2
+ import { SpacingSystemProps } from '../../../../../types';
3
+ export interface CardNameProps extends SpacingSystemProps {
4
+ title: string;
5
+ description: string;
6
+ }
7
+ export declare const CardName: React.FC<CardNameProps>;
@@ -0,0 +1 @@
1
+ export * from './CardName';
@@ -5,6 +5,7 @@ export * from './CardLarge';
5
5
  export * from './CardMedium';
6
6
  export * from './CardMost';
7
7
  export * from './CardMovie';
8
+ export * from './CardName';
8
9
  export * from './CardNewsletter';
9
10
  export * from './CardNotification';
10
11
  export * from './CardOverview';
@@ -1,10 +1,17 @@
1
1
  import { default as React } from 'react';
2
2
  import { FlexProps, IconProps, TextProps } from '../..';
3
- import { MarginSystemProps } from '../../../types';
3
+ import { ColorType, MarginSystemProps } from '../../../types';
4
4
  export interface TilesProps extends Pick<FlexProps, 'className'>, MarginSystemProps {
5
- href: string;
6
5
  iconProps: IconProps;
7
6
  children: TextProps['children'];
7
+ href?: string;
8
8
  hasDot?: boolean;
9
+ inputProps?: React.InputHTMLAttributes<HTMLInputElement> & {
10
+ bg?: ColorType;
11
+ selectedBg?: ColorType;
12
+ color?: ColorType;
13
+ selectedColor?: ColorType;
14
+ };
15
+ isSquare?: boolean;
9
16
  }
10
17
  export declare const Tiles: React.FC<TilesProps>;
@@ -1,2 +1,2 @@
1
- export declare const buttonColor: readonly ["primary", "secondary", "tertiary", "quaternary", "translucent", "dark", "white", "blue-ice"];
1
+ export declare const buttonColor: readonly ["primary", "secondary", "tertiary", "quaternary", "translucent", "dark", "white", "blue-ice", "green"];
2
2
  export declare const buttonVariant: readonly ["ghost", "outlined", "link", "ghost-with-icon-bg", "close"];