igniteui-cli 14.0.1 → 14.0.3

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "igniteui-cli",
3
- "version": "14.0.1",
3
+ "version": "14.0.3",
4
4
  "description": "CLI tool for creating Ignite UI projects",
5
5
  "keywords": [
6
6
  "CLI",
@@ -72,8 +72,8 @@
72
72
  "all": true
73
73
  },
74
74
  "dependencies": {
75
- "@igniteui/angular-templates": "~18.1.1401",
76
- "@igniteui/cli-core": "~14.0.1",
75
+ "@igniteui/angular-templates": "~18.1.1403",
76
+ "@igniteui/cli-core": "~14.0.3",
77
77
  "chalk": "^2.3.2",
78
78
  "fs-extra": "^3.0.1",
79
79
  "glob": "^7.1.2",
@@ -11,7 +11,7 @@ class IgrTsBulletGraphTemplate extends IgniteUIForReactTemplate_1.IgniteUIForRea
11
11
  this.projectType = "igr-ts";
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@~18.6.0"];
14
+ this.packages = ["igniteui-react-gauges@~18.7.0"];
15
15
  }
16
16
  }
17
17
  module.exports = new IgrTsBulletGraphTemplate();
@@ -12,7 +12,7 @@ class IgrTsCategoryChartTemplate extends IgniteUIForReactTemplate_1.IgniteUIForR
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@~18.6.0"];
15
+ this.packages = ["igniteui-react-charts@~18.7.0"];
16
16
  }
17
17
  }
18
18
  module.exports = new IgrTsCategoryChartTemplate();
@@ -11,7 +11,7 @@ class IgrTsDoughnutChartTemplate extends IgniteUIForReactTemplate_1.IgniteUIForR
11
11
  this.projectType = "igr-ts";
12
12
  this.name = "Doughnut Chart";
13
13
  this.description = `proportionally illustrate the occurrences of variables.`;
14
- this.packages = ["igniteui-react-charts@~18.6.0"];
14
+ this.packages = ["igniteui-react-charts@~18.7.0"];
15
15
  }
16
16
  }
17
17
  module.exports = new IgrTsDoughnutChartTemplate();
@@ -13,7 +13,7 @@ class IgrTsFinancialChartTemplate extends IgniteUIForReactTemplate_1.IgniteUIFor
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@~18.6.0"];
16
+ this.packages = ["igniteui-react-charts@~18.7.0"];
17
17
  }
18
18
  }
19
19
  module.exports = new IgrTsFinancialChartTemplate();
@@ -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@~18.6.0", "igniteui-react-inputs@~18.6.0",
18
- "igniteui-react-layouts@~18.6.0", "igniteui-react@~18.6.0"];
17
+ this.packages = ["igniteui-react-grids@~18.7.0", "igniteui-react-inputs@~18.7.0",
18
+ "igniteui-react-layouts@~18.7.0", "igniteui-react@~18.7.0"];
19
19
  this.hasExtraConfiguration = false;
20
20
  }
21
21
  }
@@ -11,7 +11,7 @@ class IgrTsLinearGaugeTemplate extends IgniteUIForReactTemplate_1.IgniteUIForRea
11
11
  this.projectType = "igr-ts";
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@~18.6.0"];
14
+ this.packages = ["igniteui-react-gauges@~18.7.0"];
15
15
  }
16
16
  }
17
17
  module.exports = new IgrTsLinearGaugeTemplate();
@@ -11,7 +11,7 @@ class IgrTsPieChartTemplate extends IgniteUIForReactTemplate_1.IgniteUIForReactT
11
11
  this.projectType = "igr-ts";
12
12
  this.name = "Pie Chart";
13
13
  this.description = `easily illustate the proportions of data entries`;
14
- this.packages = ["igniteui-react-charts@~18.6.0"];
14
+ this.packages = ["igniteui-react-charts@~18.7.0"];
15
15
  }
16
16
  }
17
17
  module.exports = new IgrTsPieChartTemplate();
