Skip to content

Commit addfd4a

Browse files
authored
Merge branch 'master' into apetrov/set-tick-width-property
2 parents 89abb87 + 86e509c commit addfd4a

File tree

75 files changed

+753
-755
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

+753
-755
lines changed

.github/workflows/stale.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ on:
77
jobs:
88
stale:
99

10+
permissions:
11+
contents: read
12+
issues: write
13+
pull-requests: write
14+
1015
runs-on: ubuntu-latest
1116

1217
steps:

package-lock.json

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

package.json

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -59,40 +59,40 @@
5959
},
6060
"private": true,
6161
"dependencies": {
62-
"@angular/animations": "^20.3.0",
63-
"@angular/common": "^20.3.0",
64-
"@angular/compiler": "^20.3.0",
65-
"@angular/core": "^20.3.0",
66-
"@angular/elements": "^20.3.0",
67-
"@angular/forms": "^20.3.0",
68-
"@angular/platform-browser": "^20.3.0",
69-
"@angular/platform-browser-dynamic": "^20.3.0",
70-
"@angular/platform-server": "^20.3.0",
71-
"@angular/router": "^20.3.0",
72-
"@angular/ssr": "^20.3.1",
62+
"@angular/animations": "^20.3.6",
63+
"@angular/common": "^20.3.6",
64+
"@angular/compiler": "^20.3.6",
65+
"@angular/core": "^20.3.6",
66+
"@angular/elements": "^20.3.6",
67+
"@angular/forms": "^20.3.6",
68+
"@angular/platform-browser": "^20.3.6",
69+
"@angular/platform-browser-dynamic": "^20.3.6",
70+
"@angular/platform-server": "^20.3.6",
71+
"@angular/router": "^20.3.6",
72+
"@angular/ssr": "^20.3.6",
7373
"@igniteui/material-icons-extended": "^3.1.0",
7474
"@lit-labs/ssr-dom-shim": "^1.3.0",
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",
8282
"tslib": "^2.3.0",
8383
"zone.js": "~0.15.0"
8484
},
8585
"devDependencies": {
86-
"@angular-devkit/schematics": "^20.3.1",
87-
"@angular-eslint/builder": "^20.3.0",
88-
"@angular-eslint/eslint-plugin": "^20.3.0",
89-
"@angular-eslint/eslint-plugin-template": "^20.3.0",
90-
"@angular-eslint/schematics": "^20.3.0",
91-
"@angular-eslint/template-parser": "^20.3.0",
92-
"@angular/build": "^20.3.1",
93-
"@angular/cli": "^20.3.1",
94-
"@angular/compiler-cli": "^20.3.0",
95-
"@angular/language-service": "^20.3.0",
86+
"@angular-devkit/schematics": "^20.3.6",
87+
"@angular-eslint/builder": "^20.4.0",
88+
"@angular-eslint/eslint-plugin": "^20.4.0",
89+
"@angular-eslint/eslint-plugin-template": "^20.4.0",
90+
"@angular-eslint/schematics": "^20.4.0",
91+
"@angular-eslint/template-parser": "^20.4.0",
92+
"@angular/build": "^20.3.6",
93+
"@angular/cli": "^20.3.6",
94+
"@angular/compiler-cli": "^20.3.6",
95+
"@angular/language-service": "^20.3.6",
9696
"@angularclass/hmr": "^3.0.0",
9797
"@microsoft/signalr": "^7.0.12",
9898
"@types/estree": "^1.0.0",
@@ -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 {

0 commit comments

Comments
 (0)