@abi-software/mapintegratedvuer 0.7.2-vue3.0-alpha.0 → 1.0.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 -150
  3. package/assets/styleguide.css +19 -19
  4. package/cypress.config.js +23 -23
  5. package/dist/index.html +17 -17
  6. package/dist/mapintegratedvuer.js +74203 -73758
  7. package/dist/mapintegratedvuer.umd.cjs +878 -515
  8. package/dist/style.css +1 -1
  9. package/package.json +134 -135
  10. package/public/index.html +17 -17
  11. package/reporter-config.json +9 -9
  12. package/src/App.vue +245 -245
  13. package/src/assets/_variables.scss +43 -43
  14. package/src/assets/fonts/mapicon-species.eot +0 -0
  15. package/src/assets/fonts/mapicon-species.ttf +0 -0
  16. package/src/assets/fonts/mapicon-species.woff +0 -0
  17. package/src/assets/header-icon.scss +67 -67
  18. package/src/assets/mapicon-species-style.css +41 -41
  19. package/src/assets/styles.scss +9 -9
  20. package/src/components/ContentBar.vue +376 -376
  21. package/src/components/ContentVuer.vue +217 -217
  22. package/src/components/ContextCard.vue +385 -385
  23. package/src/components/ContextHelp.vue +73 -73
  24. package/src/components/CustomSplitter.vue +151 -151
  25. package/src/components/DatasetHeader.vue +97 -97
  26. package/src/components/DialogToolbarContent.vue +464 -464
  27. package/src/components/EventBus.js +3 -3
  28. package/src/components/FlatmapContextCard.vue +134 -134
  29. package/src/components/MapContent.vue +328 -333
  30. package/src/components/ResizeSensor.vue +47 -47
  31. package/src/components/SearchControls.vue +115 -115
  32. package/src/components/SimulatedData.js +721 -721
  33. package/src/components/SplitDialog.vue +287 -287
  34. package/src/components/SplitFlow.vue +414 -414
  35. package/src/components/index.js +7 -7
  36. package/src/components/markerZoomLevelsHardCoded.js +255 -255
  37. package/src/components/scripts/utilities.js +173 -173
  38. package/src/components/viewers/Flatmap.vue +145 -145
  39. package/src/components/viewers/Iframe.vue +31 -31
  40. package/src/components/viewers/MultiFlatmap.vue +384 -384
  41. package/src/components/viewers/Plot.vue +23 -23
  42. package/src/components/viewers/Scaffold.vue +198 -198
  43. package/src/components/viewers/Simulation.vue +21 -21
  44. package/src/icons/yellowstar.js +1 -1
  45. package/src/main.js +31 -31
  46. package/src/mixins/ContentMixin.js +438 -438
  47. package/src/mixins/DynamicMarkerMixin.js +88 -88
  48. package/src/mixins/S3Bucket.vue +37 -37
  49. package/src/stores/entries.js +40 -40
  50. package/src/stores/index.js +23 -23
  51. package/src/stores/settings.js +144 -144
  52. package/src/stores/splitFlow.js +523 -523
  53. package/static.json +7 -7
  54. package/vite.config.js +70 -70
  55. package/vite.static-build.js +12 -12
  56. package/vitest.workspace.js +3 -3
  57. package/vuese-generator.js +65 -65
  58. package/assets/gazelle-icons-no-background.css +0 -32
  59. package/dist/matterport.pdf +0 -0
  60. package/dist/test.txt +0 -0
  61. package/public/matterport.pdf +0 -0
  62. package/public/test.txt +0 -0
  63. package/q.json +0 -690
  64. package/src/mixins/RetrieveContextCardMixin.js +0 -82
  65. package/tsconfig.json +0 -19
@@ -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>