Skip to content

Commit

Permalink
Release 6.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
RafalSeifert authored and idzark committed May 27, 2024
1 parent 4787b18 commit 116c367
Show file tree
Hide file tree
Showing 16 changed files with 254 additions and 75 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
## 6.1.0 (27.05.2024)

### Fixes and improvements:

- [Multi range](https://mdbootstrap.com/docs/angular/forms/multi-range-slider/)
- Fixed problem with thumb limiting logic when using custom step
- Fixed problem with updating thumb positions via form controls
- [Popconfirm](https://mdbootstrap.com/docs/angular/components/popconfirm/) - added focus trap
- [Autocomplete](https://mdbootstrap.com/docs/angular/forms/autocomplete/) - restored native `shift + home` and `shift + end` keys behavior (open/close dropdown)
- [Select](https://mdbootstrap.com/docs/angular/forms/select/) - added support for opening and closing dropdown with `alt + arrow-up` and `alt + arrow-down` keys

### New:

- [Table pagination](https://mdbootstrap.com/docs/angular/data/datatables/) - added new `page` input that allows to set page number
- [Multi range](https://mdbootstrap.com/docs/angular/forms/multi-range-slider/) - added new `highlightRange` input that allows to highlight range
- [Parallax](https://mdbootstrap.com/docs/angular/plugins/parallax/) - added new `container` input that allows to set wrapper element for parallax effect

---

## 6.0.0 (15.01.2024)

This version requires Angular v17. Follow the [Angular Update Guide](https://update.angular.io/?l=3&v=16.0-17.0) to migrate your project to Angular 17.
Expand Down
2 changes: 1 addition & 1 deletion README.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MDB 5 Angular

Version: FREE 6.0.0
Version: FREE 6.1.0

Documentation:
https://mdbootstrap.com/docs/angular/
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mdb-angular-ui-kit-free",
"version": "6.0.0",
"version": "6.1.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
Expand Down
19 changes: 19 additions & 0 deletions projects/mdb-angular-ui-kit/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
## 6.1.0 (27.05.2024)

### Fixes and improvements:

- [Multi range](https://mdbootstrap.com/docs/angular/forms/multi-range-slider/)
- Fixed problem with thumb limiting logic when using custom step
- Fixed problem with updating thumb positions via form controls
- [Popconfirm](https://mdbootstrap.com/docs/angular/components/popconfirm/) - added focus trap
- [Autocomplete](https://mdbootstrap.com/docs/angular/forms/autocomplete/) - restored native `shift + home` and `shift + end` keys behavior (open/close dropdown)
- [Select](https://mdbootstrap.com/docs/angular/forms/select/) - added support for opening and closing dropdown with `alt + arrow-up` and `alt + arrow-down` keys

### New:

- [Table pagination](https://mdbootstrap.com/docs/angular/data/datatables/) - added new `page` input that allows to set page number
- [Multi range](https://mdbootstrap.com/docs/angular/forms/multi-range-slider/) - added new `highlightRange` input that allows to highlight range
- [Parallax](https://mdbootstrap.com/docs/angular/plugins/parallax/) - added new `container` input that allows to set wrapper element for parallax effect

---

## 6.0.0 (15.01.2024)

This version requires Angular v17. Follow the [Angular Update Guide](https://update.angular.io/?l=3&v=16.0-17.0) to migrate your project to Angular 17.
Expand Down
5 changes: 4 additions & 1 deletion projects/mdb-angular-ui-kit/assets/scss/free/_buttons.scss
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,7 @@
box-shadow: none;
}
}

// scss-docs-end btn-secondary

// scss-docs-start btn-variant-loop
Expand Down Expand Up @@ -219,10 +220,11 @@
&:disabled,
&.disabled,
fieldset:disabled & {
box-shadow: $btn-contextual-box-shadow map-get($value, shadow-color);
box-shadow: var(--#{$prefix}btn-box-shadow);
}
}
}

// scss-docs-end btn-variant-loop

// scss-docs-start btn-outline-variant-loop
Expand Down Expand Up @@ -279,6 +281,7 @@
}
}
}

// scss-docs-end btn-outline-variant-loop

//
Expand Down
2 changes: 2 additions & 0 deletions projects/mdb-angular-ui-kit/assets/scss/free/_carousel.scss
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
}
}

// Additional MDB Angular styles
.carousel-indicators {
button {
box-sizing: content-box;
Expand All @@ -56,3 +57,4 @@
background-color: $carousel-dark-indicator-active-bg;
}
}
// Additional MDB Angular styles
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@

.progress {
border-radius: 0;
// box-shadow: none; This should be added in next major release 7.0.0
}
4 changes: 3 additions & 1 deletion projects/mdb-angular-ui-kit/assets/scss/free/_toasts.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
// Toasts
//
// Toast styles
//

.toast {
// scss-docs-start toast-css-vars
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@
//

.form-check {
// Additional MDB Angular styles
position: relative;
// Additional MDB Angular styles
min-height: 1.5rem;
}

Expand Down Expand Up @@ -83,7 +85,7 @@
&[type='checkbox'] {
border-radius: $form-check-input-checkbox-border-radius;
margin-top: 0.19em;
margin-right: 4px;
margin-right: 4px; // This should be changed to 6px in next major release 7.0.0

&:focus {
&:after {
Expand Down Expand Up @@ -123,28 +125,7 @@
}

&:indeterminate {
background-image: none;
background-color: transparent;
border-color: $form-check-input-indeterminate-border-color;

&:after {
display: block;
transform: $form-check-input-indeterminate-checked-after-transform #{'/*!rtl:ignore*/'};
border-width: $form-check-input-indeterminate-checked-after-border-width;
border-color: $form-check-input-indeterminate-checked-after-border-color;
width: $form-check-input-indeterminate-checked-after-width;
height: $form-check-input-indeterminate-checked-after-height;
border-style: solid;
border-top: 0;
border-left: 0 #{'/*!rtl:ignore*/'};
margin-left: $form-check-input-indeterminate-checked-after-margin-left;
margin-top: 0;
}

&:focus {
background-color: $form-check-input-indeterminate-focus-background-color;
border-color: $form-check-input-indeterminate-focus-border-color;
}
border-color: $form-check-input-indeterminate-focus-border-color;
}
}

Expand Down Expand Up @@ -196,7 +177,7 @@
}

.form-check-label {
// padding-left: 0.15rem;
// padding-left: 0.15rem; This should be added in next major release 7.0.0
&:hover {
cursor: pointer;
}
Expand All @@ -215,7 +196,7 @@
height: $form-switch-form-check-input-height;
background-color: $form-switch-form-check-input-background-color;
margin-top: 0.3em;
margin-right: 4px;
margin-right: 4px; // This should be changed to 8px in next major release 7.0.0

&:after {
content: '';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
}
}

// Additional MDB Angular styles
.select {
~ .form-label {
position: absolute;
Expand Down Expand Up @@ -161,9 +162,13 @@
}
}
}
// Additional MDB Angular styles

.form-outline {
position: relative;
// width: 100%; // This change introduces big layout differences
// and should be treated as a breaking change.
// It should be revised and checked.

.form-helper {
width: 100%;
Expand Down Expand Up @@ -337,6 +342,7 @@
}
}

// Additional MDB Angular styles
.select-lg ~ .form-label {
padding-top: $form-label-padding-top-lg;
}
Expand All @@ -345,6 +351,7 @@
padding-top: $form-label-padding-top-sm;
font-size: $form-label-font-size-sm;
}
// Additional MDB Angular styles

&.form-white {
.form-control {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,15 @@
&::-webkit-slider-runnable-track {
height: $form-range-webkit-slider-runnable-track-height;
border-radius: 0;
// box-shadow: none; This should be added in next major release 7.0.0
}

&::-moz-range-thumb {
box-shadow: none;
appearance: none;
}

&::-moz-range-track {
// box-shadow: none; This should be added in next major release 7.0.0
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
//

.input-group {
// flex-wrap: nowrap; This should be added in next major release 7.0.0

> .form-control {
min-height: $input-group-min-height;
height: $input-group-height;
Expand Down
1 change: 1 addition & 0 deletions projects/mdb-angular-ui-kit/assets/scss/mdb.free.scss
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@

// MDB CORE
@import './free/mixins';
@import './free/utilities';

// MDB CORE COMPONENTS
@import './free/root';
Expand Down
Loading

0 comments on commit 116c367

Please sign in to comment.