gantri-components 1.144.9 → 1.145.0

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.
@@ -4,7 +4,7 @@ import { BaseProps } from '../box/box.types';
4
4
  import { TextVariant } from '../typography/typography.types';
5
5
  import { ResolutionAwareProp } from '../../types/resolution-aware-prop.type';
6
6
  export declare type ButtonVariant = 'default' | 'primary' | 'secondary' | 'action';
7
- export declare type ButtonColor = 'primary' | 'primaryAlt' | 'grey' | 'greyLight' | 'black' | 'alert' | 'secondary' | 'secondaryAlt' | 'blue' | 'gold' | 'green' | 'yellow' | 'white' | 'pink';
7
+ export declare type ButtonColor = 'primary' | 'primaryAlt' | 'black' | 'alert' | 'secondary' | 'secondaryAlt' | 'blue' | 'green' | 'contrast';
8
8
  export declare type ButtonWidth = 'sm' | 'md' | 'lg' | string;
9
9
  export interface ButtonProps extends BaseProps {
10
10
  alignSelf?: ResolutionAwareProp<Property.AlignSelf>;
@@ -5,7 +5,7 @@ import { ResolutionAwareProp } from '../../types/resolution-aware-prop.type';
5
5
  import { Color } from '../../styles';
6
6
  import { Optional } from '../../types/common';
7
7
  export declare type AspectRatio = 'unset' | string | number;
8
- export declare type ImageDimension = `${string}px` | `${string}rem` | number | 'unset';
8
+ export declare type ImageDimension = string | number | 'unset';
9
9
  export declare type Dpr = number | 'auto';
10
10
  export declare type ImageTransformationsVariant = 'f' | 'h' | 'q' | 'ffh' | 'hff' | 'hhf';
11
11
  export interface ImageProps {