How to use the @coreui/angular.AppBreadcrumbModule.forRoot function in @coreui/angular

To help you get started, we’ve selected a few @coreui/angular 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 ahrnee / nestjs-bff / frontend / src / app / app.module.ts View on Github external
// Import 3rd party components
import { BsDropdownModule } from 'ngx-bootstrap/dropdown';
import { TabsModule } from 'ngx-bootstrap/tabs';
import { ChartsModule } from 'ng2-charts/ng2-charts';
import { ErrorInterceptor, JwtInterceptor } from './interceptors';
import { AuthenticationService } from './services';
import { AuthGuard } from './guards';
import { HTTP_INTERCEPTORS, HttpClientModule } from '@angular/common/http';

@NgModule({
  imports: [
    HttpClientModule,
    BrowserModule,
    AppRoutingModule,
    AppAsideModule,
    AppBreadcrumbModule.forRoot(),
    AppFooterModule,
    AppHeaderModule,
    AppSidebarModule,
    FormsModule,
    ReactiveFormsModule,
    PerfectScrollbarModule,
    BsDropdownModule.forRoot(),
    TabsModule.forRoot(),
    ChartsModule,
  ],
  declarations: [AppComponent, ...APP_CONTAINERS, P404Component, P500Component, LoginComponent, RegisterComponent],
  providers: [
    {
      provide: LocationStrategy,
      useClass: HashLocationStrategy,
    },
github aspnetrun / run-aspnetcore-cqrs / src / AspnetRun.Web / src / app / core / core.module.ts View on Github external
const ngWizardConfig: NgWizardConfig = {
  theme: THEME.default
};

@NgModule({
  declarations: [
    ...APP_CONTAINERS,
  ],
  imports: [
    RouterModule,
    NgxUiLoaderModule,
    //NgxUiLoaderRouterModule, // import this module for showing loader automatically when navigating between app routes
    NgxUiLoaderHttpModule.forRoot({ showForeground: false }),
    ToastrModule.forRoot({ positionClass: 'toast-top-full-width', closeButton: true }),
    AppAsideModule,
    AppBreadcrumbModule.forRoot(),
    AppFooterModule,
    AppHeaderModule,
    AppSidebarModule,
    PerfectScrollbarModule,
    BsDropdownModule.forRoot(),
    TabsModule.forRoot(),
    NgWizardModule.forRoot(ngWizardConfig),
  ],
  exports: [
    RouterModule,
    HttpClientModule,
    NgxUiLoaderModule,
    NgWizardModule,
    LayoutComponent,
  ],
  providers: [
github ahrnee / nestjs-bff / frontend / src / app / app.module.ts View on Github external
import { BsDropdownModule } from 'ngx-bootstrap/dropdown';
import { TabsModule } from 'ngx-bootstrap/tabs';
import { ChartsModule } from 'ng2-charts/ng2-charts';
import { ErrorInterceptor, JwtInterceptor } from './interceptors';
import { AuthenticationService } from './services';
import { AuthGuard } from './guards';
import { HTTP_INTERCEPTORS, HttpClientModule } from '@angular/common/http';

@NgModule({
  imports: [
    Module,
    HttpClientModule,
    BrowserModule,
    AppRoutingModule,
    AppAsideModule,
    AppBreadcrumbModule.forRoot(),
    AppFooterModule,
    AppHeaderModule,
    AppSidebarModule,
    FormsModule,
    ReactiveFormsModule,
    PerfectScrollbarModule,
    BsDropdownModule.forRoot(),
    TabsModule.forRoot(),
    ChartsModule,
  ],
  declarations: [AppComponent, ...APP_CONTAINERS, P404Component, P500Component, LoginComponent, RegisterComponent],
  providers: [
    {
      provide: LocationStrategy,
      useClass: HashLocationStrategy,
    },
github Infosys / openIDP / ui / src / main / angular4src / src / app / app.module.ts View on Github external
SuccessComponent,
        TriggerServiceComponent,
        MailSuccessComponent,
        ReleaseConfigsComponent,
        ServicePortalComponent,
        ManageEnvironmentComponent,
        CreateLicenseComponent,
        NotificationInfoComponent,
        CreateOrganizationComponent,
    ],
    imports: [
        BrowserModule,
        BrowserAnimationsModule,
        DateTimePickerModule,
        AppAsideModule,
        AppBreadcrumbModule.forRoot(),
        AppFooterModule,
        AppHeaderModule,
        AppSidebarModule,
        PerfectScrollbarModule,
        CookieModule.forRoot(),
        HttpModule,
        Ng2TableModule,
        AngularMultiSelectModule,
        FormsModule,
        CommonModule,
        MomentModule,
        PaginationModule.forRoot(),
        TranslateModule.forRoot(
            {
                loader: {
                    provide: TranslateLoader,

@coreui/angular

CoreUI Components Library for Angular

MIT
Latest version published 7 days ago

Package Health Score

76 / 100
Full package analysis

Popular @coreui/angular functions