dfh-ui-library 1.12.147 → 1.12.148

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,6 +1,7 @@
1
1
  import React from "react";
2
2
  interface ArrowDropdownProps {
3
3
  username?: string;
4
+ themeColor?: string;
4
5
  handleLogout?: () => void;
5
6
  userImage?: string;
6
7
  }
@@ -1,4 +1,4 @@
1
1
  import React from "react";
2
2
  import { TabNavigationProps } from "../../shared/models/components/common.model";
3
- declare const NavBar: ({ navigationData, additionalClasses, navItemClick, isEnableLogout, handleLogout, userImage, username, }: TabNavigationProps) => React.JSX.Element;
3
+ declare const NavBar: ({ navigationData, additionalClasses, navItemClick, isEnableLogout, handleLogout, userImage, username, themeColor, }: TabNavigationProps) => React.JSX.Element;
4
4
  export default NavBar;
@@ -101,6 +101,7 @@ export interface TabNavigationProps extends AdditionalClassesProp {
101
101
  handleLogout?: () => void;
102
102
  userImage?: string;
103
103
  username?: string;
104
+ themeColor?: string;
104
105
  }
105
106
  export interface TabNavItemProps {
106
107
  isActive: boolean;