6.0.5 • Published 6 years ago

angular-bootstrap-ui v6.0.5

Weekly downloads
23
License
-
Repository
-
Last release
6 years ago

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

6.0.5

6 years ago

6.0.4

6 years ago

6.0.3

6 years ago

6.0.2

6 years ago

6.0.1

6 years ago

6.0.0

6 years ago

1.3.1

6 years ago

1.3.0

6 years ago

1.2.1

6 years ago

1.2.0

6 years ago

1.1.1

6 years ago

1.1.0

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago

0.0.7

6 years ago

0.0.1

6 years ago