Skip to content
Open
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
8,165 changes: 4,602 additions & 3,563 deletions package-lock.json

Large diffs are not rendered by default.

36 changes: 18 additions & 18 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,27 +14,27 @@
},
"private": true,
"dependencies": {
"@angular/animations": "^18.2.8",
"@angular/common": "^18.2.8",
"@angular/compiler": "^18.2.8",
"@angular/core": "^18.2.8",
"@angular/forms": "^18.2.8",
"@angular/platform-browser": "^18.2.8",
"@angular/platform-browser-dynamic": "^18.2.8",
"@angular/router": "^18.2.8",
"@angular/animations": "^19.2.13",
"@angular/common": "^19.2.13",
"@angular/compiler": "^19.2.13",
"@angular/core": "^19.2.13",
"@angular/forms": "^19.2.13",
"@angular/platform-browser": "^19.2.13",
"@angular/platform-browser-dynamic": "^19.2.13",
"@angular/router": "^19.2.13",
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
"zone.js": "~0.14.10"
"zone.js": "~0.15.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "^18.2.9",
"@angular-eslint/builder": "18.4.0",
"@angular-eslint/eslint-plugin": "18.4.0",
"@angular-eslint/eslint-plugin-template": "18.4.0",
"@angular-eslint/schematics": "18.4.0",
"@angular-eslint/template-parser": "18.4.0",
"@angular/cli": "^18.2.9",
"@angular/compiler-cli": "^18.2.8",
"@angular-devkit/build-angular": "^19.2.13",
"@angular-eslint/builder": "19.6.0",
"@angular-eslint/eslint-plugin": "19.6.0",
"@angular-eslint/eslint-plugin-template": "19.6.0",
"@angular-eslint/schematics": "19.6.0",
"@angular-eslint/template-parser": "19.6.0",
"@angular/cli": "^19.2.13",
"@angular/compiler-cli": "^19.2.13",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/jasmine": "~5.1.0",
"@typescript-eslint/eslint-plugin": "^7.11.0",
Expand All @@ -48,6 +48,6 @@
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.1.0",
"prettier": "3.3.3",
"typescript": "~5.4.5"
"typescript": "~5.8.3"
}
}
9 changes: 4 additions & 5 deletions src/app/app.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,10 @@ import { AsideComponent } from './shared/components/aside/aside.component';
import { AsideService } from './shared/components/aside/aside.service';

@Component({
selector: 'app-root',
standalone: true,
imports: [RouterOutlet, CommonModule, AsideComponent],
templateUrl: './app.component.html',
styleUrl: './app.component.scss',
selector: 'app-root',
imports: [RouterOutlet, CommonModule, AsideComponent],
templateUrl: './app.component.html',
styleUrl: './app.component.scss'
})
export class AppComponent implements OnInit {
public asideExpanded = this.asideService.expanded;
Expand Down
9 changes: 4 additions & 5 deletions src/app/pages/page-not-found/page-not-found.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,9 @@ import { Component } from '@angular/core';
import { RouterLink } from '@angular/router';

@Component({
selector: 'app-page-not-found',
standalone: true,
imports: [RouterLink],
templateUrl: './page-not-found.component.html',
styleUrl: './page-not-found.component.scss',
selector: 'app-page-not-found',
imports: [RouterLink],
templateUrl: './page-not-found.component.html',
styleUrl: './page-not-found.component.scss'
})
export class PageNotFoundComponent {}
9 changes: 4 additions & 5 deletions src/app/pages/settings/settings.component.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
import { Component } from '@angular/core';

@Component({
selector: 'app-settings',
standalone: true,
imports: [],
templateUrl: './settings.component.html',
styleUrl: './settings.component.scss',
selector: 'app-settings',
imports: [],
templateUrl: './settings.component.html',
styleUrl: './settings.component.scss'
})
export class SettingsComponent {}
9 changes: 4 additions & 5 deletions src/app/pages/welcome/welcome.component.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
import { Component } from '@angular/core';

@Component({
selector: 'app-welcome',
standalone: true,
imports: [],
templateUrl: './welcome.component.html',
styleUrl: './welcome.component.scss',
selector: 'app-welcome',
imports: [],
templateUrl: './welcome.component.html',
styleUrl: './welcome.component.scss'
})
export class WelcomeComponent {
title = 'Initial Template';
Expand Down
9 changes: 4 additions & 5 deletions src/app/shared/components/aside/aside.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,10 @@ import { RouterModule } from '@angular/router';
import { AsideService } from './aside.service';

@Component({
selector: 'app-aside',
standalone: true,
imports: [RouterModule, CommonModule],
templateUrl: './aside.component.html',
styleUrl: './aside.component.scss',
selector: 'app-aside',
imports: [RouterModule, CommonModule],
templateUrl: './aside.component.html',
styleUrl: './aside.component.scss'
})
export class AsideComponent {
public expanded = this.asideService.expanded;
Expand Down
9 changes: 4 additions & 5 deletions src/app/shared/components/header/header.component.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
import { Component } from '@angular/core';

@Component({
selector: 'app-header',
standalone: true,
imports: [],
templateUrl: './header.component.html',
styleUrl: './header.component.scss',
selector: 'app-header',
imports: [],
templateUrl: './header.component.html',
styleUrl: './header.component.scss'
})
export class HeaderComponent {}