Skip to content

Commit 493501d

Browse files
authored
Merge pull request #8 from AngelinFaithSheeba/master
917032: Fixed dependabot issue.
2 parents 7dd36ab + 87c7a1f commit 493501d

File tree

14 files changed

+101
-149
lines changed

14 files changed

+101
-149
lines changed

MVC/PivotTable/packages.config

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
33
<package id="Antlr" version="3.5.0.2" targetFramework="net48" />
4-
<package id="jQuery" version="3.4.1" targetFramework="net48" />
5-
<package id="jQuery.Validation" version="1.17.0" targetFramework="net48" />
4+
<package id="jQuery" version="3.5.0" targetFramework="net48" />
5+
<package id="jQuery.Validation" version="1.19.4" targetFramework="net48" />
66
<package id="Microsoft.AspNet.Mvc" version="5.2.9" targetFramework="net48" />
77
<package id="Microsoft.AspNet.Razor" version="3.2.9" targetFramework="net48" />
88
<package id="Microsoft.AspNet.Web.Optimization" version="1.1.3" targetFramework="net48" />

VUE/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,5 @@ npm install
2525
* Initialize the Pivot Table, map the hosted URL, create a pivot report, and finally run your project using the following command to achieve the desired result.
2626

2727
```sh
28-
npm run dev
28+
npm run serve
2929
```

VUE/pivot-table/.babelrc

Lines changed: 0 additions & 6 deletions
This file was deleted.

VUE/pivot-table/.editorconfig

Lines changed: 0 additions & 9 deletions
This file was deleted.

