-
Notifications
You must be signed in to change notification settings - Fork 270
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(ui5-navigation-layout): replace "sideCollapsed" property with "mo…
…de" property (#10390) * fix(ui5-navigation-layout): change side-collapsed property
- Loading branch information
1 parent
9f5a67a
commit ae562dd
Showing
6 changed files
with
70 additions
and
33 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
/** | ||
* Specifies the navigation layout mode. | ||
* @public | ||
*/ | ||
enum NavigationLayoutMode { | ||
/** | ||
* Automatically calculates the navigation layout mode based on the screen device type. | ||
* `Expanded` on desktop and `Collapsed` on tablet and phone. | ||
* @public | ||
*/ | ||
Auto = "Auto", | ||
/** | ||
* Collapsed side navigation. | ||
* @public | ||
*/ | ||
Collapsed = "Collapsed", | ||
/** | ||
* Expanded side navigation. | ||
* @public | ||
*/ | ||
Expanded = "Expanded", | ||
} | ||
|
||
export default NavigationLayoutMode; |
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