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;
package/dist/index.d.ts CHANGED
@@ -71,6 +71,7 @@ interface TabNavigationProps extends AdditionalClassesProp$1 {
71
71
  handleLogout?: () => void;
72
72
  userImage?: string;
73
73
  username?: string;
74
+ themeColor?: string;
74
75
  }
75
76
  interface MessageProps {
76
77
  type: string;
@@ -1242,7 +1243,7 @@ declare const Logo: React__default.FC<LogoProps>;
1242
1243
 
1243
1244
  declare const LoadingSpinner: React__default.FC<AdditionalClassesProp$1>;
1244
1245
 
1245
- declare const NavBar: ({ navigationData, additionalClasses, navItemClick, isEnableLogout, handleLogout, userImage, username, }: TabNavigationProps) => React__default.JSX.Element;
1246
+ declare const NavBar: ({ navigationData, additionalClasses, navItemClick, isEnableLogout, handleLogout, userImage, username, themeColor, }: TabNavigationProps) => React__default.JSX.Element;
1246
1247
 
1247
1248
  declare const Message: ({ type, text, onClose }: MessageProps) => React__default.JSX.Element | undefined;
1248
1249
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dfh-ui-library",
3
- "version": "1.12.147",
3
+ "version": "1.12.148",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "build": "rollup -c --bundleConfigAsCjs --environment NODE_ENV:production",