@iamproperty/components 3.0.0 → 3.2.0

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 (161) hide show
  1. package/README.md +141 -16
  2. package/assets/.DS_Store +0 -0
  3. package/assets/css/core.min.css +1 -1
  4. package/assets/css/core.min.css.map +1 -1
  5. package/assets/css/email.min.css +1 -1
  6. package/assets/css/email.min.css.map +1 -1
  7. package/assets/css/error.min.css +1 -1
  8. package/assets/css/error.min.css.map +1 -1
  9. package/assets/css/style.min.css +1 -1
  10. package/assets/css/style.min.css.map +1 -1
  11. package/assets/favicons/manifest.json +31 -31
  12. package/assets/js/main.js +57 -57
  13. package/assets/js/modules/accordion.js +32 -32
  14. package/assets/js/modules/alert.js +56 -56
  15. package/assets/js/modules/carousel.js +101 -101
  16. package/assets/js/modules/chart.js +218 -218
  17. package/assets/js/modules/drawer.js +15 -15
  18. package/assets/js/modules/file-upload.js +48 -0
  19. package/assets/js/modules/form.js +168 -159
  20. package/assets/js/modules/helpers.js +119 -119
  21. package/assets/js/modules/modal.js +89 -89
  22. package/assets/js/modules/nav.js +28 -28
  23. package/assets/js/modules/orderablelist.js +122 -0
  24. package/assets/js/modules/table.js +585 -585
  25. package/assets/js/modules/testimonial.js +82 -82
  26. package/assets/js/modules/youtubevideo.js +145 -145
  27. package/assets/js/scripts.bundle.js +256 -242
  28. package/assets/js/scripts.bundle.js.map +1 -1
  29. package/assets/js/scripts.bundle.min.js +2 -2
  30. package/assets/js/scripts.bundle.min.js.map +1 -1
  31. package/assets/sass/_components.scss +14 -14
  32. package/assets/sass/_corefiles.scss +40 -40
  33. package/assets/sass/_fonts.scss +16 -16
  34. package/assets/sass/_forms.scss +9 -9
  35. package/assets/sass/_func.scss +12 -12
  36. package/assets/sass/_functions/functions.scss +141 -141
  37. package/assets/sass/_functions/mixins.scss +170 -170
  38. package/assets/sass/_functions/utilities.scss +143 -250
  39. package/assets/sass/_functions/variables.scss +467 -467
  40. package/assets/sass/_print.scss +61 -61
  41. package/assets/sass/_tests/colours.spec.scss +44 -44
  42. package/assets/sass/_tests/func.spec.scss +232 -232
  43. package/assets/sass/_tests/mixins.spec.scss +194 -194
  44. package/assets/sass/_tests/sass.spec.js +9 -9
  45. package/assets/sass/_tests/typography.spec.scss +35 -35
  46. package/assets/sass/components/accordion.scss +197 -197
  47. package/assets/sass/components/alert.scss +98 -98
  48. package/assets/sass/components/cardDeck.scss +107 -107
  49. package/assets/sass/components/carousel.scss +234 -234
  50. package/assets/sass/components/charts.scss +569 -569
  51. package/assets/sass/components/drawer.scss +46 -46
  52. package/assets/sass/components/header.scss +63 -63
  53. package/assets/sass/components/modal.scss +136 -136
  54. package/assets/sass/components/nav.scss +960 -918
  55. package/assets/sass/components/property-searchbar.scss +143 -143
  56. package/assets/sass/components/snapshot.scss +70 -70
  57. package/assets/sass/components/stepper.scss +164 -164
  58. package/assets/sass/components/tabs.scss +87 -87
  59. package/assets/sass/components/testimonial.scss +132 -132
  60. package/assets/sass/components/timeline.scss +95 -95
  61. package/assets/sass/core.scss +6 -6
  62. package/assets/sass/elements/buttons.scss +251 -209
  63. package/assets/sass/elements/card.scss +289 -177
  64. package/assets/sass/elements/container.scss +236 -225
  65. package/assets/sass/elements/forms.scss +262 -194
  66. package/assets/sass/elements/links.scss +97 -96
  67. package/assets/sass/elements/lists.scss +159 -112
  68. package/assets/sass/elements/panel.scss +161 -161
  69. package/assets/sass/elements/tables.scss +290 -290
  70. package/assets/sass/elements/tooltips.scss +84 -84
  71. package/assets/sass/elements/type.scss +136 -136
  72. package/assets/sass/email.scss +65 -65
  73. package/assets/sass/error.scss +4 -4
  74. package/assets/sass/foundations/brand.scss +76 -72
  75. package/assets/sass/foundations/circles.scss +74 -74
  76. package/assets/sass/foundations/icons.scss +80 -72
  77. package/assets/sass/foundations/media.scss +50 -50
  78. package/assets/sass/foundations/reboot.scss +130 -130
  79. package/assets/sass/foundations/root.scss +125 -106
  80. package/assets/sass/main.scss +7 -7
  81. package/assets/svg/icons.svg +598 -598
  82. package/assets/svg/logo.svg +49 -43
  83. package/assets/ts/main.js +56 -56
  84. package/assets/ts/main.ts +68 -68
  85. package/assets/ts/modules/accordion.js +32 -32
  86. package/assets/ts/modules/accordion.ts +43 -43
  87. package/dist/components.es.js +393 -379
  88. package/dist/components.umd.js +16 -16
  89. package/dist/style.css +1 -1
  90. package/package.json +96 -108
  91. package/src/.DS_Store +0 -0
  92. package/src/components/Accordion/Accordion.screenshot.vue +57 -57
  93. package/src/components/Accordion/Accordion.spec.js +63 -63
  94. package/src/components/Accordion/Accordion.vue +22 -22
  95. package/src/components/Accordion/AccordionItem.vue +52 -52
  96. package/src/components/Accordion/README.md +34 -34
  97. package/src/components/Alert/Alert.spec.js +49 -49
  98. package/src/components/Alert/Alert.vue +39 -39
  99. package/src/components/Alert/README.md +28 -28
  100. package/src/components/Banner/Banner.spec.js +28 -28
  101. package/src/components/Banner/Banner.vue +38 -38
  102. package/src/components/Banner/README.md +23 -23
  103. package/src/components/CardDeck/CardDeck.spec.js +99 -99
  104. package/src/components/CardDeck/CardDeck.vue +77 -77
  105. package/src/components/CardDeck/README.md +24 -24
  106. package/src/components/Carousel/Carousel.spec.js +45 -45
  107. package/src/components/Carousel/Carousel.vue +85 -85
  108. package/src/components/Carousel/README.md +19 -19
  109. package/src/components/Chart/Chart.spec.js +201 -201
  110. package/src/components/Chart/Chart.vue +88 -88
  111. package/src/components/Chart/README.md +17 -17
  112. package/src/components/Drawer/Drawer.vue +53 -53
  113. package/src/components/Drawer/README.md +22 -22
  114. package/src/components/Header/Header.spec.js +33 -33
  115. package/src/components/Header/Header.vue +38 -38
  116. package/src/components/Header/README.md +27 -27
  117. package/src/components/Modal/Modal.spec.js +22 -22
  118. package/src/components/Modal/Modal.vue +43 -43
  119. package/src/components/Modal/README.md +19 -19
  120. package/src/components/Nav/Nav.spec.js +35 -35
  121. package/src/components/Nav/Nav.vue +215 -215
  122. package/src/components/Nav/README.md +22 -22
  123. package/src/components/NoteFeed/NoteFeed.vue +79 -79
  124. package/src/components/NoteFeed/README.md +16 -16
  125. package/src/components/PropertySearchbar/PropertySearchbar.vue +204 -204
  126. package/src/components/PropertySearchbar/README.md +25 -25
  127. package/src/components/Snapshot/README.md +20 -20
  128. package/src/components/Snapshot/Snapshot.vue +32 -32
  129. package/src/components/Stepper/README.md +32 -32
  130. package/src/components/Stepper/Step.vue +28 -28
  131. package/src/components/Stepper/Stepper.spec.js +99 -99
  132. package/src/components/Stepper/Stepper.vue +33 -33
  133. package/src/components/Tabs/README.md +27 -27
  134. package/src/components/Tabs/Tab.vue +32 -32
  135. package/src/components/Tabs/Tabs.vue +77 -77
  136. package/src/components/Testimonial/README.md +25 -25
  137. package/src/components/Testimonial/Testimonial.spec.js +57 -57
  138. package/src/components/Testimonial/Testimonial.vue +60 -60
  139. package/src/components/Timeline/README.md +18 -18
  140. package/src/components/Timeline/Timeline.spec.js +17 -17
  141. package/src/components/Timeline/Timeline.vue +24 -24
  142. package/src/elements/Card/Card.vue +122 -113
  143. package/src/elements/Card/README.md +24 -24
  144. package/src/elements/FileUploads/FileUploads.vue +48 -48
  145. package/src/elements/FileUploads/README.md +24 -24
  146. package/src/elements/Input/Input.vue +272 -268
  147. package/src/elements/Input/README.md +19 -19
  148. package/src/elements/Table/README.md +62 -62
  149. package/src/elements/Table/Table.spec.js +90 -90
  150. package/src/elements/Table/Table.vue +129 -129
  151. package/src/foundations/Icon/Icon.spec.js +24 -24
  152. package/src/foundations/Icon/Icon.vue +24 -24
  153. package/src/foundations/Icon/README.md +11 -11
  154. package/src/foundations/Logo/Logo.spec.js +56 -56
  155. package/src/foundations/Logo/Logo.vue +39 -39
  156. package/src/foundations/Logo/README.md +20 -20
  157. package/src/foundations/YoutubeVideo/README.md +11 -11
  158. package/src/foundations/YoutubeVideo/YoutubeVideo.vue +24 -24
  159. package/src/helpers/strings.js +12 -12
  160. package/src/index.js +27 -27
  161. package/src/vue-shim.d.ts +6 -6
