@worksafevictoria/wcl7.5 1.1.0-beta.104 → 1.1.0-beta.106

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@worksafevictoria/wcl7.5",
3
- "version": "1.1.0-beta.104",
3
+ "version": "1.1.0-beta.106",
4
4
  "main": "src/index.js",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -49,7 +49,8 @@
49
49
  "storybook-addon-deep-controls": "^0.6.2",
50
50
  "vue": "^3.3.4",
51
51
  "vue-google-charts": "^1.1.0",
52
- "vue-scrollto": "^2.20.0"
52
+ "vue-scrollto": "^2.20.0",
53
+ "vue3-google-map": "^0.21.1"
53
54
  },
54
55
  "resolutions": {
55
56
  "formiojs": "4.13.13"
@@ -116,6 +116,14 @@ export default {
116
116
  // wait for hydration,
117
117
  // then show all boxes together
118
118
  this.loading = false
119
+
120
+ // Log the filters data
121
+ console.log("Filters Data:", this.filters);
122
+
123
+ // Log taxonomies specifically
124
+ if (this.filters.taxonomies) {
125
+ console.log("Taxonomies:", this.filters.taxonomies.map(taxonomy => taxonomy.name));
126
+ }
119
127
  },
120
128
  methods: {
121
129
  emitFilterOpts(ev) {