Skip to content

Commit 6f32dc6

Browse files
authored
Merge pull request #7585 from IgniteUI/9.1.x
Merging 9.1.x into master
2 parents f042a71 + 9dac46e commit 6f32dc6

File tree

224 files changed

+2431
-1679
lines changed

Some content is hidden

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

224 files changed

+2431
-1679
lines changed

CHANGELOG.md

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

33
All notable changes for each version of this project will be documented in this file.
44

5+
## 9.1.1
6+
7+
### General
8+
- `IgxHierarchicalGrid`
9+
- `onGridInitialized` - New output has been exposed. Emitted after a grid is being initialized for the corresponding row island.
10+
511
## 9.1.0
612

713
### General
@@ -123,6 +129,9 @@ All notable changes for each version of this project will be documented in this
123129
```typescript
124130
public pinningConfiguration: IPinningConfig = { columns: ColumnPinningPosition.End };
125131
```
132+
- Added new properties for paging:
133+
- `totalRecords` set to alter the pages count based on total remote records. Keep in mind that If you are using paging and all the data is passed to the grid, the value of totalRecords property will be set by default to the length of the provided data source. If totalRecords is set, it will take precedent over the default length based on the data source.
134+
- `pagingMode` - accepts `GridPagingMode` enumeration. If the paging mode is set to remote the grid will not paginate the passed data source, if the paging mode is set to local (which is the default value) the grid will paginate the data source based on the page, perPage and totalRecords values.
126135
- Added functionality for column selection.
127136
- `columnSelection` property has been added. It accepts GridSelection mode enumeration. Grid selection mode could be none, single or multiple.
128137
- `selected` property has been added to the IgxColumnComponent; Allows you to set whether the column is selected.

projects/igniteui-angular/karma.azure.conf.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ module.exports = function (config) {
3535
},
3636
reporters: ['junit'],
3737
junitReporter: {
38-
outputDir: ''
38+
outputDir: ''
3939
},
4040
port: 9876,
4141
colors: true,

projects/igniteui-angular/karma.azure.grid.conf.js

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,14 @@ module.exports = function (config) {
4242
colors: true,
4343
logLevel: config.LOG_INFO,
4444
autoWatch: true,
45-
browsers: ['ChromeHeadless'],
45+
browsers: ['ChromeHeadlessNoSandbox'],
46+
customLaunchers: {
47+
ChromeHeadlessNoSandbox: {
48+
base: 'ChromeHeadless',
49+
flags: ['--no-sandbox', '--disable-gpu'],
50+
debug: false
51+
}
52+
},
4653
singleRun: true
4754
});
4855
};

projects/igniteui-angular/karma.azure.hierarchical-grid.conf.js

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,14 @@ module.exports = function (config) {
4141
colors: true,
4242
logLevel: config.LOG_INFO,
4343
autoWatch: true,
44-
browsers: ['ChromeHeadless'],
44+
browsers: ['ChromeHeadlessNoSandbox'],
45+
customLaunchers: {
46+
ChromeHeadlessNoSandbox: {
47+
base: 'ChromeHeadless',
48+
flags: ['--no-sandbox', '--disable-gpu'],
49+
debug: false
50+
}
51+
},
4552
singleRun: true
4653
});
4754
};

projects/igniteui-angular/karma.azure.non-grid.conf.js

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,14 @@ module.exports = function (config) {
4141
colors: true,
4242
logLevel: config.LOG_INFO,
4343
autoWatch: true,
44-
browsers: ['ChromeHeadless'],
44+
browsers: ['ChromeHeadlessNoSandbox'],
45+
customLaunchers: {
46+
ChromeHeadlessNoSandbox: {
47+
base: 'ChromeHeadless',
48+
flags: ['--no-sandbox', '--disable-gpu'],
49+
debug: false
50+
}
51+
},
4552
singleRun: true
4653
});
4754
};

