Skip to content

Commit 759edbc

Browse files
Release 8.3.1
1 parent 553004c commit 759edbc

File tree

12 files changed

+186
-127
lines changed

12 files changed

+186
-127
lines changed

angular-bootstrap-md-8.3.0.tgz

-2.54 MB
Binary file not shown.

angular-bootstrap-md-8.3.1.tgz

2.45 MB
Binary file not shown.

changelog

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
8.3.1
2+
In version 8.3.1 we added some fixes and updated code in the documentation pages. Check what changed below:
3+
4+
**Fixes:**
5+
6+
* Checkbox - resolved problem with checked state updates on ngModel value change,
7+
* Autocompleter - resolved problem with Cannot read property 'value' of undefined on up arrow navigation,
8+
* Dropdown - resolved problem with material styles in default version,
9+
* Textarea - added possibility to resize material version,
10+
* Timepicker - resolved problem with clear button, it should be now displayed correctly,
11+
* Table pagination - resolved problem with pagination when switching to last item,
12+
* Sidenav - resolved problem with accordion auto expand/collapse when queryParams are used.
13+
114
8.3.0
215
In version 8.3.0 we added some fixes, new features and updated code in documentation pages. Check what changed below:
316

package-lock.json

Lines changed: 102 additions & 105 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": "8.3.0",
3+
"version": "8.3.1",
44
"scripts": {
55
"ng": "ng",
66
"start": "ng serve",
@@ -29,7 +29,7 @@
2929
"@angular/router": "~8.0.0",
3030
"@fortawesome/fontawesome-free": "^5.6.3",
3131
"@types/chart.js": "^2.7.42",
32-
"angular-bootstrap-md": "file:angular-bootstrap-md-8.3.0.tgz",
32+
"angular-bootstrap-md": "file:angular-bootstrap-md-8.3.1.tgz",
3333
"chart.js": "^2.5.0",
3434
"core-js": "^2.5.4",
3535
"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": "8.3.0",
4+
"version": "8.3.1",
55
"schematics": "./schematics/collection.json",
66
"files": [
77
"**/*"

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,7 @@
276276
&.md-textarea {
277277
overflow-y: hidden;
278278
padding: $textarea-padding 0;
279-
resize: none;
279+
// resize: none;
280280
}
281281

282282
&.md-textarea-auto {

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

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
8.3.1
2+
In version 8.3.1 we added some fixes and updated code in the documentation pages. Check what changed below:
3+
4+
**Fixes:**
5+
6+
* Checkbox - resolved problem with checked state updates on ngModel value change,
7+
* Autocompleter - resolved problem with Cannot read property 'value' of undefined on up arrow navigation,
8+
* Dropdown - resolved problem with material styles in default version,
9+
* Textarea - added possibility to resize material version,
10+
* Timepicker - resolved problem with clear button, it should be now displayed correctly,
11+
* Table pagination - resolved problem with pagination when switching to last item,
12+
* Sidenav - resolved problem with accordion auto expand/collapse when queryParams are used.
13+
114
8.3.0
215
In version 8.3.0 we added some fixes, new features and updated code in documentation pages. Check what changed below:
316

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,6 @@ export class CheckboxComponent implements OnInit, OnChanges {
9999
if (this.disabled) {
100100
return;
101101
}
102-
103102
this.checked = !this.checked;
104103
this.indeterminate = false;
105104
this.onChange(this.checked);
@@ -132,6 +131,7 @@ export class CheckboxComponent implements OnInit, OnChanges {
132131
writeValue(value: any) {
133132
this.value = value;
134133
this.checked = !!value;
134+
this._cdRef.markForCheck();
135135
}
136136

137137
registerOnChange(fn: (_: any) => void) {

projects/angular-bootstrap-md/src/lib/free/dropdown/_dropdown.scss

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,13 +66,17 @@
6666
.dropdown-menu {
6767
display: block;
6868
opacity: 0;
69-
transition: 0.55s;
7069
}
7170

7271
.fadeInDropdown {
7372
opacity: 1;
7473
}
7574
}
75+
.dropup-material.show {
76+
.dropdown-menu {
77+
transition: 0.55s;
78+
}
79+
}
7680

7781
//material dropdown
7882

0 commit comments

Comments
 (0)