Conversation
There was a problem hiding this comment.
Pull Request Overview
This PR updates the project to Angular 20 by revising component file references, import paths, and dependency versions.
- Removed the redundant ".component" suffix from component template and style file references.
- Updated Angular dependencies and related package metadata.
- Adjusted import paths for directives, pipes, and services to match new file locations.
Reviewed Changes
Copilot reviewed 66 out of 66 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| src/app/dialog-edit-session/dialog-edit-session.ts | Updated template and style file paths and imports. |
| src/app/dialog-create-task/dialog-create-task.ts | Updated template and style file paths. |
| src/app/button-theme-switcher/button-theme-switcher.ts | Updated template and style file paths. |
| src/app/button-task-actions/button-task-actions.ts | Adjusted import order and file path changes for templates/styles. |
| src/app/button-task-actions/button-task-actions.html | Added new Angular HTML template using Angular 17 syntax. |
| src/app/button-task-actions/button-task-actions.component.html | Removed unused component template file. |
| src/app/app.ts | Updated template, style paths and import paths for various components. |
| package.json | Upgraded Angular and dependency versions; added repository and author metadata. |
| angular.json | Added schematics configuration for components, directives, and services. |
Comments suppressed due to low confidence (3)
src/app/dialog-edit-session/dialog-edit-session.ts:15
- Angular expects the property 'styleUrls' (plural) with an array of style files. Please update this to 'styleUrls: ['./dialog-edit-session.scss']'.
styleUrl: './dialog-edit-session.scss',
src/app/dialog-create-task/dialog-create-task.ts:12
- Update 'styleUrl' to 'styleUrls' in the component decorator and wrap the style file path in an array.
styleUrl: './dialog-create-task.scss',
src/app/button-theme-switcher/button-theme-switcher.ts:13
- Change 'styleUrl' to 'styleUrls' and enclose the style file path within an array to comply with Angular Component decorator requirements.
templateUrl: './button-theme-switcher.html',
styleUrl: './button-theme-switcher.scss',
Owner
Author
|
Closes #40 |
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.