Skip to content

Commit 71fe759

Browse files
authored
Merge branch 'master' into simeonoff/css-var-refs
2 parents f1038d1 + 735619c commit 71fe759

File tree

225 files changed

+2650
-2342
lines changed

Some content is hidden

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

225 files changed

+2650
-2342
lines changed

.eslintrc.json

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,17 @@
2222
],
2323
"rules": {
2424
"no-shadow": "off",
25-
"@typescript-eslint/no-shadow": ["error"],
25+
"@typescript-eslint/no-shadow": [
26+
"error"
27+
],
2628
"no-unused-vars": "off",
27-
"@typescript-eslint/no-unused-vars": ["warn", { "varsIgnorePattern": "_" , "argsIgnorePattern": "^_"}],
29+
"@typescript-eslint/no-unused-vars": [
30+
"warn",
31+
{
32+
"varsIgnorePattern": "_",
33+
"argsIgnorePattern": "^_"
34+
}
35+
],
2836
"@typescript-eslint/consistent-type-definitions": "error",
2937
"@typescript-eslint/dot-notation": "off",
3038
"@typescript-eslint/explicit-member-accessibility": [
@@ -40,7 +48,9 @@
4048
"error",
4149
{
4250
"selector": "enumMember",
43-
"format": ["PascalCase"]
51+
"format": [
52+
"PascalCase"
53+
]
4454
}
4555
],
4656
"brace-style": [

CHANGELOG.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,15 @@ All notable changes for each version of this project will be documented in this
77
### New Features
88
- `IgxForOf`, `IgxGrid`, `IgxTreeGrid`, `IgxHierarchicalGrid`
99
- **Behavioral Change** - Virtual containers now scroll smoothly when using the mouse wheel(s) to scroll them horizontally or vertically. This behavior more closely resembles the scrolling behavior of non-virtualized containers in most modern browsers.
10-
11-
10+
- `IgxGrid`, `IgxTreeGrid`, `IgxHierarchicalGrid`
11+
- The `IgxRowAddTextDirective` allows to customize the text of the row adding overlay.
12+
```html
13+
<igx-grid [rowEditable]="true">
14+
<ng-template igxRowAddText>
15+
Adding Row
16+
</ng-template>
17+
</igx-grid>
18+
```
1219
### Themes:
1320
- Breaking Changes:
1421
- `IgxButton` theme has been simplified. The number of theme params (`igx-button-theme`) has been reduced significantly and no longer includes prefixed parameters (`flat-*`, `raised-*`, etc.). See the migration guide to update existing button themes. Updates performed with `ng update` will migrate existing button themes but some additional tweaking may be required to account for the abscense of prefixed params.

0 commit comments

Comments
 (0)