@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 +3 -2
- package/src/components/Global/DirectoryFilters/index.vue +8 -0
- package/src/components/Paragraphs/Chart/Constants.js +479 -479
- package/src/components/Paragraphs/Map/Constants.js +4790 -0
- package/src/components/Paragraphs/Map/index.mdx +29 -0
- package/src/components/Paragraphs/Map/index.stories.js +15 -0
- package/src/components/Paragraphs/Map/index.vue +295 -0
- package/src/components/Paragraphs/Map/postcode_location.json +3543 -0
- package/src/components/SubComponents/FormInstance/components/renderer/index.vue +23 -7
- package/src/components/SubComponents/FormInstance/models/overrides/file.js +7 -2
- package/src/index.js +2 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@worksafevictoria/wcl7.5",
|
|
3
|
-
"version": "1.1.0-beta.
|
|
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) {
|