Skip to content

Commit dbc0f19

Browse files
committed
Release 2.0.0
1 parent 30d027e commit dbc0f19

32 files changed

+178
-112
lines changed

CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,27 @@
1+
## 2.0.0 (28.02.2022)
2+
3+
### Breaking changes:
4+
5+
- Added support for Angular 13, this Angular version is now required,
6+
- Sidenav - removed support for automatic item expansion based on an active link ([in our documentation](https://mdbootstrap.com/docs/b5/angular/navigation/sidenav/) you can find information on how to achieve this effect using methods provided by Angular Router).
7+
8+
### Dependencies:
9+
10+
- Updated Font Awesome to v6.0.0
11+
12+
### Fixes and improvements:
13+
14+
- Toasts/Alerts - resolved problem with positioning when stacking and position bottom options are used,
15+
- Select/Datepicker - resolved problems with input, label and icons styles when `form-white` class is used on `mdb-form-control` component,
16+
- Select - resolved problem with selection when multiple options have the same label (in some cases component incorrectly displayed option value instead of option label in input),
17+
- Datatable pagination - component will now display correct information when data source is empty.
18+
19+
### New features:
20+
21+
- Tabs - added new `[navColumnClass]` and `[contentColumnClass]` inputs that allow to customize width of the navigation and content sections in vertical mode.
22+
23+
---
24+
125
## 1.6.1 (24.01.2022)
226

327
### Optimization:

README.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MDB 5 Angular
22

3-
Version: FREE 1.6.1
3+
Version: FREE 2.0.0
44

55
Documentation:
66
https://mdbootstrap.com/docs/b5/angular/

package-lock.json

Lines changed: 5 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mdb-angular-ui-kit-free",
3-
"version": "1.6.1",
3+
"version": "2.0.0",
44
"scripts": {
55
"ng": "ng",
66
"start": "ng serve",

projects/mdb-angular-ui-kit/CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,27 @@
1+
## 2.0.0 (28.02.2022)
2+
3+
### Breaking changes:
4+
5+
- Added support for Angular 13, this Angular version is now required,
6+
- Sidenav - removed support for automatic item expansion based on an active link ([in our documentation](https://mdbootstrap.com/docs/b5/angular/navigation/sidenav/) you can find information on how to achieve this effect using methods provided by Angular Router).
7+
8+
### Dependencies:
9+
10+
- Updated Font Awesome to v6.0.0
11+
12+
### Fixes and improvements:
13+
14+
- Toasts/Alerts - resolved problem with positioning when stacking and position bottom options are used,
15+
- Select/Datepicker - resolved problems with input, label and icons styles when `form-white` class is used on `mdb-form-control` component,
16+
- Select - resolved problem with selection when multiple options have the same label (in some cases component incorrectly displayed option value instead of option label in input),
17+
- Datatable pagination - component will now display correct information when data source is empty.
18+
19+
### New features:
20+
21+
- Tabs - added new `[navColumnClass]` and `[contentColumnClass]` inputs that allow to customize width of the navigation and content sections in vertical mode.
22+
23+
---
24+
125
## 1.6.1 (24.01.2022)
226

327
### Optimization:

projects/mdb-angular-ui-kit/accordion/accordion.spec.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -64,10 +64,10 @@ describe('MDB Accordion', () => {
6464

6565
beforeEach(() => {
6666
TestBed.configureTestingModule({
67-
declarations: [TestAccordionComponent],
68-
imports: [MdbAccordionModule],
69-
teardown: { destroyAfterEach: false }
70-
});
67+
declarations: [TestAccordionComponent],
68+
imports: [MdbAccordionModule],
69+
teardown: { destroyAfterEach: false },
70+
});
7171
fixture = TestBed.createComponent(TestAccordionComponent);
7272
fixture.detectChanges();
7373
component = fixture.componentInstance;

projects/mdb-angular-ui-kit/assets/scss/free/_buttons.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,7 @@
335335
margin-bottom: $fixed-action-btn-li-margin-bottom;
336336
margin-left: auto;
337337
&:first-of-type {
338-
margin-top: $fixed-action-btn-li-margin-bottom / 2;
338+
margin-top: $fixed-action-btn-li-margin-bottom * 0.5;
339339
}
340340
}
341341
a {

projects/mdb-angular-ui-kit/carousel/carousel.spec.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -57,10 +57,10 @@ describe('MDB Carousel', () => {
5757

5858
beforeEach(() => {
5959
TestBed.configureTestingModule({
60-
declarations: [CarouselTestComponent],
61-
imports: [MdbCarouselModule],
62-
teardown: { destroyAfterEach: false }
63-
});
60+
declarations: [CarouselTestComponent],
61+
imports: [MdbCarouselModule],
62+
teardown: { destroyAfterEach: false },
63+
});
6464

6565
fixture = TestBed.createComponent(CarouselTestComponent);
6666
component = fixture.componentInstance;

projects/mdb-angular-ui-kit/checkbox/checkbox.directive.spec.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ describe('MDB Checkbox', () => {
1313

1414
beforeEach(() => {
1515
TestBed.configureTestingModule({
16-
declarations: [BasicCheckboxComponent],
17-
imports: [MdbCheckboxModule],
18-
teardown: { destroyAfterEach: false }
19-
});
16+
declarations: [BasicCheckboxComponent],
17+
imports: [MdbCheckboxModule],
18+
teardown: { destroyAfterEach: false },
19+
});
2020

2121
fixture = TestBed.createComponent(BasicCheckboxComponent);
2222
checkbox = fixture.componentInstance;

projects/mdb-angular-ui-kit/collapse/collapse.directive.spec.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@ describe('MDB Collapse', () => {
2727

2828
beforeEach(() => {
2929
TestBed.configureTestingModule({
30-
declarations: [TestCollapseComponent],
31-
imports: [MdbCollapseModule],
32-
teardown: { destroyAfterEach: false }
33-
});
30+
declarations: [TestCollapseComponent],
31+
imports: [MdbCollapseModule],
32+
teardown: { destroyAfterEach: false },
33+
});
3434
fixture = TestBed.createComponent(TestCollapseComponent);
3535
fixture.detectChanges();
3636
component = fixture.componentInstance;

0 commit comments

Comments
 (0)