Skip to content

Commit 41a02f6

Browse files
authored
Merge branch 'master' into didimmova/update-chip-paddings
2 parents d6d47fd + 024b8e8 commit 41a02f6

25 files changed

Lines changed: 583 additions & 595 deletions

File tree

gulpfile.js

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -62,11 +62,6 @@ module.exports.copyMigrations = (cb) => {
6262
'!**/tsconfig.json'
6363
]).pipe(gulp.dest('./dist/igniteui-angular/migrations'));
6464

65-
66-
gulp.src([
67-
'./projects/igniteui-angular/migrations/common/import-helper.js'
68-
]).pipe(gulp.dest('./dist/igniteui-angular/migrations/common'));
69-
7065
cb();
7166
};
7267

package-lock.json

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

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@
8282
"express": "^5.2.1",
8383
"fflate": "^0.8.1",
8484
"igniteui-i18n-core": "^1.0.2",
85-
"igniteui-theming": "^25.2.0",
85+
"igniteui-theming": "^26.0.0",
8686
"igniteui-trial-watermark": "^3.1.0",
8787
"jspdf": "^4.2.1",
8888
"lodash-es": "^4.17.21",
Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
# Nested package.json's are only needed for development.
2-
**/package.json
2+
**/package.json
3+
!migrations/package.json
4+
!schematics/package.json

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -892,12 +892,14 @@
892892
&%igx-grid__tr--ghost {
893893
background: var-get($theme, 'row-ghost-background');
894894
color: var-get($theme, 'row-drag-color');
895+
outline: rem(1px) solid var-get($theme, 'row-ghost-border-color');
895896
z-index: 10002;
896897

897898
@include css-vars((
898899
name: 'igx-grid-row',
899900
row-ghost-background: map.get($theme, 'row-ghost-background'),
900-
row-drag-color: map.get($theme, 'row-drag-color')
901+
row-drag-color: map.get($theme, 'row-drag-color'),
902+
row-ghost-border-color: map.get($theme, 'row-ghost-border-color')
901903
));
902904
}
903905
}

projects/igniteui-angular/core/src/core/styles/components/progress/circular/_circular-theme.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@
157157

158158
%inner {
159159
stroke-width: var(--stroke-thickness);
160-
stroke: var-get($theme, 'base-circle-color');
160+
stroke: var-get($theme, 'track-color');
161161
}
162162

163163
%outer {

projects/igniteui-angular/migrations/common/import-helper.js

Lines changed: 0 additions & 14 deletions
This file was deleted.

projects/igniteui-angular/migrations/common/util.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import type {
1919
Node,
2020
Text,
2121
Visitor
22-
} from '@angular/compiler';
22+
} from '@angular/compiler' with { "resolution-mode": "import" };
2323

2424
const configPaths = ['/.angular.json', '/angular.json'];
2525

projects/igniteui-angular/migrations/migration-collection.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -279,6 +279,11 @@
279279
"factory": "./update-21_1_0_add-agent-skills",
280280
"recommended": true,
281281
"optional": true
282+
},
283+
"migration-55": {
284+
"version": "21.2.0",
285+
"description": "Updates Ignite UI for Angular from v21.1.x to v21.2.0",
286+
"factory": "./update-21_2_0"
282287
}
283288
}
284289
}
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"type": "commonjs"
3+
}

0 commit comments

Comments
 (0)