igniteui-cli 13.1.6-beta.2 → 13.1.6-beta.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 +3 -3
- package/templates/angular/ig-ts/projects/empty/files/package.json +11 -11
- package/templates/react/igr-ts/projects/_base/files/index.html +1 -0
- package/templates/react/igr-ts/projects/_base/files/src/main.tsx +0 -1
- package/templates/react/igr-ts/projects/_base/files/styles.css +34 -0
- package/templates/webcomponents/igc-ts/projects/_base/files/package.json +11 -11
- package/templates/webcomponents/igc-ts/projects/_base_with_home/files/package.json +12 -12
- package/templates/react/igr-ts/projects/_base/files/src/index.css +0 -18
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "igniteui-cli",
|
|
3
|
-
"version": "13.1.6-beta.
|
|
3
|
+
"version": "13.1.6-beta.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": "~17.1.1316-beta.
|
|
76
|
-
"@igniteui/cli-core": "~13.1.6-beta.
|
|
75
|
+
"@igniteui/angular-templates": "~17.1.1316-beta.3",
|
|
76
|
+
"@igniteui/cli-core": "~13.1.6-beta.3",
|
|
77
77
|
"chalk": "^2.3.2",
|
|
78
78
|
"fs-extra": "^3.0.1",
|
|
79
79
|
"glob": "^7.1.2",
|
|
@@ -10,14 +10,14 @@
|
|
|
10
10
|
},
|
|
11
11
|
"private": true,
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"@angular/animations": "~17.
|
|
14
|
-
"@angular/common": "~17.
|
|
15
|
-
"@angular/compiler": "~17.
|
|
16
|
-
"@angular/core": "~17.
|
|
17
|
-
"@angular/forms": "~17.
|
|
18
|
-
"@angular/platform-browser": "~17.
|
|
19
|
-
"@angular/platform-browser-dynamic": "~17.
|
|
20
|
-
"@angular/router": "~17.
|
|
13
|
+
"@angular/animations": "~17.2.0",
|
|
14
|
+
"@angular/common": "~17.2.0",
|
|
15
|
+
"@angular/compiler": "~17.2.0",
|
|
16
|
+
"@angular/core": "~17.2.0",
|
|
17
|
+
"@angular/forms": "~17.2.0",
|
|
18
|
+
"@angular/platform-browser": "~17.2.0",
|
|
19
|
+
"@angular/platform-browser-dynamic": "~17.2.0",
|
|
20
|
+
"@angular/router": "~17.2.0",
|
|
21
21
|
"jquery": ">=1.9.1",
|
|
22
22
|
"jquery-ui": ">=1.10.5",
|
|
23
23
|
"igniteui-angular-wrappers": "~17.0.0",
|
|
@@ -27,9 +27,9 @@
|
|
|
27
27
|
"zone.js": "~0.14.0"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
|
-
"@angular-devkit/build-angular": "~17.
|
|
31
|
-
"@angular/cli": "~17.
|
|
32
|
-
"@angular/compiler-cli": "~17.
|
|
30
|
+
"@angular-devkit/build-angular": "~17.2.0",
|
|
31
|
+
"@angular/cli": "~17.2.0",
|
|
32
|
+
"@angular/compiler-cli": "~17.2.0",
|
|
33
33
|
"@types/jasmine": "~5.1.0",
|
|
34
34
|
"@types/node": "^18.16.0",
|
|
35
35
|
"igniteui-cli": "^$(cliVersion)",
|
|
@@ -4,7 +4,6 @@ import { createBrowserRouter, RouterProvider } from "react-router-dom";
|
|
|
4
4
|
import { routes } from "./app/app-routes";
|
|
5
5
|
import App from './app/app';
|
|
6
6
|
import 'react-app-polyfill/ie11';
|
|
7
|
-
import './index.css';
|
|
8
7
|
|
|
9
8
|
/** Required in IE11 for Charts */
|
|
10
9
|
Number.isNaN = Number.isNaN || function(value) {
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
body {
|
|
2
|
+
background: hsla(var(--ig-surface-500, 0 0% 100%));
|
|
3
|
+
color: var(--ig-surface-500-contrast, black);
|
|
4
|
+
font-family: var(--ig-font-family);
|
|
5
|
+
padding: 0;
|
|
6
|
+
/* font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
|
|
7
|
+
"Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
|
|
8
|
+
sans-serif; */
|
|
9
|
+
-webkit-font-smoothing: antialiased;
|
|
10
|
+
-moz-osx-font-smoothing: grayscale;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
html, body, #root {
|
|
14
|
+
height: 100%;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
/* minor CSS reset */
|
|
18
|
+
body, h1, h2, h3, h4, h5, h6, p {
|
|
19
|
+
margin: 0;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
html {
|
|
23
|
+
box-sizing: border-box;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
img, video {
|
|
27
|
+
height: auto;
|
|
28
|
+
max-width: 100%;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
code {
|
|
32
|
+
font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New",
|
|
33
|
+
monospace;
|
|
34
|
+
}
|
|
@@ -21,34 +21,34 @@
|
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
23
|
"@vaadin/router": "^1.7.4",
|
|
24
|
-
"lit": "^
|
|
25
|
-
"typescript": "^
|
|
24
|
+
"lit": "^3.1.2",
|
|
25
|
+
"typescript": "^5.3.3`",
|
|
26
26
|
"igniteui-webcomponents": "~4.7.0"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
29
|
"@babel/preset-env": "^7.20.2",
|
|
30
30
|
"@open-wc/building-rollup": "^2.2.1",
|
|
31
|
-
"@open-wc/testing": "^
|
|
31
|
+
"@open-wc/testing": "^4.0.0",
|
|
32
32
|
"@rollup/plugin-babel": "^6.0.3",
|
|
33
33
|
"@rollup/plugin-node-resolve": "^15.0.1",
|
|
34
|
-
"@typescript-eslint/eslint-plugin": "^
|
|
35
|
-
"@typescript-eslint/parser": "^
|
|
34
|
+
"@typescript-eslint/eslint-plugin": "^6.20.0",
|
|
35
|
+
"@typescript-eslint/parser": "^6.20.0",
|
|
36
36
|
"@web/dev-server": "^0.1.35",
|
|
37
37
|
"@web/rollup-plugin-html": "^1.11.0",
|
|
38
38
|
"@web/rollup-plugin-import-meta-assets": "^1.0.7",
|
|
39
|
-
"@web/test-runner": "^0.
|
|
39
|
+
"@web/test-runner": "^0.18.0",
|
|
40
40
|
"babel-plugin-template-html-minifier": "^4.1.0",
|
|
41
|
-
"concurrently": "^
|
|
41
|
+
"concurrently": "^8.2.2",
|
|
42
42
|
"deepmerge": "^4.2.2",
|
|
43
|
-
"eslint": "^8.
|
|
43
|
+
"eslint": "^8.56.0",
|
|
44
44
|
"eslint-plugin-lit": "^1.8.2",
|
|
45
|
-
"igniteui-cli": "^
|
|
46
|
-
"rimraf": "^
|
|
45
|
+
"igniteui-cli": "^13.1.5",
|
|
46
|
+
"rimraf": "^5.0.5",
|
|
47
47
|
"rollup": "^2.79.0",
|
|
48
48
|
"rollup-plugin-copy-assets": "^2.0.3",
|
|
49
49
|
"rollup-plugin-terser": "^7.0.2",
|
|
50
50
|
"rollup-plugin-workbox": "^6.2.0",
|
|
51
51
|
"source-map": "^0.7.4",
|
|
52
|
-
"tslib": "^2.
|
|
52
|
+
"tslib": "^2.6.2"
|
|
53
53
|
}
|
|
54
54
|
}
|
|
@@ -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": "^3.0.2",
|
|
25
25
|
"igniteui-dockmanager": "~1.14.3",
|
|
26
26
|
"igniteui-webcomponents": "~4.7.0",
|
|
27
27
|
"igniteui-webcomponents-charts": "~4.7.0",
|
|
@@ -30,33 +30,33 @@
|
|
|
30
30
|
"igniteui-webcomponents-grids": "~4.7.0",
|
|
31
31
|
"igniteui-webcomponents-inputs": "~4.7.0",
|
|
32
32
|
"igniteui-webcomponents-layouts": "~4.7.0",
|
|
33
|
-
"lit": "^
|
|
34
|
-
"typescript": "^
|
|
33
|
+
"lit": "^3.1.2",
|
|
34
|
+
"typescript": "^5.3.3"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
37
|
"@babel/preset-env": "^7.20.2",
|
|
38
38
|
"@open-wc/building-rollup": "^2.2.1",
|
|
39
|
-
"@open-wc/testing": "^
|
|
39
|
+
"@open-wc/testing": "^4.0.0",
|
|
40
40
|
"@rollup/plugin-babel": "^6.0.3",
|
|
41
41
|
"@rollup/plugin-node-resolve": "^15.0.1",
|
|
42
|
-
"@typescript-eslint/eslint-plugin": "^
|
|
43
|
-
"@typescript-eslint/parser": "^
|
|
42
|
+
"@typescript-eslint/eslint-plugin": "^6.20.0",
|
|
43
|
+
"@typescript-eslint/parser": "^6.20.0",
|
|
44
44
|
"@web/dev-server": "^0.1.35",
|
|
45
45
|
"@web/rollup-plugin-html": "^1.11.0",
|
|
46
46
|
"@web/rollup-plugin-import-meta-assets": "^1.0.7",
|
|
47
|
-
"@web/test-runner": "^0.
|
|
47
|
+
"@web/test-runner": "^0.18.0",
|
|
48
48
|
"babel-plugin-template-html-minifier": "^4.1.0",
|
|
49
|
-
"concurrently": "^
|
|
49
|
+
"concurrently": "^8.2.2",
|
|
50
50
|
"deepmerge": "^4.2.2",
|
|
51
|
-
"eslint": "^8.
|
|
51
|
+
"eslint": "^8.56.0",
|
|
52
52
|
"eslint-plugin-lit": "^1.8.2",
|
|
53
|
-
"igniteui-cli": "^
|
|
54
|
-
"rimraf": "^
|
|
53
|
+
"igniteui-cli": "^13.1.5",
|
|
54
|
+
"rimraf": "^5.0.5",
|
|
55
55
|
"rollup": "^2.79.0",
|
|
56
56
|
"rollup-plugin-copy-assets": "^2.0.3",
|
|
57
57
|
"rollup-plugin-terser": "^7.0.2",
|
|
58
58
|
"rollup-plugin-workbox": "^6.2.0",
|
|
59
59
|
"source-map": "^0.7.4",
|
|
60
|
-
"tslib": "^2.
|
|
60
|
+
"tslib": "^2.6.2"
|
|
61
61
|
}
|
|
62
62
|
}
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
body {
|
|
2
|
-
margin: 0;
|
|
3
|
-
padding: 0;
|
|
4
|
-
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
|
|
5
|
-
"Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
|
|
6
|
-
sans-serif;
|
|
7
|
-
-webkit-font-smoothing: antialiased;
|
|
8
|
-
-moz-osx-font-smoothing: grayscale;
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
html, body, #root {
|
|
12
|
-
height: 100%;
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
code {
|
|
16
|
-
font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New",
|
|
17
|
-
monospace;
|
|
18
|
-
}
|