Skip to content

Commit 6e3a43f

Browse files
authored
Merge branch '9.0.x' into mpopovv/6851-9.0.x
2 parents 1a7de07 + 7c90fc1 commit 6e3a43f

File tree

4 files changed

+763
-631
lines changed

4 files changed

+763
-631
lines changed

CHANGELOG.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -87,10 +87,6 @@ All notable changes for each version of this project will be documented in this
8787
- `IgxGridExcelStyleFilteringComponent` and `IgxAdvancedFilteringDialogComponent` can now be hosted outside of the grid in order to provide the same experience as the built-in filtering UI.
8888
- `expandRow(rowID)`/`collapseRow(rowID)`/`toggleRow(rowID)` API methods are added for the `igxHierarchicalGrid`. They allow expanding/collapsing a row by its id.
8989
- `onRowToggle` event is added for the `igxHierarchicalGrid`. It is emitted when the expanded state of a row is changed.
90-
- `IgxOverlayService`:
91-
- `setOffset` method added. It offsets the content along the corresponding axis by the provided amount.
92-
- `IgxToggleDirective`:
93-
- `setOffset` method added. It offsets the content along the corresponding axis by the provided amount.
9490
- `IgxRowDragGhost` directive is added. It allows providing a custom template for the drag ghost when dragging a row.
9591
```html
9692
<igx-grid #grid1 [data]="remote | async" primaryKey="ProductID"
@@ -150,6 +146,12 @@ All notable changes for each version of this project will be documented in this
150146
- `IgxDropDown`:
151147
- `clearSelection` method is added, which can be used to deselect the selected dropdown item
152148

149+
- `IgxToggleDirective`:
150+
- `setOffset` method added. It offsets the content along the corresponding axis by the provided amount.
151+
152+
- `IgxOverlayService`:
153+
- `setOffset` method added. It offsets the content along the corresponding axis by the provided amount.
154+
153155
- `IgxCircularProgressBar`:
154156
- added `IgxProgressBarGradientDirective` to allow providing custom circular progress SVG gradients. Providing a custom gradient via a template is as easy as writing:
155157
```html

projects/igniteui-angular/src/lib/date-picker/date-picker.component.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1298,7 +1298,7 @@ describe('IgxDatePicker', () => {
12981298

12991299
expect(inputDirective.valid).toEqual(IgxInputState.INITIAL);
13001300

1301-
inputDirectiveElement.triggerEventHandler('focus', {});
1301+
inputDirectiveElement.triggerEventHandler('focus', { target: { value: ''}});
13021302
fixture.detectChanges();
13031303

13041304
expect(inputDirective.valid).toEqual(IgxInputState.INITIAL);

0 commit comments

Comments
 (0)