@@ -13,7 +13,7 @@ class IgrTsRadialGaugeTemplate extends IgniteUIForReactTemplate_1.IgniteUIForRea
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
15
  // TODO: read version from igniteui-react-core in package.json
16
- this.packages = ["igniteui-react-gauges@~18.6.0"];
16
+ this.packages = ["igniteui-react-gauges@~18.7.0"];
17
17
  }
18
18
  }
19
19
  module.exports = new IgrTsRadialGaugeTemplate();
@@ -2,14 +2,12 @@ import { html, css, LitElement } from 'lit';
2
2
  import { customElement } from 'lit/decorators.js';
3
3
  import {
4
4
  defineComponents,
5
- IgcFormComponent,
6
5
  IgcInputComponent,
7
6
  IgcCheckboxComponent,
8
7
  IgcButtonComponent,
9
8
  } from 'igniteui-webcomponents';
10
9
 
11
10
  defineComponents(
12
- IgcFormComponent,
13
11
  IgcInputComponent,
14
12
  IgcCheckboxComponent,
15
13
  IgcButtonComponent,
@@ -49,7 +47,7 @@ export default class $(ClassName) extends LitElement {
49
47
  render() {
50
48
  return html`
51
49
  <div class="container sample">
52
- <igc-form id="form" @igcSubmit="${this.handleSubmit}">
50
+ <form id="form" @submit="${this.handleSubmit}">
53
51
  <div>Subscribe</div>
54
52
  <igc-input required name="name" type="text" label="Your Name"></igc-input>
55
53
  <igc-input required name="email" type="email" label="Your E-mail"></igc-input>
@@ -59,7 +57,7 @@ export default class $(ClassName) extends LitElement {
59
57
  <igc-button type="reset">Reset</igc-button>
60
58
  <igc-button type="submit">Submit</igc-button>
61
59
  </div>
62
- </igc-form>
60
+ </form>
63
61
  </div>
64
62
  `;
65
63
  }
@@ -11,7 +11,7 @@ class IgcDockManagerTemplate extends IgniteUIForWebComponentsTemplate_1.IgniteUI
11
11
  this.projectType = "igc-ts";
12
12
  this.name = "Dock Manager";
13
13
  this.description = "Dock Manager with most functionalities and docking options";
14
- this.packages = ["igniteui-dockmanager@~1.12.4"];
14
+ this.packages = ["igniteui-dockmanager@~1.14.4"];
15
15
  }
16
16
  }
17
17
  module.exports = new IgcDockManagerTemplate();
@@ -1,7 +1,7 @@
1
1
  import { expect } from '@open-wc/testing';
2
2
  import $(ClassName) from './$(path).js';
3
3
 
