@worksafevictoria/wcl7.5 1.6.0 → 1.7.1

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 (34) hide show
  1. package/package.json +3 -2
  2. package/src/components/Common/CardGridItem/card-grid-item-icon.vue +15 -19
  3. package/src/components/Common/CardGridItem/index.vue +108 -139
  4. package/src/components/Global/AppFooter/styles.scss +3 -0
  5. package/src/components/Global/DirectoryFilters/index.vue +3 -0
  6. package/src/components/Paragraphs/Chart/Constants.js +479 -479
  7. package/src/components/Paragraphs/Directory/{Records/HSCP → HSCP/Records/SingleRecord}/index.stories.js +4 -3
  8. package/src/components/Paragraphs/Directory/HSCP/Records/SingleRecord/index.vue +322 -0
  9. package/src/components/Paragraphs/Directory/HSCP/Records/index.stories.js +19 -0
  10. package/src/components/Paragraphs/Directory/HSCP/Records/index.vue +343 -0
  11. package/src/components/Paragraphs/Directory/HSCP/Records/pagination.vue +179 -0
  12. package/src/components/Paragraphs/Directory/Records/CJ/index.vue +1 -1
  13. package/src/components/Paragraphs/Directory/Records/ISP/index.vue +1 -1
  14. package/src/components/Paragraphs/Directory/Records/PRS/index.stories.js +34 -0
  15. package/src/components/Paragraphs/Directory/Records/PRS/index.vue +5 -1
  16. package/src/components/Paragraphs/Directory/Records/index.storieshide.js +47 -0
  17. package/src/components/Paragraphs/Directory/Records/index.vue +18 -35
  18. package/src/components/Paragraphs/Directory/{Records/styles.scss → styles.scss} +4 -3
  19. package/src/components/Paragraphs/Map/Constants.js +4790 -0
  20. package/src/components/Paragraphs/Map/index.mdx +29 -0
  21. package/src/components/Paragraphs/Map/index.stories.js +15 -0
  22. package/src/components/Paragraphs/Map/index.vue +313 -0
  23. package/src/components/Paragraphs/Map/lga-map.json +33462 -0
  24. package/src/components/Paragraphs/Map/postcode_location.json +3543 -0
  25. package/src/components/Paragraphs/TabulatedData/index.vue +27 -36
  26. package/src/components/SubComponents/Breadcrumb/index.vue +4 -0
  27. package/src/components/SubComponents/FormInstance/components/renderer/index.vue +23 -7
  28. package/src/components/SubComponents/FormInstance/models/overrides/file.js +7 -2
  29. package/src/components/SubComponents/ResourceGroup/index.vue +158 -184
  30. package/src/components/SubComponents/ResourceGroup/styles.scss +2 -0
  31. package/src/components/SubComponents/Search/index.vue +8 -3
  32. package/src/index.js +4 -0
  33. package/src/mock/course-provider.js +273 -0
  34. package/src/components/Paragraphs/Directory/Records/HSCP/index.vue +0 -334
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@worksafevictoria/wcl7.5",
3
- "version": "1.6.0",
3
+ "version": "1.7.1",
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"
@@ -23,26 +23,11 @@
23
23
  [`card-grid-item-icon--icon-bordered-${iconSize}`]: iconIsBordered
24
24
  }"
25
25
  :glyph="glyphSrc"
26
+ :key="computedIconSize"
26
27
  icon-alt="alt"
27
- :height="
28
- iconSize === 'xsmall'
29
- ? 16
30
- : iconSize === 'small'
31
- ? 32
32
- : iconSize === 'medium'
33
- ? 64
34
- : 80
35
- "
36
- :width="
37
- iconSize === 'xsmall'
38
- ? 16
39
- : iconSize === 'small'
40
- ? 32
41
- : iconSize === 'medium'
42
- ? 64
43
- : 80
44
- "
45
28
  :bordered="iconIsBordered"
29
+ :height="computedIconSize"
30
+ :width="computedIconSize"
46
31
  />
47
32
  <component
48
33
  :is="glyphComponent"
@@ -98,6 +83,17 @@ export default {
98
83
  type: Boolean
99
84
  }
100
85
  },