@@ -1,43 +1,49 @@
1
- <svg xmlns="http://www.w3.org/2000/svg">
2
-
3
- <symbol id="logo-iam">
4
- <path d="M133.05,8.54a2.8,2.8,0,0,0,.86-.13,3,3,0,1,0-.86.13ZM134,121.6a3,3,0,1,0-1.69,5.76,3.06,3.06,0,0,0,.85.12,3,3,0,0,0,.84-5.88ZM182.42,15.34a3,3,0,1,0,3.86-4.59,3,3,0,0,0-.63-.41h0a3,3,0,0,0-3.23,5Zm-15.29-7a3.06,3.06,0,0,0,.85.12,3,3,0,1,0-.85-.12ZM117,15.83a3,3,0,1,0-3-3,3.07,3.07,0,0,0,.48,1.62A3,3,0,0,0,117,15.88Zm1.68,98.76a3,3,0,1,0,1.39,2.54,3,3,0,0,0-1.39-2.54Zm80.7-11.32a3,3,0,0,0-4.23.31h0a3,3,0,1,0,4.31-.31Zm-16.91,11.3a1.9,1.9,0,1,1,0,.05Zm14.9-87.28a3,3,0,0,0,2.26-5h0a3,3,0,1,0-2.26,5ZM150.6,124a3,3,0,1,0,3,3A3,3,0,0,0,150.6,124ZM150.52,6a3,3,0,1,0-3-3A3,3,0,0,0,150.52,6Zm16.69,115.6a3,3,0,0,0,.85,5.88,2.7,2.7,0,0,0,.85-.13,3,3,0,0,0-1.49-5.81l-.21.06ZM65,0a65,65,0,1,0,65,65A65,65,0,0,0,65,0ZM27.74,77.6a1.25,1.25,0,0,1-1.25,1.25h-5a1.25,1.25,0,0,1-1.25-1.25V52.35a1.25,1.25,0,0,1,1.25-1.25h5a1.25,1.25,0,0,1,1.25,1.25ZM24.11,47.49a4.66,4.66,0,1,1,4.66-4.66h0A4.66,4.66,0,0,1,24.11,47.49ZM61.47,77.6a1.25,1.25,0,0,1-1.25,1.25h-5A1.25,1.25,0,0,1,54,77.6V75.69a11.61,11.61,0,0,1-8.84,4c-7.39,0-13.63-6.6-13.63-14.75s6.24-14.75,13.63-14.75a11.61,11.61,0,0,1,8.84,4v-1.9A1.25,1.25,0,0,1,55.22,51h5a1.25,1.25,0,0,1,1.25,1.25Zm40-55.13a3,3,0,1,1,2.26,4.93,3,3,0,0,1-2-.73,3,3,0,0,1-.36-4.2Zm-10,15.58a3,3,0,1,1,2.73,4.24A3,3,0,0,1,93,42a3,3,0,0,1-1.52-4h0Zm4,55.46a3,3,0,1,1,1.76-2.72A3,3,0,0,1,95.47,93.51Zm10.24,14.38a2.93,2.93,0,0,1-2,.74,3,3,0,1,1,2-.74Zm6.87-30.29a1.25,1.25,0,0,1-1.25,1.25h-5a1.25,1.25,0,0,1-1.22-1.25V64.54c-.15-5.51-2.81-7.32-6.26-7.32-2.61,0-4.6,1.44-5.52,4.54a11.29,11.29,0,0,0-.25,2.78V77.6a1.25,1.25,0,0,1-1.25,1.25h-5a1.25,1.25,0,0,1-1.25-1.25V64.54c-.16-5.51-2.82-7.32-6.26-7.32-2.58,0-4.66,1.53-5.61,4.54a11.29,11.29,0,0,0-.25,2.78V77.6a1.25,1.25,0,0,1-1.25,1.25h-5A1.25,1.25,0,0,1,66,77.6V52.35a1.25,1.25,0,0,1,1.25-1.25h5a1.25,1.25,0,0,1,1.25,1.25v1.7a11.77,11.77,0,0,1,8.92-3.66,10.58,10.58,0,0,1,8.69,5c2.12-3.65,5.87-5,10.85-5,5.22,0,10.69,4.88,10.69,11.34ZM46.46,57.22a7.76,7.76,0,1,0,7.44,8.06c0-.1,0-.21,0-.31a7.61,7.61,0,0,0-7.46-7.75Z"/>
5
- </symbol>
6
-
7
- <symbol id="logo-divider">
8
- <rect x="409.75" y="14.54" width="2.18" height="100.92"/>
9
- </symbol>
10
-
11
- <symbol id="logo-property" viewBox="0 0 380 130" preserveAspectRatio="xMinYMid meet">
12
- <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#logo-iam"></use>
13
- <path d="M208.2,88a3,3,0,1,0-2.49,5.46,3,3,0,0,0,1.24.27A3,3,0,0,0,208.21,88Zm-4-47.58h0a3,3,0,0,0,5.47-2.49v0h0a3,3,0,1,0-5.54,2.3l.09.2Zm-44,9.79a11.61,11.61,0,0,0-8.84,4v-1.9a1.25,1.25,0,0,0-1.22-1.22h-5a1.25,1.25,0,0,0-1.25,1.25v37.5a1.25,1.25,0,0,0,1.25,1.25h5a1.25,1.25,0,0,0,1.25-1.25V75.69a11.61,11.61,0,0,0,8.84,4c7.39,0,13.63-6.6,13.63-14.75s-6.28-14.72-13.67-14.72Zm-1.37,22.5a7.76,7.76,0,1,1,7.44-8.06c0,.1,0,.21,0,.31a7.6,7.6,0,0,1-7.45,7.75h0Zm90.8-22.5a11.61,11.61,0,0,0-8.84,4v-1.9a1.25,1.25,0,0,0-1.25-1.25h-5a1.25,1.25,0,0,0-1.25,1.25v37.5a1.25,1.25,0,0,0,1.25,1.25h5a1.25,1.25,0,0,0,1.25-1.25V75.69a11.61,11.61,0,0,0,8.84,4c7.39,0,13.63-6.6,13.63-14.75S257,50.22,249.59,50.22Zm-1.37,22.5a7.76,7.76,0,1,1,7.44-8.06c0,.1,0,.21,0,.31a7.6,7.6,0,0,1-7.45,7.75h0ZM214,50.22A14.75,14.75,0,1,0,228.75,65,14.75,14.75,0,0,0,214,50.22h0Zm0,22.5a7.76,7.76,0,1,1,7.44-8.06c0,.1,0,.21,0,.31A7.6,7.6,0,0,1,214,72.72h0Zm130.42-.91a1.25,1.25,0,0,0-1.63-.69l0,0c-2.7,1.21-4.37,1.25-5.06.83s-1.15-2.18-1.13-3v-.29h0V57.35h8a1.25,1.25,0,0,0,1.25-1.25V52.35a1.25,1.25,0,0,0-1.25-1.25h-8V43.48a1.25,1.25,0,0,0-1.25-1.25h-5a1.25,1.25,0,0,0-1.25,1.25V51.1h-3.74a1.25,1.25,0,0,0-1.25,1.25V56.1a1.25,1.25,0,0,0,1.25,1.25h3.78V68.71h0v.23c0,3,1.17,7.23,4.69,9.41a9.39,9.39,0,0,0,5,1.37,17.48,17.48,0,0,0,6.88-1.66,1.26,1.26,0,0,0,.64-1.61ZM377,51.1h-5.27a1.21,1.21,0,0,0-1.18.86l-6.24,19.2L358.05,52a1.26,1.26,0,0,0-1.19-.86H351.6a1.25,1.25,0,0,0-1.25,1.25,1.21,1.21,0,0,0,.06.38l6.07,18.69,2.1,6.51a1.25,1.25,0,0,0,1.19.87h2l-1.19,3.67c-.32.78-.93,1.78-1.67,2s-2.37-.23-4.67-2.1a1.27,1.27,0,0,0-1.78.21h0l-3,4a1.25,1.25,0,0,0,.21,1.72,17.29,17.29,0,0,0,6.22,3.37,9.42,9.42,0,0,0,5.21,0c3.9-1.17,6.14-4.85,6.92-7.73L378.14,52.8a1.25,1.25,0,0,0-.72-1.62,1.33,1.33,0,0,0-.45-.08Zm-95.63-.86A14.75,14.75,0,0,0,282,79.72c4.82,0,9.42-1.91,12.11-5.48a1.25,1.25,0,0,0-.24-1.74l-.05,0-3.46-2.41a1.23,1.23,0,0,0-1.71.29c-1.36,1.84-4.24,2.82-6.65,2.82-3.45,0-6.93-3.41-6.93-6.21H295a1.25,1.25,0,0,0,1.25-1.19V65c0-9-6.46-15.12-14.92-14.73ZM275.46,62c0-2.84,3.49-5.74,6.57-5.74s6.58,2.9,6.58,5.74ZM185.78,77.6V52.35a1.25,1.25,0,0,0-1.25-1.25h-5a1.25,1.25,0,0,0-1.25,1.25V77.6a1.25,1.25,0,0,0,1.25,1.25h5A1.25,1.25,0,0,0,185.78,77.6Zm12-21.84a4.66,4.66,0,1,0-4.66,4.66,4.66,4.66,0,0,0,4.66-4.66v0ZM307,51.1h-5a1.25,1.25,0,0,0-1.25,1.25V77.6A1.25,1.25,0,0,0,302,78.85h5a1.25,1.25,0,0,0,1.25-1.25V52.35A1.25,1.25,0,0,0,307,51.1Zm8.61,0a4.66,4.66,0,1,0,4.66,4.66,4.66,4.66,0,0,0-4.66-4.66Z"/>
14
- </symbol>
15
-
16
- <symbol id="logo-sold" viewBox="0 0 247 130" preserveAspectRatio="xMinYMid meet">
17
- <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#logo-iam"></use>
18
- <path d="M208.2,88a3,3,0,1,0-2.49,5.46,3,3,0,0,0,1.24.27A3,3,0,0,0,208.21,88Zm37.22-49.83h-5a1.25,1.25,0,0,0-1.25,1.25V54.25a11.59,11.59,0,0,0-8.83-4C223,50.25,216.7,56.86,216.7,65S223,79.75,230.34,79.75a11.59,11.59,0,0,0,8.83-4v1.91a1.25,1.25,0,0,0,1.25,1.25h5a1.25,1.25,0,0,0,1.24-1.24h0V39.43a1.25,1.25,0,0,0-1.23-1.25ZM231.7,72.72a7.76,7.76,0,1,1,7.4-8.1c0,.13,0,.25,0,.38A7.61,7.61,0,0,1,231.7,72.72ZM200.11,65a14.75,14.75,0,1,0-14.75,14.75h0A14.77,14.77,0,0,0,200.11,65ZM177.9,65a7.46,7.46,0,1,1,7.46,7.75,7.61,7.61,0,0,1-7.5-7.72v0Zm33-26.79h-5a1.25,1.25,0,0,0-1.25,1.25V77.6a1.25,1.25,0,0,0,1.25,1.25h5a1.25,1.25,0,0,0,1.21-1.25V39.43a1.25,1.25,0,0,0-1.25-1.25h0ZM156.33,62.29c-2.86-.56-5.33-1-5.33-3.09,0-.74.35-2.47,3.58-2.47a3.3,3.3,0,0,1,3.18,1.79c.39.79.55,1,1.11,1h5.68a1,1,0,0,0,.75-.25.84.84,0,0,0,.15-.7,8.58,8.58,0,0,0-3.71-6.36,12.68,12.68,0,0,0-7.16-2c-5.2,0-11.28,2.36-11.28,9s5.48,7.68,9.87,8.56c2.83.56,5.27,1,5.27,3,0,2.15-2.42,2.47-3.86,2.47-2.38,0-3.35-1-3.75-1.84s-.57-.94-1.12-.94H144a1,1,0,0,0-.74.25.84.84,0,0,0-.15.7c.59,5.24,4.87,8.37,11.45,8.37,5.59,0,11.56-2.36,11.56-9s-5.52-7.66-9.89-8.52Z"/>
19
- </symbol>
20
-
21
- <symbol id="logo-key" viewBox="0 0 228 130" preserveAspectRatio="xMinYMid meet">
22
- <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#logo-iam"></use>
23
- <path d="M167.58,78.6H161.2a1.86,1.86,0,0,1-1.68-.89l-7.79-11.39V77.2a1.27,1.27,0,0,1-1.4,1.4h-5.6a1.27,1.27,0,0,1-1.4-1.4V40.8a1.27,1.27,0,0,1,1.4-1.4h5.6a1.27,1.27,0,0,1,1.4,1.4v22L159,51.5a1.84,1.84,0,0,1,1.68-.9h6.44c1.12,0,1.51.73.89,1.68L159.74,64.6l8.68,12.32C169.09,77.88,168.7,78.6,167.58,78.6Zm59-28.43h-5.27a1.24,1.24,0,0,0-1.18.86l-6.24,19.2-6.24-19.16a1.26,1.26,0,0,0-1.19-.86h-5.26a1.25,1.25,0,0,0-1.25,1.25,1.21,1.21,0,0,0,.06.38L206,70.53l2.1,6.51a1.25,1.25,0,0,0,1.19.87h2l-1.19,3.67c-.32.78-.93,1.78-1.67,2s-2.37-.23-4.67-2.1a1.26,1.26,0,0,0-1.78.22h0l-3,4a1.25,1.25,0,0,0,.21,1.72,17.29,17.29,0,0,0,6.22,3.37,9.42,9.42,0,0,0,5.21,0c3.9-1.17,6.14-4.85,6.92-7.73L227.7,51.87a1.24,1.24,0,0,0-.71-1.61,1.22,1.22,0,0,0-.46-.09Zm-42.53,0a14.75,14.75,0,0,0,.69,29.48c4.82,0,9.42-1.91,12.11-5.48a1.25,1.25,0,0,0-.24-1.74l0,0L193.06,70a1.23,1.23,0,0,0-1.71.29c-1.36,1.84-4.24,2.82-6.65,2.82-3.45,0-6.93-3.41-6.93-6.21h19.9a1.25,1.25,0,0,0,1.25-1.19v-.8c0-9-6.46-15.12-14.92-14.73Zm-5.89,11.76c0-2.84,3.49-5.74,6.57-5.74s6.58,2.9,6.58,5.74ZM204.2,40.43h0a3,3,0,0,0,5.47-2.49v0h0a3,3,0,1,0-5.54,2.3l.09.2Z"/>
24
- </symbol>
25
-
26
- <symbol id="logo-compliance" viewBox="0 0 740 130" preserveAspectRatio="xMinYMid meet">
27
- <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#logo-property"></use>
28
- <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#logo-divider"></use>
29
- <path d="M555.1,52.34V89.8a1.24,1.24,0,0,0,1.22,1.25h5a1.25,1.25,0,0,0,1.25-1.25V75.68a11.61,11.61,0,0,0,8.83,4c7.39,0,13.64-6.61,13.64-14.76s-6.25-14.74-13.64-14.74a11.64,11.64,0,0,0-8.83,4.05V52.34a1.27,1.27,0,0,0-1.25-1.25h-5a1.25,1.25,0,0,0-1.25,1.25ZM562.61,65a7.45,7.45,0,1,1,7.45,7.76A7.61,7.61,0,0,1,562.61,65Zm79.5-13.87h-5a1.25,1.25,0,0,0-1.25,1.25v1.93a11.75,11.75,0,0,0-8.85-4c-7.39,0-13.62,6.61-13.62,14.74S619.63,79.75,627,79.75a11.62,11.62,0,0,0,8.85-4v1.92a1.25,1.25,0,0,0,1.25,1.25h5a1.27,1.27,0,0,0,1.25-1.25V52.34A1.27,1.27,0,0,0,642.11,51.09ZM628.39,72.72a7.76,7.76,0,1,1,7.46-8V65a7.6,7.6,0,0,1-7.46,7.76ZM484.72,50.22A14.76,14.76,0,1,0,499.48,65v0A14.76,14.76,0,0,0,484.72,50.22Zm0,22.5a7.76,7.76,0,1,1,7.46-8,2.62,2.62,0,0,1,0,.28,7.61,7.61,0,0,1-7.46,7.76Zm65.9,4.88a1.27,1.27,0,0,1-1.25,1.25h-5a1.26,1.26,0,0,1-1.25-1.25V64.53c-.15-5.52-2.81-7.26-6.26-7.26-2.6,0-4.61,1.45-5.52,4.53a11.83,11.83,0,0,0-.25,2.79V77.66a1.27,1.27,0,0,1-1.25,1.25h-5a1.27,1.27,0,0,1-1.27-1.25V64.59c-.14-5.52-2.8-7.27-6.26-7.27a5.82,5.82,0,0,0-5.59,4.54,11.3,11.3,0,0,0-.26,2.78V77.72A1.24,1.24,0,0,1,510.21,79h-5A1.24,1.24,0,0,1,504,77.72V52.34a1.25,1.25,0,0,1,1.25-1.25h5a1.25,1.25,0,0,1,1.25,1.25v1.72a11.75,11.75,0,0,1,8.92-3.66,10.56,10.56,0,0,1,8.71,5c2.11-3.64,5.81-5,10.84-5a11.36,11.36,0,0,1,10.7,11.32Zm170-27.36a14.75,14.75,0,0,0,.7,29.48,15,15,0,0,0,12.11-5.48,1.24,1.24,0,0,0-.27-1.74l0,0-3.44-2.42a1.25,1.25,0,0,0-1.72.29,8.7,8.7,0,0,1-6.65,2.9c-3.46,0-6.93-3.41-6.93-6.21h19.9a1.27,1.27,0,0,0,1.26-1.18V65C735.59,56,729.11,49.92,720.64,50.24ZM714.76,62c0-2.91,3.5-5.81,6.58-5.81s6.58,2.9,6.58,5.81ZM590.82,38.18h5a1.25,1.25,0,0,1,1.25,1.25V77.58a1.25,1.25,0,0,1-1.25,1.25h-5a1.25,1.25,0,0,1-1.25-1.25V39.43A1.25,1.25,0,0,1,590.82,38.18Zm14.43,9.3a4.49,4.49,0,0,1-3.31-1.38,4.67,4.67,0,0,1,0-6.57,4.49,4.49,0,0,1,3.31-1.38,4.37,4.37,0,0,1,3.26,1.38,4.67,4.67,0,0,1,0,6.57A4.37,4.37,0,0,1,605.25,47.48Zm2.47,31.34h-5a1.21,1.21,0,0,1-1.2-1.21V52.3a1.16,1.16,0,0,1,1.2-1.21h5a1.19,1.19,0,0,1,.87.35,1.15,1.15,0,0,1,.33.86V77.61a1.21,1.21,0,0,1-1.2,1.21Zm41.44,0h5a1.27,1.27,0,0,0,1.25-1.25V64.53a11.87,11.87,0,0,1,.24-2.79,5.81,5.81,0,0,1,5.52-4.56h.32c3.26.13,5.74,2,5.88,7.26V77.51a1.27,1.27,0,0,0,1.25,1.25h5a1.26,1.26,0,0,0,1.26-1.25V61.72a11.36,11.36,0,0,0-10.7-11.32,11,11,0,0,0-2,.14H662a11.59,11.59,0,0,0-5.39,2.33h0A11.33,11.33,0,0,0,655.43,54V52.34a1.27,1.27,0,0,0-1.25-1.25h-5a1.27,1.27,0,0,0-1.25,1.25V77.6A1.26,1.26,0,0,0,649.16,78.85ZM468,72.82l-3.82-2.71a1.24,1.24,0,0,0-1.65.17,7.34,7.34,0,0,1-5.46,2.47,7.76,7.76,0,0,1,0-15.5,7.29,7.29,0,0,1,5.44,2.44,1.24,1.24,0,0,0,1.64.16L468,57.18a1.23,1.23,0,0,0,.3-1.72.31.31,0,0,0-.09-.11,14.75,14.75,0,1,0-1.47,20.82,13.69,13.69,0,0,0,1.47-1.48,1.24,1.24,0,0,0-.05-1.76Zm236.6,0-3.82-2.71a1.23,1.23,0,0,0-1.64.17,7.25,7.25,0,0,1-5.45,2.47,7.76,7.76,0,0,1,0-15.5,7.34,7.34,0,0,1,5.43,2.44,1.23,1.23,0,0,0,1.63.16l3.82-2.67a1.24,1.24,0,0,0,.32-1.72l-.09-.11a14.76,14.76,0,1,0-1.47,20.82,13.69,13.69,0,0,0,1.47-1.48,1.24,1.24,0,0,0-.07-1.76A.69.69,0,0,0,704.61,72.82Z"/>
30
- </symbol>
31
-
32
- <symbol id="logo-movebutler" viewBox="0 0 740 130" preserveAspectRatio="xMinYMid meet">
33
- <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#logo-property"></use>
34
- <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#logo-divider"></use>
35
- <path d="M489,77.6a1.25,1.25,0,0,1-1.25,1.25h-5a1.25,1.25,0,0,1-1.25-1.25V64.53c-.16-5.52-2.81-7.26-6.26-7.26-2.61,0-4.6,1.45-5.53,4.53a12.39,12.39,0,0,0-.25,2.79V77.66a1.24,1.24,0,0,1-1.24,1.25h-5a1.25,1.25,0,0,1-1.25-1.25V64.59c-.16-5.52-2.82-7.27-6.26-7.27a5.83,5.83,0,0,0-5.61,4.54,11.79,11.79,0,0,0-.24,2.78V77.72A1.25,1.25,0,0,1,448.56,79h-5a1.25,1.25,0,0,1-1.25-1.24V52.34a1.27,1.27,0,0,1,1.25-1.25h5a1.27,1.27,0,0,1,1.25,1.25v1.72a11.72,11.72,0,0,1,8.92-3.66,10.56,10.56,0,0,1,8.71,5c2.12-3.64,5.81-5,10.85-5A11.37,11.37,0,0,1,489,61.72ZM646.82,51.09h-5a1.25,1.25,0,0,0-1.25,1.25V65.41a10.45,10.45,0,0,1-.26,2.79,5.8,5.8,0,0,1-5.57,4.53h-.31c-3.27-.11-5.74-2-5.9-7.26V52.4a1.24,1.24,0,0,0-1.24-1.25h-5A1.25,1.25,0,0,0,621,52.4V68.22a11.38,11.38,0,0,0,10.69,11.33,13.23,13.23,0,0,0,2-.15h.2a11.48,11.48,0,0,0,5.38-2.34h0a10.44,10.44,0,0,0,1.2-1.1v1.71a1.25,1.25,0,0,0,1.25,1.25h5.07a1.25,1.25,0,0,0,1.25-1.25V52.34A1.25,1.25,0,0,0,646.82,51.09Zm-138.58-.87A14.76,14.76,0,1,0,523,65v0A14.77,14.77,0,0,0,508.24,50.22Zm0,22.5a7.76,7.76,0,1,1,7.44-8.06c0,.1,0,.2,0,.3A7.62,7.62,0,0,1,508.24,72.72ZM738.32,50.57h-.82a7.36,7.36,0,0,0-6.44,3.57v-1.8a1.28,1.28,0,0,0-1.25-1.25h-5a1.27,1.27,0,0,0-1.26,1.25V77.58a1.26,1.26,0,0,0,1.26,1.27h5a1.27,1.27,0,0,0,1.25-1.27V65.08c0-4.36,2-6.62,5.81-6.62h1.45a1.59,1.59,0,0,0,.93-.35,1.32,1.32,0,0,0,.46-1.11V52C739.62,51.05,739.17,50.57,738.32,50.57Zm-34.26-.33a14.75,14.75,0,0,0,.69,29.48,15.08,15.08,0,0,0,12.12-5.48,1.26,1.26,0,0,0-.27-1.74l0,0-3.44-2.42a1.28,1.28,0,0,0-1.73.29,8.61,8.61,0,0,1-6.64,2.9c-3.45,0-6.92-3.41-6.92-6.21h19.89A1.28,1.28,0,0,0,719,65.85V65C719,56,712.52,49.92,704.06,50.24ZM698.25,62c0-2.91,3.48-5.81,6.58-5.81s6.58,2.9,6.58,5.81ZM567.48,50.24a14.75,14.75,0,0,0,.69,29.48,15,15,0,0,0,12.1-5.48A1.24,1.24,0,0,0,580,72.5l0,0-3.45-2.42a1.26,1.26,0,0,0-1.72.29,8.73,8.73,0,0,1-6.64,2.9c-3.45,0-6.94-3.41-6.94-6.21h19.91a1.25,1.25,0,0,0,1.25-1.18V65C582.42,56,575.93,49.92,567.48,50.24ZM561.6,62c0-2.91,3.48-5.81,6.57-5.81s6.57,2.9,6.57,5.81ZM672.13,71.8a1.24,1.24,0,0,0-1.62-.68l0,0c-2.7,1.22-4.35,1.25-5.05.82a3.92,3.92,0,0,1-1.13-2.9V68.8h0V57.34h8a1.25,1.25,0,0,0,1.26-1.24h0V52.34a1.27,1.27,0,0,0-1.26-1.25h-8V43.48A1.25,1.25,0,0,0,663,42.23h-5a1.25,1.25,0,0,0-1.25,1.25v7.61H653a1.27,1.27,0,0,0-1.25,1.25v3.75A1.25,1.25,0,0,0,653,57.34h3.73V68.7h0v.23a11,11,0,0,0,4.69,9.41,9.42,9.42,0,0,0,5,1.37,17.39,17.39,0,0,0,6.87-1.66,1.26,1.26,0,0,0,.64-1.61Zm-59.35,3.77a13.44,13.44,0,0,1-9.88,4.15,9.68,9.68,0,0,1-8.6-4.23v2.25a1.19,1.19,0,0,1-1.16,1.17h-5a1.18,1.18,0,0,1-.87-.35,1.1,1.1,0,0,1-.35-.82V39.42a1.16,1.16,0,0,1,.35-.82,1.22,1.22,0,0,1,.87-.35h5a1.19,1.19,0,0,1,.84.35,1,1,0,0,1,.38.82V54.27a8.19,8.19,0,0,1,3.43-2.9A11.55,11.55,0,0,1,603,50.21a13.39,13.39,0,0,1,9.82,4.06,14.41,14.41,0,0,1,4.12,10.64A14.55,14.55,0,0,1,612.78,75.57Zm-11-18.49a7.08,7.08,0,0,0-5.35,2.26,7.87,7.87,0,0,0-2.15,5.58,8,8,0,0,0,2.15,5.61,7.4,7.4,0,0,0,10.47.24l.25-.24a7.91,7.91,0,0,0,2.18-5.61,7.77,7.77,0,0,0-2.18-5.58A7.13,7.13,0,0,0,601.8,57.08Zm77.46-18.9h5a1.25,1.25,0,0,1,1.25,1.25V77.58a1.25,1.25,0,0,1-1.25,1.25h-5A1.25,1.25,0,0,1,678,77.58V39.43A1.25,1.25,0,0,1,679.26,38.18ZM549.7,51.09h-5.27a1.28,1.28,0,0,0-1.19.88l-5,15.54L533.14,52a1.25,1.25,0,0,0-1.19-.88H526.7a1.26,1.26,0,0,0-1.26,1.25,1.27,1.27,0,0,0,.06.39l6.08,18.73,2.1,6.52a1.28,1.28,0,0,0,1.19.87h6.64A1.28,1.28,0,0,0,542.7,78l.84-2.62L547,64.86h0l4-12.13a1.23,1.23,0,0,0-.79-1.57A1.08,1.08,0,0,0,549.7,51.09Z"/>
36
- </symbol>
37
-
38
- <symbol id="logo-medwaylaw" viewBox="0 0 464 130" preserveAspectRatio="xMinYMid meet">
39
- <use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#logo-iam"></use>
40
- <path d="M204.2,40.43s0,0,0,0v0h0A3,3,0,0,0,207,42.25a3.09,3.09,0,0,0,1.25-.27,3,3,0,0,0,1.48-4s0,0,0,0v0a3,3,0,0,0-5.46,2.5Zm5,9.81a14.75,14.75,0,0,0,.7,29.48c4.81,0,9.42-1.91,12.11-5.48a1.25,1.25,0,0,0-.3-1.77l-3.45-2.41a1.24,1.24,0,0,0-1.72.29c-1.36,1.84-4.23,2.82-6.64,2.82-3.46,0-6.94-3.41-6.94-6.21h19.92a1.26,1.26,0,0,0,1.25-1.19c0-.26,0-.53,0-.8C224.12,56,217.64,49.85,209.17,50.24ZM203.29,62c0-2.84,3.49-5.74,6.58-5.74s6.57,2.9,6.57,5.74ZM179.78,50.39c-5,0-8.73,1.32-10.84,5a10.58,10.58,0,0,0-8.69-5,11.78,11.78,0,0,0-8.93,3.66v-1.7a1.25,1.25,0,0,0-1.25-1.25h-5a1.25,1.25,0,0,0-1.25,1.25V77.6a1.25,1.25,0,0,0,1.25,1.25h5a1.25,1.25,0,0,0,1.25-1.25V64.54a11,11,0,0,1,.26-2.78c.95-3,3-4.54,5.6-4.54,3.45,0,6.11,1.81,6.26,7.32V77.6a1.25,1.25,0,0,0,1.25,1.25h5a1.25,1.25,0,0,0,1.25-1.25V64.54a11.52,11.52,0,0,1,.25-2.78c.92-3.1,2.92-4.54,5.53-4.54,3.44,0,6.1,1.81,6.26,7.32V77.6a1.25,1.25,0,0,0,1.25,1.25h5a1.25,1.25,0,0,0,1.25-1.25V61.73C190.48,55.27,185,50.41,179.78,50.39ZM208.21,88a3,3,0,0,0-2.49,5.46,2.89,2.89,0,0,0,1.24.27A3,3,0,0,0,208.21,88Zm48.7-49.83h-5a1.25,1.25,0,0,0-1.25,1.25V54.25a11.61,11.61,0,0,0-8.83-4c-7.39,0-13.64,6.61-13.64,14.75s6.25,14.75,13.64,14.75a11.61,11.61,0,0,0,8.83-4V77.6a1.25,1.25,0,0,0,1.25,1.25h5a1.24,1.24,0,0,0,1.24-1.25V39.43A1.24,1.24,0,0,0,256.91,38.18ZM243.19,72.72A7.76,7.76,0,1,1,250.64,65,7.61,7.61,0,0,1,243.19,72.72ZM380.56,38.18h-5a1.24,1.24,0,0,0-1.24,1.25V77.6a1.24,1.24,0,0,0,1.24,1.25h5a1.25,1.25,0,0,0,1.25-1.25V39.43A1.25,1.25,0,0,0,380.56,38.18ZM335.88,51.1h-5a1.24,1.24,0,0,0-1.25,1.25v1.9a11.64,11.64,0,0,0-8.84-4c-7.39,0-13.64,6.61-13.64,14.75s6.25,14.75,13.64,14.75a11.64,11.64,0,0,0,8.84-4V77.6a1.24,1.24,0,0,0,1.25,1.25h5a1.25,1.25,0,0,0,1.25-1.25V52.35A1.25,1.25,0,0,0,335.88,51.1ZM322.16,72.72A7.76,7.76,0,1,1,329.61,65,7.61,7.61,0,0,1,322.16,72.72ZM415,51.1h-5a1.25,1.25,0,0,0-1.25,1.25v1.9a11.64,11.64,0,0,0-8.84-4c-7.39,0-13.63,6.61-13.63,14.75s6.24,14.75,13.63,14.75a11.64,11.64,0,0,0,8.84-4V77.6A1.25,1.25,0,0,0,410,78.85h5a1.25,1.25,0,0,0,1.25-1.25V52.35A1.25,1.25,0,0,0,415,51.1ZM401.31,72.72A7.76,7.76,0,1,1,408.76,65,7.61,7.61,0,0,1,401.31,72.72ZM368.46,51.1H363.2A1.25,1.25,0,0,0,362,52l-6.24,19.2L349.53,52a1.23,1.23,0,0,0-1.19-.86h-5.25a1.25,1.25,0,0,0-1.19,1.63L348,71.42l2.1,6.51a1.25,1.25,0,0,0,1.19.87h2l-1.19,3.67c-.32.78-.93,1.78-1.67,2s-2.37-.23-4.68-2.1a1.25,1.25,0,0,0-1.78.22l-3,4a1.24,1.24,0,0,0,.21,1.72,17.32,17.32,0,0,0,6.21,3.37,9.44,9.44,0,0,0,5.22,0c3.89-1.17,6.14-4.85,6.91-7.73l10.14-31.19A1.25,1.25,0,0,0,368.46,51.1Zm-63.81,0h-5.26a1.22,1.22,0,0,0-1.18.86l-5,15.49-5-15.49A1.25,1.25,0,0,0,287,51.1H281.6a1.22,1.22,0,0,0-1.18.86l-5,15.49-5-15.49a1.25,1.25,0,0,0-1.19-.86h-5.25a1.24,1.24,0,0,0-1.19,1.63l6.07,18.69,2.1,6.51a1.25,1.25,0,0,0,1.19.87h6.62a1.25,1.25,0,0,0,1.19-.87l.84-2.62,3.4-10.47v0l.16-.48,2.3,7.08,2.1,6.51a1.25,1.25,0,0,0,1.19.87h6.62a1.25,1.25,0,0,0,1.19-.87l.84-2.61,3.41-10.48,0,0,3.93-12.09A1.25,1.25,0,0,0,304.65,51.1Zm158.13,0h-5.26a1.25,1.25,0,0,0-1.19.86l-5,15.49-5-15.49a1.25,1.25,0,0,0-1.19-.86h-5.35a1.25,1.25,0,0,0-1.19.86l-5,15.49-5-15.49a1.22,1.22,0,0,0-1.18-.86H422a1.25,1.25,0,0,0-1.19,1.63l6.07,18.69,2.1,6.51a1.25,1.25,0,0,0,1.19.87h6.62a1.25,1.25,0,0,0,1.19-.87l.84-2.62,3.41-10.47v0l.15-.48,2.3,7.08,2.1,6.51a1.25,1.25,0,0,0,1.19.87h6.62a1.25,1.25,0,0,0,1.19-.87l.84-2.61,3.41-10.48v0L464,52.73A1.24,1.24,0,0,0,462.78,51.1Z"/>
41
- </symbol>
42
-
43
- </svg>
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2
+
3
+ <symbol id="logo-iam">
4
+ <path d="M133.05,8.54a2.8,2.8,0,0,0,.86-.13,3,3,0,1,0-.86.13ZM134,121.6a3,3,0,1,0-1.69,5.76,3.06,3.06,0,0,0,.85.12,3,3,0,0,0,.84-5.88ZM182.42,15.34a3,3,0,1,0,3.86-4.59,3,3,0,0,0-.63-.41h0a3,3,0,0,0-3.23,5Zm-15.29-7a3.06,3.06,0,0,0,.85.12,3,3,0,1,0-.85-.12ZM117,15.83a3,3,0,1,0-3-3,3.07,3.07,0,0,0,.48,1.62A3,3,0,0,0,117,15.88Zm1.68,98.76a3,3,0,1,0,1.39,2.54,3,3,0,0,0-1.39-2.54Zm80.7-11.32a3,3,0,0,0-4.23.31h0a3,3,0,1,0,4.31-.31Zm-16.91,11.3a1.9,1.9,0,1,1,0,.05Zm14.9-87.28a3,3,0,0,0,2.26-5h0a3,3,0,1,0-2.26,5ZM150.6,124a3,3,0,1,0,3,3A3,3,0,0,0,150.6,124ZM150.52,6a3,3,0,1,0-3-3A3,3,0,0,0,150.52,6Zm16.69,115.6a3,3,0,0,0,.85,5.88,2.7,2.7,0,0,0,.85-.13,3,3,0,0,0-1.49-5.81l-.21.06ZM65,0a65,65,0,1,0,65,65A65,65,0,0,0,65,0ZM27.74,77.6a1.25,1.25,0,0,1-1.25,1.25h-5a1.25,1.25,0,0,1-1.25-1.25V52.35a1.25,1.25,0,0,1,1.25-1.25h5a1.25,1.25,0,0,1,1.25,1.25ZM24.11,47.49a4.66,4.66,0,1,1,4.66-4.66h0A4.66,4.66,0,0,1,24.11,47.49ZM61.47,77.6a1.25,1.25,0,0,1-1.25,1.25h-5A1.25,1.25,0,0,1,54,77.6V75.69a11.61,11.61,0,0,1-8.84,4c-7.39,0-13.63-6.6-13.63-14.75s6.24-14.75,13.63-14.75a11.61,11.61,0,0,1,8.84,4v-1.9A1.25,1.25,0,0,1,55.22,51h5a1.25,1.25,0,0,1,1.25,1.25Zm40-55.13a3,3,0,1,1,2.26,4.93,3,3,0,0,1-2-.73,3,3,0,0,1-.36-4.2Zm-10,15.58a3,3,0,1,1,2.73,4.24A3,3,0,0,1,93,42a3,3,0,0,1-1.52-4h0Zm4,55.46a3,3,0,1,1,1.76-2.72A3,3,0,0,1,95.47,93.51Zm10.24,14.38a2.93,2.93,0,0,1-2,.74,3,3,0,1,1,2-.74Zm6.87-30.29a1.25,1.25,0,0,1-1.25,1.25h-5a1.25,1.25,0,0,1-1.22-1.25V64.54c-.15-5.51-2.81-7.32-6.26-7.32-2.61,0-4.6,1.44-5.52,4.54a11.29,11.29,0,0,0-.25,2.78V77.6a1.25,1.25,0,0,1-1.25,1.25h-5a1.25,1.25,0,0,1-1.25-1.25V64.54c-.16-5.51-2.82-7.32-6.26-7.32-2.58,0-4.66,1.53-5.61,4.54a11.29,11.29,0,0,0-.25,2.78V77.6a1.25,1.25,0,0,1-1.25,1.25h-5A1.25,1.25,0,0,1,66,77.6V52.35a1.25,1.25,0,0,1,1.25-1.25h5a1.25,1.25,0,0,1,1.25,1.25v1.7a11.77,11.77,0,0,1,8.92-3.66,10.58,10.58,0,0,1,8.69,5c2.12-3.65,5.87-5,10.85-5,5.22,0,10.69,4.88,10.69,11.34ZM46.46,57.22a7.76,7.76,0,1,0,7.44,8.06c0-.1,0-.21,0-.31a7.61,7.61,0,0,0-7.46-7.75Z"/>
5
+ </symbol>
6
+
7
+ <symbol id="logo-divider">
8
+ <rect x="409.75" y="14.54" width="2.18" height="100.92"/>
9
+ </symbol>
10
+
11
+
12
+ <symbol id="logo-property" viewBox="0 0 380 130" preserveAspectRatio="xMinYMid meet">
13
+ <use xlink:href="#logo-iam"/>
14
+ <path d="M208.2,88a3,3,0,1,0-2.49,5.46,3,3,0,0,0,1.24.27A3,3,0,0,0,208.21,88Zm-4-47.58h0a3,3,0,0,0,5.47-2.49v0h0a3,3,0,1,0-5.54,2.3l.09.2Zm-44,9.79a11.61,11.61,0,0,0-8.84,4v-1.9a1.25,1.25,0,0,0-1.22-1.22h-5a1.25,1.25,0,0,0-1.25,1.25v37.5a1.25,1.25,0,0,0,1.25,1.25h5a1.25,1.25,0,0,0,1.25-1.25V75.69a11.61,11.61,0,0,0,8.84,4c7.39,0,13.63-6.6,13.63-14.75s-6.28-14.72-13.67-14.72Zm-1.37,22.5a7.76,7.76,0,1,1,7.44-8.06c0,.1,0,.21,0,.31a7.6,7.6,0,0,1-7.45,7.75h0Zm90.8-22.5a11.61,11.61,0,0,0-8.84,4v-1.9a1.25,1.25,0,0,0-1.25-1.25h-5a1.25,1.25,0,0,0-1.25,1.25v37.5a1.25,1.25,0,0,0,1.25,1.25h5a1.25,1.25,0,0,0,1.25-1.25V75.69a11.61,11.61,0,0,0,8.84,4c7.39,0,13.63-6.6,13.63-14.75S257,50.22,249.59,50.22Zm-1.37,22.5a7.76,7.76,0,1,1,7.44-8.06c0,.1,0,.21,0,.31a7.6,7.6,0,0,1-7.45,7.75h0ZM214,50.22A14.75,14.75,0,1,0,228.75,65,14.75,14.75,0,0,0,214,50.22h0Zm0,22.5a7.76,7.76,0,1,1,7.44-8.06c0,.1,0,.21,0,.31A7.6,7.6,0,0,1,214,72.72h0Zm130.42-.91a1.25,1.25,0,0,0-1.63-.69l0,0c-2.7,1.21-4.37,1.25-5.06.83s-1.15-2.18-1.13-3v-.29h0V57.35h8a1.25,1.25,0,0,0,1.25-1.25V52.35a1.25,1.25,0,0,0-1.25-1.25h-8V43.48a1.25,1.25,0,0,0-1.25-1.25h-5a1.25,1.25,0,0,0-1.25,1.25V51.1h-3.74a1.25,1.25,0,0,0-1.25,1.25V56.1a1.25,1.25,0,0,0,1.25,1.25h3.78V68.71h0v.23c0,3,1.17,7.23,4.69,9.41a9.39,9.39,0,0,0,5,1.37,17.48,17.48,0,0,0,6.88-1.66,1.26,1.26,0,0,0,.64-1.61ZM377,51.1h-5.27a1.21,1.21,0,0,0-1.18.86l-6.24,19.2L358.05,52a1.26,1.26,0,0,0-1.19-.86H351.6a1.25,1.25,0,0,0-1.25,1.25,1.21,1.21,0,0,0,.06.38l6.07,18.69,2.1,6.51a1.25,1.25,0,0,0,1.19.87h2l-1.19,3.67c-.32.78-.93,1.78-1.67,2s-2.37-.23-4.67-2.1a1.27,1.27,0,0,0-1.78.21h0l-3,4a1.25,1.25,0,0,0,.21,1.72,17.29,17.29,0,0,0,6.22,3.37,9.42,9.42,0,0,0,5.21,0c3.9-1.17,6.14-4.85,6.92-7.73L378.14,52.8a1.25,1.25,0,0,0-.72-1.62,1.33,1.33,0,0,0-.45-.08Zm-95.63-.86A14.75,14.75,0,0,0,282,79.72c4.82,0,9.42-1.91,12.11-5.48a1.25,1.25,0,0,0-.24-1.74l-.05,0-3.46-2.41a1.23,1.23,0,0,0-1.71.29c-1.36,1.84-4.24,2.82-6.65,2.82-3.45,0-6.93-3.41-6.93-6.21H295a1.25,1.25,0,0,0,1.25-1.19V65c0-9-6.46-15.12-14.92-14.73ZM275.46,62c0-2.84,3.49-5.74,6.57-5.74s6.58,2.9,6.58,5.74ZM185.78,77.6V52.35a1.25,1.25,0,0,0-1.25-1.25h-5a1.25,1.25,0,0,0-1.25,1.25V77.6a1.25,1.25,0,0,0,1.25,1.25h5A1.25,1.25,0,0,0,185.78,77.6Zm12-21.84a4.66,4.66,0,1,0-4.66,4.66,4.66,4.66,0,0,0,4.66-4.66v0ZM307,51.1h-5a1.25,1.25,0,0,0-1.25,1.25V77.6A1.25,1.25,0,0,0,302,78.85h5a1.25,1.25,0,0,0,1.25-1.25V52.35A1.25,1.25,0,0,0,307,51.1Zm8.61,0a4.66,4.66,0,1,0,4.66,4.66,4.66,4.66,0,0,0-4.66-4.66Z"/>
15
+ </symbol>
16
+
17
+ <symbol id="logo-sold" viewBox="0 0 247 130" preserveAspectRatio="xMinYMid meet">
18
+ <use xlink:href="#logo-iam"/>
19
+ <path d="M208.2,88a3,3,0,1,0-2.49,5.46,3,3,0,0,0,1.24.27A3,3,0,0,0,208.21,88Zm37.22-49.83h-5a1.25,1.25,0,0,0-1.25,1.25V54.25a11.59,11.59,0,0,0-8.83-4C223,50.25,216.7,56.86,216.7,65S223,79.75,230.34,79.75a11.59,11.59,0,0,0,8.83-4v1.91a1.25,1.25,0,0,0,1.25,1.25h5a1.25,1.25,0,0,0,1.24-1.24h0V39.43a1.25,1.25,0,0,0-1.23-1.25ZM231.7,72.72a7.76,7.76,0,1,1,7.4-8.1c0,.13,0,.25,0,.38A7.61,7.61,0,0,1,231.7,72.72ZM200.11,65a14.75,14.75,0,1,0-14.75,14.75h0A14.77,14.77,0,0,0,200.11,65ZM177.9,65a7.46,7.46,0,1,1,7.46,7.75,7.61,7.61,0,0,1-7.5-7.72v0Zm33-26.79h-5a1.25,1.25,0,0,0-1.25,1.25V77.6a1.25,1.25,0,0,0,1.25,1.25h5a1.25,1.25,0,0,0,1.21-1.25V39.43a1.25,1.25,0,0,0-1.25-1.25h0ZM156.33,62.29c-2.86-.56-5.33-1-5.33-3.09,0-.74.35-2.47,3.58-2.47a3.3,3.3,0,0,1,3.18,1.79c.39.79.55,1,1.11,1h5.68a1,1,0,0,0,.75-.25.84.84,0,0,0,.15-.7,8.58,8.58,0,0,0-3.71-6.36,12.68,12.68,0,0,0-7.16-2c-5.2,0-11.28,2.36-11.28,9s5.48,7.68,9.87,8.56c2.83.56,5.27,1,5.27,3,0,2.15-2.42,2.47-3.86,2.47-2.38,0-3.35-1-3.75-1.84s-.57-.94-1.12-.94H144a1,1,0,0,0-.74.25.84.84,0,0,0-.15.7c.59,5.24,4.87,8.37,11.45,8.37,5.59,0,11.56-2.36,11.56-9s-5.52-7.66-9.89-8.52Z"/>
20
+ </symbol>
21
+
22
+ <symbol id="logo-key" viewBox="0 0 228 130" preserveAspectRatio="xMinYMid meet">
23
+ <use xlink:href="#logo-iam"/>
24
+ <path d="M167.58,78.6H161.2a1.86,1.86,0,0,1-1.68-.89l-7.79-11.39V77.2a1.27,1.27,0,0,1-1.4,1.4h-5.6a1.27,1.27,0,0,1-1.4-1.4V40.8a1.27,1.27,0,0,1,1.4-1.4h5.6a1.27,1.27,0,0,1,1.4,1.4v22L159,51.5a1.84,1.84,0,0,1,1.68-.9h6.44c1.12,0,1.51.73.89,1.68L159.74,64.6l8.68,12.32C169.09,77.88,168.7,78.6,167.58,78.6Zm59-28.43h-5.27a1.24,1.24,0,0,0-1.18.86l-6.24,19.2-6.24-19.16a1.26,1.26,0,0,0-1.19-.86h-5.26a1.25,1.25,0,0,0-1.25,1.25,1.21,1.21,0,0,0,.06.38L206,70.53l2.1,6.51a1.25,1.25,0,0,0,1.19.87h2l-1.19,3.67c-.32.78-.93,1.78-1.67,2s-2.37-.23-4.67-2.1a1.26,1.26,0,0,0-1.78.22h0l-3,4a1.25,1.25,0,0,0,.21,1.72,17.29,17.29,0,0,0,6.22,3.37,9.42,9.42,0,0,0,5.21,0c3.9-1.17,6.14-4.85,6.92-7.73L227.7,51.87a1.24,1.24,0,0,0-.71-1.61,1.22,1.22,0,0,0-.46-.09Zm-42.53,0a14.75,14.75,0,0,0,.69,29.48c4.82,0,9.42-1.91,12.11-5.48a1.25,1.25,0,0,0-.24-1.74l0,0L193.06,70a1.23,1.23,0,0,0-1.71.29c-1.36,1.84-4.24,2.82-6.65,2.82-3.45,0-6.93-3.41-6.93-6.21h19.9a1.25,1.25,0,0,0,1.25-1.19v-.8c0-9-6.46-15.12-14.92-14.73Zm-5.89,11.76c0-2.84,3.49-5.74,6.57-5.74s6.58,2.9,6.58,5.74ZM204.2,40.43h0a3,3,0,0,0,5.47-2.49v0h0a3,3,0,1,0-5.54,2.3l.09.2Z"/>
25
+ </symbol>
26
+
27
+ <symbol id="logo-compliance" viewBox="0 0 740 130" preserveAspectRatio="xMinYMid meet">
28
+ <use xlink:href="#logo-property"/>
29
+ <use xlink:href="#logo-divider"/>
30
+ <path d="M555.1,52.34V89.8a1.24,1.24,0,0,0,1.22,1.25h5a1.25,1.25,0,0,0,1.25-1.25V75.68a11.61,11.61,0,0,0,8.83,4c7.39,0,13.64-6.61,13.64-14.76s-6.25-14.74-13.64-14.74a11.64,11.64,0,0,0-8.83,4.05V52.34a1.27,1.27,0,0,0-1.25-1.25h-5a1.25,1.25,0,0,0-1.25,1.25ZM562.61,65a7.45,7.45,0,1,1,7.45,7.76A7.61,7.61,0,0,1,562.61,65Zm79.5-13.87h-5a1.25,1.25,0,0,0-1.25,1.25v1.93a11.75,11.75,0,0,0-8.85-4c-7.39,0-13.62,6.61-13.62,14.74S619.63,79.75,627,79.75a11.62,11.62,0,0,0,8.85-4v1.92a1.25,1.25,0,0,0,1.25,1.25h5a1.27,1.27,0,0,0,1.25-1.25V52.34A1.27,1.27,0,0,0,642.11,51.09ZM628.39,72.72a7.76,7.76,0,1,1,7.46-8V65a7.6,7.6,0,0,1-7.46,7.76ZM484.72,50.22A14.76,14.76,0,1,0,499.48,65v0A14.76,14.76,0,0,0,484.72,50.22Zm0,22.5a7.76,7.76,0,1,1,7.46-8,2.62,2.62,0,0,1,0,.28,7.61,7.61,0,0,1-7.46,7.76Zm65.9,4.88a1.27,1.27,0,0,1-1.25,1.25h-5a1.26,1.26,0,0,1-1.25-1.25V64.53c-.15-5.52-2.81-7.26-6.26-7.26-2.6,0-4.61,1.45-5.52,4.53a11.83,11.83,0,0,0-.25,2.79V77.66a1.27,1.27,0,0,1-1.25,1.25h-5a1.27,1.27,0,0,1-1.27-1.25V64.59c-.14-5.52-2.8-7.27-6.26-7.27a5.82,5.82,0,0,0-5.59,4.54,11.3,11.3,0,0,0-.26,2.78V77.72A1.24,1.24,0,0,1,510.21,79h-5A1.24,1.24,0,0,1,504,77.72V52.34a1.25,1.25,0,0,1,1.25-1.25h5a1.25,1.25,0,0,1,1.25,1.25v1.72a11.75,11.75,0,0,1,8.92-3.66,10.56,10.56,0,0,1,8.71,5c2.11-3.64,5.81-5,10.84-5a11.36,11.36,0,0,1,10.7,11.32Zm170-27.36a14.75,14.75,0,0,0,.7,29.48,15,15,0,0,0,12.11-5.48,1.24,1.24,0,0,0-.27-1.74l0,0-3.44-2.42a1.25,1.25,0,0,0-1.72.29,8.7,8.7,0,0,1-6.65,2.9c-3.46,0-6.93-3.41-6.93-6.21h19.9a1.27,1.27,0,0,0,1.26-1.18V65C735.59,56,729.11,49.92,720.64,50.24ZM714.76,62c0-2.91,3.5-5.81,6.58-5.81s6.58,2.9,6.58,5.81ZM590.82,38.18h5a1.25,1.25,0,0,1,1.25,1.25V77.58a1.25,1.25,0,0,1-1.25,1.25h-5a1.25,1.25,0,0,1-1.25-1.25V39.43A1.25,1.25,0,0,1,590.82,38.18Zm14.43,9.3a4.49,4.49,0,0,1-3.31-1.38,4.67,4.67,0,0,1,0-6.57,4.49,4.49,0,0,1,3.31-1.38,4.37,4.37,0,0,1,3.26,1.38,4.67,4.67,0,0,1,0,6.57A4.37,4.37,0,0,1,605.25,47.48Zm2.47,31.34h-5a1.21,1.21,0,0,1-1.2-1.21V52.3a1.16,1.16,0,0,1,1.2-1.21h5a1.19,1.19,0,0,1,.87.35,1.15,1.15,0,0,1,.33.86V77.61a1.21,1.21,0,0,1-1.2,1.21Zm41.44,0h5a1.27,1.27,0,0,0,1.25-1.25V64.53a11.87,11.87,0,0,1,.24-2.79,5.81,5.81,0,0,1,5.52-4.56h.32c3.26.13,5.74,2,5.88,7.26V77.51a1.27,1.27,0,0,0,1.25,1.25h5a1.26,1.26,0,0,0,1.26-1.25V61.72a11.36,11.36,0,0,0-10.7-11.32,11,11,0,0,0-2,.14H662a11.59,11.59,0,0,0-5.39,2.33h0A11.33,11.33,0,0,0,655.43,54V52.34a1.27,1.27,0,0,0-1.25-1.25h-5a1.27,1.27,0,0,0-1.25,1.25V77.6A1.26,1.26,0,0,0,649.16,78.85ZM468,72.82l-3.82-2.71a1.24,1.24,0,0,0-1.65.17,7.34,7.34,0,0,1-5.46,2.47,7.76,7.76,0,0,1,0-15.5,7.29,7.29,0,0,1,5.44,2.44,1.24,1.24,0,0,0,1.64.16L468,57.18a1.23,1.23,0,0,0,.3-1.72.31.31,0,0,0-.09-.11,14.75,14.75,0,1,0-1.47,20.82,13.69,13.69,0,0,0,1.47-1.48,1.24,1.24,0,0,0-.05-1.76Zm236.6,0-3.82-2.71a1.23,1.23,0,0,0-1.64.17,7.25,7.25,0,0,1-5.45,2.47,7.76,7.76,0,0,1,0-15.5,7.34,7.34,0,0,1,5.43,2.44,1.23,1.23,0,0,0,1.63.16l3.82-2.67a1.24,1.24,0,0,0,.32-1.72l-.09-.11a14.76,14.76,0,1,0-1.47,20.82,13.69,13.69,0,0,0,1.47-1.48,1.24,1.24,0,0,0-.07-1.76A.69.69,0,0,0,704.61,72.82Z"/>
31
+ </symbol>
32
+
33
+ <symbol id="logo-movebutler" viewBox="0 0 740 130" preserveAspectRatio="xMinYMid meet">
34
+ <use xlink:href="#logo-property"/>
35
+ <use xlink:href="#logo-divider"/>
36
+ <path d="M489,77.6a1.25,1.25,0,0,1-1.25,1.25h-5a1.25,1.25,0,0,1-1.25-1.25V64.53c-.16-5.52-2.81-7.26-6.26-7.26-2.61,0-4.6,1.45-5.53,4.53a12.39,12.39,0,0,0-.25,2.79V77.66a1.24,1.24,0,0,1-1.24,1.25h-5a1.25,1.25,0,0,1-1.25-1.25V64.59c-.16-5.52-2.82-7.27-6.26-7.27a5.83,5.83,0,0,0-5.61,4.54,11.79,11.79,0,0,0-.24,2.78V77.72A1.25,1.25,0,0,1,448.56,79h-5a1.25,1.25,0,0,1-1.25-1.24V52.34a1.27,1.27,0,0,1,1.25-1.25h5a1.27,1.27,0,0,1,1.25,1.25v1.72a11.72,11.72,0,0,1,8.92-3.66,10.56,10.56,0,0,1,8.71,5c2.12-3.64,5.81-5,10.85-5A11.37,11.37,0,0,1,489,61.72ZM646.82,51.09h-5a1.25,1.25,0,0,0-1.25,1.25V65.41a10.45,10.45,0,0,1-.26,2.79,5.8,5.8,0,0,1-5.57,4.53h-.31c-3.27-.11-5.74-2-5.9-7.26V52.4a1.24,1.24,0,0,0-1.24-1.25h-5A1.25,1.25,0,0,0,621,52.4V68.22a11.38,11.38,0,0,0,10.69,11.33,13.23,13.23,0,0,0,2-.15h.2a11.48,11.48,0,0,0,5.38-2.34h0a10.44,10.44,0,0,0,1.2-1.1v1.71a1.25,1.25,0,0,0,1.25,1.25h5.07a1.25,1.25,0,0,0,1.25-1.25V52.34A1.25,1.25,0,0,0,646.82,51.09Zm-138.58-.87A14.76,14.76,0,1,0,523,65v0A14.77,14.77,0,0,0,508.24,50.22Zm0,22.5a7.76,7.76,0,1,1,7.44-8.06c0,.1,0,.2,0,.3A7.62,7.62,0,0,1,508.24,72.72ZM738.32,50.57h-.82a7.36,7.36,0,0,0-6.44,3.57v-1.8a1.28,1.28,0,0,0-1.25-1.25h-5a1.27,1.27,0,0,0-1.26,1.25V77.58a1.26,1.26,0,0,0,1.26,1.27h5a1.27,1.27,0,0,0,1.25-1.27V65.08c0-4.36,2-6.62,5.81-6.62h1.45a1.59,1.59,0,0,0,.93-.35,1.32,1.32,0,0,0,.46-1.11V52C739.62,51.05,739.17,50.57,738.32,50.57Zm-34.26-.33a14.75,14.75,0,0,0,.69,29.48,15.08,15.08,0,0,0,12.12-5.48,1.26,1.26,0,0,0-.27-1.74l0,0-3.44-2.42a1.28,1.28,0,0,0-1.73.29,8.61,8.61,0,0,1-6.64,2.9c-3.45,0-6.92-3.41-6.92-6.21h19.89A1.28,1.28,0,0,0,719,65.85V65C719,56,712.52,49.92,704.06,50.24ZM698.25,62c0-2.91,3.48-5.81,6.58-5.81s6.58,2.9,6.58,5.81ZM567.48,50.24a14.75,14.75,0,0,0,.69,29.48,15,15,0,0,0,12.1-5.48A1.24,1.24,0,0,0,580,72.5l0,0-3.45-2.42a1.26,1.26,0,0,0-1.72.29,8.73,8.73,0,0,1-6.64,2.9c-3.45,0-6.94-3.41-6.94-6.21h19.91a1.25,1.25,0,0,0,1.25-1.18V65C582.42,56,575.93,49.92,567.48,50.24ZM561.6,62c0-2.91,3.48-5.81,6.57-5.81s6.57,2.9,6.57,5.81ZM672.13,71.8a1.24,1.24,0,0,0-1.62-.68l0,0c-2.7,1.22-4.35,1.25-5.05.82a3.92,3.92,0,0,1-1.13-2.9V68.8h0V57.34h8a1.25,1.25,0,0,0,1.26-1.24h0V52.34a1.27,1.27,0,0,0-1.26-1.25h-8V43.48A1.25,1.25,0,0,0,663,42.23h-5a1.25,1.25,0,0,0-1.25,1.25v7.61H653a1.27,1.27,0,0,0-1.25,1.25v3.75A1.25,1.25,0,0,0,653,57.34h3.73V68.7h0v.23a11,11,0,0,0,4.69,9.41,9.42,9.42,0,0,0,5,1.37,17.39,17.39,0,0,0,6.87-1.66,1.26,1.26,0,0,0,.64-1.61Zm-59.35,3.77a13.44,13.44,0,0,1-9.88,4.15,9.68,9.68,0,0,1-8.6-4.23v2.25a1.19,1.19,0,0,1-1.16,1.17h-5a1.18,1.18,0,0,1-.87-.35,1.1,1.1,0,0,1-.35-.82V39.42a1.16,1.16,0,0,1,.35-.82,1.22,1.22,0,0,1,.87-.35h5a1.19,1.19,0,0,1,.84.35,1,1,0,0,1,.38.82V54.27a8.19,8.19,0,0,1,3.43-2.9A11.55,11.55,0,0,1,603,50.21a13.39,13.39,0,0,1,9.82,4.06,14.41,14.41,0,0,1,4.12,10.64A14.55,14.55,0,0,1,612.78,75.57Zm-11-18.49a7.08,7.08,0,0,0-5.35,2.26,7.87,7.87,0,0,0-2.15,5.58,8,8,0,0,0,2.15,5.61,7.4,7.4,0,0,0,10.47.24l.25-.24a7.91,7.91,0,0,0,2.18-5.61,7.77,7.77,0,0,0-2.18-5.58A7.13,7.13,0,0,0,601.8,57.08Zm77.46-18.9h5a1.25,1.25,0,0,1,1.25,1.25V77.58a1.25,1.25,0,0,1-1.25,1.25h-5A1.25,1.25,0,0,1,678,77.58V39.43A1.25,1.25,0,0,1,679.26,38.18ZM549.7,51.09h-5.27a1.28,1.28,0,0,0-1.19.88l-5,15.54L533.14,52a1.25,1.25,0,0,0-1.19-.88H526.7a1.26,1.26,0,0,0-1.26,1.25,1.27,1.27,0,0,0,.06.39l6.08,18.73,2.1,6.52a1.28,1.28,0,0,0,1.19.87h6.64A1.28,1.28,0,0,0,542.7,78l.84-2.62L547,64.86h0l4-12.13a1.23,1.23,0,0,0-.79-1.57A1.08,1.08,0,0,0,549.7,51.09Z"/>
37
+ </symbol>
38
+
39
+ <symbol id="logo-medwaylaw" viewBox="0 0 464 130" preserveAspectRatio="xMinYMid meet">
40
+ <use xlink:href="#logo-iam"/>
41
+ <path d="M204.2,40.43s0,0,0,0v0h0A3,3,0,0,0,207,42.25a3.09,3.09,0,0,0,1.25-.27,3,3,0,0,0,1.48-4s0,0,0,0v0a3,3,0,0,0-5.46,2.5Zm5,9.81a14.75,14.75,0,0,0,.7,29.48c4.81,0,9.42-1.91,12.11-5.48a1.25,1.25,0,0,0-.3-1.77l-3.45-2.41a1.24,1.24,0,0,0-1.72.29c-1.36,1.84-4.23,2.82-6.64,2.82-3.46,0-6.94-3.41-6.94-6.21h19.92a1.26,1.26,0,0,0,1.25-1.19c0-.26,0-.53,0-.8C224.12,56,217.64,49.85,209.17,50.24ZM203.29,62c0-2.84,3.49-5.74,6.58-5.74s6.57,2.9,6.57,5.74ZM179.78,50.39c-5,0-8.73,1.32-10.84,5a10.58,10.58,0,0,0-8.69-5,11.78,11.78,0,0,0-8.93,3.66v-1.7a1.25,1.25,0,0,0-1.25-1.25h-5a1.25,1.25,0,0,0-1.25,1.25V77.6a1.25,1.25,0,0,0,1.25,1.25h5a1.25,1.25,0,0,0,1.25-1.25V64.54a11,11,0,0,1,.26-2.78c.95-3,3-4.54,5.6-4.54,3.45,0,6.11,1.81,6.26,7.32V77.6a1.25,1.25,0,0,0,1.25,1.25h5a1.25,1.25,0,0,0,1.25-1.25V64.54a11.52,11.52,0,0,1,.25-2.78c.92-3.1,2.92-4.54,5.53-4.54,3.44,0,6.1,1.81,6.26,7.32V77.6a1.25,1.25,0,0,0,1.25,1.25h5a1.25,1.25,0,0,0,1.25-1.25V61.73C190.48,55.27,185,50.41,179.78,50.39ZM208.21,88a3,3,0,0,0-2.49,5.46,2.89,2.89,0,0,0,1.24.27A3,3,0,0,0,208.21,88Zm48.7-49.83h-5a1.25,1.25,0,0,0-1.25,1.25V54.25a11.61,11.61,0,0,0-8.83-4c-7.39,0-13.64,6.61-13.64,14.75s6.25,14.75,13.64,14.75a11.61,11.61,0,0,0,8.83-4V77.6a1.25,1.25,0,0,0,1.25,1.25h5a1.24,1.24,0,0,0,1.24-1.25V39.43A1.24,1.24,0,0,0,256.91,38.18ZM243.19,72.72A7.76,7.76,0,1,1,250.64,65,7.61,7.61,0,0,1,243.19,72.72ZM380.56,38.18h-5a1.24,1.24,0,0,0-1.24,1.25V77.6a1.24,1.24,0,0,0,1.24,1.25h5a1.25,1.25,0,0,0,1.25-1.25V39.43A1.25,1.25,0,0,0,380.56,38.18ZM335.88,51.1h-5a1.24,1.24,0,0,0-1.25,1.25v1.9a11.64,11.64,0,0,0-8.84-4c-7.39,0-13.64,6.61-13.64,14.75s6.25,14.75,13.64,14.75a11.64,11.64,0,0,0,8.84-4V77.6a1.24,1.24,0,0,0,1.25,1.25h5a1.25,1.25,0,0,0,1.25-1.25V52.35A1.25,1.25,0,0,0,335.88,51.1ZM322.16,72.72A7.76,7.76,0,1,1,329.61,65,7.61,7.61,0,0,1,322.16,72.72ZM415,51.1h-5a1.25,1.25,0,0,0-1.25,1.25v1.9a11.64,11.64,0,0,0-8.84-4c-7.39,0-13.63,6.61-13.63,14.75s6.24,14.75,13.63,14.75a11.64,11.64,0,0,0,8.84-4V77.6A1.25,1.25,0,0,0,410,78.85h5a1.25,1.25,0,0,0,1.25-1.25V52.35A1.25,1.25,0,0,0,415,51.1ZM401.31,72.72A7.76,7.76,0,1,1,408.76,65,7.61,7.61,0,0,1,401.31,72.72ZM368.46,51.1H363.2A1.25,1.25,0,0,0,362,52l-6.24,19.2L349.53,52a1.23,1.23,0,0,0-1.19-.86h-5.25a1.25,1.25,0,0,0-1.19,1.63L348,71.42l2.1,6.51a1.25,1.25,0,0,0,1.19.87h2l-1.19,3.67c-.32.78-.93,1.78-1.67,2s-2.37-.23-4.68-2.1a1.25,1.25,0,0,0-1.78.22l-3,4a1.24,1.24,0,0,0,.21,1.72,17.32,17.32,0,0,0,6.21,3.37,9.44,9.44,0,0,0,5.22,0c3.89-1.17,6.14-4.85,6.91-7.73l10.14-31.19A1.25,1.25,0,0,0,368.46,51.1Zm-63.81,0h-5.26a1.22,1.22,0,0,0-1.18.86l-5,15.49-5-15.49A1.25,1.25,0,0,0,287,51.1H281.6a1.22,1.22,0,0,0-1.18.86l-5,15.49-5-15.49a1.25,1.25,0,0,0-1.19-.86h-5.25a1.24,1.24,0,0,0-1.19,1.63l6.07,18.69,2.1,6.51a1.25,1.25,0,0,0,1.19.87h6.62a1.25,1.25,0,0,0,1.19-.87l.84-2.62,3.4-10.47v0l.16-.48,2.3,7.08,2.1,6.51a1.25,1.25,0,0,0,1.19.87h6.62a1.25,1.25,0,0,0,1.19-.87l.84-2.61,3.41-10.48,0,0,3.93-12.09A1.25,1.25,0,0,0,304.65,51.1Zm158.13,0h-5.26a1.25,1.25,0,0,0-1.19.86l-5,15.49-5-15.49a1.25,1.25,0,0,0-1.19-.86h-5.35a1.25,1.25,0,0,0-1.19.86l-5,15.49-5-15.49a1.22,1.22,0,0,0-1.18-.86H422a1.25,1.25,0,0,0-1.19,1.63l6.07,18.69,2.1,6.51a1.25,1.25,0,0,0,1.19.87h6.62a1.25,1.25,0,0,0,1.19-.87l.84-2.62,3.41-10.47v0l.15-.48,2.3,7.08,2.1,6.51a1.25,1.25,0,0,0,1.19.87h6.62a1.25,1.25,0,0,0,1.19-.87l.84-2.61,3.41-10.48v0L464,52.73A1.24,1.24,0,0,0,462.78,51.1Z"/>
42
+ </symbol>
43
+
44
+ <symbol id="logo-openview" viewBox="0 0 690 130" preserveAspectRatio="xMinYMid meet">
45
+ <use xlink:href="#logo-property"/>
46
+ <use xlink:href="#logo-divider"/>
47
+ <path d="M662.042411,79.21875 L655.513393,79.21875 C654.787946,79.21875 654.352679,78.7834821 654.0625,78.0580357 L646.082589,53.2477679 C645.792411,52.2321429 646.227679,51.6517857 647.243304,51.6517857 L652.611607,51.6517857 C653.337054,51.6517857 653.917411,52.0870536 654.0625,52.8125 L658.995536,70.5133929 L663.783482,52.8125 C664.073661,52.0870536 664.508929,51.6517857 665.234375,51.6517857 L671.183036,51.6517857 C671.908482,51.6517857 672.488839,52.0870536 672.633929,52.8125 L677.421875,70.5133929 L682.354911,52.8125 C682.645089,52.0870536 683.080357,51.6517857 683.805804,51.6517857 L688.59375,51.6517857 C689.464286,51.6517857 690.044643,52.3772321 689.754464,53.2477679 L681.774554,78.0580357 C681.484375,78.9285714 680.904018,79.21875 680.178571,79.21875 L673.939732,79.21875 C673.069196,79.21875 672.488839,78.7834821 672.34375,78.0580357 L667.991071,61.5178571 L663.638393,78.0580357 C663.348214,78.7834821 662.767857,79.21875 662.042411,79.21875 M644.051339,64.7098214 L644.051339,66.015625 C644.051339,66.8861607 643.616071,67.3214286 642.745536,67.3214286 L623.013393,67.3214286 C623.448661,71.2388393 626.495536,73.8504464 630.267857,73.8504464 C632.879464,73.8504464 635.055804,72.8348214 636.796875,70.9486607 C637.377232,70.3683036 637.8125,70.2232143 638.247768,70.6584821 L641.875,73.125 C642.455357,73.5602679 642.600446,74.140625 642.165179,74.7209821 C639.408482,78.3482143 635.345982,80.0892857 630.122768,80.0892857 C621.5625,80.0892857 615.46875,73.8504464 615.46875,65.5803571 C615.46875,57.3102679 621.5625,50.78125 630.122768,50.78125 C638.392857,50.9263393 644.051339,57.0200893 644.051339,64.7098214 M629.977679,56.875 C626.640625,56.875 623.883929,58.4709821 623.158482,60.9375 L636.796875,60.9375 C636.071429,58.3258929 633.314732,56.875 629.977679,56.875 M602.265625,43.2366071 C602.265625,40.7700893 604.296875,38.59375 606.908482,38.59375 C609.375,38.59375 611.551339,40.7700893 611.551339,43.2366071 C611.551339,45.703125 609.520089,47.8794643 606.908482,47.8794643 C604.296875,47.8794643 602.265625,45.8482143 602.265625,43.2366071 M604.441964,79.21875 C603.716518,79.21875 603.28125,78.6383929 603.28125,78.0580357 L603.28125,52.6674107 C603.28125,51.9419643 603.861607,51.5066964 604.441964,51.5066964 L609.375,51.5066964 C610.100446,51.5066964 610.535714,52.0870536 610.535714,52.6674107 L610.535714,77.9129464 C610.535714,78.4933036 609.955357,79.0736607 609.375,79.0736607 L604.441964,79.21875 L604.441964,79.21875 Z M581.662946,79.3638393 C580.9375,79.3638393 580.357143,78.9285714 580.066964,78.203125 L571.361607,53.3928571 C570.926339,52.5223214 571.506696,51.6517857 572.522321,51.6517857 L578.035714,51.6517857 C578.761161,51.6517857 579.196429,52.0870536 579.486607,52.8125 L585.725446,71.8191964 L591.529018,52.8125 C591.674107,52.0870536 592.254464,51.6517857 592.979911,51.6517857 L598.203125,51.6517857 C599.073661,51.6517857 599.654018,52.5223214 599.363839,53.3928571 L590.513393,78.0580357 C590.223214,78.9285714 589.787946,79.21875 589.0625,79.21875 L581.662946,79.3638393 L581.662946,79.3638393 L581.662946,79.3638393 Z M560.189732,64.7098214 C560.189732,60.2120536 557.723214,57.6004464 553.515625,57.6004464 C549.308036,57.6004464 546.551339,60.5022321 546.551339,64.7098214 L546.551339,78.0580357 C546.551339,78.6383929 545.970982,79.21875 545.390625,79.21875 L540.3125,79.21875 C539.732143,79.21875 539.151786,78.6383929 539.151786,78.0580357 L539.151786,52.6674107 C539.151786,51.9419643 539.732143,51.5066964 540.3125,51.5066964 L545.390625,51.5066964 C545.970982,51.5066964 546.551339,52.0870536 546.551339,52.6674107 L546.551339,54.84375 C548.4375,52.0870536 551.484375,50.78125 555.691964,50.78125 C562.946429,50.78125 567.589286,55.7142857 567.589286,62.8236607 L567.589286,78.203125 C567.589286,78.7834821 567.008929,79.3638393 566.428571,79.3638393 L561.495536,79.3638393 C560.915179,79.3638393 560.334821,78.9285714 560.334821,78.203125 L560.334821,64.7098214 L560.189732,64.7098214 L560.189732,64.7098214 Z M535.089286,64.7098214 L535.089286,66.015625 C535.089286,66.8861607 534.654018,67.3214286 533.783482,67.3214286 L514.051339,67.3214286 C514.486607,71.2388393 517.533482,73.8504464 521.305804,73.8504464 C523.917411,73.8504464 526.09375,72.8348214 527.834821,70.9486607 C528.415179,70.3683036 528.850446,70.2232143 529.285714,70.6584821 L532.912946,73.125 C533.493304,73.5602679 533.638393,74.140625 533.203125,74.7209821 C530.446429,78.3482143 526.383929,80.0892857 521.160714,80.0892857 C512.600446,80.0892857 506.506696,73.8504464 506.506696,65.5803571 C506.506696,57.3102679 512.600446,50.78125 521.160714,50.78125 C529.285714,50.9263393 535.089286,57.0200893 535.089286,64.7098214 M521.015625,56.875 C517.678571,56.875 514.921875,59.0513393 514.196429,62.6785714 L527.834821,62.6785714 C527.109375,58.90625 524.352679,56.875 521.015625,56.875 M489.241071,50.78125 C496.785714,50.78125 502.879464,56.7299107 502.879464,65.4352679 C502.879464,74.140625 496.785714,80.0892857 489.095982,80.0892857 C485.613839,80.0892857 482.131696,78.6383929 480.535714,76.171875 L480.535714,90.5357143 C480.535714,91.1160714 479.955357,91.6964286 479.375,91.6964286 L474.296875,91.6964286 C473.716518,91.6964286 473.136161,91.1160714 473.136161,90.5357143 L473.136161,52.8125 C473.136161,52.0870536 473.716518,51.6517857 474.296875,51.6517857 L479.229911,51.6517857 C479.810268,51.6517857 480.390625,52.2321429 480.390625,52.8125 L480.390625,54.9888393 C482.131696,52.3772321 485.323661,50.78125 489.241071,50.78125 M493.303571,70.9486607 C496.205357,67.9017857 496.205357,62.96875 493.303571,59.921875 C490.401786,56.875 485.613839,56.875 482.712054,59.921875 C479.810268,62.96875 479.810268,67.9017857 482.712054,70.9486607 C485.613839,73.9955357 490.401786,73.9955357 493.303571,70.9486607 M453.694196,50.78125 C461.964286,50.78125 468.638393,57.1651786 468.638393,65.4352679 C468.638393,73.7053571 462.109375,80.0892857 453.694196,80.0892857 C445.279018,80.0892857 438.75,73.7053571 438.75,65.4352679 C438.75,57.1651786 445.279018,50.78125 453.694196,50.78125 M458.917411,70.9486607 C461.819196,67.9017857 461.819196,62.96875 458.917411,59.921875 C456.015625,56.875 451.227679,56.875 448.325893,59.921875 C445.424107,62.96875 445.424107,67.9017857 448.325893,70.9486607 C451.227679,73.8504464 456.015625,73.8504464 458.917411,70.9486607"/>
48
+ </symbol>
49
+ </svg>
package/assets/ts/main.js CHANGED
@@ -1,57 +1,57 @@
1
- // Modules
2
- import * as helpers from '../js/modules/helpers';
3
- import nav from '../js/modules/nav';
4
- import table from '../js/modules/table';
5
- import accordion from './modules/accordion';
6
- import testimonial from '../js/modules/testimonial';
7
- import carousel from '../js/modules/carousel';
8
- import form from '../js/modules/form';
9
- import youtubeVideo from '../js/modules/youtubevideo';
10
- import modal from '../js/modules/modal';
11
- // Attach classes to dom elements
12
- document.addEventListener("DOMContentLoaded", function () {
13
- helpers.addBodyClasses(document.body);
14
- helpers.addGlobalEvents(document.body);
15
- helpers.checkElements(document.body);
16
- console.log('test.js');
17
- // ANav
18
- Array.from(document.querySelectorAll('.nav')).forEach((arrayElement, index) => {
19
- nav(arrayElement);
20
- });
21
- // Advanced tables
22
- Array.from(document.querySelectorAll('.table__wrapper')).forEach((arrayElement, index) => {
23
- table(arrayElement);
24
- });
25
- // Accordions
26
- Array.from(document.querySelectorAll('.accordion')).forEach((arrayElement, index) => {
27
- accordion(arrayElement);
28
- });
29
- // Testimonial
30
- Array.from(document.querySelectorAll('.testimonial')).forEach((arrayElement, index) => {
31
- testimonial(arrayElement);
32
- });
33
- // Carousel
34
- Array.from(document.querySelectorAll('.carousel')).forEach((arrayElement, index) => {
35
- carousel(arrayElement);
36
- });
37
- // Form
38
- Array.from(document.querySelectorAll('form')).forEach((arrayElement, index) => {
39
- form(arrayElement);
40
- });
41
- // Modal
42
- Array.from(document.querySelectorAll('.modal')).forEach((arrayElement, index) => {
43
- modal(arrayElement);
44
- });
45
- // YouTube videos
46
- Array.from(document.querySelectorAll('.youtube-embed')).forEach((arrayElement, index) => {
47
- new youtubeVideo(arrayElement);
48
- });
49
- window.addEventListener('hashchange', function () {
50
- const hash = location.hash.replace('#', '');
51
- const label = document.querySelector(`label[for="${hash}"]`);
52
- if (label instanceof HTMLElement) {
53
- label.click();
54
- }
55
- }, false);
56
- });
1
+ // Modules
2
+ import * as helpers from '../js/modules/helpers';
3
+ import nav from '../js/modules/nav';
4
+ import table from '../js/modules/table';
5
+ import accordion from './modules/accordion';
6
+ import testimonial from '../js/modules/testimonial';
7
+ import carousel from '../js/modules/carousel';
8
+ import form from '../js/modules/form';
9
+ import youtubeVideo from '../js/modules/youtubevideo';
10
+ import modal from '../js/modules/modal';
11
+ // Attach classes to dom elements
12
+ document.addEventListener("DOMContentLoaded", function () {
13
+ helpers.addBodyClasses(document.body);
14
+ helpers.addGlobalEvents(document.body);
15
+ helpers.checkElements(document.body);
16
+ console.log('test.js');
17
+ // ANav
18
+ Array.from(document.querySelectorAll('.nav')).forEach((arrayElement, index) => {
19
+ nav(arrayElement);
20
+ });
21
+ // Advanced tables
22
+ Array.from(document.querySelectorAll('.table__wrapper')).forEach((arrayElement, index) => {
23
+ table(arrayElement);
24
+ });
25
+ // Accordions
26
+ Array.from(document.querySelectorAll('.accordion')).forEach((arrayElement, index) => {
27
+ accordion(arrayElement);
28
+ });
29
+ // Testimonial
30
+ Array.from(document.querySelectorAll('.testimonial')).forEach((arrayElement, index) => {
31
+ testimonial(arrayElement);
32
+ });
33
+ // Carousel
34
+ Array.from(document.querySelectorAll('.carousel')).forEach((arrayElement, index) => {
35
+ carousel(arrayElement);
36
+ });
37
+ // Form
38
+ Array.from(document.querySelectorAll('form')).forEach((arrayElement, index) => {
39
+ form(arrayElement);
40
+ });
41
+ // Modal
42
+ Array.from(document.querySelectorAll('.modal')).forEach((arrayElement, index) => {
43
+ modal(arrayElement);
44
+ });
45
+ // YouTube videos
46
+ Array.from(document.querySelectorAll('.youtube-embed')).forEach((arrayElement, index) => {
47
+ new youtubeVideo(arrayElement);
48
+ });
49
+ window.addEventListener('hashchange', function () {
50
+ const hash = location.hash.replace('#', '');
51
+ const label = document.querySelector(`label[for="${hash}"]`);
52
+ if (label instanceof HTMLElement) {
53
+ label.click();
54
+ }
55
+ }, false);
56
+ });
57
57
  //# sourceMappingURL=main.js.map
