-
Notifications
You must be signed in to change notification settings - Fork 272
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(ui5-wizard): improve progress navigator responsiveness (#2590)
* [WIP] ui5-wizard: improve progress navigator responsiveness * feat(ui5-wizard): responsive behaviour * ui5-wizard: selection-change fired as expected * ui5-wizard: minor enhancements * ui5-wizard: CSS adjustments * ui5-wizard: CSS adjustments * [WIP] ui5-wizard: improve progress navigator responsiveness * feat(ui5-wizard): responsive behaviour * ui5-wizard: selection-change fired as expected * ui5-wizard: minor enhancements * ui5-wizard: CSS adjustments * css improvements * ui5-wizard: IE fix and other minor adjustments * ui5-wizard: attributes names changed Co-authored-by: Martin Hristov <[email protected]>
- Loading branch information
Showing
7 changed files
with
352 additions
and
64 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,32 @@ | ||
<ui5-responsive-popover | ||
horizontal-align="Center" | ||
placement-type="Bottom" | ||
class="{{classes.popover}}" | ||
@ui5-after-close={{_afterClosePopover}} | ||
content-only-on-desktop | ||
prevent-focus-restore | ||
with-padding | ||
_hide-header | ||
> | ||
<ul class="ui5-wizard-responsive-popover-list"> | ||
{{#each _groupedTabs}} | ||
<li> | ||
<ui5-button | ||
icon="{{this.icon}}" | ||
?disabled="{{this.disabled}}" | ||
design="Transparent" | ||
data-ui5-header-tab-ref-id="{{this.ariaPosinset}}" | ||
@click="{{../_onOverflowStepButtonClick}}" | ||
> | ||
{{this.heading}} | ||
</ui5-button> | ||
</li> | ||
{{/each}} | ||
</ul> | ||
<div slot="footer" class="ui5-responsive-popover-footer"> | ||
<ui5-button | ||
design="Transparent" | ||
@click="{{_closeRespPopover}}" | ||
>Cancel</ui5-button> | ||
</div> | ||
</ui5-responsive-popover> |
Oops, something went wrong.