-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #19 from BergkampHUN/feature/update-angular
Feature/update angular
- Loading branch information
Showing
28 changed files
with
4,842 additions
and
4,543 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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
This file was deleted.
Oops, something went wrong.
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,24 +1,28 @@ | ||
<div class="default-card card-wrapper"> | ||
<div class="flex align-items-center gap-2 test"> | ||
<p-button | ||
icon="pi pi-chevron-left" | ||
size="small" | ||
*ngIf="dateSelector" | ||
[rounded]="true" | ||
[text]="true" | ||
@if (dateSelector) { | ||
<p-button | ||
icon="pi pi-chevron-left" | ||
size="small" | ||
[rounded]="true" | ||
[text]="true" | ||
(onClick)="changeDate(-1)"></p-button> | ||
} | ||
<div class="flex align-items-center gap-2"> | ||
<h2>{{ date | niceDateName }}</h2> | ||
<i class="pi pi-check-circle"></i> | ||
</div> | ||
<p-button | ||
icon="pi pi-chevron-right" | ||
size="small" | ||
*ngIf="dateSelector" | ||
[rounded]="true" | ||
[text]="true" | ||
@if (dateSelector) { | ||
<p-button | ||
icon="pi pi-chevron-right" | ||
size="small" | ||
[rounded]="true" | ||
[text]="true" | ||
(onClick)="changeDate(1)"></p-button> | ||
} | ||
</div> | ||
<app-summaries [date]="date"></app-summaries> | ||
<app-time-entry *ngFor="let entry of groupedTimeEntries" [timeEntryGroup]="entry" /> | ||
@for (entry of groupedTimeEntries; track entry) { | ||
<app-time-entry [timeEntryGroup]="entry" /> | ||
} | ||
</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
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
Oops, something went wrong.