Skip to content

Commit 116c367

Browse files
RafalSeifertidzark
authored andcommitted
Release 6.1.0
1 parent 4787b18 commit 116c367

16 files changed

+254
-75
lines changed

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
## 6.1.0 (27.05.2024)
2+
3+
### Fixes and improvements:
4+
5+
- [Multi range](https://mdbootstrap.com/docs/angular/forms/multi-range-slider/)
6+
- Fixed problem with thumb limiting logic when using custom step
7+
- Fixed problem with updating thumb positions via form controls
8+
- [Popconfirm](https://mdbootstrap.com/docs/angular/components/popconfirm/) - added focus trap
9+
- [Autocomplete](https://mdbootstrap.com/docs/angular/forms/autocomplete/) - restored native `shift + home` and `shift + end` keys behavior (open/close dropdown)
10+
- [Select](https://mdbootstrap.com/docs/angular/forms/select/) - added support for opening and closing dropdown with `alt + arrow-up` and `alt + arrow-down` keys
11+
12+
### New:
13+
14+
- [Table pagination](https://mdbootstrap.com/docs/angular/data/datatables/) - added new `page` input that allows to set page number
15+
- [Multi range](https://mdbootstrap.com/docs/angular/forms/multi-range-slider/) - added new `highlightRange` input that allows to highlight range
16+
- [Parallax](https://mdbootstrap.com/docs/angular/plugins/parallax/) - added new `container` input that allows to set wrapper element for parallax effect
17+
18+
---
19+
120
## 6.0.0 (15.01.2024)
221

322
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.

README.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MDB 5 Angular
22

3-
Version: FREE 6.0.0
3+
Version: FREE 6.1.0
44

55
Documentation:
66
https://mdbootstrap.com/docs/angular/

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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mdb-angular-ui-kit-free",
3-
"version": "6.0.0",
3+
"version": "6.1.0",
44
"scripts": {
55
"ng": "ng",
66
"start": "ng serve",

projects/mdb-angular-ui-kit/CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
## 6.1.0 (27.05.2024)
2+
3+
### Fixes and improvements:
4+
5+
- [Multi range](https://mdbootstrap.com/docs/angular/forms/multi-range-slider/)
6+
- Fixed problem with thumb limiting logic when using custom step
7+
- Fixed problem with updating thumb positions via form controls
8+
- [Popconfirm](https://mdbootstrap.com/docs/angular/components/popconfirm/) - added focus trap
9+
- [Autocomplete](https://mdbootstrap.com/docs/angular/forms/autocomplete/) - restored native `shift + home` and `shift + end` keys behavior (open/close dropdown)
10+
- [Select](https://mdbootstrap.com/docs/angular/forms/select/) - added support for opening and closing dropdown with `alt + arrow-up` and `alt + arrow-down` keys
11+
12+
### New:
13+
14+
- [Table pagination](https://mdbootstrap.com/docs/angular/data/datatables/) - added new `page` input that allows to set page number
15+
- [Multi range](https://mdbootstrap.com/docs/angular/forms/multi-range-slider/) - added new `highlightRange` input that allows to highlight range
16+
- [Parallax](https://mdbootstrap.com/docs/angular/plugins/parallax/) - added new `container` input that allows to set wrapper element for parallax effect
17+
18+
---
19+
120
## 6.0.0 (15.01.2024)
221

322
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.

projects/mdb-angular-ui-kit/assets/scss/free/_buttons.scss

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,6 +165,7 @@
165165
box-shadow: none;
166166
}
167167
}
168+
168169
// scss-docs-end btn-secondary
169170

170171
// scss-docs-start btn-variant-loop
@@ -219,10 +220,11 @@
219220
&:disabled,
220221
&.disabled,
221222
fieldset:disabled & {
222-
box-shadow: $btn-contextual-box-shadow map-get($value, shadow-color);
223+
box-shadow: var(--#{$prefix}btn-box-shadow);
223224
}
224225
}
225226
}
227+
226228
// scss-docs-end btn-variant-loop
227229

228230
// scss-docs-start btn-outline-variant-loop
@@ -279,6 +281,7 @@
279281
}
280282
}
281283
}
284+
282285
// scss-docs-end btn-outline-variant-loop
283286

284287
//

projects/mdb-angular-ui-kit/assets/scss/free/_carousel.scss

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
}
3131
}
3232

33+
// Additional MDB Angular styles
3334
.carousel-indicators {
3435
button {
3536
box-sizing: content-box;
@@ -56,3 +57,4 @@
5657
background-color: $carousel-dark-indicator-active-bg;
5758
}
5859
}
60+
// Additional MDB Angular styles

projects/mdb-angular-ui-kit/assets/scss/free/_progress.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@
22

33
.progress {
44
border-radius: 0;
5+
// box-shadow: none; This should be added in next major release 7.0.0
56
}

projects/mdb-angular-ui-kit/assets/scss/free/_toasts.scss

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
// Toasts
1+
//
2+
// Toast styles
3+
//
24

35
.toast {
46
// scss-docs-start toast-css-vars

projects/mdb-angular-ui-kit/assets/scss/free/forms/_form-check.scss

Lines changed: 6 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@
33
//
44

55
.form-check {
6+
// Additional MDB Angular styles
67
position: relative;
8+
// Additional MDB Angular styles
79
min-height: 1.5rem;
810
}
911

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

8890
&:focus {
8991
&:after {
@@ -123,28 +125,7 @@
123125
}
124126

125127
&:indeterminate {
126-
background-image: none;
127-
background-color: transparent;
128-
border-color: $form-check-input-indeterminate-border-color;
129-
130-
&:after {
131-
display: block;
132-
transform: $form-check-input-indeterminate-checked-after-transform #{'/*!rtl:ignore*/'};
133-
border-width: $form-check-input-indeterminate-checked-after-border-width;
134-
border-color: $form-check-input-indeterminate-checked-after-border-color;
135-
width: $form-check-input-indeterminate-checked-after-width;
136-
height: $form-check-input-indeterminate-checked-after-height;
137-
border-style: solid;
138-
border-top: 0;
139-
border-left: 0 #{'/*!rtl:ignore*/'};
140-
margin-left: $form-check-input-indeterminate-checked-after-margin-left;
141-
margin-top: 0;
142-
}
143-
144-
&:focus {
145-
background-color: $form-check-input-indeterminate-focus-background-color;
146-
border-color: $form-check-input-indeterminate-focus-border-color;
147-
}
128+
border-color: $form-check-input-indeterminate-focus-border-color;
148129
}
149130
}
150131

@@ -196,7 +177,7 @@
196177
}
197178

198179
.form-check-label {
199-
// padding-left: 0.15rem;
180+
// padding-left: 0.15rem; This should be added in next major release 7.0.0
200181
&:hover {
201182
cursor: pointer;
202183
}
@@ -215,7 +196,7 @@
215196
height: $form-switch-form-check-input-height;
216197
background-color: $form-switch-form-check-input-background-color;
217198
margin-top: 0.3em;
218-
margin-right: 4px;
199+
margin-right: 4px; // This should be changed to 8px in next major release 7.0.0
219200

220201
&:after {
221202
content: '';

projects/mdb-angular-ui-kit/assets/scss/free/forms/_form-control.scss

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
}
2626
}
2727

28+
// Additional MDB Angular styles
2829
.select {
2930
~ .form-label {
3031
position: absolute;
@@ -161,9 +162,13 @@
161162
}
162163
}
163164
}
165+
// Additional MDB Angular styles
164166

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

168173
.form-helper {
169174
width: 100%;
@@ -337,6 +342,7 @@
337342
}
338343
}
339344

345+
// Additional MDB Angular styles
340346
.select-lg ~ .form-label {
341347
padding-top: $form-label-padding-top-lg;
342348
}
@@ -345,6 +351,7 @@
345351
padding-top: $form-label-padding-top-sm;
346352
font-size: $form-label-font-size-sm;
347353
}
354+
// Additional MDB Angular styles
348355

349356
&.form-white {
350357
.form-control {

projects/mdb-angular-ui-kit/assets/scss/free/forms/_form-range.scss

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,15 @@
3434
&::-webkit-slider-runnable-track {
3535
height: $form-range-webkit-slider-runnable-track-height;
3636
border-radius: 0;
37+
// box-shadow: none; This should be added in next major release 7.0.0
3738
}
3839

3940
&::-moz-range-thumb {
4041
box-shadow: none;
4142
appearance: none;
4243
}
44+
45+
&::-moz-range-track {
46+
// box-shadow: none; This should be added in next major release 7.0.0
47+
}
4348
}

projects/mdb-angular-ui-kit/assets/scss/free/forms/_input-group.scss

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
//
44

55
.input-group {
6+
// flex-wrap: nowrap; This should be added in next major release 7.0.0
7+
68
> .form-control {
79
min-height: $input-group-min-height;
810
height: $input-group-height;

projects/mdb-angular-ui-kit/assets/scss/mdb.free.scss

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

5555
// MDB CORE
5656
@import './free/mixins';
57+
@import './free/utilities';
5758

5859
// MDB CORE COMPONENTS
5960
@import './free/root';

0 commit comments

Comments
 (0)