@worksafevictoria/wcl7.5 1.1.0-beta.103 → 1.1.0-beta.105
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/SingleTaxonomy/index.vue +1 -1
- package/src/components/Global/DirectoryFilters/index.vue +5 -2
- package/src/components/Paragraphs/Chart/Constants.js +479 -479
- package/src/components/Paragraphs/Directory/Records/PRS/index.stories.js +34 -0
- package/src/components/Paragraphs/Directory/Records/PRS/index.vue +4 -0
- 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.105",
|
|
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"
|
|
@@ -27,6 +27,7 @@
|
|
|
27
27
|
@cleared="$emit('locationCleared')"
|
|
28
28
|
/>
|
|
29
29
|
</column>
|
|
30
|
+
filters.taxonomies:- {{ filters.taxonomies }}
|
|
30
31
|
<column
|
|
31
32
|
:md="!bundle ? 12 : bundle === 'isp' ? 4 : 8"
|
|
32
33
|
:sm="!bundle ? 12 : bundle === 'isp' ? 6 : 12"
|
|
@@ -39,13 +40,13 @@
|
|
|
39
40
|
:data="t"
|
|
40
41
|
:results="results"
|
|
41
42
|
:loading="isFiltering"
|
|
42
|
-
class="wcl-directory-filters__filterButton"
|
|
43
|
+
class="wcl-directory-filters__filterButton single-taxonomy"
|
|
43
44
|
@onFilter="emitFilterOpts($event)"
|
|
44
45
|
/>
|
|
45
46
|
<filter-button
|
|
46
47
|
v-if="!hideReset"
|
|
47
48
|
:is-reset="true"
|
|
48
|
-
class="wcl-directory-filters__filterButton"
|
|
49
|
+
class="wcl-directory-filters__filterButton filter-button"
|
|
49
50
|
@clicked="reset"
|
|
50
51
|
/>
|
|
51
52
|
</column>
|
|
@@ -116,6 +117,7 @@ export default {
|
|
|
116
117
|
// wait for hydration,
|
|
117
118
|
// then show all boxes together
|
|
118
119
|
this.loading = false
|
|
120
|
+
console.log('directoryFilters filters:- ', this.filters)
|
|
119
121
|
},
|
|
120
122
|
methods: {
|
|
121
123
|
emitFilterOpts(ev) {
|
|
@@ -163,6 +165,7 @@ export default {
|
|
|
163
165
|
background-position: 96% 12px;
|
|
164
166
|
margin-bottom: 16px;
|
|
165
167
|
transition: none;
|
|
168
|
+
background-image: url('./../../../assets/icons/search.svg')
|
|
166
169
|
}
|
|
167
170
|
&__filterButton {
|
|
168
171
|
display: inline-block;
|