You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This release bumps minimum required versions to Angular `17.0.0` and Bootstrap `5.3.2`.
19
4
5
+
Main features:
6
+
- dark mode support for all components and demo site.
7
+
- new stacked progressbar markup in Bootstrap `5.3` allowed us to do the long-standing [stacked progressbar](https://ng-bootstrap.github.io/#/components/progressbar/examples#stacked) feature request.
8
+
-[Ethiopian calendar](https://ng-bootstrap.github.io/#/components/datepicker/calendars#ethiopian) for datepicker.
9
+
- old component-based accordion implementation is removed (it was deprecated in `14.1.0` in favor of [directive-based implementation](https://ng-bootstrap.github.io/#/components/accordion/overview)).
10
+
- we're using new control flow syntax internally and for all demos.
20
11
21
-
### Bug Fixes
22
-
23
-
***datepicker:**`startDate` type should accept dates with days ([#4618](https://github.com/ng-bootstrap/ng-bootstrap/issues/4618)) ([81ec20a](https://github.com/ng-bootstrap/ng-bootstrap/commit/81ec20aa440b3fe9cecd2b1cd3754fa8b26a34cd)), closes [#4616](https://github.com/ng-bootstrap/ng-bootstrap/issues/4616)
This release bumps minimum required versions to Angular `17.0.0`, Bootstrap `5.3.2` and introduces dark mode support for components and demo site.
30
-
31
-
It also removes old component-based accordion implementation, which was deprecated in `14.1.0` in favor of [directive-based implementation](https://ng-bootstrap.github.io/#/components/accordion/overview).
12
+
Please make sure to check the `BREAKING CHANGES` section below.
32
13
33
14
### Bug Fixes
34
15
@@ -38,12 +19,19 @@ It also removes old component-based accordion implementation, which was deprecat
38
19
***nav:**`NgbNavLinkBase` matches multiple times ([02ab48b](https://github.com/ng-bootstrap/ng-bootstrap/commit/02ab48b26d9fe0d6e08e6eb88c9ec77eda5c542e)), closes [#4594](https://github.com/ng-bootstrap/ng-bootstrap/issues/4594)
39
20
***schematics:** use `getMainFilePath()` to get main project file ([acd635a](https://github.com/ng-bootstrap/ng-bootstrap/commit/acd635ac5519e398f0781ab5526cd66581c74337))
40
21
***tooltip:** add offset to align with Bootstrap 5.3 ([6fd04af](https://github.com/ng-bootstrap/ng-bootstrap/commit/6fd04af5550e60aabd307e40afbcab001c4cbe35)), closes [#4574](https://github.com/ng-bootstrap/ng-bootstrap/issues/4574)
22
+
***datepicker:**`startDate` type should accept dates with days ([#4618](https://github.com/ng-bootstrap/ng-bootstrap/issues/4618)) ([81ec20a](https://github.com/ng-bootstrap/ng-bootstrap/commit/81ec20aa440b3fe9cecd2b1cd3754fa8b26a34cd)), closes [#4616](https://github.com/ng-bootstrap/ng-bootstrap/issues/4616)
23
+
***accordion:** allow querying body template ([#4625](https://github.com/ng-bootstrap/ng-bootstrap/issues/4625)) ([472d842](https://github.com/ng-bootstrap/ng-bootstrap/commit/472d84234d6a6abd6ff20e8f4ca643aca43f77f1)), closes [#4623](https://github.com/ng-bootstrap/ng-bootstrap/issues/4623)
***nav:** correct focus handing with keyboard ([184b6bd](https://github.com/ng-bootstrap/ng-bootstrap/commit/184b6bd1ff5a69bb17930cda7e6b39d94a15ac59))
41
26
42
27
43
28
### Features
44
29
45
30
* bootstrap 5.3 and dark mode ([99c2162](https://github.com/ng-bootstrap/ng-bootstrap/commit/99c2162785cc97c30c5c1b9124205d0371b53e37)), closes [#4450](https://github.com/ng-bootstrap/ng-bootstrap/issues/4450)
46
31
* add axe a11y tests of the demo site ([#4588](https://github.com/ng-bootstrap/ng-bootstrap/issues/4588)) ([b573a2b](https://github.com/ng-bootstrap/ng-bootstrap/commit/b573a2b0d610d07ab57d7c04a01a65540267d108))
***datepicker:** add ethiopian date picker ([bf02fb0](https://github.com/ng-bootstrap/ng-bootstrap/commit/bf02fb0f700d4f456a943135a72b0ff59b0ec28d)), closes [#4499](https://github.com/ng-bootstrap/ng-bootstrap/issues/4499)
34
+
* migrate to the new control flow syntax ([6c3570b](https://github.com/ng-bootstrap/ng-bootstrap/commit/6c3570b1897181569f6c8ed4107250e861c507dd))
47
35
***accordion:** remove `type` from configuration ([ed7732a](https://github.com/ng-bootstrap/ng-bootstrap/commit/ed7732a08ce4b60c79ac8d981edf77d524802f59))
48
36
***accordion:** remove component-based version ([7aab9e3](https://github.com/ng-bootstrap/ng-bootstrap/commit/7aab9e3634c52d2578fad478cf1156300c3b5839))
@@ -54,8 +42,10 @@ It also removes old component-based accordion implementation, which was deprecat
54
42
* minimum required versions are now Angular `17.0.0`, Bootstrap `5.3.2` and Popper `2.11.8`
55
43
***accordion:** removed component-based accordion. It was deprecated in `14.1.0`
56
44
***accordion:** removed `type` property from the `NgbAccordionConfig`. It was deprecated in `14.1.0`.
57
-
***nav:**` NgbNavbar` directive is removed, as it is no longer required. It was deprecated in `14.2.0`.
58
45
* we use `inject` function internally more than before, so constructor signatures have changed for all components. If you extend our components (and you really shouldn't do it), you might need to update your code.
46
+
***nav:**` NgbNavbar` directive is removed, as it is no longer required. It was deprecated in `14.2.0`.
47
+
***nav:** default value for the `@Input() keyboard: boolean | 'changeWithArrows'` was changed from `false` to `true`, meaning that all navs are now keyboard accessible by default and focus between navs moves with arrow keys. Focusing behavior follows the WAI-ARIA tab recommendation as well as Bootstrap's nav implementation. To turn off keyboard support set `keyboard` to `false` either on the individual `NgbNav` or via `NgbNavConfig`
0 commit comments