igniteui-cli 14.5.5-beta.0 → 14.5.6-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +3 -3
- package/templates/angular/ig-ts/projects/empty/files/package.json +1 -1
- package/templates/react/es6/projects/empty/files/package.json +1 -1
- package/templates/react/igr-es6/bullet-graph/default/index.js +1 -1
- package/templates/react/igr-es6/category-chart/default/index.js +1 -1
- package/templates/react/igr-es6/doughnut-chart/default/index.js +1 -1
- package/templates/react/igr-es6/financial-chart/default/index.js +1 -1
- package/templates/react/igr-es6/grid/basic/files/src/views/__path__/index.js +2 -9
- package/templates/react/igr-es6/grid/basic/index.js +2 -2
- package/templates/react/igr-es6/grid/index.js +1 -1
- package/templates/react/igr-es6/groups.json +2 -2
- package/templates/react/igr-es6/linear-gauge/default/index.js +1 -1
- package/templates/react/igr-es6/pie-chart/default/files/src/views/__path__/index.js +1 -1
- package/templates/react/igr-es6/pie-chart/default/index.js +1 -1
- package/templates/react/igr-es6/projects/_base/files/package.json +1 -1
- package/templates/react/igr-es6/radial-gauge/default/index.js +1 -1
- package/templates/react/igr-ts/grid/basic/files/src/app/__path__/__filePrefix__.tsx +1 -4
- package/templates/react/igr-ts/grid/basic/index.js +2 -2
- package/templates/react/igr-ts/grid/index.js +1 -1
- package/templates/react/igr-ts/groups.json +1 -1
- package/templates/react/igr-ts/pie-chart/default/files/src/app/__path__/__filePrefix__.tsx +1 -1
- package/templates/react/igr-ts/projects/_base/files/styles.css +1 -1
- package/templates/webcomponents/igc-ts/financial-chart/default/index.js +2 -2
- package/templates/webcomponents/igc-ts/grid/default/index.js +4 -4
- package/templates/webcomponents/igc-ts/linear-gauge/default/index.js +2 -2
- package/templates/webcomponents/igc-ts/linear-progress/default/index.js +2 -2
- package/templates/webcomponents/igc-ts/pie-chart/default/index.js +2 -2
- package/templates/webcomponents/igc-ts/projects/_base/files/package.json +1 -1
- package/templates/webcomponents/igc-ts/projects/_base/files/styles.css +1 -1
- package/templates/webcomponents/igc-ts/projects/_base_with_home/files/package.json +7 -7
- package/templates/webcomponents/igc-ts/radial-gauge/default/index.js +2 -2
- package/templates/webcomponents/igc-ts/tree/default/index.js +4 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "igniteui-cli",
|
|
3
|
-
"version": "14.5.
|
|
3
|
+
"version": "14.5.6-beta.1",
|
|
4
4
|
"description": "CLI tool for creating Ignite UI projects",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"CLI",
|
|
@@ -70,8 +70,8 @@
|
|
|
70
70
|
"all": true
|
|
71
71
|
},
|
|
72
72
|
"dependencies": {
|
|
73
|
-
"@igniteui/angular-templates": "~20.0.
|
|
74
|
-
"@igniteui/cli-core": "~14.5.
|
|
73
|
+
"@igniteui/angular-templates": "~20.0.1456-beta.1",
|
|
74
|
+
"@igniteui/cli-core": "~14.5.6-beta.1",
|
|
75
75
|
"@inquirer/prompts": "^5.4.0",
|
|
76
76
|
"@types/yargs": "^17.0.33",
|
|
77
77
|
"chalk": "^5.3.0",
|
|
@@ -11,7 +11,7 @@ class IgrBulletGraphTemplate extends IgniteUIForReactTemplate_1.IgniteUIForReact
|
|
|
11
11
|
this.projectType = "igr-es6";
|
|
12
12
|
this.name = "Bullet Graph";
|
|
13
13
|
this.description = `allows for a linear and concise view of measures compared against a scale.`;
|
|
14
|
-
this.packages = ["igniteui-react-gauges@~
|
|
14
|
+
this.packages = ["igniteui-react-gauges@~19.0.0"]; // TODO: read version from igniteui-react-core in package.json
|
|
15
15
|
}
|
|
16
16
|
}
|
|
17
17
|
module.exports = new IgrBulletGraphTemplate();
|
|
@@ -12,7 +12,7 @@ class IgrCategoryChartTemplate extends IgniteUIForReactTemplate_1.IgniteUIForRea
|
|
|
12
12
|
this.name = "Category Chart";
|
|
13
13
|
this.description = `makes visualizing category data easy. Simplifies the complexities
|
|
14
14
|
of the data visualization domain into manageable API`;
|
|
15
|
-
this.packages = ["igniteui-react-charts@~
|
|
15
|
+
this.packages = ["igniteui-react-charts@~19.0.0"]; // TODO: read version from igniteui-react-core in package.json
|
|
16
16
|
}
|
|
17
17
|
}
|
|
18
18
|
module.exports = new IgrCategoryChartTemplate();
|
|
@@ -11,7 +11,7 @@ class IgrDoughnutChartTemplate extends IgniteUIForReactTemplate_1.IgniteUIForRea
|
|
|
11
11
|
this.projectType = "igr-es6";
|
|
12
12
|
this.name = "Doughnut Chart";
|
|
13
13
|
this.description = `proportionally illustrate the occurrences of variables.`;
|
|
14
|
-
this.packages = ["igniteui-react-charts@~
|
|
14
|
+
this.packages = ["igniteui-react-charts@~19.0.0"]; // TODO: read version from igniteui-react-core in package.json
|
|
15
15
|
}
|
|
16
16
|
}
|
|
17
17
|
module.exports = new IgrDoughnutChartTemplate();
|
|
@@ -13,7 +13,7 @@ class IgrFinancialChartTemplate extends IgniteUIForReactTemplate_1.IgniteUIForRe
|
|
|
13
13
|
this.name = "Financial Chart";
|
|
14
14
|
this.description = `charting component that makes it easy to visualize financial data by
|
|
15
15
|
using a simple and intuitive API.`;
|
|
16
|
-
this.packages = ["igniteui-react-charts@~
|
|
16
|
+
this.packages = ["igniteui-react-charts@~19.0.0"]; // TODO: read version from igniteui-react-core in package.json
|
|
17
17
|
}
|
|
18
18
|
}
|
|
19
19
|
module.exports = new IgrFinancialChartTemplate();
|
|
@@ -22,7 +22,7 @@ export default class $(ClassName) extends Component {
|
|
|
22
22
|
<h1 className={style.title}>{this.title}</h1>
|
|
23
23
|
<div>
|
|
24
24
|
Read more on the
|
|
25
|
-
<a href="https://www.infragistics.com/products/ignite-ui-react/react/components/grid.html">
|
|
25
|
+
<a href="https://www.infragistics.com/products/ignite-ui-react/react/components/grids/data-grid.html">
|
|
26
26
|
official documentation page
|
|
27
27
|
</a>
|
|
28
28
|
</div>
|
|
@@ -39,15 +39,8 @@ export default class $(ClassName) extends Component {
|
|
|
39
39
|
<IgrDateTimeColumn field="OrderDate" headerText="Order Date" />
|
|
40
40
|
</IgrDataGrid>
|
|
41
41
|
</div>
|
|
42
|
-
<div className={style.grid}>
|
|
43
|
-
<IgrDataGrid
|
|
44
|
-
height="100%"
|
|
45
|
-
width="100%"
|
|
46
|
-
autoGenerateColumns="true"
|
|
47
|
-
dataSource={this.data} />
|
|
48
|
-
</div>
|
|
49
42
|
</div>
|
|
50
43
|
</div>
|
|
51
44
|
)
|
|
52
45
|
}
|
|
53
|
-
}
|
|
46
|
+
}
|
|
@@ -15,8 +15,8 @@ class GridTemplate extends IgniteUIForReactTemplate_1.IgniteUIForReactTemplate {
|
|
|
15
15
|
this.components = ["Grid"];
|
|
16
16
|
this.controlGroup = "Data Grids";
|
|
17
17
|
// TODO: read version from igniteui-react-core in package.json
|
|
18
|
-
this.packages = ["igniteui-react-grids@~
|
|
19
|
-
"igniteui-react-layouts@~
|
|
18
|
+
this.packages = ["igniteui-react-grids@~19.0.0", "igniteui-react-inputs@~19.0.0",
|
|
19
|
+
"igniteui-react-layouts@~19.0.0"];
|
|
20
20
|
this.hasExtraConfiguration = false;
|
|
21
21
|
}
|
|
22
22
|
}
|
|
@@ -8,7 +8,7 @@ class IgrDataGridComponent extends cli_core_1.BaseComponent {
|
|
|
8
8
|
constructor() {
|
|
9
9
|
super(__dirname);
|
|
10
10
|
this.name = "Data Grid";
|
|
11
|
-
this.group = "Grids
|
|
11
|
+
this.group = "Grids";
|
|
12
12
|
this.description = "pick from grids: basic, sorting, templating.";
|
|
13
13
|
}
|
|
14
14
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
2
|
"Gauges": "scale measure Controls including Linear and Radial Gauge and Bullet Graph.",
|
|
3
3
|
"Charts": "high-performance data visualization for category and financial data.",
|
|
4
|
-
"Grids
|
|
5
|
-
}
|
|
4
|
+
"Grids": "bind and display data sets with little coding or configuration."
|
|
5
|
+
}
|
|
@@ -11,7 +11,7 @@ class IgrLinearGaugeTemplate extends IgniteUIForReactTemplate_1.IgniteUIForReact
|
|
|
11
11
|
this.projectType = "igr-es6";
|
|
12
12
|
this.name = "Linear Gauge";
|
|
13
13
|
this.description = `value compared against a scale and one or more ranges.`;
|
|
14
|
-
this.packages = ["igniteui-react-gauges@~
|
|
14
|
+
this.packages = ["igniteui-react-gauges@~19.0.0"]; // TODO: read version from igniteui-react-core in package.json
|
|
15
15
|
}
|
|
16
16
|
}
|
|
17
17
|
module.exports = new IgrLinearGaugeTemplate();
|
|
@@ -58,7 +58,7 @@ export default class $(ClassName) extends Component {
|
|
|
58
58
|
<h1 className={style.title}>{this.title}</h1>
|
|
59
59
|
<div>
|
|
60
60
|
Read more on the
|
|
61
|
-
<a href="https://www.infragistics.com/products/ignite-ui-react/react/components/
|
|
61
|
+
<a href="https://www.infragistics.com/products/ignite-ui-react/react/components/pie-chart.html">
|
|
62
62
|
official documentation page
|
|
63
63
|
</a>
|
|
64
64
|
</div>
|
|
@@ -11,7 +11,7 @@ class IgrPieChartTemplate extends IgniteUIForReactTemplate_1.IgniteUIForReactTem
|
|
|
11
11
|
this.projectType = "igr-es6";
|
|
12
12
|
this.name = "Pie Chart";
|
|
13
13
|
this.description = `easily illustate the proportions of data entries`;
|
|
14
|
-
this.packages = ["igniteui-react-charts@~
|
|
14
|
+
this.packages = ["igniteui-react-charts@~19.0.0"]; // TODO: read version from igniteui-react-core in package.json
|
|
15
15
|
}
|
|
16
16
|
}
|
|
17
17
|
module.exports = new IgrPieChartTemplate();
|
|
@@ -12,7 +12,7 @@ class IgrRadialGaugeTemplate extends IgniteUIForReactTemplate_1.IgniteUIForReact
|
|
|
12
12
|
this.name = "Radial Gauge";
|
|
13
13
|
this.description = `provides a number of visual elements, like a needle, tick marks, ranges
|
|
14
14
|
and labels, in order to create a predefined shape and scale.`;
|
|
15
|
-
this.packages = ["igniteui-react-gauges@~
|
|
15
|
+
this.packages = ["igniteui-react-gauges@~19.0.0"]; // TODO: read version from igniteui-react-core in package.json
|
|
16
16
|
}
|
|
17
17
|
}
|
|
18
18
|
module.exports = new IgrRadialGaugeTemplate();
|
|
@@ -15,7 +15,7 @@ export default function $(ClassName)() {
|
|
|
15
15
|
<h1 className={style.title}>{title}</h1>
|
|
16
16
|
<div>
|
|
17
17
|
Read more on the
|
|
18
|
-
<a href="https://www.infragistics.com/products/ignite-ui-react/react/components/grid.html">
|
|
18
|
+
<a href="https://www.infragistics.com/products/ignite-ui-react/react/components/grids/data-grid.html">
|
|
19
19
|
official documentation page
|
|
20
20
|
</a>
|
|
21
21
|
</div>
|
|
@@ -49,9 +49,6 @@ export default function $(ClassName)() {
|
|
|
49
49
|
</IgrColumn>
|
|
50
50
|
</IgrGrid>
|
|
51
51
|
</div>
|
|
52
|
-
<div className={style.grid}>
|
|
53
|
-
<IgrGrid autoGenerate={true} data={data} />
|
|
54
|
-
</div>
|
|
55
52
|
</div>
|
|
56
53
|
</div>
|
|
57
54
|
);
|
|
@@ -14,8 +14,8 @@ class GridTemplate extends IgniteUIForReactTemplate_1.IgniteUIForReactTemplate {
|
|
|
14
14
|
this.projectType = "igr-ts";
|
|
15
15
|
this.components = ["Grid"];
|
|
16
16
|
this.controlGroup = "Data Grids";
|
|
17
|
-
this.packages = ["igniteui-react-grids@~19.
|
|
18
|
-
"igniteui-react-layouts@~19.0.
|
|
17
|
+
this.packages = ["igniteui-react-grids@~19.2.1", "igniteui-react-inputs@~19.0.1",
|
|
18
|
+
"igniteui-react-layouts@~19.0.1", "igniteui-react@~19.2.1"];
|
|
19
19
|
this.hasExtraConfiguration = false;
|
|
20
20
|
}
|
|
21
21
|
}
|
|
@@ -8,7 +8,7 @@ class IgrTsDataGridComponent extends cli_core_1.BaseComponent {
|
|
|
8
8
|
constructor() {
|
|
9
9
|
super(__dirname);
|
|
10
10
|
this.name = "Data Grid";
|
|
11
|
-
this.group = "Grids
|
|
11
|
+
this.group = "Grids";
|
|
12
12
|
this.description = "pick from grids: basic, sorting, templating.";
|
|
13
13
|
}
|
|
14
14
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
2
|
"Gauges": "scale measure Controls including Linear and Radial Gauge and Bullet Graph.",
|
|
3
3
|
"Charts": "high-performance data visualization for category and financial data.",
|
|
4
|
-
"Grids
|
|
4
|
+
"Grids": "bind and display data sets with little coding or configuration."
|
|
5
5
|
}
|
|
@@ -31,7 +31,7 @@ export default function $(ClassName)() {
|
|
|
31
31
|
<h1 className={style.title}>{title}</h1>
|
|
32
32
|
<div>
|
|
33
33
|
Read more on the
|
|
34
|
-
<a href="https://www.infragistics.com/products/ignite-ui-react/react/components/
|
|
34
|
+
<a href="https://www.infragistics.com/products/ignite-ui-react/react/components/pie-chart.html">
|
|
35
35
|
official documentation page
|
|
36
36
|
</a>
|
|
37
37
|
</div>
|
|
@@ -12,8 +12,8 @@ class IgcFinancialChartTemplate extends IgniteUIForWebComponentsTemplate_1.Ignit
|
|
|
12
12
|
this.name = "Financial Chart";
|
|
13
13
|
this.description = "IgcFinancialChart";
|
|
14
14
|
this.packages = [
|
|
15
|
-
"igniteui-webcomponents-core@~
|
|
16
|
-
"igniteui-webcomponents-charts@~
|
|
15
|
+
"igniteui-webcomponents-core@~6.0.0",
|
|
16
|
+
"igniteui-webcomponents-charts@~6.0.0"
|
|
17
17
|
];
|
|
18
18
|
}
|
|
19
19
|
}
|
|
@@ -12,10 +12,10 @@ class IgcGridTemplate extends IgniteUIForWebComponentsTemplate_1.IgniteUIForWebC
|
|
|
12
12
|
this.name = "Grid";
|
|
13
13
|
this.description = "IgcGrid with local data";
|
|
14
14
|
this.packages = [
|
|
15
|
-
"igniteui-webcomponents-core@~
|
|
16
|
-
"igniteui-webcomponents-grids@~
|
|
17
|
-
"igniteui-webcomponents-inputs@~
|
|
18
|
-
"igniteui-webcomponents-layouts@~
|
|
15
|
+
"igniteui-webcomponents-core@~6.0.0",
|
|
16
|
+
"igniteui-webcomponents-grids@~6.0.0",
|
|
17
|
+
"igniteui-webcomponents-inputs@~6.0.0",
|
|
18
|
+
"igniteui-webcomponents-layouts@~6.0.0"
|
|
19
19
|
];
|
|
20
20
|
}
|
|
21
21
|
}
|
|
@@ -12,8 +12,8 @@ class IgcLinearGaugeTemplate extends IgniteUIForWebComponentsTemplate_1.IgniteUI
|
|
|
12
12
|
this.name = "Linear Gauge";
|
|
13
13
|
this.description = "IgcLinearGauge";
|
|
14
14
|
this.packages = [
|
|
15
|
-
"igniteui-webcomponents-core@~
|
|
16
|
-
"igniteui-webcomponents-gauges@~
|
|
15
|
+
"igniteui-webcomponents-core@~6.0.0",
|
|
16
|
+
"igniteui-webcomponents-gauges@~6.0.0"
|
|
17
17
|
];
|
|
18
18
|
}
|
|
19
19
|
}
|
|
@@ -12,8 +12,8 @@ class IgcLinearProgressComponent extends IgniteUIForWebComponentsTemplate_1.Igni
|
|
|
12
12
|
this.name = "Linear Progress";
|
|
13
13
|
this.description = "Basic Linear Progress";
|
|
14
14
|
this.packages = [
|
|
15
|
-
"igniteui-webcomponents-core@~
|
|
16
|
-
"igniteui-webcomponents-charts@~
|
|
15
|
+
"igniteui-webcomponents-core@~6.0.0",
|
|
16
|
+
"igniteui-webcomponents-charts@~6.0.0"
|
|
17
17
|
];
|
|
18
18
|
}
|
|
19
19
|
}
|
|
@@ -12,8 +12,8 @@ class IgcPieChartTemplate extends IgniteUIForWebComponentsTemplate_1.IgniteUIFor
|
|
|
12
12
|
this.name = "Pie Chart";
|
|
13
13
|
this.description = "IgcPieChart with local data";
|
|
14
14
|
this.packages = [
|
|
15
|
-
"igniteui-webcomponents-core@~
|
|
16
|
-
"igniteui-webcomponents-charts@~
|
|
15
|
+
"igniteui-webcomponents-core@~6.0.0",
|
|
16
|
+
"igniteui-webcomponents-charts@~6.0.0"
|
|
17
17
|
];
|
|
18
18
|
}
|
|
19
19
|
}
|
|
@@ -23,13 +23,13 @@
|
|
|
23
23
|
"@vaadin/router": "^1.7.4",
|
|
24
24
|
"@igniteui/material-icons-extended": "^3.0.2",
|
|
25
25
|
"igniteui-dockmanager": "~1.14.4",
|
|
26
|
-
"igniteui-webcomponents": "~
|
|
27
|
-
"igniteui-webcomponents-charts": "~
|
|
28
|
-
"igniteui-webcomponents-core": "~
|
|
29
|
-
"igniteui-webcomponents-gauges": "~
|
|
30
|
-
"igniteui-webcomponents-grids": "~
|
|
31
|
-
"igniteui-webcomponents-inputs": "~
|
|
32
|
-
"igniteui-webcomponents-layouts": "~
|
|
26
|
+
"igniteui-webcomponents": "~6.2.0",
|
|
27
|
+
"igniteui-webcomponents-charts": "~6.0.0",
|
|
28
|
+
"igniteui-webcomponents-core": "~6.0.0",
|
|
29
|
+
"igniteui-webcomponents-gauges": "~6.0.0",
|
|
30
|
+
"igniteui-webcomponents-grids": "~6.0.0",
|
|
31
|
+
"igniteui-webcomponents-inputs": "~6.0.0",
|
|
32
|
+
"igniteui-webcomponents-layouts": "~6.0.0",
|
|
33
33
|
"lit": "^3.2.1",
|
|
34
34
|
"typescript": "~5.7.2"
|
|
35
35
|
},
|
|
@@ -12,8 +12,8 @@ class IgcradialGaugeTemplate extends IgniteUIForWebComponentsTemplate_1.IgniteUI
|
|
|
12
12
|
this.name = "Radial Gauge";
|
|
13
13
|
this.description = "IgcRadialGauge";
|
|
14
14
|
this.packages = [
|
|
15
|
-
"igniteui-webcomponents-core@~
|
|
16
|
-
"igniteui-webcomponents-gauges@~
|
|
15
|
+
"igniteui-webcomponents-core@~6.0.0",
|
|
16
|
+
"igniteui-webcomponents-gauges@~6.0.0"
|
|
17
17
|
];
|
|
18
18
|
}
|
|
19
19
|
}
|
|
@@ -12,10 +12,10 @@ class IgcTreeTemplate extends IgniteUIForWebComponentsTemplate_1.IgniteUIForWebC
|
|
|
12
12
|
this.name = "Tree";
|
|
13
13
|
this.description = "basic IgcTree";
|
|
14
14
|
this.packages = [
|
|
15
|
-
"igniteui-webcomponents-core@~
|
|
16
|
-
"igniteui-webcomponents-grids@~
|
|
17
|
-
"igniteui-webcomponents-inputs@~
|
|
18
|
-
"igniteui-webcomponents-layouts@~
|
|
15
|
+
"igniteui-webcomponents-core@~6.0.0",
|
|
16
|
+
"igniteui-webcomponents-grids@~6.0.0",
|
|
17
|
+
"igniteui-webcomponents-inputs@~6.0.0",
|
|
18
|
+
"igniteui-webcomponents-layouts@~6.0.0"
|
|
19
19
|
];
|
|
20
20
|
}
|
|
21
21
|
}
|