Skip to content

14.0.0

Compare
Choose a tag to compare
@maxokorokov maxokorokov released this 07 Dec 14:55
· 206 commits to master since this release

This release bumps minimum supported versions to Angular 15.0.0, Bootstrap 5.2.3 and Popper 2.11.6.

It also introduces support for standalone components, which means that you can now import ng-bootstrap inside your
standalone components in 3 ways:

imports: [NgbModule]                     // import all ng-bootstrap components
imports: [NgbNavModule]                  // import a certain type of components
imports: [NgbNav, NgbNavOutlet, etc... ] // import required components individually

The demo site, stackblitzes and documentation have been updated to reflect these changes.

Bug Fixes

  • accordion: add missing forwardRef (9e01092)
  • datepicker: add missing forwardRef (1e68c9b)

Features

  • migrate all components and directives to standalone (5e6d11c)