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
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export default class $(ClassName) extends Component {
<h1 className={style.title}>{this.title}</h1>
<div>
Read more on the&nbsp;
<a href="https://www.infragistics.com/products/ignite-ui-react/react/components/grid.html">
<a href="https://www.infragistics.com/products/ignite-ui-react/react/components/grids/data-grid.html">
official documentation page
</a>
</div>
Expand All @@ -39,15 +39,8 @@ export default class $(ClassName) extends Component {
<IgrDateTimeColumn field="OrderDate" headerText="Order Date" />
</IgrDataGrid>
</div>
<div className={style.grid}>
<IgrDataGrid
height="100%"
width="100%"
autoGenerateColumns="true"
dataSource={this.data} />
</div>
</div>
</div>
)
}
}
}
2 changes: 1 addition & 1 deletion packages/cli/templates/react/igr-es6/grid/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ class IgrDataGridComponent extends BaseComponent {
constructor() {
super(__dirname);
this.name = "Data Grid";
this.group = "Grids & Lists";
this.group = "Grids";
this.description = "pick from grids: basic, sorting, templating.";
}
}
Expand Down
4 changes: 2 additions & 2 deletions packages/cli/templates/react/igr-es6/groups.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"Gauges": "scale measure Controls including Linear and Radial Gauge and Bullet Graph.",
"Charts": "high-performance data visualization for category and financial data.",
"Grids & Lists": "bind and display data sets with little coding or configuration."
}
"Grids": "bind and display data sets with little coding or configuration."
}
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ export default class $(ClassName) extends Component {
<h1 className={style.title}>{this.title}</h1>
<div>
Read more on the&nbsp;
<a href="https://www.infragistics.com/products/ignite-ui-react/react/components/piechart.html">
<a href="https://www.infragistics.com/products/ignite-ui-react/react/components/pie-chart.html">
official documentation page
</a>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export default function $(ClassName)() {
<h1 className={style.title}>{title}</h1>
<div>
Read more on the&nbsp;
<a href="https://www.infragistics.com/products/ignite-ui-react/react/components/grid.html">
<a href="https://www.infragistics.com/products/ignite-ui-react/react/components/grids/data-grid.html">
official documentation page
</a>
</div>
Expand Down Expand Up @@ -49,9 +49,6 @@ export default function $(ClassName)() {
</IgrColumn>
</IgrGrid>
</div>
<div className={style.grid}>
<IgrGrid autoGenerate={true} data={data} />
</div>
</div>
</div>
);
Expand Down
4 changes: 2 additions & 2 deletions packages/cli/templates/react/igr-ts/grid/basic/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ class GridTemplate extends IgniteUIForReactTemplate {
this.projectType = "igr-ts";
this.components = ["Grid"];
this.controlGroup = "Data Grids";
this.packages = ["igniteui-react-grids@~19.0.0", "igniteui-react-inputs@~19.0.0",
"igniteui-react-layouts@~19.0.0", "igniteui-react@~19.2.0"];
this.packages = ["igniteui-react-grids@~19.2.1", "igniteui-react-inputs@~19.0.1",
"igniteui-react-layouts@~19.0.1", "igniteui-react@~19.2.1"];

this.hasExtraConfiguration = false;
}
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/templates/react/igr-ts/grid/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ class IgrTsDataGridComponent extends BaseComponent {
constructor() {
super(__dirname);
this.name = "Data Grid";
this.group = "Grids & Lists";
this.group = "Grids";
this.description = "pick from grids: basic, sorting, templating.";
}
}
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/templates/react/igr-ts/groups.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"Gauges": "scale measure Controls including Linear and Radial Gauge and Bullet Graph.",
"Charts": "high-performance data visualization for category and financial data.",
"Grids & Lists": "bind and display data sets with little coding or configuration."
"Grids": "bind and display data sets with little coding or configuration."
}
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export default function $(ClassName)() {
<h1 className={style.title}>{title}</h1>
<div>
Read more on the&nbsp;
<a href="https://www.infragistics.com/products/ignite-ui-react/react/components/piechart.html">
<a href="https://www.infragistics.com/products/ignite-ui-react/react/components/pie-chart.html">
official documentation page
</a>
</div>
Expand Down
Loading