@worksafevictoria/wcl7.5 1.17.0-beta.2 → 1.17.0-beta.4

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.
Files changed (31) hide show
  1. package/package.json +1 -1
  2. package/src/assets/icons/chevron-right-icon.svg +14 -0
  3. package/src/assets/icons/notepad.svg +93 -0
  4. package/src/assets/icons/question.svg +7 -0
  5. package/src/components/Common/CardGrid/index.vue +83 -74
  6. package/src/components/Common/CardGridItem/index.vue +31 -4
  7. package/src/components/Containers/SectionGroup/index.stories.js +28 -27
  8. package/src/components/Containers/SectionGroup/index.vue +6 -0
  9. package/src/components/Global/AppHeaderNew/mobile.scss +1 -0
  10. package/src/components/Global/AppHeaderNew/styles.scss +6 -5
  11. package/src/components/Global/HeroHeader/index.vue +74 -57
  12. package/src/components/Paragraphs/Calculator/CardContainer/index.vue +68 -60
  13. package/src/components/Paragraphs/Calculator/index.vue +24 -22
  14. package/src/components/Paragraphs/RTWPlanner/CardContainer/index.vue +133 -0
  15. package/src/components/Paragraphs/RTWPlanner/Constants.js +410 -0
  16. package/src/components/Paragraphs/RTWPlanner/Footer/index.vue +32 -0
  17. package/src/components/Paragraphs/RTWPlanner/{NavBar → Header}/index.vue +20 -9
  18. package/src/components/Paragraphs/RTWPlanner/HomePage/index.vue +72 -0
  19. package/src/components/Paragraphs/RTWPlanner/Injuries/index.vue +174 -0
  20. package/src/components/Paragraphs/RTWPlanner/index.stories.js +68 -15
  21. package/src/components/Paragraphs/RTWPlanner/index.vue +99 -31
  22. package/src/components/Paragraphs/SelectableCards/Control/index.stories.js +31 -11
  23. package/src/components/Paragraphs/SelectableCards/cardbody.vue +9 -10
  24. package/src/components/Paragraphs/SelectableCards/cardtop.vue +23 -16
  25. package/src/components/Paragraphs/SelectableCards/index.stories.js +29 -8
  26. package/src/components/Paragraphs/SelectableCards/index.vue +124 -50
  27. package/src/components/SubComponents/Breadcrumb/index.vue +40 -7
  28. package/src/includes/scss/vars/src/colors.module.scss +3 -0
  29. package/src/includes/scss/vars/src/colors.scss +3 -0
  30. package/src/mock/control-selectable-cards.js +68 -25
  31. package/src/components/Paragraphs/RTWPlanner/Home/index.vue +0 -83
@@ -25,6 +25,7 @@
25
25
  :weights="weights || []"
26
26
  @nextScreen="nextScreen"
27
27
  />
28
+
28
29
  <card-container
29
30
  v-show="screen === 2"
30
31
  ref="heightCardContainer"
@@ -34,6 +35,7 @@
34
35
  @nextScreen="nextScreen"
35
36
  @prevScreen="prevScreen"
36
37
  />
38
+
37
39
  <risk-level
38
40
  v-show="screen === 3"
39
41
  :risk-points="riskPoints"
@@ -70,41 +72,41 @@ export default {
70
72
  CardContainer,
71
73
  ProgressBar,
72
74
  RiskLevel,
73
- RichText
75
+ RichText,
74
76
  },
75
77
  props: {
76
78
  items: {
77
79
  type: Array,
78
- default: () => []
80
+ default: () => [],
79
81
  },
80
82
  steeperStyle: {
81
83
  type: Boolean,
82
- default: true
84
+ default: true,
83
85
  },
84
86
  titles: {
85
87
  type: Object,
86
- default: () => {}
88
+ default: () => {},
87
89
  },
88
90
  weights: {
89
91
  type: Array,
90
- default: () => []
92
+ default: () => [],
91
93
  },
92
94
  heights: {
93
95
  type: Array,
94
- default: () => []
96
+ default: () => [],
95
97
  },
96
98
  ffhPage: {
97
99
  type: Object,
98
- default: () => {}
100
+ default: () => {},
99
101
  },
100
102
  heroHeader: {
101
103
  type: Object,
102
- default: () => {}
104
+ default: () => {},
103
105
  },
104
106
  riskResults: {
105
107
  type: Array,
106
- default: () => []
107
- }
108
+ default: () => [],
109
+ },
108
110
  },
