@zealicsolutions/web-ui 0.4.93 → 0.4.95

Sign up to get free protection for your applications and to get access to all the features.
@@ -3,8 +3,9 @@ import { MenuItemsProps } from '../MenuItems/MenuItems';
3
3
  export declare type MenuNavigationProps<T> = {
4
4
  menuConfig: MenuItemsProps<T>;
5
5
  customIconType?: IconNames;
6
+ menuIconColor?: string;
6
7
  };
7
- export declare const MenuNavigation: <T extends string | number>({ menuConfig, customIconType, }: MenuNavigationProps<T>) => JSX.Element;
8
+ export declare const MenuNavigation: <T extends string | number>({ menuConfig, customIconType, menuIconColor, }: MenuNavigationProps<T>) => JSX.Element;
8
9
  export declare const CaretIconWrapper: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {
9
10
  isOpen: boolean;
10
11
  }, never>;
@@ -3,7 +3,7 @@ import { MenuNavigation as MenuNavigationComponent } from 'molecules/MenuNavigat
3
3
  import 'rc-dropdown/assets/index.css';
4
4
  declare const _default: {
5
5
  title: string;
6
- component: <T extends string | number>({ menuConfig, customIconType, }: import("molecules/MenuNavigation/MenuNavigation").MenuNavigationProps<T>) => JSX.Element;
6
+ component: <T extends string | number>({ menuConfig, customIconType, menuIconColor, }: import("molecules/MenuNavigation/MenuNavigation").MenuNavigationProps<T>) => JSX.Element;
7
7
  };
8
8
  export default _default;
9
9
  export declare const MenuNavigation: ComponentStory<typeof MenuNavigationComponent>;
@@ -26,6 +26,7 @@ export declare type TabGroupProps<T = string, K = string> = {
26
26
  compact?: AdditionalTabContainerProps;
27
27
  isMobile?: boolean;
28
28
  htmlElementId?: string;
29
+ menuIconColor?: string;
29
30
  configurationItemInfo?: ConfigurationItemInfo;
30
31
  };
31
- export declare const TabGroup: <T extends string, K extends string>({ tabs, vertical, activeTabKey, onTabChange, tabTheme, wide, compact, tabSpacing, isMobile, htmlElementId, configurationItemInfo, ...props }: TabGroupProps<T, K>) => JSX.Element;
32
+ export declare const TabGroup: <T extends string, K extends string>({ tabs, vertical, activeTabKey, onTabChange, tabTheme, wide, compact, tabSpacing, isMobile, htmlElementId, menuIconColor, configurationItemInfo, ...props }: TabGroupProps<T, K>) => JSX.Element;
@@ -2,7 +2,7 @@ import type { StoryFn } from '@storybook/react';
2
2
  import { TabGroupProps } from './TabGroup';
3
3
  declare const _default: {
4
4
  title: string;
5
- component: <T extends string, K extends string>({ tabs, vertical, activeTabKey, onTabChange, tabTheme, wide, compact, tabSpacing, isMobile, htmlElementId, configurationItemInfo, ...props }: TabGroupProps<T, K>) => JSX.Element;
5
+ component: <T extends string, K extends string>({ tabs, vertical, activeTabKey, onTabChange, tabTheme, wide, compact, tabSpacing, isMobile, htmlElementId, menuIconColor, configurationItemInfo, ...props }: TabGroupProps<T, K>) => JSX.Element;
6
6
  };
7
7
  export default _default;
8
8
  export declare const TabGroup: StoryFn<TabGroupProps>;