mirror of https://github.com/ghostfolio/ghostfolio
Browse Source
* Migrate login with access token dialog component to standalone * Update changelogpull/5513/head^2
committed by
GitHub
4 changed files with 39 additions and 43 deletions
@ -1,31 +0,0 @@ |
|||||
import { TextFieldModule } from '@angular/cdk/text-field'; |
|
||||
import { CommonModule } from '@angular/common'; |
|
||||
import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; |
|
||||
import { ReactiveFormsModule } from '@angular/forms'; |
|
||||
import { MatButtonModule } from '@angular/material/button'; |
|
||||
import { MatCheckboxModule } from '@angular/material/checkbox'; |
|
||||
import { MatDialogModule } from '@angular/material/dialog'; |
|
||||
import { MatFormFieldModule } from '@angular/material/form-field'; |
|
||||
import { MatInputModule } from '@angular/material/input'; |
|
||||
import { IonIcon } from '@ionic/angular/standalone'; |
|
||||
|
|
||||
import { GfDialogHeaderComponent } from '../dialog-header/dialog-header.component'; |
|
||||
import { LoginWithAccessTokenDialog } from './login-with-access-token-dialog.component'; |
|
||||
|
|
||||
@NgModule({ |
|
||||
declarations: [LoginWithAccessTokenDialog], |
|
||||
imports: [ |
|
||||
CommonModule, |
|
||||
GfDialogHeaderComponent, |
|
||||
IonIcon, |
|
||||
MatButtonModule, |
|
||||
MatCheckboxModule, |
|
||||
MatDialogModule, |
|
||||
MatFormFieldModule, |
|
||||
MatInputModule, |
|
||||
ReactiveFormsModule, |
|
||||
TextFieldModule |
|
||||
], |
|
||||
schemas: [CUSTOM_ELEMENTS_SCHEMA] |
|
||||
}) |
|
||||
export class LoginWithAccessTokenDialogModule {} |
|
Loading…
Reference in new issue