Skip to content

Commit cc2dae2

Browse files
committed
Release 1.2.0
1 parent 9121285 commit cc2dae2

File tree

7 files changed

+24
-5
lines changed

7 files changed

+24
-5
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
## 1.2.0 (20.09.2021)
2+
3+
### New
4+
5+
- [Calendar](https://mdbootstrap.com/docs/b5/angular/plugins/calendar)
6+
- [Table Editor](https://mdbootstrap.com/docs/b5/angular/plugins/table-editor)
7+
8+
---
9+
110
## 1.1.0 (06.09.2021)
211

312
### Fixes and improvements:

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.1.0
3+
Version: FREE 1.2.0
44

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

package-lock.json

Lines changed: 1 addition & 1 deletion
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.1.0",
3+
"version": "1.2.0",
44
"scripts": {
55
"ng": "ng",
66
"start": "ng serve",

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

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
## 1.2.0 (20.09.2021)
2+
3+
### New
4+
5+
- [Calendar](https://mdbootstrap.com/docs/b5/angular/plugins/calendar)
6+
- [Table Editor](https://mdbootstrap.com/docs/b5/angular/plugins/table-editor)
7+
8+
---
9+
110
## 1.1.0 (06.09.2021)
211

312
### Fixes and improvements:

projects/mdb-angular-ui-kit/dropdown/dropdown.directive.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,8 @@ export class MdbDropdownDirective implements OnDestroy, AfterContentInit {
241241
const target = event.target as HTMLElement;
242242
const isInsideMenu = this._dropdownMenu.nativeElement.contains(target);
243243
const notTogglerIcon = !this._dropdownToggle.nativeElement.contains(target);
244-
const notCustomContent = !isInsideMenu || (target.classList && target.classList.contains('dropdown-item'));
244+
const notCustomContent =
245+
!isInsideMenu || (target.classList && target.classList.contains('dropdown-item'));
245246
const notOrigin = target !== origin;
246247
return notOrigin && notTogglerIcon && notCustomContent;
247248
}),

projects/mdb-angular-ui-kit/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"repository": "https://github.com/mdbootstrap/mdb-angular-ui-kit",
44
"author": "MDBootstrap",
55
"license": "MIT",
6-
"version": "1.1.0",
6+
"version": "1.2.0",
77
"peerDependencies": {
88
"@angular/common": "^12.0.0",
99
"@angular/core": "^12.0.0",

0 commit comments

Comments
 (0)