@worksafevictoria/wcl7.5 1.1.0-beta.15 → 1.1.0-beta.17
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 -3
- package/src/components/Global/DirectoryFilters/SingleTaxonomy/index.vue +1 -0
- package/src/components/Paragraphs/Webform/index.stories.js +25 -0
- package/src/components/Paragraphs/Webform/index.vue +1 -1
- package/src/components/SubComponents/FormAddressPostcode/index.stories.js +3 -28
- package/src/components/SubComponents/VideoThumbnail/index.vue +4 -7
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.17",
|
|
4
4
|
"main": "src/index.js",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
"dependencies": {
|
|
41
41
|
"@formio/vue": "^5.0.0",
|
|
42
42
|
"@fortawesome/fontawesome-free": "^6.4.2",
|
|
43
|
-
"@storybook/cli": "^7.6.
|
|
43
|
+
"@storybook/cli": "^7.6.20",
|
|
44
44
|
"axios": "^1.6.0",
|
|
45
45
|
"bootstrap": "^5.3.2",
|
|
46
46
|
"bootstrap-vue": "^2.23.1",
|
|
@@ -85,7 +85,7 @@
|
|
|
85
85
|
"prettier": "^3.0.3",
|
|
86
86
|
"react": "^18.2.0",
|
|
87
87
|
"react-dom": "^18.2.0",
|
|
88
|
-
"sass": "
|
|
88
|
+
"sass": "1.77.6",
|
|
89
89
|
"sass-loader": "^13.3.2",
|
|
90
90
|
"semantic-release": "^19.0.3",
|
|
91
91
|
"storybook": "^7.5.1",
|
|
@@ -36,6 +36,31 @@ export default {
|
|
|
36
36
|
table: {
|
|
37
37
|
disable: true
|
|
38
38
|
}
|
|
39
|
+
},
|
|
40
|
+
changed: {
|
|
41
|
+
table: {
|
|
42
|
+
disable: true
|
|
43
|
+
}
|
|
44
|
+
},
|
|
45
|
+
submitted: {
|
|
46
|
+
table: {
|
|
47
|
+
disable: true
|
|
48
|
+
}
|
|
49
|
+
},
|
|
50
|
+
rendered: {
|
|
51
|
+
table: {
|
|
52
|
+
disable: true
|
|
53
|
+
}
|
|
54
|
+
},
|
|
55
|
+
nextPage: {
|
|
56
|
+
table: {
|
|
57
|
+
disable: true
|
|
58
|
+
}
|
|
59
|
+
},
|
|
60
|
+
prevPage: {
|
|
61
|
+
table: {
|
|
62
|
+
disable: true
|
|
63
|
+
}
|
|
39
64
|
}
|
|
40
65
|
},
|
|
41
66
|
args: {
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
|
|
25
25
|
<script>
|
|
26
26
|
import FormHandler from '../../SubComponents/FormInstance/components/handler/index.vue'
|
|
27
|
-
import colors from '../../../includes/scss/vars/src/colors.scss'
|
|
27
|
+
import colors from '../../../includes/scss/vars/src/colors.scss?inline'
|
|
28
28
|
|
|
29
29
|
export default {
|
|
30
30
|
name: 'WebformPara',
|
|
@@ -3,34 +3,7 @@ import FormAddressPostcode from './index.vue'
|
|
|
3
3
|
export default {
|
|
4
4
|
title: 'SubComponents/FormAddressPostcode',
|
|
5
5
|
component: FormAddressPostcode,
|
|
6
|
-
|
|
7
|
-
showShadow: {
|
|
8
|
-
control: 'boolean'
|
|
9
|
-
},
|
|
10
|
-
inputPlaceholder: {
|
|
11
|
-
control: 'text'
|
|
12
|
-
},
|
|
13
|
-
showFullAddress: {
|
|
14
|
-
control: 'boolean'
|
|
15
|
-
},
|
|
16
|
-
geocode: {
|
|
17
|
-
control: 'boolean'
|
|
18
|
-
},
|
|
19
|
-
reverseGeocode: {
|
|
20
|
-
control: 'boolean'
|
|
21
|
-
},
|
|
22
|
-
baseUrl: {
|
|
23
|
-
control: 'text'
|
|
24
|
-
},
|
|
25
|
-
inputClassName: {
|
|
26
|
-
control: 'text'
|
|
27
|
-
}
|
|
28
|
-
}
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
export const Default = {
|
|
33
|
-
|
|
6
|
+
tags: ['autodocs'],
|
|
34
7
|
args: {
|
|
35
8
|
showShadow: false,
|
|
36
9
|
inputPlaceholder: 'Search for a suburb or postcode',
|
|
@@ -41,3 +14,5 @@ export const Default = {
|
|
|
41
14
|
inputClassName: 'class-name'
|
|
42
15
|
}
|
|
43
16
|
}
|
|
17
|
+
|
|
18
|
+
export const Default = {}
|
|
@@ -127,13 +127,13 @@ export default {
|
|
|
127
127
|
}
|
|
128
128
|
|
|
129
129
|
.modal-header {
|
|
130
|
-
position: absolute;
|
|
131
130
|
top: 0;
|
|
132
131
|
height: 45px;
|
|
133
132
|
background: $white;
|
|
134
133
|
z-index: 1;
|
|
135
|
-
|
|
136
|
-
|
|
134
|
+
margin-left: auto;
|
|
135
|
+
margin-right:0%;
|
|
136
|
+
|
|
137
137
|
&__wrap {
|
|
138
138
|
position: relative;
|
|
139
139
|
width: 100%;
|
|
@@ -152,7 +152,7 @@ export default {
|
|
|
152
152
|
}
|
|
153
153
|
}
|
|
154
154
|
.modal-body {
|
|
155
|
-
padding: 32px;
|
|
155
|
+
padding: 0px 32px 32px;
|
|
156
156
|
margin-top: 16px;
|
|
157
157
|
.video-player {
|
|
158
158
|
@include fp(min-height, 250, 588);
|
|
@@ -183,9 +183,6 @@ export default {
|
|
|
183
183
|
.modal-footer {
|
|
184
184
|
border: none;
|
|
185
185
|
}
|
|
186
|
-
.modal-footer {
|
|
187
|
-
display: none;
|
|
188
|
-
}
|
|
189
186
|
}
|
|
190
187
|
</style>
|
|
191
188
|
<style lang="scss" scoped>
|