package/assets/ts/main.ts CHANGED
@@ -1,68 +1,68 @@
1
- // @ts-nocheck
2
- // Modules
3
- import * as helpers from '../js/modules/helpers'
4
- import nav from '../js/modules/nav'
5
- import table from '../js/modules/table'
6
- import accordion from './modules/accordion'
7
- import testimonial from '../js/modules/testimonial'
8
- import carousel from '../js/modules/carousel'
9
- import form from '../js/modules/form'
10
- import youtubeVideo from '../js/modules/youtubevideo'
11
- import modal from '../js/modules/modal'
12
-
13
- // Attach classes to dom elements
14
- document.addEventListener("DOMContentLoaded", function() {
15
-
16
- helpers.addBodyClasses(document.body);
17
- helpers.addGlobalEvents(document.body);
18
- helpers.checkElements(document.body);
19
- console.log('test.js');
20
-
21
- // ANav
22
- Array.from(document.querySelectorAll('.nav')).forEach((arrayElement) => {
23
- nav(arrayElement);
24
- });
25
-
26
- // Advanced tables
27
- Array.from(document.querySelectorAll('.table__wrapper')).forEach((arrayElement) => {
28
- table(arrayElement);
29
- });
30
-
31
- // Accordions
32
- Array.from(document.querySelectorAll('.accordion')).forEach((arrayElement) => {
33
- accordion(arrayElement);
34
- });
35
-
36
- // Testimonial
37
- Array.from(document.querySelectorAll('.testimonial')).forEach((arrayElement) => {
38
- testimonial(arrayElement);
39
- });
40
- // Carousel
41
- Array.from(document.querySelectorAll('.carousel')).forEach((arrayElement) => {
42
- carousel(arrayElement);
43
- });
44
- // Form
45
- Array.from(document.querySelectorAll('form')).forEach((arrayElement) => {
46
- form(arrayElement);
47
- });
48
- // Modal
49
- Array.from(document.querySelectorAll('.modal')).forEach((arrayElement) => {
50
- modal(arrayElement);
51
- });
52
- // YouTube videos
53
- Array.from(document.querySelectorAll('.youtube-embed')).forEach((arrayElement) => {
54
- new youtubeVideo(arrayElement);
55
- });
56
-
57
-
58
- window.addEventListener('hashchange', function() {
59
-
60
- const hash = location.hash.replace('#','');
61
- const label = document.querySelector(`label[for="${hash}"]`);
62
-
63
- if (label instanceof HTMLElement) {
64
- label.click();
65
- }
66
-
67
- }, false);
68
- });
1
+ // @ts-nocheck
2
+ // Modules
3
+ import * as helpers from '../js/modules/helpers'
4
+ import nav from '../js/modules/nav'
5
+ import table from '../js/modules/table'
6
+ import accordion from '../js/modules/accordion'
7
+ import testimonial from '../js/modules/testimonial'
8
+ import carousel from '../js/modules/carousel'
9
+ import form from '../js/modules/form'
10
+ import youtubeVideo from '../js/modules/youtubevideo'
11
+ import modal from '../js/modules/modal'
12
+
13
+ // Attach classes to dom elements
14
+ document.addEventListener("DOMContentLoaded", function() {
15
+
16
+ helpers.addBodyClasses(document.body);
17
+ helpers.addGlobalEvents(document.body);
18
+ helpers.checkElements(document.body);
19
+ console.log('test.js');
20
+
21
+ // ANav
22
+ Array.from(document.querySelectorAll('.nav')).forEach((arrayElement) => {
23
+ nav(arrayElement);
24
+ });
25
+
26
+ // Advanced tables
27
+ Array.from(document.querySelectorAll('.table__wrapper')).forEach((arrayElement) => {
28
+ table(arrayElement);
29
+ });
30
+
31
+ // Accordions
32
+ Array.from(document.querySelectorAll('.accordion')).forEach((arrayElement) => {
33
+ accordion(arrayElement);
34
+ });
35
+
36
+ // Testimonial
37
+ Array.from(document.querySelectorAll('.testimonial')).forEach((arrayElement) => {
38
+ testimonial(arrayElement);
39
+ });
40
+ // Carousel
41
+ Array.from(document.querySelectorAll('.carousel')).forEach((arrayElement) => {
42
+ carousel(arrayElement);
43
+ });
44
+ // Form
45
+ Array.from(document.querySelectorAll('form')).forEach((arrayElement) => {
46
+ form(arrayElement);
47
+ });
48
+ // Modal
49
+ Array.from(document.querySelectorAll('.modal')).forEach((arrayElement) => {
50
+ modal(arrayElement);
51
+ });
52
+ // YouTube videos
53
+ Array.from(document.querySelectorAll('.youtube-embed')).forEach((arrayElement) => {
54
+ new youtubeVideo(arrayElement);
55
+ });
56
+
57
+
58
+ window.addEventListener('hashchange', function() {
59
+
60
+ const hash = location.hash.replace('#','');
61
+ const label = document.querySelector(`label[for="${hash}"]`);
62
+
63
+ if (label instanceof HTMLElement) {
64
+ label.click();
65
+ }
66
+
67
+ }, false);
68
+ });
@@ -1,33 +1,33 @@
1
- function accordion(accordionElement) {
2
- // Fetch all the details element.
3
- if (!accordionElement.classList.contains('accordion--keep-open')) {
4
- const details = accordionElement.querySelectorAll(":scope > details");
5
- // Add the onclick listeners.
6
- details.forEach((targetDetail) => {
7
- targetDetail.addEventListener("click", () => {
8
- // Close all the details that are not targetDetail.
9
- details.forEach((detail) => {
10
- if (detail !== targetDetail) {
11
- detail.removeAttribute("open");
12
- }
13
- });
14
- });
15
- });
16
- }
17
- if (window.location.hash && document.querySelector(window.location.hash + ':not([open]) summary')) {
18
- const detail = document.querySelector(window.location.hash + ' summary');
19
- if (detail instanceof HTMLElement) {
20
- detail.click();
21
- }
22
- }
23
- window.addEventListener('hashchange', function () {
24
- if (window.location.hash && document.querySelector(window.location.hash + ' summary')) {
25
- const detail = document.querySelector(window.location.hash + ' summary');
26
- if (detail instanceof HTMLElement) {
27
- detail.click();
28
- }
29
- }
30
- });
31
- }
32
- export default accordion;
1
+ function accordion(accordionElement) {
2
+ // Fetch all the details element.
3
+ if (!accordionElement.classList.contains('accordion--keep-open')) {
4
+ const details = accordionElement.querySelectorAll(":scope > details");
5
+ // Add the onclick listeners.
6
+ details.forEach((targetDetail) => {
7
+ targetDetail.addEventListener("click", () => {
8
+ // Close all the details that are not targetDetail.
9
+ details.forEach((detail) => {
10
+ if (detail !== targetDetail) {
11
+ detail.removeAttribute("open");
12
+ }
13
+ });
14
+ });
15
+ });
16
+ }
17
+ if (window.location.hash && document.querySelector(window.location.hash + ':not([open]) summary')) {
18
+ const detail = document.querySelector(window.location.hash + ' summary');
19
+ if (detail instanceof HTMLElement) {
20
+ detail.click();
21
+ }
22
+ }
23
+ window.addEventListener('hashchange', function () {
24
+ if (window.location.hash && document.querySelector(window.location.hash + ' summary')) {
25
+ const detail = document.querySelector(window.location.hash + ' summary');
26
+ if (detail instanceof HTMLElement) {
27
+ detail.click();
28
+ }
29
+ }
30
+ });
31
+ }
32
+ export default accordion;
33
33
  //# sourceMappingURL=accordion.js.map
