Skip to content

Commit 86e509c

Browse files
authored
Merge pull request #16256 from IgniteUI/20.1.x
Mass merging 20.1.x to master
2 parents 13db60d + ba63cb0 commit 86e509c

File tree

74 files changed

+472
-194
lines changed

Some content is hidden

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

74 files changed

+472
-194
lines changed

package-lock.json

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

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@
7575
"@types/source-map": "0.5.2",
7676
"express": "^5.1.0",
7777
"fflate": "^0.8.1",
78-
"igniteui-theming": "^20.0.0",
78+
"igniteui-theming": "^21.0.2",
7979
"igniteui-trial-watermark": "^3.1.0",
8080
"lodash-es": "^4.17.21",
8181
"rxjs": "^7.8.2",
@@ -120,7 +120,7 @@
120120
"hammerjs": "^2.0.8",
121121
"ig-typedoc-theme": "^6.0.0",
122122
"igniteui-dockmanager": "^1.17.0",
123-
"igniteui-sassdoc-theme": "^2.0.2",
123+
"igniteui-sassdoc-theme": "^2.1.0",
124124
"igniteui-webcomponents": "6.2.1",
125125
"jasmine": "^5.6.0",
126126
"jasmine-core": "^5.6.0",

projects/igniteui-angular-elements/src/app/custom-strategy.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,14 +49,14 @@ describe('Elements: ', () => {
4949
gridEl.appendChild(columnEl);
5050

5151
// TODO: Better way to wait - potentially expose the queue or observable for update on the strategy
52-
await firstValueFrom(timer(10 /* SCHEDULE_DELAY */ * 2));
52+
await firstValueFrom(timer(10 /* SCHEDULE_DELAY */ * 4));
5353

5454
const gridComponent = (await gridEl.ngElementStrategy[ComponentRefKey]).instance as IgxGridComponent;
5555
const columnComponent = (await columnEl.ngElementStrategy[ComponentRefKey]).instance as IgxColumnComponent;
5656
expect(gridComponent.columnList.toArray()).toContain(columnComponent);
5757

5858
columnEl.remove();
59-
await firstValueFrom(timer(10 /* SCHEDULE_DELAY: DESTROY + QUERY */ * 3));
59+
await firstValueFrom(timer(10 /* SCHEDULE_DELAY: DESTROY + QUERY */ * 4));
6060
expect(gridComponent.columnList.toArray()).toEqual([]);
6161
});
6262

projects/igniteui-angular-elements/src/public_api.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import { IgxPivotDateDimension } from 'projects/igniteui-angular/src/lib/grids/p
1212
import { PivotDimensionType } from 'projects/igniteui-angular/src/lib/grids/pivot-grid/pivot-grid.interface';
1313
import { IgxDateSummaryOperand, IgxNumberSummaryOperand, IgxSummaryOperand, IgxTimeSummaryOperand } from 'projects/igniteui-angular/src/lib/grids/summaries/grid-summary';
1414
import { HorizontalAlignment, VerticalAlignment } from 'projects/igniteui-angular/src/lib/services/overlay/utilities';
15-
import { ByLevelTreeGridMergeStrategy } from 'projects/igniteui-angular/src/lib/data-operations/merge-strategy';
15+
import { ByLevelTreeGridMergeStrategy, DefaultTreeGridMergeStrategy } from 'projects/igniteui-angular/src/lib/data-operations/merge-strategy';
1616

1717
/** Export Public API, TODO: reorganize, Generate all w/ renames? */
1818
export {
@@ -35,6 +35,7 @@ export {
3535

3636
NoopSortingStrategy as IgcNoopSortingStrategy,
3737
NoopFilteringStrategy as IgcNoopFilteringStrategy,
38+
DefaultTreeGridMergeStrategy as IgcDefaultTreeGridMergeStrategy,
3839
ByLevelTreeGridMergeStrategy as IgcByLevelTreeGridMergeStrategy,
3940

4041
// Pivot API

projects/igniteui-angular-elements/src/themes/_util.scss

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,9 +72,8 @@ $elements-selector-prefix: 'igc';
7272
/// @return {String} - Updated selector(s) with `igc-` prefixed equivalents
7373
@function updateSelectors($selector) {
7474
$result: ();
75-
$selectors: string.split($selector, ", ");
7675

77-
@each $sel in $selectors {
76+
@each $sel in $selector {
7877
$result: list.append($result, $sel, comma);
7978

8079
@if string.index($sel, 'igx-') == 1 {

projects/igniteui-angular/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@
7373
"tslib": "^2.3.0",
7474
"igniteui-trial-watermark": "^3.1.0",
7575
"lodash-es": "^4.17.21",
76-
"igniteui-theming": "^20.0.0",
76+
"igniteui-theming": "^21.0.2",
7777
"@igniteui/material-icons-extended": "^3.1.0"
7878
},
7979
"peerDependencies": {

projects/igniteui-angular/src/lib/core/styles/components/avatar/_avatar-theme.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
/// @see {mixin} css-vars
77
/// @param {Map} $theme - The theme used to style the component.
88
@mixin avatar($theme) {
9-
@include css-vars($theme, 'igx-avatar');
9+
@include css-vars($theme);
1010

1111
$variant: map.get($theme, '_meta', 'theme');
1212

projects/igniteui-angular/src/lib/core/styles/components/badge/_badge-theme.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
/// @see {mixin} css-vars
66
/// @param {Map} $theme - The theme used to style the component.
77
@mixin badge($theme) {
8-
@include css-vars($theme, 'igx-badge');
8+
@include css-vars($theme);
99

1010
$variant: map.get($theme, '_meta', 'theme');
1111

projects/igniteui-angular/src/lib/core/styles/components/banner/_banner-theme.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
/// @see {mixin} css-vars
66
/// @param {Map} $theme - The theme used to style the component.
77
@mixin banner($theme) {
8-
@include css-vars($theme, 'igx-banner, .igx-banner');
8+
@include css-vars($theme);
99
$variant: map.get($theme, '_meta', 'theme');
1010

1111
%igx-banner-host {

projects/igniteui-angular/src/lib/core/styles/components/bottom-nav/_bottom-nav-theme.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
/// @see {mixin} css-vars
77
/// @param {Map} $theme - The theme used to style the component.
88
@mixin bottom-nav($theme) {
9-
@include css-vars($theme, 'igx-bottom-nav');
9+
@include css-vars($theme);
1010

1111
$variant: map.get($theme, '_meta', 'theme');
1212
$menu-height: rem(56px);

0 commit comments

Comments
 (0)