86
+ computed: {
87
+ computedIconSize() {
88
+ return this.iconSize === 'xsmall'
89
+ ? 16
90
+ : this.iconSize === 'small'
91
+ ? 32
92
+ : this.iconSize === 'medium'
93
+ ? 64
94
+ : 80;
95
+ }
96
+ },
101
97
  data() {
102
98
  return {
103
99
  arrowRight,
@@ -119,7 +115,7 @@ export default {
119
115
  border-radius: 8px;
120
116
  width: 100%;
121
117
  height: 170px;
122
- background-size: cover;
118
+ background-size: contain;
123
119
  background-position: center center;
124
120
 
125
121
  &-lg {
@@ -4,18 +4,12 @@
4
4
  <b-card
5
5
  :id="cardId"
6
6
  no-body
7
- :tag="
8
- buttonRole === 'radio' ? 'div' : isSelectable ? 'button' : 'article'
9
- "
7
+ :tag="buttonRole === 'radio' ? 'div' : isSelectable ? 'button' : 'article'"
10
8
  class="card-grid-item__card"
11
9
  :class="cardClass"
12
10
  :role="buttonRole"
13
11
  :aria-checked="
14
- buttonRole === 'radio'
15
- ? isSelectable && selected
16
- ? 'true'
17
- : 'false'
18
- : false
12
+ buttonRole === 'radio' ? (isSelectable && selected ? 'true' : 'false') : false
19
13
  "
20
14
  :aria-expanded="
21
15
  isExpandable ? (isSelectable && selected ? 'true' : 'false') : false
@@ -30,10 +24,8 @@
30
24
  :class="[
31
25
  {
32
26
  rtl: rtl,
33
- [`card-grid-item__control-radio`]:
34
- isSelectable && buttonRole === 'radio',
35
- [`card-grid-item__selected-radio`]:
36
- selected && buttonRole === 'radio',
27
+ [`card-grid-item__control-radio`]: isSelectable && buttonRole === 'radio',
28
+ [`card-grid-item__selected-radio`]: selected && buttonRole === 'radio',
37
29
  },
38
30
  ]"
39
31
  >
@@ -101,11 +93,7 @@
101
93
  >
102
94
  </card-grid-item-icon>
103
95
  </b-card-title>
104
- <card-grid-item-caret
105
- v-if="caretPosition === 'top'"
106
- :caret="caret"
107
- :rtl="rtl"
108
- >
96
+ <card-grid-item-caret v-if="caretPosition === 'top'" :caret="caret" :rtl="rtl">
109
97
  </card-grid-item-caret>
110
98
 
111
99
  <card-grid-item-icon
@@ -131,13 +119,14 @@
131
119
  </div>
132
120
  <b-card-text
133
121
  v-if="$slots.cardDescription || description"
134
- text-tag="div"
122
+ tag="div"
135
123
  class="card-grid-item__body"
136
124
  :class="{
137
125
  rtl: rtl,
138
126
  }"
139
127
  >
140
128
  <div
129
+ v-if="$slots.cardDescription || description"
141
130
  class="card-grid-item__description"
142
131
  :class="{
143
132
  [descriptionClass]: !!descriptionClass,
@@ -170,11 +159,7 @@
170
159
  </div>
171
160
  </b-card-text>
172
161
  </b-card-body>
173
- <div
174
- v-if="$slots.cardFooter"
175
- class="card-grid-item__footer"
176
- :class="{ rtl: rtl }"
177
- >
162
+ <div v-if="$slots.cardFooter" class="card-grid-item__footer" :class="{ rtl: rtl }">
178
163
  <slot name="cardFooter"></slot>
179
164
  </div>
180
165
  <div
@@ -193,15 +178,15 @@
193
178
  </template>
194
179
 
195
180
  <script>
196
- import CardGridItemIcon from './card-grid-item-icon.vue'
197
- import CardGridItemCaret from './card-grid-item-caret.vue'
198
- import RichText from '../../Paragraphs/RichText/index.vue'
199
- import { parseISO } from 'date-fns'
200
- import { isAbsoluteUrl, isGovSite } from '../../../../lib/utility'
201
- import { BCard, BCardBody, BCardTitle, BCardText } from 'bootstrap-vue-next'
181
+ import CardGridItemIcon from "./card-grid-item-icon.vue";
182
+ import CardGridItemCaret from "./card-grid-item-caret.vue";
183
+ import RichText from "../../Paragraphs/RichText/index.vue";
184
+ import { parseISO } from "date-fns";
185
+ import { isAbsoluteUrl, isGovSite } from "../../../../lib/utility";
186
+ import { BCard, BCardBody, BCardTitle, BCardText } from "bootstrap-vue-next";
202
187
 
203
188
  export default {
204
- name: 'CardGridItem',
189
+ name: "CardGridItem",
205
190
  components: {
206
191
  CardGridItemIcon,
207
192
  CardGridItemCaret,
@@ -214,9 +199,8 @@ export default {
214
199
  props: {
215
200
  backgroundVariant: {
216
201
  type: String,
217
- default: 'white',
218
- validator: (value) =>
219
- ['white', 'transparent', 'light'].indexOf(value) >= 0,
202
+ default: "white",
203
+ validator: (value) => ["white", "transparent", "light"].indexOf(value) >= 0,
220
204
  },
221
205
  imageSrc: {
222
206
  type: String,
@@ -235,7 +219,7 @@ export default {
235
219
  },
236
220
  descriptionClass: {
237
221
  type: String,
238
- default: '',
222
+ default: "",
239
223
  },
240
224
  glyphSrc: {
241
225
  type: [Object, String],
@@ -247,21 +231,16 @@ export default {
247
231
  },
248
232
  iconSize: {
249
233
  type: String,
250
- default: 'small',
251
- validator: (value) =>
252
- ['xsmall', 'small', 'medium', 'large'].indexOf(value) >= 0,
234
+ default: "small",
235
+ validator: (value) => ["xsmall", "small", "medium", "large"].indexOf(value) >= 0,
253
236
  },
254
237
  iconPosition: {
255
238
  type: String,
256
- default: 'top',
239
+ default: "top",
257
240
  validator: (value) =>
258
- [
259
- 'top',
260
- 'top-left',
261
- 'top-right',
262
- 'after-title',
263
- 'before-description',
264
- ].indexOf(value) >= 0,
241
+ ["top", "top-left", "top-right", "after-title", "before-description"].indexOf(
242
+ value
243
+ ) >= 0,
265
244
  },
266
245
  iconIsBordered: {
267
246
  type: Boolean,
@@ -276,14 +255,13 @@ export default {
276
255
  },
277
256
  invertOnSelectBackground: {
278
257
  type: String,
279
- default: 'none',
280
- validator: (value) => ['none', 'yellow', 'black'].indexOf(value) >= 0,
258
+ default: "none",
259
+ validator: (value) => ["none", "yellow", "black"].indexOf(value) >= 0,
281
260
  },
282
261
  borderOnSelectBackground: {
283
262
  type: String,
284
- default: 'none',
285
- validator: (value) =>
286
- ['none', 'yellow', 'black', 'blue'].indexOf(value) >= 0,
263
+ default: "none",
264
+ validator: (value) => ["none", "yellow", "black", "blue"].indexOf(value) >= 0,
287
265
  },
288
266
  rtl: {
289
267
  type: Boolean,
@@ -291,49 +269,47 @@ export default {
291
269
  },
292
270
  headerSize: {
293
271
  type: String,
294
- default: 'custom',
272
+ default: "custom",
295
273
  validator: (value) =>
296
- ['medium', 'large', 'extra-large', 'extra-2x-large', 'custom'].indexOf(
297
- value,
298
- ) >= 0,
274
+ ["medium", "large", "extra-large", "extra-2x-large", "custom"].indexOf(value) >=
275
+ 0,
299
276
  },
300
277
  headerTextAlign: {
301
278
  type: String,
302
- default: 'left',
303
- validator: (value) => ['left', 'center', 'right'].indexOf(value) >= 0,
279
+ default: "left",
280
+ validator: (value) => ["left", "center", "right"].indexOf(value) >= 0,
304
281
  },
305
282
  headerTag: {
306
283
  type: String,
307
284
  required: false,
308
- default: 'h3',
285
+ default: "h3",
309
286
  },
310
287
  caret: {
311
288
  type: String,
312
289
  default: undefined,
313
290
  validator: (value) =>
314
- ['down', 'up', 'right', 'left', 'external'].indexOf(value) >= 0,
291
+ ["down", "up", "right", "left", "external"].indexOf(value) >= 0,
315
292
  },
316
293
  caretPosition: {
317
294
  type: String,
318
- default: 'top',
319
- validator: (value) =>
320
- ['top', 'bottom', 'after-title'].indexOf(value) >= 0,
295
+ default: "top",
296
+ validator: (value) => ["top", "bottom", "after-title"].indexOf(value) >= 0,
321
297
  },
322
298
  cardPadding: {
323
299
  type: String,
324
- default: 'none',
300
+ default: "none",
325
301
  validator: (value) =>
326
- ['none', 'xsmall', 'small', 'medium', 'large'].indexOf(value) >= 0,
302
+ ["none", "xsmall", "small", "medium", "large"].indexOf(value) >= 0,
327
303
  },
328
304
  borderType: {
329
305
  type: String,
330
- default: 'none',
306
+ default: "none",
331
307
  validator: (value) =>
332
- ['none', 'thin', 'shadow', 'thick', 'dark'].indexOf(value) >= 0,
308
+ ["none", "thin", "shadow", "thick", "dark"].indexOf(value) >= 0,
333
309
  },
334
310
  cardTextAlign: {
335
311
  type: String,
336
- default: 'left',
312
+ default: "left",
337
313
  },
338
314
  disableSelect: {
339
315
  type: Boolean,
@@ -341,11 +317,11 @@ export default {
341
317
  },
342
318
  pillText: {
343
319
  type: String,
344
- default: '',
320
+ default: "",
345
321
  },
346
322
  buttonRole: {
347
323
  type: String,
348
- default: 'link',
324
+ default: "link",
349
325
  },
350
326
  isSelected: {
351
327
  type: Boolean,
@@ -383,20 +359,18 @@ export default {
383
359
  return {
384
360
  [`card-grid-item__card--hasIcon`]:
385
361
  (this.imageSrc || this.glyphSrc) &&
386
- (this.iconPosition === 'top' || this.iconPosition === 'top-left'),
362
+ (this.iconPosition === "top" || this.iconPosition === "top-left"),
387
363
  [`card-grid-item__card--selectable`]: this.isSelectable,
388
- [`card-grid-item__card--selected-inverted--` +
389
- this.invertOnSelectBackground]:
364
+ [`card-grid-item__card--selected-inverted--` + this.invertOnSelectBackground]:
390
365
  this.selected &&
391
366
  this.invertOnSelectBackground &&
392
- this.invertOnSelectBackground !== 'none',
393
- [`card-grid-item__card--selected-border--` +
394
- this.borderOnSelectBackground]:
367
+ this.invertOnSelectBackground !== "none",
368
+ [`card-grid-item__card--selected-border--` + this.borderOnSelectBackground]:
395
369
  this.selected &&
396
370
  this.borderOnSelectBackground &&
397
- this.borderOnSelectBackground !== 'none',
371
+ this.borderOnSelectBackground !== "none",
398
372
  [`card-grid-item__card--selected-focus`]:
399
- this.selected && this.buttonRole === 'radio',
373
+ this.selected && this.buttonRole === "radio",
400
374
  [`card-grid-item__card--selected-link`]:
401
375
  this.selected && !this.invertOnSelectBackground,
402
376
  [`card-grid-item__card--padding-${this.cardPadding}`]: true,
@@ -404,89 +378,87 @@ export default {
404
378
  [`card-grid-item__card--bg-${this.backgroundVariant}`]: true,
405
379
  [`card-grid-item__card--select-${this.buttonRole}`]: true,
406
380
  [`card-grid-item__card--align-${this.cardTextAlign}`]: true,
407
- }
381
+ };
408
382
  },
409
383
  urlHostname() {
410
- return window.location.protocol + '//' + window.location.host
384
+ return window.location.protocol + "//" + window.location.host;
411
385
  },
412
386
  },
413
387
  mounted() {
414
- this.selected = this.isSelected
388
+ this.selected = this.isSelected;
415
389
  },
416
390
  created() {
417
- this.parentGrid = this.getParentGridItem()
391
+ this.parentGrid = this.getParentGridItem();
418
392
  if (this.parentGrid) {
419
- this.parentGrid.registerChild(this)
420
- this.setCardId()
421
- this.isSelectable = !this.disableSelect && this.parentGrid.isSelectable
393
+ this.parentGrid.registerChild(this);
394
+ this.setCardId();
395
+ this.isSelectable = !this.disableSelect && this.parentGrid.isSelectable;
422
396
  }
423
397
  },
424
398
  beforeDestroy() {
425
399
  if (this.parentGrid) {
426
- this.parentGrid.deregisterChild(this)
400
+ this.parentGrid.deregisterChild(this);
427
401
  }
428
402
  },
429
403
  methods: {
430
404
  cardClicked(ev) {
431
405
  if (this.isSelectable) {
432
- this.parentGrid.cardSelected(this, ev)
406
+ this.parentGrid.cardSelected(this, ev);
433
407
  }
434
408
 
435
409
  if (this.$gtm) {
436
- this.fireGTM()
410
+ this.fireGTM();
437
411
  }
438
412
  },
439
413
  cardTitleClicked(ev) {
440
414
  if (this.isCardTitleSelectable) {
441
- this.parentGrid.cardTitleSelected(this, ev)
415
+ this.parentGrid.cardTitleSelected(this, ev);
442
416
  }
443
417
  },
444
418
  getParentGridItem() {
445
- let counter = 0
446
- const maxParentDepth = 10
447
- let currentParent = this.$parent
448
- let gridParent
419
+ let counter = 0;
420
+ const maxParentDepth = 10;
421
+ let currentParent = this.$parent;
422
+ let gridParent;
449
423
  while (maxParentDepth > counter) {
450
- counter += 1
424
+ counter += 1;
451
425
  if (currentParent && Array.isArray(currentParent.cards)) {
452
- gridParent = currentParent
453
- break
426
+ gridParent = currentParent;
427
+ break;
454
428
  } else if (currentParent) {
455
- currentParent = currentParent.$parent
429
+ currentParent = currentParent.$parent;
456
430
  }
457
431
  }
458
- return gridParent
432
+ return gridParent;
459
433
  },
460
434
  setCardId() {
461
435
  this.cardId = this.parentGrid.cardIdPrefix
462
- ? this.parentGrid.cardIdPrefix +
463
- '-' +
464
- this.parentGrid.getChildIndex(this)
465
- : undefined
436
+ ? this.parentGrid.cardIdPrefix + "-" + this.parentGrid.getChildIndex(this)
437
+ : undefined;
466
438
  },
467
439
  setGridMetaData(gridColumnSize, isMobileView, isTabletView) {
468
- this.gridColumnSize = gridColumnSize
469
- this.isMobileView = isMobileView
470
- this.isTabletView = isTabletView
440
+ this.gridColumnSize = gridColumnSize;
441
+ this.isMobileView = isMobileView;
442
+ this.isTabletView = isTabletView;
471
443
  },
472
444
  handleFocus(ev) {
473
- this.parentGrid.handleFocus(ev)
445
+ this.parentGrid.handleFocus(ev);
474
446
  },
475
447
  fireGTM() {
476
- let theEl = this.$slots?.cardDescription
448
+ let theEl = this.$slots?.cardDescription;
477
449
  if (theEl && theEl.length > 0) {
478
450
  var content = {
479
451
  content: this.$diffInDays(
480
- parseISO(theEl[0]?.componentOptions?.propsData?.card?.created),
452
+ parseISO(theEl[0]?.componentOptions?.propsData?.card?.created)
481
453
  ),
482
- }
454
+ };
483
455
  }
484
456
  if (this.$gtm) {
485
457
  // format link
486
- const linkStr = this.link
487
- let linkURL = linkStr
458
+ const linkStr = this.link;
459
+ let linkURL = linkStr;
488
460
  if (linkStr !== false && !linkStr.includes(this.urlHostname)) {
489
- linkURL = this.urlHostname + linkStr
461
+ linkURL = this.urlHostname + linkStr;
490
462
  }
491
463
  // gather attrs
492
464
  let attrs = {
@@ -494,46 +466,45 @@ export default {
494
466
  data: linkURL,
495
467
  ...content,
496
468
  ...this.taxonomies,
497
- }
469
+ };
498
470
  // fire the default event
499
471
  this.$gtm.push({
500
- event: 'custom.interaction.tile.click',
472
+ event: "custom.interaction.tile.click",
501
473
  group: this?.parentGrid?.title,
502
474
  ...attrs,
503
- })
504
- if (this.pillText === 'News') {
475
+ });
476
+ if (this.pillText === "News") {
505
477
  this.$gtm.push({
506
- event: 'custom.interaction.news.click',
507
- group: 'News',
478
+ event: "custom.interaction.news.click",
479
+ group: "News",
508
480
  ...attrs,
509
- })
481
+ });
510
482
  }
511
- if (this.pillText === 'Event') {
483
+ if (this.pillText === "Event") {
512
484
  this.$gtm.push({
513
- event: 'custom.interaction.event.click',
514
- group: 'Event',
485
+ event: "custom.interaction.event.click",
486
+ group: "Event",
515
487
  ...attrs,
516
- })
488
+ });
517
489
  }
518
- if (this.pillText === 'Safety alert') {
490
+ if (this.pillText === "Safety alert") {
519
491
  this.$gtm.push({
520
- event: 'custom.interaction.safety.click',
521
- group: 'Safety alert',
492
+ event: "custom.interaction.safety.click",
493
+ group: "Safety alert",
522
494
  ...attrs,
523
- })
495
+ });
524
496
  }
525
497
  if (
526
498
  (this.link,
527
499
  this.isAbsoluteUrl(this.link) &&
528
- (this.$config
529
- ? this.$config.public.caretaker
530
- : process.env.CARETAKER) === 'false')
500
+ (this.$config ? this.$config.public.caretaker : process.env.CARETAKER) ===
501
+ "false")
531
502
  ) {
532
503
  this.$gtm.push({
533
- event: 'custom.interaction.outboundlink',
504
+ event: "custom.interaction.outboundlink",
534
505
  category: this.cardHeaderTitle,
535
506
  label: this.link,
536
- })
507
+ });
537
508
  }
538
509
  }
539
510
  // for non gov sites and when caretaker mode is on, analytics is fired from listenersCaretaker.js
@@ -541,23 +512,21 @@ export default {
541
512
  this.link &&
542
513
  this.isAbsoluteUrl(this.link) &&
543
514
  isGovSite(this.link) &&
544
- (this.$config
545
- ? this.$config.public.caretaker
546
- : process.env.CARETAKER) === 'true'
515
+ (this.$config ? this.$config.public.caretaker : process.env.CARETAKER) === "true"
547
516
  ) {
548
517
  this.$gtm.push({
549
- event: 'custom.interaction.outboundlink',
518
+ event: "custom.interaction.outboundlink",
550
519
  category: this.cardHeaderTitle,
551
520
  label: this.link,
552
- })
521
+ });
553
522
  }
554
523
  },
555
524
  },
