-
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.
chore(angular): Naming convention cleanup
- Loading branch information
1 parent
78202a4
commit f6d7654
Showing
14 changed files
with
38 additions
and
58 deletions.
There are no files selected for viewing
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
File renamed without changes.
File renamed without changes.
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
3 changes: 1 addition & 2 deletions
3
packages/create-angular/src/app/components/layers.component.ts
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
9 changes: 9 additions & 0 deletions
9
packages/create-angular/src/app/components/views/LoginView.component.ts
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import { Component } from '@angular/core'; | ||
|
||
@Component({ | ||
selector: 'login-view', | ||
standalone: true, | ||
imports: [], | ||
template: ` <p>login-view works!</p> `, | ||
}) | ||
export class LoginViewComponent {} |
9 changes: 9 additions & 0 deletions
9
packages/create-angular/src/app/components/views/LogoutView.component.ts
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import { Component } from '@angular/core'; | ||
|
||
@Component({ | ||
selector: 'logout-view', | ||
standalone: true, | ||
imports: [], | ||
template: ` <p>logout-view works!</p> `, | ||
}) | ||
export class LogoutViewComponent {} |
9 changes: 9 additions & 0 deletions
9
packages/create-angular/src/app/components/views/NotFoundView.component.ts
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import { Component } from '@angular/core'; | ||
|
||
@Component({ | ||
selector: 'not-found-view', | ||
standalone: true, | ||
imports: [], | ||
template: ` <p>not-found-view works!</p> `, | ||
}) | ||
export class NotFoundViewComponent {} |
2 changes: 1 addition & 1 deletion
2
...onents/views/population-view.component.ts → ...ponents/views/PopulationView.component.ts
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
15 changes: 0 additions & 15 deletions
15
packages/create-angular/src/app/components/views/login-view.component.ts
This file was deleted.
Oops, something went wrong.
15 changes: 0 additions & 15 deletions
15
packages/create-angular/src/app/components/views/logout-view.component.ts
This file was deleted.
Oops, something went wrong.
15 changes: 0 additions & 15 deletions
15
packages/create-angular/src/app/components/views/not-found-view.component.ts
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.