Skip to content

Commit 7a78ec1

Browse files
authored
Merge branch '16.1.x' into simeonoff/sass-build
2 parents cadcf11 + 5da9689 commit 7a78ec1

File tree

2 files changed

+12
-14
lines changed

2 files changed

+12
-14
lines changed

CHANGELOG.md

Lines changed: 11 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -37,22 +37,15 @@ All notable changes for each version of this project will be documented in this
3737
- `IgxCombo`:
3838
- Exposed `comboIgnoreDiacriticsFilter` filter function which normalizes diacritics to their base representation.
3939
When the combo components are configured with it, filtering for **"resume"** will match both **"resume"** and **"résumé"**.
40+
- `IgxCombo`, `IgxSimpleCombo`
41+
- Added new property `displayValue` that returns array of display keys.
4042
- `IgxButtonGroup`:
4143
- Added `owner` to the `IButtonGroupEventArgs` to identify the emitting button group instance.
4244
- **Breaking Change** Added the `selectionMode` property that sets the selection mode of the buttons in the `IgxButtonGroup`. Selection modes are `single`, `singleRequired` and `multi` as default is `single`.
4345
- **Breaking Change** Deprecated the `multiSelection` property and all references have been migrated to `selectionMode="multi"`.
4446
- `Themes`:
4547
- Include a standalone theme for the `igxLabel` directive to allow usage with components outside the Input Group.
46-
47-
### General
48-
- `IgxStepper`:
49-
- **Breaking Change** The `IgxStepSubTitleDirective` has been renamed to `IgxStepSubtitleDirective`. Automatic migrations are available and will be applied on `ng update`.
50-
- `IgxGrid`, `IgxTreeGrid`, `IgxHierarchicalGrid`
51-
- The `draggable` attribute is no longer required to be set on interactable elements, if a column header is templated and the Column Moving is enabled in order for handlers for any event to be triggered. Now `draggable='false'` can be used as an addition if the user shouldn't be able to drag a column by that element, but even if omitted `click` events for example will trigger now.
52-
- **Behavioral Change** When there are already grouped columns, the group drop area now shows after dragging of a column starts and not when only click actions are performed.
53-
- `IgxCombo`, `IgxSimpleCombo`:
54-
- **Breaking Change** The `selection` property returns an array of the selected items even when a value key is provided and the `value` property returns an array of value keys instead of display keys. Automatic migrations are available and will be applied on `ng update`.
55-
- **Deprecation** - The `DisplayDensityToken` injection token has been deprecated. Consequently, the `displayDensity` input for all components injecting the `DisplayDensityToken` is also deprecated. Changing the size of the component(s) should be done via a new custom CSS property - `--ig-size`;
48+
- Changing the size of Ignite UI components can now be done via a new custom CSS property - `--ig-size` . The `DisplayDensityToken` injection token and consequently, the `displayDensity` inputs for all components will be deprecated in the next major version and it is recommended that they no longer be used for sizing components.
5649
- Code example:
5750
```typescript
5851
// *.component.ts
@@ -78,9 +71,14 @@ All notable changes for each version of this project will be documented in this
7871
}
7972
```
8073

81-
### New Features
82-
- `IgxCombo`, `IgxSimpleCombo`
83-
- Added new property `displayValue` that returns array of display keys.
74+
### General
75+
- `IgxStepper`:
76+
- **Breaking Change** The `IgxStepSubTitleDirective` has been renamed to `IgxStepSubtitleDirective`. Automatic migrations are available and will be applied on `ng update`.
77+
- `IgxGrid`, `IgxTreeGrid`, `IgxHierarchicalGrid`
78+
- The `draggable` attribute is no longer required to be set on interactable elements, if a column header is templated and the Column Moving is enabled in order for handlers for any event to be triggered. Now `draggable='false'` can be used as an addition if the user shouldn't be able to drag a column by that element, but even if omitted `click` events for example will trigger now.
79+
- **Behavioral Change** When there are already grouped columns, the group drop area now shows after dragging of a column starts and not when only click actions are performed.
80+
- `IgxCombo`, `IgxSimpleCombo`:
81+
- **Breaking Change** The `selection` property returns an array of the selected items even when a value key is provided and the `value` property returns an array of value keys instead of display keys. Automatic migrations are available and will be applied on `ng update`.
8482

8583
## 16.0.0
8684

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<span *ngIf="value && !icon" class="igx-badge__value">{{value}}</span>
1+
<span *ngIf="value || value === 0 && !icon" class="igx-badge__value">{{value}}</span>
22
<igx-icon *ngIf="icon && !iconSet">{{icon}}</igx-icon>
33
<igx-icon *ngIf="icon && iconSet" [family]="iconSet" [name]="icon">{{icon}}</igx-icon>
44
<ng-content></ng-content>

0 commit comments

Comments
 (0)