109
111
  data() {
110
112
  return {
@@ -112,14 +114,14 @@ export default {
112
114
  selectedWeight: null,
113
115
  selectedHeight: null,
114
116
  barItems: [],
115
- g: 9.81
117
+ g: 9.81,
116
118
  }
117
119
  },
118
120
  computed: {
119
121
  updateBar() {
120
122
  const data = this.barItems
121
123
  const currentIndex = data.findIndex(
122
- (item) => item.value === this.screen.toString()
124
+ (item) => item.value === this.screen.toString(),
123
125
  )
124
126
 
125
127
  if (data.length === this.screen) {
@@ -144,13 +146,13 @@ export default {
144
146
  }
145
147
 
146
148
  let speedImpactMS = Math.sqrt(
147
- 2 * Number(this.selectedHeight.value) * this.g
149
+ 2 * Number(this.selectedHeight.value) * this.g,
148
150
  ).toFixed(2)
149
151
  let speedImpactKmH = (
150
152
  Math.sqrt(2 * Number(this.selectedHeight.value) * this.g) * 3.6
151
153
  ).toFixed(2)
152
154
  let timeImpact = Math.sqrt(
153
- (2 * Number(this.selectedHeight.value)) / this.g
155
+ (2 * Number(this.selectedHeight.value)) / this.g,
154
156
  ).toFixed(2)
155
157
  let energyImpact = (
156
158
  Number(this.selectedHeight.value) *
@@ -177,10 +179,10 @@ export default {
177
179
  speedImpactMS: speedImpactMS,
178
180
  speedImpactKmH: speedImpactKmH,
179
181
  timeImpact: timeImpact,
180
- energyImpact: energyImpact
181
- }
182
+ energyImpact: energyImpact,
183
+ },
182
184
  ]
183
- }
185
+ },
184
186
  },
185
187
  created() {
186
188
  this.barItems = JSON.parse(JSON.stringify(this.items))
@@ -218,7 +220,7 @@ export default {
218
220
 
219
221
  this.$nextTick(() => {
220
222
  const cardElement = this.$refs.weightCardContainer.$el.querySelector(
221
- '#selectable-cc-card-0'
223
+ '#selectable-cc-card-0',
222
224
  )
223
225
  if (cardElement !== null) {
224
226
  cardElement.focus()
@@ -265,16 +267,16 @@ export default {
265
267
  label: labelVar,
266
268
  mass: massVar,
267
269
  height: heightVar,
268
- energy: energyVar
270
+ energy: energyVar,
269
271
  }
270
272
  // fire the event
271
273
  this.$gtm.push({
272
274
  event: 'custom.interaction.droppedobject.click',
273
- ...attrs
275
+ ...attrs,
274
276
  })
275
277
  }
276
- }
277
- }
278
+ },
279
+ },
278
280
  }
279
281
  </script>
280
282
 
