From e7436f7efea7e8a08e7488acd52557e79c41adf0 Mon Sep 17 00:00:00 2001 From: Dharshana4609 Date: Fri, 18 Oct 2024 11:29:03 +0530 Subject: [PATCH 01/10] 915494: Resolved dependent bot issues --- How to/Customize context menu/README.md | 2 +- How to/Customize context menu/package.json | 16 +++-- .../src/components/HelloWorld.vue | 58 ------------------- How to/Customize context menu/src/main.js | 8 +-- How to/Organize pdf/README.md | 2 +- How to/Organize pdf/package.json | 15 +++-- How to/Organize pdf/src/App.vue | 28 ++++----- .../src/components/HelloWorld.vue | 58 ------------------- How to/Organize pdf/src/main.js | 8 +-- .../README.md | 2 +- .../package.json | 16 +++-- .../src/App.vue | 9 +-- .../src/components/HelloWorld.vue | 58 ------------------- .../src/main.js | 8 +-- .../README.md | 2 +- .../package.json | 15 +++-- .../src/App.vue | 30 +++++----- .../src/components/HelloWorld.vue | 58 ------------------- .../src/main.js | 8 +-- 19 files changed, 89 insertions(+), 312 deletions(-) delete mode 100644 How to/Customize context menu/src/components/HelloWorld.vue delete mode 100644 How to/Organize pdf/src/components/HelloWorld.vue delete mode 100644 How to/PageRenderStarted and PageRenderCompleted event/src/components/HelloWorld.vue delete mode 100644 How to/Restrict Zoom Percentage on Mobile Devices/src/components/HelloWorld.vue diff --git a/How to/Customize context menu/README.md b/How to/Customize context menu/README.md index cf9ae0e..f1d54ba 100644 --- a/How to/Customize context menu/README.md +++ b/How to/Customize context menu/README.md @@ -1,4 +1,4 @@ -# quickstart +# context-menu ## Project setup ``` diff --git a/How to/Customize context menu/package.json b/How to/Customize context menu/package.json index 5715bcf..10889c2 100644 --- a/How to/Customize context menu/package.json +++ b/How to/Customize context menu/package.json @@ -8,11 +8,17 @@ "lint": "vue-cli-service lint" }, "dependencies": { - "@syncfusion/ej2-vue-pdfviewer": "*", "@syncfusion/ej2-vue-navigations": "*", "@syncfusion/ej2-vue-buttons": "*", + "@syncfusion/ej2-vue-pdfviewer": "*", "core-js": "^3.8.3", - "vue": "^2.7.16" + "@syncfusion/ej2-base": "*", + "vue": "^3.2.13", + "buffer": "^6.0.3", + "crypto-browserify": "^3.12.0", + "stream-browserify": "^3.0.0", + "util": "^0.12.5", + "vm-browserify": "^1.1.2" }, "devDependencies": { "@babel/core": "^7.12.16", @@ -21,8 +27,7 @@ "@vue/cli-plugin-eslint": "~5.0.0", "@vue/cli-service": "~5.0.0", "eslint": "^7.32.0", - "eslint-plugin-vue": "^8.0.3", - "vue-template-compiler": "^2.7.16" + "eslint-plugin-vue": "^8.0.3" }, "eslintConfig": { "root": true, @@ -41,6 +46,7 @@ "browserslist": [ "> 1%", "last 2 versions", - "not dead" + "not dead", + "not ie 11" ] } diff --git a/How to/Customize context menu/src/components/HelloWorld.vue b/How to/Customize context menu/src/components/HelloWorld.vue deleted file mode 100644 index 879051a..0000000 --- a/How to/Customize context menu/src/components/HelloWorld.vue +++ /dev/null @@ -1,58 +0,0 @@ - - - - - - diff --git a/How to/Customize context menu/src/main.js b/How to/Customize context menu/src/main.js index 63eb05f..01433bc 100644 --- a/How to/Customize context menu/src/main.js +++ b/How to/Customize context menu/src/main.js @@ -1,8 +1,4 @@ -import Vue from 'vue' +import { createApp } from 'vue' import App from './App.vue' -Vue.config.productionTip = false - -new Vue({ - render: h => h(App), -}).$mount('#app') +createApp(App).mount('#app') diff --git a/How to/Organize pdf/README.md b/How to/Organize pdf/README.md index cf9ae0e..d4c36c1 100644 --- a/How to/Organize pdf/README.md +++ b/How to/Organize pdf/README.md @@ -1,4 +1,4 @@ -# quickstart +# organize-pdf ## Project setup ``` diff --git a/How to/Organize pdf/package.json b/How to/Organize pdf/package.json index 0ba51c8..97c992d 100644 --- a/How to/Organize pdf/package.json +++ b/How to/Organize pdf/package.json @@ -1,5 +1,5 @@ { - "name": "quickstart", + "name": "organize-pdf", "version": "0.1.0", "private": true, "scripts": { @@ -11,7 +11,12 @@ "@syncfusion/ej2-vue-pdfviewer": "*", "@syncfusion/ej2-base": "*", "core-js": "^3.8.3", - "vue": "^2.7.16" + "vue": "^3.2.13", + "buffer": "^6.0.3", + "crypto-browserify": "^3.12.0", + "stream-browserify": "^3.0.0", + "util": "^0.12.5", + "vm-browserify": "^1.1.2" }, "devDependencies": { "@babel/core": "^7.12.16", @@ -20,8 +25,7 @@ "@vue/cli-plugin-eslint": "~5.0.0", "@vue/cli-service": "~5.0.0", "eslint": "^7.32.0", - "eslint-plugin-vue": "^8.0.3", - "vue-template-compiler": "^2.7.16" + "eslint-plugin-vue": "^8.0.3" }, "eslintConfig": { "root": true, @@ -40,6 +44,7 @@ "browserslist": [ "> 1%", "last 2 versions", - "not dead" + "not dead", + "not ie 11" ] } diff --git a/How to/Organize pdf/src/App.vue b/How to/Organize pdf/src/App.vue index 9497a1f..1678f80 100644 --- a/How to/Organize pdf/src/App.vue +++ b/How to/Organize pdf/src/App.vue @@ -11,18 +11,19 @@ - - - diff --git a/How to/Organize pdf/src/main.js b/How to/Organize pdf/src/main.js index 63eb05f..01433bc 100644 --- a/How to/Organize pdf/src/main.js +++ b/How to/Organize pdf/src/main.js @@ -1,8 +1,4 @@ -import Vue from 'vue' +import { createApp } from 'vue' import App from './App.vue' -Vue.config.productionTip = false - -new Vue({ - render: h => h(App), -}).$mount('#app') +createApp(App).mount('#app') diff --git a/How to/PageRenderStarted and PageRenderCompleted event/README.md b/How to/PageRenderStarted and PageRenderCompleted event/README.md index cf9ae0e..d48d243 100644 --- a/How to/PageRenderStarted and PageRenderCompleted event/README.md +++ b/How to/PageRenderStarted and PageRenderCompleted event/README.md @@ -1,4 +1,4 @@ -# quickstart +# page-render ## Project setup ``` diff --git a/How to/PageRenderStarted and PageRenderCompleted event/package.json b/How to/PageRenderStarted and PageRenderCompleted event/package.json index 92f0a07..bfefb1a 100644 --- a/How to/PageRenderStarted and PageRenderCompleted event/package.json +++ b/How to/PageRenderStarted and PageRenderCompleted event/package.json @@ -1,5 +1,5 @@ { - "name": "quickstart", + "name": "page-render", "version": "0.1.0", "private": true, "scripts": { @@ -10,7 +10,13 @@ "dependencies": { "@syncfusion/ej2-vue-pdfviewer": "*", "core-js": "^3.8.3", - "vue": "^2.7.16" + "@syncfusion/ej2-base": "*", + "vue": "^3.2.13", + "buffer": "^6.0.3", + "crypto-browserify": "^3.12.0", + "stream-browserify": "^3.0.0", + "util": "^0.12.5", + "vm-browserify": "^1.1.2" }, "devDependencies": { "@babel/core": "^7.12.16", @@ -19,8 +25,7 @@ "@vue/cli-plugin-eslint": "~5.0.0", "@vue/cli-service": "~5.0.0", "eslint": "^7.32.0", - "eslint-plugin-vue": "^8.0.3", - "vue-template-compiler": "^2.7.16" + "eslint-plugin-vue": "^8.0.3" }, "eslintConfig": { "root": true, @@ -39,6 +44,7 @@ "browserslist": [ "> 1%", "last 2 versions", - "not dead" + "not dead", + "not ie 11" ] } diff --git a/How to/PageRenderStarted and PageRenderCompleted event/src/App.vue b/How to/PageRenderStarted and PageRenderCompleted event/src/App.vue index f3dfe49..94314ac 100644 --- a/How to/PageRenderStarted and PageRenderCompleted event/src/App.vue +++ b/How to/PageRenderStarted and PageRenderCompleted event/src/App.vue @@ -12,14 +12,15 @@ - - - diff --git a/How to/PageRenderStarted and PageRenderCompleted event/src/main.js b/How to/PageRenderStarted and PageRenderCompleted event/src/main.js index 63eb05f..01433bc 100644 --- a/How to/PageRenderStarted and PageRenderCompleted event/src/main.js +++ b/How to/PageRenderStarted and PageRenderCompleted event/src/main.js @@ -1,8 +1,4 @@ -import Vue from 'vue' +import { createApp } from 'vue' import App from './App.vue' -Vue.config.productionTip = false - -new Vue({ - render: h => h(App), -}).$mount('#app') +createApp(App).mount('#app') diff --git a/How to/Restrict Zoom Percentage on Mobile Devices/README.md b/How to/Restrict Zoom Percentage on Mobile Devices/README.md index cf9ae0e..d81d634 100644 --- a/How to/Restrict Zoom Percentage on Mobile Devices/README.md +++ b/How to/Restrict Zoom Percentage on Mobile Devices/README.md @@ -1,4 +1,4 @@ -# quickstart +# restrict-zoom-on-mobile ## Project setup ``` diff --git a/How to/Restrict Zoom Percentage on Mobile Devices/package.json b/How to/Restrict Zoom Percentage on Mobile Devices/package.json index 92f0a07..777904c 100644 --- a/How to/Restrict Zoom Percentage on Mobile Devices/package.json +++ b/How to/Restrict Zoom Percentage on Mobile Devices/package.json @@ -1,5 +1,5 @@ { - "name": "quickstart", + "name": "restrict-zoom-on-mobile", "version": "0.1.0", "private": true, "scripts": { @@ -10,7 +10,12 @@ "dependencies": { "@syncfusion/ej2-vue-pdfviewer": "*", "core-js": "^3.8.3", - "vue": "^2.7.16" + "vue": "^3.2.13", + "buffer": "^6.0.3", + "crypto-browserify": "^3.12.0", + "stream-browserify": "^3.0.0", + "util": "^0.12.5", + "vm-browserify": "^1.1.2" }, "devDependencies": { "@babel/core": "^7.12.16", @@ -19,8 +24,7 @@ "@vue/cli-plugin-eslint": "~5.0.0", "@vue/cli-service": "~5.0.0", "eslint": "^7.32.0", - "eslint-plugin-vue": "^8.0.3", - "vue-template-compiler": "^2.7.16" + "eslint-plugin-vue": "^8.0.3" }, "eslintConfig": { "root": true, @@ -39,6 +43,7 @@ "browserslist": [ "> 1%", "last 2 versions", - "not dead" + "not dead", + "not ie 11" ] } diff --git a/How to/Restrict Zoom Percentage on Mobile Devices/src/App.vue b/How to/Restrict Zoom Percentage on Mobile Devices/src/App.vue index 79764d6..a276f3b 100644 --- a/How to/Restrict Zoom Percentage on Mobile Devices/src/App.vue +++ b/How to/Restrict Zoom Percentage on Mobile Devices/src/App.vue @@ -11,18 +11,19 @@ - - - diff --git a/How to/Restrict Zoom Percentage on Mobile Devices/src/main.js b/How to/Restrict Zoom Percentage on Mobile Devices/src/main.js index 63eb05f..01433bc 100644 --- a/How to/Restrict Zoom Percentage on Mobile Devices/src/main.js +++ b/How to/Restrict Zoom Percentage on Mobile Devices/src/main.js @@ -1,8 +1,4 @@ -import Vue from 'vue' +import { createApp } from 'vue' import App from './App.vue' -Vue.config.productionTip = false - -new Vue({ - render: h => h(App), -}).$mount('#app') +createApp(App).mount('#app') From a50f4aa6bc6f63390ae1620494b05423d266599a Mon Sep 17 00:00:00 2001 From: Dharshana4609 Date: Fri, 18 Oct 2024 12:01:49 +0530 Subject: [PATCH 02/10] 915494: Resolved dependent bot issues --- .../README.md | 2 +- .../package.json | 15 +++-- .../src/App.vue | 12 ++-- .../src/components/HelloWorld.vue | 58 ------------------- .../src/main.js | 8 +-- How to/Retry Timeout/README.md | 2 +- How to/Retry Timeout/package.json | 15 +++-- How to/Retry Timeout/src/App.vue | 12 ++-- .../src/components/HelloWorld.vue | 58 ------------------- How to/Retry Timeout/src/main.js | 8 +-- 10 files changed, 40 insertions(+), 150 deletions(-) delete mode 100644 How to/Load N number of pages on initial loading/src/components/HelloWorld.vue delete mode 100644 How to/Retry Timeout/src/components/HelloWorld.vue diff --git a/How to/Load N number of pages on initial loading/README.md b/How to/Load N number of pages on initial loading/README.md index cf9ae0e..c63cc07 100644 --- a/How to/Load N number of pages on initial loading/README.md +++ b/How to/Load N number of pages on initial loading/README.md @@ -1,4 +1,4 @@ -# quickstart +# load-n-pages ## Project setup ``` diff --git a/How to/Load N number of pages on initial loading/package.json b/How to/Load N number of pages on initial loading/package.json index 92f0a07..8d6e9c4 100644 --- a/How to/Load N number of pages on initial loading/package.json +++ b/How to/Load N number of pages on initial loading/package.json @@ -1,5 +1,5 @@ { - "name": "quickstart", + "name": "load-n-pages", "version": "0.1.0", "private": true, "scripts": { @@ -9,8 +9,13 @@ }, "dependencies": { "@syncfusion/ej2-vue-pdfviewer": "*", + "buffer": "^6.0.3", "core-js": "^3.8.3", - "vue": "^2.7.16" + "crypto-browserify": "^3.12.0", + "stream-browserify": "^3.0.0", + "util": "^0.12.5", + "vm-browserify": "^1.1.2", + "vue": "^3.2.13" }, "devDependencies": { "@babel/core": "^7.12.16", @@ -19,8 +24,7 @@ "@vue/cli-plugin-eslint": "~5.0.0", "@vue/cli-service": "~5.0.0", "eslint": "^7.32.0", - "eslint-plugin-vue": "^8.0.3", - "vue-template-compiler": "^2.7.16" + "eslint-plugin-vue": "^8.0.3" }, "eslintConfig": { "root": true, @@ -39,6 +43,7 @@ "browserslist": [ "> 1%", "last 2 versions", - "not dead" + "not dead", + "not ie 11" ] } diff --git a/How to/Load N number of pages on initial loading/src/App.vue b/How to/Load N number of pages on initial loading/src/App.vue index 1f21338..796102b 100644 --- a/How to/Load N number of pages on initial loading/src/App.vue +++ b/How to/Load N number of pages on initial loading/src/App.vue @@ -11,17 +11,19 @@ - - - diff --git a/How to/Load N number of pages on initial loading/src/main.js b/How to/Load N number of pages on initial loading/src/main.js index 63eb05f..01433bc 100644 --- a/How to/Load N number of pages on initial loading/src/main.js +++ b/How to/Load N number of pages on initial loading/src/main.js @@ -1,8 +1,4 @@ -import Vue from 'vue' +import { createApp } from 'vue' import App from './App.vue' -Vue.config.productionTip = false - -new Vue({ - render: h => h(App), -}).$mount('#app') +createApp(App).mount('#app') diff --git a/How to/Retry Timeout/README.md b/How to/Retry Timeout/README.md index cf9ae0e..f41076d 100644 --- a/How to/Retry Timeout/README.md +++ b/How to/Retry Timeout/README.md @@ -1,4 +1,4 @@ -# quickstart +# retry-timeout ## Project setup ``` diff --git a/How to/Retry Timeout/package.json b/How to/Retry Timeout/package.json index 92f0a07..9fc4602 100644 --- a/How to/Retry Timeout/package.json +++ b/How to/Retry Timeout/package.json @@ -1,5 +1,5 @@ { - "name": "quickstart", + "name": "retry-timeout", "version": "0.1.0", "private": true, "scripts": { @@ -9,8 +9,13 @@ }, "dependencies": { "@syncfusion/ej2-vue-pdfviewer": "*", + "buffer": "^6.0.3", "core-js": "^3.8.3", - "vue": "^2.7.16" + "crypto-browserify": "^3.12.0", + "stream-browserify": "^3.0.0", + "util": "^0.12.5", + "vm-browserify": "^1.1.2", + "vue": "^3.2.13" }, "devDependencies": { "@babel/core": "^7.12.16", @@ -19,8 +24,7 @@ "@vue/cli-plugin-eslint": "~5.0.0", "@vue/cli-service": "~5.0.0", "eslint": "^7.32.0", - "eslint-plugin-vue": "^8.0.3", - "vue-template-compiler": "^2.7.16" + "eslint-plugin-vue": "^8.0.3" }, "eslintConfig": { "root": true, @@ -39,6 +43,7 @@ "browserslist": [ "> 1%", "last 2 versions", - "not dead" + "not dead", + "not ie 11" ] } diff --git a/How to/Retry Timeout/src/App.vue b/How to/Retry Timeout/src/App.vue index 51259df..eb9230e 100644 --- a/How to/Retry Timeout/src/App.vue +++ b/How to/Retry Timeout/src/App.vue @@ -11,17 +11,19 @@ - - - diff --git a/How to/Retry Timeout/src/main.js b/How to/Retry Timeout/src/main.js index 63eb05f..01433bc 100644 --- a/How to/Retry Timeout/src/main.js +++ b/How to/Retry Timeout/src/main.js @@ -1,8 +1,4 @@ -import Vue from 'vue' +import { createApp } from 'vue' import App from './App.vue' -Vue.config.productionTip = false - -new Vue({ - render: h => h(App), -}).$mount('#app') +createApp(App).mount('#app') From 4b2bf8da513e2918c80b27c05c7f3417075647eb Mon Sep 17 00:00:00 2001 From: Dharshana4609 Date: Fri, 18 Oct 2024 12:35:08 +0530 Subject: [PATCH 03/10] 915494: Resolved dependent bot issue for interaction with annotation sample --- .../Interaction with annotations/README.md | 2 +- .../babel.config.js | 5 +++++ .../jsconfig.json | 19 +++++++++++++++++++ .../Interaction with annotations/package.json | 13 +++++++++---- .../Interaction with annotations/src/App.vue | 2 +- .../Interaction with annotations/src/main.js | 8 ++------ .../vue.config.js | 4 ++++ 7 files changed, 41 insertions(+), 12 deletions(-) create mode 100644 Annotations/Interaction with annotations/babel.config.js create mode 100644 Annotations/Interaction with annotations/jsconfig.json create mode 100644 Annotations/Interaction with annotations/vue.config.js diff --git a/Annotations/Interaction with annotations/README.md b/Annotations/Interaction with annotations/README.md index cf9ae0e..5b7e9ab 100644 --- a/Annotations/Interaction with annotations/README.md +++ b/Annotations/Interaction with annotations/README.md @@ -1,4 +1,4 @@ -# quickstart +# annotation ## Project setup ``` diff --git a/Annotations/Interaction with annotations/babel.config.js b/Annotations/Interaction with annotations/babel.config.js new file mode 100644 index 0000000..e955840 --- /dev/null +++ b/Annotations/Interaction with annotations/babel.config.js @@ -0,0 +1,5 @@ +module.exports = { + presets: [ + '@vue/cli-plugin-babel/preset' + ] +} diff --git a/Annotations/Interaction with annotations/jsconfig.json b/Annotations/Interaction with annotations/jsconfig.json new file mode 100644 index 0000000..4aafc5f --- /dev/null +++ b/Annotations/Interaction with annotations/jsconfig.json @@ -0,0 +1,19 @@ +{ + "compilerOptions": { + "target": "es5", + "module": "esnext", + "baseUrl": "./", + "moduleResolution": "node", + "paths": { + "@/*": [ + "src/*" + ] + }, + "lib": [ + "esnext", + "dom", + "dom.iterable", + "scripthost" + ] + } +} diff --git a/Annotations/Interaction with annotations/package.json b/Annotations/Interaction with annotations/package.json index 234bf48..b98fdc1 100644 --- a/Annotations/Interaction with annotations/package.json +++ b/Annotations/Interaction with annotations/package.json @@ -9,8 +9,13 @@ }, "dependencies": { "@syncfusion/ej2-vue-pdfviewer": "*", + "buffer": "^6.0.3", "core-js": "^3.8.3", - "vue": "^2.7.16" + "crypto-browserify": "^3.12.0", + "stream-browserify": "^3.0.0", + "util": "^0.12.5", + "vm-browserify": "^1.1.2", + "vue": "^3.2.13" }, "devDependencies": { "@babel/core": "^7.12.16", @@ -19,8 +24,7 @@ "@vue/cli-plugin-eslint": "~5.0.0", "@vue/cli-service": "~5.0.0", "eslint": "^7.32.0", - "eslint-plugin-vue": "^8.0.3", - "vue-template-compiler": "^2.7.16" + "eslint-plugin-vue": "^8.0.3" }, "eslintConfig": { "root": true, @@ -39,6 +43,7 @@ "browserslist": [ "> 1%", "last 2 versions", - "not dead" + "not dead", + "not ie 11" ] } diff --git a/Annotations/Interaction with annotations/src/App.vue b/Annotations/Interaction with annotations/src/App.vue index d95c924..65ed840 100644 --- a/Annotations/Interaction with annotations/src/App.vue +++ b/Annotations/Interaction with annotations/src/App.vue @@ -55,7 +55,7 @@ export default { pageNumber: 1, width : 200, height:60, - path: '[{\"command\":\"M\",\"x\":244.83334350585938,\"y\":982.0000305175781},{\"command\":\"L\",\"x\":244.83334350585938,\"y\":982.0000305175781},{\"command\":\"L\",\"x\":250.83334350585938,\"y\":953.3333435058594},{\"command\":\"L\",\"x\":252.83334350585938,\"y\":946.0000305175781},{\"command\":\"L\",\"x\":254.16668701171875,\"y\":940.6667175292969},{\"command\":\"L\",\"x\":256.8333435058594,\"y\":931.3333435058594},{\"command\":\"L\",\"x\":257.5,\"y\":929.3333435058594},{\"command\":\"L\",\"x\":258.8333435058594,\"y\":926.6667175292969},{\"command\":\"L\",\"x\":259.5,\"y\":924.0000305175781},{\"command\":\"L\",\"x\":259.5,\"y\":922.6667175292969},{\"command\":\"L\",\"x\":258.8333435058594,\"y\":922.0000305175781},{\"command\":\"L\",\"x\":258.16668701171875,\"y\":922.0000305175781},{\"command\":\"L\",\"x\":256.8333435058594,\"y\":922.0000305175781},{\"command\":\"L\",\"x\":256.16668701171875,\"y\":922.6667175292969},{\"command\":\"L\",\"x\":254.83334350585938,\"y\":923.3333435058594},{\"command\":\"L\",\"x\":254.16668701171875,\"y\":923.3333435058594},{\"command\":\"L\",\"x\":253.5,\"y\":923.3333435058594},{\"command\":\"L\",\"x\":252.83334350585938,\"y\":925.3333435058594},{\"command\":\"L\",\"x\":252.83334350585938,\"y\":927.3333435058594},{\"command\":\"L\",\"x\":252.83334350585938,\"y\":936.0000305175781},{\"command\":\"L\",\"x\":253.5,\"y\":940.6667175292969},{\"command\":\"L\",\"x\":254.83334350585938,\"y\":944.6667175292969},{\"command\":\"L\",\"x\":260.16668701171875,\"y\":952.0000305175781},{\"command\":\"L\",\"x\":264.16668701171875,\"y\":954.0000305175781},{\"command\":\"L\",\"x\":274.16668701171875,\"y\":958.6667175292969},{\"command\":\"L\",\"x\":278.16668701171875,\"y\":960.0000305175781},{\"command\":\"L\",\"x\":281.5,\"y\":961.3333435058594},{\"command\":\"L\",\"x\":285.5,\"y\":964.6667175292969},{\"command\":\"L\",\"x\":286.8333740234375,\"y\":967.3333435058594},{\"command\":\"L\",\"x\":286.8333740234375,\"y\":970.0000305175781},{\"command\":\"L\",\"x\":282.8333740234375,\"y\":978.6667175292969},{\"command\":\"L\",\"x\":278.16668701171875,\"y\":983.3333435058594},{\"command\":\"L\",\"x\":266.16668701171875,\"y\":991.3333435058594},{\"command\":\"L\",\"x\":259.5,\"y\":993.3333435058594},{\"command\":\"L\",\"x\":252.16668701171875,\"y\":994.0000305175781},{\"command\":\"L\",\"x\":240.83334350585938,\"y\":991.3333435058594},{\"command\":\"L\",\"x\":236.16668701171875,\"y\":988.6667175292969},{\"command\":\"L\",\"x\":230.16668701171875,\"y\":982.6667175292969},{\"command\":\"L\",\"x\":228.83334350585938,\"y\":980.6667175292969},{\"command\":\"L\",\"x\":228.16668701171875,\"y\":978.6667175292969},{\"command\":\"L\",\"x\":228.83334350585938,\"y\":974.6667175292969},{\"command\":\"L\",\"x\":230.16668701171875,\"y\":973.3333435058594},{\"command\":\"L\",\"x\":236.16668701171875,\"y\":971.3333435058594},{\"command\":\"L\",\"x\":240.83334350585938,\"y\":971.3333435058594},{\"command\":\"L\",\"x\":246.16668701171875,\"y\":972.0000305175781},{\"command\":\"L\",\"x\":257.5,\"y\":974.6667175292969},{\"command\":\"L\",\"x\":262.8333435058594,\"y\":976.0000305175781},{\"command\":\"L\",\"x\":269.5,\"y\":977.3333435058594},{\"command\":\"L\",\"x\":276.16668701171875,\"y\":978.6667175292969},{\"command\":\"L\",\"x\":279.5,\"y\":978.0000305175781},{\"command\":\"L\",\"x\":285.5,\"y\":976.6667175292969},{\"command\":\"L\",\"x\":288.16668701171875,\"y\":974.6667175292969},{\"command\":\"L\",\"x\":292.8333740234375,\"y\":969.3333435058594},{\"command\":\"L\",\"x\":293.5,\"y\":966.6667175292969},{\"command\":\"L\",\"x\":294.16668701171875,\"y\":964.0000305175781},{\"command\":\"L\",\"x\":293.5,\"y\":960.0000305175781},{\"command\":\"L\",\"x\":293.5,\"y\":958.0000305175781},{\"command\":\"L\",\"x\":292.8333740234375,\"y\":956.6667175292969},{\"command\":\"L\",\"x\":291.5,\"y\":954.6667175292969},{\"command\":\"L\",\"x\":291.5,\"y\":954.0000305175781},{\"command\":\"L\",\"x\":291.5,\"y\":953.3333435058594},{\"command\":\"L\",\"x\":291.5,\"y\":954.0000305175781},{\"command\":\"L\",\"x\":292.16668701171875,\"y\":954.6667175292969},{\"command\":\"L\",\"x\":292.8333740234375,\"y\":956.0000305175781},{\"command\":\"L\",\"x\":294.16668701171875,\"y\":961.3333435058594},{\"command\":\"L\",\"x\":295.5,\"y\":964.6667175292969},{\"command\":\"L\",\"x\":297.5,\"y\":969.3333435058594},{\"command\":\"L\",\"x\":298.8333740234375,\"y\":970.6667175292969},{\"command\":\"L\",\"x\":301.5,\"y\":970.0000305175781},{\"command\":\"L\",\"x\":304.16668701171875,\"y\":968.6667175292969},{\"command\":\"L\",\"x\":305.5,\"y\":966.0000305175781},{\"command\":\"L\",\"x\":308.8333740234375,\"y\":960.0000305175781},{\"command\":\"L\",\"x\":310.16668701171875,\"y\":957.3333435058594},{\"command\":\"L\",\"x\":310.8333740234375,\"y\":956.0000305175781},{\"command\":\"L\",\"x\":310.8333740234375,\"y\":954.6667175292969},{\"command\":\"L\",\"x\":310.8333740234375,\"y\":954.0000305175781},{\"command\":\"L\",\"x\":311.5,\"y\":956.0000305175781},{\"command\":\"L\",\"x\":312.8333740234375,\"y\":959.3333435058594},{\"command\":\"L\",\"x\":316.16668701171875,\"y\":968.0000305175781},{\"command\":\"L\",\"x\":317.5,\"y\":972.6667175292969},{\"command\":\"L\",\"x\":318.16668701171875,\"y\":977.3333435058594},{\"command\":\"L\",\"x\":319.5,\"y\":983.3333435058594},{\"command\":\"L\",\"x\":319.5,\"y\":986.0000305175781},{\"command\":\"L\",\"x\":319.5,\"y\":988.0000305175781},{\"command\":\"L\",\"x\":318.8333740234375,\"y\":988.0000305175781},{\"command\":\"L\",\"x\":318.16668701171875,\"y\":988.6667175292969},{\"command\":\"L\",\"x\":316.16668701171875,\"y\":987.3333435058594},{\"command\":\"L\",\"x\":314.8333740234375,\"y\":985.3333435058594},{\"command\":\"L\",\"x\":314.16668701171875,\"y\":980.6667175292969},{\"command\":\"L\",\"x\":314.8333740234375,\"y\":974.6667175292969},{\"command\":\"L\",\"x\":316.16668701171875,\"y\":969.3333435058594},{\"command\":\"L\",\"x\":319.5,\"y\":960.6667175292969},{\"command\":\"L\",\"x\":320.16668701171875,\"y\":957.3333435058594},{\"command\":\"L\",\"x\":321.5,\"y\":955.3333435058594},{\"command\":\"L\",\"x\":322.16668701171875,\"y\":953.3333435058594},{\"command\":\"L\",\"x\":322.8333740234375,\"y\":952.6667175292969},{\"command\":\"L\",\"x\":324.16668701171875,\"y\":952.6667175292969},{\"command\":\"L\",\"x\":324.8333740234375,\"y\":953.3333435058594},{\"command\":\"L\",\"x\":326.8333740234375,\"y\":956.0000305175781},{\"command\":\"L\",\"x\":328.16668701171875,\"y\":958.0000305175781},{\"command\":\"L\",\"x\":328.8333740234375,\"y\":960.0000305175781},{\"command\":\"L\",\"x\":329.5,\"y\":962.0000305175781},{\"command\":\"L\",\"x\":330.16668701171875,\"y\":962.0000305175781},{\"command\":\"L\",\"x\":330.16668701171875,\"y\":962.6667175292969},{\"command\":\"L\",\"x\":330.16668701171875,\"y\":962.0000305175781},{\"command\":\"L\",\"x\":330.8333740234375,\"y\":960.0000305175781},{\"command\":\"L\",\"x\":331.5,\"y\":956.0000305175781},{\"command\":\"L\",\"x\":332.8333740234375,\"y\":952.0000305175781},{\"command\":\"L\",\"x\":333.5,\"y\":950.0000305175781},{\"command\":\"L\",\"x\":334.8333740234375,\"y\":948.6667175292969},{\"command\":\"L\",\"x\":335.5,\"y\":948.6667175292969},{\"command\":\"L\",\"x\":336.16668701171875,\"y\":948.6667175292969},{\"command\":\"L\",\"x\":337.5,\"y\":950.6667175292969},{\"command\":\"L\",\"x\":338.8333740234375,\"y\":952.0000305175781},{\"command\":\"L\",\"x\":340.8333740234375,\"y\":954.0000305175781},{\"command\":\"L\",\"x\":341.5,\"y\":954.0000305175781},{\"command\":\"L\",\"x\":342.8333740234375,\"y\":954.6667175292969},{\"command\":\"L\",\"x\":344.8333740234375,\"y\":954.0000305175781},{\"command\":\"L\",\"x\":346.8333740234375,\"y\":952.6667175292969},{\"command\":\"L\",\"x\":349.5,\"y\":949.3333435058594},{\"command\":\"L\",\"x\":350.8333740234375,\"y\":948.0000305175781},{\"command\":\"L\",\"x\":351.5,\"y\":946.6667175292969},{\"command\":\"L\",\"x\":352.8333740234375,\"y\":944.0000305175781},{\"command\":\"L\",\"x\":352.8333740234375,\"y\":943.3333435058594},{\"command\":\"L\",\"x\":354.16668701171875,\"y\":942.0000305175781},{\"command\":\"L\",\"x\":354.8333740234375,\"y\":942.0000305175781},{\"command\":\"L\",\"x\":354.8333740234375,\"y\":942.6667175292969},{\"command\":\"L\",\"x\":354.16668701171875,\"y\":943.3333435058594},{\"command\":\"L\",\"x\":354.16668701171875,\"y\":946.6667175292969},{\"command\":\"L\",\"x\":354.16668701171875,\"y\":950.0000305175781},{\"command\":\"L\",\"x\":355.5,\"y\":956.0000305175781},{\"command\":\"L\",\"x\":356.16668701171875,\"y\":957.3333435058594},{\"command\":\"L\",\"x\":358.16668701171875,\"y\":959.3333435058594},{\"command\":\"L\",\"x\":360.16668701171875,\"y\":958.0000305175781},{\"command\":\"L\",\"x\":364.16668701171875,\"y\":956.0000305175781},{\"command\":\"L\",\"x\":370.8333740234375,\"y\":948.6667175292969},{\"command\":\"L\",\"x\":373.5,\"y\":943.3333435058594},{\"command\":\"L\",\"x\":375.5,\"y\":937.3333435058594},{\"command\":\"L\",\"x\":376.16668701171875,\"y\":933.3333435058594},{\"command\":\"L\",\"x\":376.8333740234375,\"y\":931.3333435058594},{\"command\":\"L\",\"x\":376.8333740234375,\"y\":930.0000305175781},{\"command\":\"L\",\"x\":376.8333740234375,\"y\":929.3333435058594},{\"command\":\"L\",\"x\":376.16668701171875,\"y\":930.0000305175781},{\"command\":\"L\",\"x\":375.5,\"y\":932.0000305175781},{\"command\":\"L\",\"x\":375.5,\"y\":937.3333435058594},{\"command\":\"L\",\"x\":374.8333740234375,\"y\":953.3333435058594},{\"command\":\"L\",\"x\":374.8333740234375,\"y\":960.6667175292969},{\"command\":\"L\",\"x\":375.5,\"y\":966.0000305175781},{\"command\":\"L\",\"x\":377.5,\"y\":974.6667175292969},{\"command\":\"L\",\"x\":378.16668701171875,\"y\":977.3333435058594},{\"command\":\"L\",\"x\":380.8333740234375,\"y\":981.3333435058594},{\"command\":\"L\",\"x\":382.16668701171875,\"y\":982.6667175292969},{\"command\":\"L\",\"x\":383.5,\"y\":982.6667175292969},{\"command\":\"L\",\"x\":387.5,\"y\":982.6667175292969},{\"command\":\"L\",\"x\":389.5,\"y\":980.6667175292969},{\"command\":\"L\",\"x\":392.16668701171875,\"y\":976.6667175292969},{\"command\":\"L\",\"x\":392.8333740234375,\"y\":973.3333435058594},{\"command\":\"L\",\"x\":392.16668701171875,\"y\":970.0000305175781},{\"command\":\"L\",\"x\":388.8333740234375,\"y\":965.3333435058594},{\"command\":\"L\",\"x\":385.5,\"y\":964.0000305175781},{\"command\":\"L\",\"x\":382.8333740234375,\"y\":964.0000305175781},{\"command\":\"L\",\"x\":377.5,\"y\":964.0000305175781},{\"command\":\"L\",\"x\":375.5,\"y\":964.6667175292969},{\"command\":\"L\",\"x\":373.5,\"y\":965.3333435058594},{\"command\":\"L\",\"x\":374.8333740234375,\"y\":963.3333435058594},{\"command\":\"L\",\"x\":376.8333740234375,\"y\":961.3333435058594},{\"command\":\"L\",\"x\":382.16668701171875,\"y\":956.0000305175781},{\"command\":\"L\",\"x\":384.16668701171875,\"y\":953.3333435058594},{\"command\":\"L\",\"x\":387.5,\"y\":950.6667175292969},{\"command\":\"L\",\"x\":388.16668701171875,\"y\":952.0000305175781},{\"command\":\"L\",\"x\":388.16668701171875,\"y\":952.6667175292969},{\"command\":\"L\",\"x\":388.8333740234375,\"y\":954.0000305175781},{\"command\":\"L\",\"x\":388.8333740234375,\"y\":954.6667175292969},{\"command\":\"L\",\"x\":389.5,\"y\":959.3333435058594},{\"command\":\"L\",\"x\":389.5,\"y\":960.6667175292969},{\"command\":\"L\",\"x\":390.16668701171875,\"y\":961.3333435058594},{\"command\":\"L\",\"x\":390.8333740234375,\"y\":960.6667175292969},{\"command\":\"L\",\"x\":393.5,\"y\":958.0000305175781},{\"command\":\"L\",\"x\":396.8333740234375,\"y\":954.0000305175781},{\"command\":\"L\",\"x\":398.16668701171875,\"y\":952.0000305175781},{\"command\":\"L\",\"x\":400.16668701171875,\"y\":949.3333435058594},{\"command\":\"L\",\"x\":400.16668701171875,\"y\":948.6667175292969},{\"command\":\"L\",\"x\":400.8333740234375,\"y\":948.0000305175781},{\"command\":\"L\",\"x\":400.8333740234375,\"y\":947.3333435058594},{\"command\":\"L\",\"x\":401.5,\"y\":948.0000305175781},{\"command\":\"L\",\"x\":402.16668701171875,\"y\":949.3333435058594},{\"command\":\"L\",\"x\":403.5,\"y\":950.6667175292969},{\"command\":\"L\",\"x\":404.8333740234375,\"y\":953.3333435058594},{\"command\":\"L\",\"x\":406.16668701171875,\"y\":954.0000305175781},{\"command\":\"L\",\"x\":407.5,\"y\":954.0000305175781},{\"command\":\"L\",\"x\":410.16668701171875,\"y\":952.0000305175781},{\"command\":\"L\",\"x\":412.16668701171875,\"y\":949.3333435058594},{\"command\":\"L\",\"x\":414.16668701171875,\"y\":944.6667175292969},{\"command\":\"L\",\"x\":414.16668701171875,\"y\":942.0000305175781},{\"command\":\"L\",\"x\":414.16668701171875,\"y\":940.6667175292969},{\"command\":\"L\",\"x\":414.16668701171875,\"y\":938.6667175292969},{\"command\":\"L\",\"x\":414.16668701171875,\"y\":938.0000305175781},{\"command\":\"L\",\"x\":415.5,\"y\":939.3333435058594},{\"command\":\"L\",\"x\":418.8333740234375,\"y\":942.6667175292969},{\"command\":\"L\",\"x\":420.16668701171875,\"y\":945.3333435058594},{\"command\":\"L\",\"x\":421.5,\"y\":946.6667175292969},{\"command\":\"L\",\"x\":422.8333740234375,\"y\":950.0000305175781},{\"command\":\"L\",\"x\":423.5,\"y\":950.6667175292969},{\"command\":\"L\",\"x\":423.5,\"y\":953.3333435058594},{\"command\":\"L\",\"x\":422.8333740234375,\"y\":954.0000305175781},{\"command\":\"L\",\"x\":421.5,\"y\":955.3333435058594},{\"command\":\"L\",\"x\":421.5,\"y\":956.0000305175781},{\"command\":\"L\",\"x\":422.16668701171875,\"y\":954.6667175292969},{\"command\":\"L\",\"x\":422.8333740234375,\"y\":954.0000305175781},{\"command\":\"L\",\"x\":424.8333740234375,\"y\":950.6667175292969},{\"command\":\"L\",\"x\":425.5,\"y\":948.6667175292969},{\"command\":\"L\",\"x\":428.16668701171875,\"y\":945.3333435058594},{\"command\":\"L\",\"x\":428.8333740234375,\"y\":943.3333435058594},{\"command\":\"L\",\"x\":428.8333740234375,\"y\":942.6667175292969},{\"command\":\"L\",\"x\":428.8333740234375,\"y\":943.3333435058594},{\"command\":\"L\",\"x\":428.8333740234375,\"y\":945.3333435058594},{\"command\":\"L\",\"x\":428.8333740234375,\"y\":948.0000305175781},{\"command\":\"L\",\"x\":428.8333740234375,\"y\":950.0000305175781},{\"command\":\"L\",\"x\":429.5,\"y\":953.3333435058594},{\"command\":\"L\",\"x\":430.16668701171875,\"y\":953.3333435058594},{\"command\":\"L\",\"x\":432.8333740234375,\"y\":952.6667175292969},{\"command\":\"L\",\"x\":434.8333740234375,\"y\":950.6667175292969},{\"command\":\"L\",\"x\":437.5,\"y\":948.6667175292969},{\"command\":\"L\",\"x\":440.16668701171875,\"y\":944.6667175292969},{\"command\":\"L\",\"x\":441.5,\"y\":942.6667175292969},{\"command\":\"L\",\"x\":442.16668701171875,\"y\":942.0000305175781},{\"command\":\"L\",\"x\":442.8333740234375,\"y\":941.3333435058594},{\"command\":\"L\",\"x\":442.8333740234375,\"y\":942.0000305175781},{\"command\":\"L\",\"x\":442.8333740234375,\"y\":943.3333435058594},{\"command\":\"L\",\"x\":442.8333740234375,\"y\":944.6667175292969},{\"command\":\"L\",\"x\":442.8333740234375,\"y\":946.0000305175781},{\"command\":\"L\",\"x\":443.5,\"y\":949.3333435058594},{\"command\":\"L\",\"x\":444.16668701171875,\"y\":950.6667175292969},{\"command\":\"L\",\"x\":445.5,\"y\":950.6667175292969},{\"command\":\"L\",\"x\":447.5,\"y\":950.6667175292969},{\"command\":\"L\",\"x\":450.16668701171875,\"y\":948.6667175292969},{\"command\":\"L\",\"x\":452.16668701171875,\"y\":945.3333435058594},{\"command\":\"L\",\"x\":453.5,\"y\":942.6667175292969},{\"command\":\"L\",\"x\":452.8333740234375,\"y\":938.6667175292969},{\"command\":\"L\",\"x\":452.16668701171875,\"y\":937.3333435058594},{\"command\":\"L\",\"x\":450.8333740234375,\"y\":936.6667175292969},{\"command\":\"L\",\"x\":448.8333740234375,\"y\":936.0000305175781},{\"command\":\"L\",\"x\":447.5,\"y\":936.6667175292969},{\"command\":\"L\",\"x\":446.16668701171875,\"y\":937.3333435058594},{\"command\":\"L\",\"x\":445.5,\"y\":938.6667175292969},{\"command\":\"L\",\"x\":445.5,\"y\":939.3333435058594},{\"command\":\"L\",\"x\":446.16668701171875,\"y\":939.3333435058594},{\"command\":\"L\",\"x\":446.8333740234375,\"y\":939.3333435058594},{\"command\":\"L\",\"x\":452.16668701171875,\"y\":937.3333435058594},{\"command\":\"L\",\"x\":454.8333740234375,\"y\":936.6667175292969},{\"command\":\"L\",\"x\":456.8333740234375,\"y\":936.0000305175781},{\"command\":\"L\",\"x\":459.5,\"y\":936.6667175292969},{\"command\":\"L\",\"x\":460.8333740234375,\"y\":937.3333435058594},{\"command\":\"L\",\"x\":461.5,\"y\":938.6667175292969},{\"command\":\"L\",\"x\":462.16668701171875,\"y\":942.0000305175781},{\"command\":\"L\",\"x\":462.16668701171875,\"y\":942.6667175292969},{\"command\":\"L\",\"x\":462.16668701171875,\"y\":944.0000305175781},{\"command\":\"L\",\"x\":462.16668701171875,\"y\":943.3333435058594},{\"command\":\"L\",\"x\":462.16668701171875,\"y\":942.6667175292969},{\"command\":\"L\",\"x\":462.16668701171875,\"y\":941.3333435058594},{\"command\":\"L\",\"x\":462.8333740234375,\"y\":938.6667175292969},{\"command\":\"L\",\"x\":464.16668701171875,\"y\":935.3333435058594},{\"command\":\"L\",\"x\":465.5,\"y\":933.3333435058594},{\"command\":\"L\",\"x\":466.16668701171875,\"y\":932.6667175292969},{\"command\":\"L\",\"x\":467.5,\"y\":933.3333435058594},{\"command\":\"L\",\"x\":469.5,\"y\":935.3333435058594},{\"command\":\"L\",\"x\":470.16668701171875,\"y\":938.6667175292969},{\"command\":\"L\",\"x\":472.8333740234375,\"y\":943.3333435058594},{\"command\":\"L\",\"x\":472.8333740234375,\"y\":944.6667175292969},{\"command\":\"L\",\"x\":474.16668701171875,\"y\":944.6667175292969},{\"command\":\"L\",\"x\":475.5,\"y\":944.0000305175781},{\"command\":\"L\",\"x\":478.16668701171875,\"y\":941.3333435058594},{\"command\":\"L\",\"x\":481.5,\"y\":937.3333435058594},{\"command\":\"L\",\"x\":484.8333740234375,\"y\":934.0000305175781},{\"command\":\"L\",\"x\":488.8333740234375,\"y\":929.3333435058594},{\"command\":\"L\",\"x\":489.5,\"y\":928.0000305175781}]' + path: "[{\"command\":\"M\",\"x\":244.83334350585938,\"y\":982.0000305175781},{\"command\":\"L\",\"x\":244.83334350585938,\"y\":982.0000305175781},{\"command\":\"L\",\"x\":250.83334350585938,\"y\":953.3333435058594},{\"command\":\"L\",\"x\":252.83334350585938,\"y\":946.0000305175781},{\"command\":\"L\",\"x\":254.16668701171875,\"y\":940.6667175292969},{\"command\":\"L\",\"x\":256.8333435058594,\"y\":931.3333435058594},{\"command\":\"L\",\"x\":257.5,\"y\":929.3333435058594},{\"command\":\"L\",\"x\":258.8333435058594,\"y\":926.6667175292969},{\"command\":\"L\",\"x\":259.5,\"y\":924.0000305175781},{\"command\":\"L\",\"x\":259.5,\"y\":922.6667175292969},{\"command\":\"L\",\"x\":258.8333435058594,\"y\":922.0000305175781},{\"command\":\"L\",\"x\":258.16668701171875,\"y\":922.0000305175781},{\"command\":\"L\",\"x\":256.8333435058594,\"y\":922.0000305175781},{\"command\":\"L\",\"x\":256.16668701171875,\"y\":922.6667175292969},{\"command\":\"L\",\"x\":254.83334350585938,\"y\":923.3333435058594},{\"command\":\"L\",\"x\":254.16668701171875,\"y\":923.3333435058594},{\"command\":\"L\",\"x\":253.5,\"y\":923.3333435058594},{\"command\":\"L\",\"x\":252.83334350585938,\"y\":925.3333435058594},{\"command\":\"L\",\"x\":252.83334350585938,\"y\":927.3333435058594},{\"command\":\"L\",\"x\":252.83334350585938,\"y\":936.0000305175781},{\"command\":\"L\",\"x\":253.5,\"y\":940.6667175292969},{\"command\":\"L\",\"x\":254.83334350585938,\"y\":944.6667175292969},{\"command\":\"L\",\"x\":260.16668701171875,\"y\":952.0000305175781},{\"command\":\"L\",\"x\":264.16668701171875,\"y\":954.0000305175781},{\"command\":\"L\",\"x\":274.16668701171875,\"y\":958.6667175292969},{\"command\":\"L\",\"x\":278.16668701171875,\"y\":960.0000305175781},{\"command\":\"L\",\"x\":281.5,\"y\":961.3333435058594},{\"command\":\"L\",\"x\":285.5,\"y\":964.6667175292969},{\"command\":\"L\",\"x\":286.8333740234375,\"y\":967.3333435058594},{\"command\":\"L\",\"x\":286.8333740234375,\"y\":970.0000305175781},{\"command\":\"L\",\"x\":282.8333740234375,\"y\":978.6667175292969},{\"command\":\"L\",\"x\":278.16668701171875,\"y\":983.3333435058594},{\"command\":\"L\",\"x\":266.16668701171875,\"y\":991.3333435058594},{\"command\":\"L\",\"x\":259.5,\"y\":993.3333435058594},{\"command\":\"L\",\"x\":252.16668701171875,\"y\":994.0000305175781},{\"command\":\"L\",\"x\":240.83334350585938,\"y\":991.3333435058594},{\"command\":\"L\",\"x\":236.16668701171875,\"y\":988.6667175292969},{\"command\":\"L\",\"x\":230.16668701171875,\"y\":982.6667175292969},{\"command\":\"L\",\"x\":228.83334350585938,\"y\":980.6667175292969},{\"command\":\"L\",\"x\":228.16668701171875,\"y\":978.6667175292969},{\"command\":\"L\",\"x\":228.83334350585938,\"y\":974.6667175292969},{\"command\":\"L\",\"x\":230.16668701171875,\"y\":973.3333435058594},{\"command\":\"L\",\"x\":236.16668701171875,\"y\":971.3333435058594},{\"command\":\"L\",\"x\":240.83334350585938,\"y\":971.3333435058594},{\"command\":\"L\",\"x\":246.16668701171875,\"y\":972.0000305175781},{\"command\":\"L\",\"x\":257.5,\"y\":974.6667175292969},{\"command\":\"L\",\"x\":262.8333435058594,\"y\":976.0000305175781},{\"command\":\"L\",\"x\":269.5,\"y\":977.3333435058594},{\"command\":\"L\",\"x\":276.16668701171875,\"y\":978.6667175292969},{\"command\":\"L\",\"x\":279.5,\"y\":978.0000305175781},{\"command\":\"L\",\"x\":285.5,\"y\":976.6667175292969},{\"command\":\"L\",\"x\":288.16668701171875,\"y\":974.6667175292969},{\"command\":\"L\",\"x\":292.8333740234375,\"y\":969.3333435058594},{\"command\":\"L\",\"x\":293.5,\"y\":966.6667175292969},{\"command\":\"L\",\"x\":294.16668701171875,\"y\":964.0000305175781},{\"command\":\"L\",\"x\":293.5,\"y\":960.0000305175781},{\"command\":\"L\",\"x\":293.5,\"y\":958.0000305175781},{\"command\":\"L\",\"x\":292.8333740234375,\"y\":956.6667175292969},{\"command\":\"L\",\"x\":291.5,\"y\":954.6667175292969},{\"command\":\"L\",\"x\":291.5,\"y\":954.0000305175781},{\"command\":\"L\",\"x\":291.5,\"y\":953.3333435058594},{\"command\":\"L\",\"x\":291.5,\"y\":954.0000305175781},{\"command\":\"L\",\"x\":292.16668701171875,\"y\":954.6667175292969},{\"command\":\"L\",\"x\":292.8333740234375,\"y\":956.0000305175781},{\"command\":\"L\",\"x\":294.16668701171875,\"y\":961.3333435058594},{\"command\":\"L\",\"x\":295.5,\"y\":964.6667175292969},{\"command\":\"L\",\"x\":297.5,\"y\":969.3333435058594},{\"command\":\"L\",\"x\":298.8333740234375,\"y\":970.6667175292969},{\"command\":\"L\",\"x\":301.5,\"y\":970.0000305175781},{\"command\":\"L\",\"x\":304.16668701171875,\"y\":968.6667175292969},{\"command\":\"L\",\"x\":305.5,\"y\":966.0000305175781},{\"command\":\"L\",\"x\":308.8333740234375,\"y\":960.0000305175781},{\"command\":\"L\",\"x\":310.16668701171875,\"y\":957.3333435058594},{\"command\":\"L\",\"x\":310.8333740234375,\"y\":956.0000305175781},{\"command\":\"L\",\"x\":310.8333740234375,\"y\":954.6667175292969},{\"command\":\"L\",\"x\":310.8333740234375,\"y\":954.0000305175781},{\"command\":\"L\",\"x\":311.5,\"y\":956.0000305175781},{\"command\":\"L\",\"x\":312.8333740234375,\"y\":959.3333435058594},{\"command\":\"L\",\"x\":316.16668701171875,\"y\":968.0000305175781},{\"command\":\"L\",\"x\":317.5,\"y\":972.6667175292969},{\"command\":\"L\",\"x\":318.16668701171875,\"y\":977.3333435058594},{\"command\":\"L\",\"x\":319.5,\"y\":983.3333435058594},{\"command\":\"L\",\"x\":319.5,\"y\":986.0000305175781},{\"command\":\"L\",\"x\":319.5,\"y\":988.0000305175781},{\"command\":\"L\",\"x\":318.8333740234375,\"y\":988.0000305175781},{\"command\":\"L\",\"x\":318.16668701171875,\"y\":988.6667175292969},{\"command\":\"L\",\"x\":316.16668701171875,\"y\":987.3333435058594},{\"command\":\"L\",\"x\":314.8333740234375,\"y\":985.3333435058594},{\"command\":\"L\",\"x\":314.16668701171875,\"y\":980.6667175292969},{\"command\":\"L\",\"x\":314.8333740234375,\"y\":974.6667175292969},{\"command\":\"L\",\"x\":316.16668701171875,\"y\":969.3333435058594},{\"command\":\"L\",\"x\":319.5,\"y\":960.6667175292969},{\"command\":\"L\",\"x\":320.16668701171875,\"y\":957.3333435058594},{\"command\":\"L\",\"x\":321.5,\"y\":955.3333435058594},{\"command\":\"L\",\"x\":322.16668701171875,\"y\":953.3333435058594},{\"command\":\"L\",\"x\":322.8333740234375,\"y\":952.6667175292969},{\"command\":\"L\",\"x\":324.16668701171875,\"y\":952.6667175292969},{\"command\":\"L\",\"x\":324.8333740234375,\"y\":953.3333435058594},{\"command\":\"L\",\"x\":326.8333740234375,\"y\":956.0000305175781},{\"command\":\"L\",\"x\":328.16668701171875,\"y\":958.0000305175781},{\"command\":\"L\",\"x\":328.8333740234375,\"y\":960.0000305175781},{\"command\":\"L\",\"x\":329.5,\"y\":962.0000305175781},{\"command\":\"L\",\"x\":330.16668701171875,\"y\":962.0000305175781},{\"command\":\"L\",\"x\":330.16668701171875,\"y\":962.6667175292969},{\"command\":\"L\",\"x\":330.16668701171875,\"y\":962.0000305175781},{\"command\":\"L\",\"x\":330.8333740234375,\"y\":960.0000305175781},{\"command\":\"L\",\"x\":331.5,\"y\":956.0000305175781},{\"command\":\"L\",\"x\":332.8333740234375,\"y\":952.0000305175781},{\"command\":\"L\",\"x\":333.5,\"y\":950.0000305175781},{\"command\":\"L\",\"x\":334.8333740234375,\"y\":948.6667175292969},{\"command\":\"L\",\"x\":335.5,\"y\":948.6667175292969},{\"command\":\"L\",\"x\":336.16668701171875,\"y\":948.6667175292969},{\"command\":\"L\",\"x\":337.5,\"y\":950.6667175292969},{\"command\":\"L\",\"x\":338.8333740234375,\"y\":952.0000305175781},{\"command\":\"L\",\"x\":340.8333740234375,\"y\":954.0000305175781},{\"command\":\"L\",\"x\":341.5,\"y\":954.0000305175781},{\"command\":\"L\",\"x\":342.8333740234375,\"y\":954.6667175292969},{\"command\":\"L\",\"x\":344.8333740234375,\"y\":954.0000305175781},{\"command\":\"L\",\"x\":346.8333740234375,\"y\":952.6667175292969},{\"command\":\"L\",\"x\":349.5,\"y\":949.3333435058594},{\"command\":\"L\",\"x\":350.8333740234375,\"y\":948.0000305175781},{\"command\":\"L\",\"x\":351.5,\"y\":946.6667175292969},{\"command\":\"L\",\"x\":352.8333740234375,\"y\":944.0000305175781},{\"command\":\"L\",\"x\":352.8333740234375,\"y\":943.3333435058594},{\"command\":\"L\",\"x\":354.16668701171875,\"y\":942.0000305175781},{\"command\":\"L\",\"x\":354.8333740234375,\"y\":942.0000305175781},{\"command\":\"L\",\"x\":354.8333740234375,\"y\":942.6667175292969},{\"command\":\"L\",\"x\":354.16668701171875,\"y\":943.3333435058594},{\"command\":\"L\",\"x\":354.16668701171875,\"y\":946.6667175292969},{\"command\":\"L\",\"x\":354.16668701171875,\"y\":950.0000305175781},{\"command\":\"L\",\"x\":355.5,\"y\":956.0000305175781},{\"command\":\"L\",\"x\":356.16668701171875,\"y\":957.3333435058594},{\"command\":\"L\",\"x\":358.16668701171875,\"y\":959.3333435058594},{\"command\":\"L\",\"x\":360.16668701171875,\"y\":958.0000305175781},{\"command\":\"L\",\"x\":364.16668701171875,\"y\":956.0000305175781},{\"command\":\"L\",\"x\":370.8333740234375,\"y\":948.6667175292969},{\"command\":\"L\",\"x\":373.5,\"y\":943.3333435058594},{\"command\":\"L\",\"x\":375.5,\"y\":937.3333435058594},{\"command\":\"L\",\"x\":376.16668701171875,\"y\":933.3333435058594},{\"command\":\"L\",\"x\":376.8333740234375,\"y\":931.3333435058594},{\"command\":\"L\",\"x\":376.8333740234375,\"y\":930.0000305175781},{\"command\":\"L\",\"x\":376.8333740234375,\"y\":929.3333435058594},{\"command\":\"L\",\"x\":376.16668701171875,\"y\":930.0000305175781},{\"command\":\"L\",\"x\":375.5,\"y\":932.0000305175781},{\"command\":\"L\",\"x\":375.5,\"y\":937.3333435058594},{\"command\":\"L\",\"x\":374.8333740234375,\"y\":953.3333435058594},{\"command\":\"L\",\"x\":374.8333740234375,\"y\":960.6667175292969},{\"command\":\"L\",\"x\":375.5,\"y\":966.0000305175781},{\"command\":\"L\",\"x\":377.5,\"y\":974.6667175292969},{\"command\":\"L\",\"x\":378.16668701171875,\"y\":977.3333435058594},{\"command\":\"L\",\"x\":380.8333740234375,\"y\":981.3333435058594},{\"command\":\"L\",\"x\":382.16668701171875,\"y\":982.6667175292969},{\"command\":\"L\",\"x\":383.5,\"y\":982.6667175292969},{\"command\":\"L\",\"x\":387.5,\"y\":982.6667175292969},{\"command\":\"L\",\"x\":389.5,\"y\":980.6667175292969},{\"command\":\"L\",\"x\":392.16668701171875,\"y\":976.6667175292969},{\"command\":\"L\",\"x\":392.8333740234375,\"y\":973.3333435058594},{\"command\":\"L\",\"x\":392.16668701171875,\"y\":970.0000305175781},{\"command\":\"L\",\"x\":388.8333740234375,\"y\":965.3333435058594},{\"command\":\"L\",\"x\":385.5,\"y\":964.0000305175781},{\"command\":\"L\",\"x\":382.8333740234375,\"y\":964.0000305175781},{\"command\":\"L\",\"x\":377.5,\"y\":964.0000305175781},{\"command\":\"L\",\"x\":375.5,\"y\":964.6667175292969},{\"command\":\"L\",\"x\":373.5,\"y\":965.3333435058594},{\"command\":\"L\",\"x\":374.8333740234375,\"y\":963.3333435058594},{\"command\":\"L\",\"x\":376.8333740234375,\"y\":961.3333435058594},{\"command\":\"L\",\"x\":382.16668701171875,\"y\":956.0000305175781},{\"command\":\"L\",\"x\":384.16668701171875,\"y\":953.3333435058594},{\"command\":\"L\",\"x\":387.5,\"y\":950.6667175292969},{\"command\":\"L\",\"x\":388.16668701171875,\"y\":952.0000305175781},{\"command\":\"L\",\"x\":388.16668701171875,\"y\":952.6667175292969},{\"command\":\"L\",\"x\":388.8333740234375,\"y\":954.0000305175781},{\"command\":\"L\",\"x\":388.8333740234375,\"y\":954.6667175292969},{\"command\":\"L\",\"x\":389.5,\"y\":959.3333435058594},{\"command\":\"L\",\"x\":389.5,\"y\":960.6667175292969},{\"command\":\"L\",\"x\":390.16668701171875,\"y\":961.3333435058594},{\"command\":\"L\",\"x\":390.8333740234375,\"y\":960.6667175292969},{\"command\":\"L\",\"x\":393.5,\"y\":958.0000305175781},{\"command\":\"L\",\"x\":396.8333740234375,\"y\":954.0000305175781},{\"command\":\"L\",\"x\":398.16668701171875,\"y\":952.0000305175781},{\"command\":\"L\",\"x\":400.16668701171875,\"y\":949.3333435058594},{\"command\":\"L\",\"x\":400.16668701171875,\"y\":948.6667175292969},{\"command\":\"L\",\"x\":400.8333740234375,\"y\":948.0000305175781},{\"command\":\"L\",\"x\":400.8333740234375,\"y\":947.3333435058594},{\"command\":\"L\",\"x\":401.5,\"y\":948.0000305175781},{\"command\":\"L\",\"x\":402.16668701171875,\"y\":949.3333435058594},{\"command\":\"L\",\"x\":403.5,\"y\":950.6667175292969},{\"command\":\"L\",\"x\":404.8333740234375,\"y\":953.3333435058594},{\"command\":\"L\",\"x\":406.16668701171875,\"y\":954.0000305175781},{\"command\":\"L\",\"x\":407.5,\"y\":954.0000305175781},{\"command\":\"L\",\"x\":410.16668701171875,\"y\":952.0000305175781},{\"command\":\"L\",\"x\":412.16668701171875,\"y\":949.3333435058594},{\"command\":\"L\",\"x\":414.16668701171875,\"y\":944.6667175292969},{\"command\":\"L\",\"x\":414.16668701171875,\"y\":942.0000305175781},{\"command\":\"L\",\"x\":414.16668701171875,\"y\":940.6667175292969},{\"command\":\"L\",\"x\":414.16668701171875,\"y\":938.6667175292969},{\"command\":\"L\",\"x\":414.16668701171875,\"y\":938.0000305175781},{\"command\":\"L\",\"x\":415.5,\"y\":939.3333435058594},{\"command\":\"L\",\"x\":418.8333740234375,\"y\":942.6667175292969},{\"command\":\"L\",\"x\":420.16668701171875,\"y\":945.3333435058594},{\"command\":\"L\",\"x\":421.5,\"y\":946.6667175292969},{\"command\":\"L\",\"x\":422.8333740234375,\"y\":950.0000305175781},{\"command\":\"L\",\"x\":423.5,\"y\":950.6667175292969},{\"command\":\"L\",\"x\":423.5,\"y\":953.3333435058594},{\"command\":\"L\",\"x\":422.8333740234375,\"y\":954.0000305175781},{\"command\":\"L\",\"x\":421.5,\"y\":955.3333435058594},{\"command\":\"L\",\"x\":421.5,\"y\":956.0000305175781},{\"command\":\"L\",\"x\":422.16668701171875,\"y\":954.6667175292969},{\"command\":\"L\",\"x\":422.8333740234375,\"y\":954.0000305175781},{\"command\":\"L\",\"x\":424.8333740234375,\"y\":950.6667175292969},{\"command\":\"L\",\"x\":425.5,\"y\":948.6667175292969},{\"command\":\"L\",\"x\":428.16668701171875,\"y\":945.3333435058594},{\"command\":\"L\",\"x\":428.8333740234375,\"y\":943.3333435058594},{\"command\":\"L\",\"x\":428.8333740234375,\"y\":942.6667175292969},{\"command\":\"L\",\"x\":428.8333740234375,\"y\":943.3333435058594},{\"command\":\"L\",\"x\":428.8333740234375,\"y\":945.3333435058594},{\"command\":\"L\",\"x\":428.8333740234375,\"y\":948.0000305175781},{\"command\":\"L\",\"x\":428.8333740234375,\"y\":950.0000305175781},{\"command\":\"L\",\"x\":429.5,\"y\":953.3333435058594},{\"command\":\"L\",\"x\":430.16668701171875,\"y\":953.3333435058594},{\"command\":\"L\",\"x\":432.8333740234375,\"y\":952.6667175292969},{\"command\":\"L\",\"x\":434.8333740234375,\"y\":950.6667175292969},{\"command\":\"L\",\"x\":437.5,\"y\":948.6667175292969},{\"command\":\"L\",\"x\":440.16668701171875,\"y\":944.6667175292969},{\"command\":\"L\",\"x\":441.5,\"y\":942.6667175292969},{\"command\":\"L\",\"x\":442.16668701171875,\"y\":942.0000305175781},{\"command\":\"L\",\"x\":442.8333740234375,\"y\":941.3333435058594},{\"command\":\"L\",\"x\":442.8333740234375,\"y\":942.0000305175781},{\"command\":\"L\",\"x\":442.8333740234375,\"y\":943.3333435058594},{\"command\":\"L\",\"x\":442.8333740234375,\"y\":944.6667175292969},{\"command\":\"L\",\"x\":442.8333740234375,\"y\":946.0000305175781},{\"command\":\"L\",\"x\":443.5,\"y\":949.3333435058594},{\"command\":\"L\",\"x\":444.16668701171875,\"y\":950.6667175292969},{\"command\":\"L\",\"x\":445.5,\"y\":950.6667175292969},{\"command\":\"L\",\"x\":447.5,\"y\":950.6667175292969},{\"command\":\"L\",\"x\":450.16668701171875,\"y\":948.6667175292969},{\"command\":\"L\",\"x\":452.16668701171875,\"y\":945.3333435058594},{\"command\":\"L\",\"x\":453.5,\"y\":942.6667175292969},{\"command\":\"L\",\"x\":452.8333740234375,\"y\":938.6667175292969},{\"command\":\"L\",\"x\":452.16668701171875,\"y\":937.3333435058594},{\"command\":\"L\",\"x\":450.8333740234375,\"y\":936.6667175292969},{\"command\":\"L\",\"x\":448.8333740234375,\"y\":936.0000305175781},{\"command\":\"L\",\"x\":447.5,\"y\":936.6667175292969},{\"command\":\"L\",\"x\":446.16668701171875,\"y\":937.3333435058594},{\"command\":\"L\",\"x\":445.5,\"y\":938.6667175292969},{\"command\":\"L\",\"x\":445.5,\"y\":939.3333435058594},{\"command\":\"L\",\"x\":446.16668701171875,\"y\":939.3333435058594},{\"command\":\"L\",\"x\":446.8333740234375,\"y\":939.3333435058594},{\"command\":\"L\",\"x\":452.16668701171875,\"y\":937.3333435058594},{\"command\":\"L\",\"x\":454.8333740234375,\"y\":936.6667175292969},{\"command\":\"L\",\"x\":456.8333740234375,\"y\":936.0000305175781},{\"command\":\"L\",\"x\":459.5,\"y\":936.6667175292969},{\"command\":\"L\",\"x\":460.8333740234375,\"y\":937.3333435058594},{\"command\":\"L\",\"x\":461.5,\"y\":938.6667175292969},{\"command\":\"L\",\"x\":462.16668701171875,\"y\":942.0000305175781},{\"command\":\"L\",\"x\":462.16668701171875,\"y\":942.6667175292969},{\"command\":\"L\",\"x\":462.16668701171875,\"y\":944.0000305175781},{\"command\":\"L\",\"x\":462.16668701171875,\"y\":943.3333435058594},{\"command\":\"L\",\"x\":462.16668701171875,\"y\":942.6667175292969},{\"command\":\"L\",\"x\":462.16668701171875,\"y\":941.3333435058594},{\"command\":\"L\",\"x\":462.8333740234375,\"y\":938.6667175292969},{\"command\":\"L\",\"x\":464.16668701171875,\"y\":935.3333435058594},{\"command\":\"L\",\"x\":465.5,\"y\":933.3333435058594},{\"command\":\"L\",\"x\":466.16668701171875,\"y\":932.6667175292969},{\"command\":\"L\",\"x\":467.5,\"y\":933.3333435058594},{\"command\":\"L\",\"x\":469.5,\"y\":935.3333435058594},{\"command\":\"L\",\"x\":470.16668701171875,\"y\":938.6667175292969},{\"command\":\"L\",\"x\":472.8333740234375,\"y\":943.3333435058594},{\"command\":\"L\",\"x\":472.8333740234375,\"y\":944.6667175292969},{\"command\":\"L\",\"x\":474.16668701171875,\"y\":944.6667175292969},{\"command\":\"L\",\"x\":475.5,\"y\":944.0000305175781},{\"command\":\"L\",\"x\":478.16668701171875,\"y\":941.3333435058594},{\"command\":\"L\",\"x\":481.5,\"y\":937.3333435058594},{\"command\":\"L\",\"x\":484.8333740234375,\"y\":934.0000305175781},{\"command\":\"L\",\"x\":488.8333740234375,\"y\":929.3333435058594},{\"command\":\"L\",\"x\":489.5,\"y\":928.0000305175781}]" }); //Method to delete the annotation document.getElementById('set').addEventListener('click', ()=> { diff --git a/Annotations/Interaction with annotations/src/main.js b/Annotations/Interaction with annotations/src/main.js index 63eb05f..01433bc 100644 --- a/Annotations/Interaction with annotations/src/main.js +++ b/Annotations/Interaction with annotations/src/main.js @@ -1,8 +1,4 @@ -import Vue from 'vue' +import { createApp } from 'vue' import App from './App.vue' -Vue.config.productionTip = false - -new Vue({ - render: h => h(App), -}).$mount('#app') +createApp(App).mount('#app') diff --git a/Annotations/Interaction with annotations/vue.config.js b/Annotations/Interaction with annotations/vue.config.js new file mode 100644 index 0000000..910e297 --- /dev/null +++ b/Annotations/Interaction with annotations/vue.config.js @@ -0,0 +1,4 @@ +const { defineConfig } = require('@vue/cli-service') +module.exports = defineConfig({ + transpileDependencies: true +}) From db85b18b0d609acf06042d57982f3c14c2cb0727 Mon Sep 17 00:00:00 2001 From: Dharshana4609 Date: Fri, 18 Oct 2024 12:57:19 +0530 Subject: [PATCH 04/10] 915494: Resolved dependent bot issue in server backed getting started --- Getting Started Vue-3 - server-back/README.md | 25 ++++++++-- .../babel.config.js | 5 ++ .../index.html | 13 ----- .../jsconfig.json | 19 ++++++++ .../package.json | 48 +++++++++++++++---- .../src/App.vue | 2 +- .../vite.config.js | 7 --- .../vue.config.js | 4 ++ 8 files changed, 89 insertions(+), 34 deletions(-) create mode 100644 Getting Started Vue-3 - server-back/babel.config.js delete mode 100644 Getting Started Vue-3 - server-back/index.html create mode 100644 Getting Started Vue-3 - server-back/jsconfig.json delete mode 100644 Getting Started Vue-3 - server-back/vite.config.js create mode 100644 Getting Started Vue-3 - server-back/vue.config.js diff --git a/Getting Started Vue-3 - server-back/README.md b/Getting Started Vue-3 - server-back/README.md index e62e093..f527407 100644 --- a/Getting Started Vue-3 - server-back/README.md +++ b/Getting Started Vue-3 - server-back/README.md @@ -1,7 +1,24 @@ -# Vue 3 + Vite +# getting-started-server-back -This template should help get you started developing with Vue 3 in Vite. The template uses Vue 3 ` - - diff --git a/Getting Started Vue-3 - server-back/jsconfig.json b/Getting Started Vue-3 - server-back/jsconfig.json new file mode 100644 index 0000000..4aafc5f --- /dev/null +++ b/Getting Started Vue-3 - server-back/jsconfig.json @@ -0,0 +1,19 @@ +{ + "compilerOptions": { + "target": "es5", + "module": "esnext", + "baseUrl": "./", + "moduleResolution": "node", + "paths": { + "@/*": [ + "src/*" + ] + }, + "lib": [ + "esnext", + "dom", + "dom.iterable", + "scripthost" + ] + } +} diff --git a/Getting Started Vue-3 - server-back/package.json b/Getting Started Vue-3 - server-back/package.json index 7bad130..c933a39 100644 --- a/Getting Started Vue-3 - server-back/package.json +++ b/Getting Started Vue-3 - server-back/package.json @@ -1,19 +1,49 @@ { "name": "getting-started-server-back", + "version": "0.1.0", "private": true, - "version": "0.0.0", - "type": "module", "scripts": { - "dev": "vite", - "build": "vite build", - "preview": "vite preview" + "serve": "vue-cli-service serve", + "build": "vue-cli-service build", + "lint": "vue-cli-service lint" }, "dependencies": { "@syncfusion/ej2-vue-pdfviewer": "*", - "vue": "^3.2.47" + "buffer": "^6.0.3", + "core-js": "^3.8.3", + "crypto-browserify": "^3.12.0", + "stream-browserify": "^3.0.0", + "util": "^0.12.5", + "vm-browserify": "^1.1.2", + "vue": "^3.2.13" }, "devDependencies": { - "@vitejs/plugin-vue": "^4.1.0", - "vite": "^4.3.9" - } + "@babel/core": "^7.12.16", + "@babel/eslint-parser": "^7.12.16", + "@vue/cli-plugin-babel": "~5.0.0", + "@vue/cli-plugin-eslint": "~5.0.0", + "@vue/cli-service": "~5.0.0", + "eslint": "^7.32.0", + "eslint-plugin-vue": "^8.0.3" + }, + "eslintConfig": { + "root": true, + "env": { + "node": true + }, + "extends": [ + "plugin:vue/essential", + "eslint:recommended" + ], + "parserOptions": { + "parser": "@babel/eslint-parser" + }, + "rules": {} + }, + "browserslist": [ + "> 1%", + "last 2 versions", + "not dead", + "not ie 11" + ] } diff --git a/Getting Started Vue-3 - server-back/src/App.vue b/Getting Started Vue-3 - server-back/src/App.vue index dea25d5..0ff5b9a 100644 --- a/Getting Started Vue-3 - server-back/src/App.vue +++ b/Getting Started Vue-3 - server-back/src/App.vue @@ -21,7 +21,7 @@ data() { return { documentPath: "https://cdn.syncfusion.com/content/pdf/pdf-succinctly.pdf", - serviceUrl: "https://services.syncfusion.com/vue/production/api/pdfviewer" + serviceUrl: "https://localhost:44396/pdfviewer" }; }, diff --git a/Getting Started Vue-3 - server-back/vite.config.js b/Getting Started Vue-3 - server-back/vite.config.js deleted file mode 100644 index 05c1740..0000000 --- a/Getting Started Vue-3 - server-back/vite.config.js +++ /dev/null @@ -1,7 +0,0 @@ -import { defineConfig } from 'vite' -import vue from '@vitejs/plugin-vue' - -// https://vitejs.dev/config/ -export default defineConfig({ - plugins: [vue()], -}) diff --git a/Getting Started Vue-3 - server-back/vue.config.js b/Getting Started Vue-3 - server-back/vue.config.js new file mode 100644 index 0000000..910e297 --- /dev/null +++ b/Getting Started Vue-3 - server-back/vue.config.js @@ -0,0 +1,4 @@ +const { defineConfig } = require('@vue/cli-service') +module.exports = defineConfig({ + transpileDependencies: true +}) From 105e0a7b4d963c3e7bdc37f2f7673c5f1f4c31a7 Mon Sep 17 00:00:00 2001 From: Dharshana4609 Date: Fri, 18 Oct 2024 13:13:43 +0530 Subject: [PATCH 05/10] 915494: Resolved dependent bot issue in standalone getting started --- Getting Started Vue-3 - Standalone/README.md | 25 ++++++++-- .../babel.config.js | 5 ++ Getting Started Vue-3 - Standalone/index.html | 13 ----- .../jsconfig.json | 19 +++++++ .../package.json | 50 +++++++++++++++---- .../src/App.vue | 2 +- .../vite.config.js | 7 --- .../vue.config.js | 4 ++ .../src/App.vue | 1 + 9 files changed, 91 insertions(+), 35 deletions(-) create mode 100644 Getting Started Vue-3 - Standalone/babel.config.js delete mode 100644 Getting Started Vue-3 - Standalone/index.html create mode 100644 Getting Started Vue-3 - Standalone/jsconfig.json delete mode 100644 Getting Started Vue-3 - Standalone/vite.config.js create mode 100644 Getting Started Vue-3 - Standalone/vue.config.js diff --git a/Getting Started Vue-3 - Standalone/README.md b/Getting Started Vue-3 - Standalone/README.md index 94c98a2..8273d42 100644 --- a/Getting Started Vue-3 - Standalone/README.md +++ b/Getting Started Vue-3 - Standalone/README.md @@ -1,7 +1,24 @@ -# Vue 3 + Vite +# getting-started-standalone -This template should help get you started developing with Vue 3 in Vite. The template uses Vue 3 ` - - diff --git a/Getting Started Vue-3 - Standalone/jsconfig.json b/Getting Started Vue-3 - Standalone/jsconfig.json new file mode 100644 index 0000000..4aafc5f --- /dev/null +++ b/Getting Started Vue-3 - Standalone/jsconfig.json @@ -0,0 +1,19 @@ +{ + "compilerOptions": { + "target": "es5", + "module": "esnext", + "baseUrl": "./", + "moduleResolution": "node", + "paths": { + "@/*": [ + "src/*" + ] + }, + "lib": [ + "esnext", + "dom", + "dom.iterable", + "scripthost" + ] + } +} diff --git a/Getting Started Vue-3 - Standalone/package.json b/Getting Started Vue-3 - Standalone/package.json index 17af4a3..fd50fb6 100644 --- a/Getting Started Vue-3 - Standalone/package.json +++ b/Getting Started Vue-3 - Standalone/package.json @@ -1,19 +1,49 @@ { - "name": "getting-started-server-back", + "name": "getting-started-standalone", + "version": "0.1.0", "private": true, - "version": "0.0.0", - "type": "module", "scripts": { - "dev": "vite", - "build": "vite build", - "preview": "vite preview" + "serve": "vue-cli-service serve", + "build": "vue-cli-service build", + "lint": "vue-cli-service lint" }, "dependencies": { "@syncfusion/ej2-vue-pdfviewer": "*", - "vue": "^3.2.47" + "buffer": "^6.0.3", + "core-js": "^3.8.3", + "crypto-browserify": "^3.12.0", + "stream-browserify": "^3.0.0", + "util": "^0.12.5", + "vm-browserify": "^1.1.2", + "vue": "^3.2.13" }, "devDependencies": { - "@vitejs/plugin-vue": "^4.1.0", - "vite": "^4.3.9" - } + "@babel/core": "^7.12.16", + "@babel/eslint-parser": "^7.12.16", + "@vue/cli-plugin-babel": "~5.0.0", + "@vue/cli-plugin-eslint": "~5.0.0", + "@vue/cli-service": "~5.0.0", + "eslint": "^7.32.0", + "eslint-plugin-vue": "^8.0.3" + }, + "eslintConfig": { + "root": true, + "env": { + "node": true + }, + "extends": [ + "plugin:vue/essential", + "eslint:recommended" + ], + "parserOptions": { + "parser": "@babel/eslint-parser" + }, + "rules": {} + }, + "browserslist": [ + "> 1%", + "last 2 versions", + "not dead", + "not ie 11" + ] } diff --git a/Getting Started Vue-3 - Standalone/src/App.vue b/Getting Started Vue-3 - Standalone/src/App.vue index d0cdfba..d25850c 100644 --- a/Getting Started Vue-3 - Standalone/src/App.vue +++ b/Getting Started Vue-3 - Standalone/src/App.vue @@ -27,7 +27,7 @@ }, provide: { PdfViewer: [ Toolbar, Magnification, Navigation, LinkAnnotation, BookmarkView, ThumbnailView, - Print, TextSelection, TextSearch, Annotation, FormDesigner, FormField, PageOrganizer ] + Print, TextSelection, TextSearch, Annotation, FormDesigner, FormFields, PageOrganizer ] } } diff --git a/Getting Started Vue-3 - Standalone/vite.config.js b/Getting Started Vue-3 - Standalone/vite.config.js deleted file mode 100644 index d83338b..0000000 --- a/Getting Started Vue-3 - Standalone/vite.config.js +++ /dev/null @@ -1,7 +0,0 @@ -import { defineConfig } from 'vite' -import vue from '@vitejs/plugin-vue' - -// https://vitejs.dev/config/ -export default defineConfig({ - plugins: [vue()], -}) diff --git a/Getting Started Vue-3 - Standalone/vue.config.js b/Getting Started Vue-3 - Standalone/vue.config.js new file mode 100644 index 0000000..910e297 --- /dev/null +++ b/Getting Started Vue-3 - Standalone/vue.config.js @@ -0,0 +1,4 @@ +const { defineConfig } = require('@vue/cli-service') +module.exports = defineConfig({ + transpileDependencies: true +}) diff --git a/Getting Started Vue-3 - server-back/src/App.vue b/Getting Started Vue-3 - server-back/src/App.vue index 0ff5b9a..66ddcf4 100644 --- a/Getting Started Vue-3 - server-back/src/App.vue +++ b/Getting Started Vue-3 - server-back/src/App.vue @@ -21,6 +21,7 @@ data() { return { documentPath: "https://cdn.syncfusion.com/content/pdf/pdf-succinctly.pdf", + // Replace the "localhost:44396" with the actual URL of your server serviceUrl: "https://localhost:44396/pdfviewer" }; From 2657668eead6698e91d81428f3fbc53f70f76259 Mon Sep 17 00:00:00 2001 From: Dharshana4609 Date: Fri, 18 Oct 2024 14:08:01 +0530 Subject: [PATCH 06/10] 915494: Resolved dependent bot issues --- .../VuejsClient/README.md | 2 +- .../VuejsClient/babel.config.js | 5 +++++ .../VuejsClient/jsconfig.json | 19 +++++++++++++++++++ .../VuejsClient/package.json | 15 ++++++++++----- .../VuejsClient/src/App.vue | 9 +++++---- .../VuejsClient/src/main.js | 8 ++------ .../VuejsClient/vue.config.js | 4 ++++ .../VuejsClient/README.md | 2 +- .../VuejsClient/babel.config.js | 5 +++++ .../VuejsClient/jsconfig.json | 19 +++++++++++++++++++ .../VuejsClient/package.json | 15 ++++++++++----- .../VuejsClient/src/App.vue | 9 +++++---- .../VuejsClient/src/main.js | 8 ++------ .../VuejsClient/vue.config.js | 4 ++++ .../VuejsClient/README.md | 2 +- .../VuejsClient/babel.config.js | 5 +++++ .../VuejsClient/jsconfig.json | 19 +++++++++++++++++++ .../VuejsClient/package.json | 15 ++++++++++----- .../VuejsClient/src/App.vue | 7 ++++--- .../VuejsClient/src/main.js | 8 ++------ .../VuejsClient/vue.config.js | 4 ++++ 21 files changed, 137 insertions(+), 47 deletions(-) create mode 100644 Save and Load/Load PDF file from URL/VuejsClient/babel.config.js create mode 100644 Save and Load/Load PDF file from URL/VuejsClient/jsconfig.json create mode 100644 Save and Load/Load PDF file from URL/VuejsClient/vue.config.js create mode 100644 Save and Load/Load PDF file from base64 string/VuejsClient/babel.config.js create mode 100644 Save and Load/Load PDF file from base64 string/VuejsClient/jsconfig.json create mode 100644 Save and Load/Load PDF file from base64 string/VuejsClient/vue.config.js create mode 100644 Save and Load/Save PDF file to server/VuejsClient/babel.config.js create mode 100644 Save and Load/Save PDF file to server/VuejsClient/jsconfig.json create mode 100644 Save and Load/Save PDF file to server/VuejsClient/vue.config.js diff --git a/Save and Load/Load PDF file from URL/VuejsClient/README.md b/Save and Load/Load PDF file from URL/VuejsClient/README.md index cf9ae0e..1bc8e2b 100644 --- a/Save and Load/Load PDF file from URL/VuejsClient/README.md +++ b/Save and Load/Load PDF file from URL/VuejsClient/README.md @@ -1,4 +1,4 @@ -# quickstart +# load-from-url ## Project setup ``` diff --git a/Save and Load/Load PDF file from URL/VuejsClient/babel.config.js b/Save and Load/Load PDF file from URL/VuejsClient/babel.config.js new file mode 100644 index 0000000..e955840 --- /dev/null +++ b/Save and Load/Load PDF file from URL/VuejsClient/babel.config.js @@ -0,0 +1,5 @@ +module.exports = { + presets: [ + '@vue/cli-plugin-babel/preset' + ] +} diff --git a/Save and Load/Load PDF file from URL/VuejsClient/jsconfig.json b/Save and Load/Load PDF file from URL/VuejsClient/jsconfig.json new file mode 100644 index 0000000..4aafc5f --- /dev/null +++ b/Save and Load/Load PDF file from URL/VuejsClient/jsconfig.json @@ -0,0 +1,19 @@ +{ + "compilerOptions": { + "target": "es5", + "module": "esnext", + "baseUrl": "./", + "moduleResolution": "node", + "paths": { + "@/*": [ + "src/*" + ] + }, + "lib": [ + "esnext", + "dom", + "dom.iterable", + "scripthost" + ] + } +} diff --git a/Save and Load/Load PDF file from URL/VuejsClient/package.json b/Save and Load/Load PDF file from URL/VuejsClient/package.json index 92f0a07..fe67c80 100644 --- a/Save and Load/Load PDF file from URL/VuejsClient/package.json +++ b/Save and Load/Load PDF file from URL/VuejsClient/package.json @@ -1,5 +1,5 @@ { - "name": "quickstart", + "name": "load-from-url", "version": "0.1.0", "private": true, "scripts": { @@ -9,8 +9,13 @@ }, "dependencies": { "@syncfusion/ej2-vue-pdfviewer": "*", + "buffer": "^6.0.3", "core-js": "^3.8.3", - "vue": "^2.7.16" + "crypto-browserify": "^3.12.0", + "stream-browserify": "^3.0.0", + "util": "^0.12.5", + "vm-browserify": "^1.1.2", + "vue": "^3.2.13" }, "devDependencies": { "@babel/core": "^7.12.16", @@ -19,8 +24,7 @@ "@vue/cli-plugin-eslint": "~5.0.0", "@vue/cli-service": "~5.0.0", "eslint": "^7.32.0", - "eslint-plugin-vue": "^8.0.3", - "vue-template-compiler": "^2.7.16" + "eslint-plugin-vue": "^8.0.3" }, "eslintConfig": { "root": true, @@ -39,6 +43,7 @@ "browserslist": [ "> 1%", "last 2 versions", - "not dead" + "not dead", + "not ie 11" ] } diff --git a/Save and Load/Load PDF file from URL/VuejsClient/src/App.vue b/Save and Load/Load PDF file from URL/VuejsClient/src/App.vue index 023d5a3..7566383 100644 --- a/Save and Load/Load PDF file from URL/VuejsClient/src/App.vue +++ b/Save and Load/Load PDF file from URL/VuejsClient/src/App.vue @@ -10,12 +10,13 @@ - - - diff --git a/How to/Custom Fonts/src/main.js b/How to/Custom Fonts/src/main.js index 63eb05f..01433bc 100644 --- a/How to/Custom Fonts/src/main.js +++ b/How to/Custom Fonts/src/main.js @@ -1,8 +1,4 @@ -import Vue from 'vue' +import { createApp } from 'vue' import App from './App.vue' -Vue.config.productionTip = false - -new Vue({ - render: h => h(App), -}).$mount('#app') +createApp(App).mount('#app') From 5139213c858b75e2b707303d094efe0ae4f8dc2a Mon Sep 17 00:00:00 2001 From: Dharshana4609 Date: Fri, 18 Oct 2024 17:26:53 +0530 Subject: [PATCH 08/10] 915494: Changed the name --- How to/Custom Fonts/README.md | 2 +- How to/Custom Fonts/package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/How to/Custom Fonts/README.md b/How to/Custom Fonts/README.md index cf9ae0e..048439d 100644 --- a/How to/Custom Fonts/README.md +++ b/How to/Custom Fonts/README.md @@ -1,4 +1,4 @@ -# quickstart +# custom-fonts ## Project setup ``` diff --git a/How to/Custom Fonts/package.json b/How to/Custom Fonts/package.json index 9c710b8..e91e859 100644 --- a/How to/Custom Fonts/package.json +++ b/How to/Custom Fonts/package.json @@ -1,5 +1,5 @@ { - "name": "quickstart", + "name": "custom-fonts", "version": "0.1.0", "private": true, "scripts": { From 974f71f5032c70f10ffd21744ea8b243a0cca001 Mon Sep 17 00:00:00 2001 From: Dharshana4609 Date: Fri, 18 Oct 2024 18:50:50 +0530 Subject: [PATCH 09/10] 915494: Removed unwanted changes --- Getting Started Vue-3 - Standalone/.gitignore | 24 --------- Getting Started Vue-3 - Standalone/README.md | 24 --------- .../babel.config.js | 5 -- .../jsconfig.json | 19 ------- .../package.json | 49 ------------------- .../src/App.vue | 45 ----------------- .../src/assets/vue.svg | 1 - .../src/main.js | 4 -- .../src/style.css | 0 .../vue.config.js | 4 -- .../.gitignore | 24 --------- Getting Started Vue-3 - server-back/README.md | 24 --------- .../babel.config.js | 5 -- .../jsconfig.json | 19 ------- .../package.json | 49 ------------------- .../src/App.vue | 46 ----------------- .../src/assets/vue.svg | 1 - .../src/main.js | 4 -- .../src/style.css | 0 .../vue.config.js | 4 -- 20 files changed, 351 deletions(-) delete mode 100644 Getting Started Vue-3 - Standalone/.gitignore delete mode 100644 Getting Started Vue-3 - Standalone/README.md delete mode 100644 Getting Started Vue-3 - Standalone/babel.config.js delete mode 100644 Getting Started Vue-3 - Standalone/jsconfig.json delete mode 100644 Getting Started Vue-3 - Standalone/package.json delete mode 100644 Getting Started Vue-3 - Standalone/src/App.vue delete mode 100644 Getting Started Vue-3 - Standalone/src/assets/vue.svg delete mode 100644 Getting Started Vue-3 - Standalone/src/main.js delete mode 100644 Getting Started Vue-3 - Standalone/src/style.css delete mode 100644 Getting Started Vue-3 - Standalone/vue.config.js delete mode 100644 Getting Started Vue-3 - server-back/.gitignore delete mode 100644 Getting Started Vue-3 - server-back/README.md delete mode 100644 Getting Started Vue-3 - server-back/babel.config.js delete mode 100644 Getting Started Vue-3 - server-back/jsconfig.json delete mode 100644 Getting Started Vue-3 - server-back/package.json delete mode 100644 Getting Started Vue-3 - server-back/src/App.vue delete mode 100644 Getting Started Vue-3 - server-back/src/assets/vue.svg delete mode 100644 Getting Started Vue-3 - server-back/src/main.js delete mode 100644 Getting Started Vue-3 - server-back/src/style.css delete mode 100644 Getting Started Vue-3 - server-back/vue.config.js diff --git a/Getting Started Vue-3 - Standalone/.gitignore b/Getting Started Vue-3 - Standalone/.gitignore deleted file mode 100644 index 4108b33..0000000 --- a/Getting Started Vue-3 - Standalone/.gitignore +++ /dev/null @@ -1,24 +0,0 @@ -# Logs -logs -*.log -npm-debug.log* -yarn-debug.log* -yarn-error.log* -pnpm-debug.log* -lerna-debug.log* - -node_modules -dist -dist-ssr -*.local - -# Editor directories and files -.vscode/* -!.vscode/extensions.json -.idea -.DS_Store -*.suo -*.ntvs* -*.njsproj -*.sln -*.sw? diff --git a/Getting Started Vue-3 - Standalone/README.md b/Getting Started Vue-3 - Standalone/README.md deleted file mode 100644 index 8273d42..0000000 --- a/Getting Started Vue-3 - Standalone/README.md +++ /dev/null @@ -1,24 +0,0 @@ -# getting-started-standalone - -## Project setup -``` -npm install -``` - -### Compiles and hot-reloads for development -``` -npm run serve -``` - -### Compiles and minifies for production -``` -npm run build -``` - -### Lints and fixes files -``` -npm run lint -``` - -### Customize configuration -See [Configuration Reference](https://cli.vuejs.org/config/). diff --git a/Getting Started Vue-3 - Standalone/babel.config.js b/Getting Started Vue-3 - Standalone/babel.config.js deleted file mode 100644 index e955840..0000000 --- a/Getting Started Vue-3 - Standalone/babel.config.js +++ /dev/null @@ -1,5 +0,0 @@ -module.exports = { - presets: [ - '@vue/cli-plugin-babel/preset' - ] -} diff --git a/Getting Started Vue-3 - Standalone/jsconfig.json b/Getting Started Vue-3 - Standalone/jsconfig.json deleted file mode 100644 index 4aafc5f..0000000 --- a/Getting Started Vue-3 - Standalone/jsconfig.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "compilerOptions": { - "target": "es5", - "module": "esnext", - "baseUrl": "./", - "moduleResolution": "node", - "paths": { - "@/*": [ - "src/*" - ] - }, - "lib": [ - "esnext", - "dom", - "dom.iterable", - "scripthost" - ] - } -} diff --git a/Getting Started Vue-3 - Standalone/package.json b/Getting Started Vue-3 - Standalone/package.json deleted file mode 100644 index fd50fb6..0000000 --- a/Getting Started Vue-3 - Standalone/package.json +++ /dev/null @@ -1,49 +0,0 @@ -{ - "name": "getting-started-standalone", - "version": "0.1.0", - "private": true, - "scripts": { - "serve": "vue-cli-service serve", - "build": "vue-cli-service build", - "lint": "vue-cli-service lint" - }, - "dependencies": { - "@syncfusion/ej2-vue-pdfviewer": "*", - "buffer": "^6.0.3", - "core-js": "^3.8.3", - "crypto-browserify": "^3.12.0", - "stream-browserify": "^3.0.0", - "util": "^0.12.5", - "vm-browserify": "^1.1.2", - "vue": "^3.2.13" - }, - "devDependencies": { - "@babel/core": "^7.12.16", - "@babel/eslint-parser": "^7.12.16", - "@vue/cli-plugin-babel": "~5.0.0", - "@vue/cli-plugin-eslint": "~5.0.0", - "@vue/cli-service": "~5.0.0", - "eslint": "^7.32.0", - "eslint-plugin-vue": "^8.0.3" - }, - "eslintConfig": { - "root": true, - "env": { - "node": true - }, - "extends": [ - "plugin:vue/essential", - "eslint:recommended" - ], - "parserOptions": { - "parser": "@babel/eslint-parser" - }, - "rules": {} - }, - "browserslist": [ - "> 1%", - "last 2 versions", - "not dead", - "not ie 11" - ] -} diff --git a/Getting Started Vue-3 - Standalone/src/App.vue b/Getting Started Vue-3 - Standalone/src/App.vue deleted file mode 100644 index d25850c..0000000 --- a/Getting Started Vue-3 - Standalone/src/App.vue +++ /dev/null @@ -1,45 +0,0 @@ - - - - - \ No newline at end of file diff --git a/Getting Started Vue-3 - Standalone/src/assets/vue.svg b/Getting Started Vue-3 - Standalone/src/assets/vue.svg deleted file mode 100644 index 770e9d3..0000000 --- a/Getting Started Vue-3 - Standalone/src/assets/vue.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/Getting Started Vue-3 - Standalone/src/main.js b/Getting Started Vue-3 - Standalone/src/main.js deleted file mode 100644 index a4fc9b9..0000000 --- a/Getting Started Vue-3 - Standalone/src/main.js +++ /dev/null @@ -1,4 +0,0 @@ -import { createApp } from 'vue' -import App from './App.vue' - -createApp(App).mount('#app') diff --git a/Getting Started Vue-3 - Standalone/src/style.css b/Getting Started Vue-3 - Standalone/src/style.css deleted file mode 100644 index e69de29..0000000 diff --git a/Getting Started Vue-3 - Standalone/vue.config.js b/Getting Started Vue-3 - Standalone/vue.config.js deleted file mode 100644 index 910e297..0000000 --- a/Getting Started Vue-3 - Standalone/vue.config.js +++ /dev/null @@ -1,4 +0,0 @@ -const { defineConfig } = require('@vue/cli-service') -module.exports = defineConfig({ - transpileDependencies: true -}) diff --git a/Getting Started Vue-3 - server-back/.gitignore b/Getting Started Vue-3 - server-back/.gitignore deleted file mode 100644 index a547bf3..0000000 --- a/Getting Started Vue-3 - server-back/.gitignore +++ /dev/null @@ -1,24 +0,0 @@ -# Logs -logs -*.log -npm-debug.log* -yarn-debug.log* -yarn-error.log* -pnpm-debug.log* -lerna-debug.log* - -node_modules -dist -dist-ssr -*.local - -# Editor directories and files -.vscode/* -!.vscode/extensions.json -.idea -.DS_Store -*.suo -*.ntvs* -*.njsproj -*.sln -*.sw? diff --git a/Getting Started Vue-3 - server-back/README.md b/Getting Started Vue-3 - server-back/README.md deleted file mode 100644 index f527407..0000000 --- a/Getting Started Vue-3 - server-back/README.md +++ /dev/null @@ -1,24 +0,0 @@ -# getting-started-server-back - -## Project setup -``` -npm install -``` - -### Compiles and hot-reloads for development -``` -npm run serve -``` - -### Compiles and minifies for production -``` -npm run build -``` - -### Lints and fixes files -``` -npm run lint -``` - -### Customize configuration -See [Configuration Reference](https://cli.vuejs.org/config/). diff --git a/Getting Started Vue-3 - server-back/babel.config.js b/Getting Started Vue-3 - server-back/babel.config.js deleted file mode 100644 index e955840..0000000 --- a/Getting Started Vue-3 - server-back/babel.config.js +++ /dev/null @@ -1,5 +0,0 @@ -module.exports = { - presets: [ - '@vue/cli-plugin-babel/preset' - ] -} diff --git a/Getting Started Vue-3 - server-back/jsconfig.json b/Getting Started Vue-3 - server-back/jsconfig.json deleted file mode 100644 index 4aafc5f..0000000 --- a/Getting Started Vue-3 - server-back/jsconfig.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "compilerOptions": { - "target": "es5", - "module": "esnext", - "baseUrl": "./", - "moduleResolution": "node", - "paths": { - "@/*": [ - "src/*" - ] - }, - "lib": [ - "esnext", - "dom", - "dom.iterable", - "scripthost" - ] - } -} diff --git a/Getting Started Vue-3 - server-back/package.json b/Getting Started Vue-3 - server-back/package.json deleted file mode 100644 index c933a39..0000000 --- a/Getting Started Vue-3 - server-back/package.json +++ /dev/null @@ -1,49 +0,0 @@ -{ - "name": "getting-started-server-back", - "version": "0.1.0", - "private": true, - "scripts": { - "serve": "vue-cli-service serve", - "build": "vue-cli-service build", - "lint": "vue-cli-service lint" - }, - "dependencies": { - "@syncfusion/ej2-vue-pdfviewer": "*", - "buffer": "^6.0.3", - "core-js": "^3.8.3", - "crypto-browserify": "^3.12.0", - "stream-browserify": "^3.0.0", - "util": "^0.12.5", - "vm-browserify": "^1.1.2", - "vue": "^3.2.13" - }, - "devDependencies": { - "@babel/core": "^7.12.16", - "@babel/eslint-parser": "^7.12.16", - "@vue/cli-plugin-babel": "~5.0.0", - "@vue/cli-plugin-eslint": "~5.0.0", - "@vue/cli-service": "~5.0.0", - "eslint": "^7.32.0", - "eslint-plugin-vue": "^8.0.3" - }, - "eslintConfig": { - "root": true, - "env": { - "node": true - }, - "extends": [ - "plugin:vue/essential", - "eslint:recommended" - ], - "parserOptions": { - "parser": "@babel/eslint-parser" - }, - "rules": {} - }, - "browserslist": [ - "> 1%", - "last 2 versions", - "not dead", - "not ie 11" - ] -} diff --git a/Getting Started Vue-3 - server-back/src/App.vue b/Getting Started Vue-3 - server-back/src/App.vue deleted file mode 100644 index 66ddcf4..0000000 --- a/Getting Started Vue-3 - server-back/src/App.vue +++ /dev/null @@ -1,46 +0,0 @@ - - - - - \ No newline at end of file diff --git a/Getting Started Vue-3 - server-back/src/assets/vue.svg b/Getting Started Vue-3 - server-back/src/assets/vue.svg deleted file mode 100644 index 770e9d3..0000000 --- a/Getting Started Vue-3 - server-back/src/assets/vue.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/Getting Started Vue-3 - server-back/src/main.js b/Getting Started Vue-3 - server-back/src/main.js deleted file mode 100644 index 01433bc..0000000 --- a/Getting Started Vue-3 - server-back/src/main.js +++ /dev/null @@ -1,4 +0,0 @@ -import { createApp } from 'vue' -import App from './App.vue' - -createApp(App).mount('#app') diff --git a/Getting Started Vue-3 - server-back/src/style.css b/Getting Started Vue-3 - server-back/src/style.css deleted file mode 100644 index e69de29..0000000 diff --git a/Getting Started Vue-3 - server-back/vue.config.js b/Getting Started Vue-3 - server-back/vue.config.js deleted file mode 100644 index 910e297..0000000 --- a/Getting Started Vue-3 - server-back/vue.config.js +++ /dev/null @@ -1,4 +0,0 @@ -const { defineConfig } = require('@vue/cli-service') -module.exports = defineConfig({ - transpileDependencies: true -}) From aee9fb8856dc229718fb813ec2123131e83863ed Mon Sep 17 00:00:00 2001 From: Dharshana4609 Date: Fri, 18 Oct 2024 19:21:12 +0530 Subject: [PATCH 10/10] 915494: Resolved dependent bot issues --- Getting Started - Standalone/README.md | 2 +- Getting Started - Standalone/babel.config.js | 5 +++ Getting Started - Standalone/jsconfig.json | 19 ++++++++ Getting Started - Standalone/package.json | 15 ++++--- Getting Started - Standalone/src/main.js | 8 +--- Getting Started - Standalone/vue.config.js | 4 ++ Getting Started - server-back/README.md | 2 +- Getting Started - server-back/babel.config.js | 5 +++ Getting Started - server-back/jsconfig.json | 19 ++++++++ Getting Started - server-back/package.json | 13 ++++-- Getting Started - server-back/src/App.vue | 2 +- Getting Started - server-back/src/main.js | 8 +--- Getting Started - server-back/vue.config.js | 4 ++ Getting Started Vue-3 - Standalone/.gitignore | 24 ++++++++++ Getting Started Vue-3 - Standalone/README.md | 7 +++ Getting Started Vue-3 - Standalone/index.html | 13 ++++++ .../package.json | 19 ++++++++ .../src/App.vue | 45 +++++++++++++++++++ .../src/assets/vue.svg | 1 + .../src/main.js | 4 ++ .../src/style.css | 0 .../vite.config.js | 7 +++ .../.gitignore | 24 ++++++++++ Getting Started Vue-3 - server-back/README.md | 7 +++ .../index.html | 13 ++++++ .../package.json | 19 ++++++++ .../src/App.vue | 45 +++++++++++++++++++ .../src/assets/vue.svg | 1 + .../src/main.js | 4 ++ .../src/style.css | 0 .../vite.config.js | 7 +++ 31 files changed, 322 insertions(+), 24 deletions(-) create mode 100644 Getting Started - Standalone/babel.config.js create mode 100644 Getting Started - Standalone/jsconfig.json create mode 100644 Getting Started - Standalone/vue.config.js create mode 100644 Getting Started - server-back/babel.config.js create mode 100644 Getting Started - server-back/jsconfig.json create mode 100644 Getting Started - server-back/vue.config.js create mode 100644 Getting Started Vue-3 - Standalone/.gitignore create mode 100644 Getting Started Vue-3 - Standalone/README.md create mode 100644 Getting Started Vue-3 - Standalone/index.html create mode 100644 Getting Started Vue-3 - Standalone/package.json create mode 100644 Getting Started Vue-3 - Standalone/src/App.vue create mode 100644 Getting Started Vue-3 - Standalone/src/assets/vue.svg create mode 100644 Getting Started Vue-3 - Standalone/src/main.js create mode 100644 Getting Started Vue-3 - Standalone/src/style.css create mode 100644 Getting Started Vue-3 - Standalone/vite.config.js create mode 100644 Getting Started Vue-3 - server-back/.gitignore create mode 100644 Getting Started Vue-3 - server-back/README.md create mode 100644 Getting Started Vue-3 - server-back/index.html create mode 100644 Getting Started Vue-3 - server-back/package.json create mode 100644 Getting Started Vue-3 - server-back/src/App.vue create mode 100644 Getting Started Vue-3 - server-back/src/assets/vue.svg create mode 100644 Getting Started Vue-3 - server-back/src/main.js create mode 100644 Getting Started Vue-3 - server-back/src/style.css create mode 100644 Getting Started Vue-3 - server-back/vite.config.js diff --git a/Getting Started - Standalone/README.md b/Getting Started - Standalone/README.md index cf9ae0e..54420da 100644 --- a/Getting Started - Standalone/README.md +++ b/Getting Started - Standalone/README.md @@ -1,4 +1,4 @@ -# quickstart +# getting-started-standalone ## Project setup ``` diff --git a/Getting Started - Standalone/babel.config.js b/Getting Started - Standalone/babel.config.js new file mode 100644 index 0000000..e955840 --- /dev/null +++ b/Getting Started - Standalone/babel.config.js @@ -0,0 +1,5 @@ +module.exports = { + presets: [ + '@vue/cli-plugin-babel/preset' + ] +} diff --git a/Getting Started - Standalone/jsconfig.json b/Getting Started - Standalone/jsconfig.json new file mode 100644 index 0000000..4aafc5f --- /dev/null +++ b/Getting Started - Standalone/jsconfig.json @@ -0,0 +1,19 @@ +{ + "compilerOptions": { + "target": "es5", + "module": "esnext", + "baseUrl": "./", + "moduleResolution": "node", + "paths": { + "@/*": [ + "src/*" + ] + }, + "lib": [ + "esnext", + "dom", + "dom.iterable", + "scripthost" + ] + } +} diff --git a/Getting Started - Standalone/package.json b/Getting Started - Standalone/package.json index 58408e2..5180faa 100644 --- a/Getting Started - Standalone/package.json +++ b/Getting Started - Standalone/package.json @@ -1,5 +1,5 @@ { - "name": "getting-started-server-back", + "name": "getting-started-standalone", "version": "0.1.0", "private": true, "scripts": { @@ -9,8 +9,13 @@ }, "dependencies": { "@syncfusion/ej2-vue-pdfviewer": "*", + "buffer": "^6.0.3", "core-js": "^3.8.3", - "vue": "^2.7.16" + "crypto-browserify": "^3.12.0", + "stream-browserify": "^3.0.0", + "util": "^0.12.5", + "vm-browserify": "^1.1.2", + "vue": "^3.2.13" }, "devDependencies": { "@babel/core": "^7.12.16", @@ -19,8 +24,7 @@ "@vue/cli-plugin-eslint": "~5.0.0", "@vue/cli-service": "~5.0.0", "eslint": "^7.32.0", - "eslint-plugin-vue": "^8.0.3", - "vue-template-compiler": "^2.7.16" + "eslint-plugin-vue": "^8.0.3" }, "eslintConfig": { "root": true, @@ -39,6 +43,7 @@ "browserslist": [ "> 1%", "last 2 versions", - "not dead" + "not dead", + "not ie 11" ] } diff --git a/Getting Started - Standalone/src/main.js b/Getting Started - Standalone/src/main.js index 63eb05f..01433bc 100644 --- a/Getting Started - Standalone/src/main.js +++ b/Getting Started - Standalone/src/main.js @@ -1,8 +1,4 @@ -import Vue from 'vue' +import { createApp } from 'vue' import App from './App.vue' -Vue.config.productionTip = false - -new Vue({ - render: h => h(App), -}).$mount('#app') +createApp(App).mount('#app') diff --git a/Getting Started - Standalone/vue.config.js b/Getting Started - Standalone/vue.config.js new file mode 100644 index 0000000..910e297 --- /dev/null +++ b/Getting Started - Standalone/vue.config.js @@ -0,0 +1,4 @@ +const { defineConfig } = require('@vue/cli-service') +module.exports = defineConfig({ + transpileDependencies: true +}) diff --git a/Getting Started - server-back/README.md b/Getting Started - server-back/README.md index cf9ae0e..f527407 100644 --- a/Getting Started - server-back/README.md +++ b/Getting Started - server-back/README.md @@ -1,4 +1,4 @@ -# quickstart +# getting-started-server-back ## Project setup ``` diff --git a/Getting Started - server-back/babel.config.js b/Getting Started - server-back/babel.config.js new file mode 100644 index 0000000..e955840 --- /dev/null +++ b/Getting Started - server-back/babel.config.js @@ -0,0 +1,5 @@ +module.exports = { + presets: [ + '@vue/cli-plugin-babel/preset' + ] +} diff --git a/Getting Started - server-back/jsconfig.json b/Getting Started - server-back/jsconfig.json new file mode 100644 index 0000000..4aafc5f --- /dev/null +++ b/Getting Started - server-back/jsconfig.json @@ -0,0 +1,19 @@ +{ + "compilerOptions": { + "target": "es5", + "module": "esnext", + "baseUrl": "./", + "moduleResolution": "node", + "paths": { + "@/*": [ + "src/*" + ] + }, + "lib": [ + "esnext", + "dom", + "dom.iterable", + "scripthost" + ] + } +} diff --git a/Getting Started - server-back/package.json b/Getting Started - server-back/package.json index 58408e2..c933a39 100644 --- a/Getting Started - server-back/package.json +++ b/Getting Started - server-back/package.json @@ -9,8 +9,13 @@ }, "dependencies": { "@syncfusion/ej2-vue-pdfviewer": "*", + "buffer": "^6.0.3", "core-js": "^3.8.3", - "vue": "^2.7.16" + "crypto-browserify": "^3.12.0", + "stream-browserify": "^3.0.0", + "util": "^0.12.5", + "vm-browserify": "^1.1.2", + "vue": "^3.2.13" }, "devDependencies": { "@babel/core": "^7.12.16", @@ -19,8 +24,7 @@ "@vue/cli-plugin-eslint": "~5.0.0", "@vue/cli-service": "~5.0.0", "eslint": "^7.32.0", - "eslint-plugin-vue": "^8.0.3", - "vue-template-compiler": "^2.7.16" + "eslint-plugin-vue": "^8.0.3" }, "eslintConfig": { "root": true, @@ -39,6 +43,7 @@ "browserslist": [ "> 1%", "last 2 versions", - "not dead" + "not dead", + "not ie 11" ] } diff --git a/Getting Started - server-back/src/App.vue b/Getting Started - server-back/src/App.vue index 50e7a1b..a84fbe0 100644 --- a/Getting Started - server-back/src/App.vue +++ b/Getting Started - server-back/src/App.vue @@ -19,7 +19,7 @@ data() { return { - serviceUrl: "https://services.syncfusion.com/vue/production/api/pdfviewer", + serviceUrl: "https://localhost:44396/pdfviewer", documentPath: "https://cdn.syncfusion.com/content/pdf/pdf-succinctly.pdf" }; }, diff --git a/Getting Started - server-back/src/main.js b/Getting Started - server-back/src/main.js index 63eb05f..01433bc 100644 --- a/Getting Started - server-back/src/main.js +++ b/Getting Started - server-back/src/main.js @@ -1,8 +1,4 @@ -import Vue from 'vue' +import { createApp } from 'vue' import App from './App.vue' -Vue.config.productionTip = false - -new Vue({ - render: h => h(App), -}).$mount('#app') +createApp(App).mount('#app') diff --git a/Getting Started - server-back/vue.config.js b/Getting Started - server-back/vue.config.js new file mode 100644 index 0000000..910e297 --- /dev/null +++ b/Getting Started - server-back/vue.config.js @@ -0,0 +1,4 @@ +const { defineConfig } = require('@vue/cli-service') +module.exports = defineConfig({ + transpileDependencies: true +}) diff --git a/Getting Started Vue-3 - Standalone/.gitignore b/Getting Started Vue-3 - Standalone/.gitignore new file mode 100644 index 0000000..a547bf3 --- /dev/null +++ b/Getting Started Vue-3 - Standalone/.gitignore @@ -0,0 +1,24 @@ +# Logs +logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* +pnpm-debug.log* +lerna-debug.log* + +node_modules +dist +dist-ssr +*.local + +# Editor directories and files +.vscode/* +!.vscode/extensions.json +.idea +.DS_Store +*.suo +*.ntvs* +*.njsproj +*.sln +*.sw? diff --git a/Getting Started Vue-3 - Standalone/README.md b/Getting Started Vue-3 - Standalone/README.md new file mode 100644 index 0000000..e62e093 --- /dev/null +++ b/Getting Started Vue-3 - Standalone/README.md @@ -0,0 +1,7 @@ +# Vue 3 + Vite + +This template should help get you started developing with Vue 3 in Vite. The template uses Vue 3 ` + + diff --git a/Getting Started Vue-3 - Standalone/package.json b/Getting Started Vue-3 - Standalone/package.json new file mode 100644 index 0000000..7bad130 --- /dev/null +++ b/Getting Started Vue-3 - Standalone/package.json @@ -0,0 +1,19 @@ +{ + "name": "getting-started-server-back", + "private": true, + "version": "0.0.0", + "type": "module", + "scripts": { + "dev": "vite", + "build": "vite build", + "preview": "vite preview" + }, + "dependencies": { + "@syncfusion/ej2-vue-pdfviewer": "*", + "vue": "^3.2.47" + }, + "devDependencies": { + "@vitejs/plugin-vue": "^4.1.0", + "vite": "^4.3.9" + } +} diff --git a/Getting Started Vue-3 - Standalone/src/App.vue b/Getting Started Vue-3 - Standalone/src/App.vue new file mode 100644 index 0000000..ec5455d --- /dev/null +++ b/Getting Started Vue-3 - Standalone/src/App.vue @@ -0,0 +1,45 @@ + + + + + \ No newline at end of file diff --git a/Getting Started Vue-3 - Standalone/src/assets/vue.svg b/Getting Started Vue-3 - Standalone/src/assets/vue.svg new file mode 100644 index 0000000..770e9d3 --- /dev/null +++ b/Getting Started Vue-3 - Standalone/src/assets/vue.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Getting Started Vue-3 - Standalone/src/main.js b/Getting Started Vue-3 - Standalone/src/main.js new file mode 100644 index 0000000..01433bc --- /dev/null +++ b/Getting Started Vue-3 - Standalone/src/main.js @@ -0,0 +1,4 @@ +import { createApp } from 'vue' +import App from './App.vue' + +createApp(App).mount('#app') diff --git a/Getting Started Vue-3 - Standalone/src/style.css b/Getting Started Vue-3 - Standalone/src/style.css new file mode 100644 index 0000000..e69de29 diff --git a/Getting Started Vue-3 - Standalone/vite.config.js b/Getting Started Vue-3 - Standalone/vite.config.js new file mode 100644 index 0000000..05c1740 --- /dev/null +++ b/Getting Started Vue-3 - Standalone/vite.config.js @@ -0,0 +1,7 @@ +import { defineConfig } from 'vite' +import vue from '@vitejs/plugin-vue' + +// https://vitejs.dev/config/ +export default defineConfig({ + plugins: [vue()], +}) diff --git a/Getting Started Vue-3 - server-back/.gitignore b/Getting Started Vue-3 - server-back/.gitignore new file mode 100644 index 0000000..a547bf3 --- /dev/null +++ b/Getting Started Vue-3 - server-back/.gitignore @@ -0,0 +1,24 @@ +# Logs +logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* +pnpm-debug.log* +lerna-debug.log* + +node_modules +dist +dist-ssr +*.local + +# Editor directories and files +.vscode/* +!.vscode/extensions.json +.idea +.DS_Store +*.suo +*.ntvs* +*.njsproj +*.sln +*.sw? diff --git a/Getting Started Vue-3 - server-back/README.md b/Getting Started Vue-3 - server-back/README.md new file mode 100644 index 0000000..e62e093 --- /dev/null +++ b/Getting Started Vue-3 - server-back/README.md @@ -0,0 +1,7 @@ +# Vue 3 + Vite + +This template should help get you started developing with Vue 3 in Vite. The template uses Vue 3 ` + + diff --git a/Getting Started Vue-3 - server-back/package.json b/Getting Started Vue-3 - server-back/package.json new file mode 100644 index 0000000..7bad130 --- /dev/null +++ b/Getting Started Vue-3 - server-back/package.json @@ -0,0 +1,19 @@ +{ + "name": "getting-started-server-back", + "private": true, + "version": "0.0.0", + "type": "module", + "scripts": { + "dev": "vite", + "build": "vite build", + "preview": "vite preview" + }, + "dependencies": { + "@syncfusion/ej2-vue-pdfviewer": "*", + "vue": "^3.2.47" + }, + "devDependencies": { + "@vitejs/plugin-vue": "^4.1.0", + "vite": "^4.3.9" + } +} diff --git a/Getting Started Vue-3 - server-back/src/App.vue b/Getting Started Vue-3 - server-back/src/App.vue new file mode 100644 index 0000000..dea25d5 --- /dev/null +++ b/Getting Started Vue-3 - server-back/src/App.vue @@ -0,0 +1,45 @@ + + + + + \ No newline at end of file diff --git a/Getting Started Vue-3 - server-back/src/assets/vue.svg b/Getting Started Vue-3 - server-back/src/assets/vue.svg new file mode 100644 index 0000000..770e9d3 --- /dev/null +++ b/Getting Started Vue-3 - server-back/src/assets/vue.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Getting Started Vue-3 - server-back/src/main.js b/Getting Started Vue-3 - server-back/src/main.js new file mode 100644 index 0000000..01433bc --- /dev/null +++ b/Getting Started Vue-3 - server-back/src/main.js @@ -0,0 +1,4 @@ +import { createApp } from 'vue' +import App from './App.vue' + +createApp(App).mount('#app') diff --git a/Getting Started Vue-3 - server-back/src/style.css b/Getting Started Vue-3 - server-back/src/style.css new file mode 100644 index 0000000..e69de29 diff --git a/Getting Started Vue-3 - server-back/vite.config.js b/Getting Started Vue-3 - server-back/vite.config.js new file mode 100644 index 0000000..05c1740 --- /dev/null +++ b/Getting Started Vue-3 - server-back/vite.config.js @@ -0,0 +1,7 @@ +import { defineConfig } from 'vite' +import vue from '@vitejs/plugin-vue' + +// https://vitejs.dev/config/ +export default defineConfig({ + plugins: [vue()], +})