You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
1.2 KiB
TypeScript
38 lines
1.2 KiB
TypeScript
3 years ago
|
import {NgModule} from "@angular/core";
|
||
|
import {ConfirmDialogComponent} from "./confirm-dialog/confirm-dialog.component";
|
||
|
import {BusyIndicatorComponent} from "./busy-indicator/busy-indicator.component";
|
||
|
import {ContextMenuComponent} from "./context-menu/context-menu.component";
|
||
|
import {CommonModule} from "@angular/common";
|
||
|
import {NgIconsModule} from "@ng-icons/core";
|
||
|
import {MatProgressSpinnerModule} from "@angular/material/progress-spinner";
|
||
|
import {MatButtonModule} from "@angular/material/button";
|
||
|
import {MatDialogModule} from "@angular/material/dialog";
|
||
|
import {MatMenuModule} from "@angular/material/menu";
|
||
|
import {ContentAwareImageComponent} from "./content-aware-image/content-aware-image.component";
|
||
|
|
||
|
|
||
|
@NgModule({
|
||
|
declarations: [
|
||
|
ConfirmDialogComponent,
|
||
|
BusyIndicatorComponent,
|
||
|
ContextMenuComponent,
|
||
|
ContentAwareImageComponent,
|
||
|
],
|
||
|
exports: [
|
||
|
ConfirmDialogComponent,
|
||
|
BusyIndicatorComponent,
|
||
|
ContextMenuComponent,
|
||
|
ContentAwareImageComponent,
|
||
|
],
|
||
|
imports: [
|
||
|
CommonModule,
|
||
|
NgIconsModule.withIcons({}),
|
||
|
MatProgressSpinnerModule,
|
||
|
MatButtonModule,
|
||
|
MatDialogModule,
|
||
|
MatMenuModule
|
||
|
]
|
||
|
})
|
||
|
export class AppCommonModule {
|
||
|
}
|