@abi-software/scaffoldvuer 0.2.3-alpha-2 → 0.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (48) hide show
  1. package/.eslintrc.js +12 -12
  2. package/CHANGELOG.md +332 -316
  3. package/LICENSE +201 -201
  4. package/README.md +164 -164
  5. package/babel.config.js +14 -14
  6. package/dist/scaffoldvuer-wc.common.js +34 -34
  7. package/dist/scaffoldvuer-wc.umd.js +34 -34
  8. package/dist/scaffoldvuer-wc.umd.min.js +34 -34
  9. package/dist/scaffoldvuer.common.js +374 -375
  10. package/dist/scaffoldvuer.common.js.map +1 -1
  11. package/dist/scaffoldvuer.css +1 -1
  12. package/dist/scaffoldvuer.umd.js +374 -375
  13. package/dist/scaffoldvuer.umd.js.map +1 -1
  14. package/dist/scaffoldvuer.umd.min.js +1 -1
  15. package/dist/scaffoldvuer.umd.min.js.map +1 -1
  16. package/package-lock.json +18121 -18119
  17. package/package.json +89 -89
  18. package/public/index.html +17 -17
  19. package/src/App.vue +669 -669
  20. package/src/ScaffoldVuer-wc.js +13 -13
  21. package/src/app/DropZone.vue +114 -114
  22. package/src/app/ModelsInformation.js +35 -35
  23. package/src/app/ModelsTable.vue +113 -113
  24. package/src/app/TextureDemos.js +114 -114
  25. package/src/assets/_variables.scss +43 -43
  26. package/src/assets/styles.scss +7 -7
  27. package/src/components/OpacityControls.vue +222 -222
  28. package/src/components/PrimitiveControls.vue +158 -0
  29. package/src/components/ScaffoldTooltip.vue +142 -142
  30. package/src/components/ScaffoldVuer.md +44 -44
  31. package/src/components/ScaffoldVuer.vue +2006 -2007
  32. package/src/components/TreeControls.vue +699 -699
  33. package/src/components/index.js +7 -7
  34. package/src/credential.json +12 -0
  35. package/src/main.js +14 -14
  36. package/src/scripts/BaseModule.js +80 -80
  37. package/src/scripts/RendererModule.js +289 -289
  38. package/src/scripts/WebGL.js +94 -94
  39. package/src/scripts/annotation.js +5 -5
  40. package/src/scripts/eventNotifier.js +66 -66
  41. package/src/scripts/graphicsHighlight.js +134 -134
  42. package/src/scripts/organsRenderer.js +587 -587
  43. package/src/scripts/search.js +182 -182
  44. package/src/scripts/utilities.js +146 -146
  45. package/styleguide.config.js +22 -22
  46. package/vue.config.js +41 -41
  47. package/src/components/test.pdf +0 -0
  48. package/src/searchControls.vue +0 -122