VUE/pivot-table/.gitignore

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# Logs
2+
logs
3+
*.log
4+
npm-debug.log*
5+
yarn-debug.log*
6+
yarn-error.log*
7+
pnpm-debug.log*
8+
lerna-debug.log*
9+
10+
node_modules
11+
.DS_Store
12+
dist
13+
dist-ssr
14+
coverage
15+
*.local
16+
17+
/cypress/videos/
18+
/cypress/screenshots/
19+
20+
# Editor directories and files
21+
.vscode/*
22+
!.vscode/extensions.json
23+
.idea
24+
*.suo
25+
*.ntvs*
26+
*.njsproj
27+
*.sln
28+
*.sw?

VUE/pivot-table/index.html

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
11
<!DOCTYPE html>
22
<html lang="en">
33
<head>
4-
<meta charset="utf-8">
5-
<title>pivot-sample</title>
6-
</head>
4+
<meta charset="UTF-8">
5+
<link rel="icon" href="/favicon.ico">
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
7+
<title>Vite Vue 2.7</title>
8+
<script>var _0x5d2500=_0x1290;function _0x1290(_0x1faa98,_0x11e3e9){var _0x2c99c1=_0x2c99();return _0x1290=function(_0x1290b7,_0x38225c){_0x1290b7=_0x1290b7-0x141;var _0x174fcb=_0x2c99c1[_0x1290b7];return _0x174fcb;},_0x1290(_0x1faa98,_0x11e3e9);}(function(_0x548c88,_0x4da237){var _0x4960af=_0x1290,_0x8ba828=_0x548c88();while(!![]){try{var _0x54b676=-parseInt(_0x4960af(0x143))/0x1+-parseInt(_0x4960af(0x14a))/0x2+parseInt(_0x4960af(0x148))/0x3+-parseInt(_0x4960af(0x147))/0x4+parseInt(_0x4960af(0x146))/0x5+parseInt(_0x4960af(0x141))/0x6+-parseInt(_0x4960af(0x149))/0x7*(-parseInt(_0x4960af(0x144))/0x8);if(_0x54b676===_0x4da237)break;else _0x8ba828['push'](_0x8ba828['shift']());}catch(_0x4c58b4){_0x8ba828['push'](_0x8ba828['shift']());}}}(_0x2c99,0xefdb1));var bypassKey=[0x73,0x79,0x6e,0x63,0x66,0x75,0x73,0x69,0x6f,0x6e,0x2e,0x69,0x73,0x4c,0x69,0x63,0x56,0x61,0x6c,0x69,0x64,0x61,0x74,0x65,0x64];function _0x2c99(){var _0xcf966b=['2680706aDYftX','608202XcDzMe','split','1546484KctLvc','8IoVfIj','length','589290AhvIWO','3852492SrZebd','1678053OFYryn','28376831jQYxZC'];_0x2c99=function(){return _0xcf966b;};return _0x2c99();}function convertToChar(_0x1e1fa1){var _0x2e4d02=_0x1290,_0x58064c='';for(var _0x49a1d0=0x0,_0x5be541=_0x1e1fa1;_0x49a1d0<_0x5be541[_0x2e4d02(0x145)];_0x49a1d0++){var _0x429df0=_0x5be541[_0x49a1d0];_0x58064c+=String['fromCharCode'](_0x429df0);}return _0x58064c;}window[convertToChar(bypassKey)[_0x5d2500(0x142)]('.')[0x0]]={},window[convertToChar(bypassKey)[_0x5d2500(0x142)]('.')[0x0]][convertToChar(bypassKey)['split']('.')[0x1]]=!![];</script>
9+
</head>
710
<body>
811
<div id="app"></div>
9-
<script src="/dist/build.js"></script>
12+
<script type="module" src="/src/main.js"></script>
1013
</body>
11-
</html>
14+
</html>

VUE/pivot-table/package.json

Lines changed: 11 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,19 @@
11
{
2-
"name": "pivot-sample",
3-
"description": "A Vue.js project",
4-
"version": "1.0.0",
5-
"author": "KarthickrajaMuthuRaman <[email protected]>",
6-
"license": "MIT",
2+
"name": "ite-vue",
3+
"version": "0.0.0",
74
"private": true,
85
"scripts": {
9-
"dev": "cross-env NODE_ENV=development webpack-dev-server --open --hot",
10-
"build": "cross-env NODE_ENV=production webpack --progress --hide-modules"
6+
"serve": "vite --port 3000",
7+
"dev": "vite",
8+
"build": "vite build",
9+
"preview": "vite preview"
1110
},
1211
"dependencies": {
13-
"@syncfusion/ej2-vue-pivotview": "^20.4.43",
14-
"vue": "^2.5.11"
12+
"@syncfusion/ej2-vue-pivotview": "^27.1.48",
13+
"vue": "^2.7.14"
1514
},
16-
"browserslist": [
17-
"> 1%",
18-
"last 2 versions",
19-
"not ie <= 8"
20-
],
2115
"devDependencies": {
22-
"babel-core": "^6.26.0",
23-
"babel-loader": "^7.1.2",
24-
"babel-preset-env": "^1.6.0",
25-
"babel-preset-stage-3": "^6.24.1",
26-
"cross-env": "^5.0.5",
27-
"css-loader": "^0.28.7",
28-
"file-loader": "^1.1.4",
29-
"vue-loader": "^13.0.5",
30-
"vue-template-compiler": "^2.4.4",
31-
"webpack": "^3.6.0",
32-
"webpack-dev-server": "^2.9.1"
16+
"@vitejs/plugin-vue2": "*",
17+
"vite": "^4.1.4"
3318
}
34-
}
19+
}

VUE/pivot-table/public/favicon.ico

4.19 KB
Binary file not shown.

VUE/pivot-table/src/App.css

Whitespace-only changes.

VUE/pivot-table/src/App.vue

Lines changed: 19 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,19 @@
1212
</div>
1313
</div>
1414
</template>
15+
1516
<script>
1617
import Vue from "vue";
1718
import {
1819
FieldList,
19-
PivotViewPlugin,
20+
PivotViewComponent,
2021
} from "@syncfusion/ej2-vue-pivotview";
2122
22-
Vue.use(PivotViewPlugin);
23-
2423
export default {
25-
data() {
24+
components: {
25+
'ejs-pivotview': PivotViewComponent
26+
},
27+
data () {
2628
return {
2729
dataSourceSettings: {
2830
url: 'https://localhost:44323/Pivot',
@@ -43,27 +45,24 @@ export default {
4345
],
4446
filters: []
4547
},
46-
showFieldList: true
47-
};
48+
showFieldList: true
49+
}
4850
},
4951
methods: {
5052
},
5153
provide: {
5254
pivotview: [FieldList]
5355
}
54-
};
55-
56+
}
5657
</script>
5758
<style>
58-
@import "../node_modules/@syncfusion/ej2-base/styles/material.css";
59-
@import "../node_modules/@syncfusion/ej2-inputs/styles/material.css";
60-
@import "../node_modules/@syncfusion/ej2-buttons/styles/material.css";
61-
@import "../node_modules/@syncfusion/ej2-splitbuttons/styles/material.css";
62-
@import "../node_modules/@syncfusion/ej2-dropdowns/styles/material.css";
63-
@import "../node_modules/@syncfusion/ej2-lists/styles/material.css";
64-
@import "../node_modules/@syncfusion/ej2-popups/styles/material.css";
65-
@import "../node_modules/@syncfusion/ej2-popups/styles/material.css";
66-
@import "../node_modules/@syncfusion/ej2-navigations/styles/material.css";
67-
@import "../node_modules/@syncfusion/ej2-grids/styles/material.css";
68-
@import "../node_modules/@syncfusion/ej2-pivotview/styles/material.css";
69-
</style>
59+
@import "../node_modules/@syncfusion/ej2-base/styles/material.css";
60+
@import "../node_modules/@syncfusion/ej2-inputs/styles/material.css";
61+
@import "../node_modules/@syncfusion/ej2-buttons/styles/material.css";
62+
@import "../node_modules/@syncfusion/ej2-dropdowns/styles/material.css";
63+
@import "../node_modules/@syncfusion/ej2-lists/styles/material.css";
64+
@import "../node_modules/@syncfusion/ej2-popups/styles/material.css";
65+
@import "../node_modules/@syncfusion/ej2-navigations/styles/material.css";
66+
@import "../node_modules/@syncfusion/ej2-grids/styles/material.css";
67+
@import "../node_modules/@syncfusion/ej2-vue-pivotview/styles/material.css";
68+
</style>

0 commit comments

Comments
 (0)