Skip to content

Commit 0f131b4

Browse files
author
a.idzikowski
committed
Release 10.0.0
1 parent 269683f commit 0f131b4

File tree

8 files changed

+41
-7
lines changed

8 files changed

+41
-7
lines changed

angular-bootstrap-md-10.0.0.tgz

1.04 MB
Binary file not shown.

angular-bootstrap-md-9.4.0.tgz

-1.52 MB
Binary file not shown.

changelog

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
10.0.0
2+
In version 10.0.0 we added support for Angular 10. This update introduces breaking changes, check what changed below:
3+
4+
**Breaking changes:**
5+
6+
* MDB Angular 10 requires Angular v10,
7+
* Tooltip - changed name of the isDisabled input to tooltipDisabled to avoid naming collisions with the inputs of other components,
8+
* Select, Autocomplete - adjusted appearance of arrow icon and clear buttons to maintain a consistent design in all form controls.
9+
10+
**Fixes:**
11+
12+
* Select 2 - resolved problem with setting initial value with ngModel
13+
14+
**New features:**
15+
16+
* Select 2 - added new label input for mdb-select-option component. If the input value is available, it will be displayed in the select input after option selection.
17+
118
9.4.0
219
In version 9.4.0 we added some new features and fixes for the existing components, check what changed below:
320

package-lock.json

Lines changed: 2 additions & 2 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.4.0",
3+
"version": "10.0.0",
44
"scripts": {
55
"ng": "ng",
66
"start": "ng serve",
@@ -32,7 +32,7 @@
3232
"@angular/router": "~10.1.1",
3333
"@fortawesome/fontawesome-free": "^5.6.3",
3434
"@types/chart.js": "^2.7.42",
35-
"angular-bootstrap-md": "file:angular-bootstrap-md-9.4.0.tgz",
35+
"angular-bootstrap-md": "file:angular-bootstrap-md-10.0.0.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.4.0",
4+
"version": "10.0.0",
55
"schematics": "./schematics/collection.json",
66
"ng-update": {
77
"migrations": "./schematics/migration.json"

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

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
10.0.0
2+
In version 10.0.0 we added support for Angular 10. This update introduces breaking changes, check what changed below:
3+
4+
**Breaking changes:**
5+
6+
* MDB Angular 10 requires Angular v10,
7+
* Tooltip - changed name of the isDisabled input to tooltipDisabled to avoid naming collisions with the inputs of other components,
8+
* Select, Autocomplete - adjusted appearance of arrow icon and clear buttons to maintain a consistent design in all form controls.
9+
10+
**Fixes:**
11+
12+
* Select 2 - resolved problem with setting initial value with ngModel
13+
14+
**New features:**
15+
16+
* Select 2 - added new label input for mdb-select-option component. If the input value is available, it will be displayed in the select input after option selection.
17+
118
9.4.0
219
In version 9.4.0 we added some new features and fixes for the existing components, check what changed below:
320

projects/angular-bootstrap-md/src/lib/free/tooltip/tooltip.directive.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ export class TooltipDirective implements OnInit, OnDestroy, OnChanges {
7272
/**
7373
* Allows to disable tooltip
7474
*/
75-
@Input() public isDisabled: boolean;
75+
@Input() public tooltipDisabled: boolean;
7676

7777
@Input() dynamicPosition = true;
7878

@@ -158,7 +158,7 @@ export class TooltipDirective implements OnInit, OnDestroy, OnChanges {
158158
* the tooltip.
159159
*/
160160
public show(): void {
161-
if (this.isOpen || this.isDisabled || this._delayTimeoutId || !this.mdbTooltip) {
161+
if (this.isOpen || this.tooltipDisabled || this._delayTimeoutId || !this.mdbTooltip) {
162162
return;
163163
}
164164

0 commit comments

Comments
 (0)