angular-bootstrap-ui
TypeScript icon, indicating that this package has built-in type declarations

6.0.5 • Public • Published

angular-bootstrap-ui

Complete UI toolkit using bootstrap 4 for Angular 5+.

Built on top of ngx-bootstrap.

Changelog

Examples

Installation

Child module

@NgModule({
  imports: [
    AngularBootstrapUiModule.forChild(),

    TranslateModule.forChild(),
  ],
})

export class ChildModule {
  constructor(
    translate: TranslateService,
  ) {
    // NOTE: merge translations, do not overwrite
    translate.setTranslation('xx', {}, true);
    translate.use('xx');
  }
}

Root module

@NgModule({
  imports: [
    AngularBootstrapUiModule.forRoot(),

    TranslateModule.forRoot(),
  ],
})

export class RootModule {
  constructor(
    translate: TranslateService,
  ) {
    // NOTE: merge translations, do not overwrite
    translate.setTranslation('xx', {}, true);
    translate.use('xx');
  }
}

Documentation

Dependencies notes

ngx-toastr

We add just design.

This module require you to insert in your HTML:

<ngx-toastr></ngx-toastr>

And at root module

import { ToastrModule } from "ngx-toastr";
 
@NgModule({
  imports: [
    ToastrModule.forRoot()
    //...
  ]
})
//...

ngx-bootstrap

We configure ngx-bootstrap as bootstrap 4 mode.

To configure datepicker locale read datepicker/locales

Readme

Keywords

none

Package Sidebar

Install

npm i angular-bootstrap-ui

Weekly Downloads

18

Version

6.0.5

License

none

Unpacked Size

2.17 MB

Total Files

166

Last publish

Collaborators

  • llafuente