Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/cli/templates/react/igr-ts/constants.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
export const IGNITEUI_REACT_PACKAGE = "igniteui-react@~19.7.0";
export const IGNITEUI_REACT_GRIDS_PACKAGE = "igniteui-react-grids@~19.7.0";
export const IGNITEUI_REACT_PACKAGE = "igniteui-react@~19.8.1";
export const IGNITEUI_REACT_GRIDS_PACKAGE = "igniteui-react-grids@~19.8.1";
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"@igniteui/material-icons-extended": "^3.0.2",
"element-internals-polyfill": "^3.0.2",
"functions-have-names": "^1.2.3",
"igniteui-react": "~19.7.0",
"igniteui-react": "~19.8.1",
"react": "^19.2.4",
"react-app-polyfill": "^3.0.0",
"react-dom": "^19.2.4",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class IgcGridTemplate extends IgniteUIForWebComponentsTemplate {
this.projectType = "igc-ts";
this.name = "Grid";
this.description = "IgcGrid with local data";
this.packages = [ "igniteui-webcomponents-grids@~7.1.0" ];
this.packages = [ "igniteui-webcomponents-grids@~7.2.1" ];
}

public get templatePaths(): string[] {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class IgcGridEditingTemplate extends IgniteUIForWebComponentsTemplate {
this.projectType = "igc-ts";
this.name = "Grid Editing";
this.description = "IgcGrid with editing enabled";
this.packages = [ "igniteui-webcomponents-grids@~7.1.0" ];
this.packages = [ "igniteui-webcomponents-grids@~7.2.1" ];
}
}
module.exports = new IgcGridEditingTemplate();
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class IgcGridSummariesTemplate extends IgniteUIForWebComponentsTemplate {
this.projectType = "igc-ts";
this.name = "Grid Summaries";
this.description = "IgcGrid with column summaries";
this.packages = [ "igniteui-webcomponents-grids@~7.1.0" ];
this.packages = [ "igniteui-webcomponents-grids@~7.2.1" ];
}
}
module.exports = new IgcGridSummariesTemplate();
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class IgcHierarchicalGridTemplate extends IgniteUIForWebComponentsTemplate {
this.projectType = "igc-ts";
this.name = "Hierarchical Grid";
this.description = "IgcHierarchicalGrid with basic configuration";
this.packages = [ "igniteui-webcomponents-grids@~7.1.0" ];
this.packages = [ "igniteui-webcomponents-grids@~7.2.1" ];
}

public get templatePaths(): string[] {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class IgcPivotGridTemplate extends IgniteUIForWebComponentsTemplate {
this.projectType = "igc-ts";
this.name = "Pivot Grid";
this.description = "Basic IgcPivotGrid component";
this.packages = [ "igniteui-webcomponents-grids@~7.1.0" ];
this.packages = [ "igniteui-webcomponents-grids@~7.2.1" ];
}

public get templatePaths(): string[] {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class IgcTreeGridTemplate extends IgniteUIForWebComponentsTemplate {
this.projectType = "igc-ts";
this.name = "Tree Grid";
this.description = "IgcTreeGrid with hierarchical data";
this.packages = [ "igniteui-webcomponents-grids@~7.1.0" ];
this.packages = [ "igniteui-webcomponents-grids@~7.2.1" ];
}

public get templatePaths(): string[] {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class IgcTreeTemplate extends IgniteUIForWebComponentsTemplate {
this.description = "basic IgcTree";
this.packages = [
"igniteui-webcomponents-core@~7.0.0",
"igniteui-webcomponents-grids@~7.1.0",
"igniteui-webcomponents-grids@~7.2.1",
"igniteui-webcomponents-inputs@~7.0.0",
"igniteui-webcomponents-layouts@~7.0.0"
];
Expand Down
Loading