@conboai/storybook.components 0.2.37 → 0.2.39

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.
@@ -27,6 +27,10 @@ interface Icons {
27
27
  save: Icon;
28
28
  edit: Icon;
29
29
  delete: Icon;
30
+ clusters: Icon;
31
+ sites: Icon;
32
+ regions: Icon;
33
+ cameras: Icon;
30
34
  }
31
35
  interface Icon {
32
36
  paths: string[];
@@ -5,6 +5,8 @@ interface ListItemLinkProps {
5
5
  primary: string;
6
6
  to: string;
7
7
  isActive?: boolean;
8
+ themeColor?: string;
9
+ themeActive?: string;
8
10
  }
9
- declare function ListItemLink({ icon, primary, to, isActive }: ListItemLinkProps): React.JSX.Element;
11
+ declare function ListItemLink({ icon, primary, to, isActive, themeColor, themeActive }: ListItemLinkProps): React.JSX.Element;
10
12
  export default ListItemLink;
@@ -9,6 +9,8 @@ export interface IItem {
9
9
  }
10
10
  export interface IVerticalNavigationProps {
11
11
  list: IItem[];
12
+ themeColor?: string;
13
+ themeActive?: string;
12
14
  }
13
- declare function VerticalNavigation({ list }: IVerticalNavigationProps): React.JSX.Element;
15
+ declare function VerticalNavigation({ list, themeColor, themeActive }: IVerticalNavigationProps): React.JSX.Element;
14
16
  export default VerticalNavigation;