Skip to content

Commit 182e81d

Browse files
committed
Release 8.8.2
1 parent 0d72f4c commit 182e81d

22 files changed

+251
-224
lines changed

angular-bootstrap-md-8.8.1.tgz

-2.56 MB
Binary file not shown.

angular-bootstrap-md-8.8.2.tgz

2.42 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+
8.8.2
2+
In version 8.8.2 we added some fixes for the existing components and removed duplicated css styles. Check what changed below:
3+
4+
**Fixes:**
5+
6+
* Styles - removed duplicated code,
7+
* Toast - resolved problem with box-shadow styles on hover,
8+
* Table - removed unecessary styles from a elements,
9+
* Table sort - slightly improved performance,
10+
* Validation - prefix icons will get correct validation color styles (success/error),
11+
* Validation - fixed position of validation messages,
12+
* Sidenav - will not be closed when viewport height change,
13+
* Select - will not be overlapped by table header with sticky-top class,
14+
* Pills - removed unecessary shadow styles on hover,
15+
* Static modal - backdrop will be added/removed correctly when config value change,
16+
* Calendar plugin - fixed parameter name in object emitted by (monthChanged) output.
17+
118
8.8.1
219
In version 8.8.1 we added some fixes for the existing components and small update for the calendar plugin. Check what changed below:
320

package-lock.json

Lines changed: 154 additions & 189 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.8.1",
3+
"version": "8.8.2",
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.8.1.tgz",
32+
"angular-bootstrap-md": "file:angular-bootstrap-md-8.8.2.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.8.1",
4+
"version": "8.8.2",
55
"schematics": "./schematics/collection.json",
66
"files": [
77
"**/*"

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@
157157
display: block;
158158
}
159159

160-
a {
160+
a:not(.nav-link) {
161161
&.waves-effect,
162162
&.waves-light {
163163
display: inline-block;

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

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -238,6 +238,12 @@
238238

239239
&.active {
240240
color: $input-md-focus-color;
241+
&.success-message {
242+
color: $input-success-color;
243+
}
244+
&.error-message {
245+
color: $input-error-color;
246+
}
241247
}
242248
}
243249

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+
8.8.2
2+
In version 8.8.2 we added some fixes for the existing components and removed duplicated css styles. Check what changed below:
3+
4+
**Fixes:**
5+
6+
* Styles - removed duplicated code,
7+
* Toast - resolved problem with box-shadow styles on hover,
8+
* Table - removed unecessary styles from a elements,
9+
* Table sort - slightly improved performance,
10+
* Validation - prefix icons will get correct validation color styles (success/error),
11+
* Validation - fixed position of validation messages,
12+
* Sidenav - will not be closed when viewport height change,
13+
* Select - will not be overlapped by table header with sticky-top class,
14+
* Pills - removed unecessary shadow styles on hover,
15+
* Static modal - backdrop will be added/removed correctly when config value change,
16+
* Calendar plugin - fixed parameter name in object emitted by (monthChanged) output.
17+
118
8.8.1
219
In version 8.8.1 we added some fixes for the existing components and small update for the calendar plugin. Check what changed below:
320

projects/angular-bootstrap-md/src/lib/free/buttons/_buttons.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@
7272
margin: inherit;
7373
}
7474
&.btn-link {
75-
@extend .black-text;
75+
color: #000;
7676
box-shadow: none;
7777
background-color: transparent;
7878
&:active,

0 commit comments

Comments
 (0)