556
- }
525
+ };
557
526
  </script>
558
527
 
559
528
  <style lang="scss" scoped>
560
- @import '../../../includes/scss/all';
529
+ @import "../../../includes/scss/all";
561
530
 
562
531
  .card-grid-item {
563
532
  height: 100%;
@@ -809,7 +778,7 @@ export default {
809
778
  align-items: center;
810
779
  }
811
780
  :deep(.card_item__control-radio span) {
812
- background-image: url('../../../assets/icons/tick.svg');
781
+ background-image: url("../../../assets/icons/tick.svg");
813
782
  background-position: center;
814
783
  background-repeat: no-repeat;
815
784
  filter: invert(1);
@@ -858,7 +827,7 @@ export default {
858
827
  line-height: 80px;
859
828
 
860
829
  @media screen and (max-width: 1199px) and (min-width: 768px) {
861
- @include fp('font-size', 60, 72);
830
+ @include fp("font-size", 60, 72);
862
831
  }
863
832
  }
864
833
 
@@ -257,6 +257,9 @@ $whitesmoke: #f3f3f3 !default;
257
257
  :deep(path) {
258
258
  fill: white;
259
259
  }
260
+ :deep(.icon) {
261
+ filter: invert(100%) sepia(5%) saturate(49%) hue-rotate(165deg) brightness(119%) contrast(100%);
262
+ }
260
263
  }
261
264
 
262
265
  @media screen and (max-width: 767px) {
@@ -27,6 +27,8 @@
27
27
  @cleared="$emit('locationCleared')"
28
28
  />
29
29
  </column>
30
+ <span class="d-none">{{ filters }}</span>
31
+ <span class="d-none">{{ filters.taxonomies.map(taxonomy => taxonomy.name).join(', ') }}</span>
30
32
  <column
31
33
  :md="!bundle ? 12 : bundle === 'isp' ? 4 : 8"
32
34
  :sm="!bundle ? 12 : bundle === 'isp' ? 6 : 12"
@@ -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;