We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent afb8add commit 108cccbCopy full SHA for 108cccb
projects/coreui/angular/src/lib/sidebar/app-sidebar-nav.ts
@@ -0,0 +1,33 @@
1
+export interface INavAttributes {
2
+ [propName: string]: any;
3
+}
4
+
5
+export interface INavWrapper {
6
+ attributes: INavAttributes;
7
+ element: string;
8
9
10
+export interface INavBadge {
11
+ text: string;
12
+ variant: string;
13
14
15
+export interface INavLabel {
16
+ class?: string;
17
18
19
20
+export interface INavData {
21
+ name?: string;
22
+ url?: string;
23
+ icon?: string;
24
+ badge?: INavBadge;
25
+ title?: boolean;
26
+ children?: INavData[];
27
+ variant?: string;
28
+ attributes?: INavAttributes;
29
+ divider?: boolean;
30
31
+ label?: INavLabel;
32
+ wrapper?: INavWrapper;
33
0 commit comments