-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: migrate to angular standalone components (#1556)
BREAKING CHANGE: IgoLanguageModule don't import TranslateModule.forRoot defaultLanguageLoader is not exported anymore BREAKING CHANGE: 'provideDefaultLanguageLoader' and 'provideLanguageLoader' are replaced by 'DEFAULT_LANGUAGE_LOADER' and set directly inside the TranslationConfig
- Loading branch information
Showing
434 changed files
with
4,320 additions
and
2,467 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,20 @@ | ||
import { AuthFacebookComponent } from './auth-facebook.component'; | ||
import { AuthFormComponent } from './auth-form.component'; | ||
import { AuthGoogleComponent } from './auth-google.component'; | ||
import { AuthInternComponent } from './auth-intern.component'; | ||
import { AuthMicrosoftComponent } from './auth-microsoft.component'; | ||
import { AuthMicrosoftb2cComponent } from './auth-microsoftb2c.component'; | ||
|
||
export * from './auth-form.component'; | ||
export * from './auth-intern.component'; | ||
export * from './auth-facebook.component'; | ||
export * from './auth-google.component'; | ||
|
||
export const AUTH_FORM_DIRECTIVES = [ | ||
AuthFormComponent, | ||
AuthGoogleComponent, | ||
AuthInternComponent, | ||
AuthFacebookComponent, | ||
AuthMicrosoftComponent, | ||
AuthMicrosoftb2cComponent | ||
] as const; |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
import { CommonModule } from '@angular/common'; | ||
import { NgModule } from '@angular/core'; | ||
|
||
import { IgoActionbarModule } from './actionbar/actionbar.module'; | ||
import { ActionbarComponent } from './actionbar/actionbar.component'; | ||
|
||
/** | ||
* @deprecated import the ActionbarComponent directly | ||
*/ | ||
@NgModule({ | ||
imports: [CommonModule, IgoActionbarModule], | ||
exports: [IgoActionbarModule], | ||
declarations: [], | ||
providers: [] | ||
imports: [ActionbarComponent], | ||
exports: [ActionbarComponent] | ||
}) | ||
export class IgoActionModule {} |
Oops, something went wrong.