@obosbbl/grunnmuren-react 1.12.4 → 1.13.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.
@@ -1,9 +1,9 @@
1
1
  import React from 'react';
2
- export type ButtonColor = 'standard' | 'white' | 'light-green';
2
+ export type ButtonColor = 'standard' | 'white' | 'light-green' | 'mint';
3
3
  export interface ButtonProps extends React.ComponentPropsWithoutRef<'button'> {
4
4
  children: React.ReactNode;
5
5
  className?: string;
6
- color?: 'standard' | 'white' | 'light-green';
6
+ color?: 'standard' | 'white' | 'light-green' | 'mint';
7
7
  disabled?: boolean;
8
8
  href?: string;
9
9
  /** Renders the button in a loading state */
@@ -1,5 +1,5 @@
1
1
  /// <reference types="react" />
2
- export type ChipColor = 'blue-light' | 'green-light' | 'red-light' | 'orange-light';
2
+ export type ChipColor = 'sky' | 'mint' | 'red-light' | 'orange-light' | 'green-light' | 'blue-light';
3
3
  export interface ChipProps {
4
4
  icon?: React.ReactNode;
5
5
  color?: ChipColor;