@@ -1,43 +1,43 @@
1
- function accordion(accordionElement: Element) {
2
-
3
- // Fetch all the details element.
4
- if(!accordionElement.classList.contains('accordion--keep-open')){
5
-
6
- const details: NodeListOf<HTMLElement> = accordionElement.querySelectorAll(":scope > details");
7
-
8
- // Add the onclick listeners.
9
- details.forEach((targetDetail) => {
10
- targetDetail.addEventListener("click", () => {
11
- // Close all the details that are not targetDetail.
12
- details.forEach((detail) => {
13
- if (detail !== targetDetail) {
14
- detail.removeAttribute("open");
15
- }
16
- });
17
- });
18
- });
19
- }
20
-
21
-
22
- if(window.location.hash && document.querySelector(window.location.hash+':not([open]) summary')) {
23
-
24
- const detail = document.querySelector(window.location.hash+' summary');
25
-
26
- if (detail instanceof HTMLElement) {
27
- detail.click();
28
- }
29
- }
30
-
31
- window.addEventListener('hashchange', function(){
32
- if(window.location.hash && document.querySelector(window.location.hash+' summary')) {
33
-
34
- const detail = document.querySelector(window.location.hash+' summary');
35
-
36
- if (detail instanceof HTMLElement) {
37
- detail.click();
38
- }
39
- }
40
- });
41
- }
42
-
43
- export default accordion
1
+ function accordion(accordionElement: Element) {
2
+
3
+ // Fetch all the details element.
4
+ if(!accordionElement.classList.contains('accordion--keep-open')){
5
+
6
+ const details: NodeListOf<HTMLElement> = accordionElement.querySelectorAll(":scope > details");
7
+
8
+ // Add the onclick listeners.
9
+ details.forEach((targetDetail) => {
10
+ targetDetail.addEventListener("click", () => {
11
+ // Close all the details that are not targetDetail.
12
+ details.forEach((detail) => {
13
+ if (detail !== targetDetail) {
14
+ detail.removeAttribute("open");
15
+ }
16
+ });
17
+ });
18
+ });
19
+ }
20
+
21
+
22
+ if(window.location.hash && document.querySelector(window.location.hash+':not([open]) summary')) {
23
+
24
+ const detail = document.querySelector(window.location.hash+' summary');
25
+
26
+ if (detail instanceof HTMLElement) {
27
+ detail.click();
28
+ }
29
+ }
30
+
31
+ window.addEventListener('hashchange', function(){
32
+ if(window.location.hash && document.querySelector(window.location.hash+' summary')) {
33
+
34
+ const detail = document.querySelector(window.location.hash+' summary');
35
+
36
+ if (detail instanceof HTMLElement) {
37
+ detail.click();
38
+ }
39
+ }
40
+ });
41
+ }
42
+
43
+ export default accordion