-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #254 from netgrif/NAE-2021
[NAE-2021] Outputs for navigation components
- Loading branch information
Showing
10 changed files
with
128 additions
and
66 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
21 changes: 21 additions & 0 deletions
21
projects/netgrif-components-core/src/lib/navigation/model/navigation-menu-events.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
import {NavigationItem} from './navigation-configs'; | ||
import {UriNodeResource} from './uri-resource'; | ||
|
||
export interface MenuStateChangeEvent { | ||
menu: 'left' | 'right'; | ||
isOpened: boolean; | ||
} | ||
|
||
export interface MenuItemClickEvent { | ||
uriNode: UriNodeResource; | ||
isHome: boolean; | ||
} | ||
|
||
export interface MenuItemLoadedEvent { | ||
menu: 'left' | 'right'; | ||
items: Array<NavigationItem>; | ||
} | ||
|
||
export interface MenuResizeEvent { | ||
width: number; | ||
} |
137 changes: 83 additions & 54 deletions
137
...nts-core/src/lib/navigation/navigation-double-drawer/abstract-navigation-double-drawer.ts
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 6 additions & 3 deletions
9
...b/navigation/quick-panel/components/logout-shortcut/abstract-logout-shortcut.component.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters