@roadtrip/components 2.21.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 (2294) hide show
  1. package/LICENSE +201 -0
  2. package/dist/cjs/app-268f9884.js +7 -0
  3. package/dist/cjs/css-shim-9670f2f3.js +6 -0
  4. package/dist/cjs/dom-3e7d9c3b.js +75 -0
  5. package/dist/cjs/focus-visible-a5d1ccf9.js +335 -0
  6. package/dist/cjs/index-0181f02a.js +29 -0
  7. package/dist/cjs/index-8402028a.js +1824 -0
  8. package/dist/cjs/index.cjs.js +10 -0
  9. package/dist/cjs/loader.cjs.js +36 -0
  10. package/dist/cjs/polyfill-c7a0fa22.js +7 -0
  11. package/dist/cjs/road-accordion.cjs.entry.js +31 -0
  12. package/dist/cjs/road-alert.cjs.entry.js +24 -0
  13. package/dist/cjs/road-autocomplete.cjs.entry.js +49 -0
  14. package/dist/cjs/road-avatar.cjs.entry.js +19 -0
  15. package/dist/cjs/road-badge_11.cjs.entry.js +516 -0
  16. package/dist/cjs/road-card.cjs.entry.js +60 -0
  17. package/dist/cjs/road-carousel-item.cjs.entry.js +22 -0
  18. package/dist/cjs/road-carousel.cjs.entry.js +407 -0
  19. package/dist/cjs/road-checkbox.cjs.entry.js +77 -0
  20. package/dist/cjs/road-chip.cjs.entry.js +38 -0
  21. package/dist/cjs/road-collapse.cjs.entry.js +44 -0
  22. package/dist/cjs/road-counter.cjs.entry.js +39 -0
  23. package/dist/cjs/road-dialog.cjs.entry.js +98 -0
  24. package/dist/cjs/road-flap.cjs.entry.js +24 -0
  25. package/dist/cjs/road-img.cjs.entry.js +75 -0
  26. package/dist/cjs/road-input-group.cjs.entry.js +19 -0
  27. package/dist/cjs/road-input.cjs.entry.js +108 -0
  28. package/dist/cjs/road-modal.cjs.entry.js +80 -0
  29. package/dist/cjs/road-navbar-item.cjs.entry.js +64 -0
  30. package/dist/cjs/road-navbar.cjs.entry.js +37 -0
  31. package/dist/cjs/road-plate-number.cjs.entry.js +94 -0
  32. package/dist/cjs/road-progress.cjs.entry.js +28 -0
  33. package/dist/cjs/road-radio-group.cjs.entry.js +78 -0
  34. package/dist/cjs/road-radio.cjs.entry.js +90 -0
  35. package/dist/cjs/road-range.cjs.entry.js +58 -0
  36. package/dist/cjs/road-rating.cjs.entry.js +34 -0
  37. package/dist/cjs/road-select.cjs.entry.js +79 -0
  38. package/dist/cjs/road-skeleton.cjs.entry.js +19 -0
  39. package/dist/cjs/road-spinner.cjs.entry.js +19 -0
  40. package/dist/cjs/road-switch.cjs.entry.js +91 -0
  41. package/dist/cjs/road-tab-bar.cjs.entry.js +47 -0
  42. package/dist/cjs/road-tab-button.cjs.entry.js +82 -0
  43. package/dist/cjs/road-tab.cjs.entry.js +34 -0
  44. package/dist/cjs/road-table.cjs.entry.js +19 -0
  45. package/dist/cjs/road-tabs.cjs.entry.js +110 -0
  46. package/dist/cjs/road-text.cjs.entry.js +24 -0
  47. package/dist/cjs/road-textarea.cjs.entry.js +93 -0
  48. package/dist/cjs/road-toast.cjs.entry.js +99 -0
  49. package/dist/cjs/road-toolbar-title.cjs.entry.js +19 -0
  50. package/dist/cjs/road-tooltip.cjs.entry.js +77 -0
  51. package/dist/cjs/roadtrip.cjs.js +87 -0
  52. package/dist/cjs/shadow-css-09555044.js +391 -0
  53. package/dist/cjs/swiper.bundle-dec9b216.js +10002 -0
  54. package/dist/cjs/utils-07e0a826.js +80 -0
  55. package/dist/collection/collection-manifest.json +62 -0
  56. package/dist/collection/components/accordion/accordion.css +127 -0
  57. package/dist/collection/components/accordion/accordion.js +58 -0
  58. package/dist/collection/components/accordion/accordion.stories.js +49 -0
  59. package/dist/collection/components/alert/alert.css +108 -0
  60. package/dist/collection/components/alert/alert.js +54 -0
  61. package/dist/collection/components/alert/alert.stories.js +60 -0
  62. package/dist/collection/components/autocomplete/autocomplete.css +53 -0
  63. package/dist/collection/components/autocomplete/autocomplete.js +114 -0
  64. package/dist/collection/components/autocomplete/autocomplete.stories.js +101 -0
  65. package/dist/collection/components/avatar/avatar.css +33 -0
  66. package/dist/collection/components/avatar/avatar.js +18 -0
  67. package/dist/collection/components/avatar/avatar.stories.js +25 -0
  68. package/dist/collection/components/badge/badge.css +104 -0
  69. package/dist/collection/components/badge/badge.js +68 -0
  70. package/dist/collection/components/badge/badge.stories.js +52 -0
  71. package/dist/collection/components/button/button.css +452 -0
  72. package/dist/collection/components/button/button.js +293 -0
  73. package/dist/collection/components/button/button.stories.js +85 -0
  74. package/dist/collection/components/card/card.css +57 -0
  75. package/dist/collection/components/card/card.js +201 -0
  76. package/dist/collection/components/card/card.stories.js +82 -0
  77. package/dist/collection/components/carousel/carousel.css +134 -0
  78. package/dist/collection/components/carousel/carousel.js +1052 -0
  79. package/dist/collection/components/carousel/carousel.stories.js +116 -0
  80. package/dist/collection/components/carousel/swiper/swiper-interface.d.ts +1 -0
  81. package/dist/collection/components/carousel/swiper/swiper.bundle.js +10002 -0
  82. package/dist/collection/components/carousel/swiper/swiper.js +4 -0
  83. package/dist/collection/components/carousel-item/carousel-item.css +37 -0
  84. package/dist/collection/components/carousel-item/carousel-item.js +20 -0
  85. package/dist/collection/components/checkbox/checkbox.css +168 -0
  86. package/dist/collection/components/checkbox/checkbox.js +292 -0
  87. package/dist/collection/components/checkbox/checkbox.stories.js +83 -0
  88. package/dist/collection/components/chip/chip.css +83 -0
  89. package/dist/collection/components/chip/chip.js +114 -0
  90. package/dist/collection/components/chip/chip.stories.js +103 -0
  91. package/dist/collection/components/col/col.css +612 -0
  92. package/dist/collection/components/col/col.js +18 -0
  93. package/dist/collection/components/collapse/collapse.css +61 -0
  94. package/dist/collection/components/collapse/collapse.js +124 -0
  95. package/dist/collection/components/collapse/collapse.stories.js +157 -0
  96. package/dist/collection/components/counter/counter.css +18 -0
  97. package/dist/collection/components/counter/counter.js +158 -0
  98. package/dist/collection/components/counter/counter.stories.js +40 -0
  99. package/dist/collection/components/dialog/dialog.css +195 -0
  100. package/dist/collection/components/dialog/dialog.js +278 -0
  101. package/dist/collection/components/dialog/dialog.stories.js +59 -0
  102. package/dist/collection/components/drawer/drawer.dark.css +250 -0
  103. package/dist/collection/components/drawer/drawer.js +380 -0
  104. package/dist/collection/components/drawer/drawer.light.css +244 -0
  105. package/dist/collection/components/drawer/drawer.stories.js +83 -0
  106. package/dist/collection/components/flap/flap.css +27 -0
  107. package/dist/collection/components/flap/flap.js +45 -0
  108. package/dist/collection/components/flap/flap.stories.js +52 -0
  109. package/dist/collection/components/grid/grid.css +10 -0
  110. package/dist/collection/components/grid/grid.js +18 -0
  111. package/dist/collection/components/grid/grid.stories.js +89 -0
  112. package/dist/collection/components/icon/icon.css +96 -0
  113. package/dist/collection/components/icon/icon.js +288 -0
  114. package/dist/collection/components/icon/icon.stories.js +129 -0
  115. package/dist/collection/components/icon/request.js +32 -0
  116. package/dist/collection/components/icon/svg/alert-danger-outline.svg +1 -0
  117. package/dist/collection/components/icon/svg/alert-danger.svg +1 -0
  118. package/dist/collection/components/icon/svg/alert-error-outline-color.svg +1 -0
  119. package/dist/collection/components/icon/svg/alert-error-outline.svg +1 -0
  120. package/dist/collection/components/icon/svg/alert-error.svg +1 -0
  121. package/dist/collection/components/icon/svg/alert-info-outline-color.svg +1 -0
  122. package/dist/collection/components/icon/svg/alert-info-outline.svg +1 -0
  123. package/dist/collection/components/icon/svg/alert-info.svg +1 -0
  124. package/dist/collection/components/icon/svg/alert-notification-alarm-outline.svg +1 -0
  125. package/dist/collection/components/icon/svg/alert-notification-alarm.svg +1 -0
  126. package/dist/collection/components/icon/svg/alert-notification-outline.svg +1 -0
  127. package/dist/collection/components/icon/svg/alert-notification-warning-outline.svg +1 -0
  128. package/dist/collection/components/icon/svg/alert-notification-warning.svg +1 -0
  129. package/dist/collection/components/icon/svg/alert-notification.svg +1 -0
  130. package/dist/collection/components/icon/svg/alert-question-outline-color.svg +1 -0
  131. package/dist/collection/components/icon/svg/alert-question-outline.svg +1 -0
  132. package/dist/collection/components/icon/svg/alert-question.svg +1 -0
  133. package/dist/collection/components/icon/svg/alert-success-outline.svg +1 -0
  134. package/dist/collection/components/icon/svg/alert-success.svg +1 -0
  135. package/dist/collection/components/icon/svg/alert-valid-outline-color.svg +1 -0
  136. package/dist/collection/components/icon/svg/alert-valid-outline.svg +1 -0
  137. package/dist/collection/components/icon/svg/alert-valid.svg +1 -0
  138. package/dist/collection/components/icon/svg/alert-warning-outline-color.svg +1 -0
  139. package/dist/collection/components/icon/svg/alert-warning-outline.svg +1 -0
  140. package/dist/collection/components/icon/svg/alert-warning.svg +1 -0
  141. package/dist/collection/components/icon/svg/alternator-color.svg +1 -0
  142. package/dist/collection/components/icon/svg/alternator.svg +1 -0
  143. package/dist/collection/components/icon/svg/app.svg +1 -0
  144. package/dist/collection/components/icon/svg/arrow-drop-down.svg +1 -0
  145. package/dist/collection/components/icon/svg/arrow-drop.svg +1 -0
  146. package/dist/collection/components/icon/svg/arrow-fullscreen-collapse.svg +1 -0
  147. package/dist/collection/components/icon/svg/arrow-fullscreen-expand.svg +1 -0
  148. package/dist/collection/components/icon/svg/arrow-swap.svg +1 -0
  149. package/dist/collection/components/icon/svg/arrow.svg +1 -0
  150. package/dist/collection/components/icon/svg/axle-support.svg +1 -0
  151. package/dist/collection/components/icon/svg/bacterium-color.svg +1 -0
  152. package/dist/collection/components/icon/svg/bacterium.svg +1 -0
  153. package/dist/collection/components/icon/svg/battery-charger-color.svg +1 -0
  154. package/dist/collection/components/icon/svg/battery-charger.svg +1 -0
  155. package/dist/collection/components/icon/svg/battery-color.svg +1 -0
  156. package/dist/collection/components/icon/svg/battery-recycle-color.svg +1 -0
  157. package/dist/collection/components/icon/svg/battery-recycle.svg +1 -0
  158. package/dist/collection/components/icon/svg/battery-start-stop-color.svg +1 -0
  159. package/dist/collection/components/icon/svg/battery-start-stop.svg +1 -0
  160. package/dist/collection/components/icon/svg/battery.svg +1 -0
  161. package/dist/collection/components/icon/svg/best-customer.svg +1 -0
  162. package/dist/collection/components/icon/svg/book-service-color.svg +1 -0
  163. package/dist/collection/components/icon/svg/book-service.svg +1 -0
  164. package/dist/collection/components/icon/svg/book-technical-color.svg +1 -0
  165. package/dist/collection/components/icon/svg/book-technical.svg +1 -0
  166. package/dist/collection/components/icon/svg/brake-color.svg +1 -0
  167. package/dist/collection/components/icon/svg/brake-outline-color.svg +1 -0
  168. package/dist/collection/components/icon/svg/brake-outline.svg +1 -0
  169. package/dist/collection/components/icon/svg/brake-pad.svg +1 -0
  170. package/dist/collection/components/icon/svg/brake.svg +1 -0
  171. package/dist/collection/components/icon/svg/bulk-3d-color.svg +1 -0
  172. package/dist/collection/components/icon/svg/bulk-3d.svg +1 -0
  173. package/dist/collection/components/icon/svg/bundle-color.svg +1 -0
  174. package/dist/collection/components/icon/svg/bundle.svg +1 -0
  175. package/dist/collection/components/icon/svg/cable.svg +1 -0
  176. package/dist/collection/components/icon/svg/calculator-color.svg +1 -0
  177. package/dist/collection/components/icon/svg/calculator.svg +1 -0
  178. package/dist/collection/components/icon/svg/call-center-color.svg +1 -0
  179. package/dist/collection/components/icon/svg/call-center.svg +1 -0
  180. package/dist/collection/components/icon/svg/camera-off-outline-color.svg +1 -0
  181. package/dist/collection/components/icon/svg/camera-off-outline.svg +1 -0
  182. package/dist/collection/components/icon/svg/camera-off.svg +1 -0
  183. package/dist/collection/components/icon/svg/camera-outline-color.svg +1 -0
  184. package/dist/collection/components/icon/svg/camera-outline.svg +1 -0
  185. package/dist/collection/components/icon/svg/camera.svg +1 -0
  186. package/dist/collection/components/icon/svg/car-door-color.svg +1 -0
  187. package/dist/collection/components/icon/svg/car-door.svg +1 -0
  188. package/dist/collection/components/icon/svg/car-identity-paper-open.svg +1 -0
  189. package/dist/collection/components/icon/svg/car-identity-paper.svg +1 -0
  190. package/dist/collection/components/icon/svg/car-petrol-off-color.svg +1 -0
  191. package/dist/collection/components/icon/svg/car-petrol-off-outline.svg +1 -0
  192. package/dist/collection/components/icon/svg/car-petrol-off.svg +1 -0
  193. package/dist/collection/components/icon/svg/car-petrol-outline-color.svg +1 -0
  194. package/dist/collection/components/icon/svg/car-petrol-outline.svg +1 -0
  195. package/dist/collection/components/icon/svg/car-petrol.svg +1 -0
  196. package/dist/collection/components/icon/svg/car-power-color.svg +1 -0
  197. package/dist/collection/components/icon/svg/car-power.svg +1 -0
  198. package/dist/collection/components/icon/svg/car-seat-baby.svg +1 -0
  199. package/dist/collection/components/icon/svg/car-seat.svg +1 -0
  200. package/dist/collection/components/icon/svg/car-wiper-back-color.svg +1 -0
  201. package/dist/collection/components/icon/svg/car-wiper-back.svg +1 -0
  202. package/dist/collection/components/icon/svg/car-wiper-front-color.svg +1 -0
  203. package/dist/collection/components/icon/svg/car-wiper-front.svg +1 -0
  204. package/dist/collection/components/icon/svg/carpet-color.svg +1 -0
  205. package/dist/collection/components/icon/svg/carpet.svg +1 -0
  206. package/dist/collection/components/icon/svg/certified-outline-color.svg +1 -0
  207. package/dist/collection/components/icon/svg/certified-outline.svg +1 -0
  208. package/dist/collection/components/icon/svg/certified-warning-outline-color.svg +1 -0
  209. package/dist/collection/components/icon/svg/certified-warning-outline.svg +1 -0
  210. package/dist/collection/components/icon/svg/certified-warning.svg +1 -0
  211. package/dist/collection/components/icon/svg/certified.svg +1 -0
  212. package/dist/collection/components/icon/svg/check-point-color.svg +1 -0
  213. package/dist/collection/components/icon/svg/check-point-location-color.svg +1 -0
  214. package/dist/collection/components/icon/svg/check-point-location.svg +1 -0
  215. package/dist/collection/components/icon/svg/check-point.svg +1 -0
  216. package/dist/collection/components/icon/svg/check-small.svg +1 -0
  217. package/dist/collection/components/icon/svg/check-wide.svg +1 -0
  218. package/dist/collection/components/icon/svg/cleanser-color.svg +1 -0
  219. package/dist/collection/components/icon/svg/cleanser.svg +1 -0
  220. package/dist/collection/components/icon/svg/cloud-download-color.svg +1 -0
  221. package/dist/collection/components/icon/svg/cloud-download.svg +1 -0
  222. package/dist/collection/components/icon/svg/cloud-outline.svg +1 -0
  223. package/dist/collection/components/icon/svg/cloud-upload-color.svg +1 -0
  224. package/dist/collection/components/icon/svg/cloud-upload.svg +1 -0
  225. package/dist/collection/components/icon/svg/clutch-color.svg +1 -0
  226. package/dist/collection/components/icon/svg/clutch.svg +1 -0
  227. package/dist/collection/components/icon/svg/collapse.svg +1 -0
  228. package/dist/collection/components/icon/svg/comodo.svg +1 -0
  229. package/dist/collection/components/icon/svg/control-switch-color.svg +1 -0
  230. package/dist/collection/components/icon/svg/control-switch.svg +1 -0
  231. package/dist/collection/components/icon/svg/cookie.svg +1 -0
  232. package/dist/collection/components/icon/svg/cooling-color.svg +1 -0
  233. package/dist/collection/components/icon/svg/cooling.svg +1 -0
  234. package/dist/collection/components/icon/svg/cover-color.svg +1 -0
  235. package/dist/collection/components/icon/svg/cover.svg +1 -0
  236. package/dist/collection/components/icon/svg/covid-stop-color.svg +1 -0
  237. package/dist/collection/components/icon/svg/covid-stop.svg +1 -0
  238. package/dist/collection/components/icon/svg/crown.svg +1 -0
  239. package/dist/collection/components/icon/svg/dashboard.svg +1 -0
  240. package/dist/collection/components/icon/svg/data-add-color.svg +1 -0
  241. package/dist/collection/components/icon/svg/data-add.svg +1 -0
  242. package/dist/collection/components/icon/svg/data-color.svg +1 -0
  243. package/dist/collection/components/icon/svg/data-up-color.svg +1 -0
  244. package/dist/collection/components/icon/svg/data-up.svg +1 -0
  245. package/dist/collection/components/icon/svg/data.svg +1 -0
  246. package/dist/collection/components/icon/svg/delete-forever-color.svg +1 -0
  247. package/dist/collection/components/icon/svg/delete-forever.svg +1 -0
  248. package/dist/collection/components/icon/svg/device-color.svg +1 -0
  249. package/dist/collection/components/icon/svg/device-laptop-color.svg +1 -0
  250. package/dist/collection/components/icon/svg/device-laptop.svg +1 -0
  251. package/dist/collection/components/icon/svg/device-rotate-color.svg +1 -0
  252. package/dist/collection/components/icon/svg/device-rotate.svg +1 -0
  253. package/dist/collection/components/icon/svg/device-smartphone-color.svg +1 -0
  254. package/dist/collection/components/icon/svg/device-smartphone-sms-color.svg +1 -0
  255. package/dist/collection/components/icon/svg/device-smartphone-sms-wrench-color.svg +1 -0
  256. package/dist/collection/components/icon/svg/device-smartphone-sms-wrench.svg +1 -0
  257. package/dist/collection/components/icon/svg/device-smartphone-sms.svg +1 -0
  258. package/dist/collection/components/icon/svg/device-smartphone.svg +1 -0
  259. package/dist/collection/components/icon/svg/device-tablet-color.svg +1 -0
  260. package/dist/collection/components/icon/svg/device-tablet.svg +1 -0
  261. package/dist/collection/components/icon/svg/device.svg +1 -0
  262. package/dist/collection/components/icon/svg/diagnostic-color.svg +1 -0
  263. package/dist/collection/components/icon/svg/diagnostic.svg +1 -0
  264. package/dist/collection/components/icon/svg/discount-prct-outline-color.svg +1 -0
  265. package/dist/collection/components/icon/svg/discount-prct-outline.svg +1 -0
  266. package/dist/collection/components/icon/svg/discount-prct-single.svg +1 -0
  267. package/dist/collection/components/icon/svg/discount-prct.svg +1 -0
  268. package/dist/collection/components/icon/svg/discount-ticket-color.svg +1 -0
  269. package/dist/collection/components/icon/svg/discount-ticket.svg +1 -0
  270. package/dist/collection/components/icon/svg/discount-worshop.svg +1 -0
  271. package/dist/collection/components/icon/svg/download-color.svg +1 -0
  272. package/dist/collection/components/icon/svg/download.svg +1 -0
  273. package/dist/collection/components/icon/svg/edit-outline-color.svg +1 -0
  274. package/dist/collection/components/icon/svg/edit-outline.svg +1 -0
  275. package/dist/collection/components/icon/svg/edit-pen-color.svg +1 -0
  276. package/dist/collection/components/icon/svg/edit-pen-outline.svg +1 -0
  277. package/dist/collection/components/icon/svg/edit-pen.svg +1 -0
  278. package/dist/collection/components/icon/svg/edit.svg +1 -0
  279. package/dist/collection/components/icon/svg/electric-outline.svg +1 -0
  280. package/dist/collection/components/icon/svg/electric-plug-13pin-color.svg +1 -0
  281. package/dist/collection/components/icon/svg/electric-plug-13pin.svg +1 -0
  282. package/dist/collection/components/icon/svg/electric-plug-7pin-color.svg +1 -0
  283. package/dist/collection/components/icon/svg/electric-plug-7pin.svg +1 -0
  284. package/dist/collection/components/icon/svg/electric.svg +1 -0
  285. package/dist/collection/components/icon/svg/electricity-outline.svg +1 -0
  286. package/dist/collection/components/icon/svg/electricity.svg +1 -0
  287. package/dist/collection/components/icon/svg/electronic-diagnostic.svg +1 -0
  288. package/dist/collection/components/icon/svg/electronic-ethanol.svg +1 -0
  289. package/dist/collection/components/icon/svg/electronic-outline.svg +1 -0
  290. package/dist/collection/components/icon/svg/electronic.svg +1 -0
  291. package/dist/collection/components/icon/svg/engine-color.svg +1 -0
  292. package/dist/collection/components/icon/svg/engine-electric-color.svg +1 -0
  293. package/dist/collection/components/icon/svg/engine-electric.svg +1 -0
  294. package/dist/collection/components/icon/svg/engine-lubrication-color.svg +1 -0
  295. package/dist/collection/components/icon/svg/engine-lubrication.svg +1 -0
  296. package/dist/collection/components/icon/svg/engine-piston-color.svg +1 -0
  297. package/dist/collection/components/icon/svg/engine-piston.svg +1 -0
  298. package/dist/collection/components/icon/svg/engine.svg +1 -0
  299. package/dist/collection/components/icon/svg/exclamation-small.svg +1 -0
  300. package/dist/collection/components/icon/svg/exclamation-wide.svg +1 -0
  301. package/dist/collection/components/icon/svg/exhaust-pipe-color.svg +1 -0
  302. package/dist/collection/components/icon/svg/exhaust-pipe.svg +1 -0
  303. package/dist/collection/components/icon/svg/factory-color.svg +1 -0
  304. package/dist/collection/components/icon/svg/factory.svg +1 -0
  305. package/dist/collection/components/icon/svg/fidelity-card-color.svg +1 -0
  306. package/dist/collection/components/icon/svg/fidelity-card-wallet-color.svg +1 -0
  307. package/dist/collection/components/icon/svg/fidelity-card-wallet.svg +1 -0
  308. package/dist/collection/components/icon/svg/fidelity-card.svg +1 -0
  309. package/dist/collection/components/icon/svg/file-business-outline-color.svg +1 -0
  310. package/dist/collection/components/icon/svg/file-business-outline.svg +1 -0
  311. package/dist/collection/components/icon/svg/file-catalog-color.svg +1 -0
  312. package/dist/collection/components/icon/svg/file-catalog.svg +1 -0
  313. package/dist/collection/components/icon/svg/file-copy-color.svg +1 -0
  314. package/dist/collection/components/icon/svg/file-copy.svg +1 -0
  315. package/dist/collection/components/icon/svg/file-edit-color.svg +1 -0
  316. package/dist/collection/components/icon/svg/file-edit.svg +1 -0
  317. package/dist/collection/components/icon/svg/file-excel-color.svg +1 -0
  318. package/dist/collection/components/icon/svg/file-excel-outline.svg +1 -0
  319. package/dist/collection/components/icon/svg/file-excel.svg +1 -0
  320. package/dist/collection/components/icon/svg/file-list-outline-color.svg +1 -0
  321. package/dist/collection/components/icon/svg/file-list-outline.svg +1 -0
  322. package/dist/collection/components/icon/svg/file-outline.svg +1 -0
  323. package/dist/collection/components/icon/svg/file-pdf-color.svg +1 -0
  324. package/dist/collection/components/icon/svg/file-pdf-outline-color.svg +1 -0
  325. package/dist/collection/components/icon/svg/file-pdf-outline.svg +1 -0
  326. package/dist/collection/components/icon/svg/file-pdf.svg +1 -0
  327. package/dist/collection/components/icon/svg/file-powerpoint-color.svg +1 -0
  328. package/dist/collection/components/icon/svg/file-powerpoint.svg +1 -0
  329. package/dist/collection/components/icon/svg/file-technical-color.svg +1 -0
  330. package/dist/collection/components/icon/svg/file-technical.svg +1 -0
  331. package/dist/collection/components/icon/svg/file-word-color.svg +1 -0
  332. package/dist/collection/components/icon/svg/file-word.svg +1 -0
  333. package/dist/collection/components/icon/svg/filter-color.svg +1 -0
  334. package/dist/collection/components/icon/svg/filter-particle-color.svg +1 -0
  335. package/dist/collection/components/icon/svg/filter-particle.svg +1 -0
  336. package/dist/collection/components/icon/svg/filter-sport-color.svg +1 -0
  337. package/dist/collection/components/icon/svg/filter-sport.svg +1 -0
  338. package/dist/collection/components/icon/svg/filter.svg +1 -0
  339. package/dist/collection/components/icon/svg/fingerprint.svg +1 -0
  340. package/dist/collection/components/icon/svg/flag-argentina.svg +1 -0
  341. package/dist/collection/components/icon/svg/flag-austria.svg +1 -0
  342. package/dist/collection/components/icon/svg/flag-belgium.svg +1 -0
  343. package/dist/collection/components/icon/svg/flag-france.svg +1 -0
  344. package/dist/collection/components/icon/svg/flag-germany.svg +1 -0
  345. package/dist/collection/components/icon/svg/flag-italy.svg +1 -0
  346. package/dist/collection/components/icon/svg/flag-poland.svg +1 -0
  347. package/dist/collection/components/icon/svg/flag-portugal.svg +1 -0
  348. package/dist/collection/components/icon/svg/flag-romania.svg +1 -0
  349. package/dist/collection/components/icon/svg/flag-russia.svg +1 -0
  350. package/dist/collection/components/icon/svg/flag-spain.svg +1 -0
  351. package/dist/collection/components/icon/svg/flag-sweden.svg +1 -0
  352. package/dist/collection/components/icon/svg/flower-color.svg +1 -0
  353. package/dist/collection/components/icon/svg/flower.svg +1 -0
  354. package/dist/collection/components/icon/svg/fuel-air-supply-color.svg +1 -0
  355. package/dist/collection/components/icon/svg/fuel-air-supply.svg +1 -0
  356. package/dist/collection/components/icon/svg/fuel-door-color.svg +1 -0
  357. package/dist/collection/components/icon/svg/fuel-door.svg +1 -0
  358. package/dist/collection/components/icon/svg/funding-best-price-color.svg +1 -0
  359. package/dist/collection/components/icon/svg/funding-best-price.svg +1 -0
  360. package/dist/collection/components/icon/svg/funding-outline-color.svg +1 -0
  361. package/dist/collection/components/icon/svg/funding-outline.svg +1 -0
  362. package/dist/collection/components/icon/svg/funding-small-color.svg +1 -0
  363. package/dist/collection/components/icon/svg/funding-small-outline.svg +1 -0
  364. package/dist/collection/components/icon/svg/funding-small.svg +1 -0
  365. package/dist/collection/components/icon/svg/funding.svg +1 -0
  366. package/dist/collection/components/icon/svg/fuse.svg +1 -0
  367. package/dist/collection/components/icon/svg/garage-color.svg +1 -0
  368. package/dist/collection/components/icon/svg/garage-house-color.svg +1 -0
  369. package/dist/collection/components/icon/svg/garage-house.svg +1 -0
  370. package/dist/collection/components/icon/svg/garage.svg +1 -0
  371. package/dist/collection/components/icon/svg/gas-5-color.svg +1 -0
  372. package/dist/collection/components/icon/svg/gas-5-outline.svg +1 -0
  373. package/dist/collection/components/icon/svg/gas-5.svg +1 -0
  374. package/dist/collection/components/icon/svg/gasket-outline-color.svg +1 -0
  375. package/dist/collection/components/icon/svg/gasket-outline.svg +1 -0
  376. package/dist/collection/components/icon/svg/gasket.svg +1 -0
  377. package/dist/collection/components/icon/svg/gearbox-color.svg +1 -0
  378. package/dist/collection/components/icon/svg/gearbox.svg +1 -0
  379. package/dist/collection/components/icon/svg/gift-color.svg +1 -0
  380. package/dist/collection/components/icon/svg/gift-outline.svg +1 -0
  381. package/dist/collection/components/icon/svg/gift.svg +1 -0
  382. package/dist/collection/components/icon/svg/gps-color.svg +1 -0
  383. package/dist/collection/components/icon/svg/gps.svg +1 -0
  384. package/dist/collection/components/icon/svg/handicap.svg +1 -0
  385. package/dist/collection/components/icon/svg/hear-color.svg +1 -0
  386. package/dist/collection/components/icon/svg/hear.svg +1 -0
  387. package/dist/collection/components/icon/svg/helmet-bike-color.svg +1 -0
  388. package/dist/collection/components/icon/svg/helmet-bike.svg +1 -0
  389. package/dist/collection/components/icon/svg/helmet-cross-color.svg +1 -0
  390. package/dist/collection/components/icon/svg/helmet-cross.svg +1 -0
  391. package/dist/collection/components/icon/svg/helmet-full-color.svg +1 -0
  392. package/dist/collection/components/icon/svg/helmet-full.svg +1 -0
  393. package/dist/collection/components/icon/svg/helmet-half-jet-color.svg +1 -0
  394. package/dist/collection/components/icon/svg/helmet-half-jet.svg +1 -0
  395. package/dist/collection/components/icon/svg/helmet-jet-color.svg +1 -0
  396. package/dist/collection/components/icon/svg/helmet-jet.svg +1 -0
  397. package/dist/collection/components/icon/svg/helmet-modular-color.svg +1 -0
  398. package/dist/collection/components/icon/svg/helmet-modular.svg +1 -0
  399. package/dist/collection/components/icon/svg/helmet-skate-color.svg +1 -0
  400. package/dist/collection/components/icon/svg/helmet-skate.svg +1 -0
  401. package/dist/collection/components/icon/svg/home.svg +1 -0
  402. package/dist/collection/components/icon/svg/hook-hitch-color.svg +1 -0
  403. package/dist/collection/components/icon/svg/hook-hitch-outline.svg +1 -0
  404. package/dist/collection/components/icon/svg/hook-hitch.svg +1 -0
  405. package/dist/collection/components/icon/svg/house-color.svg +1 -0
  406. package/dist/collection/components/icon/svg/house.svg +1 -0
  407. package/dist/collection/components/icon/svg/ice-color.svg +1 -0
  408. package/dist/collection/components/icon/svg/ice-outline-color.svg +1 -0
  409. package/dist/collection/components/icon/svg/ice-outline.svg +1 -0
  410. package/dist/collection/components/icon/svg/ice.svg +1 -0
  411. package/dist/collection/components/icon/svg/identity-card-color.svg +1 -0
  412. package/dist/collection/components/icon/svg/identity-card.svg +1 -0
  413. package/dist/collection/components/icon/svg/keep-in-repair-outline.svg +1 -0
  414. package/dist/collection/components/icon/svg/keep-in-repair.svg +1 -0
  415. package/dist/collection/components/icon/svg/key-outline-color.svg +1 -0
  416. package/dist/collection/components/icon/svg/key-outline.svg +1 -0
  417. package/dist/collection/components/icon/svg/key.svg +1 -0
  418. package/dist/collection/components/icon/svg/leaf.svg +1 -0
  419. package/dist/collection/components/icon/svg/license-plate-be.svg +1 -0
  420. package/dist/collection/components/icon/svg/license-plate-es.svg +1 -0
  421. package/dist/collection/components/icon/svg/license-plate-eu.svg +1 -0
  422. package/dist/collection/components/icon/svg/license-plate-fr.svg +1 -0
  423. package/dist/collection/components/icon/svg/license-plate-it.svg +1 -0
  424. package/dist/collection/components/icon/svg/license-plate-pl.svg +1 -0
  425. package/dist/collection/components/icon/svg/license-plate-po.svg +1 -0
  426. package/dist/collection/components/icon/svg/license-plate-ru.svg +1 -0
  427. package/dist/collection/components/icon/svg/license-plate-star-be.svg +1 -0
  428. package/dist/collection/components/icon/svg/license-plate-star-es.svg +1 -0
  429. package/dist/collection/components/icon/svg/license-plate-star-eu.svg +1 -0
  430. package/dist/collection/components/icon/svg/license-plate-star-fr.svg +1 -0
  431. package/dist/collection/components/icon/svg/license-plate-star-it.svg +1 -0
  432. package/dist/collection/components/icon/svg/license-plate-star-pl.svg +1 -0
  433. package/dist/collection/components/icon/svg/license-plate-star-po.svg +1 -0
  434. package/dist/collection/components/icon/svg/light-beam-back-color.svg +1 -0
  435. package/dist/collection/components/icon/svg/light-beam-back.svg +1 -0
  436. package/dist/collection/components/icon/svg/light-beam-color.svg +1 -0
  437. package/dist/collection/components/icon/svg/light-beam-day-color.svg +1 -0
  438. package/dist/collection/components/icon/svg/light-beam-day.svg +1 -0
  439. package/dist/collection/components/icon/svg/light-beam-fog-color.svg +1 -0
  440. package/dist/collection/components/icon/svg/light-beam-fog.svg +1 -0
  441. package/dist/collection/components/icon/svg/light-beam-high-color.svg +1 -0
  442. package/dist/collection/components/icon/svg/light-beam-high.svg +1 -0
  443. package/dist/collection/components/icon/svg/light-beam-numberplate-color.svg +1 -0
  444. package/dist/collection/components/icon/svg/light-beam-numberplate.svg +1 -0
  445. package/dist/collection/components/icon/svg/light-beam-signal-color.svg +1 -0
  446. package/dist/collection/components/icon/svg/light-beam-signal.svg +1 -0
  447. package/dist/collection/components/icon/svg/light-beam-stop-color.svg +1 -0
  448. package/dist/collection/components/icon/svg/light-beam-stop.svg +1 -0
  449. package/dist/collection/components/icon/svg/light-beam-turn-color.svg +1 -0
  450. package/dist/collection/components/icon/svg/light-beam-turn.svg +1 -0
  451. package/dist/collection/components/icon/svg/light-beam.svg +1 -0
  452. package/dist/collection/components/icon/svg/light-box-color.svg +1 -0
  453. package/dist/collection/components/icon/svg/light-box.svg +1 -0
  454. package/dist/collection/components/icon/svg/light-bulb-color.svg +1 -0
  455. package/dist/collection/components/icon/svg/light-bulb.svg +1 -0
  456. package/dist/collection/components/icon/svg/light-color.svg +1 -0
  457. package/dist/collection/components/icon/svg/light-master-color.svg +1 -0
  458. package/dist/collection/components/icon/svg/light-master.svg +1 -0
  459. package/dist/collection/components/icon/svg/light-sidelight-color.svg +1 -0
  460. package/dist/collection/components/icon/svg/light-sidelight.svg +1 -0
  461. package/dist/collection/components/icon/svg/light.svg +1 -0
  462. package/dist/collection/components/icon/svg/link-broken-color.svg +1 -0
  463. package/dist/collection/components/icon/svg/link-broken.svg +1 -0
  464. package/dist/collection/components/icon/svg/link-color.svg +1 -0
  465. package/dist/collection/components/icon/svg/link.svg +1 -0
  466. package/dist/collection/components/icon/svg/load-cached-color.svg +1 -0
  467. package/dist/collection/components/icon/svg/load-cached.svg +1 -0
  468. package/dist/collection/components/icon/svg/load-hitstory-color.svg +1 -0
  469. package/dist/collection/components/icon/svg/load-hitstory.svg +1 -0
  470. package/dist/collection/components/icon/svg/load-refresh.svg +1 -0
  471. package/dist/collection/components/icon/svg/load-sync-problem-color.svg +1 -0
  472. package/dist/collection/components/icon/svg/load-sync-problem.svg +1 -0
  473. package/dist/collection/components/icon/svg/load-update-color.svg +1 -0
  474. package/dist/collection/components/icon/svg/load-update.svg +1 -0
  475. package/dist/collection/components/icon/svg/location-compass-outline.svg +1 -0
  476. package/dist/collection/components/icon/svg/location-compass.svg +1 -0
  477. package/dist/collection/components/icon/svg/location-direction.svg +1 -0
  478. package/dist/collection/components/icon/svg/location-navigation-outline.svg +1 -0
  479. package/dist/collection/components/icon/svg/location-navigation.svg +1 -0
  480. package/dist/collection/components/icon/svg/location-path.svg +1 -0
  481. package/dist/collection/components/icon/svg/location-pin-all.svg +1 -0
  482. package/dist/collection/components/icon/svg/location-pin-garage-auto5.svg +1 -0
  483. package/dist/collection/components/icon/svg/location-pin-garage-norauto.svg +1 -0
  484. package/dist/collection/components/icon/svg/location-pin-garage.svg +1 -0
  485. package/dist/collection/components/icon/svg/location-pin-number.svg +1 -0
  486. package/dist/collection/components/icon/svg/location-pin-outline-color.svg +1 -0
  487. package/dist/collection/components/icon/svg/location-pin-outline.svg +1 -0
  488. package/dist/collection/components/icon/svg/location-pin.svg +1 -0
  489. package/dist/collection/components/icon/svg/location-target-color.svg +1 -0
  490. package/dist/collection/components/icon/svg/location-target.svg +1 -0
  491. package/dist/collection/components/icon/svg/lock-secure-open.svg +1 -0
  492. package/dist/collection/components/icon/svg/lock-secure.svg +1 -0
  493. package/dist/collection/components/icon/svg/log-out-door.svg +1 -0
  494. package/dist/collection/components/icon/svg/log-out.svg +1 -0
  495. package/dist/collection/components/icon/svg/lowering-down-color.svg +1 -0
  496. package/dist/collection/components/icon/svg/lowering-up-color.svg +1 -0
  497. package/dist/collection/components/icon/svg/lowering.svg +1 -0
  498. package/dist/collection/components/icon/svg/mail-outline-send-color.svg +1 -0
  499. package/dist/collection/components/icon/svg/mail-outline-send.svg +1 -0
  500. package/dist/collection/components/icon/svg/mail-outline.svg +1 -0
  501. package/dist/collection/components/icon/svg/mail.svg +1 -0
  502. package/dist/collection/components/icon/svg/meeting-check-color.svg +1 -0
  503. package/dist/collection/components/icon/svg/meeting-check.svg +1 -0
  504. package/dist/collection/components/icon/svg/meeting-color.svg +1 -0
  505. package/dist/collection/components/icon/svg/meeting-maintenance-color.svg +1 -0
  506. package/dist/collection/components/icon/svg/meeting-maintenance.svg +1 -0
  507. package/dist/collection/components/icon/svg/meeting-off-color.svg +1 -0
  508. package/dist/collection/components/icon/svg/meeting-off.svg +1 -0
  509. package/dist/collection/components/icon/svg/meeting-online-color.svg +1 -0
  510. package/dist/collection/components/icon/svg/meeting-online.svg +1 -0
  511. package/dist/collection/components/icon/svg/meeting-week-color.svg +1 -0
  512. package/dist/collection/components/icon/svg/meeting-week.svg +1 -0
  513. package/dist/collection/components/icon/svg/meeting.svg +1 -0
  514. package/dist/collection/components/icon/svg/mic-outline-color.svg +1 -0
  515. package/dist/collection/components/icon/svg/mic-outline.svg +1 -0
  516. package/dist/collection/components/icon/svg/mic.svg +1 -0
  517. package/dist/collection/components/icon/svg/more-horizontal.svg +1 -0
  518. package/dist/collection/components/icon/svg/more-vertical.svg +1 -0
  519. package/dist/collection/components/icon/svg/multi-service-outline.svg +1 -0
  520. package/dist/collection/components/icon/svg/multi-service.svg +1 -0
  521. package/dist/collection/components/icon/svg/navigation-add-less.svg +1 -0
  522. package/dist/collection/components/icon/svg/navigation-add-more.svg +1 -0
  523. package/dist/collection/components/icon/svg/navigation-back.svg +1 -0
  524. package/dist/collection/components/icon/svg/navigation-chevron.svg +1 -0
  525. package/dist/collection/components/icon/svg/navigation-close.svg +1 -0
  526. package/dist/collection/components/icon/svg/navigation-dashboard-outline-color.svg +1 -0
  527. package/dist/collection/components/icon/svg/navigation-dashboard-outline.svg +1 -0
  528. package/dist/collection/components/icon/svg/navigation-dashboard.svg +1 -0
  529. package/dist/collection/components/icon/svg/navigation-filter.svg +1 -0
  530. package/dist/collection/components/icon/svg/navigation-grid.svg +1 -0
  531. package/dist/collection/components/icon/svg/navigation-home-outline.svg +1 -0
  532. package/dist/collection/components/icon/svg/navigation-home.svg +1 -0
  533. package/dist/collection/components/icon/svg/navigation-launch-color.svg +1 -0
  534. package/dist/collection/components/icon/svg/navigation-launch-outline.svg +1 -0
  535. package/dist/collection/components/icon/svg/navigation-launch.svg +1 -0
  536. package/dist/collection/components/icon/svg/navigation-layers-outline-color.svg +1 -0
  537. package/dist/collection/components/icon/svg/navigation-layers-outline.svg +1 -0
  538. package/dist/collection/components/icon/svg/navigation-layers.svg +1 -0
  539. package/dist/collection/components/icon/svg/navigation-list.svg +1 -0
  540. package/dist/collection/components/icon/svg/navigation-menu.svg +1 -0
  541. package/dist/collection/components/icon/svg/navigation-more.svg +1 -0
  542. package/dist/collection/components/icon/svg/navigation-setting-outline-color.svg +1 -0
  543. package/dist/collection/components/icon/svg/navigation-setting-outline.svg +1 -0
  544. package/dist/collection/components/icon/svg/navigation-setting.svg +1 -0
  545. package/dist/collection/components/icon/svg/nose-odour-color.svg +1 -0
  546. package/dist/collection/components/icon/svg/nose-odour.svg +1 -0
  547. package/dist/collection/components/icon/svg/nut-outline-color.svg +1 -0
  548. package/dist/collection/components/icon/svg/nut-outline.svg +1 -0
  549. package/dist/collection/components/icon/svg/nut.svg +1 -0
  550. package/dist/collection/components/icon/svg/oil-can-outline-color.svg +1 -0
  551. package/dist/collection/components/icon/svg/oil-can-outline.svg +1 -0
  552. package/dist/collection/components/icon/svg/oil-can-small-color.svg +1 -0
  553. package/dist/collection/components/icon/svg/oil-can-small.svg +1 -0
  554. package/dist/collection/components/icon/svg/oil-can.svg +1 -0
  555. package/dist/collection/components/icon/svg/oil-change-color.svg +1 -0
  556. package/dist/collection/components/icon/svg/oil-change.svg +1 -0
  557. package/dist/collection/components/icon/svg/oil-color.svg +1 -0
  558. package/dist/collection/components/icon/svg/oil-cruet-color.svg +1 -0
  559. package/dist/collection/components/icon/svg/oil-cruet.svg +1 -0
  560. package/dist/collection/components/icon/svg/oil.svg +1 -0
  561. package/dist/collection/components/icon/svg/paiment-store.svg +1 -0
  562. package/dist/collection/components/icon/svg/paint-color.svg +1 -0
  563. package/dist/collection/components/icon/svg/paint-spary-gun.svg +1 -0
  564. package/dist/collection/components/icon/svg/paint.svg +1 -0
  565. package/dist/collection/components/icon/svg/parking-break-color.svg +1 -0
  566. package/dist/collection/components/icon/svg/parking-break.svg +1 -0
  567. package/dist/collection/components/icon/svg/pass-maintain-color.svg +1 -0
  568. package/dist/collection/components/icon/svg/pass-maintain-logo-color.svg +1 -0
  569. package/dist/collection/components/icon/svg/pass-maintain-logo-outline-color.svg +1 -0
  570. package/dist/collection/components/icon/svg/pass-maintain-logo-outline.svg +1 -0
  571. package/dist/collection/components/icon/svg/pass-maintain-logo.svg +1 -0
  572. package/dist/collection/components/icon/svg/pass-maintain.svg +1 -0
  573. package/dist/collection/components/icon/svg/password-reset.svg +1 -0
  574. package/dist/collection/components/icon/svg/payment-bill-color.svg +1 -0
  575. package/dist/collection/components/icon/svg/payment-bill.svg +1 -0
  576. package/dist/collection/components/icon/svg/payment-card-color.svg +1 -0
  577. package/dist/collection/components/icon/svg/payment-card.svg +1 -0
  578. package/dist/collection/components/icon/svg/payment-cash-color.svg +1 -0
  579. package/dist/collection/components/icon/svg/payment-cash.svg +1 -0
  580. package/dist/collection/components/icon/svg/payment-delevery-color.svg +1 -0
  581. package/dist/collection/components/icon/svg/payment-delevery.svg +1 -0
  582. package/dist/collection/components/icon/svg/payment-safety-color.svg +1 -0
  583. package/dist/collection/components/icon/svg/payment-safety.svg +1 -0
  584. package/dist/collection/components/icon/svg/payment-store-color.svg +1 -0
  585. package/dist/collection/components/icon/svg/payment-store.svg +1 -0
  586. package/dist/collection/components/icon/svg/people-add-outline-color.svg +1 -0
  587. package/dist/collection/components/icon/svg/people-add-outline.svg +1 -0
  588. package/dist/collection/components/icon/svg/people-add.svg +1 -0
  589. package/dist/collection/components/icon/svg/people-car-fleet-color.svg +1 -0
  590. package/dist/collection/components/icon/svg/people-car-fleet.svg +1 -0
  591. package/dist/collection/components/icon/svg/people-card-color.svg +1 -0
  592. package/dist/collection/components/icon/svg/people-card.svg +1 -0
  593. package/dist/collection/components/icon/svg/people-coworker-color.svg +1 -0
  594. package/dist/collection/components/icon/svg/people-coworker-norauto-color.svg +1 -0
  595. package/dist/collection/components/icon/svg/people-coworker-norauto.svg +1 -0
  596. package/dist/collection/components/icon/svg/people-coworker.svg +1 -0
  597. package/dist/collection/components/icon/svg/people-customer-outline.svg +1 -0
  598. package/dist/collection/components/icon/svg/people-customer.svg +1 -0
  599. package/dist/collection/components/icon/svg/people-group-outline-color.svg +1 -0
  600. package/dist/collection/components/icon/svg/people-group-outline.svg +1 -0
  601. package/dist/collection/components/icon/svg/people-group.svg +1 -0
  602. package/dist/collection/components/icon/svg/people-outline.svg +1 -0
  603. package/dist/collection/components/icon/svg/people-vip-outline-color.svg +1 -0
  604. package/dist/collection/components/icon/svg/people-vip-outline.svg +1 -0
  605. package/dist/collection/components/icon/svg/people-vip.svg +1 -0
  606. package/dist/collection/components/icon/svg/people.svg +1 -0
  607. package/dist/collection/components/icon/svg/petrol-outline-color.svg +1 -0
  608. package/dist/collection/components/icon/svg/petrol-outline.svg +1 -0
  609. package/dist/collection/components/icon/svg/petrol.svg +1 -0
  610. package/dist/collection/components/icon/svg/phone-ouline.svg +1 -0
  611. package/dist/collection/components/icon/svg/phone.svg +1 -0
  612. package/dist/collection/components/icon/svg/picture-color.svg +1 -0
  613. package/dist/collection/components/icon/svg/picture.svg +1 -0
  614. package/dist/collection/components/icon/svg/player-arrow-play.svg +1 -0
  615. package/dist/collection/components/icon/svg/player-break.svg +1 -0
  616. package/dist/collection/components/icon/svg/player-dvd.svg +1 -0
  617. package/dist/collection/components/icon/svg/player-irregular.svg +1 -0
  618. package/dist/collection/components/icon/svg/player-pause.svg +1 -0
  619. package/dist/collection/components/icon/svg/player-radio-outline.svg +1 -0
  620. package/dist/collection/components/icon/svg/player-radio.svg +1 -0
  621. package/dist/collection/components/icon/svg/player-regular.svg +1 -0
  622. package/dist/collection/components/icon/svg/player-unlimited.svg +1 -0
  623. package/dist/collection/components/icon/svg/player-video-color.svg +1 -0
  624. package/dist/collection/components/icon/svg/player-video.svg +1 -0
  625. package/dist/collection/components/icon/svg/power-color.svg +1 -0
  626. package/dist/collection/components/icon/svg/power.svg +1 -0
  627. package/dist/collection/components/icon/svg/print-outline-color.svg +1 -0
  628. package/dist/collection/components/icon/svg/print-outline.svg +1 -0
  629. package/dist/collection/components/icon/svg/print.svg +1 -0
  630. package/dist/collection/components/icon/svg/purchase-history-color.svg +1 -0
  631. package/dist/collection/components/icon/svg/purchase-history.svg +1 -0
  632. package/dist/collection/components/icon/svg/radiator-color.svg +1 -0
  633. package/dist/collection/components/icon/svg/radiator.svg +1 -0
  634. package/dist/collection/components/icon/svg/rent-back-color.svg +1 -0
  635. package/dist/collection/components/icon/svg/rent-back.svg +1 -0
  636. package/dist/collection/components/icon/svg/rent-color.svg +1 -0
  637. package/dist/collection/components/icon/svg/rent.svg +1 -0
  638. package/dist/collection/components/icon/svg/roof-rack-cross-bars.svg +1 -0
  639. package/dist/collection/components/icon/svg/rubber-outline-color.svg +1 -0
  640. package/dist/collection/components/icon/svg/rubber-outline.svg +1 -0
  641. package/dist/collection/components/icon/svg/rubber.svg +1 -0
  642. package/dist/collection/components/icon/svg/save-disk-color.svg +1 -0
  643. package/dist/collection/components/icon/svg/save-disk.svg +1 -0
  644. package/dist/collection/components/icon/svg/scan-bar-code-color.svg +1 -0
  645. package/dist/collection/components/icon/svg/scan-bar-code.svg +1 -0
  646. package/dist/collection/components/icon/svg/scan-color.svg +1 -0
  647. package/dist/collection/components/icon/svg/scan-qr-code-color.svg +1 -0
  648. package/dist/collection/components/icon/svg/scan-qr-code.svg +1 -0
  649. package/dist/collection/components/icon/svg/scan-vehicle-card.svg +1 -0
  650. package/dist/collection/components/icon/svg/scan.svg +1 -0
  651. package/dist/collection/components/icon/svg/scissor-color.svg +1 -0
  652. package/dist/collection/components/icon/svg/scissor-outline.svg +1 -0
  653. package/dist/collection/components/icon/svg/scissor.svg +1 -0
  654. package/dist/collection/components/icon/svg/search.svg +1 -0
  655. package/dist/collection/components/icon/svg/security-belt.svg +1 -0
  656. package/dist/collection/components/icon/svg/security-color.svg +1 -0
  657. package/dist/collection/components/icon/svg/security.svg +1 -0
  658. package/dist/collection/components/icon/svg/sensor.svg +1 -0
  659. package/dist/collection/components/icon/svg/setting.svg +1 -0
  660. package/dist/collection/components/icon/svg/shipping-checked-color.svg +1 -0
  661. package/dist/collection/components/icon/svg/shipping-checked.svg +1 -0
  662. package/dist/collection/components/icon/svg/shipping-click-and-collect-color.svg +1 -0
  663. package/dist/collection/components/icon/svg/shipping-click-and-collect.svg +1 -0
  664. package/dist/collection/components/icon/svg/shipping-color.svg +1 -0
  665. package/dist/collection/components/icon/svg/shipping-express-color.svg +1 -0
  666. package/dist/collection/components/icon/svg/shipping-express.svg +1 -0
  667. package/dist/collection/components/icon/svg/shipping-locator-color.svg +1 -0
  668. package/dist/collection/components/icon/svg/shipping-locator.svg +1 -0
  669. package/dist/collection/components/icon/svg/shipping-locker-color.svg +1 -0
  670. package/dist/collection/components/icon/svg/shipping-locker.svg +1 -0
  671. package/dist/collection/components/icon/svg/shipping-return-color.svg +1 -0
  672. package/dist/collection/components/icon/svg/shipping-return.svg +1 -0
  673. package/dist/collection/components/icon/svg/shipping.svg +1 -0
  674. package/dist/collection/components/icon/svg/shock-absorber-color.svg +1 -0
  675. package/dist/collection/components/icon/svg/shock-absorber.svg +1 -0
  676. package/dist/collection/components/icon/svg/shop-color.svg +1 -0
  677. package/dist/collection/components/icon/svg/shop.svg +1 -0
  678. package/dist/collection/components/icon/svg/shopping-cart-add-color.svg +1 -0
  679. package/dist/collection/components/icon/svg/shopping-cart-add.svg +1 -0
  680. package/dist/collection/components/icon/svg/shopping-cart-sad-color.svg +1 -0
  681. package/dist/collection/components/icon/svg/shopping-cart-sad.svg +1 -0
  682. package/dist/collection/components/icon/svg/shopping-cart.svg +1 -0
  683. package/dist/collection/components/icon/svg/sign.svg +1 -0
  684. package/dist/collection/components/icon/svg/sissor.svg +1 -0
  685. package/dist/collection/components/icon/svg/snowflake-color.svg +1 -0
  686. package/dist/collection/components/icon/svg/snowflake-outline-color.svg +1 -0
  687. package/dist/collection/components/icon/svg/snowflake-outline.svg +1 -0
  688. package/dist/collection/components/icon/svg/snowflake.svg +1 -0
  689. package/dist/collection/components/icon/svg/social-facebook-outline.svg +1 -0
  690. package/dist/collection/components/icon/svg/social-facebook.svg +1 -0
  691. package/dist/collection/components/icon/svg/social-google-outline.svg +1 -0
  692. package/dist/collection/components/icon/svg/social-google.svg +1 -0
  693. package/dist/collection/components/icon/svg/social-instagram-outline.svg +1 -0
  694. package/dist/collection/components/icon/svg/social-instagram.svg +1 -0
  695. package/dist/collection/components/icon/svg/social-twitter-outline.svg +1 -0
  696. package/dist/collection/components/icon/svg/social-twitter.svg +1 -0
  697. package/dist/collection/components/icon/svg/social-youtube-outline.svg +1 -0
  698. package/dist/collection/components/icon/svg/social-youtube.svg +1 -0
  699. package/dist/collection/components/icon/svg/sound-0-outline-color.svg +1 -0
  700. package/dist/collection/components/icon/svg/sound-0-outline.svg +1 -0
  701. package/dist/collection/components/icon/svg/sound-0.svg +1 -0
  702. package/dist/collection/components/icon/svg/sound-1-outline-color.svg +1 -0
  703. package/dist/collection/components/icon/svg/sound-1-outline.svg +1 -0
  704. package/dist/collection/components/icon/svg/sound-1.svg +1 -0
  705. package/dist/collection/components/icon/svg/sound-2-outline-color.svg +1 -0
  706. package/dist/collection/components/icon/svg/sound-2-outline.svg +1 -0
  707. package/dist/collection/components/icon/svg/sound-2.svg +1 -0
  708. package/dist/collection/components/icon/svg/sound-3-outline-color.svg +1 -0
  709. package/dist/collection/components/icon/svg/sound-3-outline.svg +1 -0
  710. package/dist/collection/components/icon/svg/sound-3.svg +1 -0
  711. package/dist/collection/components/icon/svg/sound-alarm.svg +1 -0
  712. package/dist/collection/components/icon/svg/spark-color.svg +1 -0
  713. package/dist/collection/components/icon/svg/spark-outline.svg +1 -0
  714. package/dist/collection/components/icon/svg/spark.svg +1 -0
  715. package/dist/collection/components/icon/svg/speak-advice-outline-color.svg +1 -0
  716. package/dist/collection/components/icon/svg/speak-advice-outline.svg +1 -0
  717. package/dist/collection/components/icon/svg/speak-advice.svg +1 -0
  718. package/dist/collection/components/icon/svg/speak-outline-color.svg +1 -0
  719. package/dist/collection/components/icon/svg/speak-outline.svg +1 -0
  720. package/dist/collection/components/icon/svg/speak.svg +1 -0
  721. package/dist/collection/components/icon/svg/speaker-color.svg +1 -0
  722. package/dist/collection/components/icon/svg/speaker.svg +1 -0
  723. package/dist/collection/components/icon/svg/star-half-color.svg +1 -0
  724. package/dist/collection/components/icon/svg/star-smile.svg +1 -0
  725. package/dist/collection/components/icon/svg/star.svg +1 -0
  726. package/dist/collection/components/icon/svg/steering-control-color.svg +1 -0
  727. package/dist/collection/components/icon/svg/steering-control.svg +1 -0
  728. package/dist/collection/components/icon/svg/style-color.svg +1 -0
  729. package/dist/collection/components/icon/svg/style.svg +1 -0
  730. package/dist/collection/components/icon/svg/suspension.svg +1 -0
  731. package/dist/collection/components/icon/svg/thumb-outline.svg +1 -0
  732. package/dist/collection/components/icon/svg/thumb.svg +1 -0
  733. package/dist/collection/components/icon/svg/time-access-color.svg +1 -0
  734. package/dist/collection/components/icon/svg/time-access.svg +1 -0
  735. package/dist/collection/components/icon/svg/timer-1h-color.svg +1 -0
  736. package/dist/collection/components/icon/svg/timer-1h.svg +1 -0
  737. package/dist/collection/components/icon/svg/timer-2h-color.svg +1 -0
  738. package/dist/collection/components/icon/svg/timer-2h.svg +1 -0
  739. package/dist/collection/components/icon/svg/timer-color.svg +1 -0
  740. package/dist/collection/components/icon/svg/timer.svg +1 -0
  741. package/dist/collection/components/icon/svg/timing-belt-color.svg +1 -0
  742. package/dist/collection/components/icon/svg/timing-belt.svg +1 -0
  743. package/dist/collection/components/icon/svg/tire-all-terrain-color.svg +1 -0
  744. package/dist/collection/components/icon/svg/tire-all-terrain-outline.svg +1 -0
  745. package/dist/collection/components/icon/svg/tire-all-terrain.svg +1 -0
  746. package/dist/collection/components/icon/svg/tire-alone.svg +1 -0
  747. package/dist/collection/components/icon/svg/tire-color.svg +1 -0
  748. package/dist/collection/components/icon/svg/tire-diameter-color.svg +1 -0
  749. package/dist/collection/components/icon/svg/tire-diameter-outline.svg +1 -0
  750. package/dist/collection/components/icon/svg/tire-diameter.svg +1 -0
  751. package/dist/collection/components/icon/svg/tire-energy-color.svg +1 -0
  752. package/dist/collection/components/icon/svg/tire-energy-outline.svg +1 -0
  753. package/dist/collection/components/icon/svg/tire-energy.svg +1 -0
  754. package/dist/collection/components/icon/svg/tire-flat-color.svg +1 -0
  755. package/dist/collection/components/icon/svg/tire-flat-outline.svg +1 -0
  756. package/dist/collection/components/icon/svg/tire-flat.svg +1 -0
  757. package/dist/collection/components/icon/svg/tire-hotel-outline-color.svg +1 -0
  758. package/dist/collection/components/icon/svg/tire-hotel-outline.svg +1 -0
  759. package/dist/collection/components/icon/svg/tire-hotel.svg +1 -0
  760. package/dist/collection/components/icon/svg/tire-hub-cap-color.svg +1 -0
  761. package/dist/collection/components/icon/svg/tire-hub-cap-outline.svg +1 -0
  762. package/dist/collection/components/icon/svg/tire-hub-cap.svg +1 -0
  763. package/dist/collection/components/icon/svg/tire-ice-color.svg +1 -0
  764. package/dist/collection/components/icon/svg/tire-ice-outline.svg +1 -0
  765. package/dist/collection/components/icon/svg/tire-ice.svg +1 -0
  766. package/dist/collection/components/icon/svg/tire-outline.svg +1 -0
  767. package/dist/collection/components/icon/svg/tire-parallelism-color.svg +1 -0
  768. package/dist/collection/components/icon/svg/tire-parallelism.svg +1 -0
  769. package/dist/collection/components/icon/svg/tire-rain-color.svg +1 -0
  770. package/dist/collection/components/icon/svg/tire-rain-outline.svg +1 -0
  771. package/dist/collection/components/icon/svg/tire-rain.svg +1 -0
  772. package/dist/collection/components/icon/svg/tire-rim-color.svg +1 -0
  773. package/dist/collection/components/icon/svg/tire-rim-outline.svg +1 -0
  774. package/dist/collection/components/icon/svg/tire-rim.svg +1 -0
  775. package/dist/collection/components/icon/svg/tire-seize.svg +1 -0
  776. package/dist/collection/components/icon/svg/tire-sidewall-height-color.svg +1 -0
  777. package/dist/collection/components/icon/svg/tire-sidewall-height-outline.svg +1 -0
  778. package/dist/collection/components/icon/svg/tire-sidewall-height.svg +1 -0
  779. package/dist/collection/components/icon/svg/tire-snow-chain-color.svg +1 -0
  780. package/dist/collection/components/icon/svg/tire-snow-chain-outline.svg +1 -0
  781. package/dist/collection/components/icon/svg/tire-snow-chain.svg +1 -0
  782. package/dist/collection/components/icon/svg/tire-snow-color.svg +1 -0
  783. package/dist/collection/components/icon/svg/tire-snow-outline.svg +1 -0
  784. package/dist/collection/components/icon/svg/tire-snow-studded-color.svg +1 -0
  785. package/dist/collection/components/icon/svg/tire-snow-studded-outline.svg +1 -0
  786. package/dist/collection/components/icon/svg/tire-snow-studded.svg +1 -0
  787. package/dist/collection/components/icon/svg/tire-snow.svg +1 -0
  788. package/dist/collection/components/icon/svg/tire-sound-color.svg +1 -0
  789. package/dist/collection/components/icon/svg/tire-sound-outline.svg +1 -0
  790. package/dist/collection/components/icon/svg/tire-sound.svg +1 -0
  791. package/dist/collection/components/icon/svg/tire-steel.svg +1 -0
  792. package/dist/collection/components/icon/svg/tire-sun-color.svg +1 -0
  793. package/dist/collection/components/icon/svg/tire-sun-outline.svg +1 -0
  794. package/dist/collection/components/icon/svg/tire-sun-snow-color.svg +1 -0
  795. package/dist/collection/components/icon/svg/tire-sun-snow-outline.svg +1 -0
  796. package/dist/collection/components/icon/svg/tire-sun-snow.svg +1 -0
  797. package/dist/collection/components/icon/svg/tire-sun.svg +1 -0
  798. package/dist/collection/components/icon/svg/tire-suspension-color.svg +1 -0
  799. package/dist/collection/components/icon/svg/tire-suspension.svg +1 -0
  800. package/dist/collection/components/icon/svg/tire-wheel-diameter-color.svg +1 -0
  801. package/dist/collection/components/icon/svg/tire-wheel-diameter-outline.svg +1 -0
  802. package/dist/collection/components/icon/svg/tire-wheel-diameter.svg +1 -0
  803. package/dist/collection/components/icon/svg/tire-wheel-rim-color.svg +1 -0
  804. package/dist/collection/components/icon/svg/tire-wheel-rim-outline.svg +1 -0
  805. package/dist/collection/components/icon/svg/tire-wheel-rim.svg +1 -0
  806. package/dist/collection/components/icon/svg/tire-wheel-steel-color.svg +1 -0
  807. package/dist/collection/components/icon/svg/tire-wheel-steel-outline.svg +1 -0
  808. package/dist/collection/components/icon/svg/tire-wheel-steel.svg +1 -0
  809. package/dist/collection/components/icon/svg/tire-witdh-color.svg +1 -0
  810. package/dist/collection/components/icon/svg/tire-witdh-outline.svg +1 -0
  811. package/dist/collection/components/icon/svg/tire-witdh.svg +1 -0
  812. package/dist/collection/components/icon/svg/tire.svg +1 -0
  813. package/dist/collection/components/icon/svg/touch.svg +1 -0
  814. package/dist/collection/components/icon/svg/translate.svg +1 -0
  815. package/dist/collection/components/icon/svg/transmission-color.svg +1 -0
  816. package/dist/collection/components/icon/svg/transmission.svg +1 -0
  817. package/dist/collection/components/icon/svg/trash-bin-color.svg +1 -0
  818. package/dist/collection/components/icon/svg/trash-bin.svg +1 -0
  819. package/dist/collection/components/icon/svg/travel-bag.svg +1 -0
  820. package/dist/collection/components/icon/svg/travel-suitcase.svg +1 -0
  821. package/dist/collection/components/icon/svg/travel.svg +1 -0
  822. package/dist/collection/components/icon/svg/trick-outline-color.svg +1 -0
  823. package/dist/collection/components/icon/svg/trick-outline.svg +1 -0
  824. package/dist/collection/components/icon/svg/trick.svg +1 -0
  825. package/dist/collection/components/icon/svg/trust.svg +1 -0
  826. package/dist/collection/components/icon/svg/vehicle-3-doors-color.svg +1 -0
  827. package/dist/collection/components/icon/svg/vehicle-3-doors-hatchback-color.svg +1 -0
  828. package/dist/collection/components/icon/svg/vehicle-3-doors.svg +1 -0
  829. package/dist/collection/components/icon/svg/vehicle-5-doors-color.svg +1 -0
  830. package/dist/collection/components/icon/svg/vehicle-5-doors-hatchback-color.svg +1 -0
  831. package/dist/collection/components/icon/svg/vehicle-5-doors.svg +1 -0
  832. package/dist/collection/components/icon/svg/vehicle-bike-electric.svg +1 -0
  833. package/dist/collection/components/icon/svg/vehicle-bike-rack.svg +1 -0
  834. package/dist/collection/components/icon/svg/vehicle-bike.svg +1 -0
  835. package/dist/collection/components/icon/svg/vehicle-bus.svg +1 -0
  836. package/dist/collection/components/icon/svg/vehicle-car-add-outline-color.svg +1 -0
  837. package/dist/collection/components/icon/svg/vehicle-car-add-outline.svg +1 -0
  838. package/dist/collection/components/icon/svg/vehicle-car-add.svg +1 -0
  839. package/dist/collection/components/icon/svg/vehicle-car-all-outline-color.svg +1 -0
  840. package/dist/collection/components/icon/svg/vehicle-car-all-outline.svg +1 -0
  841. package/dist/collection/components/icon/svg/vehicle-car-all.svg +1 -0
  842. package/dist/collection/components/icon/svg/vehicle-car-bodywork.svg +1 -0
  843. package/dist/collection/components/icon/svg/vehicle-car-checked-outline-color.svg +1 -0
  844. package/dist/collection/components/icon/svg/vehicle-car-checked-outline.svg +1 -0
  845. package/dist/collection/components/icon/svg/vehicle-car-checked.svg +1 -0
  846. package/dist/collection/components/icon/svg/vehicle-car-light-back-color.svg +1 -0
  847. package/dist/collection/components/icon/svg/vehicle-car-light-front-color.svg +1 -0
  848. package/dist/collection/components/icon/svg/vehicle-car-light-inside-color.svg +1 -0
  849. package/dist/collection/components/icon/svg/vehicle-car-moto.svg +1 -0
  850. package/dist/collection/components/icon/svg/vehicle-car-outline-back.svg +1 -0
  851. package/dist/collection/components/icon/svg/vehicle-car-outline-cockpit.svg +1 -0
  852. package/dist/collection/components/icon/svg/vehicle-car-outline-color.svg +1 -0
  853. package/dist/collection/components/icon/svg/vehicle-car-outline-front.svg +1 -0
  854. package/dist/collection/components/icon/svg/vehicle-car-outline-side.svg +1 -0
  855. package/dist/collection/components/icon/svg/vehicle-car-outline-signal.svg +1 -0
  856. package/dist/collection/components/icon/svg/vehicle-car-outline.svg +1 -0
  857. package/dist/collection/components/icon/svg/vehicle-car-sad-outline.svg +1 -0
  858. package/dist/collection/components/icon/svg/vehicle-car-sad.svg +1 -0
  859. package/dist/collection/components/icon/svg/vehicle-car-search-outline.svg +1 -0
  860. package/dist/collection/components/icon/svg/vehicle-car-search.svg +1 -0
  861. package/dist/collection/components/icon/svg/vehicle-car-setting-outline-color.svg +1 -0
  862. package/dist/collection/components/icon/svg/vehicle-car-setting-outline.svg +1 -0
  863. package/dist/collection/components/icon/svg/vehicle-car-setting.svg +1 -0
  864. package/dist/collection/components/icon/svg/vehicle-car-side-outline.svg +1 -0
  865. package/dist/collection/components/icon/svg/vehicle-car-side-tire-behind.svg +1 -0
  866. package/dist/collection/components/icon/svg/vehicle-car-side-tire-front.svg +1 -0
  867. package/dist/collection/components/icon/svg/vehicle-car-side.svg +1 -0
  868. package/dist/collection/components/icon/svg/vehicle-car-sound-outline.svg +1 -0
  869. package/dist/collection/components/icon/svg/vehicle-car-sound.svg +1 -0
  870. package/dist/collection/components/icon/svg/vehicle-car-unknow-outline.svg +1 -0
  871. package/dist/collection/components/icon/svg/vehicle-car-unknow.svg +1 -0
  872. package/dist/collection/components/icon/svg/vehicle-car-unknowoutline-color.svg +1 -0
  873. package/dist/collection/components/icon/svg/vehicle-car-unselected-outline-color.svg +1 -0
  874. package/dist/collection/components/icon/svg/vehicle-car-unselected-outline.svg +1 -0
  875. package/dist/collection/components/icon/svg/vehicle-car-unselected.svg +1 -0
  876. package/dist/collection/components/icon/svg/vehicle-car.svg +1 -0
  877. package/dist/collection/components/icon/svg/vehicle-caravan.svg +1 -0
  878. package/dist/collection/components/icon/svg/vehicle-carport-color.svg +1 -0
  879. package/dist/collection/components/icon/svg/vehicle-carport.svg +1 -0
  880. package/dist/collection/components/icon/svg/vehicle-collector.svg +1 -0
  881. package/dist/collection/components/icon/svg/vehicle-delevery-fast-outline-color.svg +1 -0
  882. package/dist/collection/components/icon/svg/vehicle-delevery-fast-outline.svg +1 -0
  883. package/dist/collection/components/icon/svg/vehicle-delevery-fast.svg +1 -0
  884. package/dist/collection/components/icon/svg/vehicle-delevery-meeting-outline-color.svg +1 -0
  885. package/dist/collection/components/icon/svg/vehicle-delevery-meeting-outline.svg +1 -0
  886. package/dist/collection/components/icon/svg/vehicle-delevery-meeting.svg +1 -0
  887. package/dist/collection/components/icon/svg/vehicle-delevery-privilege.svg +1 -0
  888. package/dist/collection/components/icon/svg/vehicle-delevery-van.svg +1 -0
  889. package/dist/collection/components/icon/svg/vehicle-delevery.svg +1 -0
  890. package/dist/collection/components/icon/svg/vehicle-drive-carport-color.svg +1 -0
  891. package/dist/collection/components/icon/svg/vehicle-drive-carport.svg +1 -0
  892. package/dist/collection/components/icon/svg/vehicle-drive-color.svg +1 -0
  893. package/dist/collection/components/icon/svg/vehicle-drive.svg +1 -0
  894. package/dist/collection/components/icon/svg/vehicle-moto-bike.svg +1 -0
  895. package/dist/collection/components/icon/svg/vehicle-moto.svg +1 -0
  896. package/dist/collection/components/icon/svg/vehicle-mower.svg +1 -0
  897. package/dist/collection/components/icon/svg/vehicle-no-license.svg +1 -0
  898. package/dist/collection/components/icon/svg/vehicle-pickup-van.svg +1 -0
  899. package/dist/collection/components/icon/svg/vehicle-pickup.svg +1 -0
  900. package/dist/collection/components/icon/svg/vehicle-quad.svg +1 -0
  901. package/dist/collection/components/icon/svg/vehicle-rally.svg +1 -0
  902. package/dist/collection/components/icon/svg/vehicle-rent-bike-electric.svg +1 -0
  903. package/dist/collection/components/icon/svg/vehicle-rent-car-no-license.svg +1 -0
  904. package/dist/collection/components/icon/svg/vehicle-rent-car.svg +1 -0
  905. package/dist/collection/components/icon/svg/vehicle-rent-trailer.svg +1 -0
  906. package/dist/collection/components/icon/svg/vehicle-repair-car.svg +1 -0
  907. package/dist/collection/components/icon/svg/vehicle-repair-moto.svg +1 -0
  908. package/dist/collection/components/icon/svg/vehicle-repair-pickup-van.svg +1 -0
  909. package/dist/collection/components/icon/svg/vehicle-repair-van.svg +1 -0
  910. package/dist/collection/components/icon/svg/vehicle-road-grip-outline.svg +1 -0
  911. package/dist/collection/components/icon/svg/vehicle-road-grip.svg +1 -0
  912. package/dist/collection/components/icon/svg/vehicle-roof-box-outline-color.svg +1 -0
  913. package/dist/collection/components/icon/svg/vehicle-roof-box-outline.svg +1 -0
  914. package/dist/collection/components/icon/svg/vehicle-roof-box.svg +1 -0
  915. package/dist/collection/components/icon/svg/vehicle-scooter-kick.svg +1 -0
  916. package/dist/collection/components/icon/svg/vehicle-scooter.svg +1 -0
  917. package/dist/collection/components/icon/svg/vehicle-suv.svg +1 -0
  918. package/dist/collection/components/icon/svg/vehicle-tire-invert.svg +1 -0
  919. package/dist/collection/components/icon/svg/vehicle-tires-all-color.svg +1 -0
  920. package/dist/collection/components/icon/svg/vehicle-tires-back-color.svg +1 -0
  921. package/dist/collection/components/icon/svg/vehicle-tires-back-left-color.svg +1 -0
  922. package/dist/collection/components/icon/svg/vehicle-tires-back-right-color.svg +1 -0
  923. package/dist/collection/components/icon/svg/vehicle-tires-front-color.svg +1 -0
  924. package/dist/collection/components/icon/svg/vehicle-tires-front-left-color.svg +1 -0
  925. package/dist/collection/components/icon/svg/vehicle-tires-front-right-color.svg +1 -0
  926. package/dist/collection/components/icon/svg/vehicle-tires.svg +1 -0
  927. package/dist/collection/components/icon/svg/vehicle-tractor.svg +1 -0
  928. package/dist/collection/components/icon/svg/vehicle-trailer.svg +1 -0
  929. package/dist/collection/components/icon/svg/vehicle-truck.svg +1 -0
  930. package/dist/collection/components/icon/svg/vehicle-van.svg +1 -0
  931. package/dist/collection/components/icon/svg/vehicle-workshop-outline-color.svg +1 -0
  932. package/dist/collection/components/icon/svg/vehicle-workshop-outline.svg +1 -0
  933. package/dist/collection/components/icon/svg/vehicle-workshop.svg +1 -0
  934. package/dist/collection/components/icon/svg/ventilator-color.svg +1 -0
  935. package/dist/collection/components/icon/svg/ventilator.svg +1 -0
  936. package/dist/collection/components/icon/svg/videocam-outline.svg +1 -0
  937. package/dist/collection/components/icon/svg/videocam.svg +1 -0
  938. package/dist/collection/components/icon/svg/view-3d-360-color.svg +1 -0
  939. package/dist/collection/components/icon/svg/view-3d-360-disabled-color.svg +1 -0
  940. package/dist/collection/components/icon/svg/view-3d-360-disabled.svg +1 -0
  941. package/dist/collection/components/icon/svg/view-3d-360.svg +1 -0
  942. package/dist/collection/components/icon/svg/virus-color.svg +1 -0
  943. package/dist/collection/components/icon/svg/virus.svg +1 -0
  944. package/dist/collection/components/icon/svg/visibility-off-outline-color.svg +1 -0
  945. package/dist/collection/components/icon/svg/visibility-off-outline.svg +1 -0
  946. package/dist/collection/components/icon/svg/visibility-off.svg +1 -0
  947. package/dist/collection/components/icon/svg/visibility-outline-color.svg +1 -0
  948. package/dist/collection/components/icon/svg/visibility-outline.svg +1 -0
  949. package/dist/collection/components/icon/svg/visibility.svg +1 -0
  950. package/dist/collection/components/icon/svg/warehouse-color.svg +1 -0
  951. package/dist/collection/components/icon/svg/warehouse.svg +1 -0
  952. package/dist/collection/components/icon/svg/weather-rain-color.svg +1 -0
  953. package/dist/collection/components/icon/svg/weather-rain-outline-color.svg +1 -0
  954. package/dist/collection/components/icon/svg/weather-rain-outline.svg +1 -0
  955. package/dist/collection/components/icon/svg/weather-rain.svg +1 -0
  956. package/dist/collection/components/icon/svg/weather-snow-color.svg +1 -0
  957. package/dist/collection/components/icon/svg/weather-snow.svg +1 -0
  958. package/dist/collection/components/icon/svg/weather-sun-color.svg +1 -0
  959. package/dist/collection/components/icon/svg/weather-sun-outline-color.svg +1 -0
  960. package/dist/collection/components/icon/svg/weather-sun-outline.svg +1 -0
  961. package/dist/collection/components/icon/svg/weather-sun-snow-color.svg +1 -0
  962. package/dist/collection/components/icon/svg/weather-sun-snow-outline-color.svg +1 -0
  963. package/dist/collection/components/icon/svg/weather-sun-snow-outline.svg +1 -0
  964. package/dist/collection/components/icon/svg/weather-sun-snow.svg +1 -0
  965. package/dist/collection/components/icon/svg/weather-sun.svg +1 -0
  966. package/dist/collection/components/icon/svg/wheel-bearings-color.svg +1 -0
  967. package/dist/collection/components/icon/svg/wheel-bearings.svg +1 -0
  968. package/dist/collection/components/icon/svg/wifi.svg +1 -0
  969. package/dist/collection/components/icon/svg/windscreen-back-fluid-color.svg +1 -0
  970. package/dist/collection/components/icon/svg/windscreen-back-fluid.svg +1 -0
  971. package/dist/collection/components/icon/svg/windscreen-back-frost-color.svg +1 -0
  972. package/dist/collection/components/icon/svg/windscreen-back-frost.svg +1 -0
  973. package/dist/collection/components/icon/svg/windscreen-back-wiper-color.svg +1 -0
  974. package/dist/collection/components/icon/svg/windscreen-back-wiper.svg +1 -0
  975. package/dist/collection/components/icon/svg/windscreen-color.svg +1 -0
  976. package/dist/collection/components/icon/svg/windscreen-fluid-color.svg +1 -0
  977. package/dist/collection/components/icon/svg/windscreen-fluid.svg +1 -0
  978. package/dist/collection/components/icon/svg/windscreen-frost-color.svg +1 -0
  979. package/dist/collection/components/icon/svg/windscreen-frost.svg +1 -0
  980. package/dist/collection/components/icon/svg/windscreen-wiper-color.svg +1 -0
  981. package/dist/collection/components/icon/svg/windscreen-wiper.svg +1 -0
  982. package/dist/collection/components/icon/svg/windscreen-wipers-color.svg +1 -0
  983. package/dist/collection/components/icon/svg/windscreen-wipers-left-color.svg +1 -0
  984. package/dist/collection/components/icon/svg/windscreen-wipers-left.svg +1 -0
  985. package/dist/collection/components/icon/svg/windscreen-wipers-right-color.svg +1 -0
  986. package/dist/collection/components/icon/svg/windscreen-wipers-right.svg +1 -0
  987. package/dist/collection/components/icon/svg/windscreen-wipers.svg +1 -0
  988. package/dist/collection/components/icon/svg/windscreen.svg +1 -0
  989. package/dist/collection/components/icon/svg/windshield-washer-fluid.svg +1 -0
  990. package/dist/collection/components/icon/svg/world-color.svg +1 -0
  991. package/dist/collection/components/icon/svg/world.svg +1 -0
  992. package/dist/collection/components/icon/svg/wrench-dual-outline.svg +1 -0
  993. package/dist/collection/components/icon/svg/wrench-dual.svg +1 -0
  994. package/dist/collection/components/icon/svg/wrench-hand-color.svg +1 -0
  995. package/dist/collection/components/icon/svg/wrench-hand-dual-color.svg +1 -0
  996. package/dist/collection/components/icon/svg/wrench-hand-dual.svg +1 -0
  997. package/dist/collection/components/icon/svg/wrench-hand.svg +1 -0
  998. package/dist/collection/components/icon/svg/wrench-outline-color.svg +1 -0
  999. package/dist/collection/components/icon/svg/wrench-outline.svg +1 -0
  1000. package/dist/collection/components/icon/svg/wrench-tools.svg +1 -0
  1001. package/dist/collection/components/icon/svg/wrench-twin.svg +1 -0
  1002. package/dist/collection/components/icon/svg/wrench.svg +1 -0
  1003. package/dist/collection/components/icon/utils.js +72 -0
  1004. package/dist/collection/components/icon/validate.js +43 -0
  1005. package/dist/collection/components/img/img.css +41 -0
  1006. package/dist/collection/components/img/img.js +160 -0
  1007. package/dist/collection/components/img/img.stories.js +28 -0
  1008. package/dist/collection/components/input/input.css +181 -0
  1009. package/dist/collection/components/input/input.js +603 -0
  1010. package/dist/collection/components/input/input.stories.js +156 -0
  1011. package/dist/collection/components/input-group/input-group.css +183 -0
  1012. package/dist/collection/components/input-group/input-group.js +24 -0
  1013. package/dist/collection/components/input-group/input-group.stories.js +31 -0
  1014. package/dist/collection/components/item/item.css +200 -0
  1015. package/dist/collection/components/item/item.js +267 -0
  1016. package/dist/collection/components/item/item.stories.js +130 -0
  1017. package/dist/collection/components/label/label.css +9 -0
  1018. package/dist/collection/components/label/label.js +18 -0
  1019. package/dist/collection/components/list/list.css +51 -0
  1020. package/dist/collection/components/list/list.js +40 -0
  1021. package/dist/collection/components/list/list.stories.js +85 -0
  1022. package/dist/collection/components/modal/modal.css +206 -0
  1023. package/dist/collection/components/modal/modal.js +236 -0
  1024. package/dist/collection/components/modal/modal.stories.js +51 -0
  1025. package/dist/collection/components/navbar/navbar.css +29 -0
  1026. package/dist/collection/components/navbar/navbar.js +81 -0
  1027. package/dist/collection/components/navbar/navbar.stories.js +92 -0
  1028. package/dist/collection/components/navbar-item/navbar-item.css +123 -0
  1029. package/dist/collection/components/navbar-item/navbar-item.js +217 -0
  1030. package/dist/collection/components/patterns/crossselling.stories.js +171 -0
  1031. package/dist/collection/components/patterns/filter.stories.js +288 -0
  1032. package/dist/collection/components/plate-number/fonts/Oswald-Medium.woff2 +0 -0
  1033. package/dist/collection/components/plate-number/plate-number.css +82 -0
  1034. package/dist/collection/components/plate-number/plate-number.js +214 -0
  1035. package/dist/collection/components/plate-number/plate-number.stories.js +41 -0
  1036. package/dist/collection/components/progress/progress.css +52 -0
  1037. package/dist/collection/components/progress/progress.js +69 -0
  1038. package/dist/collection/components/progress/progress.stories.js +65 -0
  1039. package/dist/collection/components/radio/radio.css +165 -0
  1040. package/dist/collection/components/radio/radio.js +290 -0
  1041. package/dist/collection/components/radio/radio.stories.js +117 -0
  1042. package/dist/collection/components/radio-group/radio-group.css +34 -0
  1043. package/dist/collection/components/radio-group/radio-group.js +245 -0
  1044. package/dist/collection/components/range/range.css +149 -0
  1045. package/dist/collection/components/range/range.js +182 -0
  1046. package/dist/collection/components/range/range.stories.js +44 -0
  1047. package/dist/collection/components/rating/rating.css +18 -0
  1048. package/dist/collection/components/rating/rating.js +96 -0
  1049. package/dist/collection/components/rating/rating.stories.js +45 -0
  1050. package/dist/collection/components/row/row.css +333 -0
  1051. package/dist/collection/components/row/row.js +18 -0
  1052. package/dist/collection/components/select/select.css +126 -0
  1053. package/dist/collection/components/select/select.js +307 -0
  1054. package/dist/collection/components/select/select.stories.js +113 -0
  1055. package/dist/collection/components/skeleton/skeleton.css +36 -0
  1056. package/dist/collection/components/skeleton/skeleton.js +15 -0
  1057. package/dist/collection/components/skeleton/skeleton.stories.js +90 -0
  1058. package/dist/collection/components/spinner/spinner.css +63 -0
  1059. package/dist/collection/components/spinner/spinner.js +16 -0
  1060. package/dist/collection/components/spinner/spinner.stories.js +10 -0
  1061. package/dist/collection/components/switch/switch.css +206 -0
  1062. package/dist/collection/components/switch/switch.js +342 -0
  1063. package/dist/collection/components/switch/switch.stories.js +103 -0
  1064. package/dist/collection/components/tab/tab.css +7 -0
  1065. package/dist/collection/components/tab/tab.js +93 -0
  1066. package/dist/collection/components/tab-bar/tab-bar.css +47 -0
  1067. package/dist/collection/components/tab-bar/tab-bar.js +122 -0
  1068. package/dist/collection/components/tab-button/tab-button.css +165 -0
  1069. package/dist/collection/components/tab-button/tab-button.js +235 -0
  1070. package/dist/collection/components/table/table.css +30 -0
  1071. package/dist/collection/components/table/table.js +18 -0
  1072. package/dist/collection/components/table/table.stories.js +42 -0
  1073. package/dist/collection/components/tabs/tabs.css +4 -0
  1074. package/dist/collection/components/tabs/tabs.js +220 -0
  1075. package/dist/collection/components/tabs/tabs.stories.js +176 -0
  1076. package/dist/collection/components/text/text.css +46 -0
  1077. package/dist/collection/components/text/text.js +45 -0
  1078. package/dist/collection/components/text/text.stories.js +23 -0
  1079. package/dist/collection/components/textarea/textarea.css +142 -0
  1080. package/dist/collection/components/textarea/textarea.js +490 -0
  1081. package/dist/collection/components/textarea/textarea.stories.js +141 -0
  1082. package/dist/collection/components/toast/toast.css +197 -0
  1083. package/dist/collection/components/toast/toast.js +247 -0
  1084. package/dist/collection/components/toast/toast.stories.js +66 -0
  1085. package/dist/collection/components/toolbar/toolbar.css +72 -0
  1086. package/dist/collection/components/toolbar/toolbar.js +49 -0
  1087. package/dist/collection/components/toolbar/toolbar.stories.js +30 -0
  1088. package/dist/collection/components/toolbar-title/toolbar-title.css +23 -0
  1089. package/dist/collection/components/toolbar-title/toolbar-title.js +19 -0
  1090. package/dist/collection/components/tooltip/tooltip.css +102 -0
  1091. package/dist/collection/components/tooltip/tooltip.js +209 -0
  1092. package/dist/collection/components/tooltip/tooltip.stories.js +67 -0
  1093. package/dist/collection/components/utilities/border.stories.js +39 -0
  1094. package/dist/collection/components/utilities/color.stories.js +27 -0
  1095. package/dist/collection/components/utilities/flexbox.stories.js +72 -0
  1096. package/dist/collection/components/utilities/text.stories.js +29 -0
  1097. package/dist/collection/components/utilities/typography.stories.js +23 -0
  1098. package/dist/collection/fonts/Muli-Bold.woff +0 -0
  1099. package/dist/collection/fonts/Muli-Bold.woff2 +0 -0
  1100. package/dist/collection/fonts/Muli-Regular.woff +0 -0
  1101. package/dist/collection/fonts/Muli-Regular.woff2 +0 -0
  1102. package/dist/collection/global/app.js +4 -0
  1103. package/dist/collection/index.js +1 -0
  1104. package/dist/collection/utils/polyfill.js +6 -0
  1105. package/dist/esm/app-7b5384c5.js +5 -0
  1106. package/dist/esm/css-shim-a7f418e3.js +4 -0
  1107. package/dist/esm/dom-1f98a75f.js +73 -0
  1108. package/dist/esm/focus-visible-0fc6119c.js +333 -0
  1109. package/dist/esm/index-1ea26b25.js +15 -0
  1110. package/dist/esm/index-42b74371.js +1789 -0
  1111. package/dist/esm/index.js +2 -0
  1112. package/dist/esm/loader.js +32 -0
  1113. package/dist/esm/polyfill-2b159e86.js +5 -0
  1114. package/dist/esm/polyfills/core-js.js +11 -0
  1115. package/dist/esm/polyfills/css-shim.js +1 -0
  1116. package/dist/esm/polyfills/dom.js +79 -0
  1117. package/dist/esm/polyfills/es5-html-element.js +1 -0
  1118. package/dist/esm/polyfills/index.js +34 -0
  1119. package/dist/esm/polyfills/system.js +6 -0
  1120. package/dist/esm/road-accordion.entry.js +27 -0
  1121. package/dist/esm/road-alert.entry.js +20 -0
  1122. package/dist/esm/road-autocomplete.entry.js +45 -0
  1123. package/dist/esm/road-avatar.entry.js +15 -0
  1124. package/dist/esm/road-badge_11.entry.js +502 -0
  1125. package/dist/esm/road-card.entry.js +56 -0
  1126. package/dist/esm/road-carousel-item.entry.js +18 -0
  1127. package/dist/esm/road-carousel.entry.js +403 -0
  1128. package/dist/esm/road-checkbox.entry.js +73 -0
  1129. package/dist/esm/road-chip.entry.js +34 -0
  1130. package/dist/esm/road-collapse.entry.js +40 -0
  1131. package/dist/esm/road-counter.entry.js +35 -0
  1132. package/dist/esm/road-dialog.entry.js +94 -0
  1133. package/dist/esm/road-flap.entry.js +20 -0
  1134. package/dist/esm/road-img.entry.js +71 -0
  1135. package/dist/esm/road-input-group.entry.js +15 -0
  1136. package/dist/esm/road-input.entry.js +104 -0
  1137. package/dist/esm/road-modal.entry.js +76 -0
  1138. package/dist/esm/road-navbar-item.entry.js +60 -0
  1139. package/dist/esm/road-navbar.entry.js +33 -0
  1140. package/dist/esm/road-plate-number.entry.js +90 -0
  1141. package/dist/esm/road-progress.entry.js +24 -0
  1142. package/dist/esm/road-radio-group.entry.js +74 -0
  1143. package/dist/esm/road-radio.entry.js +86 -0
  1144. package/dist/esm/road-range.entry.js +54 -0
  1145. package/dist/esm/road-rating.entry.js +30 -0
  1146. package/dist/esm/road-select.entry.js +75 -0
  1147. package/dist/esm/road-skeleton.entry.js +15 -0
  1148. package/dist/esm/road-spinner.entry.js +15 -0
  1149. package/dist/esm/road-switch.entry.js +87 -0
  1150. package/dist/esm/road-tab-bar.entry.js +43 -0
  1151. package/dist/esm/road-tab-button.entry.js +78 -0
  1152. package/dist/esm/road-tab.entry.js +30 -0
  1153. package/dist/esm/road-table.entry.js +15 -0
  1154. package/dist/esm/road-tabs.entry.js +106 -0
  1155. package/dist/esm/road-text.entry.js +20 -0
  1156. package/dist/esm/road-textarea.entry.js +89 -0
  1157. package/dist/esm/road-toast.entry.js +95 -0
  1158. package/dist/esm/road-toolbar-title.entry.js +15 -0
  1159. package/dist/esm/road-tooltip.entry.js +73 -0
  1160. package/dist/esm/roadtrip.js +85 -0
  1161. package/dist/esm/shadow-css-67b66845.js +389 -0
  1162. package/dist/esm/swiper.bundle-6070542b.js +10000 -0
  1163. package/dist/esm/utils-cf12c226.js +75 -0
  1164. package/dist/esm-es5/app-7b5384c5.js +1 -0
  1165. package/dist/esm-es5/css-shim-a7f418e3.js +1 -0
  1166. package/dist/esm-es5/dom-1f98a75f.js +21 -0
  1167. package/dist/esm-es5/focus-visible-0fc6119c.js +1 -0
  1168. package/dist/esm-es5/index-1ea26b25.js +1 -0
  1169. package/dist/esm-es5/index-42b74371.js +1 -0
  1170. package/dist/esm-es5/index.js +1 -0
  1171. package/dist/esm-es5/loader.js +1 -0
  1172. package/dist/esm-es5/polyfill-2b159e86.js +1 -0
  1173. package/dist/esm-es5/road-accordion.entry.js +1 -0
  1174. package/dist/esm-es5/road-alert.entry.js +1 -0
  1175. package/dist/esm-es5/road-autocomplete.entry.js +1 -0
  1176. package/dist/esm-es5/road-avatar.entry.js +1 -0
  1177. package/dist/esm-es5/road-badge_11.entry.js +1 -0
  1178. package/dist/esm-es5/road-card.entry.js +1 -0
  1179. package/dist/esm-es5/road-carousel-item.entry.js +1 -0
  1180. package/dist/esm-es5/road-carousel.entry.js +1 -0
  1181. package/dist/esm-es5/road-checkbox.entry.js +1 -0
  1182. package/dist/esm-es5/road-chip.entry.js +1 -0
  1183. package/dist/esm-es5/road-collapse.entry.js +1 -0
  1184. package/dist/esm-es5/road-counter.entry.js +1 -0
  1185. package/dist/esm-es5/road-dialog.entry.js +1 -0
  1186. package/dist/esm-es5/road-flap.entry.js +1 -0
  1187. package/dist/esm-es5/road-img.entry.js +1 -0
  1188. package/dist/esm-es5/road-input-group.entry.js +1 -0
  1189. package/dist/esm-es5/road-input.entry.js +1 -0
  1190. package/dist/esm-es5/road-modal.entry.js +1 -0
  1191. package/dist/esm-es5/road-navbar-item.entry.js +1 -0
  1192. package/dist/esm-es5/road-navbar.entry.js +1 -0
  1193. package/dist/esm-es5/road-plate-number.entry.js +1 -0
  1194. package/dist/esm-es5/road-progress.entry.js +1 -0
  1195. package/dist/esm-es5/road-radio-group.entry.js +1 -0
  1196. package/dist/esm-es5/road-radio.entry.js +1 -0
  1197. package/dist/esm-es5/road-range.entry.js +1 -0
  1198. package/dist/esm-es5/road-rating.entry.js +1 -0
  1199. package/dist/esm-es5/road-select.entry.js +1 -0
  1200. package/dist/esm-es5/road-skeleton.entry.js +1 -0
  1201. package/dist/esm-es5/road-spinner.entry.js +1 -0
  1202. package/dist/esm-es5/road-switch.entry.js +1 -0
  1203. package/dist/esm-es5/road-tab-bar.entry.js +1 -0
  1204. package/dist/esm-es5/road-tab-button.entry.js +1 -0
  1205. package/dist/esm-es5/road-tab.entry.js +1 -0
  1206. package/dist/esm-es5/road-table.entry.js +1 -0
  1207. package/dist/esm-es5/road-tabs.entry.js +1 -0
  1208. package/dist/esm-es5/road-text.entry.js +1 -0
  1209. package/dist/esm-es5/road-textarea.entry.js +1 -0
  1210. package/dist/esm-es5/road-toast.entry.js +1 -0
  1211. package/dist/esm-es5/road-toolbar-title.entry.js +1 -0
  1212. package/dist/esm-es5/road-tooltip.entry.js +1 -0
  1213. package/dist/esm-es5/roadtrip.js +1 -0
  1214. package/dist/esm-es5/shadow-css-67b66845.js +12 -0
  1215. package/dist/esm-es5/swiper.bundle-6070542b.js +1 -0
  1216. package/dist/esm-es5/utils-cf12c226.js +1 -0
  1217. package/dist/html.html-data.json +2294 -0
  1218. package/dist/icons/icons.svg +1 -0
  1219. package/dist/icons/index.d.ts +887 -0
  1220. package/dist/icons/index.js +887 -0
  1221. package/dist/index.cjs.js +1 -0
  1222. package/dist/index.js +1 -0
  1223. package/dist/loader/cdn.js +3 -0
  1224. package/dist/loader/index.cjs.js +3 -0
  1225. package/dist/loader/index.d.ts +13 -0
  1226. package/dist/loader/index.es2017.js +3 -0
  1227. package/dist/loader/index.js +4 -0
  1228. package/dist/loader/package.json +10 -0
  1229. package/dist/roadtrip/fonts/Muli-Bold.woff +0 -0
  1230. package/dist/roadtrip/fonts/Muli-Bold.woff2 +0 -0
  1231. package/dist/roadtrip/fonts/Muli-Regular.woff +0 -0
  1232. package/dist/roadtrip/fonts/Muli-Regular.woff2 +0 -0
  1233. package/dist/roadtrip/fonts/Oswald-Medium.woff2 +0 -0
  1234. package/dist/roadtrip/index.esm.js +1 -0
  1235. package/dist/roadtrip/p-0114b277.system.entry.js +1 -0
  1236. package/dist/roadtrip/p-02438cfb.entry.js +1 -0
  1237. package/dist/roadtrip/p-02e4bc64.system.entry.js +1 -0
  1238. package/dist/roadtrip/p-041210d2.system.entry.js +1 -0
  1239. package/dist/roadtrip/p-0cef4909.entry.js +1 -0
  1240. package/dist/roadtrip/p-0d394981.entry.js +1 -0
  1241. package/dist/roadtrip/p-0d72b32f.entry.js +1 -0
  1242. package/dist/roadtrip/p-0f922d99.system.entry.js +1 -0
  1243. package/dist/roadtrip/p-10d2f292.entry.js +1 -0
  1244. package/dist/roadtrip/p-1247ae38.entry.js +1 -0
  1245. package/dist/roadtrip/p-12a635b5.js +1 -0
  1246. package/dist/roadtrip/p-12fd8791.js +1 -0
  1247. package/dist/roadtrip/p-1331984c.system.entry.js +1 -0
  1248. package/dist/roadtrip/p-13b4e299.entry.js +1 -0
  1249. package/dist/roadtrip/p-17c183fb.system.entry.js +1 -0
  1250. package/dist/roadtrip/p-17e1fad4.entry.js +1 -0
  1251. package/dist/roadtrip/p-1fc157fe.entry.js +1 -0
  1252. package/dist/roadtrip/p-29112092.system.entry.js +1 -0
  1253. package/dist/roadtrip/p-2fbab6fe.system.js +1 -0
  1254. package/dist/roadtrip/p-316f18c5.system.entry.js +1 -0
  1255. package/dist/roadtrip/p-35eb0f57.entry.js +1 -0
  1256. package/dist/roadtrip/p-37c7c67a.system.entry.js +1 -0
  1257. package/dist/roadtrip/p-37e3988b.entry.js +1 -0
  1258. package/dist/roadtrip/p-3961060c.system.entry.js +1 -0
  1259. package/dist/roadtrip/p-3b0bf6c7.system.entry.js +1 -0
  1260. package/dist/roadtrip/p-3b954155.entry.js +1 -0
  1261. package/dist/roadtrip/p-40f0da52.js +1 -0
  1262. package/dist/roadtrip/p-420fd82a.system.js +1 -0
  1263. package/dist/roadtrip/p-425ea346.entry.js +1 -0
  1264. package/dist/roadtrip/p-42a9ad7b.entry.js +1 -0
  1265. package/dist/roadtrip/p-430a11a6.system.entry.js +1 -0
  1266. package/dist/roadtrip/p-436ed9ba.system.entry.js +1 -0
  1267. package/dist/roadtrip/p-498ca42b.system.js +1 -0
  1268. package/dist/roadtrip/p-4f31338d.js +1 -0
  1269. package/dist/roadtrip/p-510a8cc4.system.js +1 -0
  1270. package/dist/roadtrip/p-518b69d3.system.entry.js +1 -0
  1271. package/dist/roadtrip/p-5350841a.system.entry.js +1 -0
  1272. package/dist/roadtrip/p-5419dd76.entry.js +1 -0
  1273. package/dist/roadtrip/p-54eb6c30.system.entry.js +1 -0
  1274. package/dist/roadtrip/p-551176bd.entry.js +1 -0
  1275. package/dist/roadtrip/p-58e70635.system.entry.js +1 -0
  1276. package/dist/roadtrip/p-590dcc09.entry.js +1 -0
  1277. package/dist/roadtrip/p-5fae0a97.system.js +1 -0
  1278. package/dist/roadtrip/p-60019e46.entry.js +1 -0
  1279. package/dist/roadtrip/p-62c3be42.system.entry.js +1 -0
  1280. package/dist/roadtrip/p-63daafae.js +1 -0
  1281. package/dist/roadtrip/p-680a8005.system.entry.js +1 -0
  1282. package/dist/roadtrip/p-68bbe841.system.entry.js +1 -0
  1283. package/dist/roadtrip/p-69599f4e.js +19 -0
  1284. package/dist/roadtrip/p-6bf12486.system.entry.js +1 -0
  1285. package/dist/roadtrip/p-6cbf0271.entry.js +1 -0
  1286. package/dist/roadtrip/p-7103b86e.system.entry.js +1 -0
  1287. package/dist/roadtrip/p-7a59ecb8.system.entry.js +1 -0
  1288. package/dist/roadtrip/p-7dc1cc99.entry.js +1 -0
  1289. package/dist/roadtrip/p-7f407e93.entry.js +1 -0
  1290. package/dist/roadtrip/p-7f900814.system.entry.js +1 -0
  1291. package/dist/roadtrip/p-801c9922.system.js +1 -0
  1292. package/dist/roadtrip/p-8459879b.system.js +1 -0
  1293. package/dist/roadtrip/p-871be532.entry.js +1 -0
  1294. package/dist/roadtrip/p-8a10bd9c.entry.js +1 -0
  1295. package/dist/roadtrip/p-8c389605.system.entry.js +1 -0
  1296. package/dist/roadtrip/p-9112876a.system.entry.js +1 -0
  1297. package/dist/roadtrip/p-93b244be.entry.js +1 -0
  1298. package/dist/roadtrip/p-97d9114f.system.entry.js +1 -0
  1299. package/dist/roadtrip/p-990f2104.system.entry.js +1 -0
  1300. package/dist/roadtrip/p-9aabadbf.system.entry.js +1 -0
  1301. package/dist/roadtrip/p-9c8ddf01.js +1 -0
  1302. package/dist/roadtrip/p-9cd9dd57.system.entry.js +1 -0
  1303. package/dist/roadtrip/p-9e8ca61a.system.entry.js +1 -0
  1304. package/dist/roadtrip/p-9eae51cb.entry.js +1 -0
  1305. package/dist/roadtrip/p-a225ba2d.entry.js +1 -0
  1306. package/dist/roadtrip/p-a5548019.entry.js +1 -0
  1307. package/dist/roadtrip/p-a69855b7.js +12 -0
  1308. package/dist/roadtrip/p-a71ed0b6.entry.js +1 -0
  1309. package/dist/roadtrip/p-abb85557.entry.js +1 -0
  1310. package/dist/roadtrip/p-ac68d72d.entry.js +1 -0
  1311. package/dist/roadtrip/p-afc0a90b.system.entry.js +1 -0
  1312. package/dist/roadtrip/p-ba78dff5.system.entry.js +1 -0
  1313. package/dist/roadtrip/p-bd2c0a1b.system.js +1 -0
  1314. package/dist/roadtrip/p-c2334232.system.js +1 -0
  1315. package/dist/roadtrip/p-c9906366.entry.js +1 -0
  1316. package/dist/roadtrip/p-cafbe9cb.entry.js +1 -0
  1317. package/dist/roadtrip/p-cc1da076.system.entry.js +1 -0
  1318. package/dist/roadtrip/p-cd603d87.system.js +13 -0
  1319. package/dist/roadtrip/p-d13bb916.entry.js +1 -0
  1320. package/dist/roadtrip/p-d1854f4f.entry.js +1 -0
  1321. package/dist/roadtrip/p-d64857ac.entry.js +1 -0
  1322. package/dist/roadtrip/p-d8712919.entry.js +1 -0
  1323. package/dist/roadtrip/p-dbe056ce.system.js +21 -0
  1324. package/dist/roadtrip/p-df4a232f.system.entry.js +1 -0
  1325. package/dist/roadtrip/p-e2add5a5.system.entry.js +1 -0
  1326. package/dist/roadtrip/p-e381e807.entry.js +1 -0
  1327. package/dist/roadtrip/p-e487ed25.entry.js +1 -0
  1328. package/dist/roadtrip/p-e558ebfb.js +1 -0
  1329. package/dist/roadtrip/p-e575fb5f.entry.js +1 -0
  1330. package/dist/roadtrip/p-e9113160.entry.js +1 -0
  1331. package/dist/roadtrip/p-ec231b77.js +1 -0
  1332. package/dist/roadtrip/p-ee0455c8.system.entry.js +1 -0
  1333. package/dist/roadtrip/p-fb92eb91.system.entry.js +1 -0
  1334. package/dist/roadtrip/p-fe5c5fd9.system.entry.js +1 -0
  1335. package/dist/roadtrip/p-ffbbba64.system.js +1 -0
  1336. package/dist/roadtrip/p-ffe2b39f.system.entry.js +1 -0
  1337. package/dist/roadtrip/roadtrip.css +1 -0
  1338. package/dist/roadtrip/roadtrip.esm.js +1 -0
  1339. package/dist/roadtrip/roadtrip.js +132 -0
  1340. package/dist/roadtrip/svg/alert-danger-outline.svg +1 -0
  1341. package/dist/roadtrip/svg/alert-danger.svg +1 -0
  1342. package/dist/roadtrip/svg/alert-error-outline-color.svg +1 -0
  1343. package/dist/roadtrip/svg/alert-error-outline.svg +1 -0
  1344. package/dist/roadtrip/svg/alert-error.svg +1 -0
  1345. package/dist/roadtrip/svg/alert-info-outline-color.svg +1 -0
  1346. package/dist/roadtrip/svg/alert-info-outline.svg +1 -0
  1347. package/dist/roadtrip/svg/alert-info.svg +1 -0
  1348. package/dist/roadtrip/svg/alert-notification-alarm-outline.svg +1 -0
  1349. package/dist/roadtrip/svg/alert-notification-alarm.svg +1 -0
  1350. package/dist/roadtrip/svg/alert-notification-outline.svg +1 -0
  1351. package/dist/roadtrip/svg/alert-notification-warning-outline.svg +1 -0
  1352. package/dist/roadtrip/svg/alert-notification-warning.svg +1 -0
  1353. package/dist/roadtrip/svg/alert-notification.svg +1 -0
  1354. package/dist/roadtrip/svg/alert-question-outline-color.svg +1 -0
  1355. package/dist/roadtrip/svg/alert-question-outline.svg +1 -0
  1356. package/dist/roadtrip/svg/alert-question.svg +1 -0
  1357. package/dist/roadtrip/svg/alert-success-outline.svg +1 -0
  1358. package/dist/roadtrip/svg/alert-success.svg +1 -0
  1359. package/dist/roadtrip/svg/alert-valid-outline-color.svg +1 -0
  1360. package/dist/roadtrip/svg/alert-valid-outline.svg +1 -0
  1361. package/dist/roadtrip/svg/alert-valid.svg +1 -0
  1362. package/dist/roadtrip/svg/alert-warning-outline-color.svg +1 -0
  1363. package/dist/roadtrip/svg/alert-warning-outline.svg +1 -0
  1364. package/dist/roadtrip/svg/alert-warning.svg +1 -0
  1365. package/dist/roadtrip/svg/alternator-color.svg +1 -0
  1366. package/dist/roadtrip/svg/alternator.svg +1 -0
  1367. package/dist/roadtrip/svg/app.svg +1 -0
  1368. package/dist/roadtrip/svg/arrow-drop-down.svg +1 -0
  1369. package/dist/roadtrip/svg/arrow-drop.svg +1 -0
  1370. package/dist/roadtrip/svg/arrow-fullscreen-collapse.svg +1 -0
  1371. package/dist/roadtrip/svg/arrow-fullscreen-expand.svg +1 -0
  1372. package/dist/roadtrip/svg/arrow-swap.svg +1 -0
  1373. package/dist/roadtrip/svg/arrow.svg +1 -0
  1374. package/dist/roadtrip/svg/axle-support.svg +1 -0
  1375. package/dist/roadtrip/svg/bacterium-color.svg +1 -0
  1376. package/dist/roadtrip/svg/bacterium.svg +1 -0
  1377. package/dist/roadtrip/svg/battery-charger-color.svg +1 -0
  1378. package/dist/roadtrip/svg/battery-charger.svg +1 -0
  1379. package/dist/roadtrip/svg/battery-color.svg +1 -0
  1380. package/dist/roadtrip/svg/battery-recycle-color.svg +1 -0
  1381. package/dist/roadtrip/svg/battery-recycle.svg +1 -0
  1382. package/dist/roadtrip/svg/battery-start-stop-color.svg +1 -0
  1383. package/dist/roadtrip/svg/battery-start-stop.svg +1 -0
  1384. package/dist/roadtrip/svg/battery.svg +1 -0
  1385. package/dist/roadtrip/svg/best-customer.svg +1 -0
  1386. package/dist/roadtrip/svg/book-service-color.svg +1 -0
  1387. package/dist/roadtrip/svg/book-service.svg +1 -0
  1388. package/dist/roadtrip/svg/book-technical-color.svg +1 -0
  1389. package/dist/roadtrip/svg/book-technical.svg +1 -0
  1390. package/dist/roadtrip/svg/brake-color.svg +1 -0
  1391. package/dist/roadtrip/svg/brake-outline-color.svg +1 -0
  1392. package/dist/roadtrip/svg/brake-outline.svg +1 -0
  1393. package/dist/roadtrip/svg/brake-pad.svg +1 -0
  1394. package/dist/roadtrip/svg/brake.svg +1 -0
  1395. package/dist/roadtrip/svg/bulk-3d-color.svg +1 -0
  1396. package/dist/roadtrip/svg/bulk-3d.svg +1 -0
  1397. package/dist/roadtrip/svg/bundle-color.svg +1 -0
  1398. package/dist/roadtrip/svg/bundle.svg +1 -0
  1399. package/dist/roadtrip/svg/cable.svg +1 -0
  1400. package/dist/roadtrip/svg/calculator-color.svg +1 -0
  1401. package/dist/roadtrip/svg/calculator.svg +1 -0
  1402. package/dist/roadtrip/svg/call-center-color.svg +1 -0
  1403. package/dist/roadtrip/svg/call-center.svg +1 -0
  1404. package/dist/roadtrip/svg/camera-off-outline-color.svg +1 -0
  1405. package/dist/roadtrip/svg/camera-off-outline.svg +1 -0
  1406. package/dist/roadtrip/svg/camera-off.svg +1 -0
  1407. package/dist/roadtrip/svg/camera-outline-color.svg +1 -0
  1408. package/dist/roadtrip/svg/camera-outline.svg +1 -0
  1409. package/dist/roadtrip/svg/camera.svg +1 -0
  1410. package/dist/roadtrip/svg/car-door-color.svg +1 -0
  1411. package/dist/roadtrip/svg/car-door.svg +1 -0
  1412. package/dist/roadtrip/svg/car-identity-paper-open.svg +1 -0
  1413. package/dist/roadtrip/svg/car-identity-paper.svg +1 -0
  1414. package/dist/roadtrip/svg/car-petrol-off-color.svg +1 -0
  1415. package/dist/roadtrip/svg/car-petrol-off-outline.svg +1 -0
  1416. package/dist/roadtrip/svg/car-petrol-off.svg +1 -0
  1417. package/dist/roadtrip/svg/car-petrol-outline-color.svg +1 -0
  1418. package/dist/roadtrip/svg/car-petrol-outline.svg +1 -0
  1419. package/dist/roadtrip/svg/car-petrol.svg +1 -0
  1420. package/dist/roadtrip/svg/car-power-color.svg +1 -0
  1421. package/dist/roadtrip/svg/car-power.svg +1 -0
  1422. package/dist/roadtrip/svg/car-seat-baby.svg +1 -0
  1423. package/dist/roadtrip/svg/car-seat.svg +1 -0
  1424. package/dist/roadtrip/svg/car-wiper-back-color.svg +1 -0
  1425. package/dist/roadtrip/svg/car-wiper-back.svg +1 -0
  1426. package/dist/roadtrip/svg/car-wiper-front-color.svg +1 -0
  1427. package/dist/roadtrip/svg/car-wiper-front.svg +1 -0
  1428. package/dist/roadtrip/svg/carpet-color.svg +1 -0
  1429. package/dist/roadtrip/svg/carpet.svg +1 -0
  1430. package/dist/roadtrip/svg/certified-outline-color.svg +1 -0
  1431. package/dist/roadtrip/svg/certified-outline.svg +1 -0
  1432. package/dist/roadtrip/svg/certified-warning-outline-color.svg +1 -0
  1433. package/dist/roadtrip/svg/certified-warning-outline.svg +1 -0
  1434. package/dist/roadtrip/svg/certified-warning.svg +1 -0
  1435. package/dist/roadtrip/svg/certified.svg +1 -0
  1436. package/dist/roadtrip/svg/check-point-color.svg +1 -0
  1437. package/dist/roadtrip/svg/check-point-location-color.svg +1 -0
  1438. package/dist/roadtrip/svg/check-point-location.svg +1 -0
  1439. package/dist/roadtrip/svg/check-point.svg +1 -0
  1440. package/dist/roadtrip/svg/check-small.svg +1 -0
  1441. package/dist/roadtrip/svg/check-wide.svg +1 -0
  1442. package/dist/roadtrip/svg/cleanser-color.svg +1 -0
  1443. package/dist/roadtrip/svg/cleanser.svg +1 -0
  1444. package/dist/roadtrip/svg/cloud-download-color.svg +1 -0
  1445. package/dist/roadtrip/svg/cloud-download.svg +1 -0
  1446. package/dist/roadtrip/svg/cloud-outline.svg +1 -0
  1447. package/dist/roadtrip/svg/cloud-upload-color.svg +1 -0
  1448. package/dist/roadtrip/svg/cloud-upload.svg +1 -0
  1449. package/dist/roadtrip/svg/clutch-color.svg +1 -0
  1450. package/dist/roadtrip/svg/clutch.svg +1 -0
  1451. package/dist/roadtrip/svg/collapse.svg +1 -0
  1452. package/dist/roadtrip/svg/comodo.svg +1 -0
  1453. package/dist/roadtrip/svg/control-switch-color.svg +1 -0
  1454. package/dist/roadtrip/svg/control-switch.svg +1 -0
  1455. package/dist/roadtrip/svg/cookie.svg +1 -0
  1456. package/dist/roadtrip/svg/cooling-color.svg +1 -0
  1457. package/dist/roadtrip/svg/cooling.svg +1 -0
  1458. package/dist/roadtrip/svg/cover-color.svg +1 -0
  1459. package/dist/roadtrip/svg/cover.svg +1 -0
  1460. package/dist/roadtrip/svg/covid-stop-color.svg +1 -0
  1461. package/dist/roadtrip/svg/covid-stop.svg +1 -0
  1462. package/dist/roadtrip/svg/crown.svg +1 -0
  1463. package/dist/roadtrip/svg/dashboard.svg +1 -0
  1464. package/dist/roadtrip/svg/data-add-color.svg +1 -0
  1465. package/dist/roadtrip/svg/data-add.svg +1 -0
  1466. package/dist/roadtrip/svg/data-color.svg +1 -0
  1467. package/dist/roadtrip/svg/data-up-color.svg +1 -0
  1468. package/dist/roadtrip/svg/data-up.svg +1 -0
  1469. package/dist/roadtrip/svg/data.svg +1 -0
  1470. package/dist/roadtrip/svg/delete-forever-color.svg +1 -0
  1471. package/dist/roadtrip/svg/delete-forever.svg +1 -0
  1472. package/dist/roadtrip/svg/device-color.svg +1 -0
  1473. package/dist/roadtrip/svg/device-laptop-color.svg +1 -0
  1474. package/dist/roadtrip/svg/device-laptop.svg +1 -0
  1475. package/dist/roadtrip/svg/device-rotate-color.svg +1 -0
  1476. package/dist/roadtrip/svg/device-rotate.svg +1 -0
  1477. package/dist/roadtrip/svg/device-smartphone-color.svg +1 -0
  1478. package/dist/roadtrip/svg/device-smartphone-sms-color.svg +1 -0
  1479. package/dist/roadtrip/svg/device-smartphone-sms-wrench-color.svg +1 -0
  1480. package/dist/roadtrip/svg/device-smartphone-sms-wrench.svg +1 -0
  1481. package/dist/roadtrip/svg/device-smartphone-sms.svg +1 -0
  1482. package/dist/roadtrip/svg/device-smartphone.svg +1 -0
  1483. package/dist/roadtrip/svg/device-tablet-color.svg +1 -0
  1484. package/dist/roadtrip/svg/device-tablet.svg +1 -0
  1485. package/dist/roadtrip/svg/device.svg +1 -0
  1486. package/dist/roadtrip/svg/diagnostic-color.svg +1 -0
  1487. package/dist/roadtrip/svg/diagnostic.svg +1 -0
  1488. package/dist/roadtrip/svg/discount-prct-outline-color.svg +1 -0
  1489. package/dist/roadtrip/svg/discount-prct-outline.svg +1 -0
  1490. package/dist/roadtrip/svg/discount-prct-single.svg +1 -0
  1491. package/dist/roadtrip/svg/discount-prct.svg +1 -0
  1492. package/dist/roadtrip/svg/discount-ticket-color.svg +1 -0
  1493. package/dist/roadtrip/svg/discount-ticket.svg +1 -0
  1494. package/dist/roadtrip/svg/discount-worshop.svg +1 -0
  1495. package/dist/roadtrip/svg/download-color.svg +1 -0
  1496. package/dist/roadtrip/svg/download.svg +1 -0
  1497. package/dist/roadtrip/svg/edit-outline-color.svg +1 -0
  1498. package/dist/roadtrip/svg/edit-outline.svg +1 -0
  1499. package/dist/roadtrip/svg/edit-pen-color.svg +1 -0
  1500. package/dist/roadtrip/svg/edit-pen-outline.svg +1 -0
  1501. package/dist/roadtrip/svg/edit-pen.svg +1 -0
  1502. package/dist/roadtrip/svg/edit.svg +1 -0
  1503. package/dist/roadtrip/svg/electric-outline.svg +1 -0
  1504. package/dist/roadtrip/svg/electric-plug-13pin-color.svg +1 -0
  1505. package/dist/roadtrip/svg/electric-plug-13pin.svg +1 -0
  1506. package/dist/roadtrip/svg/electric-plug-7pin-color.svg +1 -0
  1507. package/dist/roadtrip/svg/electric-plug-7pin.svg +1 -0
  1508. package/dist/roadtrip/svg/electric.svg +1 -0
  1509. package/dist/roadtrip/svg/electricity-outline.svg +1 -0
  1510. package/dist/roadtrip/svg/electricity.svg +1 -0
  1511. package/dist/roadtrip/svg/electronic-diagnostic.svg +1 -0
  1512. package/dist/roadtrip/svg/electronic-ethanol.svg +1 -0
  1513. package/dist/roadtrip/svg/electronic-outline.svg +1 -0
  1514. package/dist/roadtrip/svg/electronic.svg +1 -0
  1515. package/dist/roadtrip/svg/engine-color.svg +1 -0
  1516. package/dist/roadtrip/svg/engine-electric-color.svg +1 -0
  1517. package/dist/roadtrip/svg/engine-electric.svg +1 -0
  1518. package/dist/roadtrip/svg/engine-lubrication-color.svg +1 -0
  1519. package/dist/roadtrip/svg/engine-lubrication.svg +1 -0
  1520. package/dist/roadtrip/svg/engine-piston-color.svg +1 -0
  1521. package/dist/roadtrip/svg/engine-piston.svg +1 -0
  1522. package/dist/roadtrip/svg/engine.svg +1 -0
  1523. package/dist/roadtrip/svg/exclamation-small.svg +1 -0
  1524. package/dist/roadtrip/svg/exclamation-wide.svg +1 -0
  1525. package/dist/roadtrip/svg/exhaust-pipe-color.svg +1 -0
  1526. package/dist/roadtrip/svg/exhaust-pipe.svg +1 -0
  1527. package/dist/roadtrip/svg/factory-color.svg +1 -0
  1528. package/dist/roadtrip/svg/factory.svg +1 -0
  1529. package/dist/roadtrip/svg/fidelity-card-color.svg +1 -0
  1530. package/dist/roadtrip/svg/fidelity-card-wallet-color.svg +1 -0
  1531. package/dist/roadtrip/svg/fidelity-card-wallet.svg +1 -0
  1532. package/dist/roadtrip/svg/fidelity-card.svg +1 -0
  1533. package/dist/roadtrip/svg/file-business-outline-color.svg +1 -0
  1534. package/dist/roadtrip/svg/file-business-outline.svg +1 -0
  1535. package/dist/roadtrip/svg/file-catalog-color.svg +1 -0
  1536. package/dist/roadtrip/svg/file-catalog.svg +1 -0
  1537. package/dist/roadtrip/svg/file-copy-color.svg +1 -0
  1538. package/dist/roadtrip/svg/file-copy.svg +1 -0
  1539. package/dist/roadtrip/svg/file-edit-color.svg +1 -0
  1540. package/dist/roadtrip/svg/file-edit.svg +1 -0
  1541. package/dist/roadtrip/svg/file-excel-color.svg +1 -0
  1542. package/dist/roadtrip/svg/file-excel-outline.svg +1 -0
  1543. package/dist/roadtrip/svg/file-excel.svg +1 -0
  1544. package/dist/roadtrip/svg/file-list-outline-color.svg +1 -0
  1545. package/dist/roadtrip/svg/file-list-outline.svg +1 -0
  1546. package/dist/roadtrip/svg/file-outline.svg +1 -0
  1547. package/dist/roadtrip/svg/file-pdf-color.svg +1 -0
  1548. package/dist/roadtrip/svg/file-pdf-outline-color.svg +1 -0
  1549. package/dist/roadtrip/svg/file-pdf-outline.svg +1 -0
  1550. package/dist/roadtrip/svg/file-pdf.svg +1 -0
  1551. package/dist/roadtrip/svg/file-powerpoint-color.svg +1 -0
  1552. package/dist/roadtrip/svg/file-powerpoint.svg +1 -0
  1553. package/dist/roadtrip/svg/file-technical-color.svg +1 -0
  1554. package/dist/roadtrip/svg/file-technical.svg +1 -0
  1555. package/dist/roadtrip/svg/file-word-color.svg +1 -0
  1556. package/dist/roadtrip/svg/file-word.svg +1 -0
  1557. package/dist/roadtrip/svg/filter-color.svg +1 -0
  1558. package/dist/roadtrip/svg/filter-particle-color.svg +1 -0
  1559. package/dist/roadtrip/svg/filter-particle.svg +1 -0
  1560. package/dist/roadtrip/svg/filter-sport-color.svg +1 -0
  1561. package/dist/roadtrip/svg/filter-sport.svg +1 -0
  1562. package/dist/roadtrip/svg/filter.svg +1 -0
  1563. package/dist/roadtrip/svg/fingerprint.svg +1 -0
  1564. package/dist/roadtrip/svg/flag-argentina.svg +1 -0
  1565. package/dist/roadtrip/svg/flag-austria.svg +1 -0
  1566. package/dist/roadtrip/svg/flag-belgium.svg +1 -0
  1567. package/dist/roadtrip/svg/flag-france.svg +1 -0
  1568. package/dist/roadtrip/svg/flag-germany.svg +1 -0
  1569. package/dist/roadtrip/svg/flag-italy.svg +1 -0
  1570. package/dist/roadtrip/svg/flag-poland.svg +1 -0
  1571. package/dist/roadtrip/svg/flag-portugal.svg +1 -0
  1572. package/dist/roadtrip/svg/flag-romania.svg +1 -0
  1573. package/dist/roadtrip/svg/flag-russia.svg +1 -0
  1574. package/dist/roadtrip/svg/flag-spain.svg +1 -0
  1575. package/dist/roadtrip/svg/flag-sweden.svg +1 -0
  1576. package/dist/roadtrip/svg/flower-color.svg +1 -0
  1577. package/dist/roadtrip/svg/flower.svg +1 -0
  1578. package/dist/roadtrip/svg/fuel-air-supply-color.svg +1 -0
  1579. package/dist/roadtrip/svg/fuel-air-supply.svg +1 -0
  1580. package/dist/roadtrip/svg/fuel-door-color.svg +1 -0
  1581. package/dist/roadtrip/svg/fuel-door.svg +1 -0
  1582. package/dist/roadtrip/svg/funding-best-price-color.svg +1 -0
  1583. package/dist/roadtrip/svg/funding-best-price.svg +1 -0
  1584. package/dist/roadtrip/svg/funding-outline-color.svg +1 -0
  1585. package/dist/roadtrip/svg/funding-outline.svg +1 -0
  1586. package/dist/roadtrip/svg/funding-small-color.svg +1 -0
  1587. package/dist/roadtrip/svg/funding-small-outline.svg +1 -0
  1588. package/dist/roadtrip/svg/funding-small.svg +1 -0
  1589. package/dist/roadtrip/svg/funding.svg +1 -0
  1590. package/dist/roadtrip/svg/fuse.svg +1 -0
  1591. package/dist/roadtrip/svg/garage-color.svg +1 -0
  1592. package/dist/roadtrip/svg/garage-house-color.svg +1 -0
  1593. package/dist/roadtrip/svg/garage-house.svg +1 -0
  1594. package/dist/roadtrip/svg/garage.svg +1 -0
  1595. package/dist/roadtrip/svg/gas-5-color.svg +1 -0
  1596. package/dist/roadtrip/svg/gas-5-outline.svg +1 -0
  1597. package/dist/roadtrip/svg/gas-5.svg +1 -0
  1598. package/dist/roadtrip/svg/gasket-outline-color.svg +1 -0
  1599. package/dist/roadtrip/svg/gasket-outline.svg +1 -0
  1600. package/dist/roadtrip/svg/gasket.svg +1 -0
  1601. package/dist/roadtrip/svg/gearbox-color.svg +1 -0
  1602. package/dist/roadtrip/svg/gearbox.svg +1 -0
  1603. package/dist/roadtrip/svg/gift-color.svg +1 -0
  1604. package/dist/roadtrip/svg/gift-outline.svg +1 -0
  1605. package/dist/roadtrip/svg/gift.svg +1 -0
  1606. package/dist/roadtrip/svg/gps-color.svg +1 -0
  1607. package/dist/roadtrip/svg/gps.svg +1 -0
  1608. package/dist/roadtrip/svg/handicap.svg +1 -0
  1609. package/dist/roadtrip/svg/hear-color.svg +1 -0
  1610. package/dist/roadtrip/svg/hear.svg +1 -0
  1611. package/dist/roadtrip/svg/helmet-bike-color.svg +1 -0
  1612. package/dist/roadtrip/svg/helmet-bike.svg +1 -0
  1613. package/dist/roadtrip/svg/helmet-cross-color.svg +1 -0
  1614. package/dist/roadtrip/svg/helmet-cross.svg +1 -0
  1615. package/dist/roadtrip/svg/helmet-full-color.svg +1 -0
  1616. package/dist/roadtrip/svg/helmet-full.svg +1 -0
  1617. package/dist/roadtrip/svg/helmet-half-jet-color.svg +1 -0
  1618. package/dist/roadtrip/svg/helmet-half-jet.svg +1 -0
  1619. package/dist/roadtrip/svg/helmet-jet-color.svg +1 -0
  1620. package/dist/roadtrip/svg/helmet-jet.svg +1 -0
  1621. package/dist/roadtrip/svg/helmet-modular-color.svg +1 -0
  1622. package/dist/roadtrip/svg/helmet-modular.svg +1 -0
  1623. package/dist/roadtrip/svg/helmet-skate-color.svg +1 -0
  1624. package/dist/roadtrip/svg/helmet-skate.svg +1 -0
  1625. package/dist/roadtrip/svg/home.svg +1 -0
  1626. package/dist/roadtrip/svg/hook-hitch-color.svg +1 -0
  1627. package/dist/roadtrip/svg/hook-hitch-outline.svg +1 -0
  1628. package/dist/roadtrip/svg/hook-hitch.svg +1 -0
  1629. package/dist/roadtrip/svg/house-color.svg +1 -0
  1630. package/dist/roadtrip/svg/house.svg +1 -0
  1631. package/dist/roadtrip/svg/ice-color.svg +1 -0
  1632. package/dist/roadtrip/svg/ice-outline-color.svg +1 -0
  1633. package/dist/roadtrip/svg/ice-outline.svg +1 -0
  1634. package/dist/roadtrip/svg/ice.svg +1 -0
  1635. package/dist/roadtrip/svg/identity-card-color.svg +1 -0
  1636. package/dist/roadtrip/svg/identity-card.svg +1 -0
  1637. package/dist/roadtrip/svg/keep-in-repair-outline.svg +1 -0
  1638. package/dist/roadtrip/svg/keep-in-repair.svg +1 -0
  1639. package/dist/roadtrip/svg/key-outline-color.svg +1 -0
  1640. package/dist/roadtrip/svg/key-outline.svg +1 -0
  1641. package/dist/roadtrip/svg/key.svg +1 -0
  1642. package/dist/roadtrip/svg/leaf.svg +1 -0
  1643. package/dist/roadtrip/svg/license-plate-be.svg +1 -0
  1644. package/dist/roadtrip/svg/license-plate-es.svg +1 -0
  1645. package/dist/roadtrip/svg/license-plate-eu.svg +1 -0
  1646. package/dist/roadtrip/svg/license-plate-fr.svg +1 -0
  1647. package/dist/roadtrip/svg/license-plate-it.svg +1 -0
  1648. package/dist/roadtrip/svg/license-plate-pl.svg +1 -0
  1649. package/dist/roadtrip/svg/license-plate-po.svg +1 -0
  1650. package/dist/roadtrip/svg/license-plate-ru.svg +1 -0
  1651. package/dist/roadtrip/svg/license-plate-star-be.svg +1 -0
  1652. package/dist/roadtrip/svg/license-plate-star-es.svg +1 -0
  1653. package/dist/roadtrip/svg/license-plate-star-eu.svg +1 -0
  1654. package/dist/roadtrip/svg/license-plate-star-fr.svg +1 -0
  1655. package/dist/roadtrip/svg/license-plate-star-it.svg +1 -0
  1656. package/dist/roadtrip/svg/license-plate-star-pl.svg +1 -0
  1657. package/dist/roadtrip/svg/license-plate-star-po.svg +1 -0
  1658. package/dist/roadtrip/svg/light-beam-back-color.svg +1 -0
  1659. package/dist/roadtrip/svg/light-beam-back.svg +1 -0
  1660. package/dist/roadtrip/svg/light-beam-color.svg +1 -0
  1661. package/dist/roadtrip/svg/light-beam-day-color.svg +1 -0
  1662. package/dist/roadtrip/svg/light-beam-day.svg +1 -0
  1663. package/dist/roadtrip/svg/light-beam-fog-color.svg +1 -0
  1664. package/dist/roadtrip/svg/light-beam-fog.svg +1 -0
  1665. package/dist/roadtrip/svg/light-beam-high-color.svg +1 -0
  1666. package/dist/roadtrip/svg/light-beam-high.svg +1 -0
  1667. package/dist/roadtrip/svg/light-beam-numberplate-color.svg +1 -0
  1668. package/dist/roadtrip/svg/light-beam-numberplate.svg +1 -0
  1669. package/dist/roadtrip/svg/light-beam-signal-color.svg +1 -0
  1670. package/dist/roadtrip/svg/light-beam-signal.svg +1 -0
  1671. package/dist/roadtrip/svg/light-beam-stop-color.svg +1 -0
  1672. package/dist/roadtrip/svg/light-beam-stop.svg +1 -0
  1673. package/dist/roadtrip/svg/light-beam-turn-color.svg +1 -0
  1674. package/dist/roadtrip/svg/light-beam-turn.svg +1 -0
  1675. package/dist/roadtrip/svg/light-beam.svg +1 -0
  1676. package/dist/roadtrip/svg/light-box-color.svg +1 -0
  1677. package/dist/roadtrip/svg/light-box.svg +1 -0
  1678. package/dist/roadtrip/svg/light-bulb-color.svg +1 -0
  1679. package/dist/roadtrip/svg/light-bulb.svg +1 -0
  1680. package/dist/roadtrip/svg/light-color.svg +1 -0
  1681. package/dist/roadtrip/svg/light-master-color.svg +1 -0
  1682. package/dist/roadtrip/svg/light-master.svg +1 -0
  1683. package/dist/roadtrip/svg/light-sidelight-color.svg +1 -0
  1684. package/dist/roadtrip/svg/light-sidelight.svg +1 -0
  1685. package/dist/roadtrip/svg/light.svg +1 -0
  1686. package/dist/roadtrip/svg/link-broken-color.svg +1 -0
  1687. package/dist/roadtrip/svg/link-broken.svg +1 -0
  1688. package/dist/roadtrip/svg/link-color.svg +1 -0
  1689. package/dist/roadtrip/svg/link.svg +1 -0
  1690. package/dist/roadtrip/svg/load-cached-color.svg +1 -0
  1691. package/dist/roadtrip/svg/load-cached.svg +1 -0
  1692. package/dist/roadtrip/svg/load-hitstory-color.svg +1 -0
  1693. package/dist/roadtrip/svg/load-hitstory.svg +1 -0
  1694. package/dist/roadtrip/svg/load-refresh.svg +1 -0
  1695. package/dist/roadtrip/svg/load-sync-problem-color.svg +1 -0
  1696. package/dist/roadtrip/svg/load-sync-problem.svg +1 -0
  1697. package/dist/roadtrip/svg/load-update-color.svg +1 -0
  1698. package/dist/roadtrip/svg/load-update.svg +1 -0
  1699. package/dist/roadtrip/svg/location-compass-outline.svg +1 -0
  1700. package/dist/roadtrip/svg/location-compass.svg +1 -0
  1701. package/dist/roadtrip/svg/location-direction.svg +1 -0
  1702. package/dist/roadtrip/svg/location-navigation-outline.svg +1 -0
  1703. package/dist/roadtrip/svg/location-navigation.svg +1 -0
  1704. package/dist/roadtrip/svg/location-path.svg +1 -0
  1705. package/dist/roadtrip/svg/location-pin-all.svg +1 -0
  1706. package/dist/roadtrip/svg/location-pin-garage-auto5.svg +1 -0
  1707. package/dist/roadtrip/svg/location-pin-garage-norauto.svg +1 -0
  1708. package/dist/roadtrip/svg/location-pin-garage.svg +1 -0
  1709. package/dist/roadtrip/svg/location-pin-number.svg +1 -0
  1710. package/dist/roadtrip/svg/location-pin-outline-color.svg +1 -0
  1711. package/dist/roadtrip/svg/location-pin-outline.svg +1 -0
  1712. package/dist/roadtrip/svg/location-pin.svg +1 -0
  1713. package/dist/roadtrip/svg/location-target-color.svg +1 -0
  1714. package/dist/roadtrip/svg/location-target.svg +1 -0
  1715. package/dist/roadtrip/svg/lock-secure-open.svg +1 -0
  1716. package/dist/roadtrip/svg/lock-secure.svg +1 -0
  1717. package/dist/roadtrip/svg/log-out-door.svg +1 -0
  1718. package/dist/roadtrip/svg/log-out.svg +1 -0
  1719. package/dist/roadtrip/svg/lowering-down-color.svg +1 -0
  1720. package/dist/roadtrip/svg/lowering-up-color.svg +1 -0
  1721. package/dist/roadtrip/svg/lowering.svg +1 -0
  1722. package/dist/roadtrip/svg/mail-outline-send-color.svg +1 -0
  1723. package/dist/roadtrip/svg/mail-outline-send.svg +1 -0
  1724. package/dist/roadtrip/svg/mail-outline.svg +1 -0
  1725. package/dist/roadtrip/svg/mail.svg +1 -0
  1726. package/dist/roadtrip/svg/meeting-check-color.svg +1 -0
  1727. package/dist/roadtrip/svg/meeting-check.svg +1 -0
  1728. package/dist/roadtrip/svg/meeting-color.svg +1 -0
  1729. package/dist/roadtrip/svg/meeting-maintenance-color.svg +1 -0
  1730. package/dist/roadtrip/svg/meeting-maintenance.svg +1 -0
  1731. package/dist/roadtrip/svg/meeting-off-color.svg +1 -0
  1732. package/dist/roadtrip/svg/meeting-off.svg +1 -0
  1733. package/dist/roadtrip/svg/meeting-online-color.svg +1 -0
  1734. package/dist/roadtrip/svg/meeting-online.svg +1 -0
  1735. package/dist/roadtrip/svg/meeting-week-color.svg +1 -0
  1736. package/dist/roadtrip/svg/meeting-week.svg +1 -0
  1737. package/dist/roadtrip/svg/meeting.svg +1 -0
  1738. package/dist/roadtrip/svg/mic-outline-color.svg +1 -0
  1739. package/dist/roadtrip/svg/mic-outline.svg +1 -0
  1740. package/dist/roadtrip/svg/mic.svg +1 -0
  1741. package/dist/roadtrip/svg/more-horizontal.svg +1 -0
  1742. package/dist/roadtrip/svg/more-vertical.svg +1 -0
  1743. package/dist/roadtrip/svg/multi-service-outline.svg +1 -0
  1744. package/dist/roadtrip/svg/multi-service.svg +1 -0
  1745. package/dist/roadtrip/svg/navigation-add-less.svg +1 -0
  1746. package/dist/roadtrip/svg/navigation-add-more.svg +1 -0
  1747. package/dist/roadtrip/svg/navigation-back.svg +1 -0
  1748. package/dist/roadtrip/svg/navigation-chevron.svg +1 -0
  1749. package/dist/roadtrip/svg/navigation-close.svg +1 -0
  1750. package/dist/roadtrip/svg/navigation-dashboard-outline-color.svg +1 -0
  1751. package/dist/roadtrip/svg/navigation-dashboard-outline.svg +1 -0
  1752. package/dist/roadtrip/svg/navigation-dashboard.svg +1 -0
  1753. package/dist/roadtrip/svg/navigation-filter.svg +1 -0
  1754. package/dist/roadtrip/svg/navigation-grid.svg +1 -0
  1755. package/dist/roadtrip/svg/navigation-home-outline.svg +1 -0
  1756. package/dist/roadtrip/svg/navigation-home.svg +1 -0
  1757. package/dist/roadtrip/svg/navigation-launch-color.svg +1 -0
  1758. package/dist/roadtrip/svg/navigation-launch-outline.svg +1 -0
  1759. package/dist/roadtrip/svg/navigation-launch.svg +1 -0
  1760. package/dist/roadtrip/svg/navigation-layers-outline-color.svg +1 -0
  1761. package/dist/roadtrip/svg/navigation-layers-outline.svg +1 -0
  1762. package/dist/roadtrip/svg/navigation-layers.svg +1 -0
  1763. package/dist/roadtrip/svg/navigation-list.svg +1 -0
  1764. package/dist/roadtrip/svg/navigation-menu.svg +1 -0
  1765. package/dist/roadtrip/svg/navigation-more.svg +1 -0
  1766. package/dist/roadtrip/svg/navigation-setting-outline-color.svg +1 -0
  1767. package/dist/roadtrip/svg/navigation-setting-outline.svg +1 -0
  1768. package/dist/roadtrip/svg/navigation-setting.svg +1 -0
  1769. package/dist/roadtrip/svg/nose-odour-color.svg +1 -0
  1770. package/dist/roadtrip/svg/nose-odour.svg +1 -0
  1771. package/dist/roadtrip/svg/nut-outline-color.svg +1 -0
  1772. package/dist/roadtrip/svg/nut-outline.svg +1 -0
  1773. package/dist/roadtrip/svg/nut.svg +1 -0
  1774. package/dist/roadtrip/svg/oil-can-outline-color.svg +1 -0
  1775. package/dist/roadtrip/svg/oil-can-outline.svg +1 -0
  1776. package/dist/roadtrip/svg/oil-can-small-color.svg +1 -0
  1777. package/dist/roadtrip/svg/oil-can-small.svg +1 -0
  1778. package/dist/roadtrip/svg/oil-can.svg +1 -0
  1779. package/dist/roadtrip/svg/oil-change-color.svg +1 -0
  1780. package/dist/roadtrip/svg/oil-change.svg +1 -0
  1781. package/dist/roadtrip/svg/oil-color.svg +1 -0
  1782. package/dist/roadtrip/svg/oil-cruet-color.svg +1 -0
  1783. package/dist/roadtrip/svg/oil-cruet.svg +1 -0
  1784. package/dist/roadtrip/svg/oil.svg +1 -0
  1785. package/dist/roadtrip/svg/paiment-store.svg +1 -0
  1786. package/dist/roadtrip/svg/paint-color.svg +1 -0
  1787. package/dist/roadtrip/svg/paint-spary-gun.svg +1 -0
  1788. package/dist/roadtrip/svg/paint.svg +1 -0
  1789. package/dist/roadtrip/svg/parking-break-color.svg +1 -0
  1790. package/dist/roadtrip/svg/parking-break.svg +1 -0
  1791. package/dist/roadtrip/svg/pass-maintain-color.svg +1 -0
  1792. package/dist/roadtrip/svg/pass-maintain-logo-color.svg +1 -0
  1793. package/dist/roadtrip/svg/pass-maintain-logo-outline-color.svg +1 -0
  1794. package/dist/roadtrip/svg/pass-maintain-logo-outline.svg +1 -0
  1795. package/dist/roadtrip/svg/pass-maintain-logo.svg +1 -0
  1796. package/dist/roadtrip/svg/pass-maintain.svg +1 -0
  1797. package/dist/roadtrip/svg/password-reset.svg +1 -0
  1798. package/dist/roadtrip/svg/payment-bill-color.svg +1 -0
  1799. package/dist/roadtrip/svg/payment-bill.svg +1 -0
  1800. package/dist/roadtrip/svg/payment-card-color.svg +1 -0
  1801. package/dist/roadtrip/svg/payment-card.svg +1 -0
  1802. package/dist/roadtrip/svg/payment-cash-color.svg +1 -0
  1803. package/dist/roadtrip/svg/payment-cash.svg +1 -0
  1804. package/dist/roadtrip/svg/payment-delevery-color.svg +1 -0
  1805. package/dist/roadtrip/svg/payment-delevery.svg +1 -0
  1806. package/dist/roadtrip/svg/payment-safety-color.svg +1 -0
  1807. package/dist/roadtrip/svg/payment-safety.svg +1 -0
  1808. package/dist/roadtrip/svg/payment-store-color.svg +1 -0
  1809. package/dist/roadtrip/svg/payment-store.svg +1 -0
  1810. package/dist/roadtrip/svg/people-add-outline-color.svg +1 -0
  1811. package/dist/roadtrip/svg/people-add-outline.svg +1 -0
  1812. package/dist/roadtrip/svg/people-add.svg +1 -0
  1813. package/dist/roadtrip/svg/people-car-fleet-color.svg +1 -0
  1814. package/dist/roadtrip/svg/people-car-fleet.svg +1 -0
  1815. package/dist/roadtrip/svg/people-card-color.svg +1 -0
  1816. package/dist/roadtrip/svg/people-card.svg +1 -0
  1817. package/dist/roadtrip/svg/people-coworker-color.svg +1 -0
  1818. package/dist/roadtrip/svg/people-coworker-norauto-color.svg +1 -0
  1819. package/dist/roadtrip/svg/people-coworker-norauto.svg +1 -0
  1820. package/dist/roadtrip/svg/people-coworker.svg +1 -0
  1821. package/dist/roadtrip/svg/people-customer-outline.svg +1 -0
  1822. package/dist/roadtrip/svg/people-customer.svg +1 -0
  1823. package/dist/roadtrip/svg/people-group-outline-color.svg +1 -0
  1824. package/dist/roadtrip/svg/people-group-outline.svg +1 -0
  1825. package/dist/roadtrip/svg/people-group.svg +1 -0
  1826. package/dist/roadtrip/svg/people-outline.svg +1 -0
  1827. package/dist/roadtrip/svg/people-vip-outline-color.svg +1 -0
  1828. package/dist/roadtrip/svg/people-vip-outline.svg +1 -0
  1829. package/dist/roadtrip/svg/people-vip.svg +1 -0
  1830. package/dist/roadtrip/svg/people.svg +1 -0
  1831. package/dist/roadtrip/svg/petrol-outline-color.svg +1 -0
  1832. package/dist/roadtrip/svg/petrol-outline.svg +1 -0
  1833. package/dist/roadtrip/svg/petrol.svg +1 -0
  1834. package/dist/roadtrip/svg/phone-ouline.svg +1 -0
  1835. package/dist/roadtrip/svg/phone.svg +1 -0
  1836. package/dist/roadtrip/svg/picture-color.svg +1 -0
  1837. package/dist/roadtrip/svg/picture.svg +1 -0
  1838. package/dist/roadtrip/svg/player-arrow-play.svg +1 -0
  1839. package/dist/roadtrip/svg/player-break.svg +1 -0
  1840. package/dist/roadtrip/svg/player-dvd.svg +1 -0
  1841. package/dist/roadtrip/svg/player-irregular.svg +1 -0
  1842. package/dist/roadtrip/svg/player-pause.svg +1 -0
  1843. package/dist/roadtrip/svg/player-radio-outline.svg +1 -0
  1844. package/dist/roadtrip/svg/player-radio.svg +1 -0
  1845. package/dist/roadtrip/svg/player-regular.svg +1 -0
  1846. package/dist/roadtrip/svg/player-unlimited.svg +1 -0
  1847. package/dist/roadtrip/svg/player-video-color.svg +1 -0
  1848. package/dist/roadtrip/svg/player-video.svg +1 -0
  1849. package/dist/roadtrip/svg/power-color.svg +1 -0
  1850. package/dist/roadtrip/svg/power.svg +1 -0
  1851. package/dist/roadtrip/svg/print-outline-color.svg +1 -0
  1852. package/dist/roadtrip/svg/print-outline.svg +1 -0
  1853. package/dist/roadtrip/svg/print.svg +1 -0
  1854. package/dist/roadtrip/svg/purchase-history-color.svg +1 -0
  1855. package/dist/roadtrip/svg/purchase-history.svg +1 -0
  1856. package/dist/roadtrip/svg/radiator-color.svg +1 -0
  1857. package/dist/roadtrip/svg/radiator.svg +1 -0
  1858. package/dist/roadtrip/svg/rent-back-color.svg +1 -0
  1859. package/dist/roadtrip/svg/rent-back.svg +1 -0
  1860. package/dist/roadtrip/svg/rent-color.svg +1 -0
  1861. package/dist/roadtrip/svg/rent.svg +1 -0
  1862. package/dist/roadtrip/svg/roof-rack-cross-bars.svg +1 -0
  1863. package/dist/roadtrip/svg/rubber-outline-color.svg +1 -0
  1864. package/dist/roadtrip/svg/rubber-outline.svg +1 -0
  1865. package/dist/roadtrip/svg/rubber.svg +1 -0
  1866. package/dist/roadtrip/svg/save-disk-color.svg +1 -0
  1867. package/dist/roadtrip/svg/save-disk.svg +1 -0
  1868. package/dist/roadtrip/svg/scan-bar-code-color.svg +1 -0
  1869. package/dist/roadtrip/svg/scan-bar-code.svg +1 -0
  1870. package/dist/roadtrip/svg/scan-color.svg +1 -0
  1871. package/dist/roadtrip/svg/scan-qr-code-color.svg +1 -0
  1872. package/dist/roadtrip/svg/scan-qr-code.svg +1 -0
  1873. package/dist/roadtrip/svg/scan-vehicle-card.svg +1 -0
  1874. package/dist/roadtrip/svg/scan.svg +1 -0
  1875. package/dist/roadtrip/svg/scissor-color.svg +1 -0
  1876. package/dist/roadtrip/svg/scissor-outline.svg +1 -0
  1877. package/dist/roadtrip/svg/scissor.svg +1 -0
  1878. package/dist/roadtrip/svg/search.svg +1 -0
  1879. package/dist/roadtrip/svg/security-belt.svg +1 -0
  1880. package/dist/roadtrip/svg/security-color.svg +1 -0
  1881. package/dist/roadtrip/svg/security.svg +1 -0
  1882. package/dist/roadtrip/svg/sensor.svg +1 -0
  1883. package/dist/roadtrip/svg/setting.svg +1 -0
  1884. package/dist/roadtrip/svg/shipping-checked-color.svg +1 -0
  1885. package/dist/roadtrip/svg/shipping-checked.svg +1 -0
  1886. package/dist/roadtrip/svg/shipping-click-and-collect-color.svg +1 -0
  1887. package/dist/roadtrip/svg/shipping-click-and-collect.svg +1 -0
  1888. package/dist/roadtrip/svg/shipping-color.svg +1 -0
  1889. package/dist/roadtrip/svg/shipping-express-color.svg +1 -0
  1890. package/dist/roadtrip/svg/shipping-express.svg +1 -0
  1891. package/dist/roadtrip/svg/shipping-locator-color.svg +1 -0
  1892. package/dist/roadtrip/svg/shipping-locator.svg +1 -0
  1893. package/dist/roadtrip/svg/shipping-locker-color.svg +1 -0
  1894. package/dist/roadtrip/svg/shipping-locker.svg +1 -0
  1895. package/dist/roadtrip/svg/shipping-return-color.svg +1 -0
  1896. package/dist/roadtrip/svg/shipping-return.svg +1 -0
  1897. package/dist/roadtrip/svg/shipping.svg +1 -0
  1898. package/dist/roadtrip/svg/shock-absorber-color.svg +1 -0
  1899. package/dist/roadtrip/svg/shock-absorber.svg +1 -0
  1900. package/dist/roadtrip/svg/shop-color.svg +1 -0
  1901. package/dist/roadtrip/svg/shop.svg +1 -0
  1902. package/dist/roadtrip/svg/shopping-cart-add-color.svg +1 -0
  1903. package/dist/roadtrip/svg/shopping-cart-add.svg +1 -0
  1904. package/dist/roadtrip/svg/shopping-cart-sad-color.svg +1 -0
  1905. package/dist/roadtrip/svg/shopping-cart-sad.svg +1 -0
  1906. package/dist/roadtrip/svg/shopping-cart.svg +1 -0
  1907. package/dist/roadtrip/svg/sign.svg +1 -0
  1908. package/dist/roadtrip/svg/sissor.svg +1 -0
  1909. package/dist/roadtrip/svg/snowflake-color.svg +1 -0
  1910. package/dist/roadtrip/svg/snowflake-outline-color.svg +1 -0
  1911. package/dist/roadtrip/svg/snowflake-outline.svg +1 -0
  1912. package/dist/roadtrip/svg/snowflake.svg +1 -0
  1913. package/dist/roadtrip/svg/social-facebook-outline.svg +1 -0
  1914. package/dist/roadtrip/svg/social-facebook.svg +1 -0
  1915. package/dist/roadtrip/svg/social-google-outline.svg +1 -0
  1916. package/dist/roadtrip/svg/social-google.svg +1 -0
  1917. package/dist/roadtrip/svg/social-instagram-outline.svg +1 -0
  1918. package/dist/roadtrip/svg/social-instagram.svg +1 -0
  1919. package/dist/roadtrip/svg/social-twitter-outline.svg +1 -0
  1920. package/dist/roadtrip/svg/social-twitter.svg +1 -0
  1921. package/dist/roadtrip/svg/social-youtube-outline.svg +1 -0
  1922. package/dist/roadtrip/svg/social-youtube.svg +1 -0
  1923. package/dist/roadtrip/svg/sound-0-outline-color.svg +1 -0
  1924. package/dist/roadtrip/svg/sound-0-outline.svg +1 -0
  1925. package/dist/roadtrip/svg/sound-0.svg +1 -0
  1926. package/dist/roadtrip/svg/sound-1-outline-color.svg +1 -0
  1927. package/dist/roadtrip/svg/sound-1-outline.svg +1 -0
  1928. package/dist/roadtrip/svg/sound-1.svg +1 -0
  1929. package/dist/roadtrip/svg/sound-2-outline-color.svg +1 -0
  1930. package/dist/roadtrip/svg/sound-2-outline.svg +1 -0
  1931. package/dist/roadtrip/svg/sound-2.svg +1 -0
  1932. package/dist/roadtrip/svg/sound-3-outline-color.svg +1 -0
  1933. package/dist/roadtrip/svg/sound-3-outline.svg +1 -0
  1934. package/dist/roadtrip/svg/sound-3.svg +1 -0
  1935. package/dist/roadtrip/svg/sound-alarm.svg +1 -0
  1936. package/dist/roadtrip/svg/spark-color.svg +1 -0
  1937. package/dist/roadtrip/svg/spark-outline.svg +1 -0
  1938. package/dist/roadtrip/svg/spark.svg +1 -0
  1939. package/dist/roadtrip/svg/speak-advice-outline-color.svg +1 -0
  1940. package/dist/roadtrip/svg/speak-advice-outline.svg +1 -0
  1941. package/dist/roadtrip/svg/speak-advice.svg +1 -0
  1942. package/dist/roadtrip/svg/speak-outline-color.svg +1 -0
  1943. package/dist/roadtrip/svg/speak-outline.svg +1 -0
  1944. package/dist/roadtrip/svg/speak.svg +1 -0
  1945. package/dist/roadtrip/svg/speaker-color.svg +1 -0
  1946. package/dist/roadtrip/svg/speaker.svg +1 -0
  1947. package/dist/roadtrip/svg/star-half-color.svg +1 -0
  1948. package/dist/roadtrip/svg/star-smile.svg +1 -0
  1949. package/dist/roadtrip/svg/star.svg +1 -0
  1950. package/dist/roadtrip/svg/steering-control-color.svg +1 -0
  1951. package/dist/roadtrip/svg/steering-control.svg +1 -0
  1952. package/dist/roadtrip/svg/style-color.svg +1 -0
  1953. package/dist/roadtrip/svg/style.svg +1 -0
  1954. package/dist/roadtrip/svg/suspension.svg +1 -0
  1955. package/dist/roadtrip/svg/thumb-outline.svg +1 -0
  1956. package/dist/roadtrip/svg/thumb.svg +1 -0
  1957. package/dist/roadtrip/svg/time-access-color.svg +1 -0
  1958. package/dist/roadtrip/svg/time-access.svg +1 -0
  1959. package/dist/roadtrip/svg/timer-1h-color.svg +1 -0
  1960. package/dist/roadtrip/svg/timer-1h.svg +1 -0
  1961. package/dist/roadtrip/svg/timer-2h-color.svg +1 -0
  1962. package/dist/roadtrip/svg/timer-2h.svg +1 -0
  1963. package/dist/roadtrip/svg/timer-color.svg +1 -0
  1964. package/dist/roadtrip/svg/timer.svg +1 -0
  1965. package/dist/roadtrip/svg/timing-belt-color.svg +1 -0
  1966. package/dist/roadtrip/svg/timing-belt.svg +1 -0
  1967. package/dist/roadtrip/svg/tire-all-terrain-color.svg +1 -0
  1968. package/dist/roadtrip/svg/tire-all-terrain-outline.svg +1 -0
  1969. package/dist/roadtrip/svg/tire-all-terrain.svg +1 -0
  1970. package/dist/roadtrip/svg/tire-alone.svg +1 -0
  1971. package/dist/roadtrip/svg/tire-color.svg +1 -0
  1972. package/dist/roadtrip/svg/tire-diameter-color.svg +1 -0
  1973. package/dist/roadtrip/svg/tire-diameter-outline.svg +1 -0
  1974. package/dist/roadtrip/svg/tire-diameter.svg +1 -0
  1975. package/dist/roadtrip/svg/tire-energy-color.svg +1 -0
  1976. package/dist/roadtrip/svg/tire-energy-outline.svg +1 -0
  1977. package/dist/roadtrip/svg/tire-energy.svg +1 -0
  1978. package/dist/roadtrip/svg/tire-flat-color.svg +1 -0
  1979. package/dist/roadtrip/svg/tire-flat-outline.svg +1 -0
  1980. package/dist/roadtrip/svg/tire-flat.svg +1 -0
  1981. package/dist/roadtrip/svg/tire-hotel-outline-color.svg +1 -0
  1982. package/dist/roadtrip/svg/tire-hotel-outline.svg +1 -0
  1983. package/dist/roadtrip/svg/tire-hotel.svg +1 -0
  1984. package/dist/roadtrip/svg/tire-hub-cap-color.svg +1 -0
  1985. package/dist/roadtrip/svg/tire-hub-cap-outline.svg +1 -0
  1986. package/dist/roadtrip/svg/tire-hub-cap.svg +1 -0
  1987. package/dist/roadtrip/svg/tire-ice-color.svg +1 -0
  1988. package/dist/roadtrip/svg/tire-ice-outline.svg +1 -0
  1989. package/dist/roadtrip/svg/tire-ice.svg +1 -0
  1990. package/dist/roadtrip/svg/tire-outline.svg +1 -0
  1991. package/dist/roadtrip/svg/tire-parallelism-color.svg +1 -0
  1992. package/dist/roadtrip/svg/tire-parallelism.svg +1 -0
  1993. package/dist/roadtrip/svg/tire-rain-color.svg +1 -0
  1994. package/dist/roadtrip/svg/tire-rain-outline.svg +1 -0
  1995. package/dist/roadtrip/svg/tire-rain.svg +1 -0
  1996. package/dist/roadtrip/svg/tire-rim-color.svg +1 -0
  1997. package/dist/roadtrip/svg/tire-rim-outline.svg +1 -0
  1998. package/dist/roadtrip/svg/tire-rim.svg +1 -0
  1999. package/dist/roadtrip/svg/tire-seize.svg +1 -0
  2000. package/dist/roadtrip/svg/tire-sidewall-height-color.svg +1 -0
  2001. package/dist/roadtrip/svg/tire-sidewall-height-outline.svg +1 -0
  2002. package/dist/roadtrip/svg/tire-sidewall-height.svg +1 -0
  2003. package/dist/roadtrip/svg/tire-snow-chain-color.svg +1 -0
  2004. package/dist/roadtrip/svg/tire-snow-chain-outline.svg +1 -0
  2005. package/dist/roadtrip/svg/tire-snow-chain.svg +1 -0
  2006. package/dist/roadtrip/svg/tire-snow-color.svg +1 -0
  2007. package/dist/roadtrip/svg/tire-snow-outline.svg +1 -0
  2008. package/dist/roadtrip/svg/tire-snow-studded-color.svg +1 -0
  2009. package/dist/roadtrip/svg/tire-snow-studded-outline.svg +1 -0
  2010. package/dist/roadtrip/svg/tire-snow-studded.svg +1 -0
  2011. package/dist/roadtrip/svg/tire-snow.svg +1 -0
  2012. package/dist/roadtrip/svg/tire-sound-color.svg +1 -0
  2013. package/dist/roadtrip/svg/tire-sound-outline.svg +1 -0
  2014. package/dist/roadtrip/svg/tire-sound.svg +1 -0
  2015. package/dist/roadtrip/svg/tire-steel.svg +1 -0
  2016. package/dist/roadtrip/svg/tire-sun-color.svg +1 -0
  2017. package/dist/roadtrip/svg/tire-sun-outline.svg +1 -0
  2018. package/dist/roadtrip/svg/tire-sun-snow-color.svg +1 -0
  2019. package/dist/roadtrip/svg/tire-sun-snow-outline.svg +1 -0
  2020. package/dist/roadtrip/svg/tire-sun-snow.svg +1 -0
  2021. package/dist/roadtrip/svg/tire-sun.svg +1 -0
  2022. package/dist/roadtrip/svg/tire-suspension-color.svg +1 -0
  2023. package/dist/roadtrip/svg/tire-suspension.svg +1 -0
  2024. package/dist/roadtrip/svg/tire-wheel-diameter-color.svg +1 -0
  2025. package/dist/roadtrip/svg/tire-wheel-diameter-outline.svg +1 -0
  2026. package/dist/roadtrip/svg/tire-wheel-diameter.svg +1 -0
  2027. package/dist/roadtrip/svg/tire-wheel-rim-color.svg +1 -0
  2028. package/dist/roadtrip/svg/tire-wheel-rim-outline.svg +1 -0
  2029. package/dist/roadtrip/svg/tire-wheel-rim.svg +1 -0
  2030. package/dist/roadtrip/svg/tire-wheel-steel-color.svg +1 -0
  2031. package/dist/roadtrip/svg/tire-wheel-steel-outline.svg +1 -0
  2032. package/dist/roadtrip/svg/tire-wheel-steel.svg +1 -0
  2033. package/dist/roadtrip/svg/tire-witdh-color.svg +1 -0
  2034. package/dist/roadtrip/svg/tire-witdh-outline.svg +1 -0
  2035. package/dist/roadtrip/svg/tire-witdh.svg +1 -0
  2036. package/dist/roadtrip/svg/tire.svg +1 -0
  2037. package/dist/roadtrip/svg/touch.svg +1 -0
  2038. package/dist/roadtrip/svg/translate.svg +1 -0
  2039. package/dist/roadtrip/svg/transmission-color.svg +1 -0
  2040. package/dist/roadtrip/svg/transmission.svg +1 -0
  2041. package/dist/roadtrip/svg/trash-bin-color.svg +1 -0
  2042. package/dist/roadtrip/svg/trash-bin.svg +1 -0
  2043. package/dist/roadtrip/svg/travel-bag.svg +1 -0
  2044. package/dist/roadtrip/svg/travel-suitcase.svg +1 -0
  2045. package/dist/roadtrip/svg/travel.svg +1 -0
  2046. package/dist/roadtrip/svg/trick-outline-color.svg +1 -0
  2047. package/dist/roadtrip/svg/trick-outline.svg +1 -0
  2048. package/dist/roadtrip/svg/trick.svg +1 -0
  2049. package/dist/roadtrip/svg/trust.svg +1 -0
  2050. package/dist/roadtrip/svg/vehicle-3-doors-color.svg +1 -0
  2051. package/dist/roadtrip/svg/vehicle-3-doors-hatchback-color.svg +1 -0
  2052. package/dist/roadtrip/svg/vehicle-3-doors.svg +1 -0
  2053. package/dist/roadtrip/svg/vehicle-5-doors-color.svg +1 -0
  2054. package/dist/roadtrip/svg/vehicle-5-doors-hatchback-color.svg +1 -0
  2055. package/dist/roadtrip/svg/vehicle-5-doors.svg +1 -0
  2056. package/dist/roadtrip/svg/vehicle-bike-electric.svg +1 -0
  2057. package/dist/roadtrip/svg/vehicle-bike-rack.svg +1 -0
  2058. package/dist/roadtrip/svg/vehicle-bike.svg +1 -0
  2059. package/dist/roadtrip/svg/vehicle-bus.svg +1 -0
  2060. package/dist/roadtrip/svg/vehicle-car-add-outline-color.svg +1 -0
  2061. package/dist/roadtrip/svg/vehicle-car-add-outline.svg +1 -0
  2062. package/dist/roadtrip/svg/vehicle-car-add.svg +1 -0
  2063. package/dist/roadtrip/svg/vehicle-car-all-outline-color.svg +1 -0
  2064. package/dist/roadtrip/svg/vehicle-car-all-outline.svg +1 -0
  2065. package/dist/roadtrip/svg/vehicle-car-all.svg +1 -0
  2066. package/dist/roadtrip/svg/vehicle-car-bodywork.svg +1 -0
  2067. package/dist/roadtrip/svg/vehicle-car-checked-outline-color.svg +1 -0
  2068. package/dist/roadtrip/svg/vehicle-car-checked-outline.svg +1 -0
  2069. package/dist/roadtrip/svg/vehicle-car-checked.svg +1 -0
  2070. package/dist/roadtrip/svg/vehicle-car-light-back-color.svg +1 -0
  2071. package/dist/roadtrip/svg/vehicle-car-light-front-color.svg +1 -0
  2072. package/dist/roadtrip/svg/vehicle-car-light-inside-color.svg +1 -0
  2073. package/dist/roadtrip/svg/vehicle-car-moto.svg +1 -0
  2074. package/dist/roadtrip/svg/vehicle-car-outline-back.svg +1 -0
  2075. package/dist/roadtrip/svg/vehicle-car-outline-cockpit.svg +1 -0
  2076. package/dist/roadtrip/svg/vehicle-car-outline-color.svg +1 -0
  2077. package/dist/roadtrip/svg/vehicle-car-outline-front.svg +1 -0
  2078. package/dist/roadtrip/svg/vehicle-car-outline-side.svg +1 -0
  2079. package/dist/roadtrip/svg/vehicle-car-outline-signal.svg +1 -0
  2080. package/dist/roadtrip/svg/vehicle-car-outline.svg +1 -0
  2081. package/dist/roadtrip/svg/vehicle-car-sad-outline.svg +1 -0
  2082. package/dist/roadtrip/svg/vehicle-car-sad.svg +1 -0
  2083. package/dist/roadtrip/svg/vehicle-car-search-outline.svg +1 -0
  2084. package/dist/roadtrip/svg/vehicle-car-search.svg +1 -0
  2085. package/dist/roadtrip/svg/vehicle-car-setting-outline-color.svg +1 -0
  2086. package/dist/roadtrip/svg/vehicle-car-setting-outline.svg +1 -0
  2087. package/dist/roadtrip/svg/vehicle-car-setting.svg +1 -0
  2088. package/dist/roadtrip/svg/vehicle-car-side-outline.svg +1 -0
  2089. package/dist/roadtrip/svg/vehicle-car-side-tire-behind.svg +1 -0
  2090. package/dist/roadtrip/svg/vehicle-car-side-tire-front.svg +1 -0
  2091. package/dist/roadtrip/svg/vehicle-car-side.svg +1 -0
  2092. package/dist/roadtrip/svg/vehicle-car-sound-outline.svg +1 -0
  2093. package/dist/roadtrip/svg/vehicle-car-sound.svg +1 -0
  2094. package/dist/roadtrip/svg/vehicle-car-unknow-outline.svg +1 -0
  2095. package/dist/roadtrip/svg/vehicle-car-unknow.svg +1 -0
  2096. package/dist/roadtrip/svg/vehicle-car-unknowoutline-color.svg +1 -0
  2097. package/dist/roadtrip/svg/vehicle-car-unselected-outline-color.svg +1 -0
  2098. package/dist/roadtrip/svg/vehicle-car-unselected-outline.svg +1 -0
  2099. package/dist/roadtrip/svg/vehicle-car-unselected.svg +1 -0
  2100. package/dist/roadtrip/svg/vehicle-car.svg +1 -0
  2101. package/dist/roadtrip/svg/vehicle-caravan.svg +1 -0
  2102. package/dist/roadtrip/svg/vehicle-carport-color.svg +1 -0
  2103. package/dist/roadtrip/svg/vehicle-carport.svg +1 -0
  2104. package/dist/roadtrip/svg/vehicle-collector.svg +1 -0
  2105. package/dist/roadtrip/svg/vehicle-delevery-fast-outline-color.svg +1 -0
  2106. package/dist/roadtrip/svg/vehicle-delevery-fast-outline.svg +1 -0
  2107. package/dist/roadtrip/svg/vehicle-delevery-fast.svg +1 -0
  2108. package/dist/roadtrip/svg/vehicle-delevery-meeting-outline-color.svg +1 -0
  2109. package/dist/roadtrip/svg/vehicle-delevery-meeting-outline.svg +1 -0
  2110. package/dist/roadtrip/svg/vehicle-delevery-meeting.svg +1 -0
  2111. package/dist/roadtrip/svg/vehicle-delevery-privilege.svg +1 -0
  2112. package/dist/roadtrip/svg/vehicle-delevery-van.svg +1 -0
  2113. package/dist/roadtrip/svg/vehicle-delevery.svg +1 -0
  2114. package/dist/roadtrip/svg/vehicle-drive-carport-color.svg +1 -0
  2115. package/dist/roadtrip/svg/vehicle-drive-carport.svg +1 -0
  2116. package/dist/roadtrip/svg/vehicle-drive-color.svg +1 -0
  2117. package/dist/roadtrip/svg/vehicle-drive.svg +1 -0
  2118. package/dist/roadtrip/svg/vehicle-moto-bike.svg +1 -0
  2119. package/dist/roadtrip/svg/vehicle-moto.svg +1 -0
  2120. package/dist/roadtrip/svg/vehicle-mower.svg +1 -0
  2121. package/dist/roadtrip/svg/vehicle-no-license.svg +1 -0
  2122. package/dist/roadtrip/svg/vehicle-pickup-van.svg +1 -0
  2123. package/dist/roadtrip/svg/vehicle-pickup.svg +1 -0
  2124. package/dist/roadtrip/svg/vehicle-quad.svg +1 -0
  2125. package/dist/roadtrip/svg/vehicle-rally.svg +1 -0
  2126. package/dist/roadtrip/svg/vehicle-rent-bike-electric.svg +1 -0
  2127. package/dist/roadtrip/svg/vehicle-rent-car-no-license.svg +1 -0
  2128. package/dist/roadtrip/svg/vehicle-rent-car.svg +1 -0
  2129. package/dist/roadtrip/svg/vehicle-rent-trailer.svg +1 -0
  2130. package/dist/roadtrip/svg/vehicle-repair-car.svg +1 -0
  2131. package/dist/roadtrip/svg/vehicle-repair-moto.svg +1 -0
  2132. package/dist/roadtrip/svg/vehicle-repair-pickup-van.svg +1 -0
  2133. package/dist/roadtrip/svg/vehicle-repair-van.svg +1 -0
  2134. package/dist/roadtrip/svg/vehicle-road-grip-outline.svg +1 -0
  2135. package/dist/roadtrip/svg/vehicle-road-grip.svg +1 -0
  2136. package/dist/roadtrip/svg/vehicle-roof-box-outline-color.svg +1 -0
  2137. package/dist/roadtrip/svg/vehicle-roof-box-outline.svg +1 -0
  2138. package/dist/roadtrip/svg/vehicle-roof-box.svg +1 -0
  2139. package/dist/roadtrip/svg/vehicle-scooter-kick.svg +1 -0
  2140. package/dist/roadtrip/svg/vehicle-scooter.svg +1 -0
  2141. package/dist/roadtrip/svg/vehicle-suv.svg +1 -0
  2142. package/dist/roadtrip/svg/vehicle-tire-invert.svg +1 -0
  2143. package/dist/roadtrip/svg/vehicle-tires-all-color.svg +1 -0
  2144. package/dist/roadtrip/svg/vehicle-tires-back-color.svg +1 -0
  2145. package/dist/roadtrip/svg/vehicle-tires-back-left-color.svg +1 -0
  2146. package/dist/roadtrip/svg/vehicle-tires-back-right-color.svg +1 -0
  2147. package/dist/roadtrip/svg/vehicle-tires-front-color.svg +1 -0
  2148. package/dist/roadtrip/svg/vehicle-tires-front-left-color.svg +1 -0
  2149. package/dist/roadtrip/svg/vehicle-tires-front-right-color.svg +1 -0
  2150. package/dist/roadtrip/svg/vehicle-tires.svg +1 -0
  2151. package/dist/roadtrip/svg/vehicle-tractor.svg +1 -0
  2152. package/dist/roadtrip/svg/vehicle-trailer.svg +1 -0
  2153. package/dist/roadtrip/svg/vehicle-truck.svg +1 -0
  2154. package/dist/roadtrip/svg/vehicle-van.svg +1 -0
  2155. package/dist/roadtrip/svg/vehicle-workshop-outline-color.svg +1 -0
  2156. package/dist/roadtrip/svg/vehicle-workshop-outline.svg +1 -0
  2157. package/dist/roadtrip/svg/vehicle-workshop.svg +1 -0
  2158. package/dist/roadtrip/svg/ventilator-color.svg +1 -0
  2159. package/dist/roadtrip/svg/ventilator.svg +1 -0
  2160. package/dist/roadtrip/svg/videocam-outline.svg +1 -0
  2161. package/dist/roadtrip/svg/videocam.svg +1 -0
  2162. package/dist/roadtrip/svg/view-3d-360-color.svg +1 -0
  2163. package/dist/roadtrip/svg/view-3d-360-disabled-color.svg +1 -0
  2164. package/dist/roadtrip/svg/view-3d-360-disabled.svg +1 -0
  2165. package/dist/roadtrip/svg/view-3d-360.svg +1 -0
  2166. package/dist/roadtrip/svg/virus-color.svg +1 -0
  2167. package/dist/roadtrip/svg/virus.svg +1 -0
  2168. package/dist/roadtrip/svg/visibility-off-outline-color.svg +1 -0
  2169. package/dist/roadtrip/svg/visibility-off-outline.svg +1 -0
  2170. package/dist/roadtrip/svg/visibility-off.svg +1 -0
  2171. package/dist/roadtrip/svg/visibility-outline-color.svg +1 -0
  2172. package/dist/roadtrip/svg/visibility-outline.svg +1 -0
  2173. package/dist/roadtrip/svg/visibility.svg +1 -0
  2174. package/dist/roadtrip/svg/warehouse-color.svg +1 -0
  2175. package/dist/roadtrip/svg/warehouse.svg +1 -0
  2176. package/dist/roadtrip/svg/weather-rain-color.svg +1 -0
  2177. package/dist/roadtrip/svg/weather-rain-outline-color.svg +1 -0
  2178. package/dist/roadtrip/svg/weather-rain-outline.svg +1 -0
  2179. package/dist/roadtrip/svg/weather-rain.svg +1 -0
  2180. package/dist/roadtrip/svg/weather-snow-color.svg +1 -0
  2181. package/dist/roadtrip/svg/weather-snow.svg +1 -0
  2182. package/dist/roadtrip/svg/weather-sun-color.svg +1 -0
  2183. package/dist/roadtrip/svg/weather-sun-outline-color.svg +1 -0
  2184. package/dist/roadtrip/svg/weather-sun-outline.svg +1 -0
  2185. package/dist/roadtrip/svg/weather-sun-snow-color.svg +1 -0
  2186. package/dist/roadtrip/svg/weather-sun-snow-outline-color.svg +1 -0
  2187. package/dist/roadtrip/svg/weather-sun-snow-outline.svg +1 -0
  2188. package/dist/roadtrip/svg/weather-sun-snow.svg +1 -0
  2189. package/dist/roadtrip/svg/weather-sun.svg +1 -0
  2190. package/dist/roadtrip/svg/wheel-bearings-color.svg +1 -0
  2191. package/dist/roadtrip/svg/wheel-bearings.svg +1 -0
  2192. package/dist/roadtrip/svg/wifi.svg +1 -0
  2193. package/dist/roadtrip/svg/windscreen-back-fluid-color.svg +1 -0
  2194. package/dist/roadtrip/svg/windscreen-back-fluid.svg +1 -0
  2195. package/dist/roadtrip/svg/windscreen-back-frost-color.svg +1 -0
  2196. package/dist/roadtrip/svg/windscreen-back-frost.svg +1 -0
  2197. package/dist/roadtrip/svg/windscreen-back-wiper-color.svg +1 -0
  2198. package/dist/roadtrip/svg/windscreen-back-wiper.svg +1 -0
  2199. package/dist/roadtrip/svg/windscreen-color.svg +1 -0
  2200. package/dist/roadtrip/svg/windscreen-fluid-color.svg +1 -0
  2201. package/dist/roadtrip/svg/windscreen-fluid.svg +1 -0
  2202. package/dist/roadtrip/svg/windscreen-frost-color.svg +1 -0
  2203. package/dist/roadtrip/svg/windscreen-frost.svg +1 -0
  2204. package/dist/roadtrip/svg/windscreen-wiper-color.svg +1 -0
  2205. package/dist/roadtrip/svg/windscreen-wiper.svg +1 -0
  2206. package/dist/roadtrip/svg/windscreen-wipers-color.svg +1 -0
  2207. package/dist/roadtrip/svg/windscreen-wipers-left-color.svg +1 -0
  2208. package/dist/roadtrip/svg/windscreen-wipers-left.svg +1 -0
  2209. package/dist/roadtrip/svg/windscreen-wipers-right-color.svg +1 -0
  2210. package/dist/roadtrip/svg/windscreen-wipers-right.svg +1 -0
  2211. package/dist/roadtrip/svg/windscreen-wipers.svg +1 -0
  2212. package/dist/roadtrip/svg/windscreen.svg +1 -0
  2213. package/dist/roadtrip/svg/windshield-washer-fluid.svg +1 -0
  2214. package/dist/roadtrip/svg/world-color.svg +1 -0
  2215. package/dist/roadtrip/svg/world.svg +1 -0
  2216. package/dist/roadtrip/svg/wrench-dual-outline.svg +1 -0
  2217. package/dist/roadtrip/svg/wrench-dual.svg +1 -0
  2218. package/dist/roadtrip/svg/wrench-hand-color.svg +1 -0
  2219. package/dist/roadtrip/svg/wrench-hand-dual-color.svg +1 -0
  2220. package/dist/roadtrip/svg/wrench-hand-dual.svg +1 -0
  2221. package/dist/roadtrip/svg/wrench-hand.svg +1 -0
  2222. package/dist/roadtrip/svg/wrench-outline-color.svg +1 -0
  2223. package/dist/roadtrip/svg/wrench-outline.svg +1 -0
  2224. package/dist/roadtrip/svg/wrench-tools.svg +1 -0
  2225. package/dist/roadtrip/svg/wrench-twin.svg +1 -0
  2226. package/dist/roadtrip/svg/wrench.svg +1 -0
  2227. package/dist/roadtrip/swiper/swiper-interface.d.ts +1 -0
  2228. package/dist/roadtrip/swiper/swiper.bundle.js +10002 -0
  2229. package/dist/roadtrip/swiper/swiper.js +4 -0
  2230. package/dist/types/components/accordion/accordion.d.ts +16 -0
  2231. package/dist/types/components/alert/alert.d.ts +12 -0
  2232. package/dist/types/components/autocomplete/autocomplete.d.ts +24 -0
  2233. package/dist/types/components/avatar/avatar.d.ts +6 -0
  2234. package/dist/types/components/badge/badge.d.ts +15 -0
  2235. package/dist/types/components/button/button.d.ts +72 -0
  2236. package/dist/types/components/card/card.d.ts +55 -0
  2237. package/dist/types/components/carousel/carousel.d.ts +183 -0
  2238. package/dist/types/components/carousel/swiper/swiper-interface.d.ts +1 -0
  2239. package/dist/types/components/carousel-item/carousel-item.d.ts +6 -0
  2240. package/dist/types/components/checkbox/checkbox.d.ts +63 -0
  2241. package/dist/types/components/chip/chip.d.ts +23 -0
  2242. package/dist/types/components/col/col.d.ts +6 -0
  2243. package/dist/types/components/collapse/collapse.d.ts +27 -0
  2244. package/dist/types/components/counter/counter.d.ts +30 -0
  2245. package/dist/types/components/dialog/dialog.d.ts +62 -0
  2246. package/dist/types/components/drawer/drawer.d.ts +87 -0
  2247. package/dist/types/components/flap/flap.d.ts +10 -0
  2248. package/dist/types/components/grid/grid.d.ts +6 -0
  2249. package/dist/types/components/icon/icon.d.ts +59 -0
  2250. package/dist/types/components/icon/request.d.ts +2 -0
  2251. package/dist/types/components/icon/utils.d.ts +11 -0
  2252. package/dist/types/components/icon/validate.d.ts +2 -0
  2253. package/dist/types/components/img/img.d.ts +34 -0
  2254. package/dist/types/components/input/input.d.ts +131 -0
  2255. package/dist/types/components/input-group/input-group.d.ts +8 -0
  2256. package/dist/types/components/item/item.d.ts +65 -0
  2257. package/dist/types/components/label/label.d.ts +6 -0
  2258. package/dist/types/components/list/list.d.ts +10 -0
  2259. package/dist/types/components/modal/modal.d.ts +55 -0
  2260. package/dist/types/components/navbar/navbar.d.ts +17 -0
  2261. package/dist/types/components/navbar-item/navbar-item.d.ts +55 -0
  2262. package/dist/types/components/plate-number/plate-number.d.ts +43 -0
  2263. package/dist/types/components/progress/progress.d.ts +13 -0
  2264. package/dist/types/components/radio/radio.d.ts +61 -0
  2265. package/dist/types/components/radio-group/radio-group.d.ts +50 -0
  2266. package/dist/types/components/range/range.d.ts +42 -0
  2267. package/dist/types/components/rating/rating.d.ts +15 -0
  2268. package/dist/types/components/row/row.d.ts +6 -0
  2269. package/dist/types/components/select/select.d.ts +67 -0
  2270. package/dist/types/components/skeleton/skeleton.d.ts +3 -0
  2271. package/dist/types/components/spinner/spinner.d.ts +3 -0
  2272. package/dist/types/components/switch/switch.d.ts +69 -0
  2273. package/dist/types/components/tab/tab.d.ts +17 -0
  2274. package/dist/types/components/tab-bar/tab-bar.d.ts +25 -0
  2275. package/dist/types/components/tab-button/tab-button.d.ts +58 -0
  2276. package/dist/types/components/table/table.d.ts +6 -0
  2277. package/dist/types/components/tabs/tabs.d.ts +47 -0
  2278. package/dist/types/components/text/text.d.ts +10 -0
  2279. package/dist/types/components/textarea/textarea.d.ts +109 -0
  2280. package/dist/types/components/toast/toast.d.ts +47 -0
  2281. package/dist/types/components/toolbar/toolbar.d.ts +15 -0
  2282. package/dist/types/components/toolbar-title/toolbar-title.d.ts +6 -0
  2283. package/dist/types/components/tooltip/tooltip.d.ts +43 -0
  2284. package/dist/types/components.d.ts +2828 -0
  2285. package/dist/types/global/app.d.ts +1 -0
  2286. package/dist/types/index.d.ts +2 -0
  2287. package/dist/types/interface.d.ts +14 -0
  2288. package/dist/types/stencil-public-runtime.d.ts +1563 -0
  2289. package/dist/types/utils/polyfill.d.ts +0 -0
  2290. package/icons/icons.svg +1 -0
  2291. package/icons/index.d.ts +887 -0
  2292. package/icons/index.js +887 -0
  2293. package/package.json +83 -0
  2294. package/readme.md +53 -0
@@ -0,0 +1,2294 @@
1
+ {
2
+ "version": 1.1,
3
+ "tags": [
4
+ {
5
+ "name": "road-accordion",
6
+ "description": {
7
+ "kind": "markdown",
8
+ "value": ""
9
+ },
10
+ "attributes": [
11
+ {
12
+ "name": "is-open",
13
+ "description": "Set open to true to show the accordion element and to false to hide it."
14
+ }
15
+ ],
16
+ "references": [
17
+ {
18
+ "name": "Source code",
19
+ "url": "./https:/gitlab.com/mobivia-design/roadtrip/components/-/blob/master/src/components/accordion/accordion.tsx"
20
+ }
21
+ ]
22
+ },
23
+ {
24
+ "name": "road-alert",
25
+ "description": {
26
+ "kind": "markdown",
27
+ "value": ""
28
+ },
29
+ "attributes": [
30
+ {
31
+ "name": "color",
32
+ "description": "Set the color of alert. e.g. info, success, warning, danger",
33
+ "values": [
34
+ {
35
+ "name": "danger"
36
+ },
37
+ {
38
+ "name": "info"
39
+ },
40
+ {
41
+ "name": "success"
42
+ },
43
+ {
44
+ "name": "warning"
45
+ }
46
+ ]
47
+ }
48
+ ],
49
+ "references": [
50
+ {
51
+ "name": "Source code",
52
+ "url": "./https:/gitlab.com/mobivia-design/roadtrip/components/-/blob/master/src/components/alert/alert.tsx"
53
+ }
54
+ ]
55
+ },
56
+ {
57
+ "name": "road-autocomplete",
58
+ "description": {
59
+ "kind": "markdown",
60
+ "value": ""
61
+ },
62
+ "attributes": [
63
+ {
64
+ "name": "only-select",
65
+ "description": "If `true`, the user can't submit custom value"
66
+ }
67
+ ],
68
+ "references": [
69
+ {
70
+ "name": "Source code",
71
+ "url": "./https:/gitlab.com/mobivia-design/roadtrip/components/-/blob/master/src/components/autocomplete/autocomplete.tsx"
72
+ }
73
+ ]
74
+ },
75
+ {
76
+ "name": "road-avatar",
77
+ "description": {
78
+ "kind": "markdown",
79
+ "value": "Avatars are circular components that usually wrap an image or icon. They can be used to represent a person or an object.\n\nAvatars can be used by themselves or inside of any element."
80
+ },
81
+ "attributes": [],
82
+ "references": [
83
+ {
84
+ "name": "Source code",
85
+ "url": "./https:/gitlab.com/mobivia-design/roadtrip/components/-/blob/master/src/components/avatar/avatar.tsx"
86
+ }
87
+ ]
88
+ },
89
+ {
90
+ "name": "road-badge",
91
+ "description": {
92
+ "kind": "markdown",
93
+ "value": ""
94
+ },
95
+ "attributes": [
96
+ {
97
+ "name": "bubble",
98
+ "description": "if `true` the badge will be displayed has a little bubble"
99
+ },
100
+ {
101
+ "name": "color",
102
+ "description": "Color of the badge",
103
+ "values": [
104
+ {
105
+ "name": "accent"
106
+ },
107
+ {
108
+ "name": "danger"
109
+ },
110
+ {
111
+ "name": "default"
112
+ },
113
+ {
114
+ "name": "info"
115
+ },
116
+ {
117
+ "name": "primary"
118
+ },
119
+ {
120
+ "name": "secondary"
121
+ },
122
+ {
123
+ "name": "success"
124
+ },
125
+ {
126
+ "name": "warning"
127
+ }
128
+ ]
129
+ }
130
+ ],
131
+ "references": [
132
+ {
133
+ "name": "Source code",
134
+ "url": "./https:/gitlab.com/mobivia-design/roadtrip/components/-/blob/master/src/components/badge/badge.tsx"
135
+ }
136
+ ]
137
+ },
138
+ {
139
+ "name": "road-button",
140
+ "description": {
141
+ "kind": "markdown",
142
+ "value": ""
143
+ },
144
+ "attributes": [
145
+ {
146
+ "name": "button-type",
147
+ "description": "The type of the button.",
148
+ "values": [
149
+ {
150
+ "name": "button"
151
+ },
152
+ {
153
+ "name": "reset"
154
+ },
155
+ {
156
+ "name": "submit"
157
+ }
158
+ ]
159
+ },
160
+ {
161
+ "name": "color",
162
+ "description": "The color to use from your application's color palette.",
163
+ "values": [
164
+ {
165
+ "name": "accent"
166
+ },
167
+ {
168
+ "name": "danger"
169
+ },
170
+ {
171
+ "name": "default"
172
+ },
173
+ {
174
+ "name": "info"
175
+ },
176
+ {
177
+ "name": "primary"
178
+ },
179
+ {
180
+ "name": "secondary"
181
+ },
182
+ {
183
+ "name": "success"
184
+ },
185
+ {
186
+ "name": "warning"
187
+ }
188
+ ]
189
+ },
190
+ {
191
+ "name": "disabled",
192
+ "description": "If `true`, the user cannot interact with the button."
193
+ },
194
+ {
195
+ "name": "download",
196
+ "description": "This attribute instructs browsers to download a URL instead of navigating to\nit, so the user will be prompted to save it as a local file. If the attribute\nhas a value, it is used as the pre-filled file name in the Save prompt\n(the user can still change the file name if they want)."
197
+ },
198
+ {
199
+ "name": "expand",
200
+ "description": "Set to `true` for a full-width button."
201
+ },
202
+ {
203
+ "name": "href",
204
+ "description": "Contains a URL or a URL fragment that the hyperlink points to.\nIf this property is set, an anchor tag will be rendered."
205
+ },
206
+ {
207
+ "name": "outline",
208
+ "description": "Set to `true` for a transparent button with a border"
209
+ },
210
+ {
211
+ "name": "rel",
212
+ "description": "Specifies the relationship of the target object to the link object.\nThe value is a space-separated list of [link types](https://developer.mozilla.org/en-US/docs/Web/HTML/Link_types)."
213
+ },
214
+ {
215
+ "name": "size",
216
+ "description": "The button size.",
217
+ "values": [
218
+ {
219
+ "name": "md"
220
+ },
221
+ {
222
+ "name": "sm"
223
+ }
224
+ ]
225
+ },
226
+ {
227
+ "name": "target",
228
+ "description": "Specifies where to display the linked URL.\nOnly applies when an `href` is provided.\nSpecial keywords: `\"_blank\"`, `\"_self\"`, `\"_parent\"`, `\"_top\"`."
229
+ }
230
+ ],
231
+ "references": [
232
+ {
233
+ "name": "Source code",
234
+ "url": "./https:/gitlab.com/mobivia-design/roadtrip/components/-/blob/master/src/components/button/button.tsx"
235
+ }
236
+ ]
237
+ },
238
+ {
239
+ "name": "road-card",
240
+ "description": {
241
+ "kind": "markdown",
242
+ "value": ""
243
+ },
244
+ "attributes": [
245
+ {
246
+ "name": "button",
247
+ "description": "If `true`, a button tag will be rendered and the card will be tappable."
248
+ },
249
+ {
250
+ "name": "download",
251
+ "description": "This attribute instructs browsers to download a URL instead of navigating to\nit, so the user will be prompted to save it as a local file. If the attribute\nhas a value, it is used as the pre-filled file name in the Save prompt\n(the user can still change the file name if they want)."
252
+ },
253
+ {
254
+ "name": "href",
255
+ "description": "Contains a URL or a URL fragment that the hyperlink points to.\nIf this property is set, an anchor tag will be rendered."
256
+ },
257
+ {
258
+ "name": "rel",
259
+ "description": "Specifies the relationship of the target object to the link object.\nThe value is a space-separated list of [link types](https://developer.mozilla.org/en-US/docs/Web/HTML/Link_types)."
260
+ },
261
+ {
262
+ "name": "target",
263
+ "description": "Specifies where to display the linked URL.\nOnly applies when an `href` is provided.\nSpecial keywords: `\"_blank\"`, `\"_self\"`, `\"_parent\"`, `\"_top\"`."
264
+ },
265
+ {
266
+ "name": "type",
267
+ "description": "The type of the button. Only used when an `onclick` or `button` property is present.",
268
+ "values": [
269
+ {
270
+ "name": "button"
271
+ },
272
+ {
273
+ "name": "reset"
274
+ },
275
+ {
276
+ "name": "submit"
277
+ }
278
+ ]
279
+ },
280
+ {
281
+ "name": "value",
282
+ "description": "value of the card"
283
+ }
284
+ ],
285
+ "references": [
286
+ {
287
+ "name": "Source code",
288
+ "url": "./https:/gitlab.com/mobivia-design/roadtrip/components/-/blob/master/src/components/card/card.tsx"
289
+ }
290
+ ]
291
+ },
292
+ {
293
+ "name": "road-carousel",
294
+ "description": {
295
+ "kind": "markdown",
296
+ "value": ""
297
+ },
298
+ "attributes": [
299
+ {
300
+ "name": "arrows",
301
+ "description": "If `true`, show arrows."
302
+ },
303
+ {
304
+ "name": "options",
305
+ "description": "Options to pass to the swiper instance.\nSee http://idangero.us/swiper/api/ for valid options"
306
+ },
307
+ {
308
+ "name": "pager",
309
+ "description": "If `true`, show the pagination."
310
+ }
311
+ ],
312
+ "references": [
313
+ {
314
+ "name": "Source code",
315
+ "url": "./https:/gitlab.com/mobivia-design/roadtrip/components/-/blob/master/src/components/carousel/carousel.tsx"
316
+ }
317
+ ]
318
+ },
319
+ {
320
+ "name": "road-carousel-item",
321
+ "description": {
322
+ "kind": "markdown",
323
+ "value": "The Carousel Item component is a child component of [Carousel](../carousel). The template\nshould be written as `road-carousel-item`. Any slide content should be written\nin this component and it should be used in conjunction with [Carousel](../carousel).\n\nSee the [Carousel API Docs](../carousel) for more usage information."
324
+ },
325
+ "attributes": [],
326
+ "references": [
327
+ {
328
+ "name": "Source code",
329
+ "url": "./https:/gitlab.com/mobivia-design/roadtrip/components/-/blob/master/src/components/carousel-item/carousel-item.tsx"
330
+ }
331
+ ]
332
+ },
333
+ {
334
+ "name": "road-checkbox",
335
+ "description": {
336
+ "kind": "markdown",
337
+ "value": ""
338
+ },
339
+ "attributes": [
340
+ {
341
+ "name": "checkbox-id",
342
+ "description": "The id of checkbox"
343
+ },
344
+ {
345
+ "name": "checked",
346
+ "description": "If `true`, the checkbox is selected."
347
+ },
348
+ {
349
+ "name": "disabled",
350
+ "description": "If `true`, the user cannot interact with the checkbox."
351
+ },
352
+ {
353
+ "name": "error",
354
+ "description": "Error message for the field"
355
+ },
356
+ {
357
+ "name": "inverse",
358
+ "description": "If `true`, the label and the checkbox are inverse and spaced"
359
+ },
360
+ {
361
+ "name": "label",
362
+ "description": "Label for the field"
363
+ },
364
+ {
365
+ "name": "name",
366
+ "description": "The name of the control, which is submitted with the form data."
367
+ },
368
+ {
369
+ "name": "required",
370
+ "description": "If `true`, the user must fill in a value before submitting a form."
371
+ },
372
+ {
373
+ "name": "value",
374
+ "description": "Value the form will get"
375
+ }
376
+ ],
377
+ "references": [
378
+ {
379
+ "name": "Source code",
380
+ "url": "./https:/gitlab.com/mobivia-design/roadtrip/components/-/blob/master/src/components/checkbox/checkbox.tsx"
381
+ }
382
+ ]
383
+ },
384
+ {
385
+ "name": "road-chip",
386
+ "description": {
387
+ "kind": "markdown",
388
+ "value": ""
389
+ },
390
+ "attributes": [
391
+ {
392
+ "name": "color",
393
+ "description": "The color to use from your application's color palette.",
394
+ "values": [
395
+ {
396
+ "name": "default"
397
+ },
398
+ {
399
+ "name": "secondary"
400
+ }
401
+ ]
402
+ },
403
+ {
404
+ "name": "has-close-icon",
405
+ "description": "Display close icon"
406
+ },
407
+ {
408
+ "name": "outline",
409
+ "description": "Display an outline style button."
410
+ },
411
+ {
412
+ "name": "size",
413
+ "description": "Display an outline style button.",
414
+ "values": [
415
+ {
416
+ "name": "lg"
417
+ },
418
+ {
419
+ "name": "md"
420
+ }
421
+ ]
422
+ }
423
+ ],
424
+ "references": [
425
+ {
426
+ "name": "Source code",
427
+ "url": "./https:/gitlab.com/mobivia-design/roadtrip/components/-/blob/master/src/components/chip/chip.tsx"
428
+ }
429
+ ]
430
+ },
431
+ {
432
+ "name": "road-col",
433
+ "description": {
434
+ "kind": "markdown",
435
+ "value": "Columns are cellular components of the [grid](../grid) system and go inside of a [row](../row).\nThey will expand to fill their row. All content within a grid should go inside of a column.\n\nSee [Grid Layout](../grid) for more information."
436
+ },
437
+ "attributes": [],
438
+ "references": [
439
+ {
440
+ "name": "Source code",
441
+ "url": "./https:/gitlab.com/mobivia-design/roadtrip/components/-/blob/master/src/components/col/col.tsx"
442
+ }
443
+ ]
444
+ },
445
+ {
446
+ "name": "road-collapse",
447
+ "description": {
448
+ "kind": "markdown",
449
+ "value": ""
450
+ },
451
+ "attributes": [
452
+ {
453
+ "name": "centered",
454
+ "description": "if \"`true`\" the button will be centered"
455
+ },
456
+ {
457
+ "name": "is-open",
458
+ "description": "Set open to true to show the accordion element and to false to hide it."
459
+ },
460
+ {
461
+ "name": "show-less",
462
+ "description": "Text displayed in the button when the content is collapsed"
463
+ },
464
+ {
465
+ "name": "show-more",
466
+ "description": "Text displayed in the button when the content is collapsed"
467
+ }
468
+ ],
469
+ "references": [
470
+ {
471
+ "name": "Source code",
472
+ "url": "./https:/gitlab.com/mobivia-design/roadtrip/components/-/blob/master/src/components/collapse/collapse.tsx"
473
+ }
474
+ ]
475
+ },
476
+ {
477
+ "name": "road-counter",
478
+ "description": {
479
+ "kind": "markdown",
480
+ "value": ""
481
+ },
482
+ "attributes": [
483
+ {
484
+ "name": "input-id",
485
+ "description": "The id of input"
486
+ },
487
+ {
488
+ "name": "max",
489
+ "description": "The maximum value, which must not be less than its minimum (min attribute) value."
490
+ },
491
+ {
492
+ "name": "min",
493
+ "description": "The minimum value, which must not be greater than its maximum (max attribute) value."
494
+ },
495
+ {
496
+ "name": "step",
497
+ "description": "Works with the min and max attributes to limit the increments at which a value can be set.\nPossible values are: `\"any\"` or a positive floating point number."
498
+ },
499
+ {
500
+ "name": "value",
501
+ "description": "The value of the input."
502
+ }
503
+ ],
504
+ "references": [
505
+ {
506
+ "name": "Source code",
507
+ "url": "./https:/gitlab.com/mobivia-design/roadtrip/components/-/blob/master/src/components/counter/counter.tsx"
508
+ }
509
+ ]
510
+ },
511
+ {
512
+ "name": "road-dialog",
513
+ "description": {
514
+ "kind": "markdown",
515
+ "value": ""
516
+ },
517
+ "attributes": [
518
+ {
519
+ "name": "color",
520
+ "description": "Set the color of information dialog. e.g. info, success, warning, danger",
521
+ "values": [
522
+ {
523
+ "name": "danger"
524
+ },
525
+ {
526
+ "name": "info"
527
+ },
528
+ {
529
+ "name": "success"
530
+ },
531
+ {
532
+ "name": "warning"
533
+ }
534
+ ]
535
+ },
536
+ {
537
+ "name": "description",
538
+ "description": "Content description of the dialog"
539
+ },
540
+ {
541
+ "name": "has-close-icon",
542
+ "description": "Show / hide the close icon"
543
+ },
544
+ {
545
+ "name": "icon",
546
+ "description": "override default icon"
547
+ },
548
+ {
549
+ "name": "is-open",
550
+ "description": "Set isOpen property to true to open the dialog"
551
+ },
552
+ {
553
+ "name": "label",
554
+ "description": "Text to the top"
555
+ }
556
+ ],
557
+ "references": [
558
+ {
559
+ "name": "Source code",
560
+ "url": "./https:/gitlab.com/mobivia-design/roadtrip/components/-/blob/master/src/components/dialog/dialog.tsx"
561
+ }
562
+ ]
563
+ },
564
+ {
565
+ "name": "road-drawer",
566
+ "description": {
567
+ "kind": "markdown",
568
+ "value": ""
569
+ },
570
+ "attributes": [
571
+ {
572
+ "name": "back-text",
573
+ "description": "Show / hide back icon"
574
+ },
575
+ {
576
+ "name": "drawer-title",
577
+ "description": "Title of the drawer in the header bar"
578
+ },
579
+ {
580
+ "name": "drawer-width",
581
+ "description": "Width of the drawer"
582
+ },
583
+ {
584
+ "name": "has-back-icon",
585
+ "description": "Show / hide back icon"
586
+ },
587
+ {
588
+ "name": "has-close-icon",
589
+ "description": "Show / hide close icon"
590
+ },
591
+ {
592
+ "name": "has-inverse-header",
593
+ "description": "Inverse header colors"
594
+ },
595
+ {
596
+ "name": "is-open",
597
+ "description": "Set isOpen property to true to open the drawer"
598
+ },
599
+ {
600
+ "name": "mode",
601
+ "description": "The mode determines which theme styles to use (light / dark).",
602
+ "values": [
603
+ {
604
+ "name": "light"
605
+ },
606
+ {
607
+ "name": "dark"
608
+ }
609
+ ]
610
+ },
611
+ {
612
+ "name": "position",
613
+ "description": "position of the drawer. e.g. left, right, bottom"
614
+ }
615
+ ],
616
+ "references": [
617
+ {
618
+ "name": "Source code",
619
+ "url": "./https:/gitlab.com/mobivia-design/roadtrip/components/-/blob/master/src/components/drawer/drawer.tsx"
620
+ }
621
+ ]
622
+ },
623
+ {
624
+ "name": "road-flap",
625
+ "description": {
626
+ "kind": "markdown",
627
+ "value": ""
628
+ },
629
+ "attributes": [
630
+ {
631
+ "name": "color",
632
+ "description": "Set the color of the flap.",
633
+ "values": [
634
+ {
635
+ "name": "exclu"
636
+ },
637
+ {
638
+ "name": "info"
639
+ },
640
+ {
641
+ "name": "promo"
642
+ }
643
+ ]
644
+ }
645
+ ],
646
+ "references": [
647
+ {
648
+ "name": "Source code",
649
+ "url": "./https:/gitlab.com/mobivia-design/roadtrip/components/-/blob/master/src/components/flap/flap.tsx"
650
+ }
651
+ ]
652
+ },
653
+ {
654
+ "name": "road-grid",
655
+ "description": {
656
+ "kind": "markdown",
657
+ "value": "The grid is a powerful mobile-first flexbox system for building custom layouts.\n\nIt is composed of three units — a grid, [row(s)](../row) and [column(s)](../col). Columns will expand to fill the row, and will resize to fit additional columns. It is based on a 12 column layout with different breakpoints based on the screen size. The number of columns can be customized using CSS."
658
+ },
659
+ "attributes": [],
660
+ "references": [
661
+ {
662
+ "name": "Source code",
663
+ "url": "./https:/gitlab.com/mobivia-design/roadtrip/components/-/blob/master/src/components/grid/grid.tsx"
664
+ }
665
+ ]
666
+ },
667
+ {
668
+ "name": "road-icon",
669
+ "description": {
670
+ "kind": "markdown",
671
+ "value": ""
672
+ },
673
+ "attributes": [
674
+ {
675
+ "name": "aria-hidden",
676
+ "description": "Set the icon to hidden, respectively `true`, to remove it from the accessibility tree."
677
+ },
678
+ {
679
+ "name": "aria-label",
680
+ "description": "Specifies the label to use for accessibility. Defaults to the icon name."
681
+ },
682
+ {
683
+ "name": "color",
684
+ "description": "Color of the icon",
685
+ "values": [
686
+ {
687
+ "name": "accent"
688
+ },
689
+ {
690
+ "name": "danger"
691
+ },
692
+ {
693
+ "name": "default"
694
+ },
695
+ {
696
+ "name": "info"
697
+ },
698
+ {
699
+ "name": "primary"
700
+ },
701
+ {
702
+ "name": "secondary"
703
+ },
704
+ {
705
+ "name": "success"
706
+ },
707
+ {
708
+ "name": "warning"
709
+ },
710
+ {
711
+ "name": "white"
712
+ }
713
+ ]
714
+ },
715
+ {
716
+ "name": "icon",
717
+ "description": "A combination of both `name` and `src`. If a `src` url is detected\nit will set the `src` property. Otherwise it assumes it's a built-in named\nSVG and set the `name` property."
718
+ },
719
+ {
720
+ "name": "lazy",
721
+ "description": "If enabled, road-icon will be loaded lazily when it's visible in the viewport.\nDefault, `false`."
722
+ },
723
+ {
724
+ "name": "name",
725
+ "description": "Specifies which icon to use from the built-in set of icons."
726
+ },
727
+ {
728
+ "name": "rotate",
729
+ "description": "The rotation of the icon.\nAvailable options are: `\"90\"`, `\"180\"`, `\"270\"`.",
730
+ "values": [
731
+ {
732
+ "name": "180"
733
+ },
734
+ {
735
+ "name": "270"
736
+ },
737
+ {
738
+ "name": "90"
739
+ }
740
+ ]
741
+ },
742
+ {
743
+ "name": "sanitize",
744
+ "description": "When set to `false`, SVG content that is HTTP fetched will not be checked\nif the response SVG content has any `<script>` elements, or any attributes\nthat start with `on`, such as `onclick`."
745
+ },
746
+ {
747
+ "name": "size",
748
+ "description": "The size of the icon.\nAvailable options are: `\"sm\"`, `\"md\"`, `\"lg\"`, `\"3x\"` and `\"4x\"`.",
749
+ "values": [
750
+ {
751
+ "name": "3x"
752
+ },
753
+ {
754
+ "name": "4x"
755
+ },
756
+ {
757
+ "name": "lg"
758
+ },
759
+ {
760
+ "name": "md"
761
+ },
762
+ {
763
+ "name": "sm"
764
+ }
765
+ ]
766
+ },
767
+ {
768
+ "name": "src",
769
+ "description": "Specifies the exact `src` of an SVG file to use."
770
+ }
771
+ ],
772
+ "references": [
773
+ {
774
+ "name": "Source code",
775
+ "url": "./https:/gitlab.com/mobivia-design/roadtrip/components/-/blob/master/src/components/icon/icon.tsx"
776
+ }
777
+ ]
778
+ },
779
+ {
780
+ "name": "road-img",
781
+ "description": {
782
+ "kind": "markdown",
783
+ "value": "Img is a tag that will lazily load an image when ever the tag is in the viewport. This is extremely useful when generating a large list as images are only loaded when they're visible. The component uses [Intersection Observer](https://caniuse.com/#feat=intersectionobserver) internally, which is supported in most modern browser, but falls back to a `setTimeout` when it is not supported."
784
+ },
785
+ "attributes": [
786
+ {
787
+ "name": "alt",
788
+ "description": "This attribute defines the alternative text describing the image.\nUsers will see this text displayed if the image URL is wrong,\nthe image is not in one of the supported formats, or if the image is not yet downloaded."
789
+ },
790
+ {
791
+ "name": "src",
792
+ "description": "The image URL. This attribute is mandatory for the `<img>` element."
793
+ }
794
+ ],
795
+ "references": [
796
+ {
797
+ "name": "Source code",
798
+ "url": "./https:/gitlab.com/mobivia-design/roadtrip/components/-/blob/master/src/components/img/img.tsx"
799
+ }
800
+ ]
801
+ },
802
+ {
803
+ "name": "road-input",
804
+ "description": {
805
+ "kind": "markdown",
806
+ "value": ""
807
+ },
808
+ "attributes": [
809
+ {
810
+ "name": "autocapitalize",
811
+ "description": "Indicates whether and how the text value should be automatically capitalized as it is entered/edited by the user."
812
+ },
813
+ {
814
+ "name": "autocomplete",
815
+ "description": "Indicates whether the value of the control can be automatically completed by the browser.",
816
+ "values": [
817
+ {
818
+ "name": "off"
819
+ },
820
+ {
821
+ "name": "on"
822
+ },
823
+ {
824
+ "name": "name"
825
+ },
826
+ {
827
+ "name": "honorific-prefix"
828
+ },
829
+ {
830
+ "name": "given-name"
831
+ },
832
+ {
833
+ "name": "additional-name"
834
+ },
835
+ {
836
+ "name": "family-name"
837
+ },
838
+ {
839
+ "name": "honorific-suffix"
840
+ },
841
+ {
842
+ "name": "nickname"
843
+ },
844
+ {
845
+ "name": "email"
846
+ },
847
+ {
848
+ "name": "username"
849
+ },
850
+ {
851
+ "name": "new-password"
852
+ },
853
+ {
854
+ "name": "current-password"
855
+ },
856
+ {
857
+ "name": "one-time-code"
858
+ },
859
+ {
860
+ "name": "organization-title"
861
+ },
862
+ {
863
+ "name": "organization"
864
+ },
865
+ {
866
+ "name": "street-address"
867
+ },
868
+ {
869
+ "name": "address-line1"
870
+ },
871
+ {
872
+ "name": "address-line2"
873
+ },
874
+ {
875
+ "name": "address-line3"
876
+ },
877
+ {
878
+ "name": "address-level4"
879
+ },
880
+ {
881
+ "name": "address-level3"
882
+ },
883
+ {
884
+ "name": "address-level2"
885
+ },
886
+ {
887
+ "name": "address-level1"
888
+ },
889
+ {
890
+ "name": "country"
891
+ },
892
+ {
893
+ "name": "country-name"
894
+ },
895
+ {
896
+ "name": "postal-code"
897
+ },
898
+ {
899
+ "name": "cc-name"
900
+ },
901
+ {
902
+ "name": "cc-given-name"
903
+ },
904
+ {
905
+ "name": "cc-additional-name"
906
+ },
907
+ {
908
+ "name": "cc-family-name"
909
+ },
910
+ {
911
+ "name": "cc-number"
912
+ },
913
+ {
914
+ "name": "cc-exp"
915
+ },
916
+ {
917
+ "name": "cc-exp-month"
918
+ },
919
+ {
920
+ "name": "cc-exp-year"
921
+ },
922
+ {
923
+ "name": "cc-csc"
924
+ },
925
+ {
926
+ "name": "cc-type"
927
+ },
928
+ {
929
+ "name": "transaction-currency"
930
+ },
931
+ {
932
+ "name": "transaction-amount"
933
+ },
934
+ {
935
+ "name": "language"
936
+ },
937
+ {
938
+ "name": "bday"
939
+ },
940
+ {
941
+ "name": "bday-day"
942
+ },
943
+ {
944
+ "name": "bday-month"
945
+ },
946
+ {
947
+ "name": "bday-year"
948
+ },
949
+ {
950
+ "name": "sex"
951
+ },
952
+ {
953
+ "name": "tel"
954
+ },
955
+ {
956
+ "name": "tel-country-code"
957
+ },
958
+ {
959
+ "name": "tel-national"
960
+ },
961
+ {
962
+ "name": "tel-area-code"
963
+ },
964
+ {
965
+ "name": "tel-local"
966
+ },
967
+ {
968
+ "name": "tel-extension"
969
+ },
970
+ {
971
+ "name": "impp"
972
+ },
973
+ {
974
+ "name": "url"
975
+ },
976
+ {
977
+ "name": "photo"
978
+ }
979
+ ]
980
+ },
981
+ {
982
+ "name": "autocorrect",
983
+ "description": "Whether auto correction should be enabled when the user is entering/editing the text value.",
984
+ "values": [
985
+ {
986
+ "name": "off"
987
+ },
988
+ {
989
+ "name": "on"
990
+ }
991
+ ]
992
+ },
993
+ {
994
+ "name": "autofocus",
995
+ "description": "This Boolean attribute lets you specify that a form control should have input focus when the page loads."
996
+ },
997
+ {
998
+ "name": "disabled",
999
+ "description": "If `true`, the user cannot interact with the input."
1000
+ },
1001
+ {
1002
+ "name": "enterkeyhint",
1003
+ "description": "A hint to the browser for which enter key to display.\nPossible values: `\"enter\"`, `\"done\"`, `\"go\"`, `\"next\"`,\n`\"previous\"`, `\"search\"`, and `\"send\"`.",
1004
+ "values": [
1005
+ {
1006
+ "name": "done"
1007
+ },
1008
+ {
1009
+ "name": "enter"
1010
+ },
1011
+ {
1012
+ "name": "go"
1013
+ },
1014
+ {
1015
+ "name": "next"
1016
+ },
1017
+ {
1018
+ "name": "previous"
1019
+ },
1020
+ {
1021
+ "name": "search"
1022
+ },
1023
+ {
1024
+ "name": "send"
1025
+ }
1026
+ ]
1027
+ },
1028
+ {
1029
+ "name": "error",
1030
+ "description": "Error message for the field"
1031
+ },
1032
+ {
1033
+ "name": "input-id",
1034
+ "description": "The id of input"
1035
+ },
1036
+ {
1037
+ "name": "inputmode",
1038
+ "description": "A hint to the browser for which keyboard to display.\nThis attribute applies when the value of the type attribute is `\"text\"`, `\"password\"`, `\"email\"`, or `\"url\"`. Possible values are: `\"verbatim\"`, `\"latin\"`, `\"latin-name\"`, `\"latin-prose\"`, `\"full-width-latin\"`, `\"kana\"`, `\"katakana\"`, `\"numeric\"`, `\"tel\"`, `\"email\"`, `\"url\"`.",
1039
+ "values": [
1040
+ {
1041
+ "name": "decimal"
1042
+ },
1043
+ {
1044
+ "name": "email"
1045
+ },
1046
+ {
1047
+ "name": "none"
1048
+ },
1049
+ {
1050
+ "name": "numeric"
1051
+ },
1052
+ {
1053
+ "name": "search"
1054
+ },
1055
+ {
1056
+ "name": "tel"
1057
+ },
1058
+ {
1059
+ "name": "text"
1060
+ },
1061
+ {
1062
+ "name": "url"
1063
+ }
1064
+ ]
1065
+ },
1066
+ {
1067
+ "name": "label",
1068
+ "description": "Label for the field"
1069
+ },
1070
+ {
1071
+ "name": "max",
1072
+ "description": "The maximum value, which must not be less than its minimum (min attribute) value."
1073
+ },
1074
+ {
1075
+ "name": "maxlength",
1076
+ "description": "If the value of the type attribute is `text`, `email`, `search`, `password`, `tel`, or `url`, this attribute specifies the maximum number of characters that the user can enter."
1077
+ },
1078
+ {
1079
+ "name": "min",
1080
+ "description": "The minimum value, which must not be greater than its maximum (max attribute) value."
1081
+ },
1082
+ {
1083
+ "name": "minlength",
1084
+ "description": "If the value of the type attribute is `text`, `email`, `search`, `password`, `tel`, or `url`, this attribute specifies the minimum number of characters that the user can enter."
1085
+ },
1086
+ {
1087
+ "name": "name",
1088
+ "description": "The name of the control, which is submitted with the form data."
1089
+ },
1090
+ {
1091
+ "name": "pattern",
1092
+ "description": "A regular expression that the value is checked against. The pattern must match the entire value, not just some subset. Use the title attribute to describe the pattern to help the user. This attribute applies when the value of the type attribute is `\"text\"`, `\"search\"`, `\"tel\"`, `\"url\"`, `\"email\"`, or `\"password\"`, otherwise it is ignored."
1093
+ },
1094
+ {
1095
+ "name": "placeholder",
1096
+ "description": "Instructional text that shows before the input has a value."
1097
+ },
1098
+ {
1099
+ "name": "readonly",
1100
+ "description": "If `true`, the user cannot modify the value."
1101
+ },
1102
+ {
1103
+ "name": "required",
1104
+ "description": "If `true`, the user must fill in a value before submitting a form."
1105
+ },
1106
+ {
1107
+ "name": "size",
1108
+ "description": "The initial size of the control. This value is in pixels unless the value of the type attribute is `\"text\"` or `\"password\"`, in which case it is an integer number of characters. This attribute applies only when the `type` attribute is set to `\"text\"`, `\"search\"`, `\"tel\"`, `\"url\"`, `\"email\"`, or `\"password\"`, otherwise it is ignored."
1109
+ },
1110
+ {
1111
+ "name": "spellcheck",
1112
+ "description": "If `true`, the element will have its spelling and grammar checked."
1113
+ },
1114
+ {
1115
+ "name": "step",
1116
+ "description": "Works with the min and max attributes to limit the increments at which a value can be set.\nPossible values are: `\"any\"` or a positive floating point number."
1117
+ },
1118
+ {
1119
+ "name": "type",
1120
+ "description": "The type of control to display. The default type is text.",
1121
+ "values": [
1122
+ {
1123
+ "name": "date"
1124
+ },
1125
+ {
1126
+ "name": "email"
1127
+ },
1128
+ {
1129
+ "name": "number"
1130
+ },
1131
+ {
1132
+ "name": "password"
1133
+ },
1134
+ {
1135
+ "name": "search"
1136
+ },
1137
+ {
1138
+ "name": "tel"
1139
+ },
1140
+ {
1141
+ "name": "text"
1142
+ },
1143
+ {
1144
+ "name": "time"
1145
+ },
1146
+ {
1147
+ "name": "url"
1148
+ }
1149
+ ]
1150
+ },
1151
+ {
1152
+ "name": "value",
1153
+ "description": "The value of the input."
1154
+ }
1155
+ ],
1156
+ "references": [
1157
+ {
1158
+ "name": "Source code",
1159
+ "url": "./https:/gitlab.com/mobivia-design/roadtrip/components/-/blob/master/src/components/input/input.tsx"
1160
+ }
1161
+ ]
1162
+ },
1163
+ {
1164
+ "name": "road-input-group",
1165
+ "description": {
1166
+ "kind": "markdown",
1167
+ "value": ""
1168
+ },
1169
+ "attributes": [],
1170
+ "references": [
1171
+ {
1172
+ "name": "Source code",
1173
+ "url": "./https:/gitlab.com/mobivia-design/roadtrip/components/-/blob/master/src/components/input-group/input-group.tsx"
1174
+ }
1175
+ ]
1176
+ },
1177
+ {
1178
+ "name": "road-item",
1179
+ "description": {
1180
+ "kind": "markdown",
1181
+ "value": ""
1182
+ },
1183
+ "attributes": [
1184
+ {
1185
+ "name": "active",
1186
+ "description": "If `true`, display an active state item"
1187
+ },
1188
+ {
1189
+ "name": "button",
1190
+ "description": "If `true`, a button tag will be rendered and the item will be tappable."
1191
+ },
1192
+ {
1193
+ "name": "detail",
1194
+ "description": "If `true`, a detail arrow will appear on the item. Defaults to `false` unless the `mode`\nis `ios` and an `href` or `button` property is present."
1195
+ },
1196
+ {
1197
+ "name": "detail-icon",
1198
+ "description": "The icon to use when `detail` is set to `true`."
1199
+ },
1200
+ {
1201
+ "name": "disabled",
1202
+ "description": "If `true`, the user cannot interact with the item."
1203
+ },
1204
+ {
1205
+ "name": "download",
1206
+ "description": "This attribute instructs browsers to download a URL instead of navigating to\nit, so the user will be prompted to save it as a local file. If the attribute\nhas a value, it is used as the pre-filled file name in the Save prompt\n(the user can still change the file name if they want)."
1207
+ },
1208
+ {
1209
+ "name": "href",
1210
+ "description": "Contains a URL or a URL fragment that the hyperlink points to.\nIf this property is set, an anchor tag will be rendered."
1211
+ },
1212
+ {
1213
+ "name": "lines",
1214
+ "description": "How the bottom border should be displayed on the item.",
1215
+ "values": [
1216
+ {
1217
+ "name": "full"
1218
+ },
1219
+ {
1220
+ "name": "inset"
1221
+ },
1222
+ {
1223
+ "name": "none"
1224
+ }
1225
+ ]
1226
+ },
1227
+ {
1228
+ "name": "rel",
1229
+ "description": "Specifies the relationship of the target object to the link object.\nThe value is a space-separated list of [link types](https://developer.mozilla.org/en-US/docs/Web/HTML/Link_types)."
1230
+ },
1231
+ {
1232
+ "name": "target",
1233
+ "description": "Specifies where to display the linked URL.\nOnly applies when an `href` is provided.\nSpecial keywords: `\"_blank\"`, `\"_self\"`, `\"_parent\"`, `\"_top\"`."
1234
+ },
1235
+ {
1236
+ "name": "type",
1237
+ "description": "The type of the button. Only used when an `onclick` or `button` property is present.",
1238
+ "values": [
1239
+ {
1240
+ "name": "button"
1241
+ },
1242
+ {
1243
+ "name": "reset"
1244
+ },
1245
+ {
1246
+ "name": "submit"
1247
+ }
1248
+ ]
1249
+ }
1250
+ ],
1251
+ "references": [
1252
+ {
1253
+ "name": "Source code",
1254
+ "url": "./https:/gitlab.com/mobivia-design/roadtrip/components/-/blob/master/src/components/item/item.tsx"
1255
+ }
1256
+ ]
1257
+ },
1258
+ {
1259
+ "name": "road-label",
1260
+ "description": {
1261
+ "kind": "markdown",
1262
+ "value": ""
1263
+ },
1264
+ "attributes": [],
1265
+ "references": [
1266
+ {
1267
+ "name": "Source code",
1268
+ "url": "./https:/gitlab.com/mobivia-design/roadtrip/components/-/blob/master/src/components/label/label.tsx"
1269
+ }
1270
+ ]
1271
+ },
1272
+ {
1273
+ "name": "road-list",
1274
+ "description": {
1275
+ "kind": "markdown",
1276
+ "value": ""
1277
+ },
1278
+ "attributes": [
1279
+ {
1280
+ "name": "lines",
1281
+ "description": "How the bottom border should be displayed on all items.",
1282
+ "values": [
1283
+ {
1284
+ "name": "full"
1285
+ },
1286
+ {
1287
+ "name": "inset"
1288
+ },
1289
+ {
1290
+ "name": "none"
1291
+ }
1292
+ ]
1293
+ }
1294
+ ],
1295
+ "references": [
1296
+ {
1297
+ "name": "Source code",
1298
+ "url": "./https:/gitlab.com/mobivia-design/roadtrip/components/-/blob/master/src/components/list/list.tsx"
1299
+ }
1300
+ ]
1301
+ },
1302
+ {
1303
+ "name": "road-modal",
1304
+ "description": {
1305
+ "kind": "markdown",
1306
+ "value": ""
1307
+ },
1308
+ "attributes": [
1309
+ {
1310
+ "name": "has-close-icon",
1311
+ "description": "Show / hide close icon"
1312
+ },
1313
+ {
1314
+ "name": "has-inverse-header",
1315
+ "description": "inverse header colors"
1316
+ },
1317
+ {
1318
+ "name": "is-open",
1319
+ "description": "Set isOpen propertie to true to show the modal"
1320
+ },
1321
+ {
1322
+ "name": "max-width",
1323
+ "description": "Max width of the modal on desktop"
1324
+ },
1325
+ {
1326
+ "name": "modal-title",
1327
+ "description": "Title of the modal in the header bar"
1328
+ }
1329
+ ],
1330
+ "references": [
1331
+ {
1332
+ "name": "Source code",
1333
+ "url": "./https:/gitlab.com/mobivia-design/roadtrip/components/-/blob/master/src/components/modal/modal.tsx"
1334
+ }
1335
+ ]
1336
+ },
1337
+ {
1338
+ "name": "road-navbar",
1339
+ "description": {
1340
+ "kind": "markdown",
1341
+ "value": ""
1342
+ },
1343
+ "attributes": [
1344
+ {
1345
+ "name": "selected-tab",
1346
+ "description": "The selected tab component"
1347
+ }
1348
+ ],
1349
+ "references": [
1350
+ {
1351
+ "name": "Source code",
1352
+ "url": "./https:/gitlab.com/mobivia-design/roadtrip/components/-/blob/master/src/components/navbar/navbar.tsx"
1353
+ }
1354
+ ]
1355
+ },
1356
+ {
1357
+ "name": "road-navbar-item",
1358
+ "description": {
1359
+ "kind": "markdown",
1360
+ "value": ""
1361
+ },
1362
+ "attributes": [
1363
+ {
1364
+ "name": "disabled",
1365
+ "description": "If `true`, the user cannot interact with the tab button."
1366
+ },
1367
+ {
1368
+ "name": "download",
1369
+ "description": "This attribute instructs browsers to download a URL instead of navigating to\nit, so the user will be prompted to save it as a local file. If the attribute\nhas a value, it is used as the pre-filled file name in the Save prompt\n(the user can still change the file name if they want)."
1370
+ },
1371
+ {
1372
+ "name": "href",
1373
+ "description": "Contains a URL or a URL fragment that the hyperlink points to.\nIf this property is set, an anchor tag will be rendered."
1374
+ },
1375
+ {
1376
+ "name": "rel",
1377
+ "description": "Specifies the relationship of the target object to the link object.\nThe value is a space-separated list of [link types](https://developer.mozilla.org/en-US/docs/Web/HTML/Link_types)."
1378
+ },
1379
+ {
1380
+ "name": "selected",
1381
+ "description": "The selected tab component"
1382
+ },
1383
+ {
1384
+ "name": "tab",
1385
+ "description": "A tab id must be provided for each `road-tab`. It's used internally to reference\nthe selected tab."
1386
+ },
1387
+ {
1388
+ "name": "target",
1389
+ "description": "Specifies where to display the linked URL.\nOnly applies when an `href` is provided.\nSpecial keywords: `\"_blank\"`, `\"_self\"`, `\"_parent\"`, `\"_top\"`."
1390
+ }
1391
+ ],
1392
+ "references": [
1393
+ {
1394
+ "name": "Source code",
1395
+ "url": "./https:/gitlab.com/mobivia-design/roadtrip/components/-/blob/master/src/components/navbar-item/navbar-item.tsx"
1396
+ }
1397
+ ]
1398
+ },
1399
+ {
1400
+ "name": "road-plate-number",
1401
+ "description": {
1402
+ "kind": "markdown",
1403
+ "value": ""
1404
+ },
1405
+ "attributes": [
1406
+ {
1407
+ "name": "country",
1408
+ "description": "country of the plate",
1409
+ "values": [
1410
+ {
1411
+ "name": "BE"
1412
+ },
1413
+ {
1414
+ "name": "ES"
1415
+ },
1416
+ {
1417
+ "name": "FR"
1418
+ },
1419
+ {
1420
+ "name": "IT"
1421
+ },
1422
+ {
1423
+ "name": "PL"
1424
+ },
1425
+ {
1426
+ "name": "PT"
1427
+ }
1428
+ ]
1429
+ },
1430
+ {
1431
+ "name": "placeholder",
1432
+ "description": "overwrite the default placeholder"
1433
+ },
1434
+ {
1435
+ "name": "value",
1436
+ "description": "The value of the input."
1437
+ }
1438
+ ],
1439
+ "references": [
1440
+ {
1441
+ "name": "Source code",
1442
+ "url": "./https:/gitlab.com/mobivia-design/roadtrip/components/-/blob/master/src/components/plate-number/plate-number.tsx"
1443
+ }
1444
+ ]
1445
+ },
1446
+ {
1447
+ "name": "road-progress",
1448
+ "description": {
1449
+ "kind": "markdown",
1450
+ "value": ""
1451
+ },
1452
+ "attributes": [
1453
+ {
1454
+ "name": "color",
1455
+ "description": "The color to use from your application's color palette.",
1456
+ "values": [
1457
+ {
1458
+ "name": "danger"
1459
+ },
1460
+ {
1461
+ "name": "info"
1462
+ },
1463
+ {
1464
+ "name": "success"
1465
+ },
1466
+ {
1467
+ "name": "warning"
1468
+ }
1469
+ ]
1470
+ },
1471
+ {
1472
+ "name": "value",
1473
+ "description": "The value determines how much of the active bar should display.\nThe value should be between [0, 100]."
1474
+ }
1475
+ ],
1476
+ "references": [
1477
+ {
1478
+ "name": "Source code",
1479
+ "url": "./https:/gitlab.com/mobivia-design/roadtrip/components/-/blob/master/src/components/progress/progress.tsx"
1480
+ }
1481
+ ]
1482
+ },
1483
+ {
1484
+ "name": "road-radio",
1485
+ "description": {
1486
+ "kind": "markdown",
1487
+ "value": "A radio is used in a [radio-group](../radio-group). It allows\na user to select at most one radio button from a set. Checking one radio\nbutton that belongs to a radio group unchecks any previous checked\nradio button within the same group."
1488
+ },
1489
+ "attributes": [
1490
+ {
1491
+ "name": "disabled",
1492
+ "description": "If `true`, the user cannot interact with the radio."
1493
+ },
1494
+ {
1495
+ "name": "error",
1496
+ "description": "Error message for the field"
1497
+ },
1498
+ {
1499
+ "name": "inline",
1500
+ "description": "Inline multiple radio"
1501
+ },
1502
+ {
1503
+ "name": "inverse",
1504
+ "description": "If `true`, the label and the radio are inverse and spaced"
1505
+ },
1506
+ {
1507
+ "name": "label",
1508
+ "description": "Label for the field"
1509
+ },
1510
+ {
1511
+ "name": "name",
1512
+ "description": "The name of the control, which is submitted with the form data."
1513
+ },
1514
+ {
1515
+ "name": "radio-id",
1516
+ "description": "The id of radio"
1517
+ },
1518
+ {
1519
+ "name": "required",
1520
+ "description": "If `true`, the user must fill in a value before submitting a form."
1521
+ },
1522
+ {
1523
+ "name": "value",
1524
+ "description": "Value the form will get"
1525
+ }
1526
+ ],
1527
+ "references": [
1528
+ {
1529
+ "name": "Source code",
1530
+ "url": "./https:/gitlab.com/mobivia-design/roadtrip/components/-/blob/master/src/components/radio/radio.tsx"
1531
+ }
1532
+ ]
1533
+ },
1534
+ {
1535
+ "name": "road-radio-group",
1536
+ "description": {
1537
+ "kind": "markdown",
1538
+ "value": "A radio group is a group of [radio buttons](../radio). It allows\na user to select at most one radio button from a set. Checking one radio\nbutton that belongs to a radio group unchecks any previous checked\nradio button within the same group."
1539
+ },
1540
+ "attributes": [
1541
+ {
1542
+ "name": "allow-empty-selection",
1543
+ "description": "If `true`, the radios can be deselected."
1544
+ },
1545
+ {
1546
+ "name": "aria-label",
1547
+ "description": "Label for the field"
1548
+ },
1549
+ {
1550
+ "name": "asterisk",
1551
+ "description": "add an asterisk to the label of the field"
1552
+ },
1553
+ {
1554
+ "name": "error",
1555
+ "description": "Error message for the radio group"
1556
+ },
1557
+ {
1558
+ "name": "label",
1559
+ "description": "Label for the field"
1560
+ },
1561
+ {
1562
+ "name": "name",
1563
+ "description": "The name of the control, which is submitted with the form data."
1564
+ },
1565
+ {
1566
+ "name": "radio-group-id",
1567
+ "description": "The id of checkbox"
1568
+ },
1569
+ {
1570
+ "name": "value",
1571
+ "description": "the value of the radio group."
1572
+ }
1573
+ ],
1574
+ "references": [
1575
+ {
1576
+ "name": "Source code",
1577
+ "url": "./https:/gitlab.com/mobivia-design/roadtrip/components/-/blob/master/src/components/radio-group/radio-group.tsx"
1578
+ }
1579
+ ]
1580
+ },
1581
+ {
1582
+ "name": "road-range",
1583
+ "description": {
1584
+ "kind": "markdown",
1585
+ "value": ""
1586
+ },
1587
+ "attributes": [
1588
+ {
1589
+ "name": "max",
1590
+ "description": "The maximum value, which must not be less than its minimum (min attribute) value."
1591
+ },
1592
+ {
1593
+ "name": "min",
1594
+ "description": "The minimum value, which must not be greater than its maximum (max attribute) value."
1595
+ },
1596
+ {
1597
+ "name": "range-id",
1598
+ "description": "The id of range"
1599
+ },
1600
+ {
1601
+ "name": "show-value",
1602
+ "description": "Display the current value of the range"
1603
+ },
1604
+ {
1605
+ "name": "step",
1606
+ "description": "Works with the min and max attributes to limit the increments at which a value can be set.\nPossible values are: `\"any\"` or a positive floating point number."
1607
+ },
1608
+ {
1609
+ "name": "value",
1610
+ "description": "The value of the range."
1611
+ }
1612
+ ],
1613
+ "references": [
1614
+ {
1615
+ "name": "Source code",
1616
+ "url": "./https:/gitlab.com/mobivia-design/roadtrip/components/-/blob/master/src/components/range/range.tsx"
1617
+ }
1618
+ ]
1619
+ },
1620
+ {
1621
+ "name": "road-rating",
1622
+ "description": {
1623
+ "kind": "markdown",
1624
+ "value": ""
1625
+ },
1626
+ "attributes": [
1627
+ {
1628
+ "name": "rate",
1629
+ "description": "Rate review between 0 and 5"
1630
+ },
1631
+ {
1632
+ "name": "reviews",
1633
+ "description": "number of reviews"
1634
+ },
1635
+ {
1636
+ "name": "reviews-text",
1637
+ "description": "Word display next to the number of reviews."
1638
+ }
1639
+ ],
1640
+ "references": [
1641
+ {
1642
+ "name": "Source code",
1643
+ "url": "./https:/gitlab.com/mobivia-design/roadtrip/components/-/blob/master/src/components/rating/rating.tsx"
1644
+ }
1645
+ ]
1646
+ },
1647
+ {
1648
+ "name": "road-row",
1649
+ "description": {
1650
+ "kind": "markdown",
1651
+ "value": "Rows are horizontal components of the [grid](../grid) system and contain varying numbers of\n[columns](../col). They ensure the columns are positioned properly.\n\nSee [Grid Layout](../grid) for more information."
1652
+ },
1653
+ "attributes": [],
1654
+ "references": [
1655
+ {
1656
+ "name": "Source code",
1657
+ "url": "./https:/gitlab.com/mobivia-design/roadtrip/components/-/blob/master/src/components/row/row.tsx"
1658
+ }
1659
+ ]
1660
+ },
1661
+ {
1662
+ "name": "road-select",
1663
+ "description": {
1664
+ "kind": "markdown",
1665
+ "value": ""
1666
+ },
1667
+ "attributes": [
1668
+ {
1669
+ "name": "autofocus",
1670
+ "description": "This Boolean attribute lets you specify that a form control should have input focus when the page loads."
1671
+ },
1672
+ {
1673
+ "name": "disabled",
1674
+ "description": "If `true`, the user cannot interact with the select."
1675
+ },
1676
+ {
1677
+ "name": "error",
1678
+ "description": "Error message for the field"
1679
+ },
1680
+ {
1681
+ "name": "label",
1682
+ "description": "Label for the field"
1683
+ },
1684
+ {
1685
+ "name": "name",
1686
+ "description": "The name of the control, which is submitted with the form data."
1687
+ },
1688
+ {
1689
+ "name": "required",
1690
+ "description": "If `true`, the user must fill in a value before submitting a form."
1691
+ },
1692
+ {
1693
+ "name": "select-id",
1694
+ "description": "The id of select"
1695
+ },
1696
+ {
1697
+ "name": "size",
1698
+ "description": "If the control is presented as a scrolling list box (e.g. when multiple is specified),\nthis attribute represents the number of rows in the list that should be visible at one time."
1699
+ },
1700
+ {
1701
+ "name": "value",
1702
+ "description": "the value of the select."
1703
+ }
1704
+ ],
1705
+ "references": [
1706
+ {
1707
+ "name": "Source code",
1708
+ "url": "./https:/gitlab.com/mobivia-design/roadtrip/components/-/blob/master/src/components/select/select.tsx"
1709
+ }
1710
+ ]
1711
+ },
1712
+ {
1713
+ "name": "road-skeleton",
1714
+ "description": {
1715
+ "kind": "markdown",
1716
+ "value": ""
1717
+ },
1718
+ "attributes": [],
1719
+ "references": [
1720
+ {
1721
+ "name": "Source code",
1722
+ "url": "./https:/gitlab.com/mobivia-design/roadtrip/components/-/blob/master/src/components/skeleton/skeleton.tsx"
1723
+ }
1724
+ ]
1725
+ },
1726
+ {
1727
+ "name": "road-spinner",
1728
+ "description": {
1729
+ "kind": "markdown",
1730
+ "value": ""
1731
+ },
1732
+ "attributes": [],
1733
+ "references": [
1734
+ {
1735
+ "name": "Source code",
1736
+ "url": "./https:/gitlab.com/mobivia-design/roadtrip/components/-/blob/master/src/components/spinner/spinner.tsx"
1737
+ }
1738
+ ]
1739
+ },
1740
+ {
1741
+ "name": "road-switch",
1742
+ "description": {
1743
+ "kind": "markdown",
1744
+ "value": ""
1745
+ },
1746
+ "attributes": [
1747
+ {
1748
+ "name": "checked",
1749
+ "description": "If `true`, the toggle is selected."
1750
+ },
1751
+ {
1752
+ "name": "color",
1753
+ "description": "Set the color of alert. e.g. info, success, warning, danger",
1754
+ "values": [
1755
+ {
1756
+ "name": "danger"
1757
+ },
1758
+ {
1759
+ "name": "info"
1760
+ },
1761
+ {
1762
+ "name": "secondary"
1763
+ },
1764
+ {
1765
+ "name": "success"
1766
+ },
1767
+ {
1768
+ "name": "warning"
1769
+ }
1770
+ ]
1771
+ },
1772
+ {
1773
+ "name": "disabled",
1774
+ "description": "If `true`, the user cannot interact with the toggle."
1775
+ },
1776
+ {
1777
+ "name": "has-left-label",
1778
+ "description": "If `true`, the label is at left of the switch"
1779
+ },
1780
+ {
1781
+ "name": "is-spaced",
1782
+ "description": "Add space between label and switch element"
1783
+ },
1784
+ {
1785
+ "name": "label",
1786
+ "description": "Label for the field"
1787
+ },
1788
+ {
1789
+ "name": "name",
1790
+ "description": "The name of the control, which is submitted with the form data."
1791
+ },
1792
+ {
1793
+ "name": "off",
1794
+ "description": "Text display for \"`off`\" state in the switch lever"
1795
+ },
1796
+ {
1797
+ "name": "on",
1798
+ "description": "Text display for \"`on`\" state in the switch lever"
1799
+ },
1800
+ {
1801
+ "name": "switch-id",
1802
+ "description": "The id of input"
1803
+ },
1804
+ {
1805
+ "name": "value",
1806
+ "description": "Value the form will get"
1807
+ }
1808
+ ],
1809
+ "references": [
1810
+ {
1811
+ "name": "Source code",
1812
+ "url": "./https:/gitlab.com/mobivia-design/roadtrip/components/-/blob/master/src/components/switch/switch.tsx"
1813
+ }
1814
+ ]
1815
+ },
1816
+ {
1817
+ "name": "road-tab",
1818
+ "description": {
1819
+ "kind": "markdown",
1820
+ "value": ""
1821
+ },
1822
+ "attributes": [
1823
+ {
1824
+ "name": "tab",
1825
+ "description": "A tab id must be provided for each `road-tab`. It's used internally to reference\nthe selected tab or by the router to switch between them."
1826
+ }
1827
+ ],
1828
+ "references": [
1829
+ {
1830
+ "name": "Source code",
1831
+ "url": "./https:/gitlab.com/mobivia-design/roadtrip/components/-/blob/master/src/components/tab/tab.tsx"
1832
+ }
1833
+ ]
1834
+ },
1835
+ {
1836
+ "name": "road-tab-bar",
1837
+ "description": {
1838
+ "kind": "markdown",
1839
+ "value": ""
1840
+ },
1841
+ "attributes": [
1842
+ {
1843
+ "name": "center",
1844
+ "description": "Set to `true` to center buttons in the bar."
1845
+ },
1846
+ {
1847
+ "name": "expand",
1848
+ "description": "Set to `true` to expand buttons width to take the full size of the bar."
1849
+ },
1850
+ {
1851
+ "name": "selected-tab",
1852
+ "description": "The selected tab component"
1853
+ }
1854
+ ],
1855
+ "references": [
1856
+ {
1857
+ "name": "Source code",
1858
+ "url": "./https:/gitlab.com/mobivia-design/roadtrip/components/-/blob/master/src/components/tab-bar/tab-bar.tsx"
1859
+ }
1860
+ ]
1861
+ },
1862
+ {
1863
+ "name": "road-tab-button",
1864
+ "description": {
1865
+ "kind": "markdown",
1866
+ "value": ""
1867
+ },
1868
+ "attributes": [
1869
+ {
1870
+ "name": "download",
1871
+ "description": "This attribute instructs browsers to download a URL instead of navigating to\nit, so the user will be prompted to save it as a local file. If the attribute\nhas a value, it is used as the pre-filled file name in the Save prompt\n(the user can still change the file name if they want)."
1872
+ },
1873
+ {
1874
+ "name": "href",
1875
+ "description": "Contains a URL or a URL fragment that the hyperlink points to.\nIf this property is set, an anchor tag will be rendered."
1876
+ },
1877
+ {
1878
+ "name": "layout",
1879
+ "description": "Set the layout of the text and icon in the tab bar.\nIt defaults to `'icon-top'`.",
1880
+ "values": [
1881
+ {
1882
+ "name": "icon-start"
1883
+ },
1884
+ {
1885
+ "name": "icon-top"
1886
+ }
1887
+ ]
1888
+ },
1889
+ {
1890
+ "name": "rel",
1891
+ "description": "Specifies the relationship of the target object to the link object.\nThe value is a space-separated list of [link types](https://developer.mozilla.org/en-US/docs/Web/HTML/Link_types)."
1892
+ },
1893
+ {
1894
+ "name": "selected",
1895
+ "description": "The selected tab component"
1896
+ },
1897
+ {
1898
+ "name": "tab",
1899
+ "description": "A tab id must be provided for each `road-tab`. It's used internally to reference"
1900
+ },
1901
+ {
1902
+ "name": "target",
1903
+ "description": "Specifies where to display the linked URL.\nOnly applies when an `href` is provided.\nSpecial keywords: `\"_blank\"`, `\"_self\"`, `\"_parent\"`, `\"_top\"`."
1904
+ }
1905
+ ],
1906
+ "references": [
1907
+ {
1908
+ "name": "Source code",
1909
+ "url": "./https:/gitlab.com/mobivia-design/roadtrip/components/-/blob/master/src/components/tab-button/tab-button.tsx"
1910
+ }
1911
+ ]
1912
+ },
1913
+ {
1914
+ "name": "road-table",
1915
+ "description": {
1916
+ "kind": "markdown",
1917
+ "value": ""
1918
+ },
1919
+ "attributes": [],
1920
+ "references": [
1921
+ {
1922
+ "name": "Source code",
1923
+ "url": "./https:/gitlab.com/mobivia-design/roadtrip/components/-/blob/master/src/components/table/table.tsx"
1924
+ }
1925
+ ]
1926
+ },
1927
+ {
1928
+ "name": "road-tabs",
1929
+ "description": {
1930
+ "kind": "markdown",
1931
+ "value": ""
1932
+ },
1933
+ "attributes": [],
1934
+ "references": [
1935
+ {
1936
+ "name": "Source code",
1937
+ "url": "./https:/gitlab.com/mobivia-design/roadtrip/components/-/blob/master/src/components/tabs/tabs.tsx"
1938
+ }
1939
+ ]
1940
+ },
1941
+ {
1942
+ "name": "road-text",
1943
+ "description": {
1944
+ "kind": "markdown",
1945
+ "value": "The text component is a simple component that can be used to style the text color of any element. The `road-text` element should wrap the element in order to change the text color of that element."
1946
+ },
1947
+ "attributes": [
1948
+ {
1949
+ "name": "color",
1950
+ "description": "Color of the text.",
1951
+ "values": [
1952
+ {
1953
+ "name": "accent"
1954
+ },
1955
+ {
1956
+ "name": "danger"
1957
+ },
1958
+ {
1959
+ "name": "default"
1960
+ },
1961
+ {
1962
+ "name": "default-second"
1963
+ },
1964
+ {
1965
+ "name": "disabled"
1966
+ },
1967
+ {
1968
+ "name": "info"
1969
+ },
1970
+ {
1971
+ "name": "primary"
1972
+ },
1973
+ {
1974
+ "name": "secondary"
1975
+ },
1976
+ {
1977
+ "name": "success"
1978
+ },
1979
+ {
1980
+ "name": "warning"
1981
+ },
1982
+ {
1983
+ "name": "white"
1984
+ }
1985
+ ]
1986
+ }
1987
+ ],
1988
+ "references": [
1989
+ {
1990
+ "name": "Source code",
1991
+ "url": "./https:/gitlab.com/mobivia-design/roadtrip/components/-/blob/master/src/components/text/text.tsx"
1992
+ }
1993
+ ]
1994
+ },
1995
+ {
1996
+ "name": "road-textarea",
1997
+ "description": {
1998
+ "kind": "markdown",
1999
+ "value": ""
2000
+ },
2001
+ "attributes": [
2002
+ {
2003
+ "name": "autocapitalize",
2004
+ "description": "Indicates whether and how the text value should be automatically capitalized as it is entered/edited by the user."
2005
+ },
2006
+ {
2007
+ "name": "autofocus",
2008
+ "description": "This Boolean attribute lets you specify that a form control should have input focus when the page loads."
2009
+ },
2010
+ {
2011
+ "name": "cols",
2012
+ "description": "The visible width of the text control, in average character widths. If it is specified, it must be a positive integer."
2013
+ },
2014
+ {
2015
+ "name": "disabled",
2016
+ "description": "If `true`, the user cannot interact with the input."
2017
+ },
2018
+ {
2019
+ "name": "enterkeyhint",
2020
+ "description": "A hint to the browser for which enter key to display.\nPossible values: `\"enter\"`, `\"done\"`, `\"go\"`, `\"next\"`,\n`\"previous\"`, `\"search\"`, and `\"send\"`.",
2021
+ "values": [
2022
+ {
2023
+ "name": "done"
2024
+ },
2025
+ {
2026
+ "name": "enter"
2027
+ },
2028
+ {
2029
+ "name": "go"
2030
+ },
2031
+ {
2032
+ "name": "next"
2033
+ },
2034
+ {
2035
+ "name": "previous"
2036
+ },
2037
+ {
2038
+ "name": "search"
2039
+ },
2040
+ {
2041
+ "name": "send"
2042
+ }
2043
+ ]
2044
+ },
2045
+ {
2046
+ "name": "error",
2047
+ "description": "Error message for the field"
2048
+ },
2049
+ {
2050
+ "name": "inputmode",
2051
+ "description": "A hint to the browser for which keyboard to display.\nThis attribute applies when the value of the type attribute is `\"text\"`, `\"password\"`, `\"email\"`, or `\"url\"`. Possible values are: `\"verbatim\"`, `\"latin\"`, `\"latin-name\"`, `\"latin-prose\"`, `\"full-width-latin\"`, `\"kana\"`, `\"katakana\"`, `\"numeric\"`, `\"tel\"`, `\"email\"`, `\"url\"`.",
2052
+ "values": [
2053
+ {
2054
+ "name": "decimal"
2055
+ },
2056
+ {
2057
+ "name": "email"
2058
+ },
2059
+ {
2060
+ "name": "none"
2061
+ },
2062
+ {
2063
+ "name": "numeric"
2064
+ },
2065
+ {
2066
+ "name": "search"
2067
+ },
2068
+ {
2069
+ "name": "tel"
2070
+ },
2071
+ {
2072
+ "name": "text"
2073
+ },
2074
+ {
2075
+ "name": "url"
2076
+ }
2077
+ ]
2078
+ },
2079
+ {
2080
+ "name": "label",
2081
+ "description": "Label for the field"
2082
+ },
2083
+ {
2084
+ "name": "maxlength",
2085
+ "description": "If the value of the type attribute is `text`, `email`, `search`, `password`, `tel`, or `url`, this attribute specifies the maximum number of characters that the user can enter."
2086
+ },
2087
+ {
2088
+ "name": "minlength",
2089
+ "description": "If the value of the type attribute is `text`, `email`, `search`, `password`, `tel`, or `url`, this attribute specifies the minimum number of characters that the user can enter."
2090
+ },
2091
+ {
2092
+ "name": "name",
2093
+ "description": "The name of the control, which is submitted with the form data."
2094
+ },
2095
+ {
2096
+ "name": "placeholder",
2097
+ "description": "Instructional text that shows before the input has a value."
2098
+ },
2099
+ {
2100
+ "name": "readonly",
2101
+ "description": "If `true`, the user cannot modify the value."
2102
+ },
2103
+ {
2104
+ "name": "required",
2105
+ "description": "If `true`, the user must fill in a value before submitting a form."
2106
+ },
2107
+ {
2108
+ "name": "rows",
2109
+ "description": "The number of rows of the control."
2110
+ },
2111
+ {
2112
+ "name": "spellcheck",
2113
+ "description": "If `true`, the element will have its spelling and grammar checked."
2114
+ },
2115
+ {
2116
+ "name": "textarea-id",
2117
+ "description": "The id of input"
2118
+ },
2119
+ {
2120
+ "name": "value",
2121
+ "description": "The value of the input."
2122
+ },
2123
+ {
2124
+ "name": "wrap",
2125
+ "description": "Indicates how the control wraps text.",
2126
+ "values": [
2127
+ {
2128
+ "name": "hard"
2129
+ },
2130
+ {
2131
+ "name": "off"
2132
+ },
2133
+ {
2134
+ "name": "soft"
2135
+ }
2136
+ ]
2137
+ }
2138
+ ],
2139
+ "references": [
2140
+ {
2141
+ "name": "Source code",
2142
+ "url": "./https:/gitlab.com/mobivia-design/roadtrip/components/-/blob/master/src/components/textarea/textarea.tsx"
2143
+ }
2144
+ ]
2145
+ },
2146
+ {
2147
+ "name": "road-toast",
2148
+ "description": {
2149
+ "kind": "markdown",
2150
+ "value": ""
2151
+ },
2152
+ "attributes": [
2153
+ {
2154
+ "name": "color",
2155
+ "description": "Set the color of toast. e.g. info, success, warning, danger",
2156
+ "values": [
2157
+ {
2158
+ "name": "danger"
2159
+ },
2160
+ {
2161
+ "name": "info"
2162
+ },
2163
+ {
2164
+ "name": "success"
2165
+ },
2166
+ {
2167
+ "name": "warning"
2168
+ }
2169
+ ]
2170
+ },
2171
+ {
2172
+ "name": "is-open",
2173
+ "description": "Set open propertie to true to show the toast"
2174
+ },
2175
+ {
2176
+ "name": "label",
2177
+ "description": "Text display in the toast"
2178
+ },
2179
+ {
2180
+ "name": "position",
2181
+ "description": "position of the toast.",
2182
+ "values": [
2183
+ {
2184
+ "name": "bottom"
2185
+ },
2186
+ {
2187
+ "name": "top"
2188
+ }
2189
+ ]
2190
+ },
2191
+ {
2192
+ "name": "timeout",
2193
+ "description": "How many milliseconds to wait before hiding the toast. if `\"0\"`, it will show\nuntil `close()` is called."
2194
+ }
2195
+ ],
2196
+ "references": [
2197
+ {
2198
+ "name": "Source code",
2199
+ "url": "./https:/gitlab.com/mobivia-design/roadtrip/components/-/blob/master/src/components/toast/toast.tsx"
2200
+ }
2201
+ ]
2202
+ },
2203
+ {
2204
+ "name": "road-toolbar",
2205
+ "description": {
2206
+ "kind": "markdown",
2207
+ "value": ""
2208
+ },
2209
+ "attributes": [
2210
+ {
2211
+ "name": "color",
2212
+ "description": "Background color of the toolbar",
2213
+ "values": [
2214
+ {
2215
+ "name": "primary"
2216
+ },
2217
+ {
2218
+ "name": "secondary"
2219
+ }
2220
+ ]
2221
+ }
2222
+ ],
2223
+ "references": [
2224
+ {
2225
+ "name": "Source code",
2226
+ "url": "./https:/gitlab.com/mobivia-design/roadtrip/components/-/blob/master/src/components/toolbar/toolbar.tsx"
2227
+ }
2228
+ ]
2229
+ },
2230
+ {
2231
+ "name": "road-toolbar-title",
2232
+ "description": {
2233
+ "kind": "markdown",
2234
+ "value": "`road-title` is a component that sets the title of the `Toolbar`."
2235
+ },
2236
+ "attributes": [],
2237
+ "references": [
2238
+ {
2239
+ "name": "Source code",
2240
+ "url": "./https:/gitlab.com/mobivia-design/roadtrip/components/-/blob/master/src/components/toolbar-title/toolbar-title.tsx"
2241
+ }
2242
+ ]
2243
+ },
2244
+ {
2245
+ "name": "road-tooltip",
2246
+ "description": {
2247
+ "kind": "markdown",
2248
+ "value": ""
2249
+ },
2250
+ "attributes": [
2251
+ {
2252
+ "name": "content",
2253
+ "description": "The tooltip's content."
2254
+ },
2255
+ {
2256
+ "name": "is-open",
2257
+ "description": "Indicates whether or not the tooltip is open. You can use this or the open/close methods."
2258
+ },
2259
+ {
2260
+ "name": "position",
2261
+ "description": "The position of the tooltip.",
2262
+ "values": [
2263
+ {
2264
+ "name": "bottom"
2265
+ },
2266
+ {
2267
+ "name": "left"
2268
+ },
2269
+ {
2270
+ "name": "right"
2271
+ },
2272
+ {
2273
+ "name": "top"
2274
+ }
2275
+ ]
2276
+ },
2277
+ {
2278
+ "name": "tooltip-id",
2279
+ "description": "The id of tooltip"
2280
+ },
2281
+ {
2282
+ "name": "trigger",
2283
+ "description": "Controls how the tooltip is activated. Possible options include `click`, `hover`. Multiple\noptions can be passed by separating them with a space. When manual is used, the tooltip must be activated\nprogrammatically."
2284
+ }
2285
+ ],
2286
+ "references": [
2287
+ {
2288
+ "name": "Source code",
2289
+ "url": "./https:/gitlab.com/mobivia-design/roadtrip/components/-/blob/master/src/components/tooltip/tooltip.tsx"
2290
+ }
2291
+ ]
2292
+ }
2293
+ ]
2294
+ }