-
Notifications
You must be signed in to change notification settings - Fork 129
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(core): toolbar bar horizon updates (#8051)
* fix(core,platform): shellbar breaking changes adoption * fix(core,platform): toolbar breaking changes adoption BREAKING CHANGE: * toolbar title now requires fd-toolbar__title class * fix(core,platform): table breaking changes adoption BREAKING CHANGE: * wrap text in table cell in fd-table-text directive to have the text-shadow * fix(core,platform): calendar breaking changes adoption * fix(core): shellbar action-sheet instead of list * test(core,platform): e2e fixes * fix(docs): fix button type * chore(core,platform): fund styles version bump to v0.24.0-rc.41 * fix(docs): fixed documentation sidebar background color * fix(docs): fixed documentation page compatibility with themes * chore(deps): bumped fundamental-styles * chore(e2e): updated selector for sidenav control * fix(core,platform): fixed split button missing class (#8034) * feat(platform): icon tab bar horizon theme adaptation (#8006) * fix(platform): removed unnecessary more(extra) button directive * fix(platform): fixed unit test * chore(e2e): fixed e2e * chore(core,platform): fund styles version bump to v0.24.0-rc.53 * fix(core,platform): calendar year & month items * test(core): e2e fixes * fix(core): vertical nav styles derivation from styles lib * test(core,platform): e2e fixes for calendar based comps * test(core,platform): e2e fixes for calendar based comps * fix(core,platform): calendar year & months items styling * fix(core): update toolbar and bar for horizon * fix(core,platform): adjust toolbar component for dynamic page (#8052) * feat(core): more toolbar updates * feat(core): more toolbar improvements allowing and documenting both title approaches * fix(core): title token * fix(core): accidental change Co-authored-by: Platon Rov <[email protected]> Co-authored-by: g-cheishvili <[email protected]> Co-authored-by: N1XUS <[email protected]>
- Loading branch information
1 parent
280de1d
commit 6eb8e53
Showing
9 changed files
with
79 additions
and
22 deletions.
There are no files selected for viewing
9 changes: 7 additions & 2 deletions
9
apps/docs/src/app/core/component-docs/toolbar/examples/toolbar-title-example.component.html
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 |
---|---|---|
@@ -1,3 +1,8 @@ | ||
<fd-toolbar [hasTitle]="true"> | ||
<h4 class="fd-title fd-title--h4 fd-toolbar__title">H4 sized text</h4> | ||
<h5 fd-title>Title via Input Property</h5> | ||
<fd-toolbar title="H4 sized text"></fd-toolbar> | ||
<br /> | ||
<h5 fd-title>Title via ng-content</h5> | ||
<fd-toolbar> | ||
<h4 fd-title>H4 sized text with Icon</h4> | ||
<fd-icon glyph="account"></fd-icon> | ||
</fd-toolbar> |
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
24 changes: 24 additions & 0 deletions
24
libs/core/src/lib/shellbar/shellbar-actions/shellbar-actions-mobile.component.html
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 @@ | ||
<div class="fd-shellbar-collapse"> | ||
<fd-action-sheet placement="bottom-end"> | ||
<fd-action-sheet-control> | ||
<button fd-button glyph="overflow" class="fd-shellbar__button" [attr.aria-label]="collapsedItemMenuLabel"> | ||
<span *ngIf="totalNotifications" class="fd-button__badge"> | ||
{{ totalNotifications }} | ||
</span> | ||
</button> | ||
</fd-action-sheet-control> | ||
|
||
<fd-action-sheet-body> | ||
<li | ||
fd-action-sheet-item | ||
*ngFor="let action of shellbarActions" | ||
tabindex="-1" | ||
[glyph]="action.glyph" | ||
[label]="action.label" | ||
(click)="actionClicked(action, $event)" | ||
> | ||
<span *ngIf="action.notificationCount" class="fd-button__badge">{{ action.notificationCount }}</span> | ||
</li> | ||
</fd-action-sheet-body> | ||
</fd-action-sheet> | ||
</div> |
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