Skip to content

Commit 335197d

Browse files
authored
Merge branch 'master' into copilot/fix-2dba955d-3caf-43d3-8bbf-4119af471fc7
2 parents 964dda1 + dfaf43a commit 335197d

File tree

9 files changed

+20
-13
lines changed

9 files changed

+20
-13
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
# [14.5.5](https://github.com/IgniteUI/igniteui-cli/compare/v14.5.4...v14.5.5) (2025-08-21)
2+
3+
## What's Changed
4+
* fix: remove hsla function #1412 @Lipata in https://github.com/IgniteUI/igniteui-cli/pull/1412
5+
6+
**Full Changelog**: https://github.com/IgniteUI/igniteui-cli/compare/v14.5.4...v14.5.5
7+
18
# [14.5.4](https://github.com/IgniteUI/igniteui-cli/compare/v14.5.3...v14.5.4) (2025-07-01)
29

310
## What's Changed

packages/cli/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "igniteui-cli",
3-
"version": "14.5.4",
3+
"version": "14.5.5",
44
"description": "CLI tool for creating Ignite UI projects",
55
"keywords": [
66
"CLI",
@@ -76,8 +76,8 @@
7676
"all": true
7777
},
7878
"dependencies": {
79-
"@igniteui/angular-templates": "~20.0.1454",
80-
"@igniteui/cli-core": "~14.5.4",
79+
"@igniteui/angular-templates": "~20.0.1455",
80+
"@igniteui/cli-core": "~14.5.5",
8181
"@inquirer/prompts": "^5.4.0",
8282
"@types/yargs": "^17.0.33",
8383
"chalk": "^5.3.0",

packages/cli/templates/react/igr-ts/projects/_base/files/styles.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
body {
2-
background: hsla(var(--ig-surface-500, 0 0% 100%));
2+
background: var(--ig-surface-500, 0 0% 100%);
33
color: var(--ig-surface-500-contrast, black);
44
font-family: var(--ig-font-family);
55
padding: 0;

packages/cli/templates/webcomponents/igc-ts/projects/_base/files/styles.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
body {
2-
background: hsla(var(--ig-surface-500, 0 0% 100%));
2+
background: var(--ig-surface-500, 0 0% 100%);
33
color: var(--ig-surface-500-contrast, black);
44
font-family: var(--ig-font-family);
55
}

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@igniteui/cli-core",
3-
"version": "14.5.4",
3+
"version": "14.5.5",
44
"description": "Base types and functionality for Ignite UI CLI",
55
"repository": {
66
"type": "git",

packages/igx-templates/igx-ts-legacy/tree/default/files/src/app/__path__/__filePrefix__.component.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ igx-tree {
1212
.node-refresh {
1313
cursor: pointer;
1414
padding: 0px 4px;
15-
color: hsla(var(--igx-success-500));
15+
color: var(--igx-success-500);
1616
}
1717

1818
.node {

packages/igx-templates/igx-ts/tree/default/files/src/app/__path__/__filePrefix__.component.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ igx-tree {
1212
.node-refresh {
1313
cursor: pointer;
1414
padding: 0px 4px;
15-
color: hsla(var(--igx-success-500));
15+
color: var(--igx-success-500);
1616
}
1717

1818
.node {

packages/igx-templates/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@igniteui/angular-templates",
3-
"version": "20.0.1454",
3+
"version": "20.0.1455",
44
"description": "Templates for Ignite UI for Angular projects and components",
55
"repository": {
66
"type": "git",
@@ -12,7 +12,7 @@
1212
"author": "Infragistics",
1313
"license": "MIT",
1414
"dependencies": {
15-
"@igniteui/cli-core": "~14.5.4",
15+
"@igniteui/cli-core": "~14.5.5",
1616
"typescript": "~5.5.4"
1717
}
1818
}

packages/ng-schematics/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@igniteui/angular-schematics",
3-
"version": "20.0.1454",
3+
"version": "20.0.1455",
44
"description": "Ignite UI for Angular Schematics for ng new and ng generate",
55
"repository": {
66
"type": "git",
@@ -20,8 +20,8 @@
2020
"dependencies": {
2121
"@angular-devkit/core": "^19.0.0",
2222
"@angular-devkit/schematics": "^19.0.0",
23-
"@igniteui/angular-templates": "~20.0.1454",
24-
"@igniteui/cli-core": "~14.5.4",
23+
"@igniteui/angular-templates": "~20.0.1455",
24+
"@igniteui/cli-core": "~14.5.5",
2525
"@schematics/angular": "~19.0.0",
2626
"minimatch": "^10.0.1",
2727
"rxjs": "^7.8.1"

0 commit comments

Comments
 (0)