Skip to content

Commit e5a2992

Browse files
author
a.idzikowski
committed
Release 9.4.0
1 parent 1f7ebdd commit e5a2992

File tree

14 files changed

+131
-34
lines changed

14 files changed

+131
-34
lines changed

angular-bootstrap-md-9.3.1.tgz

-1.52 MB
Binary file not shown.

angular-bootstrap-md-9.4.0.tgz

1.52 MB
Binary file not shown.

changelog

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,32 @@
1+
9.4.0
2+
In version 9.4.0 we added some new features and fixes for the existing components, check what changed below:
3+
4+
**Fixes:**
5+
6+
* Datepicker - resolved problems with styles when component is opened inside accordion,
7+
* Datepicker - resolved problem with clearing input value with Angular form controls methods,
8+
* Datepicker - resolved problem with dynamic updates of year and month select values,
9+
* Sidenav - component should no longer close on viewport height change,
10+
* Select 2 - dropdown height will be correctly updated for specific visibleOptions value,
11+
* Select 2 - resolved problem with dropdown visibility when the component is opened inside a modal,
12+
* Select 2 - resolved problem with resetting value with Angular form controls methods,
13+
* Select 2 - adjusted styles to match other form controls,
14+
* Badge - color classes will be correctly assigned to the component,
15+
* Radio - native radio elements styles will no longer be overridden by MDB styles,
16+
* Autocomplete - resolved problem with setting component value when value is an object,
17+
* Tabs - resolved problem with active tab initialization for tabs created dynamically,
18+
* Textarea - component height will be correctly initialized when used inside tab,
19+
* Stepper - resolved problem with active step update after adding or removing steps dynamically,
20+
* Dropdown - resolved problems with performance,
21+
* Select - resolved problem with value changes when using form control methods,
22+
* Table Editor - first row will be now correctly highlighted,
23+
* Wysiwyg - resolved problem with editing url of the link.
24+
25+
**New Features:**
26+
27+
* Datepicker - added new inputIcon and inlineInputIcon options, which allow to show and hide toggle icons for specific display mode,
28+
* Autocomplete - added new dropdownPosition input, which allow to specify the dropdown position (below, above, auto). Default position is set to 'auto'.
29+
130
9.3.1
231
In version 9.3.1 we added some fixes for the existing components, check what changed below:
332

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": "angular-bootstrap-md-lib",
3-
"version": "9.3.1",
3+
"version": "9.4.0",
44
"scripts": {
55
"ng": "ng",
66
"start": "ng serve",

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.3.1",
4+
"version": "9.4.0",
55
"schematics": "./schematics/collection.json",
66
"ng-update": {
77
"migrations": "./schematics/migration.json"
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
.cdk-overlay-container {
2+
z-index: 1050 !important;
3+
}

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -771,7 +771,7 @@ input.counter-success ~ span.text-success {
771771
.md-outline input.form-control.validate-success.ng-valid.ng-dirty + label,
772772
.md-outline input.form-control.validate-success.ng-valid.ng-touched + label,
773773
.md-outline.form-submitted input.form-control.validate-success.ng-valid + label {
774-
color: inherit !important;
774+
color: $input-success-color !important;
775775
font-weight: normal !important;
776776
}
777777

@@ -785,7 +785,7 @@ input.counter-success ~ span.text-success {
785785
.md-outline input.form-control.validate-error.ng-invalid.ng-touched + label,
786786
.md-outline input.form-control.validate-error.ng-invalid.ng-dirty + label,
787787
.md-outline.form-submitted input.form-control.validate-error.ng-invalid + label {
788-
color: inherit !important;
788+
color: $input-error-color !important;
789789
font-weight: normal !important;
790790
}
791791

projects/angular-bootstrap-md/src/lib/assets/scss/mdb.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929

3030
// CDK
3131
@import '~@angular/cdk/overlay-prebuilt.css';
32+
@import 'core/overlay';
3233

3334
// Bootstrap
3435
@import 'core/bootstrap/functions';

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

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,32 @@
1+
9.4.0
2+
In version 9.4.0 we added some new features and fixes for the existing components, check what changed below:
3+
4+
**Fixes:**
5+
6+
* Datepicker - resolved problems with styles when component is opened inside accordion,
7+
* Datepicker - resolved problem with clearing input value with Angular form controls methods,
8+
* Datepicker - resolved problem with dynamic updates of year and month select values,
9+
* Sidenav - component should no longer close on viewport height change,
10+
* Select 2 - dropdown height will be correctly updated for specific visibleOptions value,
11+
* Select 2 - resolved problem with dropdown visibility when the component is opened inside a modal,
12+
* Select 2 - resolved problem with resetting value with Angular form controls methods,
13+
* Select 2 - adjusted styles to match other form controls,
14+
* Badge - color classes will be correctly assigned to the component,
15+
* Radio - native radio elements styles will no longer be overridden by MDB styles,
16+
* Autocomplete - resolved problem with setting component value when value is an object,
17+
* Tabs - resolved problem with active tab initialization for tabs created dynamically,
18+
* Textarea - component height will be correctly initialized when used inside tab,
19+
* Stepper - resolved problem with active step update after adding or removing steps dynamically,
20+
* Dropdown - resolved problems with performance,
21+
* Select - resolved problem with value changes when using form control methods,
22+
* Table Editor - first row will be now correctly highlighted,
23+
* Wysiwyg - resolved problem with editing url of the link.
24+
25+
**New Features:**
26+
27+
* Datepicker - added new inputIcon and inlineInputIcon options, which allow to show and hide toggle icons for specific display mode,
28+
* Autocomplete - added new dropdownPosition input, which allow to specify the dropdown position (below, above, auto). Default position is set to 'auto'.
29+
130
9.3.1
231
In version 9.3.1 we added some fixes for the existing components, check what changed below:
332

0 commit comments

Comments
 (0)