Skip to content

Commit d41b4d5

Browse files
authored
Merge branch 'master' into master
2 parents a100c75 + 9b59b4d commit d41b4d5

File tree

214 files changed

+7326
-7077
lines changed

Some content is hidden

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

214 files changed

+7326
-7077
lines changed

.eslintrc.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
],
2727
"no-unused-vars": "off",
2828
"@typescript-eslint/no-unused-vars": [
29-
"warn",
29+
"error",
3030
{
3131
"varsIgnorePattern": "_",
3232
"argsIgnorePattern": "^_"

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ npm-debug.log
3838
yarn-error.log
3939
testem.log
4040
/typings
41+
TESTS-**.xml
4142

4243
# System Files
4344
.DS_Store

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ All notable changes for each version of this project will be documented in this
1818
* - `IgxColumnComponent` - `ColumnType` (for example the column parameter in `igxFilterCellTemplate`)
1919
* - `IgxGridCell` - `CellType` (for example the cell parameter in `igxCell` template)
2020

21+
- A new `groupRecord` parameter has been exposed in `operate` method, that is an `IGroupByRecord` object describing the grouped row in case grouping is applied.
22+
2123
- `excelStyleHeaderIconTemplate` - Gets/Sets the excel style header icon.
2224
- `groupRowTemplate` - Gets/Sets the template reference for the group row.
2325
- `headSelectorTemplate` - Gets/Sets the header row selector template.
@@ -53,6 +55,9 @@ All notable changes for each version of this project will be documented in this
5355
- `multi` mode - select/deselect all dates between the last selected/deselected and the one clicked while holding `Shift`.
5456
- `range` mode - extend/shorten the range from the last selected date to the one clicked while holding `Shift`.
5557

58+
- `IgxFilterOptions`
59+
- Added support for multiple keys.
60+
5661
### Theme Changes
5762
- **Breaking Changes** - The `palette` function no longer provides `info`, `success`, `warn` and `error` colors. Therefore you have to pass custom values for them if you need to use these colors. You can also use the values for `info`, `success`, `warn` and `error` colors from our predefined color palettes.
5863

ROADMAP.md

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22

33
# Current Milestone
44

5-
## Milestone 24, version 15.0 (Due by Nov, 2022)
5+
## Milestone 25, version 15.0 (Due by Jan, 2023)
66

7-
1. **[DONE]** 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
7+
1. Design update of Combo Component
8+
2. Design update of Input Group Component
9+
3. Design update of List Component
1010

1111
## Going down the road
1212

@@ -20,6 +20,12 @@
2020

2121
# Previous Milestone
2222

23+
## Milestone 24, version 15.0 (Due by Nov, 2022) [Release Blog](https://www.infragistics.com/community/blogs/b/infragistics/posts/ignite-ui-december-release-2022)
24+
25+
1. **[DONE]** Support exporting grid with summaries [#11598](https://github.com/IgniteUI/igniteui-angular/issues/11598)
26+
2. **[DONE]** Themes: Add support for adjusting spacing via CSS vars [#11368](https://github.com/IgniteUI/igniteui-angular/issues/11368)
27+
3. **[DONE]** Support for Angular 15
28+
2329
## Milestone 24, version 14.2 (Released October 06th, 2022) [Release Blog 22.2](https://www.infragistics.com/community/blogs/b/infragistics/posts/ignite-ui-for-angular-22-2)
2430

2531
1. **[DONE]** Angular query builder component (Angular Tree Grid Advanced Filtering without the tree grid) [#11750](https://github.com/IgniteUI/igniteui-angular/issues/11750)

azure-pipelines.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,8 @@ steps:
5858
testRunner: 'JUnit'
5959
testResultsFiles: '**/TESTS-*.xml'
6060

61-
# - task: PublishCodeCoverageResults@1
62-
# inputs:
63-
# codeCoverageTool: Cobertura
64-
# summaryFileLocation: '$(System.DefaultWorkingDirectory)/coverage/cobertura-coverage.xml'
65-
# reportDirectory: '$(System.DefaultWorkingDirectory)/coverage'
61+
- task: PublishCodeCoverageResults@1
62+
inputs:
63+
codeCoverageTool: Cobertura
64+
summaryFileLocation: '$(System.DefaultWorkingDirectory)/coverage/cobertura-coverage.xml'
65+
reportDirectory: '$(System.DefaultWorkingDirectory)/coverage'

e2e/cypress/plugins/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
// Plugins enable you to tap into, modify, or extend the internal behavior of Cypress
22
// For more info, visit https://on.cypress.io/plugins-api
3-
module.exports = (on, config) => {}
3+
module.exports = (_on, _config) => {}

0 commit comments

Comments
 (0)