@ng-bootstrap/ng-bootstrap
Advanced tools
Changelog
1.0.0-alpha.11 (2016-11-03)
navigation='none'
and not [showNavigation]='false'
as previously<a name="1.0.0-alpha.10"></a>
Changelog
1.0.0-alpha.10 (2016-10-28)
<a name="1.0.0-alpha.9"></a>
Changelog
1.0.0-alpha.9 (2016-10-21)
<a name="1.0.0-alpha.8"></a>
Changelog
1.0.0-alpha.8 (2016-10-14)
<a name="1.0.0-alpha.7"></a>
Changelog
1.0.0-alpha.7 (2016-10-10)
This release restores full AoT compatibility and has proper support for lazy-loaded NgbModule
. On top of this we are
shipping a lot of new features and bug fixes - details below.
NgbModule
module must now import using the forRoot() static method. Check the updated installation instructions for more details.Before:
0=Jan; 1=Feb; ... 11=Dec
0=Sun; 1=Mon; ... 6=Sat
After:
1=Jan; 2=Feb; ... 12=Dec
1=Mon; 2=Tue; ... 7=Sun
<a name="1.0.0-alpha.6"></a>
Changelog
1.0.0-alpha.6 (2016-09-23)
NgbSelfClosingAlert
component has been removed.
Check the self-closing alert demo to know how to achieve the same thing with NgbAlert
.change
event on the accordion level was renamed to panelChange
.Before:
<ngb-accordion (change)="...">
After:
<ngb-accordion (panelChange)="...">
Before:
<div ngbPopover="..." title="...">
After:
<div ngbPopover="..." popoverTitle="...">
change
event on the tabset level was renamed to tabChange
.Before:
<ngb-tabset (change)="...">
After:
<ngb-tabset (tabChange)="...">
<a name="1.0.0-alpha.5"></a>
Changelog
1.0.0-alpha.5 (2016-09-15)
This release brings support for datepicker in popups - we believe that there is a solid widget here! Alpha.5 changes content of npm package to enable AoT compilation with tree-shaking. There are also small features and bug fixes for the existing widgets - see the details below.
selectItem
event was changed - now it is
an object implementing the NgbTypeaheadSelectItemEvent
. You can easily migrate your existing
code by changing:<input [ngbTypeahead]="find" (selectItem)="onSelect($event)"/>
to
<input [ngbTypeahead]="find" (selectItem)="onSelect($event.item)"/>
package.json
's main
entry pointing to an UMD bundle (primarily for node and webpack 1 users).If you are using SystemJS, you should adjust your configuration to point to the UMD bundle.
<a name="1.0.0-alpha.4"></a>
Changelog
1.0.0-alpha.4 (2016-09-07)
This release brings a new component - datepicker! Additionally all widgets now support global config through an injectable service. There are also small features and bug fixes for the existing widgets - see the details below.
<a name="1.0.0-alpha.3"></a>
Changelog
1.0.0-alpha.3 (2016-08-30)
This release adds support for the modal service. Cross-browser compatibility was reviewed and improved. We now support all the browsers supported by Angular 2 and Bootstrap, including IE9. There are also small features and bug fixes for the existing widgets - see the details below.
<a name="1.0.0-alpha.2"></a>
Changelog
1.0.0-alpha.2 (2016-08-10)
This release makes the code compatible with Angular 2.0.0-rc.5. There are also small features and bug fixes for the existing widgets - see the details below.
[attr]="value"
(for example: <ngb-pagination [pageSize]="20" ...></ngb-pagination>
instead of <ngb-pagination pageSize="20" ...></ngb-pagination>
), and rounding is not applied anymore.<ngb-progressbar striped></ngb-progressbar>
). This is not supported anymore.
All boolean inputs must now consistently be set using the syntax [attr]="value"
(for example: <ngb-progressbar [striped]="true"></ngb-progressbar>
).@NgModule
s to setup your application. Check https://ng-bootstrap.github.io/#/getting-started for more details.<a name="1.0.0-alpha.1"></a>