Skip to content

Commit 964dda1

Browse files
CopilotLipata
andcommitted
feat: Update Ignite UI product versions in template files
Co-authored-by: Lipata <[email protected]>
1 parent 97fb2aa commit 964dda1

File tree

21 files changed

+40
-40
lines changed

21 files changed

+40
-40
lines changed

packages/cli/templates/angular/ig-ts/projects/empty/files/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"@angular/router": "~20.0.0",
2121
"jquery": ">=1.9.1",
2222
"jquery-ui": ">=1.10.5",
23-
"igniteui-angular-wrappers": "~17.0.0",
23+
"igniteui-angular-wrappers": "~20.0.0",
2424
"ignite-ui": "~22.2",
2525
"rxjs": "~7.8.0",
2626
"tslib": "^2.3.0",

packages/cli/templates/react/es6/projects/empty/files/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"private": true,
55
"dependencies": {
66
"ignite-ui": "21.1.13",
7-
"igniteui-react": "^1.3.2",
7+
"igniteui-react": "~19.2.0",
88
"jquery": "^3.6.0",
99
"jquery-ui": "^1.12.1",
1010
"react": "^17.0.2",

packages/cli/templates/react/igr-es6/bullet-graph/default/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ class IgrBulletGraphTemplate extends IgniteUIForReactTemplate {
1010
this.projectType = "igr-es6";
1111
this.name = "Bullet Graph";
1212
this.description = `allows for a linear and concise view of measures compared against a scale.`;
13-
this.packages = ["igniteui-react-gauges@~16.15.0"]; // TODO: read version from igniteui-react-core in package.json
13+
this.packages = ["igniteui-react-gauges@~19.0.0"]; // TODO: read version from igniteui-react-core in package.json
1414
}
1515
}
1616
module.exports = new IgrBulletGraphTemplate();

packages/cli/templates/react/igr-es6/category-chart/default/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ class IgrCategoryChartTemplate extends IgniteUIForReactTemplate {
1111
this.name = "Category Chart";
1212
this.description = `makes visualizing category data easy. Simplifies the complexities
1313
of the data visualization domain into manageable API`;
14-
this.packages = ["igniteui-react-charts@~16.15.0"]; // TODO: read version from igniteui-react-core in package.json
14+
this.packages = ["igniteui-react-charts@~19.0.0"]; // TODO: read version from igniteui-react-core in package.json
1515
}
1616
}
1717
module.exports = new IgrCategoryChartTemplate();

packages/cli/templates/react/igr-es6/doughnut-chart/default/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ class IgrDoughnutChartTemplate extends IgniteUIForReactTemplate {
1010
this.projectType = "igr-es6";
1111
this.name = "Doughnut Chart";
1212
this.description = `proportionally illustrate the occurrences of variables.`;
13-
this.packages = ["igniteui-react-charts@~16.15.0"]; // TODO: read version from igniteui-react-core in package.json
13+
this.packages = ["igniteui-react-charts@~19.0.0"]; // TODO: read version from igniteui-react-core in package.json
1414
}
1515
}
1616
module.exports = new IgrDoughnutChartTemplate();

packages/cli/templates/react/igr-es6/financial-chart/default/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ class IgrFinancialChartTemplate extends IgniteUIForReactTemplate {
1212
this.name = "Financial Chart";
1313
this.description = `charting component that makes it easy to visualize financial data by
1414
using a simple and intuitive API.`;
15-
this.packages = ["igniteui-react-charts@~16.15.0"]; // TODO: read version from igniteui-react-core in package.json
15+
this.packages = ["igniteui-react-charts@~19.0.0"]; // TODO: read version from igniteui-react-core in package.json
1616
}
1717
}
1818
module.exports = new IgrFinancialChartTemplate();

packages/cli/templates/react/igr-es6/grid/basic/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ class GridTemplate extends IgniteUIForReactTemplate {
1515
this.components = ["Grid"];
1616
this.controlGroup = "Data Grids";
1717
// TODO: read version from igniteui-react-core in package.json
18-
this.packages = ["igniteui-react-grids@~16.15.0", "igniteui-react-inputs@~16.15.0",
19-
"igniteui-react-layouts@~16.15.0"];
18+
this.packages = ["igniteui-react-grids@~19.0.0", "igniteui-react-inputs@~19.0.0",
19+
"igniteui-react-layouts@~19.0.0"];
2020

2121
this.hasExtraConfiguration = false;
2222
}

packages/cli/templates/react/igr-es6/linear-gauge/default/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ class IgrLinearGaugeTemplate extends IgniteUIForReactTemplate {
1010
this.projectType = "igr-es6";
1111
this.name = "Linear Gauge";
1212
this.description = `value compared against a scale and one or more ranges.`;
13-
this.packages = ["igniteui-react-gauges@~16.15.0"]; // TODO: read version from igniteui-react-core in package.json
13+
this.packages = ["igniteui-react-gauges@~19.0.0"]; // TODO: read version from igniteui-react-core in package.json
1414
}
1515
}
1616
module.exports = new IgrLinearGaugeTemplate();

packages/cli/templates/react/igr-es6/pie-chart/default/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ class IgrPieChartTemplate extends IgniteUIForReactTemplate {
1010
this.projectType = "igr-es6";
1111
this.name = "Pie Chart";
1212
this.description = `easily illustate the proportions of data entries`;
13-
this.packages = ["igniteui-react-charts@~16.15.0"]; // TODO: read version from igniteui-react-core in package.json
13+
this.packages = ["igniteui-react-charts@~19.0.0"]; // TODO: read version from igniteui-react-core in package.json
1414
}
1515
}
1616
module.exports = new IgrPieChartTemplate();

packages/cli/templates/react/igr-es6/projects/_base/files/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"version": "0.1.0",
44
"private": true,
55
"dependencies": {
6-
"igniteui-react-core": "~16.15.0",
6+
"igniteui-react-core": "~19.0.0",
77
"react": "^16.8.2",
88
"react-app-polyfill": "^0.2.0",
99
"react-dom": "^16.8.2",

0 commit comments

Comments
 (0)