unify-external-plugin-platform 0.0.2-3 → 0.0.2-6

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 (60) hide show
  1. package/.idea/misc.xml +6 -0
  2. package/.idea/modules.xml +8 -0
  3. package/.idea/unify-external-plugin-platform.iml +12 -0
  4. package/.idea/vcs.xml +6 -0
  5. package/dist/demo.html +1 -0
  6. package/dist/external-plugin.common.js +3128 -0
  7. package/dist/external-plugin.common.js.map +1 -0
  8. package/dist/external-plugin.css +1 -0
  9. package/dist/external-plugin.umd.js +3147 -0
  10. package/dist/external-plugin.umd.js.map +1 -0
  11. package/dist/external-plugin.umd.min.js +8 -0
  12. package/dist/external-plugin.umd.min.js.map +1 -0
  13. package/{packages/zs-empty/src/assets/images/img_blank_empty.png → dist/img/img_blank_empty.92ddadbb.png} +0 -0
  14. package/package.json +3 -7
  15. package/packages/index.js +3 -3
  16. package/vue.config.js +1 -0
  17. package/docs/.vuepress/public/logo.png +0 -0
  18. package/packages/id-card-reader-demo/src/id-card-reader-demo.vue +0 -142
  19. package/packages/scanner-high-camera-jieyu/src/component/scanner-high-camera-component.vue +0 -292
  20. package/packages/scanner-high-camera-jieyu/src/scanner-high-camera-jieyu.vue +0 -174
  21. package/packages/zs-empty/src/zs-empty.vue +0 -42
  22. package/public/favicon.ico +0 -0
  23. package/public/img/icons/android-chrome-192x192.png +0 -0
  24. package/public/img/icons/android-chrome-512x512.png +0 -0
  25. package/public/img/icons/android-chrome-maskable-192x192.png +0 -0
  26. package/public/img/icons/android-chrome-maskable-512x512.png +0 -0
  27. package/public/img/icons/apple-touch-icon-120x120.png +0 -0
  28. package/public/img/icons/apple-touch-icon-152x152.png +0 -0
  29. package/public/img/icons/apple-touch-icon-180x180.png +0 -0
  30. package/public/img/icons/apple-touch-icon-60x60.png +0 -0
  31. package/public/img/icons/apple-touch-icon-76x76.png +0 -0
  32. package/public/img/icons/apple-touch-icon.png +0 -0
  33. package/public/img/icons/favicon-16x16.png +0 -0
  34. package/public/img/icons/favicon-32x32.png +0 -0
  35. package/public/img/icons/msapplication-icon-144x144.png +0 -0
  36. package/public/img/icons/mstile-150x150.png +0 -0
  37. package/public/img/icons/safari-pinned-tab.svg +0 -3
  38. package/public/index.html +0 -23
  39. package/public/robots.txt +0 -2
  40. package/src/App.vue +0 -15
  41. package/src/assets/images/reg-developing.png +0 -0
  42. package/src/assets/logo.png +0 -0
  43. package/src/components/404.vue +0 -17
  44. package/src/components/HelloWorld.vue +0 -61
  45. package/src/main.ts +0 -22
  46. package/src/registerServiceWorker.ts +0 -32
  47. package/src/router/id-card-reader/id-card-reader.ts +0 -19
  48. package/src/router/index.ts +0 -46
  49. package/src/router/scan/scan.ts +0 -19
  50. package/src/shims-tsx.d.ts +0 -11
  51. package/src/shims-vue.d.ts +0 -4
  52. package/src/store/index.ts +0 -17
  53. package/src/views/AboutView.vue +0 -5
  54. package/src/views/HomeView.vue +0 -109
  55. package/src/views/id-card-reader/id-card-reader-page.vue +0 -139
  56. package/src/views/id-card-reader/model/conatant/id-card-form-attr.ts +0 -31
  57. package/src/views/id-card-reader/model/vo/id-card.ts +0 -44
  58. package/src/views/layout/home-layout.vue +0 -72
  59. package/src/views/layout/model/menu-data.ts +0 -29
  60. package/src/views/scan/scan-page.vue +0 -56
package/.idea/misc.xml ADDED
@@ -0,0 +1,6 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project version="4">
3
+ <component name="WebPackConfiguration">
4
+ <option name="mode" value="DISABLED" />
5
+ </component>
6
+ </project>
@@ -0,0 +1,8 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project version="4">
3
+ <component name="ProjectModuleManager">
4
+ <modules>
5
+ <module fileurl="file://$PROJECT_DIR$/.idea/unify-external-plugin-platform.iml" filepath="$PROJECT_DIR$/.idea/unify-external-plugin-platform.iml" />
6
+ </modules>
7
+ </component>
8
+ </project>
@@ -0,0 +1,12 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <module type="WEB_MODULE" version="4">
3
+ <component name="NewModuleRootManager">
4
+ <content url="file://$MODULE_DIR$">
5
+ <excludeFolder url="file://$MODULE_DIR$/temp" />
6
+ <excludeFolder url="file://$MODULE_DIR$/.tmp" />
7
+ <excludeFolder url="file://$MODULE_DIR$/tmp" />
8
+ </content>
9
+ <orderEntry type="inheritedJdk" />
10
+ <orderEntry type="sourceFolder" forTests="false" />
11
+ </component>
12
+ </module>
package/.idea/vcs.xml ADDED
@@ -0,0 +1,6 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project version="4">
3
+ <component name="VcsDirectoryMappings">
4
+ <mapping directory="$PROJECT_DIR$" vcs="Git" />
5
+ </component>
6
+ </project>
package/dist/demo.html ADDED
@@ -0,0 +1 @@
1
+ <!doctype html><meta charset="utf-8"><title>external-plugin demo</title><script src="./external-plugin.umd.js"></script><link rel="stylesheet" href="./external-plugin.css"><script>console.log(external-plugin)</script>