package/package.json CHANGED
@@ -1,89 +1,89 @@
1
- {
2
- "name": "@abi-software/scaffoldvuer",
3
- "version": "0.2.3-alpha-2",
4
- "license": "Apache-2.0",
5
- "repository": {
6
- "type": "git",
7
- "url": "https://github.com/ABI-Software/scaffoldvuer.git"
8
- },
9
- "scripts": {
10
- "serve": "vue-cli-service serve --port 8081",
11
- "lint": "vue-cli-service lint --ext .js,.vue src",
12
- "build-bundle": "npm run build:bundle && npm run build:wc",
13
- "build:bundle": "vue-cli-service build --target lib --name scaffoldvuer ./src/components/index.js",
14
- "build:wc": "vue-cli-service build --target lib --name scaffoldvuer-wc ./src/ScaffoldVuer-wc.js --mode wc --env bundle --no-clean",
15
- "styleguide": "vue-cli-service styleguidist",
16
- "styleguide:build": "vue-cli-service styleguidist:build",
17
- "changelog": "auto-changelog -p --output CHANGELOG.md --template keepachangelog",
18
- "version": "npm run build-bundle;npm run changelog; git add CHANGELOG.md",
19
- "release:beta": "npm version prerelease --preid=beta; npm publish --tag beta",
20
- "release:minor": "npm version minor; npm publish",
21
- "release:patch": "npm version patch; npm publish"
22
- },
23
- "main": "./dist/scaffoldvuer.common.js",
24
- "files": [
25
- "dist/*",
26
- "src/*",
27
- "public/*",
28
- "*.json",
29
- "*.js"
30
- ],
31
- "dependencies": {
32
- "@abi-software/svg-sprite": "^0.3.0",
33
- "axios": "^0.21.2",
34
- "core-js": "^3.22.5",
35
- "current-script-polyfill": "^1.0.0",
36
- "element-ui": "^2.13.0",
37
- "google-spreadsheet": "^3.1.15",
38
- "lodash": "^4.17.21",
39
- "minisearch": "^6.0.1",
40
- "query-string": "^6.11.1",
41
- "vue": "^2.6.10",
42
- "vue-custom-element": "^3.3.0",
43
- "vue-drag-resize": "^1.3.2",
44
- "vue-router": "^3.5.1",
45
- "zincjs": "^1.2.0"
46
- },
47
- "devDependencies": {
48
- "@vue/cli-plugin-babel": "^4.0.0",
49
- "@vue/cli-plugin-eslint": "^4.5.15",
50
- "@vue/cli-service": "^4.5.18",
51
- "auto-changelog": "^2.4.0",
52
- "babel-eslint": "^10.0.3",
53
- "babel-plugin-component": "^1.1.1",
54
- "base64-inline-loader": "^1.1.1",
55
- "eslint": "^5.16.0",
56
- "eslint-plugin-vue": "^5.0.0",
57
- "node-sass": "^4.14.1",
58
- "raw-loader": "^0.5.1",
59
- "sass-loader": "^8.0.2",
60
- "simple-dropzone": "^0.8.1",
61
- "vue-cli-plugin-styleguidist": "^4.32.2",
62
- "vue-styleguidist": "^4.44.22",
63
- "vue-template-compiler": "^2.6.10",
64
- "webpack-node-externals": "^2.5.2"
65
- },
66
- "eslintConfig": {
67
- "root": true,
68
- "env": {
69
- "node": true
70
- },
71
- "extends": [
72
- "plugin:vue/essential",
73
- "eslint:recommended"
74
- ],
75
- "rules": {},
76
- "parserOptions": {
77
- "parser": "babel-eslint"
78
- }
79
- },
80
- "postcss": {
81
- "plugins": {
82
- "autoprefixer": {}
83
- }
84
- },
85
- "browserslist": [
86
- "> 1%",
87
- "last 2 versions"
88
- ]
89
- }
1
+ {
2
+ "name": "@abi-software/scaffoldvuer",
3
+ "version": "0.3.0",
4
+ "license": "Apache-2.0",
5
+ "repository": {
6
+ "type": "git",
7
+ "url": "https://github.com/ABI-Software/scaffoldvuer.git"
8
+ },
9
+ "scripts": {
10
+ "serve": "vue-cli-service serve --port 8081",
11
+ "lint": "vue-cli-service lint --ext .js,.vue src",
12
+ "build-bundle": "npm run build:bundle && npm run build:wc",
13
+ "build:bundle": "vue-cli-service build --target lib --name scaffoldvuer ./src/components/index.js",
14
+ "build:wc": "vue-cli-service build --target lib --name scaffoldvuer-wc ./src/ScaffoldVuer-wc.js --mode wc --env bundle --no-clean",
15
+ "styleguide": "vue-cli-service styleguidist",
16
+ "styleguide:build": "vue-cli-service styleguidist:build",
17
+ "changelog": "auto-changelog -p --output CHANGELOG.md --template keepachangelog",
18
+ "version": "npm run build-bundle;npm run changelog; git add CHANGELOG.md",
19
+ "release:beta": "npm version prerelease --preid=beta; npm publish --tag beta",
20
+ "release:minor": "npm version minor; npm publish",
21
+ "release:patch": "npm version patch; npm publish"
22
+ },
23
+ "main": "./dist/scaffoldvuer.common.js",
24
+ "files": [
25
+ "dist/*",
26
+ "src/*",
27
+ "public/*",
28
+ "*.json",
29
+ "*.js"
30
+ ],
31
+ "dependencies": {
32
+ "@abi-software/svg-sprite": "^0.3.0",
33
+ "axios": "^0.21.2",
34
+ "core-js": "^3.22.5",
35
+ "current-script-polyfill": "^1.0.0",
36
+ "element-ui": "^2.13.0",
37
+ "google-spreadsheet": "^3.1.15",
38
+ "lodash": "^4.17.21",
39
+ "minisearch": "^6.0.1",
40
+ "query-string": "^6.11.1",
41
+ "vue": "^2.6.10",
42
+ "vue-custom-element": "^3.3.0",
43
+ "vue-drag-resize": "^1.3.2",
44
+ "vue-router": "^3.5.1",
45
+ "zincjs": "^1.2.0"
46
+ },
47
+ "devDependencies": {
48
+ "@vue/cli-plugin-babel": "^4.0.0",
49
+ "@vue/cli-plugin-eslint": "^4.5.15",
50
+ "@vue/cli-service": "^4.5.18",
51
+ "auto-changelog": "^2.4.0",
52
+ "babel-eslint": "^10.0.3",
53
+ "babel-plugin-component": "^1.1.1",
54
+ "base64-inline-loader": "^1.1.1",
55
+ "eslint": "^5.16.0",
56
+ "eslint-plugin-vue": "^5.0.0",
57
+ "node-sass": "^4.14.1",
58
+ "raw-loader": "^0.5.1",
59
+ "sass-loader": "^8.0.2",
60
+ "simple-dropzone": "^0.8.1",
61
+ "vue-cli-plugin-styleguidist": "^4.32.2",
62
+ "vue-styleguidist": "^4.44.22",
63
+ "vue-template-compiler": "^2.6.10",
64
+ "webpack-node-externals": "^2.5.2"
65
+ },
66
+ "eslintConfig": {
67
+ "root": true,
68
+ "env": {
69
+ "node": true
70
+ },
71
+ "extends": [
72
+ "plugin:vue/essential",
73
+ "eslint:recommended"
74
+ ],
75
+ "rules": {},
76
+ "parserOptions": {
77
+ "parser": "babel-eslint"
78
+ }
79
+ },
80
+ "postcss": {
81
+ "plugins": {
82
+ "autoprefixer": {}
83
+ }
84
+ },
85
+ "browserslist": [
86
+ "> 1%",
87
+ "last 2 versions"
88
+ ]
89
+ }
package/public/index.html CHANGED
@@ -1,17 +1,17 @@
1
- <!DOCTYPE html>
2
- <html lang="en">
3
- <head>
4
- <meta charset="utf-8">
5
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
6
- <meta name="viewport" content="width=device-width,initial-scale=1.0">
7
- <link rel="icon" href="<%= BASE_URL %>favicon.ico">
8
- <title>scaffoldvuer</title>
9
- </head>
10
- <body>
11
- <noscript>
12
- <strong>We're sorry but scaffoldvuer doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
13
- </noscript>
14
- <div id="app"></div>
15
- <!-- built files will be auto injected -->
16
- </body>
17
- </html>
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
6
+ <meta name="viewport" content="width=device-width,initial-scale=1.0">
7
+ <link rel="icon" href="<%= BASE_URL %>favicon.ico">
8
+ <title>scaffoldvuer</title>
9
+ </head>
10
+ <body>
11
+ <noscript>
12
+ <strong>We're sorry but scaffoldvuer doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
13
+ </noscript>
14
+ <div id="app"></div>
15
+ <!-- built files will be auto injected -->
16
+ </body>
17
+ </html>