projects/igniteui-angular/karma.azure.tree-grid.conf.js

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,14 @@ module.exports = function (config) {
4141
colors: true,
4242
logLevel: config.LOG_INFO,
4343
autoWatch: true,
44-
browsers: ['ChromeHeadless'],
44+
browsers: ['ChromeHeadlessNoSandbox'],
45+
customLaunchers: {
46+
ChromeHeadlessNoSandbox: {
47+
base: 'ChromeHeadless',
48+
flags: ['--no-sandbox', '--disable-gpu'],
49+
debug: false
50+
}
51+
},
4552
singleRun: true
4653
});
4754
};

projects/igniteui-angular/karma.conf.js

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,12 @@ module.exports = function (config) {
3535
},
3636
reporters: ['spec'],
3737
specReporter: {
38-
suppressSkipped: true
38+
suppressSkipped: true,
39+
suppressErrorSummary: false,
40+
suppressFailed: false,
41+
suppressPassed: false,
42+
showSpecTiming: false,
43+
failFast: false
3944
},
4045
port: 9876,
4146
colors: true,

projects/igniteui-angular/karma.grid.conf.js

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,25 @@ module.exports = function (config) {
3636
},
3737
reporters: ['spec'],
3838
specReporter: {
39-
suppressSkipped: true
39+
suppressSkipped: true,
40+
suppressErrorSummary: false,
41+
suppressFailed: false,
42+
suppressPassed: false,
43+
showSpecTiming: false,
44+
failFast: false
4045
},
4146
port: 9876,
4247
colors: true,
4348
logLevel: config.LOG_INFO,
4449
autoWatch: true,
45-
browsers: ['ChromeHeadless'],
50+
browsers: ['ChromeHeadlessNoSandbox'],
51+
customLaunchers: {
52+
ChromeHeadlessNoSandbox: {
53+
base: 'ChromeHeadless',
54+
flags: ['--no-sandbox', '--disable-gpu'],
55+
debug: false
56+
}
57+
},
4658
singleRun: false
4759
});
4860
};

projects/igniteui-angular/karma.hierarchical-grid.conf.js

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,25 @@ module.exports = function (config) {
3535
},
3636
reporters: ['spec'],
3737
specReporter: {
38-
suppressSkipped: true
38+
suppressSkipped: true,
39+
suppressErrorSummary: false,
40+
suppressFailed: false,
41+
suppressPassed: false,
42+
showSpecTiming: false,
43+
failFast: false
3944
},
4045
port: 9876,
4146
colors: true,
4247
logLevel: config.LOG_INFO,
4348
autoWatch: true,
44-
browsers: ['ChromeHeadless'],
49+
browsers: ['ChromeHeadlessNoSandbox'],
50+
customLaunchers: {
51+
ChromeHeadlessNoSandbox: {
52+
base: 'ChromeHeadless',
53+
flags: ['--no-sandbox', '--disable-gpu'],
54+
debug: false
55+
}
56+
},
4557
singleRun: false
4658
});
4759
};

projects/igniteui-angular/karma.non-grid.conf.js

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,25 @@ module.exports = function (config) {
3535
},
3636
reporters: ['spec'],
3737
specReporter: {
38-
suppressSkipped: true
38+
suppressSkipped: true,
39+
suppressErrorSummary: false,
40+
suppressFailed: false,
41+
suppressPassed: false,
42+
showSpecTiming: false,
43+
failFast: false
3944
},
4045
port: 9876,
4146
colors: true,
4247
logLevel: config.LOG_INFO,
4348
autoWatch: true,
44-
browsers: ['ChromeHeadless'],
49+
browsers: ['ChromeHeadlessNoSandbox'],
50+
customLaunchers: {
51+
ChromeHeadlessNoSandbox: {
52+
base: 'ChromeHeadless',
53+
flags: ['--no-sandbox', '--disable-gpu'],
54+
debug: false
55+
}
56+
},
4557
singleRun: false
4658
});
4759
};

0 commit comments

Comments
 (0)