Skip to content

Commit c642708

Browse files
committed
Merge branch 'master' into ddimitrov/advancedFiltering
2 parents 94647fc + 9314a01 commit c642708

File tree

75 files changed

+2972
-970
lines changed

Some content is hidden

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

75 files changed

+2972
-970
lines changed

.github/CONTRIBUTING.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,11 @@ When logging issue you should assign `severity:` label. If you cannot determine
5656

5757
### Triaging
5858

59-
Before release a triaging is done. Issues that need to be fixed for the release are marked with `triage: blocking` status.
59+
Issues that block other issues completion are marked with `triage: blocking` status.
60+
61+
### Priority
62+
63+
Issues that need to be addressed immediately are marked with `priority: high` status.
6064

6165
## Testing - applicable to pull requests
6266
1. `status: awaiting-test` this is the initial status of pull requests. If you're performing the pull request, please place this status on it. Pull requests are accepted if and only if all status checks pass, review is performed, and the pull request has been tested and contains `status: verified`.

CHANGELOG.md

Lines changed: 12 additions & 6 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+
## 8.1.2
6+
7+
### New Features
8+
- `IgxDatePicker`
9+
- `valueChange` event is added.
10+
511
## 8.1.0
612

713
### New Features
@@ -15,7 +21,7 @@ All notable changes for each version of this project will be documented in this
1521
- **Behavioral Change** - paging now includes the group rows in the page size. You may find more information about the change in the [GroupBy Specification](https://github.com/IgniteUI/igniteui-angular/wiki/Group-By-Specification)
1622
- `IgxColumnGroup`
1723
- Re-templating the column group header is now possible using the `headerTemplate` input property or the `igxHeader` directive.
18-
- `igx-grid-footer`
24+
- `igx-grid-footer`
1925
- You can use this to insert a custom footer in the grids.
2026
```html
2127
<igx-grid>
@@ -41,21 +47,21 @@ All notable changes for each version of this project will be documented in this
4147

4248
## 8.0.2
4349
- `igx-list-theme` now have some new parameters for styling.
44-
- $item-background-hover - Change The list item hover background
50+
- $item-background-hover - Change The list item hover background
4551
- $item-text-color-hover - Change The list item hover text color.
46-
52+
4753
- $item-subtitle-color - Change The list item subtitle color.
4854
- $item-subtitle-color-hover - Change The list item hover subtitle color.
4955
- $item-subtitle-color-active - Change The active list item subtitle color.
50-
56+
5157
- $item-action-color - Change The list item actions color.
5258
- $item-action-color-hover - Change The list item hover actions color.
5359
- $item-action-color-active - Change The active list item actions color.
54-
60+
5561
- $item-thumbnail-color - Change The list item thumbnail color.
5662
- $item-thumbnail-color-hover - Change The list item hover thumbnail color.
5763
- $item-thumbnail-color-active - Change The active list item thumbnail color.
58-
64+
5965
- **Behavioral Change** default min column width is changed according the grid display density property:
6066
- for `DisplayDensity.comfortable` defaultMinWidth is `80px`;
6167
- for `DisplayDensity.cosy` defaultMinWidth is `64px`;

ROADMAP.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@
88
2. IgxGrid row and cell selection modes [#4989](https://github.com/IgniteUI/igniteui-angular/issues/4989)
99
3. Fluent Theme [#5335](https://github.com/IgniteUI/igniteui-angular/issues/5335)
1010
4. Drag and Drop enhancements [#5319](https://github.com/IgniteUI/igniteui-angular/issues/5319)
11+
5. Multi-View Calendar + Range DatePicker [#4282](https://github.com/IgniteUI/igniteui-angular/issues/4282)
12+
6. Custom grid row selector templates [#4998](https://github.com/IgniteUI/igniteui-angular/issues/4998)
13+
7. Per-column Filtering Strategies [#5323](https://github.com/IgniteUI/igniteui-angular/issues/5323)
1114

1215
## Going down the road
1316

projects/igniteui-angular/src/lib/chips/chip.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import {
1919
IDragStartEventArgs,
2020
IgxDropEnterEventArgs,
2121
IgxDropEventArgs
22-
} from '../directives/dragdrop/dragdrop.directive';
22+
} from '../directives/drag-drop/drag-drop.directive';
2323

2424

2525
export interface IBaseChipEventArgs {

projects/igniteui-angular/src/lib/chips/chips-area.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import {
2323
} from './chip.component';
2424
import {
2525
IgxDropEnterEventArgs
26-
} from '../directives/dragdrop/dragdrop.directive';
26+
} from '../directives/drag-drop/drag-drop.directive';
2727
import { takeUntil } from 'rxjs/operators';
2828
import { Subject } from 'rxjs/internal/Subject';
2929

projects/igniteui-angular/src/lib/chips/chips.module.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { IgxAvatarModule } from '../avatar/avatar.component';
66
import { IgxIconModule } from '../icon/index';
77
import { IgxChipComponent } from './chip.component';
88
import { IgxChipsAreaComponent } from './chips-area.component';
9-
import { IgxDragDropModule } from '../directives/dragdrop/dragdrop.directive';
9+
import { IgxDragDropModule } from '../directives/drag-drop/drag-drop.directive';
1010
import { IgxPrefixModule, IgxPrefixDirective} from '../directives/prefix/prefix.directive';
1111
import { IgxSuffixModule, IgxSuffixDirective } from '../directives/suffix/suffix.directive';
1212

projects/igniteui-angular/src/lib/core/styles/components/grid/_excel-filtering-component.scss

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,11 @@
6868
@extend %grid-excel-actions__action !optional;
6969
}
7070

71+
@include e(actions-pin, $m: disabled) {
72+
@extend %grid-excel-actions__action !optional;
73+
@extend %grid-excel-actions__action--disabled !optional;
74+
}
75+
7176
@include e(actions-unpin) {
7277
@extend %grid-excel-actions__action !optional;
7378
}

projects/igniteui-angular/src/lib/core/styles/components/grid/_grid-theme.scss

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
/// @param {Color} $header-border-color [null] - The color used for header borders.
1919
///
2020
/// @param {Color} $sorted-header-icon-color [null] - The sort icon color when sorted.
21+
/// @param {color} $sortable-header-icon-hover-color [null] - The icon color on hover in grid header when the column is sortable.
2122
///
2223
/// @param {Color} $content-background [null] - The table body background color.
2324
/// @param {Color} $content-text-color [null] - The table body text color.
@@ -192,6 +193,7 @@
192193
$row-ghost-background: null,
193194
$row-drag-color: null,
194195
$drop-area-border-radius: null,
196+
$sortable-header-icon-hover-color: null
195197
) {
196198
$name: 'igx-grid';
197199
$grid-schema: map-get($schema, $name);
@@ -474,7 +476,8 @@
474476
drag-shadow: $drag-shadow,
475477
row-ghost-background: $row-ghost-background,
476478
row-drag-color: $row-drag-color,
477-
drop-area-border-radius: $drop-area-border-radius
479+
drop-area-border-radius: $drop-area-border-radius,
480+
sortable-header-icon-hover-color: $sortable-header-icon-hover-color
478481
));
479482
}
480483

projects/igniteui-angular/src/lib/core/styles/components/list/_list-theme.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -373,7 +373,7 @@
373373
}
374374

375375
%igx-list__item-lines {
376-
color: --var($theme, 'item-text-color');
376+
color: currentColor;
377377
display: flex;
378378
flex-direction: column;
379379
flex: 1 0 0%;

projects/igniteui-angular/src/lib/core/styles/themes/schemas/light/_grid.scss

Lines changed: 2 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@
1212
/// @prop {Map} header-background [igx-color: ('grays', 100), hexrgba: #fff] - The table header background color.
1313
/// @prop {Map} header-text-color [igx-color: ('grays', 600)] - The table header text color.
1414
///
15-
/// @prop {Map} $sorted-header-icon-color [igx-color: ('secondary', 500)] - The sorted table header icon color.
15+
/// @prop {Map} sorted-header-icon-color [igx-color: ('secondary', 500)] - The sorted table header icon color.
16+
/// @prop {Map} sortable-header-icon-hover-color [igx-color: ('secondary', 500)] - The icon color on hover in grid header when the column is sortable.
1617
///
1718
/// @prop {Number} header-border-width [1px] - The border width used for header borders.
1819
/// @prop {String} header-border-style [solid] - The border style used for header borders.
@@ -85,22 +86,10 @@ $_light-grid: extend(
8586
igx-color: ('grays', 600)
8687
),
8788

88-
sortable-header-hover-color: (
89-
igx-color: ('grays', 900)
90-
),
91-
92-
sortable-header-hover-icon-color: (
93-
igx-color: ('grays', 500)
94-
),
95-
9689
sortable-header-icon-hover-color: (
9790
igx-color: ('secondary', 500)
9891
),
9992

100-
sorted-header-color: (
101-
igx-color: ('grays', 900)
102-
),
103-
10493
sorted-header-icon-color: (
10594
igx-color: ('secondary', 500)
10695
),

0 commit comments

Comments
 (0)