-
Notifications
You must be signed in to change notification settings - Fork 212
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(breadcrumb): implementa definições do AnimaliaDS
Implementa definições do AnimaliaDS no Breadcrumb fixes DTHFUI-7558
- Loading branch information
1 parent
2bc70bd
commit c2772ce
Showing
17 changed files
with
311 additions
and
375 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
5 changes: 0 additions & 5 deletions
5
...lib/components/po-breadcrumb/po-breadcrumb-dropdown/po-breadcrumb-dropdown.component.html
This file was deleted.
Oops, something went wrong.
44 changes: 0 additions & 44 deletions
44
.../components/po-breadcrumb/po-breadcrumb-dropdown/po-breadcrumb-dropdown.component.spec.ts
This file was deleted.
Oops, something went wrong.
19 changes: 0 additions & 19 deletions
19
...c/lib/components/po-breadcrumb/po-breadcrumb-dropdown/po-breadcrumb-dropdown.component.ts
This file was deleted.
Oops, something went wrong.
16 changes: 13 additions & 3 deletions
16
...lib/components/po-breadcrumb/po-breadcrumb-favorite/po-breadcrumb-favorite.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,10 +1,20 @@ | ||
<div class="po-breadcrumb-favorite po-clickable" (click)="toggleFavoriteAction()"> | ||
<div | ||
tabindex="0" | ||
role="button" | ||
class="po-breadcrumb-favorite po-clickable" | ||
(click)="toggleFavoriteAction()" | ||
(keyup.enter)="toggleFavoriteAction()" | ||
> | ||
<span | ||
class="po-icon po-icon-star po-breadcrumb-favorite-star po-clickable" | ||
[class.po-breadcrumb-favorite-star-active]="favorite" | ||
> | ||
</span> | ||
|
||
<span class="po-hidden-sm po-breadcrumb-favorite-label" *ngIf="favorite">{{ literals?.unfavorite }}</span> | ||
<span class="po-hidden-sm po-breadcrumb-favorite-label" *ngIf="!favorite">{{ literals?.favorite }}</span> | ||
<span class="po-hidden-sm po-breadcrumb-favorite-label" *ngIf="favorite && !hiddenLiteral">{{ | ||
literals?.unfavorite | ||
}}</span> | ||
<span class="po-hidden-sm po-breadcrumb-favorite-label" *ngIf="!favorite && !hiddenLiteral">{{ | ||
literals?.favorite | ||
}}</span> | ||
</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
24 changes: 0 additions & 24 deletions
24
.../ui/src/lib/components/po-breadcrumb/po-breadcrumb-item/po-breadcrumb-item.component.html
This file was deleted.
Oops, something went wrong.
93 changes: 0 additions & 93 deletions
93
.../src/lib/components/po-breadcrumb/po-breadcrumb-item/po-breadcrumb-item.component.spec.ts
This file was deleted.
Oops, something went wrong.
26 changes: 0 additions & 26 deletions
26
...ts/ui/src/lib/components/po-breadcrumb/po-breadcrumb-item/po-breadcrumb-item.component.ts
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.