qlu-20-ui-library 1.1.72 → 1.1.73

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.
@@ -0,0 +1,7 @@
1
+ /// <reference types="react" />
2
+ interface ChevronDropDownProps {
3
+ dropdownItemList: string[];
4
+ onLabelClick: (value: string) => void;
5
+ }
6
+ declare const ChevronDropDown: ({ dropdownItemList, onLabelClick }: ChevronDropDownProps) => JSX.Element;
7
+ export default ChevronDropDown;
@@ -0,0 +1,8 @@
1
+ /// <reference types="react" />
2
+ interface ArrowDownProps {
3
+ className?: string;
4
+ width?: string;
5
+ height?: string;
6
+ }
7
+ declare const ArrowDown: ({ className, width, height, }: ArrowDownProps) => JSX.Element;
8
+ export default ArrowDown;
@@ -10,6 +10,8 @@ interface TopNavbarProps {
10
10
  topNavbarActiveTab: TopNavbarButtonTypes;
11
11
  props?: object;
12
12
  navbarTabs?: NavbarProps[];
13
+ dropdownItemList: string[];
14
+ onLabelClick: (value: string) => void;
13
15
  }
14
- declare const TopNavbar: ({ props, navbarTabs }: TopNavbarProps) => JSX.Element;
16
+ declare const TopNavbar: ({ props, navbarTabs, dropdownItemList, onLabelClick }: TopNavbarProps) => JSX.Element;
15
17
  export default TopNavbar;