Skip to content

Commit c0ea836

Browse files
committed
Release 9.0.1
1 parent 0dcfd14 commit c0ea836

File tree

10 files changed

+1007
-476
lines changed

10 files changed

+1007
-476
lines changed

angular-bootstrap-md-9.0.0.tgz

-1.5 MB
Binary file not shown.

angular-bootstrap-md-9.0.1.tgz

1.5 MB
Binary file not shown.

changelog

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
9.0.1
2+
In version 9.0.1 we added some fixes for components and SSR, check what changed below:
3+
4+
**Fixes:**
5+
6+
* Dynamic modal - resolved problem with "Can't bind to 'role' since it isn't a known property of 'null'" warning,
7+
* Datepicker - resolved problem with footer dynamic position changes when switching between mohs,
8+
* Switch - resolved problem with overflow sles
9+
* Universal (server side rendering) - resoed problem with "KeyboardEvent is not defined error.
10+
11+
**Docs:**
12+
13+
* Added new guide on how to use Angular Universal in Angular 9 app.
14+
115
9.0.0
216
In version 9.0.0 we added support for Angular 9. This update introduces breaking changes, check what changed below:
317

package-lock.json

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

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular-bootstrap-md-lib",
3-
"version": "9.0.0",
3+
"version": "9.0.1",
44
"scripts": {
55
"ng": "ng",
66
"start": "ng serve",
@@ -32,7 +32,7 @@
3232
"@angular/router": "~9.0.4",
3333
"@fortawesome/fontawesome-free": "^5.6.3",
3434
"@types/chart.js": "^2.7.42",
35-
"angular-bootstrap-md": "file:angular-bootstrap-md-9.0.0.tgz",
35+
"angular-bootstrap-md": "file:angular-bootstrap-md-9.0.1.tgz",
3636
"chart.js": "^2.5.0",
3737
"core-js": "^2.5.4",
3838
"hammerjs": "^2.0.8",

projects/angular-bootstrap-md/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "angular-bootstrap-md",
33
"repository": "https://github.com/mdbootstrap/Angular-Bootstrap-with-Material-Design",
4-
"version": "9.0.0",
4+
"version": "9.0.1",
55
"schematics": "./schematics/collection.json",
66
"ng-update": {
77
"migrations": "./schematics/migration.json"

projects/angular-bootstrap-md/src/lib/assets/scss/core/msc/_forms.scss

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -237,6 +237,11 @@
237237
}
238238
}
239239

240+
.switch label {
241+
text-overflow: unset;
242+
overflow: unset;
243+
}
244+
240245
.prefix {
241246
position: absolute;
242247
transition: $input-prefix-transition;

projects/angular-bootstrap-md/src/lib/changelog

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
9.0.1
2+
In version 9.0.1 we added some fixes for components and SSR, check what changed below:
3+
4+
**Fixes:**
5+
6+
* Dynamic modal - resolved problem with "Can't bind to 'role' since it isn't a known property of 'null'" warning,
7+
* Datepicker - resolved problem with footer dynamic position changes when switching between mohs,
8+
* Switch - resolved problem with overflow sles
9+
* Universal (server side rendering) - resoed problem with "KeyboardEvent is not defined error.
10+
11+
**Docs:**
12+
13+
* Added new guide on how to use Angular Universal in Angular 9 app.
14+
115
9.0.0
216
In version 9.0.0 we added support for Angular 9. This update introduces breaking changes, check what changed below:
317

projects/angular-bootstrap-md/src/lib/free/carousel/carousel.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -495,7 +495,7 @@ export class CarouselComponent implements OnDestroy, AfterViewInit {
495495
}
496496
}
497497

498-
@HostListener('keyup', ['$event']) keyboardControl(event: KeyboardEvent) {
498+
@HostListener('keyup', ['$event']) keyboardControl(event: any) {
499499
if (this.keyboard) {
500500
// tslint:disable-next-line: deprecation
501501
if (event.keyCode === RIGHT_ARROW) {

projects/angular-bootstrap-md/src/lib/free/modals/modalContainer.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ import { MDBModalService } from './modal.service';
2222
export class ModalContainerComponent implements OnInit, OnDestroy {
2323
modalClass = 'modal';
2424
@HostBinding('tabindex') tabindex = -1;
25-
@HostBinding('role') role = 'dialog';
25+
@HostBinding('attr.role') role = 'dialog';
2626
@HostBinding('class.modal') modal = true;
2727

2828
private mdbModalService: MDBModalService;

0 commit comments

Comments
 (0)