You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+9
Original file line number
Diff line number
Diff line change
@@ -13,6 +13,15 @@ All notable changes for each version of this project will be documented in this
13
13
### New features
14
14
-**igxSlider** - exposing new `labels` property accepting a collection of literal values that become equally spread over the slider, by placing each element as a thumb label.
-`[displayDensity]` - `@Input()` added to the `igx-drop-down`. Takes prevelance over any other `DisplayDensity` provider (e.g. parent component or `DisplayDensityToken` provided in module)
18
+
- The component can also get it's display density from Angular's DI engine (if the `DisplayDensityToken` is provided on a lower level)
19
+
- Setting `[displayDensity]` affects the control's items' and inputs' css properties, most notably heights, padding, font-size
20
+
- Available display densities are `compact`, `cosy` and `comfortable` (default)
21
+
-**Behavioral Change** - default item `igx-drop-down-item` height is now `40px` (down from `48px`)
22
+
-`IgxCombo` - Setting `[displayDensity]` now also affects the combo's items
23
+
- Setting `[itemHeight]` overrides the height provided by the `[displayDensity]` input
24
+
-`IgxSelect`- Setting `[displayDensity]` now also affects the select's items
16
25
17
26
### Bug Fixes
18
27
- In slider with type Range when change the lower value to be equal or greater than the upper the range is not correct #4562
Copy file name to clipboardExpand all lines: projects/igniteui-angular/src/lib/combo/README.md
+4
Original file line number
Diff line number
Diff line change
@@ -233,6 +233,10 @@ When igxCombo is opened, allow custom values are enabled and add item button is
233
233
234
234
-`ArrowUp` focus will be moved back to the last list item or if list is empty will be moved to the search input.
235
235
236
+
## Display Density
237
+
**igx-combo** supports setting of different display densities.
238
+
Display density is received through Angular's DI engine or can be set through the `[displayDensity]` input. The possilbe display densities are `compact`, `cosy` and `comfortable` (default).
239
+
Setting `[displayDensity]` affects the control's items' and inputs' css properties, most notably heights, padding, font-size.
0 commit comments