-
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(loading-overlay): implementações AnimaliaDS
- Loading branch information
1 parent
5698533
commit dee3db4
Showing
5 changed files
with
17 additions
and
10 deletions.
There are no files selected for viewing
6 changes: 3 additions & 3 deletions
6
...cts/ui/src/lib/components/po-loading/po-loading-overlay/po-loading-overlay.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,3 @@ | ||
<div [class.po-overlay-absolute]="!screenLock" [class.po-overlay-fixed]="screenLock"> | ||
<po-loading class="po-loading-overlay-content" [p-text]="text"></po-loading> | ||
</div> | ||
<po-overlay [p-screen-lock]="screenLock"> | ||
<po-loading [p-text]="text"></po-loading> | ||
</po-overlay> |
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: 8 additions & 1 deletion
9
projects/ui/src/lib/components/po-loading/po-loading.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,4 +1,11 @@ | ||
<div class="po-loading"> | ||
<po-loading-icon></po-loading-icon> | ||
<span class="po-loading-label po-text-ellipsis" *ngIf="text">{{ text }}</span> | ||
<ng-template [ngIf]="text"> | ||
<span class="po-loading-label po-text-ellipsis" | ||
>{{ text }} | ||
<div class="po-loading-dot" aria-hidden="true">.</div> | ||
<div class="po-loading-dot" aria-hidden="true">.</div> | ||
<div class="po-loading-dot" aria-hidden="true">.</div> | ||
</span> | ||
</ng-template> | ||
</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