@@ -0,0 +1,133 @@
1
+ <script setup>
2
+ import { ref } from 'vue'
3
+ import SelectableCards from './../../SelectableCards/index.vue'
4
+ import RichText from './../../RichText/index.vue'
5
+ import CtaButton from './../../../SubComponents/CtaButton/index.vue'
6
+ import CaretRight from './../../../../assets/icons/caret-right.svg?url'
7
+
8
+ const emit = defineEmits(['nextScreen'])
9
+
10
+ const props = defineProps({
11
+ titles: {
12
+ type: Object,
13
+ default: () => [],
14
+ },
15
+ cards: {
16
+ type: Array,
17
+ default: () => [],
18
+ },
19
+ iconIsBordered: {
20
+ type: Boolean,
21
+ default: false,
22
+ },
23
+ buttonRole: {
24
+ type: String,
25
+ default: 'none',
26
+ },
27
+ })
28
+
29
+ const selectedCard = ref(null)
30
+ const isButtonDisabled = ref(true)
31
+
32
+ function selectedCardChangeFocus(card) {
33
+ isButtonDisabled.value = false
34
+ selectedCard.value = card
35
+ }
36
+
37
+ function selectedButtonRole(card) {
38
+ selectedCard.value = card
39
+ }
40
+
41
+ function handleNextScreen() {
42
+ // Only emit the 'nextScreen' event if the button is not disabled
43
+ if (!isButtonDisabled.value && selectedCard.value) {
44
+ emit('nextScreen', selectedCard.value)
45
+ }
46
+ }
47
+ </script>
48
+
49
+ <template>
50
+ <selectable-cards
51
+ ref="cardDeck"
52
+ :button-role="buttonRole"
53
+ :columns="3"
54
+ :title="titles && titles.heading"
55
+ :sub-heading="titles && titles.subHeading"
56
+ :cards="cards"
57
+ :icon-is-bordered="iconIsBordered"
58
+ :card-type="'control-selectcards'"
59
+ class="rtw-card-container control-selectablecards"
60
+ @selected="selectedCardChangeFocus"
61
+ @selected-button-role="selectedButtonRole"
62
+ >
63
+ <template v-slot:cardGridFooter>
64
+ <container class="rtw-card-container__footer">
65
+ <row>
66
+ <column>
67
+ <cta-button
68
+ ref="calNextBtn"
69
+ :glyph="CaretRight"
70
+ class="rtw-card-container__footer--next-btn"
71
+ :disabled="isButtonDisabled"
72
+ @clicked="handleNextScreen"
73
+ >Next</cta-button
74
+ >
75
+ </column>
76
+ </row>
77
+ </container>
78
+ </template>
79
+
80
+ <!-- provide modal content via scoped slots (purely presentational) -->
81
+ <template #modalTitle="{ card }">
82
+ <rich-text
83
+ class="wcl-injury-modal__card--title"
84
+ :tag="'h2'"
85
+ :tag-class="'card-title'"
86
+ :content="card?.name"
87
+ />
88
+ </template>
89
+
90
+ <template #modalBody="{ card }">
91
+ <div class="wcl-injury-modal__card">
92
+ <rich-text
93
+ :tag="'h5'"
94
+ class="wcl-injury-modal__card--content"
95
+ :content="card?.value"
96
+ />
97
+ <rich-text
98
+ class="wcl-injury-modal__card--description"
99
+ :content="card?.description"
100
+ />
101
+ </div>
102
+ </template>
103
+ </selectable-cards>
104
+ </template>
105
+ <style lang="scss" scoped>
106
+ @import './../../../../includes//scss/all.scss';
107
+
108
+ .rtw-card-container {
109
+ &__footer {
110
+ &--next-btn {
111
+ float: right;
112
+ }
113
+ .wcl-cta.default:disabled {
114
+ background-color: $gray-alt;
115
+ color: grey;
116
+ cursor: not-allowed; /* Change cursor to not-allowed */
117
+ }
118
+ }
119
+ }
120
+ .wcl-injury-modal {
121
+ &__card {
122
+ &--title {
123
+ font-weight: normal;
124
+ }
125
+
126
+ &--content {
127
+ color: #b5321d;
128
+ font-weight: normal;
129
+ margin: 15px 0;
130
+ }
131
+ }
132
+ }
133
+ </style>
@@ -0,0 +1,410 @@
1
+ export const textMedia = {
2
+ title: 'Return to Work Planner',
3
+ content:
4
+ '<p>An easy-to-use online guide that steps employers through the return to work process and meeting legal obligations for non major injuries.</p>',
5
+ image: {
6
+ url:
7
+ process.env.CONTENT_API_URL +
8
+ '/sites/default/files/2020-04/Topic-Coronavirus-COVID-19.jpg',
9
+ alt: 'Some alt text',
10
+ },
11
+ rtl: true,
12
+ titleTag: 'h1',
13
+ }
14
+
15
+ export const selectInjuries = {
16
+ physical: {
17
+ title: 'Physical injuries',
18
+ content: `<p>
19
+ Physical injuries include anything that occurs to an employee’s body.
20
+ This tool supports employers to manage the return to work process
21
+ for non-complex physical injuries only.
22
+ </p><p><a href='/return-work-physical' class='cta-button'>Continue to planner</a></p>`,
23
+ image: {
24
+ url:
25
+ process.env.CONTENT_API_URL +
26
+ '/sites/default/files/2020-04/Topic-Coronavirus-COVID-19.jpg',
27
+ alt: 'Some alt text',
28
+ },
29
+ rtl: true,
30
+ titleTag: 'h2',
31
+ },
32
+ mental: {
33
+ title: 'Mental injuries',
34
+ content: `<p>
35
+ Mental injuries are complex and require tailored information for
36
+ employers to support injured workers with their return to work. This
37
+ tool does not currently give guidance for mental injuries.
38
+ </p><p><a href='/return-work-mental-injuries' class='cta-button white'>More information</a></p>`,
39
+ image: {
40
+ url:
41
+ process.env.CONTENT_API_URL +
42
+ '/sites/default/files/2020-04/Topic-Coronavirus-COVID-19.jpg',
43
+ alt: 'Some alt text',
44
+ },
45
+ rtl: true,
46
+ titleTag: 'h2',
47
+ },
48
+ other: {
49
+ title: 'Other',
50
+ content: `<p>
51
+ If you’re unsure about the injury type, reach out to your agent to
52
+ get more information.
53
+ </p><p><a href='/return-work-other' class='cta-button white'>More information</a></p>`,
54
+
55
+ image: {
56
+ url:
57
+ process.env.CONTENT_API_URL +
58
+ '/sites/default/files/2020-04/Topic-Coronavirus-COVID-19.jpg',
59
+ alt: 'Some alt text',
60
+ },
61
+ rtl: true,
62
+ titleTag: 'h2',
63
+ },
64
+ }
65
+
66
+ export const heroHeader = {
67
+ title: 'What kind of Physical Injury?',
68
+ description:
69
+ '<p>The tool is designed to provide guidance for non-complex physical injuries only. If you have multiple condition apply, please select the most severe condition. Inf noe of the complex coniditions apply. please progress to the planner.</p>',
70
+ }
71
+
72
+ export const cardTitles = {
73
+ physical: {
74
+ heading: 'The following physical injury types are not supported',
75
+ subHeading:
76
+ '<p>If you have multiple conditions apply, please select the most severe condition.</p>',
77
+ },
78
+ rtwCards: {
79
+ heading:
80
+ 'WorkSafe links to help and support you with your hearing loss injury',
81
+ subHeading: '',
82
+ },
83
+ cardContactInformaton: {
84
+ heading: 'Agent contact information',
85
+ subHeading: '',
86
+ },
87
+ }
88
+
89
+ export const cardPhysicalBreakout = {
90
+ title: 'Progress to planer',
91
+ body: `<p class="intro">Guidance for non-complex physical injuries only.</p>
92
+ <p><a class="cta-button" href="www.google.com">Progress</a></p>`,
93
+ }
94
+
95
+ export const cardPhysical = [
96
+ {
97
+ name: 'Acquired brain injury',
98
+ icon: 'https://content-dev-v2.api.worksafe.vic.gov.au/sites/default/files/icons/icon%201%20object.svg',
99
+ value: 'The return to work planner is not suitable for this injury type',
100
+ description: `<p>Includes mild, moderate, severe and profound acquired brain injury (ABI), brain damage and brain injury</p>
101
+ <p>Exludes concussion and fractured skull alone.</p> <p>Please click for more information and how you can get support</p>
102
+ <p><a href='/return-work-mental-injuries' class='cta-button white'>More information</a></p>`,
103
+ },
104
+ {
105
+ name: 'Hearing loss',
106
+ icon: 'https://content-dev-v2.api.worksafe.vic.gov.au/sites/default/files/icons/icon%201%20object.svg',
107
+ value: 'The return to work planner is not suitable for this injury type',
108
+ description: `<p>Includes mild, moderate, severe and profound acquired brain injury (ABI), brain damage and brain injury</p>
109
+ <p>Exludes concussion and fractured skull alone.</p> <p>Please click for more information and how you can get support</p>
110
+ <p><a href='/return-work-mental-injuries' class='cta-button white'>More information</a></p>`,
111
+ },
112
+ {
113
+ name: 'Respiratory condition',
114
+ icon: 'https://content-dev-v2.api.worksafe.vic.gov.au/sites/default/files/icons/icon%201%20object.svg',
115
+ value: 'The return to work planner is not suitable for this injury type',
116
+ description: `<p>Includes mild, moderate, severe and profound acquired brain injury (ABI), brain damage and brain injury</p>
117
+ <p>Exludes concussion and fractured skull alone.</p> <p>Please click for more information and how you can get support</p>
118
+ <p><a href='/return-work-mental-injuries' class='cta-button white'>More information</a></p>`,
119
+ },
120
+ {
121
+ name: 'Severe injury',
122
+ icon: 'https://content-dev-v2.api.worksafe.vic.gov.au/sites/default/files/icons/icon%201%20object.svg',
123
+ value: 'The return to work planner is not suitable for this injury type',
124
+ description: `<p>Includes mild, moderate, severe and profound acquired brain injury (ABI), brain damage and brain injury</p>
125
+ <p>Exludes concussion and fractured skull alone.</p> <p>Please click for more information and how you can get support</p>
126
+ <p><a href='/return-work-mental-injuries' class='cta-button white'>More information</a></p>`,
127
+ },
128
+ {
129
+ name: 'Serious injury',
130
+ icon: 'https://content-dev-v2.api.worksafe.vic.gov.au/sites/default/files/icons/icon%201%20object.svg',
131
+ value: 'The return to work planner is not suitable for this injury type',
132
+ description: `<p>Includes mild, moderate, severe and profound acquired brain injury (ABI), brain damage and brain injury</p>
133
+ <p>Exludes concussion and fractured skull alone.</p> <p>Please click for more information and how you can get support</p>
134
+ <p><a href='/return-work-mental-injuries' class='cta-button white'>More information</a></p>`,
135
+ },
136
+ {
137
+ name: 'Mental injury',
138
+ icon: 'https://content-dev-v2.api.worksafe.vic.gov.au/sites/default/files/icons/icon%201%20object.svg',
139
+ value: 'The return to work planner is not suitable for this injury type',
140
+ description: `<p>Includes mild, moderate, severe and profound acquired brain injury (ABI), brain damage and brain injury</p>
141
+ <p>Exludes concussion and fractured skull alone.</p> <p>Please click for more information and how you can get support</p>
142
+ <p><a href='/return-work-mental-injuries' class='cta-button white'>More information</a></p>`,
143
+ },
144
+ ]
145
+
146
+ export const cardRTWCards = [
147
+ {
148
+ title: 'Hearning protection',
149
+ imageSrc: '',
150
+ imageAlt: '',
151
+ description:
152
+ 'This guidance explains hw to select, use and fit hearing protectors in the workplace.',
153
+ link: '/news/2021-08/news-kitchen-sink-11',
154
+ pillText: 'Noise',
155
+ colour: 'yellow',
156
+ date: '',
157
+ location: '',
158
+ rtl: false,
159
+ },
160
+ {
161
+ title: 'Hearning loss injury lik',
162
+ imageSrc: '',
163
+ imageAlt: '',
164
+ description:
165
+ 'Crd description field. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt.',
166
+ link: '/news/2021-08/news-kitchen-sink-11',
167
+ pillText: 'Tag',
168
+ colour: 'yellow',
169
+ date: '',
170
+ location: '',
171
+ rtl: false,
172
+ },
173
+ {
174
+ title: 'Hearning protection',
175
+ imageSrc: '',
176
+ imageAlt: '',
177
+ description:
178
+ 'This guidance explains hw to select, use and fit hearing protectors in the workplace.',
179
+ link: '/news/2021-08/news-kitchen-sink-11',
180
+ pillText: 'Noise',
181
+ colour: 'yellow',
182
+ date: '',
183
+ location: '',
184
+ rtl: false,
185
+ },
186
+ {
187
+ title: 'Hearning loss injury lik',
188
+ imageSrc: '',
189
+ imageAlt: '',
190
+ description:
191
+ 'Crd description field. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt.',
192
+ link: '/news/2021-08/news-kitchen-sink-11',
193
+ pillText: 'Tag',
194
+ colour: 'yellow',
195
+ date: '',
196
+ location: '',
197
+ rtl: false,
198
+ },
199
+ {
200
+ title: 'Hearning protection',
201
+ imageSrc: '',
202
+ imageAlt: '',
203
+ description:
204
+ 'This guidance explains hw to select, use and fit hearing protectors in the workplace.',
205
+ link: '/news/2021-08/news-kitchen-sink-11',
206
+ pillText: 'Noise',
207
+ colour: 'yellow',
208
+ date: '',
209
+ location: '',
210
+ rtl: false,
211
+ },
212
+ {
213
+ title: 'Hearning loss injury lik',
214
+ imageSrc: '',
215
+ imageAlt: '',
216
+ description:
217
+ 'Crd description field. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt.',
218
+ link: '/news/2021-08/news-kitchen-sink-11',
219
+ pillText: 'Tag',
220
+ colour: 'yellow',
221
+ date: '',
222
+ location: '',
223
+ rtl: false,
224
+ },
225
+ ]
226
+
227
+ export const cardContactInformaton = [
228
+ {
229
+ name: 'Allianz Australia Workers Compensation',
230
+ icon: 'https://content-dev-v2.api.worksafe.vic.gov.au/sites/default/files/icons/icon%201%20object.svg',
231
+ value: '1800 343 453',
232
+ },
233
+ {
234
+ name: 'EML (Employers Mutual Limited)',
235
+ icon: 'https://content-dev-v2.api.worksafe.vic.gov.au/sites/default/files/icons/icon%201%20object.svg',
236
+ value: '1800 343 453',
237
+ },
238
+ {
239
+ name: 'Gallagher Bassett Services Workers',
240
+ icon: 'https://content-dev-v2.api.worksafe.vic.gov.au/sites/default/files/icons/icon%201%20object.svg',
241
+ value: '1800 343 453',
242
+ },
243
+ {
244
+ name: 'Xchanging',
245
+ icon: 'https://content-dev-v2.api.worksafe.vic.gov.au/sites/default/files/icons/icon%201%20object.svg',
246
+ value: '1800 343 453',
247
+ },
248
+ ]
249
+
250
+ export const cardRTWMentalCards = [
251
+ {
252
+ title: 'Mental injury support',
253
+ imageSrc: '',
254
+ imageAlt: '',
255
+ description:
256
+ 'Your mental health is important and we want to make sure you get the support you need.',
257
+ link: '/news/2021-08/news-kitchen-sink-11',
258
+ pillText: 'Claims',
259
+ colour: 'yellow',
260
+ date: '',
261
+ location: '',
262
+ rtl: false,
263
+ },
264
+ {
265
+ title: 'Mental injury support',
266
+ imageSrc: '',
267
+ imageAlt: '',
268
+ description:
269
+ 'Crd description field. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt.',
270
+ link: '/news/2021-08/news-kitchen-sink-11',
271
+ pillText: 'Tag',
272
+ colour: 'yellow',
273
+ date: '',
274
+ location: '',
275
+ rtl: false,
276
+ },
277
+ {
278
+ title: 'Mental injury support',
279
+ imageSrc: '',
280
+ imageAlt: '',
281
+ description:
282
+ 'This guidance explains hw to select, use and fit hearing protectors in the workplace.',
283
+ link: '/news/2021-08/news-kitchen-sink-11',
284
+ pillText: 'Tag',
285
+ colour: 'yellow',
286
+ date: '',
287
+ location: '',
288
+ rtl: false,
289
+ },
290
+ {
291
+ title: 'Mental injury support',
292
+ imageSrc: '',
293
+ imageAlt: '',
294
+ description:
295
+ 'Crd description field. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt.',
296
+ link: '/news/2021-08/news-kitchen-sink-11',
297
+ pillText: 'Tag',
298
+ colour: 'yellow',
299
+ date: '',
300
+ location: '',
301
+ rtl: false,
302
+ },
303
+ {
304
+ title: 'Mental injury support',
305
+ imageSrc: '',
306
+ imageAlt: '',
307
+ description:
308
+ 'This guidance explains hw to select, use and fit hearing protectors in the workplace.',
309
+ link: '/news/2021-08/news-kitchen-sink-11',
310
+ pillText: 'Tag',
311
+ colour: 'yellow',
312
+ date: '',
313
+ location: '',
314
+ rtl: false,
315
+ },
316
+ {
317
+ title: 'Hearning loss injury lik',
318
+ imageSrc: '',
319
+ imageAlt: '',
320
+ description:
321
+ 'Crd description field. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt.',
322
+ link: '/news/2021-08/news-kitchen-sink-11',
323
+ pillText: 'Tag',
324
+ colour: 'yellow',
325
+ date: '',
326
+ location: '',
327
+ rtl: false,
328
+ },
329
+ ]
330
+
331
+ export const cardRTWOtherCards = [
332
+ {
333
+ title: 'Standard card',
334
+ imageSrc: '',
335
+ imageAlt: '',
336
+ description:
337
+ 'Card description field. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt.',
338
+ link: '/news/2021-08/news-kitchen-sink-11',
339
+ pillText: 'Claims',
340
+ colour: 'yellow',
341
+ date: '',
342
+ location: '',
343
+ rtl: false,
344
+ },
345
+ {
346
+ title: 'Standard card',
347
+ imageSrc: '',
348
+ imageAlt: '',
349
+ description:
350
+ 'Card description field. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt.',
351
+ link: '/news/2021-08/news-kitchen-sink-11',
352
+ pillText: 'Tag',
353
+ colour: 'yellow',
354
+ date: '',
355
+ location: '',
356
+ rtl: false,
357
+ },
358
+ {
359
+ title: 'Standard card',
360
+ imageSrc: '',
361
+ imageAlt: '',
362
+ description:
363
+ 'This guidance explains hw to select, use and fit hearing protectors in the workplace.',
364
+ link: '/news/2021-08/news-kitchen-sink-11',
365
+ pillText: 'Tag',
366
+ colour: 'yellow',
367
+ date: '',
368
+ location: '',
369
+ rtl: false,
370
+ },
371
+ {
372
+ title: 'Standard card',
373
+ imageSrc: '',
374
+ imageAlt: '',
375
+ description:
376
+ 'Card description field. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt.',
377
+ link: '/news/2021-08/news-kitchen-sink-11',
378
+ pillText: 'Tag',
379
+ colour: 'yellow',
380
+ date: '',
381
+ location: '',
382
+ rtl: false,
383
+ },
384
+ {
385
+ title: 'Standard card',
386
+ imageSrc: '',
387
+ imageAlt: '',
388
+ description:
389
+ 'This guidance explains how to select, use and fit hearing protectors in the workplace.',
390
+ link: '/news/2021-08/news-kitchen-sink-11',
391
+ pillText: 'Tag',
392
+ colour: 'yellow',
393
+ date: '',
394
+ location: '',
395
+ rtl: false,
396
+ },
397
+ {
398
+ title: 'Standard card',
399
+ imageSrc: '',
400
+ imageAlt: '',
401
+ description:
402
+ 'Card description field. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt.',
403
+ link: '/news/2021-08/news-kitchen-sink-11',
404
+ pillText: 'Tag',
405
+ colour: 'yellow',
406
+ date: '',
407
+ location: '',
408
+ rtl: false,
409
+ },
410
+ ]