Skip to content

Commit 9ec97e8

Browse files
MKirovaMKirova
authored andcommitted
chore(*): Merge from base.
2 parents d1f9e4d + 2ab4d30 commit 9ec97e8

File tree

156 files changed

+5733
-2546
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

156 files changed

+5733
-2546
lines changed

CHANGELOG.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,32 @@
11
# Ignite UI for Angular Change Log
22

33
All notable changes for each version of this project will be documented in this file.
4+
## 14.2.0
5+
6+
### New Features
7+
- The filtering logic inside the grid's Advanced Filtering is now extracted as a separate `IgxQueryBuilder` component. The Query Builder allows you to build complex queries by specifying AND/OR operators, conditions and values using the UI. It outputs an object describing the structure of the query. Use the `locale` property to modify the locale settings. The default value is resolved to the global Angular application locale. The `resourceStrings` allows changing the displayed strings.
8+
9+
- Code example below:
10+
11+
```html
12+
<igx-query-builder [fields]="fields">
13+
<!-- Custom header -->
14+
<igx-query-builder-header [title]="'Custom title'"
15+
[showLegend]="false">
16+
</igx-query-builder-header>
17+
</igx-query-builder>
18+
```
19+
20+
- For more information, check out the [README](https://github.com/IgniteUI/igniteui-angular/blob/master/projects/igniteui-angular/src/lib/query-builder/README.md), [specification](https://github.com/IgniteUI/igniteui-angular/wiki/Query-Builder) and [official documentation](https://www.infragistics.com/products/ignite-ui-angular/angular/components/query-builder).
21+
22+
- `IgxExcelExporterService`
23+
- Added support for exporting `igxPivotGrid`.
24+
25+
### General
26+
27+
- **Breaking Changes** - The Excel exporter service `exportEnded` event has its `xlsx` argument type changed as `igniteui-angular` no longer depends on `JSZip`. Instead of providing a `JSZip` instance it is now an object describing the structure of the Excel file with property names corresponding to folders or files, folders being objects themselves that can be traversed down, while files have their contents as `Uint8Array`. The same structure is used to package as a zip file by `fflate`'s API.
28+
- `IgxDropDown`
29+
- The `aria-label` attribute of the `IgxDropDownItemBase` can now be se to a custom value for its descendants (of which `IgxDropDownItem`) by the `ariaLabel` property.
430

531
## 14.1.0
632

README.md

Lines changed: 46 additions & 44 deletions
Large diffs are not rendered by default.

ROADMAP.md

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,11 @@
22

33
# Current Milestone
44

5-
## Milestone 24, version 14.2 (Due by October, 2022)
5+
## Milestone 24, version 15.0 (Due by October, 2022)
66

7-
1. Angular query builder component (Angular Tree Grid Advanced Filtering without the tree grid) [#11750](https://github.com/IgniteUI/igniteui-angular/issues/11750)
8-
2. [PivotGrid] Export to Excel [#11742](https://github.com/IgniteUI/igniteui-angular/issues/11742)
9-
3. Support exporting grid with summaries [#11598](https://github.com/IgniteUI/igniteui-angular/issues/11598)
10-
4. **[DONE]** Themes: Add support for adjusting spacing via CSS vars [#11368](https://github.com/IgniteUI/igniteui-angular/issues/11368)
7+
1. Support exporting grid with summaries [#11598](https://github.com/IgniteUI/igniteui-angular/issues/11598)
8+
2. **[DONE]** Themes: Add support for adjusting spacing via CSS vars [#11368](https://github.com/IgniteUI/igniteui-angular/issues/11368)
9+
3. Support for Angular 15
1110

1211
## Going down the road
1312

@@ -21,6 +20,11 @@
2120

2221
# Previous Milestone
2322

23+
## Milestone 24, version 14.2 (Released October 06th, 2022)
24+
25+
1. **[DONE]** Angular query builder component (Angular Tree Grid Advanced Filtering without the tree grid) [#11750](https://github.com/IgniteUI/igniteui-angular/issues/11750)
26+
2. **[DONE]** [PivotGrid] Export to Excel [#11742](https://github.com/IgniteUI/igniteui-angular/issues/11742)
27+
2428
## Milestone 23, version 14.1 (Released September 13th, 2022)
2529

2630
1. **[DONE]** Grid autosize feature with performance improvements [#10205](https://github.com/IgniteUI/igniteui-angular/issues/10205)

package-lock.json

Lines changed: 50 additions & 72 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)