How to use angular-bootstrap-md - 10 common examples

To help you get started, we’ve selected a few angular-bootstrap-md 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 systers / systers.github.io / src / app / contributors / contributors.component.spec.ts View on Github external
beforeEach(async(() => {
    TestBed.configureTestingModule({
      declarations: [
        ContributorsComponent,
        pipe,
        GetFirstWord
      ],
      imports: [
        FormsModule,
        MDBBootstrapModule.forRoot(),
        NgbModule.forRoot()
      ]
    })
    .compileComponents();
  }));
github systers / systers.github.io / src / app / app.module.ts View on Github external
ProjectsComponent,
    NavbarComponent,
    FooterComponent,
    ContactComponent,
    FAQComponent,
    NewcomersComponent,
    ContributorsComponent,
    pipe,
    GetFirstWord,
    ProgramsComponent
  ],
  imports: [
    BrowserModule,
    BrowserAnimationsModule,
    HttpModule,
    MDBBootstrapModule.forRoot(),
    FormsModule,
    AppRoutingModule,
    HttpClientModule,
    NgbModule.forRoot(),
    AgmCoreModule.forRoot({
      apiKey: 'Your_api_key'
    })
  ],
  providers: [CommonService, IssueService],
  bootstrap: [AppComponent],
  schemas: [ NO_ERRORS_SCHEMA ]
})
export class AppModule { }
github Lmnoppy / Scrippy / Plugins / Firefox-Angular5 / src / app / app.module.ts View on Github external
@NgModule({
  declarations: [
    AppComponent,
    OptionsComponent,
    PopupComponent,
    BackgroundComponent,
    NavbarComponent
  ],
  imports: [
    BrowserModule,
    AppRoutingModule,
    ReactiveFormsModule,
    CollapseModule.forRoot(),
    MDBBootstrapModule.forRoot()
  ],
  schemas: [ NO_ERRORS_SCHEMA],
  providers: [],
  bootstrap: [AppComponent]
})

export class AppModule { }
github ikismail / Angular-ShoppingCart / src / app / shared / shared.module.ts View on Github external
import { AdminGaurd } from "./services/admin-gaurd";
import { AuthGuard } from "./services/auth_gaurd";
import { AuthService } from "./services/auth.service";
import { UserService } from "./services/user.service";
import { TranslatePipe } from "./pipes/translate.pipe";
import { NgxContentLoadingModule } from "ngx-content-loading";
import { CardLoaderComponent } from "./components/card-loader/card-loader.component";
import { MomentTimeAgoPipe } from "./pipes/moment-time-ago.pipe";
import { DragDropModule } from "@angular/cdk/drag-drop";
import { ScrollingModule } from "@angular/cdk/scrolling";
import { CdkTableModule } from "@angular/cdk/table";
import { CdkTreeModule } from "@angular/cdk/tree";
@NgModule({
	imports: [
		CommonModule,
		MDBBootstrapModule.forRoot(),
		AngularFireModule.initializeApp(FireBaseConfig),
		AngularFireDatabaseModule,
		AngularFireAuthModule,
		FormsModule,
		HttpClientModule,
		RouterModule,
		OwlModule,
		NgxPaginationModule,
		AgmCoreModule.forRoot({
			apiKey: "AIzaSyDMbxW3MlwUP2vrAZVJyu7pYqZa1LthvTE"
		}),
		NgxContentLoadingModule
	],
	declarations: [
		NoProductsFoundComponent,
		FilterByBrandPipe,
github systers / systers.github.io / src / app / projects / projects.component.spec.ts View on Github external
beforeEach(async(() => {
    TestBed.configureTestingModule({
      declarations: [ ProjectsComponent ],
      imports: [
        MDBBootstrapModule.forRoot(),
        NgbModule.forRoot()
      ]
    })
    .compileComponents();
  }));
github darkslayer92 / E-Commerce-Application-Nodejs-Angular-8-MYSQL / frontend / src / app / app.module.ts View on Github external
SmallCartComponent,
    LoginComponent,
    RegisterComponent,
    PaypalCheckoutComponent,
    OrderConfirmationComponent,
    AccountComponent,
    CheckoutComponent,
    CheckoutNavbarComponent,
    ReviewComponent,
    CustomerInfoComponent,
    PaymentInfoComponent
  ],
  imports: [
    BrowserModule,
    AppRoutingModule,
    MDBBootstrapModule.forRoot(),
    HttpClientModule,
    FormsModule,
    ReactiveFormsModule,
    BrowserAnimationsModule,
    NgbToastModule,
    ToastrModule.forRoot(),
    NgxPayPalModule 
  ],
  providers: [],
  bootstrap: [AppComponent]
})
export class AppModule { }
github MishaPetrov / CANVASS / src / app / app.module.ts View on Github external
LoginComponent,
    FeedComponent,
    AddPollComponent,
    TopbarComponent,
    ProfileComponent,
    MyPollsComponent
  ],
  imports: [
    BrowserModule,
    FormsModule,
    HttpModule,
    AngularFireModule.initializeApp(firebaseConfig),
    AngularFireDatabaseModule,
    AngularFireAuthModule,
    routing,
    MDBBootstrapModule.forRoot()
  ],
  schemas: [ NO_ERRORS_SCHEMA ],
  providers: [AuthenticationService],
  bootstrap: [AppComponent]
})
export class AppModule { }
github systers / systers.github.io / src / app / contact / contact.component.spec.ts View on Github external
beforeEach(async(() => {
    TestBed.configureTestingModule({
      declarations: [ ContactComponent ],
      imports: [
        MDBBootstrapModule.forRoot(),
      ]
    })
    .compileComponents();
  }));
github mdbootstrap / Angular-Bootstrap-with-Material-Design / projects / mdb-demo / src / app / app.module.ts View on Github external
SearchTableComponent,
    ModalBasicComponent,
    ModalAdvancedComponent,
    ModalEventsComponent,
    ModalFormsComponent,
    ModalStylesComponent,
    MapsComponent,
    CssMainComponent,
    HoverComponent,
    ShadowsComponent,
    MasksComponent,
    PaginationApiComponent
  ],
  imports: [
    BrowserModule.withServerTransition({ appId: 'serverApp' }),
    MDBBootstrapModule.forRoot(),
    RoutesModule,
    FormsModule,
    BrowserAnimationsModule,
    ReactiveFormsModule,
    AgmCoreModule.forRoot({}),
    HttpModule
  ],
  providers: [SharedService],
  bootstrap: [AppComponent]
})
export class AppModule { }
github systers / systers.github.io / src / app / newcomers / newcomers.component.spec.ts View on Github external
beforeEach(async(() => {
    TestBed.configureTestingModule({
      declarations: [ NewcomersComponent ],
      imports: [
        MDBBootstrapModule.forRoot(),
        NgbModule.forRoot()
      ]
    })
    .compileComponents();
  }));

angular-bootstrap-md

Bootstrap 4 & Angular 15 UI KIT - 700+ components, MIT license, simple installation.

MIT
Latest version published 1 year ago

Package Health Score

60 / 100
Full package analysis

Similar packages