4
- describe('IgcFormComponent', () => {
4
+ describe('Form', () => {
5
5
  it('<app-$(path)> is an instance of $(ClassName)', async () => {
6
6
  const element = document.createElement('app-$(path)');
7
7
  expect(element).to.be.instanceOf($(ClassName));
@@ -2,12 +2,10 @@ import { html, css, LitElement } from 'lit';
2
2
  import { customElement } from 'lit/decorators.js';
3
3
  import {
4
4
  defineComponents,
5
- IgcFormComponent,
6
5
  IgcRadioGroupComponent,
7
6
  } from 'igniteui-webcomponents';
8
7
 
9
8
  defineComponents(
10
- IgcFormComponent,
11
9
  IgcRadioGroupComponent,
12
10
  );
13
11
 
@@ -23,19 +21,17 @@ export default class $(ClassName) extends LitElement {
23
21
 
24
22
  render() {
25
23
  return html`
26
- <igc-form id="form" novalidate="true">
27
- <label for="full-name">Full name:</label>
28
- <input type="text" id="full-name" name="full-name" value="Your name" />
29
- <label for="phone-number">Phone number:</label>
30
- <input type="tel" id="phone-number" name="phone-number" placeholder="123-45-678" pattern="[0-9]{3}-[0-9]{2}-[0-9]{3}" />
24
+ <form id="form">
25
+ <igc-input label="Full name" type="text" id="full-name" name="full-name"></igc-input>
26
+ <igc-input label="Phone number" type="tel" id="phone-number" name="phone-number" placeholder="123-45-678" pattern="[0-9]{3}-[0-9]{2}-[0-9]{3}"></igc-input>
31
27
  <div>
32
- <label for="gender">Gender:</label>
33
- <igc-radio-group id="gender">
28
+ <label for="gender">Gender:</label>
29
+ <igc-radio-group id="gender">
34
30
  <igc-radio name="gender" value="Male">Male</igc-radio>
35
31
  <igc-radio name="gender" value="Female">Female</igc-radio>
36
32
  </igc-radio-group>
37
33
  </div>
38
- </igc-form>
34
+ </form>
39
35
  `;
40
36
  }
41
37
  }
@@ -10,7 +10,7 @@ class IgcFormTemplate extends IgniteUIForWebComponentsTemplate_1.IgniteUIForWebC
10
10
  this.id = "form";
11
11
  this.projectType = "igc-ts";
12
12
  this.name = "Form";
13
- this.description = "basic IgcForm";
13
+ this.description = "basic Form";
14
14
  }
15
15
  }
16
16
  module.exports = new IgcFormTemplate();
@@ -21,9 +21,9 @@
21
21
  },
22
22
  "dependencies": {
23
23
  "@vaadin/router": "^1.7.4",
24
- "lit": "^3.1.2",
25
- "typescript": "^5.3.3",
26
- "igniteui-webcomponents": "~4.11.0"
24
+ "lit": "^3.2.0",
25
+ "typescript": "^5.6.2",
26
+ "igniteui-webcomponents": "~5.0.0"
27
27
  },
28
28
  "devDependencies": {
29
29
  "@babel/preset-env": "^7.20.2",
@@ -22,16 +22,16 @@
22
22
  "dependencies": {
23
23
  "@vaadin/router": "^1.7.4",
24
24
  "@igniteui/material-icons-extended": "^3.0.2",
25
- "igniteui-dockmanager": "~1.14.3",
26
- "igniteui-webcomponents": "~4.11.0",
27
- "igniteui-webcomponents-charts": "~4.8.0",
28
- "igniteui-webcomponents-core": "~4.8.0",
29
- "igniteui-webcomponents-gauges": "~4.8.0",
30
- "igniteui-webcomponents-grids": "~4.8.0",
31
- "igniteui-webcomponents-inputs": "~4.8.0",
32
- "igniteui-webcomponents-layouts": "~4.8.0",
33
- "lit": "^3.1.2",
34
- "typescript": "^5.3.3"
25
+ "igniteui-dockmanager": "~1.14.4",
26
+ "igniteui-webcomponents": "~5.0.0",
27
+ "igniteui-webcomponents-charts": "~5.0.0",
28
+ "igniteui-webcomponents-core": "~5.0.0",
29
+ "igniteui-webcomponents-gauges": "~5.0.0",
30
+ "igniteui-webcomponents-grids": "~5.0.0",
31
+ "igniteui-webcomponents-inputs": "~5.0.0",
32
+ "igniteui-webcomponents-layouts": "~5.0.0",
33
+ "lit": "^3.2.0",
34
+ "typescript": "^5.6.2"
35
35
  },
36
36
  "devDependencies": {
37
37
  "@babel/preset-env": "^7.20.2",
@@ -50,7 +50,7 @@
50
50
  "deepmerge": "^4.2.2",
51
51
  "eslint": "^8.57.0",
52
52
  "eslint-plugin-lit": "^1.8.2",
53
- "igniteui-cli": "^13.1.5",
53
+ "igniteui-cli": "^14.0.0",
54
54
  "rimraf": "^5.0.5",
55
55
  "rollup": "^2.79.0",
56
56
  "rollup-plugin-copy-assets": "^2.0.3",