igniteui-cli 12.0.1-beta.1 → 12.0.2
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/lib/commands/upgrade.js +1 -1
- package/lib/templates/AngularTemplate.js +1 -3
- package/package.json +3 -3
- package/templates/angular/ig-ts/projects/empty/files/angular.json +1 -2
- package/templates/angular/ig-ts/projects/empty/files/package.json +23 -24
- package/templates/angular/ig-ts/projects/empty/files/tsconfig.json +3 -3
- package/templates/webcomponents/igc-ts/grid/grid-editing/files/src/app/__path__/__filePrefix__.ts +2 -2
- package/templates/webcomponents/igc-ts/projects/_base/files/package.json +1 -2
- package/templates/webcomponents/igc-ts/projects/_base_with_home/files/package.json +1 -1
package/lib/commands/upgrade.js
CHANGED
|
@@ -60,7 +60,7 @@ command = {
|
|
|
60
60
|
if (success && !argv.skipInstall) {
|
|
61
61
|
cli_core_1.Util.log("Installing npm packages.");
|
|
62
62
|
try {
|
|
63
|
-
cli_core_1.Util.execSync("npm install --
|
|
63
|
+
cli_core_1.Util.execSync("npm install --quiet");
|
|
64
64
|
cli_core_1.Util.log("npm packages installed.");
|
|
65
65
|
}
|
|
66
66
|
catch (error) {
|
|
@@ -125,9 +125,7 @@ class AngularTemplate {
|
|
|
125
125
|
styles.push({ input: `${"ignite-ui/" + themeCSS}` }, { input: `${"ignite-ui/" + infragisticsCSS}` });
|
|
126
126
|
updateFile = true;
|
|
127
127
|
}
|
|
128
|
-
for (
|
|
129
|
-
// strip .js file extension from bundle names, as webpack serves these files as .js.js
|
|
130
|
-
fileName = fileName.includes(".js") ? fileName.replace(".js", "") : fileName;
|
|
128
|
+
for (const fileName of sourceFiles) {
|
|
131
129
|
if (!scripts.find(x => x.bundleName === fileName)) {
|
|
132
130
|
scripts.push({
|
|
133
131
|
bundleName: fileName,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "igniteui-cli",
|
|
3
|
-
"version": "12.0.
|
|
3
|
+
"version": "12.0.2",
|
|
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": "~16.0.
|
|
76
|
-
"@igniteui/cli-core": "~12.0.
|
|
75
|
+
"@igniteui/angular-templates": "~16.0.1202",
|
|
76
|
+
"@igniteui/cli-core": "~12.0.2",
|
|
77
77
|
"chalk": "^2.3.2",
|
|
78
78
|
"fs-extra": "^3.0.1",
|
|
79
79
|
"glob": "^7.1.2",
|
|
@@ -10,36 +10,35 @@
|
|
|
10
10
|
},
|
|
11
11
|
"private": true,
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"@angular/animations": "~
|
|
14
|
-
"@angular/common": "~
|
|
15
|
-
"@angular/compiler": "~
|
|
16
|
-
"@angular/core": "~
|
|
17
|
-
"@angular/forms": "~
|
|
18
|
-
"@angular/platform-browser": "~
|
|
19
|
-
"@angular/platform-browser-dynamic": "~
|
|
20
|
-
"@angular/router": "~
|
|
21
|
-
"@igniteui/material-icons-extended": "^3.0.0",
|
|
13
|
+
"@angular/animations": "~16.0.0",
|
|
14
|
+
"@angular/common": "~16.0.0",
|
|
15
|
+
"@angular/compiler": "~16.0.0",
|
|
16
|
+
"@angular/core": "~16.0.0",
|
|
17
|
+
"@angular/forms": "~16.0.0",
|
|
18
|
+
"@angular/platform-browser": "~16.0.0",
|
|
19
|
+
"@angular/platform-browser-dynamic": "~16.0.0",
|
|
20
|
+
"@angular/router": "~16.0.0",
|
|
22
21
|
"jquery": ">=1.9.1",
|
|
23
22
|
"jquery-ui": ">=1.10.5",
|
|
24
|
-
"igniteui-angular-wrappers": "~
|
|
25
|
-
"ignite-ui": "~
|
|
26
|
-
"rxjs": "~7.
|
|
23
|
+
"igniteui-angular-wrappers": "~16.0.0",
|
|
24
|
+
"ignite-ui": "~22.2",
|
|
25
|
+
"rxjs": "~7.8.0",
|
|
27
26
|
"tslib": "^2.3.0",
|
|
28
|
-
"zone.js": "~0.
|
|
27
|
+
"zone.js": "~0.13.0"
|
|
29
28
|
},
|
|
30
29
|
"devDependencies": {
|
|
31
|
-
"@angular-devkit/build-angular": "~
|
|
32
|
-
"@angular/cli": "~
|
|
33
|
-
"@angular/compiler-cli": "~
|
|
34
|
-
"@types/jasmine": "~4.
|
|
35
|
-
"@types/node": "^
|
|
30
|
+
"@angular-devkit/build-angular": "~16.0.0",
|
|
31
|
+
"@angular/cli": "~16.0.0",
|
|
32
|
+
"@angular/compiler-cli": "~16.0.0",
|
|
33
|
+
"@types/jasmine": "~4.3.0",
|
|
34
|
+
"@types/node": "^18.16.0",
|
|
36
35
|
"igniteui-cli": "^$(cliVersion)",
|
|
37
|
-
"jasmine-core": "~4.
|
|
38
|
-
"karma": "~6.
|
|
39
|
-
"karma-chrome-launcher": "~3.
|
|
36
|
+
"jasmine-core": "~4.6.0",
|
|
37
|
+
"karma": "~6.4.0",
|
|
38
|
+
"karma-chrome-launcher": "~3.2.0",
|
|
40
39
|
"karma-coverage": "~2.2.0",
|
|
41
|
-
"karma-jasmine": "~5.
|
|
42
|
-
"karma-jasmine-html-reporter": "~
|
|
43
|
-
"typescript": "~
|
|
40
|
+
"karma-jasmine": "~5.1.0",
|
|
41
|
+
"karma-jasmine-html-reporter": "~2.0.0",
|
|
42
|
+
"typescript": "~5.0.4"
|
|
44
43
|
}
|
|
45
44
|
}
|
package/templates/webcomponents/igc-ts/grid/grid-editing/files/src/app/__path__/__filePrefix__.ts
CHANGED
|
@@ -3,7 +3,7 @@ import { customElement } from 'lit/decorators.js';
|
|
|
3
3
|
import {
|
|
4
4
|
EditModeType,
|
|
5
5
|
GridActivationMode,
|
|
6
|
-
|
|
6
|
+
GridSelectionMode,
|
|
7
7
|
IgcDataGridComponent,
|
|
8
8
|
IgcDataGridModule,
|
|
9
9
|
IgcGridCellValueChangingEventArgs,
|
|
@@ -193,7 +193,7 @@ export default class $(ClassName) extends LitElement {
|
|
|
193
193
|
if (grid !== null) {
|
|
194
194
|
grid.dataSource = this.data;
|
|
195
195
|
grid.activationMode = GridActivationMode.Cell;
|
|
196
|
-
grid.selectionMode =
|
|
196
|
+
grid.selectionMode = GridSelectionMode.SingleCell;
|
|
197
197
|
grid.editMode = EditModeType.Cell;
|
|
198
198
|
grid.cellValueChanging = onCellValueChanging;
|
|
199
199
|
}
|
|
@@ -23,8 +23,7 @@
|
|
|
23
23
|
"@vaadin/router": "^1.7.4",
|
|
24
24
|
"lit": "^2.6.1",
|
|
25
25
|
"typescript": "^4.9.4",
|
|
26
|
-
"igniteui-webcomponents": "4.2.0"
|
|
27
|
-
"@igniteui/material-icons-extended": "^3.0.0"
|
|
26
|
+
"igniteui-webcomponents": "4.2.0"
|
|
28
27
|
},
|
|
29
28
|
"devDependencies": {
|
|
30
29
|
"@babel/preset-env": "^7.20.2",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
23
|
"@vaadin/router": "^1.7.4",
|
|
24
|
-
"@igniteui/material-icons-extended": "^
|
|
24
|
+
"@igniteui/material-icons-extended": "^2.11.0",
|
|
25
25
|
"igniteui-dockmanager": "~1.8.0",
|
|
26
26
|
"igniteui-webcomponents": "4.2.0",
|
|
27
27
|
"igniteui-webcomponents-charts": "~4.0.0",
|