Skip to content

Commit

Permalink
Metadata form attempt 5 + updated imports
Browse files Browse the repository at this point in the history
  • Loading branch information
RoryPTB committed Jan 16, 2024
1 parent fc28996 commit 82c3bd5
Show file tree
Hide file tree
Showing 9 changed files with 229 additions and 82 deletions.
115 changes: 100 additions & 15 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,13 @@
"json-schema-merge-allof": "^0.8.1",
"leaflet": "^1.9.4",
"leaflet.markercluster": "^1.5.3",
"node-fetch": "^3.3.2",
"roboto-fontface": "*",
"vue": "^3.2.0",
"vue-leaflet": "^0.1.0",
"vue-router": "^4.0.0",
"vue3-apexcharts": "^1.4.4",
"vuetify": "^3.3.15",
"vuetify": "^3.4.0-beta.1",
"webfontloader": "^1.0.0"
},
"devDependencies": {
Expand Down
8 changes: 2 additions & 6 deletions src/components/BBoxEditor.vue
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
</template>

<script>
import { defineComponent, ref, watch, onMounted } from 'vue';
import { defineComponent, ref, watch } from 'vue';
import { LMap, LTileLayer, LControlLayers, LRectangle, LFeatureGroup } from "@vue-leaflet/vue-leaflet";
import { LatLng, LatLngBounds } from "leaflet";
import "leaflet/dist/leaflet.css";
Expand Down Expand Up @@ -123,10 +123,6 @@ export default defineComponent({
}
}, { deep: true });
onMounted(() => {
// Any additional logic to run on component mount
});
return {
map,
features,
Expand All @@ -140,5 +136,5 @@ export default defineComponent({
</script>
<style>
@import "~leaflet/dist/leaflet.css";
@import "leaflet/dist/leaflet.css";
</style>
9 changes: 3 additions & 6 deletions src/components/CsvToBUFRForm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -245,12 +245,9 @@
</template>

<script>
import { defineComponent, ref,onBeforeMount, onMounted, watch, computed} from 'vue';
import { VFileInput, VCardActions, VBtn, VCard, VCardText, VCardItem, VChip, VTooltip, VSwitch } from 'vuetify/lib/components/index.mjs';
import { VList, VListItem, VListSubheader, VSheet, VContainer, VCardTitle, VIcon, VDialog} from 'vuetify/lib/components/index.mjs';
import { VCardSubtitle} from 'vuetify/lib/components/index.mjs';
import { VDataTable} from 'vuetify/lib/labs/VDataTable/index.mjs';
import { VStepper, VStepperHeader, VStepperItem, VStepperWindow, VStepperWindowItem, VStepperActions} from 'vuetify/lib/labs/VStepper/index.mjs';
import { defineComponent, ref, onMounted, watch, computed} from 'vue';
import { VFileInput, VCardActions, VBtn, VCard, VCardText, VCardItem, VChip, VTooltip, VSwitch, VList, VListItem, VContainer, VCardTitle, VIcon, VDialog, VCardSubtitle, VDataTable } from 'vuetify/lib/components/index.mjs';
import { VStepper, VStepperHeader, VStepperItem, VStepperWindow, VStepperWindowItem, VStepperActions} from 'vuetify/lib/components/VStepper/index.mjs';
import InspectBufrButton from '@/components/InspectBufrButton.vue';
import DownloadButton from '@/components/DownloadButton.vue';
import TopicHierarchySelector from '@/components/TopicHierarchySelector.vue';
Expand Down
Loading

0 comments on commit 82c3bd5

Please sign in to comment.