igniteui-cli 13.1.13-beta.7 → 13.1.14
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/react/igr-ts/pie-chart/default/files/src/app/__path__/__filePrefix__.tsx +2 -2
- package/templates/react/igr-ts/projects/_base/files/__dot__eslintrc.cjs +13 -1
- package/templates/react/igr-ts/projects/_base/files/index.html +1 -1
- package/templates/react/igr-ts/projects/_base/files/tsconfig.json +1 -2
- package/templates/react/igr-ts/projects/_base_with_home/files/index.html +29 -0
- package/templates/webcomponents/igc-ts/projects/_base/files/index.html +1 -1
- package/templates/react/igr-ts/projects/_base/files/__dot__eslintrc.json +0 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "igniteui-cli",
|
|
3
|
-
"version": "13.1.
|
|
3
|
+
"version": "13.1.14",
|
|
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.
|
|
76
|
-
"@igniteui/cli-core": "~13.1.
|
|
75
|
+
"@igniteui/angular-templates": "~17.1.13114",
|
|
76
|
+
"@igniteui/cli-core": "~13.1.14",
|
|
77
77
|
"chalk": "^2.3.2",
|
|
78
78
|
"fs-extra": "^3.0.1",
|
|
79
79
|
"glob": "^7.1.2",
|
|
@@ -19,8 +19,8 @@ const data = [
|
|
|
19
19
|
export default function $(ClassName)() {
|
|
20
20
|
const title = 'Pie Chart';
|
|
21
21
|
const [chartData, setChartData] = useState([]);
|
|
22
|
-
|
|
23
|
-
|
|
22
|
+
const legendRef = useRef();
|
|
23
|
+
const chartRef = useRef();
|
|
24
24
|
|
|
25
25
|
useEffect(() => {
|
|
26
26
|
setChartData(data);
|
|
@@ -10,10 +10,22 @@ module.exports = {
|
|
|
10
10
|
parser: '@typescript-eslint/parser',
|
|
11
11
|
plugins: ['react-refresh'],
|
|
12
12
|
rules: {
|
|
13
|
+
'@typescript-eslint/no-unused-vars': [
|
|
14
|
+
'error',
|
|
15
|
+
{
|
|
16
|
+
args: 'all',
|
|
17
|
+
argsIgnorePattern: '^_',
|
|
18
|
+
caughtErrors: 'all',
|
|
19
|
+
caughtErrorsIgnorePattern: '^_',
|
|
20
|
+
destructuredArrayIgnorePattern: '^(_|set)',
|
|
21
|
+
varsIgnorePattern: '^_',
|
|
22
|
+
ignoreRestSiblings: true
|
|
23
|
+
}
|
|
24
|
+
],
|
|
13
25
|
'react-refresh/only-export-components': [
|
|
14
26
|
'warn',
|
|
15
27
|
{ allowConstantExport: true },
|
|
16
28
|
],
|
|
17
|
-
|
|
29
|
+
'@typescript-eslint/no-explicit-any': 'off'
|
|
18
30
|
},
|
|
19
31
|
}
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
content="width=device-width, initial-scale=1, shrink-to-fit=no"
|
|
9
9
|
/>
|
|
10
10
|
<meta name="theme-color" content="#000000" />
|
|
11
|
-
<title
|
|
11
|
+
<title><%=ApplicationTitle%></title>
|
|
12
12
|
<link rel="stylesheet" href="./styles.css">
|
|
13
13
|
</head>
|
|
14
14
|
<body>
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="utf-8" />
|
|
5
|
+
<link rel="shortcut icon" href="/favicon.ico" />
|
|
6
|
+
<meta
|
|
7
|
+
name="viewport"
|
|
8
|
+
content="width=device-width, initial-scale=1, shrink-to-fit=no"
|
|
9
|
+
/>
|
|
10
|
+
<meta name="theme-color" content="#000000" />
|
|
11
|
+
<title>IgniteUI for React</title>
|
|
12
|
+
<link rel="stylesheet" href="./styles.css">
|
|
13
|
+
</head>
|
|
14
|
+
<body>
|
|
15
|
+
<noscript>You need to enable JavaScript to run this app.</noscript>
|
|
16
|
+
<div id="root"></div>
|
|
17
|
+
<!--
|
|
18
|
+
This HTML file is a template.
|
|
19
|
+
If you open it directly in the browser, you will see an empty page.
|
|
20
|
+
|
|
21
|
+
You can add webfonts, meta tags, or analytics to this file.
|
|
22
|
+
The build step will place the bundled scripts into the <body> tag.
|
|
23
|
+
|
|
24
|
+
To begin the development, run `npm start` or `yarn start`.
|
|
25
|
+
To create a production bundle, use `npm run build` or `yarn build`.
|
|
26
|
+
-->
|
|
27
|
+
</body>
|
|
28
|
+
<script type="module" src="/src/main.tsx"></script>
|
|
29
|
+
</html>
|