@inceptionbg/iui 2.0.69 → 3.0.1

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.
package/dist/index.d.ts CHANGED
@@ -61,8 +61,8 @@ interface ISidebarItem {
61
61
  content?: ISidebarSubItem[];
62
62
  menu?: {
63
63
  content: ISidebarSubItem[];
64
- openedMenu: string;
65
- setOpenedMenu: (label: string) => void;
64
+ isOpen: boolean;
65
+ toggle: () => void;
66
66
  };
67
67
  hidden?: boolean;
68
68
  badge?: number;
@@ -1110,6 +1110,12 @@ interface ISidebarProps {
1110
1110
  logo?: IOrgLogo;
1111
1111
  customLogo?: string;
1112
1112
  appVersion?: string;
1113
+ header?: {
1114
+ monogram?: string;
1115
+ title: string;
1116
+ subtitle?: string;
1117
+ };
1118
+ topContent?: ReactNode;
1113
1119
  }
1114
1120
  declare const Sidebar: FC<ISidebarProps>;
1115
1121