@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 +8 -2
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/iui.css +1 -1
- package/package.json +78 -76
package/dist/index.d.ts
CHANGED
|
@@ -61,8 +61,8 @@ interface ISidebarItem {
|
|
|
61
61
|
content?: ISidebarSubItem[];
|
|
62
62
|
menu?: {
|
|
63
63
|
content: ISidebarSubItem[];
|
|
64
|
-
|
|
65
|
-
|
|
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
|
|