How to use the @nebular/theme.NbDialogModule.forChild function in @nebular/theme

To help you get started, we’ve selected a few @nebular/theme examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github akveo / ngx-admin / src / app / pages / modal-overlays / modal-overlays.module.ts View on Github external
];

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,
];

const SERVICES = [
];

@NgModule({
  imports: [
    ...MODULES,
github garrylachman / ElectroCRUD / src / app / accounts / accounts.module.ts View on Github external
import { AddEditAccountComponent } from './add-edit-account/add-edit-account.component';
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
import { NgxMaskModule } from 'ngx-mask';

@NgModule({
  declarations: [AccountsComponent, AddEditAccountComponent],
  imports: [
    CommonModule,
    AccountsRoutingModule,
    NbCardModule,
    NbIconModule,
    NgxDatatableModule,
    NbInputModule,
    NbButtonModule,
    NbTooltipModule,
    NbDialogModule.forChild(),
    NbStepperModule,
    FormsModule,
    ReactiveFormsModule,
    NbSelectModule,
    NbCheckboxModule,
    NgxMaskModule.forChild(),
    NbAlertModule,
    NbActionsModule,
    NbSpinnerModule,
    NbLayoutModule,
  ],
  entryComponents: [AccountsComponent, AddEditAccountComponent]
})
export class AccountsModule { }