mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-09-22 05:50:48 +02:00

* fix: fix issues after updates to Angular 13 in rooms component and country orders component * feat: update to Angular 14 (#1) * fix(angular 13): fix issues after updates to Angular 13 in rooms component and country orders component (#5965) * feat: update to Angular 14 * feat: update angular eslint packages eslint * feat: update nebular to 10 version * feat: update style import, remove ~
91 lines
2.2 KiB
TypeScript
91 lines
2.2 KiB
TypeScript
import { NgModule } from '@angular/core';
|
|
import { FormsModule } from '@angular/forms';
|
|
import {
|
|
NbButtonModule,
|
|
NbCardModule,
|
|
NbCheckboxModule,
|
|
NbDialogModule,
|
|
NbInputModule,
|
|
NbPopoverModule,
|
|
NbSelectModule,
|
|
NbTabsetModule,
|
|
NbTooltipModule,
|
|
NbWindowModule,
|
|
} from '@nebular/theme';
|
|
|
|
// modules
|
|
import { ThemeModule } from '../../@theme/theme.module';
|
|
import { ModalOverlaysRoutingModule } from './modal-overlays-routing.module';
|
|
|
|
// components
|
|
import { ModalOverlaysComponent } from './modal-overlays.component';
|
|
import { DialogComponent } from './dialog/dialog.component';
|
|
import { ShowcaseDialogComponent } from './dialog/showcase-dialog/showcase-dialog.component';
|
|
import { DialogNamePromptComponent } from './dialog/dialog-name-prompt/dialog-name-prompt.component';
|
|
import { WindowComponent } from './window/window.component';
|
|
import { WindowFormComponent } from './window/window-form/window-form.component';
|
|
import { ToastrComponent } from './toastr/toastr.component';
|
|
import { PopoversComponent } from './popovers/popovers.component';
|
|
import {
|
|
NgxPopoverCardComponent, NgxPopoverFormComponent,
|
|
NgxPopoverTabsComponent,
|
|
} from './popovers/popover-examples.component';
|
|
import { TooltipComponent } from './tooltip/tooltip.component';
|
|
|
|
|
|
const COMPONENTS = [
|
|
ModalOverlaysComponent,
|
|
ToastrComponent,
|
|
DialogComponent,
|
|
ShowcaseDialogComponent,
|
|
DialogNamePromptComponent,
|
|
WindowComponent,
|
|
WindowFormComponent,
|
|
PopoversComponent,
|
|
NgxPopoverCardComponent,
|
|
NgxPopoverFormComponent,
|
|
NgxPopoverTabsComponent,
|
|
TooltipComponent,
|
|
];
|
|
|
|
const ENTRY_COMPONENTS = [
|
|
ShowcaseDialogComponent,
|
|
DialogNamePromptComponent,
|
|
WindowFormComponent,
|
|
NgxPopoverCardComponent,
|
|
NgxPopoverFormComponent,
|
|
NgxPopoverTabsComponent,
|
|
];
|
|
|
|
const MODULES = [
|
|
FormsModule,
|
|
ThemeModule,
|
|
ModalOverlaysRoutingModule,
|
|
NbDialogModule.forChild(),
|
|
NbWindowModule.forChild(),
|
|
NbCardModule,
|
|
NbCheckboxModule,
|
|
NbTabsetModule,
|
|
NbPopoverModule,
|
|
NbButtonModule,
|
|
NbInputModule,
|
|
NbSelectModule,
|
|
NbTooltipModule,
|
|
];
|
|
|
|
const SERVICES = [
|
|
];
|
|
|
|
@NgModule({
|
|
imports: [
|
|
...MODULES,
|
|
],
|
|
declarations: [
|
|
...COMPONENTS,
|
|
],
|
|
providers: [
|
|
...SERVICES,
|
|
],
|
|
})
|
|
export class ModalOverlaysModule {
|
|
}
|