Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ RUN npm ci && \
npm prune --omit=dev

# ---------- Release ----------
FROM nginx:1.29.3-alpine-slim
FROM nginx:1.29.4-alpine-slim

# Copy nginx config file
RUN rm -rf /usr/share/nginx/html/* && rm -rf /etc/nginx/nginx.conf
Expand Down
3,980 changes: 2,224 additions & 1,756 deletions npm-shrinkwrap.json

Large diffs are not rendered by default.

48 changes: 24 additions & 24 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,41 +24,41 @@
"license": "MIT",
"private": true,
"dependencies": {
"@angular/animations": "~20.3.9",
"@angular/cdk": "~20.2.11",
"@angular/common": "~20.3.9",
"@angular/compiler": "~20.3.9",
"@angular/core": "~20.3.9",
"@angular/forms": "~20.3.9",
"@angular/material": "~20.2.11",
"@angular/platform-browser": "~20.3.9",
"@angular/platform-browser-dynamic": "~20.3.9",
"@angular/router": "~20.3.9",
"@angular/service-worker": "~20.3.9",
"@angular/localize": "~20.3.9",
"@apollo/client": "^4.0.9",
"@ng-bootstrap/ng-bootstrap": "~19.0.1",
"@angular/animations": "~21.0.5",
"@angular/cdk": "~21.0.3",
"@angular/common": "~21.0.5",
"@angular/compiler": "~21.0.5",
"@angular/core": "~21.0.5",
"@angular/forms": "~21.0.5",
"@angular/material": "~21.0.3",
"@angular/platform-browser": "~21.0.5",
"@angular/platform-browser-dynamic": "~21.0.5",
"@angular/router": "~21.0.5",
"@angular/service-worker": "~21.0.5",
"@angular/localize": "~21.0.5",
"@apollo/client": "^4.0.10",
"@ng-bootstrap/ng-bootstrap": "~20.0.0",
"@types/grecaptcha": "^3.0.9",
"apollo-angular": "^12.1.0",
"apollo-angular": "^13.0.0",
"chart.js": "^4.5.1",
"core-js": "^3.47.0",
"graphql": "^16.12.0",
"graphql-tag": "^2.12.6",
"ngx-markdown": "^20.1.0",
"ngx-markdown": "^21.0.1",
"rxjs": "^7.8.2",
"tslib": "^2.8.1"
},
"devDependencies": {
"@angular/build": "^20.3.8",
"@angular/cli": "^20.3.8",
"@angular/compiler-cli": "~20.3.9",
"@types/node": "^24.9.2",
"@types/react": "^19.2.2",
"angular-eslint": "20.5.0",
"eslint": "^9.39.0",
"@angular/build": "^21.0.3",
"@angular/cli": "^21.0.3",
"@angular/compiler-cli": "~21.0.5",
"@types/node": "^25.0.1",
"@types/react": "^19.2.7",
"angular-eslint": "21.1.0",
"eslint": "^9.39.2",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"typescript-eslint": "8.48.0"
"typescript-eslint": "8.49.0"
},
"repository": {
"type": "git",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,10 @@
@if (configs().length === 10 || skip > 0) {
<div class="pagination">
<button mat-mini-fab class="btn-element create nav" (click)="onPrevious()" disabled="{{skip === 0}}">
<mat-icon style="font-size: larger;">arrow_back</mat-icon>
<mat-icon>arrow_back</mat-icon>
</button>
<button mat-mini-fab class="btn-element create nav" (click)="onNext()" disabled="{{configs().length < 10}}">
<mat-icon style="font-size: larger;">arrow_forward</mat-icon>
<mat-icon>arrow_forward</mat-icon>
</button>
</div>
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,10 @@
@if (groups().length === 10 || skip > 0) {
<div class="pagination">
<button mat-button class="btn-element create nav" (click)="onPrevious()" disabled="{{skip === 0}}">
<mat-icon style="font-size: larger;">arrow_back</mat-icon>
<mat-icon>arrow_back</mat-icon>
</button>
<button mat-button class="btn-element create nav" (click)="onNext()" disabled="{{groups().length < 10}}">
<mat-icon style="font-size: larger;">arrow_forward</mat-icon>
<mat-icon>arrow_forward</mat-icon>
</button>
</div>
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,12 +76,12 @@
<button mat-mini-fab class="btn-element"
(click)="onPreviousPage()"
[disabled]="!hasPrevious()">
<mat-icon style="font-size: larger;">arrow_back</mat-icon>
<mat-icon>arrow_back</mat-icon>
</button>
<button mat-mini-fab class="btn-element"
(click)="onNextPage()"
[disabled]="!hasNext()">
<mat-icon style="font-size: larger;">arrow_forward</mat-icon>
<mat-icon>arrow_forward</mat-icon>
</button>
<p style="margin-left: 15px;">{{pageLoaded}}/{{totalPages}}</p>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@
<button mat-mini-fab class="btn-element"
(click)="getSwitcherDateTimeGroupStats().onPrevious()"
[disabled]="!getSwitcherDateTimeGroupStats().hasPrevious()">
<mat-icon style="font-size: larger;">arrow_back</mat-icon>
<mat-icon>arrow_back</mat-icon>
</button>
<button mat-mini-fab class="btn-element"
(click)="getSwitcherDateTimeGroupStats().loadSwitcherDateTimeGroupView()"
[disabled]="!getSwitcherDateTimeGroupStats().hasNext()">
<mat-icon style="font-size: larger;">arrow_forward</mat-icon>
<mat-icon>arrow_forward</mat-icon>
</button>
</div>
</mat-tab>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
@if (!loading()) {
<div class="header-filter">
<button mat-button class="btn-element" (click)="onFilter()">
<mat-icon style="font-size: larger;">filter_list</mat-icon>
<mat-icon>filter_list</mat-icon>
Filter
</button>
</div>
Expand Down