yarn @ng-bootstrap/ng-bootstrap 20.0.0-rc.0

4 hours ago

This release candidate version bumps minimum required versions to Angular 21.0.0

Features

This release includes component entry points. This allows applications importing ng-bootstrap to speed up their build and have a slightly smaller bundle.

For example, you can use the ng-bootstrap pagination component like this:

import { NgbPagination } from '@ng-bootstrap/ng-bootstrap/pagination';

@Component({
  template: `<ngb-pagination [collectionSize]="50" />`,
  imports: [NgbPagination]
}
export class MyComponent {}

Please note that this is not a breaking change, you will still be able to import everything from the main entrypoint.

Don't miss a new ng-bootstrap release

NewReleases is sending notifications on new releases.