@abi-software/mapintegratedvuer 0.7.1-demo.0 → 0.7.2-vue3.0-alpha.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 (65) hide show
  1. package/LICENSE +201 -201
  2. package/README.md +150 -142
  3. package/assets/gazelle-icons-no-background.css +32 -0
  4. package/assets/styleguide.css +19 -19
  5. package/cypress.config.js +23 -23
  6. package/dist/index.html +17 -17
  7. package/dist/mapintegratedvuer.js +60394 -59859
  8. package/dist/mapintegratedvuer.umd.cjs +515 -907
  9. package/dist/matterport.pdf +0 -0
  10. package/dist/style.css +1 -1
  11. package/dist/test.txt +0 -0
  12. package/package.json +135 -136
  13. package/public/index.html +17 -17
  14. package/public/matterport.pdf +0 -0
  15. package/public/test.txt +0 -0
  16. package/q.json +690 -0
  17. package/reporter-config.json +9 -9
  18. package/src/App.vue +245 -245
  19. package/src/assets/_variables.scss +43 -43
  20. package/src/assets/fonts/mapicon-species.eot +0 -0
  21. package/src/assets/fonts/mapicon-species.ttf +0 -0
  22. package/src/assets/fonts/mapicon-species.woff +0 -0
  23. package/src/assets/header-icon.scss +67 -67
  24. package/src/assets/mapicon-species-style.css +41 -41
  25. package/src/assets/styles.scss +9 -9
  26. package/src/components/ContentBar.vue +376 -376
  27. package/src/components/ContentVuer.vue +217 -217
  28. package/src/components/ContextCard.vue +385 -385
  29. package/src/components/ContextHelp.vue +73 -73
  30. package/src/components/CustomSplitter.vue +151 -151
  31. package/src/components/DatasetHeader.vue +97 -97
  32. package/src/components/DialogToolbarContent.vue +464 -464
  33. package/src/components/EventBus.js +3 -3
  34. package/src/components/FlatmapContextCard.vue +134 -134
  35. package/src/components/MapContent.vue +333 -285
  36. package/src/components/ResizeSensor.vue +47 -47
  37. package/src/components/SearchControls.vue +115 -115
  38. package/src/components/SimulatedData.js +721 -721
  39. package/src/components/SplitDialog.vue +287 -287
  40. package/src/components/SplitFlow.vue +414 -414
  41. package/src/components/index.js +7 -7
  42. package/src/components/markerZoomLevelsHardCoded.js +255 -255
  43. package/src/components/scripts/utilities.js +173 -173
  44. package/src/components/viewers/Flatmap.vue +145 -145
  45. package/src/components/viewers/Iframe.vue +31 -31
  46. package/src/components/viewers/MultiFlatmap.vue +384 -384
  47. package/src/components/viewers/Plot.vue +23 -23
  48. package/src/components/viewers/Scaffold.vue +198 -198
  49. package/src/components/viewers/Simulation.vue +21 -21
  50. package/src/icons/yellowstar.js +1 -1
  51. package/src/main.js +32 -22
  52. package/src/mixins/ContentMixin.js +438 -438
  53. package/src/mixins/DynamicMarkerMixin.js +88 -88
  54. package/src/mixins/RetrieveContextCardMixin.js +82 -0
  55. package/src/mixins/S3Bucket.vue +37 -37
  56. package/src/stores/entries.js +40 -40
  57. package/src/stores/index.js +24 -16
  58. package/src/stores/settings.js +144 -144
  59. package/src/stores/splitFlow.js +523 -523
  60. package/static.json +7 -7
  61. package/tsconfig.json +19 -0
  62. package/vite.config.js +70 -66
  63. package/vite.static-build.js +12 -12
  64. package/vitest.workspace.js +3 -3
  65. package/vuese-generator.js +65 -0
@@ -1,31 +1,31 @@
1
- <template>
2
- <div class="map-iframe-container">
3
- <iframe class="my-iframe" :src="entry.resource.share_link"></iframe>
4
- </div>
5
- </template>
6
-
7
- <script>
8
- /* eslint-disable no-alert, no-console */
9
- import ContentMixin from "../../mixins/ContentMixin";
10
-
11
- export default {
12
- name: "Iframe",
13
- mixins: [ ContentMixin ],
14
- };
15
- </script>
16
-
17
- <!-- Add "scoped" attribute to limit CSS to this component only -->
18
- <style scoped lang="scss">
19
-
20
- .map-iframe-container {
21
- height: 100%;
22
- width: 100%;
23
- }
24
-
25
- .my-iframe {
26
- height:100%;
27
- width:100%;
28
- position:relative;
29
- border-width:0px;
30
- }
31
- </style>
1
+ <template>
2
+ <div class="map-iframe-container">
3
+ <iframe class="my-iframe" :src="entry.resource.share_link"></iframe>
4
+ </div>
5
+ </template>
6
+
7
+ <script>
8
+ /* eslint-disable no-alert, no-console */
9
+ import ContentMixin from "../../mixins/ContentMixin";
10
+
11
+ export default {
12
+ name: "Iframe",
13
+ mixins: [ ContentMixin ],
14
+ };
15
+ </script>
16
+
17
+ <!-- Add "scoped" attribute to limit CSS to this component only -->
18
+ <style scoped lang="scss">
19
+
20
+ .map-iframe-container {
21
+ height: 100%;
22
+ width: 100%;
23
+ }
24
+
25
+ .my-iframe {
26
+ height:100%;
27
+ width:100%;
28
+ position:relative;
29
+ border-width:0px;
30
+ }
31
+ </style>