@foris/avocado-suite 1.2.0 → 1.2.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.
@@ -7,6 +7,8 @@ export interface ButtonProps extends React.DetailedHTMLProps<React.ButtonHTMLAtt
7
7
  children: React.ReactNode | string;
8
8
  /** Overwrite className */
9
9
  className?: string;
10
+ /** Force light mode styles even in dark mode */
11
+ forceLightMode?: boolean;
10
12
  /** Show icon on the left */
11
13
  leftIcon?: IconTypes;
12
14
  /** Loading state */
@@ -8,6 +8,8 @@ interface MenuProps {
8
8
  closeOnClick?: boolean;
9
9
  /** Control if you want to close the list after clicking one of the options or not */
10
10
  disabled?: boolean;
11
+ /** Force light mode styles even in dark mode */
12
+ forceLightMode?: boolean;
11
13
  /** List of the items to render when the menu is open */
12
14
  items: MenuItem[];
13
15
  /** From where to start to render the list */
@@ -6,6 +6,8 @@ export interface RoundButtonProps extends Partial<React.DetailedHTMLProps<React.
6
6
  className?: string;
7
7
  /** Disabled state */
8
8
  disabled?: boolean;
9
+ /** Force light mode styles even in dark mode */
10
+ forceLightMode?: boolean;
9
11
  /** Icon name */
10
12
  icon: IconTypes;
11
13
  /** Loading state */