@livechat/design-system-react-components 2.0.0-alpha.3 → 2.0.0-alpha.4

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.
@@ -33,14 +33,13 @@ export interface IActionBarOption {
33
33
  key: string;
34
34
  element: React.ReactElement;
35
35
  label: string;
36
+ withDivider?: boolean;
36
37
  showTooltip?: boolean;
37
38
  hideInMenu?: boolean;
38
39
  onClick: () => void;
39
40
  }
40
41
  export interface IActionBarItem {
41
- id: string;
42
42
  option: IActionBarOption;
43
- isHidden: boolean;
44
43
  isActive?: boolean;
45
44
  vertical?: boolean;
46
45
  }
@@ -58,5 +58,5 @@ export declare const Button: React.ForwardRefExoticComponent<{
58
58
  /**
59
59
  * Specify the place to render element given in `icon` prop
60
60
  */
61
- iconPosition?: "left" | "right" | undefined;
61
+ iconPosition?: "right" | "left" | undefined;
62
62
  } & React.ButtonHTMLAttributes<HTMLButtonElement> & React.AnchorHTMLAttributes<HTMLAnchorElement> & React.RefAttributes<HTMLButtonElement & HTMLAnchorElement>>;