File tree Expand file tree Collapse file tree 16 files changed +254
-75
lines changed
projects/mdb-angular-ui-kit Expand file tree Collapse file tree 16 files changed +254
-75
lines changed Original file line number Diff line number Diff line change
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
+
1
20
## 6.0.0 (15.01.2024)
2
21
3
22
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.
Original file line number Diff line number Diff line change 1
1
MDB 5 Angular
2
2
3
- Version: FREE 6.0 .0
3
+ Version: FREE 6.1 .0
4
4
5
5
Documentation:
6
6
https://mdbootstrap.com/docs/angular/
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " mdb-angular-ui-kit-free" ,
3
- "version" : " 6.0 .0" ,
3
+ "version" : " 6.1 .0" ,
4
4
"scripts" : {
5
5
"ng" : " ng" ,
6
6
"start" : " ng serve" ,
Original file line number Diff line number Diff line change
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
+
1
20
## 6.0.0 (15.01.2024)
2
21
3
22
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.
Original file line number Diff line number Diff line change 165
165
box-shadow : none ;
166
166
}
167
167
}
168
+
168
169
// scss-docs-end btn-secondary
169
170
170
171
// scss-docs-start btn-variant-loop
219
220
& :disabled ,
220
221
& .disabled ,
221
222
fieldset :disabled & {
222
- box-shadow : $ btn-contextual- box-shadow map-get ( $value , shadow-color );
223
+ box-shadow : var ( --#{$prefix} btn-box-shadow );
223
224
}
224
225
}
225
226
}
227
+
226
228
// scss-docs-end btn-variant-loop
227
229
228
230
// scss-docs-start btn-outline-variant-loop
279
281
}
280
282
}
281
283
}
284
+
282
285
// scss-docs-end btn-outline-variant-loop
283
286
284
287
//
Original file line number Diff line number Diff line change 30
30
}
31
31
}
32
32
33
+ // Additional MDB Angular styles
33
34
.carousel-indicators {
34
35
button {
35
36
box-sizing : content-box ;
56
57
background-color : $carousel-dark-indicator-active-bg ;
57
58
}
58
59
}
60
+ // Additional MDB Angular styles
Original file line number Diff line number Diff line change 2
2
3
3
.progress {
4
4
border-radius : 0 ;
5
+ // box-shadow: none; This should be added in next major release 7.0.0
5
6
}
Original file line number Diff line number Diff line change 1
- // Toasts
1
+ //
2
+ // Toast styles
3
+ //
2
4
3
5
.toast {
4
6
// scss-docs-start toast-css-vars
Original file line number Diff line number Diff line change 3
3
//
4
4
5
5
.form-check {
6
+ // Additional MDB Angular styles
6
7
position : relative ;
8
+ // Additional MDB Angular styles
7
9
min-height : 1.5rem ;
8
10
}
9
11
83
85
& [type = ' checkbox' ] {
84
86
border-radius : $form-check-input-checkbox-border-radius ;
85
87
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
87
89
88
90
& :focus {
89
91
& :after {
123
125
}
124
126
125
127
& :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 ;
148
129
}
149
130
}
150
131
196
177
}
197
178
198
179
.form-check-label {
199
- // padding-left: 0.15rem;
180
+ // padding-left: 0.15rem; This should be added in next major release 7.0.0
200
181
& :hover {
201
182
cursor : pointer ;
202
183
}
215
196
height : $form-switch-form-check-input-height ;
216
197
background-color : $form-switch-form-check-input-background-color ;
217
198
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
219
200
220
201
& :after {
221
202
content : ' ' ;
Original file line number Diff line number Diff line change 25
25
}
26
26
}
27
27
28
+ // Additional MDB Angular styles
28
29
.select {
29
30
~ .form-label {
30
31
position : absolute ;
161
162
}
162
163
}
163
164
}
165
+ // Additional MDB Angular styles
164
166
165
167
.form-outline {
166
168
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.
167
172
168
173
.form-helper {
169
174
width : 100% ;
337
342
}
338
343
}
339
344
345
+ // Additional MDB Angular styles
340
346
.select-lg ~ .form-label {
341
347
padding-top : $form-label-padding-top-lg ;
342
348
}
345
351
padding-top : $form-label-padding-top-sm ;
346
352
font-size : $form-label-font-size-sm ;
347
353
}
354
+ // Additional MDB Angular styles
348
355
349
356
& .form-white {
350
357
.form-control {
Original file line number Diff line number Diff line change 34
34
& ::-webkit-slider-runnable-track {
35
35
height : $form-range-webkit-slider-runnable-track-height ;
36
36
border-radius : 0 ;
37
+ // box-shadow: none; This should be added in next major release 7.0.0
37
38
}
38
39
39
40
& ::-moz-range-thumb {
40
41
box-shadow : none ;
41
42
appearance : none ;
42
43
}
44
+
45
+ & ::-moz-range-track {
46
+ // box-shadow: none; This should be added in next major release 7.0.0
47
+ }
43
48
}
Original file line number Diff line number Diff line change 3
3
//
4
4
5
5
.input-group {
6
+ // flex-wrap: nowrap; This should be added in next major release 7.0.0
7
+
6
8
> .form-control {
7
9
min-height : $input-group-min-height ;
8
10
height : $input-group-height ;
Original file line number Diff line number Diff line change 54
54
55
55
// MDB CORE
56
56
@import ' ./free/mixins' ;
57
+ @import ' ./free/utilities' ;
57
58
58
59
// MDB CORE COMPONENTS
59
60
@import ' ./free/root' ;
You can’t perform that action at this time.
0 commit comments