mirror of https://github.com/ghostfolio/ghostfolio
Browse Source
* Migrate dialog footer component to standalone * Migrate dialog header component to standalone * Update changelogpull/5400/head^2
committed by
GitHub
10 changed files with 33 additions and 54 deletions
@ -1,14 +0,0 @@ |
|||||
import { CommonModule } from '@angular/common'; |
|
||||
import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; |
|
||||
import { MatButtonModule } from '@angular/material/button'; |
|
||||
import { IonIcon } from '@ionic/angular/standalone'; |
|
||||
|
|
||||
import { DialogFooterComponent } from './dialog-footer.component'; |
|
||||
|
|
||||
@NgModule({ |
|
||||
declarations: [DialogFooterComponent], |
|
||||
exports: [DialogFooterComponent], |
|
||||
imports: [CommonModule, IonIcon, MatButtonModule], |
|
||||
schemas: [CUSTOM_ELEMENTS_SCHEMA] |
|
||||
}) |
|
||||
export class GfDialogFooterModule {} |
|
@ -1,14 +0,0 @@ |
|||||
import { CommonModule } from '@angular/common'; |
|
||||
import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; |
|
||||
import { MatButtonModule } from '@angular/material/button'; |
|
||||
import { IonIcon } from '@ionic/angular/standalone'; |
|
||||
|
|
||||
import { DialogHeaderComponent } from './dialog-header.component'; |
|
||||
|
|
||||
@NgModule({ |
|
||||
declarations: [DialogHeaderComponent], |
|
||||
exports: [DialogHeaderComponent], |
|
||||
imports: [CommonModule, IonIcon, MatButtonModule], |
|
||||
schemas: [CUSTOM_ELEMENTS_SCHEMA] |
|
||||
}) |
|
||||
export class GfDialogHeaderModule {} |
|
Loading…
Reference in new issue