@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,2828 @@
1
+ /* eslint-disable */
2
+ /* tslint:disable */
3
+ /**
4
+ * This is an autogenerated file created by the Stencil compiler.
5
+ * It contains typing information for all components that exist in this project.
6
+ */
7
+ import { HTMLStencilElement, JSXBase } from "./stencil-public-runtime";
8
+ import { AutocompleteTypes, Color, FeedbackColors, TextFieldTypes } from "./interface";
9
+ export namespace Components {
10
+ interface RoadAccordion {
11
+ /**
12
+ * Set open to true to show the accordion element and to false to hide it.
13
+ */
14
+ "isOpen": boolean;
15
+ }
16
+ interface RoadAlert {
17
+ /**
18
+ * Set the color of alert. e.g. info, success, warning, danger
19
+ */
20
+ "color": FeedbackColors;
21
+ }
22
+ interface RoadAutocomplete {
23
+ /**
24
+ * If `true`, the user can't submit custom value
25
+ */
26
+ "onlySelect": boolean;
27
+ /**
28
+ * List of options of the select
29
+ */
30
+ "options": Array<{
31
+ value: string | number;
32
+ label: string;
33
+ }>;
34
+ }
35
+ interface RoadAvatar {
36
+ }
37
+ interface RoadBadge {
38
+ /**
39
+ * if `true` the badge will be displayed has a little bubble
40
+ */
41
+ "bubble"?: boolean;
42
+ /**
43
+ * Color of the badge
44
+ */
45
+ "color"?: Color;
46
+ }
47
+ interface RoadButton {
48
+ /**
49
+ * The type of the button.
50
+ */
51
+ "buttonType": 'submit' | 'reset' | 'button';
52
+ /**
53
+ * The color to use from your application's color palette.
54
+ */
55
+ "color"?: Color;
56
+ /**
57
+ * If `true`, the user cannot interact with the button.
58
+ */
59
+ "disabled": boolean;
60
+ /**
61
+ * This attribute instructs browsers to download a URL instead of navigating to it, so the user will be prompted to save it as a local file. If the attribute has a value, it is used as the pre-filled file name in the Save prompt (the user can still change the file name if they want).
62
+ */
63
+ "download": string | undefined;
64
+ /**
65
+ * Set to `true` for a full-width button.
66
+ */
67
+ "expand"?: boolean;
68
+ /**
69
+ * Contains a URL or a URL fragment that the hyperlink points to. If this property is set, an anchor tag will be rendered.
70
+ */
71
+ "href"?: string;
72
+ /**
73
+ * Set to `true` for a transparent button with a border
74
+ */
75
+ "outline": boolean;
76
+ /**
77
+ * Specifies the relationship of the target object to the link object. The value is a space-separated list of [link types](https://developer.mozilla.org/en-US/docs/Web/HTML/Link_types).
78
+ */
79
+ "rel"?: string;
80
+ /**
81
+ * The button size.
82
+ */
83
+ "size"?: 'sm' | 'md';
84
+ /**
85
+ * Specifies where to display the linked URL. Only applies when an `href` is provided. Special keywords: `"_blank"`, `"_self"`, `"_parent"`, `"_top"`.
86
+ */
87
+ "target"?: string;
88
+ }
89
+ interface RoadCard {
90
+ /**
91
+ * If `true`, a button tag will be rendered and the card will be tappable.
92
+ */
93
+ "button": boolean;
94
+ /**
95
+ * This attribute instructs browsers to download a URL instead of navigating to it, so the user will be prompted to save it as a local file. If the attribute has a value, it is used as the pre-filled file name in the Save prompt (the user can still change the file name if they want).
96
+ */
97
+ "download"?: string;
98
+ /**
99
+ * Contains a URL or a URL fragment that the hyperlink points to. If this property is set, an anchor tag will be rendered.
100
+ */
101
+ "href"?: string;
102
+ /**
103
+ * Specifies the relationship of the target object to the link object. The value is a space-separated list of [link types](https://developer.mozilla.org/en-US/docs/Web/HTML/Link_types).
104
+ */
105
+ "rel"?: string;
106
+ /**
107
+ * Specifies where to display the linked URL. Only applies when an `href` is provided. Special keywords: `"_blank"`, `"_self"`, `"_parent"`, `"_top"`.
108
+ */
109
+ "target"?: string;
110
+ /**
111
+ * The type of the button. Only used when an `onclick` or `button` property is present.
112
+ */
113
+ "type": 'submit' | 'reset' | 'button';
114
+ /**
115
+ * value of the card
116
+ */
117
+ "value"?: string;
118
+ }
119
+ interface RoadCarousel {
120
+ /**
121
+ * If `true`, show arrows.
122
+ */
123
+ "arrows": boolean;
124
+ /**
125
+ * Get the index of the active slide.
126
+ */
127
+ "getActiveIndex": () => Promise<number>;
128
+ /**
129
+ * Get the index of the previous slide.
130
+ */
131
+ "getPreviousIndex": () => Promise<number>;
132
+ /**
133
+ * Get the Swiper instance. Use this to access the full Swiper API. See https://idangero.us/swiper/api/ for all API options.
134
+ */
135
+ "getSwiper": () => Promise<any>;
136
+ /**
137
+ * Get whether or not the current slide is the first slide.
138
+ */
139
+ "isBeginning": () => Promise<boolean>;
140
+ /**
141
+ * Get whether or not the current slide is the last slide.
142
+ */
143
+ "isEnd": () => Promise<boolean>;
144
+ /**
145
+ * Get the total number of slides.
146
+ */
147
+ "length": () => Promise<number>;
148
+ /**
149
+ * Lock or unlock the ability to slide to the next slide.
150
+ * @param lock If `true`, disable swiping to the next slide.
151
+ */
152
+ "lockSwipeToNext": (lock: boolean) => Promise<void>;
153
+ /**
154
+ * Lock or unlock the ability to slide to the previous slide.
155
+ * @param lock If `true`, disable swiping to the previous slide.
156
+ */
157
+ "lockSwipeToPrev": (lock: boolean) => Promise<void>;
158
+ /**
159
+ * Lock or unlock the ability to slide to the next or previous slide.
160
+ * @param lock If `true`, disable swiping to the next and previous slide.
161
+ */
162
+ "lockSwipes": (lock: boolean) => Promise<void>;
163
+ /**
164
+ * Options to pass to the swiper instance. See http://idangero.us/swiper/api/ for valid options
165
+ */
166
+ "options": any;
167
+ /**
168
+ * If `true`, show the pagination.
169
+ */
170
+ "pager": boolean;
171
+ /**
172
+ * Transition to the next slide.
173
+ * @param speed The transition duration (in ms).
174
+ * @param runCallbacks If true, the transition will produce [Transition/SlideChange][Start/End] transition events.
175
+ */
176
+ "slideNext": (speed?: number | undefined, runCallbacks?: boolean | undefined) => Promise<void>;
177
+ /**
178
+ * Transition to the previous slide.
179
+ * @param speed The transition duration (in ms).
180
+ * @param runCallbacks If true, the transition will produce the [Transition/SlideChange][Start/End] transition events.
181
+ */
182
+ "slidePrev": (speed?: number | undefined, runCallbacks?: boolean | undefined) => Promise<void>;
183
+ /**
184
+ * Transition to the specified slide.
185
+ * @param index The index of the slide to transition to.
186
+ * @param speed The transition duration (in ms).
187
+ * @param runCallbacks If true, the transition will produce [Transition/SlideChange][Start/End] transition events.
188
+ */
189
+ "slideTo": (index: number, speed?: number | undefined, runCallbacks?: boolean | undefined) => Promise<void>;
190
+ /**
191
+ * Start auto play.
192
+ */
193
+ "startAutoplay": () => Promise<void>;
194
+ /**
195
+ * Stop auto play.
196
+ */
197
+ "stopAutoplay": () => Promise<void>;
198
+ /**
199
+ * Update the underlying slider implementation. Call this if you've added or removed child slides.
200
+ */
201
+ "update": () => Promise<void>;
202
+ /**
203
+ * Force swiper to update its height (when autoHeight is enabled) for the duration equal to 'speed' parameter.
204
+ * @param speed The transition duration (in ms).
205
+ */
206
+ "updateAutoHeight": (speed?: number | undefined) => Promise<void>;
207
+ }
208
+ interface RoadCarouselItem {
209
+ }
210
+ interface RoadCheckbox {
211
+ /**
212
+ * The id of checkbox
213
+ */
214
+ "checkboxId": string;
215
+ /**
216
+ * If `true`, the checkbox is selected.
217
+ */
218
+ "checked": boolean;
219
+ /**
220
+ * If `true`, the user cannot interact with the checkbox.
221
+ */
222
+ "disabled": boolean;
223
+ /**
224
+ * Error message for the field
225
+ */
226
+ "error"?: string;
227
+ /**
228
+ * If `true`, the label and the checkbox are inverse and spaced
229
+ */
230
+ "inverse": boolean;
231
+ /**
232
+ * Label for the field
233
+ */
234
+ "label": string;
235
+ /**
236
+ * The name of the control, which is submitted with the form data.
237
+ */
238
+ "name": string;
239
+ /**
240
+ * If `true`, the user must fill in a value before submitting a form.
241
+ */
242
+ "required": boolean;
243
+ /**
244
+ * Value the form will get
245
+ */
246
+ "value": string;
247
+ }
248
+ interface RoadChip {
249
+ /**
250
+ * The color to use from your application's color palette.
251
+ */
252
+ "color"?: 'default' | 'secondary';
253
+ /**
254
+ * Display close icon
255
+ */
256
+ "hasCloseIcon": boolean;
257
+ /**
258
+ * Display an outline style button.
259
+ */
260
+ "outline": boolean;
261
+ /**
262
+ * Display an outline style button.
263
+ */
264
+ "size": 'md' | 'lg';
265
+ }
266
+ interface RoadCol {
267
+ }
268
+ interface RoadCollapse {
269
+ /**
270
+ * if "`true`" the button will be centered
271
+ */
272
+ "centered": boolean;
273
+ /**
274
+ * Set open to true to show the accordion element and to false to hide it.
275
+ */
276
+ "isOpen": boolean;
277
+ /**
278
+ * Text displayed in the button when the content is collapsed
279
+ */
280
+ "showLess": string;
281
+ /**
282
+ * Text displayed in the button when the content is collapsed
283
+ */
284
+ "showMore": string;
285
+ }
286
+ interface RoadCounter {
287
+ /**
288
+ * The id of input
289
+ */
290
+ "inputId": string;
291
+ /**
292
+ * The maximum value, which must not be less than its minimum (min attribute) value.
293
+ */
294
+ "max"?: string;
295
+ /**
296
+ * The minimum value, which must not be greater than its maximum (max attribute) value.
297
+ */
298
+ "min"?: string;
299
+ /**
300
+ * Works with the min and max attributes to limit the increments at which a value can be set. Possible values are: `"any"` or a positive floating point number.
301
+ */
302
+ "step"?: string;
303
+ /**
304
+ * The value of the input.
305
+ */
306
+ "value": number;
307
+ }
308
+ interface RoadDialog {
309
+ /**
310
+ * Close the dialog
311
+ */
312
+ "close": () => Promise<void>;
313
+ /**
314
+ * Set the color of information dialog. e.g. info, success, warning, danger
315
+ */
316
+ "color"?: FeedbackColors;
317
+ /**
318
+ * Content description of the dialog
319
+ */
320
+ "description"?: string;
321
+ /**
322
+ * Show / hide the close icon
323
+ */
324
+ "hasCloseIcon": boolean;
325
+ /**
326
+ * override default icon
327
+ */
328
+ "icon"?: string;
329
+ /**
330
+ * Set isOpen property to true to open the dialog
331
+ */
332
+ "isOpen": boolean;
333
+ /**
334
+ * Text to the top
335
+ */
336
+ "label"?: string;
337
+ /**
338
+ * Open the dialog
339
+ */
340
+ "open": () => Promise<void>;
341
+ }
342
+ interface RoadDrawer {
343
+ /**
344
+ * Return to previous state of the drawer content
345
+ */
346
+ "back": () => Promise<void>;
347
+ /**
348
+ * Show / hide back icon
349
+ */
350
+ "backText"?: string;
351
+ /**
352
+ * Close the drawer
353
+ */
354
+ "close": () => Promise<void>;
355
+ /**
356
+ * Title of the drawer in the header bar
357
+ */
358
+ "drawerTitle"?: string;
359
+ /**
360
+ * Width of the drawer
361
+ */
362
+ "drawerWidth": number;
363
+ /**
364
+ * Show / hide back icon
365
+ */
366
+ "hasBackIcon": boolean;
367
+ /**
368
+ * Show / hide close icon
369
+ */
370
+ "hasCloseIcon": boolean;
371
+ /**
372
+ * Inverse header colors
373
+ */
374
+ "hasInverseHeader": boolean;
375
+ /**
376
+ * Set isOpen property to true to open the drawer
377
+ */
378
+ "isOpen": boolean;
379
+ /**
380
+ * The mode determines which theme styles to use (light / dark).
381
+ */
382
+ "mode"?: "light" | "dark";
383
+ /**
384
+ * Open the drawer
385
+ */
386
+ "open": () => Promise<void>;
387
+ /**
388
+ * position of the drawer. e.g. left, right, bottom
389
+ */
390
+ "position": string;
391
+ }
392
+ interface RoadFlap {
393
+ /**
394
+ * Set the color of the flap.
395
+ */
396
+ "color": 'promo' | 'exclu' | 'info';
397
+ }
398
+ interface RoadGrid {
399
+ }
400
+ interface RoadIcon {
401
+ /**
402
+ * Set the icon to hidden, respectively `true`, to remove it from the accessibility tree.
403
+ */
404
+ "ariaHidden"?: string;
405
+ /**
406
+ * Specifies the label to use for accessibility. Defaults to the icon name.
407
+ */
408
+ "ariaLabel"?: string;
409
+ /**
410
+ * Color of the icon
411
+ */
412
+ "color"?: Color | 'white';
413
+ /**
414
+ * A combination of both `name` and `src`. If a `src` url is detected it will set the `src` property. Otherwise it assumes it's a built-in named SVG and set the `name` property.
415
+ */
416
+ "icon"?: any;
417
+ /**
418
+ * If enabled, road-icon will be loaded lazily when it's visible in the viewport. Default, `false`.
419
+ */
420
+ "lazy": boolean;
421
+ /**
422
+ * Specifies which icon to use from the built-in set of icons.
423
+ */
424
+ "name"?: string;
425
+ /**
426
+ * The rotation of the icon. Available options are: `"90"`, `"180"`, `"270"`.
427
+ */
428
+ "rotate"?: '90' | '180' | '270';
429
+ /**
430
+ * When set to `false`, SVG content that is HTTP fetched will not be checked if the response SVG content has any `<script>` elements, or any attributes that start with `on`, such as `onclick`.
431
+ */
432
+ "sanitize": boolean;
433
+ /**
434
+ * The size of the icon. Available options are: `"sm"`, `"md"`, `"lg"`, `"3x"` and `"4x"`.
435
+ */
436
+ "size"?: 'sm' | 'md' | 'lg' | '3x' | '4x';
437
+ /**
438
+ * Specifies the exact `src` of an SVG file to use.
439
+ */
440
+ "src"?: string;
441
+ }
442
+ interface RoadImg {
443
+ /**
444
+ * This attribute defines the alternative text describing the image. Users will see this text displayed if the image URL is wrong, the image is not in one of the supported formats, or if the image is not yet downloaded.
445
+ */
446
+ "alt"?: string;
447
+ /**
448
+ * The image URL. This attribute is mandatory for the `<img>` element.
449
+ */
450
+ "src"?: string;
451
+ }
452
+ interface RoadInput {
453
+ /**
454
+ * Indicates whether and how the text value should be automatically capitalized as it is entered/edited by the user.
455
+ */
456
+ "autocapitalize": string;
457
+ /**
458
+ * Indicates whether the value of the control can be automatically completed by the browser.
459
+ */
460
+ "autocomplete": AutocompleteTypes;
461
+ /**
462
+ * Whether auto correction should be enabled when the user is entering/editing the text value.
463
+ */
464
+ "autocorrect": 'on' | 'off';
465
+ /**
466
+ * This Boolean attribute lets you specify that a form control should have input focus when the page loads.
467
+ */
468
+ "autofocus": boolean;
469
+ /**
470
+ * If `true`, the user cannot interact with the input.
471
+ */
472
+ "disabled": boolean;
473
+ /**
474
+ * A hint to the browser for which enter key to display. Possible values: `"enter"`, `"done"`, `"go"`, `"next"`, `"previous"`, `"search"`, and `"send"`.
475
+ */
476
+ "enterkeyhint"?: 'enter' | 'done' | 'go' | 'next' | 'previous' | 'search' | 'send';
477
+ /**
478
+ * Error message for the field
479
+ */
480
+ "error"?: string;
481
+ /**
482
+ * The id of input
483
+ */
484
+ "inputId": string;
485
+ /**
486
+ * A hint to the browser for which keyboard to display. This 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"`.
487
+ */
488
+ "inputmode"?: 'none' | 'text' | 'tel' | 'url' | 'email' | 'numeric' | 'decimal' | 'search';
489
+ /**
490
+ * Label for the field
491
+ */
492
+ "label"?: string;
493
+ /**
494
+ * The maximum value, which must not be less than its minimum (min attribute) value.
495
+ */
496
+ "max"?: string;
497
+ /**
498
+ * 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.
499
+ */
500
+ "maxlength"?: number;
501
+ /**
502
+ * The minimum value, which must not be greater than its maximum (max attribute) value.
503
+ */
504
+ "min"?: string;
505
+ /**
506
+ * 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.
507
+ */
508
+ "minlength"?: number;
509
+ /**
510
+ * The name of the control, which is submitted with the form data.
511
+ */
512
+ "name": string;
513
+ /**
514
+ * 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.
515
+ */
516
+ "pattern"?: string;
517
+ /**
518
+ * Instructional text that shows before the input has a value.
519
+ */
520
+ "placeholder"?: string;
521
+ /**
522
+ * If `true`, the user cannot modify the value.
523
+ */
524
+ "readonly": boolean;
525
+ /**
526
+ * If `true`, the user must fill in a value before submitting a form.
527
+ */
528
+ "required": boolean;
529
+ /**
530
+ * 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.
531
+ */
532
+ "size"?: number;
533
+ /**
534
+ * If `true`, the element will have its spelling and grammar checked.
535
+ */
536
+ "spellcheck": boolean;
537
+ /**
538
+ * Works with the min and max attributes to limit the increments at which a value can be set. Possible values are: `"any"` or a positive floating point number.
539
+ */
540
+ "step"?: string;
541
+ /**
542
+ * The type of control to display. The default type is text.
543
+ */
544
+ "type": TextFieldTypes;
545
+ /**
546
+ * The value of the input.
547
+ */
548
+ "value"?: string | number | null;
549
+ }
550
+ interface RoadInputGroup {
551
+ }
552
+ interface RoadItem {
553
+ /**
554
+ * If `true`, display an active state item
555
+ */
556
+ "active"?: boolean;
557
+ /**
558
+ * If `true`, a button tag will be rendered and the item will be tappable.
559
+ */
560
+ "button": boolean;
561
+ /**
562
+ * If `true`, a detail arrow will appear on the item. Defaults to `false` unless the `mode` is `ios` and an `href` or `button` property is present.
563
+ */
564
+ "detail"?: boolean;
565
+ /**
566
+ * The icon to use when `detail` is set to `true`.
567
+ */
568
+ "detailIcon": string;
569
+ /**
570
+ * If `true`, the user cannot interact with the item.
571
+ */
572
+ "disabled": boolean;
573
+ /**
574
+ * This attribute instructs browsers to download a URL instead of navigating to it, so the user will be prompted to save it as a local file. If the attribute has a value, it is used as the pre-filled file name in the Save prompt (the user can still change the file name if they want).
575
+ */
576
+ "download": string | undefined;
577
+ /**
578
+ * Contains a URL or a URL fragment that the hyperlink points to. If this property is set, an anchor tag will be rendered.
579
+ */
580
+ "href": string | undefined;
581
+ /**
582
+ * How the bottom border should be displayed on the item.
583
+ */
584
+ "lines"?: 'full' | 'inset' | 'none';
585
+ /**
586
+ * Specifies the relationship of the target object to the link object. The value is a space-separated list of [link types](https://developer.mozilla.org/en-US/docs/Web/HTML/Link_types).
587
+ */
588
+ "rel": string | undefined;
589
+ /**
590
+ * Specifies where to display the linked URL. Only applies when an `href` is provided. Special keywords: `"_blank"`, `"_self"`, `"_parent"`, `"_top"`.
591
+ */
592
+ "target": string | undefined;
593
+ /**
594
+ * The type of the button. Only used when an `onclick` or `button` property is present.
595
+ */
596
+ "type": 'submit' | 'reset' | 'button';
597
+ }
598
+ interface RoadLabel {
599
+ }
600
+ interface RoadList {
601
+ /**
602
+ * How the bottom border should be displayed on all items.
603
+ */
604
+ "lines"?: 'full' | 'inset' | 'none';
605
+ }
606
+ interface RoadModal {
607
+ /**
608
+ * Close the modal
609
+ */
610
+ "close": () => Promise<void>;
611
+ /**
612
+ * Show / hide close icon
613
+ */
614
+ "hasCloseIcon": boolean;
615
+ /**
616
+ * inverse header colors
617
+ */
618
+ "hasInverseHeader": boolean;
619
+ /**
620
+ * Set isOpen propertie to true to show the modal
621
+ */
622
+ "isOpen": boolean;
623
+ /**
624
+ * Max width of the modal on desktop
625
+ */
626
+ "maxWidth": number;
627
+ /**
628
+ * Title of the modal in the header bar
629
+ */
630
+ "modalTitle"?: string;
631
+ /**
632
+ * Open the modal
633
+ */
634
+ "open": () => Promise<void>;
635
+ }
636
+ interface RoadNavbar {
637
+ /**
638
+ * The selected tab component
639
+ */
640
+ "selectedTab"?: string;
641
+ }
642
+ interface RoadNavbarItem {
643
+ /**
644
+ * If `true`, the user cannot interact with the tab button.
645
+ */
646
+ "disabled": boolean;
647
+ /**
648
+ * This attribute instructs browsers to download a URL instead of navigating to it, so the user will be prompted to save it as a local file. If the attribute has a value, it is used as the pre-filled file name in the Save prompt (the user can still change the file name if they want).
649
+ */
650
+ "download": string | undefined;
651
+ /**
652
+ * Contains a URL or a URL fragment that the hyperlink points to. If this property is set, an anchor tag will be rendered.
653
+ */
654
+ "href": string | undefined;
655
+ /**
656
+ * Specifies the relationship of the target object to the link object. The value is a space-separated list of [link types](https://developer.mozilla.org/en-US/docs/Web/HTML/Link_types).
657
+ */
658
+ "rel": string | undefined;
659
+ /**
660
+ * The selected tab component
661
+ */
662
+ "selected": boolean;
663
+ /**
664
+ * A tab id must be provided for each `road-tab`. It's used internally to reference the selected tab.
665
+ */
666
+ "tab"?: string;
667
+ /**
668
+ * Specifies where to display the linked URL. Only applies when an `href` is provided. Special keywords: `"_blank"`, `"_self"`, `"_parent"`, `"_top"`.
669
+ */
670
+ "target": string | undefined;
671
+ }
672
+ interface RoadPlateNumber {
673
+ /**
674
+ * country of the plate
675
+ */
676
+ "country": 'FR' | 'BE' | 'IT' | 'ES' | 'PT' | 'PL';
677
+ /**
678
+ * overwrite the default placeholder
679
+ */
680
+ "placeholder"?: string;
681
+ /**
682
+ * The value of the input.
683
+ */
684
+ "value"?: string | number | null;
685
+ }
686
+ interface RoadProgress {
687
+ /**
688
+ * The color to use from your application's color palette.
689
+ */
690
+ "color": FeedbackColors;
691
+ /**
692
+ * The value determines how much of the active bar should display. The value should be between [0, 100].
693
+ */
694
+ "value": number;
695
+ }
696
+ interface RoadRadio {
697
+ /**
698
+ * If `true`, the user cannot interact with the radio.
699
+ */
700
+ "disabled": boolean;
701
+ /**
702
+ * Error message for the field
703
+ */
704
+ "error"?: boolean;
705
+ /**
706
+ * Inline multiple radio
707
+ */
708
+ "inline": boolean;
709
+ /**
710
+ * If `true`, the label and the radio are inverse and spaced
711
+ */
712
+ "inverse": boolean;
713
+ /**
714
+ * Label for the field
715
+ */
716
+ "label": string;
717
+ /**
718
+ * The name of the control, which is submitted with the form data.
719
+ */
720
+ "name": string;
721
+ /**
722
+ * The id of radio
723
+ */
724
+ "radioId": string;
725
+ /**
726
+ * If `true`, the user must fill in a value before submitting a form.
727
+ */
728
+ "required": boolean;
729
+ /**
730
+ * Value the form will get
731
+ */
732
+ "value"?: any | null;
733
+ }
734
+ interface RoadRadioGroup {
735
+ /**
736
+ * If `true`, the radios can be deselected.
737
+ */
738
+ "allowEmptySelection": boolean;
739
+ /**
740
+ * Label for the field
741
+ */
742
+ "ariaLabel": string;
743
+ /**
744
+ * add an asterisk to the label of the field
745
+ */
746
+ "asterisk"?: boolean;
747
+ /**
748
+ * Error message for the radio group
749
+ */
750
+ "error"?: string;
751
+ /**
752
+ * Label for the field
753
+ */
754
+ "label"?: string;
755
+ /**
756
+ * The name of the control, which is submitted with the form data.
757
+ */
758
+ "name": string;
759
+ /**
760
+ * The id of checkbox
761
+ */
762
+ "radioGroupId": string;
763
+ /**
764
+ * the value of the radio group.
765
+ */
766
+ "value"?: any | null;
767
+ }
768
+ interface RoadRange {
769
+ /**
770
+ * The maximum value, which must not be less than its minimum (min attribute) value.
771
+ */
772
+ "max": string;
773
+ /**
774
+ * The minimum value, which must not be greater than its maximum (max attribute) value.
775
+ */
776
+ "min": string;
777
+ /**
778
+ * The id of range
779
+ */
780
+ "rangeId": string;
781
+ /**
782
+ * Display the current value of the range
783
+ */
784
+ "showValue": boolean;
785
+ /**
786
+ * Works with the min and max attributes to limit the increments at which a value can be set. Possible values are: `"any"` or a positive floating point number.
787
+ */
788
+ "step"?: string;
789
+ /**
790
+ * The value of the range.
791
+ */
792
+ "value"?: string | number | null;
793
+ }
794
+ interface RoadRating {
795
+ /**
796
+ * Rate review between 0 and 5
797
+ */
798
+ "rate": number;
799
+ /**
800
+ * number of reviews
801
+ */
802
+ "reviews": number;
803
+ /**
804
+ * Word display next to the number of reviews.
805
+ */
806
+ "reviewsText": string;
807
+ }
808
+ interface RoadRow {
809
+ }
810
+ interface RoadSelect {
811
+ /**
812
+ * This Boolean attribute lets you specify that a form control should have input focus when the page loads.
813
+ */
814
+ "autofocus": boolean;
815
+ /**
816
+ * If `true`, the user cannot interact with the select.
817
+ */
818
+ "disabled": boolean;
819
+ /**
820
+ * Error message for the field
821
+ */
822
+ "error"?: string;
823
+ /**
824
+ * Label for the field
825
+ */
826
+ "label": string;
827
+ /**
828
+ * The name of the control, which is submitted with the form data.
829
+ */
830
+ "name": string;
831
+ /**
832
+ * List of options of the select
833
+ */
834
+ "options": Array<{
835
+ value: string | number;
836
+ label: string;
837
+ selected?: boolean;
838
+ }>;
839
+ /**
840
+ * If `true`, the user must fill in a value before submitting a form.
841
+ */
842
+ "required": boolean;
843
+ /**
844
+ * The id of select
845
+ */
846
+ "selectId": string;
847
+ /**
848
+ * If the control is presented as a scrolling list box (e.g. when multiple is specified), this attribute represents the number of rows in the list that should be visible at one time.
849
+ */
850
+ "size": number;
851
+ /**
852
+ * the value of the select.
853
+ */
854
+ "value"?: any | null;
855
+ }
856
+ interface RoadSkeleton {
857
+ }
858
+ interface RoadSpinner {
859
+ }
860
+ interface RoadSwitch {
861
+ /**
862
+ * If `true`, the toggle is selected.
863
+ */
864
+ "checked": boolean;
865
+ /**
866
+ * Set the color of alert. e.g. info, success, warning, danger
867
+ */
868
+ "color"?: 'secondary' | FeedbackColors;
869
+ /**
870
+ * If `true`, the user cannot interact with the toggle.
871
+ */
872
+ "disabled": boolean;
873
+ /**
874
+ * If `true`, the label is at left of the switch
875
+ */
876
+ "hasLeftLabel": boolean;
877
+ /**
878
+ * Add space between label and switch element
879
+ */
880
+ "isSpaced": boolean;
881
+ /**
882
+ * Label for the field
883
+ */
884
+ "label": string;
885
+ /**
886
+ * The name of the control, which is submitted with the form data.
887
+ */
888
+ "name": string;
889
+ /**
890
+ * Text display for "`off`" state in the switch lever
891
+ */
892
+ "off": string;
893
+ /**
894
+ * Text display for "`on`" state in the switch lever
895
+ */
896
+ "on": string;
897
+ /**
898
+ * The id of input
899
+ */
900
+ "switchId": string;
901
+ /**
902
+ * Value the form will get
903
+ */
904
+ "value": string;
905
+ }
906
+ interface RoadTab {
907
+ "active": boolean;
908
+ /**
909
+ * Set the active component for the tab
910
+ */
911
+ "setActive": () => Promise<void>;
912
+ /**
913
+ * A tab id must be provided for each `road-tab`. It's used internally to reference the selected tab or by the router to switch between them.
914
+ */
915
+ "tab": string;
916
+ }
917
+ interface RoadTabBar {
918
+ /**
919
+ * Set to `true` to center buttons in the bar.
920
+ */
921
+ "center": boolean;
922
+ /**
923
+ * Set to `true` to expand buttons width to take the full size of the bar.
924
+ */
925
+ "expand": boolean;
926
+ /**
927
+ * The selected tab component
928
+ */
929
+ "selectedTab"?: string;
930
+ }
931
+ interface RoadTabButton {
932
+ /**
933
+ * This attribute instructs browsers to download a URL instead of navigating to it, so the user will be prompted to save it as a local file. If the attribute has a value, it is used as the pre-filled file name in the Save prompt (the user can still change the file name if they want).
934
+ */
935
+ "download": string | undefined;
936
+ /**
937
+ * Contains a URL or a URL fragment that the hyperlink points to. If this property is set, an anchor tag will be rendered.
938
+ */
939
+ "href": string | undefined;
940
+ /**
941
+ * Set the layout of the text and icon in the tab bar. It defaults to `'icon-top'`.
942
+ */
943
+ "layout"?: 'icon-start' | 'icon-top';
944
+ /**
945
+ * Specifies the relationship of the target object to the link object. The value is a space-separated list of [link types](https://developer.mozilla.org/en-US/docs/Web/HTML/Link_types).
946
+ */
947
+ "rel": string | undefined;
948
+ /**
949
+ * The selected tab component
950
+ */
951
+ "selected": boolean;
952
+ /**
953
+ * A tab id must be provided for each `road-tab`. It's used internally to reference
954
+ */
955
+ "tab"?: string;
956
+ /**
957
+ * Specifies where to display the linked URL. Only applies when an `href` is provided. Special keywords: `"_blank"`, `"_self"`, `"_parent"`, `"_top"`.
958
+ */
959
+ "target": string | undefined;
960
+ }
961
+ interface RoadTable {
962
+ }
963
+ interface RoadTabs {
964
+ /**
965
+ * Get the currently selected tab.
966
+ */
967
+ "getSelected": () => Promise<string | undefined>;
968
+ /**
969
+ * Get a specific tab by the value of its `tab` property or an element reference.
970
+ * @param tab The tab instance to select. If passed a string, it should be the value of the tab's `tab` property.
971
+ */
972
+ "getTab": (tab: string | HTMLRoadTabElement) => Promise<HTMLRoadTabElement | undefined>;
973
+ /**
974
+ * Select a tab by the value of its `tab` property or an element reference.
975
+ * @param tab The tab instance to select. If passed a string, it should be the value of the tab's `tab` property.
976
+ */
977
+ "select": (tab: string | HTMLRoadTabElement) => Promise<boolean>;
978
+ }
979
+ interface RoadText {
980
+ /**
981
+ * Color of the text.
982
+ */
983
+ "color"?: 'primary' | 'secondary' | 'accent' | 'info' | 'success' | 'warning' | 'danger' | 'default' | 'default-second' | 'disabled' | 'white';
984
+ }
985
+ interface RoadTextarea {
986
+ /**
987
+ * Indicates whether and how the text value should be automatically capitalized as it is entered/edited by the user.
988
+ */
989
+ "autocapitalize": string;
990
+ /**
991
+ * This Boolean attribute lets you specify that a form control should have input focus when the page loads.
992
+ */
993
+ "autofocus": boolean;
994
+ /**
995
+ * The visible width of the text control, in average character widths. If it is specified, it must be a positive integer.
996
+ */
997
+ "cols"?: number;
998
+ /**
999
+ * If `true`, the user cannot interact with the input.
1000
+ */
1001
+ "disabled": boolean;
1002
+ /**
1003
+ * A hint to the browser for which enter key to display. Possible values: `"enter"`, `"done"`, `"go"`, `"next"`, `"previous"`, `"search"`, and `"send"`.
1004
+ */
1005
+ "enterkeyhint"?: 'enter' | 'done' | 'go' | 'next' | 'previous' | 'search' | 'send';
1006
+ /**
1007
+ * Error message for the field
1008
+ */
1009
+ "error"?: string;
1010
+ /**
1011
+ * A hint to the browser for which keyboard to display. This 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"`.
1012
+ */
1013
+ "inputmode"?: 'none' | 'text' | 'tel' | 'url' | 'email' | 'numeric' | 'decimal' | 'search';
1014
+ /**
1015
+ * Label for the field
1016
+ */
1017
+ "label": string;
1018
+ /**
1019
+ * 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.
1020
+ */
1021
+ "maxlength"?: number;
1022
+ /**
1023
+ * 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.
1024
+ */
1025
+ "minlength"?: number;
1026
+ /**
1027
+ * The name of the control, which is submitted with the form data.
1028
+ */
1029
+ "name": string;
1030
+ /**
1031
+ * Instructional text that shows before the input has a value.
1032
+ */
1033
+ "placeholder"?: string;
1034
+ /**
1035
+ * If `true`, the user cannot modify the value.
1036
+ */
1037
+ "readonly": boolean;
1038
+ /**
1039
+ * If `true`, the user must fill in a value before submitting a form.
1040
+ */
1041
+ "required": boolean;
1042
+ /**
1043
+ * The number of rows of the control.
1044
+ */
1045
+ "rows"?: number;
1046
+ /**
1047
+ * If `true`, the element will have its spelling and grammar checked.
1048
+ */
1049
+ "spellcheck": boolean;
1050
+ /**
1051
+ * The id of input
1052
+ */
1053
+ "textareaId": string;
1054
+ /**
1055
+ * The value of the input.
1056
+ */
1057
+ "value"?: string | null;
1058
+ /**
1059
+ * Indicates how the control wraps text.
1060
+ */
1061
+ "wrap"?: 'hard' | 'soft' | 'off';
1062
+ }
1063
+ interface RoadToast {
1064
+ /**
1065
+ * Close the toast
1066
+ */
1067
+ "close": () => Promise<void>;
1068
+ /**
1069
+ * Set the color of toast. e.g. info, success, warning, danger
1070
+ */
1071
+ "color": FeedbackColors;
1072
+ /**
1073
+ * Set open propertie to true to show the toast
1074
+ */
1075
+ "isOpen": boolean;
1076
+ /**
1077
+ * Text display in the toast
1078
+ */
1079
+ "label"?: string;
1080
+ /**
1081
+ * Open the toast
1082
+ */
1083
+ "open": () => Promise<void>;
1084
+ /**
1085
+ * position of the toast.
1086
+ */
1087
+ "position": 'top' | 'bottom';
1088
+ /**
1089
+ * How many milliseconds to wait before hiding the toast. if `"0"`, it will show until `close()` is called.
1090
+ */
1091
+ "timeout": number;
1092
+ }
1093
+ interface RoadToolbar {
1094
+ /**
1095
+ * Background color of the toolbar
1096
+ */
1097
+ "color"?: 'primary' | 'secondary';
1098
+ }
1099
+ interface RoadToolbarTitle {
1100
+ }
1101
+ interface RoadTooltip {
1102
+ /**
1103
+ * Shows the tooltip.
1104
+ */
1105
+ "close": () => Promise<void>;
1106
+ /**
1107
+ * The tooltip's content.
1108
+ */
1109
+ "content": string;
1110
+ /**
1111
+ * Indicates whether or not the tooltip is open. You can use this or the open/close methods.
1112
+ */
1113
+ "isOpen": boolean;
1114
+ /**
1115
+ * Shows the tooltip.
1116
+ */
1117
+ "open": () => Promise<void>;
1118
+ /**
1119
+ * The position of the tooltip.
1120
+ */
1121
+ "position": | 'top'
1122
+ | 'right'
1123
+ | 'bottom'
1124
+ | 'left';
1125
+ /**
1126
+ * The id of tooltip
1127
+ */
1128
+ "tooltipId": string;
1129
+ /**
1130
+ * Controls how the tooltip is activated. Possible options include `click`, `hover`. Multiple options can be passed by separating them with a space. When manual is used, the tooltip must be activated programmatically.
1131
+ */
1132
+ "trigger": string;
1133
+ }
1134
+ }
1135
+ declare global {
1136
+ interface HTMLRoadAccordionElement extends Components.RoadAccordion, HTMLStencilElement {
1137
+ }
1138
+ var HTMLRoadAccordionElement: {
1139
+ prototype: HTMLRoadAccordionElement;
1140
+ new (): HTMLRoadAccordionElement;
1141
+ };
1142
+ interface HTMLRoadAlertElement extends Components.RoadAlert, HTMLStencilElement {
1143
+ }
1144
+ var HTMLRoadAlertElement: {
1145
+ prototype: HTMLRoadAlertElement;
1146
+ new (): HTMLRoadAlertElement;
1147
+ };
1148
+ interface HTMLRoadAutocompleteElement extends Components.RoadAutocomplete, HTMLStencilElement {
1149
+ }
1150
+ var HTMLRoadAutocompleteElement: {
1151
+ prototype: HTMLRoadAutocompleteElement;
1152
+ new (): HTMLRoadAutocompleteElement;
1153
+ };
1154
+ interface HTMLRoadAvatarElement extends Components.RoadAvatar, HTMLStencilElement {
1155
+ }
1156
+ var HTMLRoadAvatarElement: {
1157
+ prototype: HTMLRoadAvatarElement;
1158
+ new (): HTMLRoadAvatarElement;
1159
+ };
1160
+ interface HTMLRoadBadgeElement extends Components.RoadBadge, HTMLStencilElement {
1161
+ }
1162
+ var HTMLRoadBadgeElement: {
1163
+ prototype: HTMLRoadBadgeElement;
1164
+ new (): HTMLRoadBadgeElement;
1165
+ };
1166
+ interface HTMLRoadButtonElement extends Components.RoadButton, HTMLStencilElement {
1167
+ }
1168
+ var HTMLRoadButtonElement: {
1169
+ prototype: HTMLRoadButtonElement;
1170
+ new (): HTMLRoadButtonElement;
1171
+ };
1172
+ interface HTMLRoadCardElement extends Components.RoadCard, HTMLStencilElement {
1173
+ }
1174
+ var HTMLRoadCardElement: {
1175
+ prototype: HTMLRoadCardElement;
1176
+ new (): HTMLRoadCardElement;
1177
+ };
1178
+ interface HTMLRoadCarouselElement extends Components.RoadCarousel, HTMLStencilElement {
1179
+ }
1180
+ var HTMLRoadCarouselElement: {
1181
+ prototype: HTMLRoadCarouselElement;
1182
+ new (): HTMLRoadCarouselElement;
1183
+ };
1184
+ interface HTMLRoadCarouselItemElement extends Components.RoadCarouselItem, HTMLStencilElement {
1185
+ }
1186
+ var HTMLRoadCarouselItemElement: {
1187
+ prototype: HTMLRoadCarouselItemElement;
1188
+ new (): HTMLRoadCarouselItemElement;
1189
+ };
1190
+ interface HTMLRoadCheckboxElement extends Components.RoadCheckbox, HTMLStencilElement {
1191
+ }
1192
+ var HTMLRoadCheckboxElement: {
1193
+ prototype: HTMLRoadCheckboxElement;
1194
+ new (): HTMLRoadCheckboxElement;
1195
+ };
1196
+ interface HTMLRoadChipElement extends Components.RoadChip, HTMLStencilElement {
1197
+ }
1198
+ var HTMLRoadChipElement: {
1199
+ prototype: HTMLRoadChipElement;
1200
+ new (): HTMLRoadChipElement;
1201
+ };
1202
+ interface HTMLRoadColElement extends Components.RoadCol, HTMLStencilElement {
1203
+ }
1204
+ var HTMLRoadColElement: {
1205
+ prototype: HTMLRoadColElement;
1206
+ new (): HTMLRoadColElement;
1207
+ };
1208
+ interface HTMLRoadCollapseElement extends Components.RoadCollapse, HTMLStencilElement {
1209
+ }
1210
+ var HTMLRoadCollapseElement: {
1211
+ prototype: HTMLRoadCollapseElement;
1212
+ new (): HTMLRoadCollapseElement;
1213
+ };
1214
+ interface HTMLRoadCounterElement extends Components.RoadCounter, HTMLStencilElement {
1215
+ }
1216
+ var HTMLRoadCounterElement: {
1217
+ prototype: HTMLRoadCounterElement;
1218
+ new (): HTMLRoadCounterElement;
1219
+ };
1220
+ interface HTMLRoadDialogElement extends Components.RoadDialog, HTMLStencilElement {
1221
+ }
1222
+ var HTMLRoadDialogElement: {
1223
+ prototype: HTMLRoadDialogElement;
1224
+ new (): HTMLRoadDialogElement;
1225
+ };
1226
+ interface HTMLRoadDrawerElement extends Components.RoadDrawer, HTMLStencilElement {
1227
+ }
1228
+ var HTMLRoadDrawerElement: {
1229
+ prototype: HTMLRoadDrawerElement;
1230
+ new (): HTMLRoadDrawerElement;
1231
+ };
1232
+ interface HTMLRoadFlapElement extends Components.RoadFlap, HTMLStencilElement {
1233
+ }
1234
+ var HTMLRoadFlapElement: {
1235
+ prototype: HTMLRoadFlapElement;
1236
+ new (): HTMLRoadFlapElement;
1237
+ };
1238
+ interface HTMLRoadGridElement extends Components.RoadGrid, HTMLStencilElement {
1239
+ }
1240
+ var HTMLRoadGridElement: {
1241
+ prototype: HTMLRoadGridElement;
1242
+ new (): HTMLRoadGridElement;
1243
+ };
1244
+ interface HTMLRoadIconElement extends Components.RoadIcon, HTMLStencilElement {
1245
+ }
1246
+ var HTMLRoadIconElement: {
1247
+ prototype: HTMLRoadIconElement;
1248
+ new (): HTMLRoadIconElement;
1249
+ };
1250
+ interface HTMLRoadImgElement extends Components.RoadImg, HTMLStencilElement {
1251
+ }
1252
+ var HTMLRoadImgElement: {
1253
+ prototype: HTMLRoadImgElement;
1254
+ new (): HTMLRoadImgElement;
1255
+ };
1256
+ interface HTMLRoadInputElement extends Components.RoadInput, HTMLStencilElement {
1257
+ }
1258
+ var HTMLRoadInputElement: {
1259
+ prototype: HTMLRoadInputElement;
1260
+ new (): HTMLRoadInputElement;
1261
+ };
1262
+ interface HTMLRoadInputGroupElement extends Components.RoadInputGroup, HTMLStencilElement {
1263
+ }
1264
+ var HTMLRoadInputGroupElement: {
1265
+ prototype: HTMLRoadInputGroupElement;
1266
+ new (): HTMLRoadInputGroupElement;
1267
+ };
1268
+ interface HTMLRoadItemElement extends Components.RoadItem, HTMLStencilElement {
1269
+ }
1270
+ var HTMLRoadItemElement: {
1271
+ prototype: HTMLRoadItemElement;
1272
+ new (): HTMLRoadItemElement;
1273
+ };
1274
+ interface HTMLRoadLabelElement extends Components.RoadLabel, HTMLStencilElement {
1275
+ }
1276
+ var HTMLRoadLabelElement: {
1277
+ prototype: HTMLRoadLabelElement;
1278
+ new (): HTMLRoadLabelElement;
1279
+ };
1280
+ interface HTMLRoadListElement extends Components.RoadList, HTMLStencilElement {
1281
+ }
1282
+ var HTMLRoadListElement: {
1283
+ prototype: HTMLRoadListElement;
1284
+ new (): HTMLRoadListElement;
1285
+ };
1286
+ interface HTMLRoadModalElement extends Components.RoadModal, HTMLStencilElement {
1287
+ }
1288
+ var HTMLRoadModalElement: {
1289
+ prototype: HTMLRoadModalElement;
1290
+ new (): HTMLRoadModalElement;
1291
+ };
1292
+ interface HTMLRoadNavbarElement extends Components.RoadNavbar, HTMLStencilElement {
1293
+ }
1294
+ var HTMLRoadNavbarElement: {
1295
+ prototype: HTMLRoadNavbarElement;
1296
+ new (): HTMLRoadNavbarElement;
1297
+ };
1298
+ interface HTMLRoadNavbarItemElement extends Components.RoadNavbarItem, HTMLStencilElement {
1299
+ }
1300
+ var HTMLRoadNavbarItemElement: {
1301
+ prototype: HTMLRoadNavbarItemElement;
1302
+ new (): HTMLRoadNavbarItemElement;
1303
+ };
1304
+ interface HTMLRoadPlateNumberElement extends Components.RoadPlateNumber, HTMLStencilElement {
1305
+ }
1306
+ var HTMLRoadPlateNumberElement: {
1307
+ prototype: HTMLRoadPlateNumberElement;
1308
+ new (): HTMLRoadPlateNumberElement;
1309
+ };
1310
+ interface HTMLRoadProgressElement extends Components.RoadProgress, HTMLStencilElement {
1311
+ }
1312
+ var HTMLRoadProgressElement: {
1313
+ prototype: HTMLRoadProgressElement;
1314
+ new (): HTMLRoadProgressElement;
1315
+ };
1316
+ interface HTMLRoadRadioElement extends Components.RoadRadio, HTMLStencilElement {
1317
+ }
1318
+ var HTMLRoadRadioElement: {
1319
+ prototype: HTMLRoadRadioElement;
1320
+ new (): HTMLRoadRadioElement;
1321
+ };
1322
+ interface HTMLRoadRadioGroupElement extends Components.RoadRadioGroup, HTMLStencilElement {
1323
+ }
1324
+ var HTMLRoadRadioGroupElement: {
1325
+ prototype: HTMLRoadRadioGroupElement;
1326
+ new (): HTMLRoadRadioGroupElement;
1327
+ };
1328
+ interface HTMLRoadRangeElement extends Components.RoadRange, HTMLStencilElement {
1329
+ }
1330
+ var HTMLRoadRangeElement: {
1331
+ prototype: HTMLRoadRangeElement;
1332
+ new (): HTMLRoadRangeElement;
1333
+ };
1334
+ interface HTMLRoadRatingElement extends Components.RoadRating, HTMLStencilElement {
1335
+ }
1336
+ var HTMLRoadRatingElement: {
1337
+ prototype: HTMLRoadRatingElement;
1338
+ new (): HTMLRoadRatingElement;
1339
+ };
1340
+ interface HTMLRoadRowElement extends Components.RoadRow, HTMLStencilElement {
1341
+ }
1342
+ var HTMLRoadRowElement: {
1343
+ prototype: HTMLRoadRowElement;
1344
+ new (): HTMLRoadRowElement;
1345
+ };
1346
+ interface HTMLRoadSelectElement extends Components.RoadSelect, HTMLStencilElement {
1347
+ }
1348
+ var HTMLRoadSelectElement: {
1349
+ prototype: HTMLRoadSelectElement;
1350
+ new (): HTMLRoadSelectElement;
1351
+ };
1352
+ interface HTMLRoadSkeletonElement extends Components.RoadSkeleton, HTMLStencilElement {
1353
+ }
1354
+ var HTMLRoadSkeletonElement: {
1355
+ prototype: HTMLRoadSkeletonElement;
1356
+ new (): HTMLRoadSkeletonElement;
1357
+ };
1358
+ interface HTMLRoadSpinnerElement extends Components.RoadSpinner, HTMLStencilElement {
1359
+ }
1360
+ var HTMLRoadSpinnerElement: {
1361
+ prototype: HTMLRoadSpinnerElement;
1362
+ new (): HTMLRoadSpinnerElement;
1363
+ };
1364
+ interface HTMLRoadSwitchElement extends Components.RoadSwitch, HTMLStencilElement {
1365
+ }
1366
+ var HTMLRoadSwitchElement: {
1367
+ prototype: HTMLRoadSwitchElement;
1368
+ new (): HTMLRoadSwitchElement;
1369
+ };
1370
+ interface HTMLRoadTabElement extends Components.RoadTab, HTMLStencilElement {
1371
+ }
1372
+ var HTMLRoadTabElement: {
1373
+ prototype: HTMLRoadTabElement;
1374
+ new (): HTMLRoadTabElement;
1375
+ };
1376
+ interface HTMLRoadTabBarElement extends Components.RoadTabBar, HTMLStencilElement {
1377
+ }
1378
+ var HTMLRoadTabBarElement: {
1379
+ prototype: HTMLRoadTabBarElement;
1380
+ new (): HTMLRoadTabBarElement;
1381
+ };
1382
+ interface HTMLRoadTabButtonElement extends Components.RoadTabButton, HTMLStencilElement {
1383
+ }
1384
+ var HTMLRoadTabButtonElement: {
1385
+ prototype: HTMLRoadTabButtonElement;
1386
+ new (): HTMLRoadTabButtonElement;
1387
+ };
1388
+ interface HTMLRoadTableElement extends Components.RoadTable, HTMLStencilElement {
1389
+ }
1390
+ var HTMLRoadTableElement: {
1391
+ prototype: HTMLRoadTableElement;
1392
+ new (): HTMLRoadTableElement;
1393
+ };
1394
+ interface HTMLRoadTabsElement extends Components.RoadTabs, HTMLStencilElement {
1395
+ }
1396
+ var HTMLRoadTabsElement: {
1397
+ prototype: HTMLRoadTabsElement;
1398
+ new (): HTMLRoadTabsElement;
1399
+ };
1400
+ interface HTMLRoadTextElement extends Components.RoadText, HTMLStencilElement {
1401
+ }
1402
+ var HTMLRoadTextElement: {
1403
+ prototype: HTMLRoadTextElement;
1404
+ new (): HTMLRoadTextElement;
1405
+ };
1406
+ interface HTMLRoadTextareaElement extends Components.RoadTextarea, HTMLStencilElement {
1407
+ }
1408
+ var HTMLRoadTextareaElement: {
1409
+ prototype: HTMLRoadTextareaElement;
1410
+ new (): HTMLRoadTextareaElement;
1411
+ };
1412
+ interface HTMLRoadToastElement extends Components.RoadToast, HTMLStencilElement {
1413
+ }
1414
+ var HTMLRoadToastElement: {
1415
+ prototype: HTMLRoadToastElement;
1416
+ new (): HTMLRoadToastElement;
1417
+ };
1418
+ interface HTMLRoadToolbarElement extends Components.RoadToolbar, HTMLStencilElement {
1419
+ }
1420
+ var HTMLRoadToolbarElement: {
1421
+ prototype: HTMLRoadToolbarElement;
1422
+ new (): HTMLRoadToolbarElement;
1423
+ };
1424
+ interface HTMLRoadToolbarTitleElement extends Components.RoadToolbarTitle, HTMLStencilElement {
1425
+ }
1426
+ var HTMLRoadToolbarTitleElement: {
1427
+ prototype: HTMLRoadToolbarTitleElement;
1428
+ new (): HTMLRoadToolbarTitleElement;
1429
+ };
1430
+ interface HTMLRoadTooltipElement extends Components.RoadTooltip, HTMLStencilElement {
1431
+ }
1432
+ var HTMLRoadTooltipElement: {
1433
+ prototype: HTMLRoadTooltipElement;
1434
+ new (): HTMLRoadTooltipElement;
1435
+ };
1436
+ interface HTMLElementTagNameMap {
1437
+ "road-accordion": HTMLRoadAccordionElement;
1438
+ "road-alert": HTMLRoadAlertElement;
1439
+ "road-autocomplete": HTMLRoadAutocompleteElement;
1440
+ "road-avatar": HTMLRoadAvatarElement;
1441
+ "road-badge": HTMLRoadBadgeElement;
1442
+ "road-button": HTMLRoadButtonElement;
1443
+ "road-card": HTMLRoadCardElement;
1444
+ "road-carousel": HTMLRoadCarouselElement;
1445
+ "road-carousel-item": HTMLRoadCarouselItemElement;
1446
+ "road-checkbox": HTMLRoadCheckboxElement;
1447
+ "road-chip": HTMLRoadChipElement;
1448
+ "road-col": HTMLRoadColElement;
1449
+ "road-collapse": HTMLRoadCollapseElement;
1450
+ "road-counter": HTMLRoadCounterElement;
1451
+ "road-dialog": HTMLRoadDialogElement;
1452
+ "road-drawer": HTMLRoadDrawerElement;
1453
+ "road-flap": HTMLRoadFlapElement;
1454
+ "road-grid": HTMLRoadGridElement;
1455
+ "road-icon": HTMLRoadIconElement;
1456
+ "road-img": HTMLRoadImgElement;
1457
+ "road-input": HTMLRoadInputElement;
1458
+ "road-input-group": HTMLRoadInputGroupElement;
1459
+ "road-item": HTMLRoadItemElement;
1460
+ "road-label": HTMLRoadLabelElement;
1461
+ "road-list": HTMLRoadListElement;
1462
+ "road-modal": HTMLRoadModalElement;
1463
+ "road-navbar": HTMLRoadNavbarElement;
1464
+ "road-navbar-item": HTMLRoadNavbarItemElement;
1465
+ "road-plate-number": HTMLRoadPlateNumberElement;
1466
+ "road-progress": HTMLRoadProgressElement;
1467
+ "road-radio": HTMLRoadRadioElement;
1468
+ "road-radio-group": HTMLRoadRadioGroupElement;
1469
+ "road-range": HTMLRoadRangeElement;
1470
+ "road-rating": HTMLRoadRatingElement;
1471
+ "road-row": HTMLRoadRowElement;
1472
+ "road-select": HTMLRoadSelectElement;
1473
+ "road-skeleton": HTMLRoadSkeletonElement;
1474
+ "road-spinner": HTMLRoadSpinnerElement;
1475
+ "road-switch": HTMLRoadSwitchElement;
1476
+ "road-tab": HTMLRoadTabElement;
1477
+ "road-tab-bar": HTMLRoadTabBarElement;
1478
+ "road-tab-button": HTMLRoadTabButtonElement;
1479
+ "road-table": HTMLRoadTableElement;
1480
+ "road-tabs": HTMLRoadTabsElement;
1481
+ "road-text": HTMLRoadTextElement;
1482
+ "road-textarea": HTMLRoadTextareaElement;
1483
+ "road-toast": HTMLRoadToastElement;
1484
+ "road-toolbar": HTMLRoadToolbarElement;
1485
+ "road-toolbar-title": HTMLRoadToolbarTitleElement;
1486
+ "road-tooltip": HTMLRoadTooltipElement;
1487
+ }
1488
+ }
1489
+ declare namespace LocalJSX {
1490
+ interface RoadAccordion {
1491
+ /**
1492
+ * Set open to true to show the accordion element and to false to hide it.
1493
+ */
1494
+ "isOpen"?: boolean;
1495
+ }
1496
+ interface RoadAlert {
1497
+ /**
1498
+ * Set the color of alert. e.g. info, success, warning, danger
1499
+ */
1500
+ "color"?: FeedbackColors;
1501
+ }
1502
+ interface RoadAutocomplete {
1503
+ /**
1504
+ * If `true`, the user can't submit custom value
1505
+ */
1506
+ "onlySelect"?: boolean;
1507
+ /**
1508
+ * List of options of the select
1509
+ */
1510
+ "options"?: Array<{
1511
+ value: string | number;
1512
+ label: string;
1513
+ }>;
1514
+ }
1515
+ interface RoadAvatar {
1516
+ }
1517
+ interface RoadBadge {
1518
+ /**
1519
+ * if `true` the badge will be displayed has a little bubble
1520
+ */
1521
+ "bubble"?: boolean;
1522
+ /**
1523
+ * Color of the badge
1524
+ */
1525
+ "color"?: Color;
1526
+ }
1527
+ interface RoadButton {
1528
+ /**
1529
+ * The type of the button.
1530
+ */
1531
+ "buttonType"?: 'submit' | 'reset' | 'button';
1532
+ /**
1533
+ * The color to use from your application's color palette.
1534
+ */
1535
+ "color"?: Color;
1536
+ /**
1537
+ * If `true`, the user cannot interact with the button.
1538
+ */
1539
+ "disabled"?: boolean;
1540
+ /**
1541
+ * This attribute instructs browsers to download a URL instead of navigating to it, so the user will be prompted to save it as a local file. If the attribute has a value, it is used as the pre-filled file name in the Save prompt (the user can still change the file name if they want).
1542
+ */
1543
+ "download"?: string | undefined;
1544
+ /**
1545
+ * Set to `true` for a full-width button.
1546
+ */
1547
+ "expand"?: boolean;
1548
+ /**
1549
+ * Contains a URL or a URL fragment that the hyperlink points to. If this property is set, an anchor tag will be rendered.
1550
+ */
1551
+ "href"?: string;
1552
+ /**
1553
+ * Emitted when the button loses focus.
1554
+ */
1555
+ "onRoadBlur"?: (event: CustomEvent<void>) => void;
1556
+ /**
1557
+ * Emitted when the button has focus.
1558
+ */
1559
+ "onRoadFocus"?: (event: CustomEvent<void>) => void;
1560
+ /**
1561
+ * Set to `true` for a transparent button with a border
1562
+ */
1563
+ "outline"?: boolean;
1564
+ /**
1565
+ * Specifies the relationship of the target object to the link object. The value is a space-separated list of [link types](https://developer.mozilla.org/en-US/docs/Web/HTML/Link_types).
1566
+ */
1567
+ "rel"?: string;
1568
+ /**
1569
+ * The button size.
1570
+ */
1571
+ "size"?: 'sm' | 'md';
1572
+ /**
1573
+ * Specifies where to display the linked URL. Only applies when an `href` is provided. Special keywords: `"_blank"`, `"_self"`, `"_parent"`, `"_top"`.
1574
+ */
1575
+ "target"?: string;
1576
+ }
1577
+ interface RoadCard {
1578
+ /**
1579
+ * If `true`, a button tag will be rendered and the card will be tappable.
1580
+ */
1581
+ "button"?: boolean;
1582
+ /**
1583
+ * This attribute instructs browsers to download a URL instead of navigating to it, so the user will be prompted to save it as a local file. If the attribute has a value, it is used as the pre-filled file name in the Save prompt (the user can still change the file name if they want).
1584
+ */
1585
+ "download"?: string;
1586
+ /**
1587
+ * Contains a URL or a URL fragment that the hyperlink points to. If this property is set, an anchor tag will be rendered.
1588
+ */
1589
+ "href"?: string;
1590
+ /**
1591
+ * Emitted when the card is clicked and send the `value` of the card
1592
+ */
1593
+ "onRoadCardClick"?: (event: CustomEvent<{
1594
+ value: string | undefined | null;
1595
+ label: string | undefined | null;
1596
+ }>) => void;
1597
+ /**
1598
+ * Specifies the relationship of the target object to the link object. The value is a space-separated list of [link types](https://developer.mozilla.org/en-US/docs/Web/HTML/Link_types).
1599
+ */
1600
+ "rel"?: string;
1601
+ /**
1602
+ * Specifies where to display the linked URL. Only applies when an `href` is provided. Special keywords: `"_blank"`, `"_self"`, `"_parent"`, `"_top"`.
1603
+ */
1604
+ "target"?: string;
1605
+ /**
1606
+ * The type of the button. Only used when an `onclick` or `button` property is present.
1607
+ */
1608
+ "type"?: 'submit' | 'reset' | 'button';
1609
+ /**
1610
+ * value of the card
1611
+ */
1612
+ "value"?: string;
1613
+ }
1614
+ interface RoadCarousel {
1615
+ /**
1616
+ * If `true`, show arrows.
1617
+ */
1618
+ "arrows"?: boolean;
1619
+ /**
1620
+ * Emitted after the active slide has changed.
1621
+ */
1622
+ "onRoadSlideDidChange"?: (event: CustomEvent<void>) => void;
1623
+ /**
1624
+ * Emitted when the user double taps on the slide's container.
1625
+ */
1626
+ "onRoadSlideDoubleTap"?: (event: CustomEvent<void>) => void;
1627
+ /**
1628
+ * Emitted when the slider is actively being moved.
1629
+ */
1630
+ "onRoadSlideDrag"?: (event: CustomEvent<void>) => void;
1631
+ /**
1632
+ * Emitted when the next slide has ended.
1633
+ */
1634
+ "onRoadSlideNextEnd"?: (event: CustomEvent<void>) => void;
1635
+ /**
1636
+ * Emitted when the next slide has started.
1637
+ */
1638
+ "onRoadSlideNextStart"?: (event: CustomEvent<void>) => void;
1639
+ /**
1640
+ * Emitted when the previous slide has ended.
1641
+ */
1642
+ "onRoadSlidePrevEnd"?: (event: CustomEvent<void>) => void;
1643
+ /**
1644
+ * Emitted when the previous slide has started.
1645
+ */
1646
+ "onRoadSlidePrevStart"?: (event: CustomEvent<void>) => void;
1647
+ /**
1648
+ * Emitted when the slider is at the last slide.
1649
+ */
1650
+ "onRoadSlideReachEnd"?: (event: CustomEvent<void>) => void;
1651
+ /**
1652
+ * Emitted when the slider is at its initial position.
1653
+ */
1654
+ "onRoadSlideReachStart"?: (event: CustomEvent<void>) => void;
1655
+ /**
1656
+ * Emitted when the user taps/clicks on the slide's container.
1657
+ */
1658
+ "onRoadSlideTap"?: (event: CustomEvent<void>) => void;
1659
+ /**
1660
+ * Emitted when the user releases the touch.
1661
+ */
1662
+ "onRoadSlideTouchEnd"?: (event: CustomEvent<void>) => void;
1663
+ /**
1664
+ * Emitted when the user first touches the slider.
1665
+ */
1666
+ "onRoadSlideTouchStart"?: (event: CustomEvent<void>) => void;
1667
+ /**
1668
+ * Emitted when the slide transition has ended.
1669
+ */
1670
+ "onRoadSlideTransitionEnd"?: (event: CustomEvent<void>) => void;
1671
+ /**
1672
+ * Emitted when the slide transition has started.
1673
+ */
1674
+ "onRoadSlideTransitionStart"?: (event: CustomEvent<void>) => void;
1675
+ /**
1676
+ * Emitted before the active slide has changed.
1677
+ */
1678
+ "onRoadSlideWillChange"?: (event: CustomEvent<void>) => void;
1679
+ /**
1680
+ * Emitted after Swiper initialization
1681
+ */
1682
+ "onRoadSlidesDidLoad"?: (event: CustomEvent<void>) => void;
1683
+ /**
1684
+ * Options to pass to the swiper instance. See http://idangero.us/swiper/api/ for valid options
1685
+ */
1686
+ "options"?: any;
1687
+ /**
1688
+ * If `true`, show the pagination.
1689
+ */
1690
+ "pager"?: boolean;
1691
+ }
1692
+ interface RoadCarouselItem {
1693
+ }
1694
+ interface RoadCheckbox {
1695
+ /**
1696
+ * The id of checkbox
1697
+ */
1698
+ "checkboxId"?: string;
1699
+ /**
1700
+ * If `true`, the checkbox is selected.
1701
+ */
1702
+ "checked"?: boolean;
1703
+ /**
1704
+ * If `true`, the user cannot interact with the checkbox.
1705
+ */
1706
+ "disabled"?: boolean;
1707
+ /**
1708
+ * Error message for the field
1709
+ */
1710
+ "error"?: string;
1711
+ /**
1712
+ * If `true`, the label and the checkbox are inverse and spaced
1713
+ */
1714
+ "inverse"?: boolean;
1715
+ /**
1716
+ * Label for the field
1717
+ */
1718
+ "label"?: string;
1719
+ /**
1720
+ * The name of the control, which is submitted with the form data.
1721
+ */
1722
+ "name"?: string;
1723
+ /**
1724
+ * Emitted when the toggle loses focus.
1725
+ */
1726
+ "onRoadBlur"?: (event: CustomEvent<void>) => void;
1727
+ /**
1728
+ * Emitted when the checked property has changed.
1729
+ */
1730
+ "onRoadChange"?: (event: CustomEvent<{
1731
+ checked: boolean,
1732
+ value: string | undefined | null
1733
+ }>) => void;
1734
+ /**
1735
+ * Emitted when the toggle has focus.
1736
+ */
1737
+ "onRoadFocus"?: (event: CustomEvent<void>) => void;
1738
+ /**
1739
+ * If `true`, the user must fill in a value before submitting a form.
1740
+ */
1741
+ "required"?: boolean;
1742
+ /**
1743
+ * Value the form will get
1744
+ */
1745
+ "value"?: string;
1746
+ }
1747
+ interface RoadChip {
1748
+ /**
1749
+ * The color to use from your application's color palette.
1750
+ */
1751
+ "color"?: 'default' | 'secondary';
1752
+ /**
1753
+ * Display close icon
1754
+ */
1755
+ "hasCloseIcon"?: boolean;
1756
+ /**
1757
+ * Display an outline style button.
1758
+ */
1759
+ "outline"?: boolean;
1760
+ /**
1761
+ * Display an outline style button.
1762
+ */
1763
+ "size"?: 'md' | 'lg';
1764
+ }
1765
+ interface RoadCol {
1766
+ }
1767
+ interface RoadCollapse {
1768
+ /**
1769
+ * if "`true`" the button will be centered
1770
+ */
1771
+ "centered"?: boolean;
1772
+ /**
1773
+ * Set open to true to show the accordion element and to false to hide it.
1774
+ */
1775
+ "isOpen"?: boolean;
1776
+ /**
1777
+ * Text displayed in the button when the content is collapsed
1778
+ */
1779
+ "showLess"?: string;
1780
+ /**
1781
+ * Text displayed in the button when the content is collapsed
1782
+ */
1783
+ "showMore"?: string;
1784
+ }
1785
+ interface RoadCounter {
1786
+ /**
1787
+ * The id of input
1788
+ */
1789
+ "inputId"?: string;
1790
+ /**
1791
+ * The maximum value, which must not be less than its minimum (min attribute) value.
1792
+ */
1793
+ "max"?: string;
1794
+ /**
1795
+ * The minimum value, which must not be greater than its maximum (max attribute) value.
1796
+ */
1797
+ "min"?: string;
1798
+ "onRoadDecrease"?: (event: CustomEvent<void>) => void;
1799
+ "onRoadIncrease"?: (event: CustomEvent<void>) => void;
1800
+ /**
1801
+ * Works with the min and max attributes to limit the increments at which a value can be set. Possible values are: `"any"` or a positive floating point number.
1802
+ */
1803
+ "step"?: string;
1804
+ /**
1805
+ * The value of the input.
1806
+ */
1807
+ "value"?: number;
1808
+ }
1809
+ interface RoadDialog {
1810
+ /**
1811
+ * Set the color of information dialog. e.g. info, success, warning, danger
1812
+ */
1813
+ "color"?: FeedbackColors;
1814
+ /**
1815
+ * Content description of the dialog
1816
+ */
1817
+ "description"?: string;
1818
+ /**
1819
+ * Show / hide the close icon
1820
+ */
1821
+ "hasCloseIcon"?: boolean;
1822
+ /**
1823
+ * override default icon
1824
+ */
1825
+ "icon"?: string;
1826
+ /**
1827
+ * Set isOpen property to true to open the dialog
1828
+ */
1829
+ "isOpen"?: boolean;
1830
+ /**
1831
+ * Text to the top
1832
+ */
1833
+ "label"?: string;
1834
+ /**
1835
+ * Indicate when closing the dialog
1836
+ */
1837
+ "onClose"?: (event: CustomEvent<void>) => void;
1838
+ }
1839
+ interface RoadDrawer {
1840
+ /**
1841
+ * Show / hide back icon
1842
+ */
1843
+ "backText"?: string;
1844
+ /**
1845
+ * Title of the drawer in the header bar
1846
+ */
1847
+ "drawerTitle"?: string;
1848
+ /**
1849
+ * Width of the drawer
1850
+ */
1851
+ "drawerWidth"?: number;
1852
+ /**
1853
+ * Show / hide back icon
1854
+ */
1855
+ "hasBackIcon"?: boolean;
1856
+ /**
1857
+ * Show / hide close icon
1858
+ */
1859
+ "hasCloseIcon"?: boolean;
1860
+ /**
1861
+ * Inverse header colors
1862
+ */
1863
+ "hasInverseHeader"?: boolean;
1864
+ /**
1865
+ * Set isOpen property to true to open the drawer
1866
+ */
1867
+ "isOpen"?: boolean;
1868
+ /**
1869
+ * The mode determines which theme styles to use (light / dark).
1870
+ */
1871
+ "mode"?: "light" | "dark";
1872
+ /**
1873
+ * Indicate when return to previous state of the drawer content
1874
+ */
1875
+ "onBack"?: (event: CustomEvent<void>) => void;
1876
+ /**
1877
+ * Indicate when closing the drawer
1878
+ */
1879
+ "onClose"?: (event: CustomEvent<void>) => void;
1880
+ /**
1881
+ * Indicate when opening the drawer
1882
+ */
1883
+ "onOpen"?: (event: CustomEvent<void>) => void;
1884
+ /**
1885
+ * position of the drawer. e.g. left, right, bottom
1886
+ */
1887
+ "position"?: string;
1888
+ }
1889
+ interface RoadFlap {
1890
+ /**
1891
+ * Set the color of the flap.
1892
+ */
1893
+ "color"?: 'promo' | 'exclu' | 'info';
1894
+ }
1895
+ interface RoadGrid {
1896
+ }
1897
+ interface RoadIcon {
1898
+ /**
1899
+ * Set the icon to hidden, respectively `true`, to remove it from the accessibility tree.
1900
+ */
1901
+ "ariaHidden"?: string;
1902
+ /**
1903
+ * Specifies the label to use for accessibility. Defaults to the icon name.
1904
+ */
1905
+ "ariaLabel"?: string;
1906
+ /**
1907
+ * Color of the icon
1908
+ */
1909
+ "color"?: Color | 'white';
1910
+ /**
1911
+ * A combination of both `name` and `src`. If a `src` url is detected it will set the `src` property. Otherwise it assumes it's a built-in named SVG and set the `name` property.
1912
+ */
1913
+ "icon"?: any;
1914
+ /**
1915
+ * If enabled, road-icon will be loaded lazily when it's visible in the viewport. Default, `false`.
1916
+ */
1917
+ "lazy"?: boolean;
1918
+ /**
1919
+ * Specifies which icon to use from the built-in set of icons.
1920
+ */
1921
+ "name"?: string;
1922
+ /**
1923
+ * The rotation of the icon. Available options are: `"90"`, `"180"`, `"270"`.
1924
+ */
1925
+ "rotate"?: '90' | '180' | '270';
1926
+ /**
1927
+ * When set to `false`, SVG content that is HTTP fetched will not be checked if the response SVG content has any `<script>` elements, or any attributes that start with `on`, such as `onclick`.
1928
+ */
1929
+ "sanitize"?: boolean;
1930
+ /**
1931
+ * The size of the icon. Available options are: `"sm"`, `"md"`, `"lg"`, `"3x"` and `"4x"`.
1932
+ */
1933
+ "size"?: 'sm' | 'md' | 'lg' | '3x' | '4x';
1934
+ /**
1935
+ * Specifies the exact `src` of an SVG file to use.
1936
+ */
1937
+ "src"?: string;
1938
+ }
1939
+ interface RoadImg {
1940
+ /**
1941
+ * This attribute defines the alternative text describing the image. Users will see this text displayed if the image URL is wrong, the image is not in one of the supported formats, or if the image is not yet downloaded.
1942
+ */
1943
+ "alt"?: string;
1944
+ /**
1945
+ * Emitted when the img fails to load
1946
+ */
1947
+ "onRoadError"?: (event: CustomEvent<void>) => void;
1948
+ /**
1949
+ * Emitted when the image has finished loading
1950
+ */
1951
+ "onRoadImgDidLoad"?: (event: CustomEvent<void>) => void;
1952
+ /**
1953
+ * Emitted when the img src has been set
1954
+ */
1955
+ "onRoadImgWillLoad"?: (event: CustomEvent<void>) => void;
1956
+ /**
1957
+ * The image URL. This attribute is mandatory for the `<img>` element.
1958
+ */
1959
+ "src"?: string;
1960
+ }
1961
+ interface RoadInput {
1962
+ /**
1963
+ * Indicates whether and how the text value should be automatically capitalized as it is entered/edited by the user.
1964
+ */
1965
+ "autocapitalize"?: string;
1966
+ /**
1967
+ * Indicates whether the value of the control can be automatically completed by the browser.
1968
+ */
1969
+ "autocomplete"?: AutocompleteTypes;
1970
+ /**
1971
+ * Whether auto correction should be enabled when the user is entering/editing the text value.
1972
+ */
1973
+ "autocorrect"?: 'on' | 'off';
1974
+ /**
1975
+ * This Boolean attribute lets you specify that a form control should have input focus when the page loads.
1976
+ */
1977
+ "autofocus"?: boolean;
1978
+ /**
1979
+ * If `true`, the user cannot interact with the input.
1980
+ */
1981
+ "disabled"?: boolean;
1982
+ /**
1983
+ * A hint to the browser for which enter key to display. Possible values: `"enter"`, `"done"`, `"go"`, `"next"`, `"previous"`, `"search"`, and `"send"`.
1984
+ */
1985
+ "enterkeyhint"?: 'enter' | 'done' | 'go' | 'next' | 'previous' | 'search' | 'send';
1986
+ /**
1987
+ * Error message for the field
1988
+ */
1989
+ "error"?: string;
1990
+ /**
1991
+ * The id of input
1992
+ */
1993
+ "inputId"?: string;
1994
+ /**
1995
+ * A hint to the browser for which keyboard to display. This 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"`.
1996
+ */
1997
+ "inputmode"?: 'none' | 'text' | 'tel' | 'url' | 'email' | 'numeric' | 'decimal' | 'search';
1998
+ /**
1999
+ * Label for the field
2000
+ */
2001
+ "label"?: string;
2002
+ /**
2003
+ * The maximum value, which must not be less than its minimum (min attribute) value.
2004
+ */
2005
+ "max"?: string;
2006
+ /**
2007
+ * 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.
2008
+ */
2009
+ "maxlength"?: number;
2010
+ /**
2011
+ * The minimum value, which must not be greater than its maximum (max attribute) value.
2012
+ */
2013
+ "min"?: string;
2014
+ /**
2015
+ * 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.
2016
+ */
2017
+ "minlength"?: number;
2018
+ /**
2019
+ * The name of the control, which is submitted with the form data.
2020
+ */
2021
+ "name"?: string;
2022
+ /**
2023
+ * Emitted when the input loses focus.
2024
+ */
2025
+ "onRoadBlur"?: (event: CustomEvent<void>) => void;
2026
+ /**
2027
+ * Emitted when the value has changed.
2028
+ */
2029
+ "onRoadChange"?: (event: CustomEvent<{
2030
+ value: string | undefined | null;
2031
+ }>) => void;
2032
+ /**
2033
+ * Emitted when the input has focus.
2034
+ */
2035
+ "onRoadFocus"?: (event: CustomEvent<void>) => void;
2036
+ /**
2037
+ * Emitted when a keyboard input occurred.
2038
+ */
2039
+ "onRoadInput"?: (event: CustomEvent<KeyboardEvent>) => void;
2040
+ /**
2041
+ * 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.
2042
+ */
2043
+ "pattern"?: string;
2044
+ /**
2045
+ * Instructional text that shows before the input has a value.
2046
+ */
2047
+ "placeholder"?: string;
2048
+ /**
2049
+ * If `true`, the user cannot modify the value.
2050
+ */
2051
+ "readonly"?: boolean;
2052
+ /**
2053
+ * If `true`, the user must fill in a value before submitting a form.
2054
+ */
2055
+ "required"?: boolean;
2056
+ /**
2057
+ * 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.
2058
+ */
2059
+ "size"?: number;
2060
+ /**
2061
+ * If `true`, the element will have its spelling and grammar checked.
2062
+ */
2063
+ "spellcheck"?: boolean;
2064
+ /**
2065
+ * Works with the min and max attributes to limit the increments at which a value can be set. Possible values are: `"any"` or a positive floating point number.
2066
+ */
2067
+ "step"?: string;
2068
+ /**
2069
+ * The type of control to display. The default type is text.
2070
+ */
2071
+ "type"?: TextFieldTypes;
2072
+ /**
2073
+ * The value of the input.
2074
+ */
2075
+ "value"?: string | number | null;
2076
+ }
2077
+ interface RoadInputGroup {
2078
+ }
2079
+ interface RoadItem {
2080
+ /**
2081
+ * If `true`, display an active state item
2082
+ */
2083
+ "active"?: boolean;
2084
+ /**
2085
+ * If `true`, a button tag will be rendered and the item will be tappable.
2086
+ */
2087
+ "button"?: boolean;
2088
+ /**
2089
+ * If `true`, a detail arrow will appear on the item. Defaults to `false` unless the `mode` is `ios` and an `href` or `button` property is present.
2090
+ */
2091
+ "detail"?: boolean;
2092
+ /**
2093
+ * The icon to use when `detail` is set to `true`.
2094
+ */
2095
+ "detailIcon"?: string;
2096
+ /**
2097
+ * If `true`, the user cannot interact with the item.
2098
+ */
2099
+ "disabled"?: boolean;
2100
+ /**
2101
+ * This attribute instructs browsers to download a URL instead of navigating to it, so the user will be prompted to save it as a local file. If the attribute has a value, it is used as the pre-filled file name in the Save prompt (the user can still change the file name if they want).
2102
+ */
2103
+ "download"?: string | undefined;
2104
+ /**
2105
+ * Contains a URL or a URL fragment that the hyperlink points to. If this property is set, an anchor tag will be rendered.
2106
+ */
2107
+ "href"?: string | undefined;
2108
+ /**
2109
+ * How the bottom border should be displayed on the item.
2110
+ */
2111
+ "lines"?: 'full' | 'inset' | 'none';
2112
+ /**
2113
+ * Specifies the relationship of the target object to the link object. The value is a space-separated list of [link types](https://developer.mozilla.org/en-US/docs/Web/HTML/Link_types).
2114
+ */
2115
+ "rel"?: string | undefined;
2116
+ /**
2117
+ * Specifies where to display the linked URL. Only applies when an `href` is provided. Special keywords: `"_blank"`, `"_self"`, `"_parent"`, `"_top"`.
2118
+ */
2119
+ "target"?: string | undefined;
2120
+ /**
2121
+ * The type of the button. Only used when an `onclick` or `button` property is present.
2122
+ */
2123
+ "type"?: 'submit' | 'reset' | 'button';
2124
+ }
2125
+ interface RoadLabel {
2126
+ }
2127
+ interface RoadList {
2128
+ /**
2129
+ * How the bottom border should be displayed on all items.
2130
+ */
2131
+ "lines"?: 'full' | 'inset' | 'none';
2132
+ }
2133
+ interface RoadModal {
2134
+ /**
2135
+ * Show / hide close icon
2136
+ */
2137
+ "hasCloseIcon"?: boolean;
2138
+ /**
2139
+ * inverse header colors
2140
+ */
2141
+ "hasInverseHeader"?: boolean;
2142
+ /**
2143
+ * Set isOpen propertie to true to show the modal
2144
+ */
2145
+ "isOpen"?: boolean;
2146
+ /**
2147
+ * Max width of the modal on desktop
2148
+ */
2149
+ "maxWidth"?: number;
2150
+ /**
2151
+ * Title of the modal in the header bar
2152
+ */
2153
+ "modalTitle"?: string;
2154
+ /**
2155
+ * Indicate when closing the modal
2156
+ */
2157
+ "onClose"?: (event: CustomEvent<void>) => void;
2158
+ }
2159
+ interface RoadNavbar {
2160
+ /**
2161
+ * The selected tab component
2162
+ */
2163
+ "selectedTab"?: string;
2164
+ }
2165
+ interface RoadNavbarItem {
2166
+ /**
2167
+ * If `true`, the user cannot interact with the tab button.
2168
+ */
2169
+ "disabled"?: boolean;
2170
+ /**
2171
+ * This attribute instructs browsers to download a URL instead of navigating to it, so the user will be prompted to save it as a local file. If the attribute has a value, it is used as the pre-filled file name in the Save prompt (the user can still change the file name if they want).
2172
+ */
2173
+ "download"?: string | undefined;
2174
+ /**
2175
+ * Contains a URL or a URL fragment that the hyperlink points to. If this property is set, an anchor tag will be rendered.
2176
+ */
2177
+ "href"?: string | undefined;
2178
+ /**
2179
+ * Specifies the relationship of the target object to the link object. The value is a space-separated list of [link types](https://developer.mozilla.org/en-US/docs/Web/HTML/Link_types).
2180
+ */
2181
+ "rel"?: string | undefined;
2182
+ /**
2183
+ * The selected tab component
2184
+ */
2185
+ "selected"?: boolean;
2186
+ /**
2187
+ * A tab id must be provided for each `road-tab`. It's used internally to reference the selected tab.
2188
+ */
2189
+ "tab"?: string;
2190
+ /**
2191
+ * Specifies where to display the linked URL. Only applies when an `href` is provided. Special keywords: `"_blank"`, `"_self"`, `"_parent"`, `"_top"`.
2192
+ */
2193
+ "target"?: string | undefined;
2194
+ }
2195
+ interface RoadPlateNumber {
2196
+ /**
2197
+ * country of the plate
2198
+ */
2199
+ "country"?: 'FR' | 'BE' | 'IT' | 'ES' | 'PT' | 'PL';
2200
+ /**
2201
+ * Emitted when the input loses focus.
2202
+ */
2203
+ "onRoadBlur"?: (event: CustomEvent<void>) => void;
2204
+ /**
2205
+ * Emitted when the value has changed.
2206
+ */
2207
+ "onRoadChange"?: (event: CustomEvent<{
2208
+ value: string | undefined | null;
2209
+ }>) => void;
2210
+ /**
2211
+ * Emitted when the input has focus.
2212
+ */
2213
+ "onRoadFocus"?: (event: CustomEvent<void>) => void;
2214
+ /**
2215
+ * Emitted when a keyboard input occurred.
2216
+ */
2217
+ "onRoadInput"?: (event: CustomEvent<KeyboardEvent>) => void;
2218
+ /**
2219
+ * overwrite the default placeholder
2220
+ */
2221
+ "placeholder"?: string;
2222
+ /**
2223
+ * The value of the input.
2224
+ */
2225
+ "value"?: string | number | null;
2226
+ }
2227
+ interface RoadProgress {
2228
+ /**
2229
+ * The color to use from your application's color palette.
2230
+ */
2231
+ "color"?: FeedbackColors;
2232
+ /**
2233
+ * The value determines how much of the active bar should display. The value should be between [0, 100].
2234
+ */
2235
+ "value"?: number;
2236
+ }
2237
+ interface RoadRadio {
2238
+ /**
2239
+ * If `true`, the user cannot interact with the radio.
2240
+ */
2241
+ "disabled"?: boolean;
2242
+ /**
2243
+ * Error message for the field
2244
+ */
2245
+ "error"?: boolean;
2246
+ /**
2247
+ * Inline multiple radio
2248
+ */
2249
+ "inline"?: boolean;
2250
+ /**
2251
+ * If `true`, the label and the radio are inverse and spaced
2252
+ */
2253
+ "inverse"?: boolean;
2254
+ /**
2255
+ * Label for the field
2256
+ */
2257
+ "label"?: string;
2258
+ /**
2259
+ * The name of the control, which is submitted with the form data.
2260
+ */
2261
+ "name"?: string;
2262
+ /**
2263
+ * Emitted when the radio button loses focus.
2264
+ */
2265
+ "onRoadBlur"?: (event: CustomEvent<void>) => void;
2266
+ /**
2267
+ * Emitted when the radio button has focus.
2268
+ */
2269
+ "onRoadFocus"?: (event: CustomEvent<void>) => void;
2270
+ /**
2271
+ * The id of radio
2272
+ */
2273
+ "radioId"?: string;
2274
+ /**
2275
+ * If `true`, the user must fill in a value before submitting a form.
2276
+ */
2277
+ "required"?: boolean;
2278
+ /**
2279
+ * Value the form will get
2280
+ */
2281
+ "value"?: any | null;
2282
+ }
2283
+ interface RoadRadioGroup {
2284
+ /**
2285
+ * If `true`, the radios can be deselected.
2286
+ */
2287
+ "allowEmptySelection"?: boolean;
2288
+ /**
2289
+ * Label for the field
2290
+ */
2291
+ "ariaLabel"?: string;
2292
+ /**
2293
+ * add an asterisk to the label of the field
2294
+ */
2295
+ "asterisk"?: boolean;
2296
+ /**
2297
+ * Error message for the radio group
2298
+ */
2299
+ "error"?: string;
2300
+ /**
2301
+ * Label for the field
2302
+ */
2303
+ "label"?: string;
2304
+ /**
2305
+ * The name of the control, which is submitted with the form data.
2306
+ */
2307
+ "name"?: string;
2308
+ /**
2309
+ * Emitted when the value has changed.
2310
+ */
2311
+ "onRoadChange"?: (event: CustomEvent<{
2312
+ value: string | undefined | null
2313
+ }>) => void;
2314
+ /**
2315
+ * The id of checkbox
2316
+ */
2317
+ "radioGroupId"?: string;
2318
+ /**
2319
+ * the value of the radio group.
2320
+ */
2321
+ "value"?: any | null;
2322
+ }
2323
+ interface RoadRange {
2324
+ /**
2325
+ * The maximum value, which must not be less than its minimum (min attribute) value.
2326
+ */
2327
+ "max": string;
2328
+ /**
2329
+ * The minimum value, which must not be greater than its maximum (max attribute) value.
2330
+ */
2331
+ "min": string;
2332
+ /**
2333
+ * Emitted when the value has changed.
2334
+ */
2335
+ "onRoadChange"?: (event: CustomEvent<{
2336
+ value: string | undefined | null;
2337
+ }>) => void;
2338
+ /**
2339
+ * The id of range
2340
+ */
2341
+ "rangeId"?: string;
2342
+ /**
2343
+ * Display the current value of the range
2344
+ */
2345
+ "showValue"?: boolean;
2346
+ /**
2347
+ * Works with the min and max attributes to limit the increments at which a value can be set. Possible values are: `"any"` or a positive floating point number.
2348
+ */
2349
+ "step"?: string;
2350
+ /**
2351
+ * The value of the range.
2352
+ */
2353
+ "value"?: string | number | null;
2354
+ }
2355
+ interface RoadRating {
2356
+ /**
2357
+ * Rate review between 0 and 5
2358
+ */
2359
+ "rate"?: number;
2360
+ /**
2361
+ * number of reviews
2362
+ */
2363
+ "reviews"?: number;
2364
+ /**
2365
+ * Word display next to the number of reviews.
2366
+ */
2367
+ "reviewsText"?: string;
2368
+ }
2369
+ interface RoadRow {
2370
+ }
2371
+ interface RoadSelect {
2372
+ /**
2373
+ * This Boolean attribute lets you specify that a form control should have input focus when the page loads.
2374
+ */
2375
+ "autofocus"?: boolean;
2376
+ /**
2377
+ * If `true`, the user cannot interact with the select.
2378
+ */
2379
+ "disabled"?: boolean;
2380
+ /**
2381
+ * Error message for the field
2382
+ */
2383
+ "error"?: string;
2384
+ /**
2385
+ * Label for the field
2386
+ */
2387
+ "label"?: string;
2388
+ /**
2389
+ * The name of the control, which is submitted with the form data.
2390
+ */
2391
+ "name"?: string;
2392
+ /**
2393
+ * Emitted when the select loses focus.
2394
+ */
2395
+ "onRoadBlur"?: (event: CustomEvent<void>) => void;
2396
+ /**
2397
+ * Emitted when the value has changed.
2398
+ */
2399
+ "onRoadChange"?: (event: CustomEvent<{
2400
+ value: string | undefined | null
2401
+ }>) => void;
2402
+ /**
2403
+ * Emitted when the select has focus.
2404
+ */
2405
+ "onRoadFocus"?: (event: CustomEvent<void>) => void;
2406
+ /**
2407
+ * List of options of the select
2408
+ */
2409
+ "options"?: Array<{
2410
+ value: string | number;
2411
+ label: string;
2412
+ selected?: boolean;
2413
+ }>;
2414
+ /**
2415
+ * If `true`, the user must fill in a value before submitting a form.
2416
+ */
2417
+ "required"?: boolean;
2418
+ /**
2419
+ * The id of select
2420
+ */
2421
+ "selectId"?: string;
2422
+ /**
2423
+ * If the control is presented as a scrolling list box (e.g. when multiple is specified), this attribute represents the number of rows in the list that should be visible at one time.
2424
+ */
2425
+ "size"?: number;
2426
+ /**
2427
+ * the value of the select.
2428
+ */
2429
+ "value"?: any | null;
2430
+ }
2431
+ interface RoadSkeleton {
2432
+ }
2433
+ interface RoadSpinner {
2434
+ }
2435
+ interface RoadSwitch {
2436
+ /**
2437
+ * If `true`, the toggle is selected.
2438
+ */
2439
+ "checked"?: boolean;
2440
+ /**
2441
+ * Set the color of alert. e.g. info, success, warning, danger
2442
+ */
2443
+ "color"?: 'secondary' | FeedbackColors;
2444
+ /**
2445
+ * If `true`, the user cannot interact with the toggle.
2446
+ */
2447
+ "disabled"?: boolean;
2448
+ /**
2449
+ * If `true`, the label is at left of the switch
2450
+ */
2451
+ "hasLeftLabel"?: boolean;
2452
+ /**
2453
+ * Add space between label and switch element
2454
+ */
2455
+ "isSpaced"?: boolean;
2456
+ /**
2457
+ * Label for the field
2458
+ */
2459
+ "label"?: string;
2460
+ /**
2461
+ * The name of the control, which is submitted with the form data.
2462
+ */
2463
+ "name"?: string;
2464
+ /**
2465
+ * Text display for "`off`" state in the switch lever
2466
+ */
2467
+ "off"?: string;
2468
+ /**
2469
+ * Text display for "`on`" state in the switch lever
2470
+ */
2471
+ "on"?: string;
2472
+ /**
2473
+ * Emitted when the toggle loses focus.
2474
+ */
2475
+ "onRoadBlur"?: (event: CustomEvent<void>) => void;
2476
+ /**
2477
+ * Emitted when the checked property has changed.
2478
+ */
2479
+ "onRoadChange"?: (event: CustomEvent<{
2480
+ checked: boolean;
2481
+ value: string | undefined | null
2482
+ }>) => void;
2483
+ /**
2484
+ * Emitted when the toggle has focus.
2485
+ */
2486
+ "onRoadFocus"?: (event: CustomEvent<void>) => void;
2487
+ /**
2488
+ * The id of input
2489
+ */
2490
+ "switchId"?: string;
2491
+ /**
2492
+ * Value the form will get
2493
+ */
2494
+ "value"?: string;
2495
+ }
2496
+ interface RoadTab {
2497
+ /**
2498
+ * A tab id must be provided for each `road-tab`. It's used internally to reference the selected tab or by the router to switch between them.
2499
+ */
2500
+ "tab": string;
2501
+ }
2502
+ interface RoadTabBar {
2503
+ /**
2504
+ * Set to `true` to center buttons in the bar.
2505
+ */
2506
+ "center"?: boolean;
2507
+ /**
2508
+ * Set to `true` to expand buttons width to take the full size of the bar.
2509
+ */
2510
+ "expand"?: boolean;
2511
+ /**
2512
+ * The selected tab component
2513
+ */
2514
+ "selectedTab"?: string;
2515
+ }
2516
+ interface RoadTabButton {
2517
+ /**
2518
+ * This attribute instructs browsers to download a URL instead of navigating to it, so the user will be prompted to save it as a local file. If the attribute has a value, it is used as the pre-filled file name in the Save prompt (the user can still change the file name if they want).
2519
+ */
2520
+ "download"?: string | undefined;
2521
+ /**
2522
+ * Contains a URL or a URL fragment that the hyperlink points to. If this property is set, an anchor tag will be rendered.
2523
+ */
2524
+ "href"?: string | undefined;
2525
+ /**
2526
+ * Set the layout of the text and icon in the tab bar. It defaults to `'icon-top'`.
2527
+ */
2528
+ "layout"?: 'icon-start' | 'icon-top';
2529
+ /**
2530
+ * Specifies the relationship of the target object to the link object. The value is a space-separated list of [link types](https://developer.mozilla.org/en-US/docs/Web/HTML/Link_types).
2531
+ */
2532
+ "rel"?: string | undefined;
2533
+ /**
2534
+ * The selected tab component
2535
+ */
2536
+ "selected"?: boolean;
2537
+ /**
2538
+ * A tab id must be provided for each `road-tab`. It's used internally to reference
2539
+ */
2540
+ "tab"?: string;
2541
+ /**
2542
+ * Specifies where to display the linked URL. Only applies when an `href` is provided. Special keywords: `"_blank"`, `"_self"`, `"_parent"`, `"_top"`.
2543
+ */
2544
+ "target"?: string | undefined;
2545
+ }
2546
+ interface RoadTable {
2547
+ }
2548
+ interface RoadTabs {
2549
+ /**
2550
+ * Emitted when the navigation has finished transitioning to a new component.
2551
+ */
2552
+ "onRoadTabsDidChange"?: (event: CustomEvent<{tab: string}>) => void;
2553
+ /**
2554
+ * Emitted when the navigation is about to transition to a new component.
2555
+ */
2556
+ "onRoadTabsWillChange"?: (event: CustomEvent<{tab: string}>) => void;
2557
+ }
2558
+ interface RoadText {
2559
+ /**
2560
+ * Color of the text.
2561
+ */
2562
+ "color"?: 'primary' | 'secondary' | 'accent' | 'info' | 'success' | 'warning' | 'danger' | 'default' | 'default-second' | 'disabled' | 'white';
2563
+ }
2564
+ interface RoadTextarea {
2565
+ /**
2566
+ * Indicates whether and how the text value should be automatically capitalized as it is entered/edited by the user.
2567
+ */
2568
+ "autocapitalize"?: string;
2569
+ /**
2570
+ * This Boolean attribute lets you specify that a form control should have input focus when the page loads.
2571
+ */
2572
+ "autofocus"?: boolean;
2573
+ /**
2574
+ * The visible width of the text control, in average character widths. If it is specified, it must be a positive integer.
2575
+ */
2576
+ "cols"?: number;
2577
+ /**
2578
+ * If `true`, the user cannot interact with the input.
2579
+ */
2580
+ "disabled"?: boolean;
2581
+ /**
2582
+ * A hint to the browser for which enter key to display. Possible values: `"enter"`, `"done"`, `"go"`, `"next"`, `"previous"`, `"search"`, and `"send"`.
2583
+ */
2584
+ "enterkeyhint"?: 'enter' | 'done' | 'go' | 'next' | 'previous' | 'search' | 'send';
2585
+ /**
2586
+ * Error message for the field
2587
+ */
2588
+ "error"?: string;
2589
+ /**
2590
+ * A hint to the browser for which keyboard to display. This 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"`.
2591
+ */
2592
+ "inputmode"?: 'none' | 'text' | 'tel' | 'url' | 'email' | 'numeric' | 'decimal' | 'search';
2593
+ /**
2594
+ * Label for the field
2595
+ */
2596
+ "label"?: string;
2597
+ /**
2598
+ * 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.
2599
+ */
2600
+ "maxlength"?: number;
2601
+ /**
2602
+ * 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.
2603
+ */
2604
+ "minlength"?: number;
2605
+ /**
2606
+ * The name of the control, which is submitted with the form data.
2607
+ */
2608
+ "name"?: string;
2609
+ /**
2610
+ * Emitted when the input loses focus.
2611
+ */
2612
+ "onRoadBlur"?: (event: CustomEvent<void>) => void;
2613
+ /**
2614
+ * Emitted when the value has changed.
2615
+ */
2616
+ "onRoadChange"?: (event: CustomEvent<{
2617
+ value: string | undefined | null
2618
+ }>) => void;
2619
+ /**
2620
+ * Emitted when the input has focus.
2621
+ */
2622
+ "onRoadFocus"?: (event: CustomEvent<void>) => void;
2623
+ /**
2624
+ * Emitted when a keyboard input occurred.
2625
+ */
2626
+ "onRoadInput"?: (event: CustomEvent<KeyboardEvent>) => void;
2627
+ /**
2628
+ * Instructional text that shows before the input has a value.
2629
+ */
2630
+ "placeholder"?: string;
2631
+ /**
2632
+ * If `true`, the user cannot modify the value.
2633
+ */
2634
+ "readonly"?: boolean;
2635
+ /**
2636
+ * If `true`, the user must fill in a value before submitting a form.
2637
+ */
2638
+ "required"?: boolean;
2639
+ /**
2640
+ * The number of rows of the control.
2641
+ */
2642
+ "rows"?: number;
2643
+ /**
2644
+ * If `true`, the element will have its spelling and grammar checked.
2645
+ */
2646
+ "spellcheck"?: boolean;
2647
+ /**
2648
+ * The id of input
2649
+ */
2650
+ "textareaId"?: string;
2651
+ /**
2652
+ * The value of the input.
2653
+ */
2654
+ "value"?: string | null;
2655
+ /**
2656
+ * Indicates how the control wraps text.
2657
+ */
2658
+ "wrap"?: 'hard' | 'soft' | 'off';
2659
+ }
2660
+ interface RoadToast {
2661
+ /**
2662
+ * Set the color of toast. e.g. info, success, warning, danger
2663
+ */
2664
+ "color"?: FeedbackColors;
2665
+ /**
2666
+ * Set open propertie to true to show the toast
2667
+ */
2668
+ "isOpen"?: boolean;
2669
+ /**
2670
+ * Text display in the toast
2671
+ */
2672
+ "label"?: string;
2673
+ /**
2674
+ * Indicate when closing the toast
2675
+ */
2676
+ "onClose"?: (event: CustomEvent<void>) => void;
2677
+ /**
2678
+ * position of the toast.
2679
+ */
2680
+ "position"?: 'top' | 'bottom';
2681
+ /**
2682
+ * How many milliseconds to wait before hiding the toast. if `"0"`, it will show until `close()` is called.
2683
+ */
2684
+ "timeout"?: number;
2685
+ }
2686
+ interface RoadToolbar {
2687
+ /**
2688
+ * Background color of the toolbar
2689
+ */
2690
+ "color"?: 'primary' | 'secondary';
2691
+ }
2692
+ interface RoadToolbarTitle {
2693
+ }
2694
+ interface RoadTooltip {
2695
+ /**
2696
+ * The tooltip's content.
2697
+ */
2698
+ "content"?: string;
2699
+ /**
2700
+ * Indicates whether or not the tooltip is open. You can use this or the open/close methods.
2701
+ */
2702
+ "isOpen"?: boolean;
2703
+ /**
2704
+ * The position of the tooltip.
2705
+ */
2706
+ "position"?: | 'top'
2707
+ | 'right'
2708
+ | 'bottom'
2709
+ | 'left';
2710
+ /**
2711
+ * The id of tooltip
2712
+ */
2713
+ "tooltipId"?: string;
2714
+ /**
2715
+ * Controls how the tooltip is activated. Possible options include `click`, `hover`. Multiple options can be passed by separating them with a space. When manual is used, the tooltip must be activated programmatically.
2716
+ */
2717
+ "trigger"?: string;
2718
+ }
2719
+ interface IntrinsicElements {
2720
+ "road-accordion": RoadAccordion;
2721
+ "road-alert": RoadAlert;
2722
+ "road-autocomplete": RoadAutocomplete;
2723
+ "road-avatar": RoadAvatar;
2724
+ "road-badge": RoadBadge;
2725
+ "road-button": RoadButton;
2726
+ "road-card": RoadCard;
2727
+ "road-carousel": RoadCarousel;
2728
+ "road-carousel-item": RoadCarouselItem;
2729
+ "road-checkbox": RoadCheckbox;
2730
+ "road-chip": RoadChip;
2731
+ "road-col": RoadCol;
2732
+ "road-collapse": RoadCollapse;
2733
+ "road-counter": RoadCounter;
2734
+ "road-dialog": RoadDialog;
2735
+ "road-drawer": RoadDrawer;
2736
+ "road-flap": RoadFlap;
2737
+ "road-grid": RoadGrid;
2738
+ "road-icon": RoadIcon;
2739
+ "road-img": RoadImg;
2740
+ "road-input": RoadInput;
2741
+ "road-input-group": RoadInputGroup;
2742
+ "road-item": RoadItem;
2743
+ "road-label": RoadLabel;
2744
+ "road-list": RoadList;
2745
+ "road-modal": RoadModal;
2746
+ "road-navbar": RoadNavbar;
2747
+ "road-navbar-item": RoadNavbarItem;
2748
+ "road-plate-number": RoadPlateNumber;
2749
+ "road-progress": RoadProgress;
2750
+ "road-radio": RoadRadio;
2751
+ "road-radio-group": RoadRadioGroup;
2752
+ "road-range": RoadRange;
2753
+ "road-rating": RoadRating;
2754
+ "road-row": RoadRow;
2755
+ "road-select": RoadSelect;
2756
+ "road-skeleton": RoadSkeleton;
2757
+ "road-spinner": RoadSpinner;
2758
+ "road-switch": RoadSwitch;
2759
+ "road-tab": RoadTab;
2760
+ "road-tab-bar": RoadTabBar;
2761
+ "road-tab-button": RoadTabButton;
2762
+ "road-table": RoadTable;
2763
+ "road-tabs": RoadTabs;
2764
+ "road-text": RoadText;
2765
+ "road-textarea": RoadTextarea;
2766
+ "road-toast": RoadToast;
2767
+ "road-toolbar": RoadToolbar;
2768
+ "road-toolbar-title": RoadToolbarTitle;
2769
+ "road-tooltip": RoadTooltip;
2770
+ }
2771
+ }
2772
+ export { LocalJSX as JSX };
2773
+ declare module "@stencil/core" {
2774
+ export namespace JSX {
2775
+ interface IntrinsicElements {
2776
+ "road-accordion": LocalJSX.RoadAccordion & JSXBase.HTMLAttributes<HTMLRoadAccordionElement>;
2777
+ "road-alert": LocalJSX.RoadAlert & JSXBase.HTMLAttributes<HTMLRoadAlertElement>;
2778
+ "road-autocomplete": LocalJSX.RoadAutocomplete & JSXBase.HTMLAttributes<HTMLRoadAutocompleteElement>;
2779
+ "road-avatar": LocalJSX.RoadAvatar & JSXBase.HTMLAttributes<HTMLRoadAvatarElement>;
2780
+ "road-badge": LocalJSX.RoadBadge & JSXBase.HTMLAttributes<HTMLRoadBadgeElement>;
2781
+ "road-button": LocalJSX.RoadButton & JSXBase.HTMLAttributes<HTMLRoadButtonElement>;
2782
+ "road-card": LocalJSX.RoadCard & JSXBase.HTMLAttributes<HTMLRoadCardElement>;
2783
+ "road-carousel": LocalJSX.RoadCarousel & JSXBase.HTMLAttributes<HTMLRoadCarouselElement>;
2784
+ "road-carousel-item": LocalJSX.RoadCarouselItem & JSXBase.HTMLAttributes<HTMLRoadCarouselItemElement>;
2785
+ "road-checkbox": LocalJSX.RoadCheckbox & JSXBase.HTMLAttributes<HTMLRoadCheckboxElement>;
2786
+ "road-chip": LocalJSX.RoadChip & JSXBase.HTMLAttributes<HTMLRoadChipElement>;
2787
+ "road-col": LocalJSX.RoadCol & JSXBase.HTMLAttributes<HTMLRoadColElement>;
2788
+ "road-collapse": LocalJSX.RoadCollapse & JSXBase.HTMLAttributes<HTMLRoadCollapseElement>;
2789
+ "road-counter": LocalJSX.RoadCounter & JSXBase.HTMLAttributes<HTMLRoadCounterElement>;
2790
+ "road-dialog": LocalJSX.RoadDialog & JSXBase.HTMLAttributes<HTMLRoadDialogElement>;
2791
+ "road-drawer": LocalJSX.RoadDrawer & JSXBase.HTMLAttributes<HTMLRoadDrawerElement>;
2792
+ "road-flap": LocalJSX.RoadFlap & JSXBase.HTMLAttributes<HTMLRoadFlapElement>;
2793
+ "road-grid": LocalJSX.RoadGrid & JSXBase.HTMLAttributes<HTMLRoadGridElement>;
2794
+ "road-icon": LocalJSX.RoadIcon & JSXBase.HTMLAttributes<HTMLRoadIconElement>;
2795
+ "road-img": LocalJSX.RoadImg & JSXBase.HTMLAttributes<HTMLRoadImgElement>;
2796
+ "road-input": LocalJSX.RoadInput & JSXBase.HTMLAttributes<HTMLRoadInputElement>;
2797
+ "road-input-group": LocalJSX.RoadInputGroup & JSXBase.HTMLAttributes<HTMLRoadInputGroupElement>;
2798
+ "road-item": LocalJSX.RoadItem & JSXBase.HTMLAttributes<HTMLRoadItemElement>;
2799
+ "road-label": LocalJSX.RoadLabel & JSXBase.HTMLAttributes<HTMLRoadLabelElement>;
2800
+ "road-list": LocalJSX.RoadList & JSXBase.HTMLAttributes<HTMLRoadListElement>;
2801
+ "road-modal": LocalJSX.RoadModal & JSXBase.HTMLAttributes<HTMLRoadModalElement>;
2802
+ "road-navbar": LocalJSX.RoadNavbar & JSXBase.HTMLAttributes<HTMLRoadNavbarElement>;
2803
+ "road-navbar-item": LocalJSX.RoadNavbarItem & JSXBase.HTMLAttributes<HTMLRoadNavbarItemElement>;
2804
+ "road-plate-number": LocalJSX.RoadPlateNumber & JSXBase.HTMLAttributes<HTMLRoadPlateNumberElement>;
2805
+ "road-progress": LocalJSX.RoadProgress & JSXBase.HTMLAttributes<HTMLRoadProgressElement>;
2806
+ "road-radio": LocalJSX.RoadRadio & JSXBase.HTMLAttributes<HTMLRoadRadioElement>;
2807
+ "road-radio-group": LocalJSX.RoadRadioGroup & JSXBase.HTMLAttributes<HTMLRoadRadioGroupElement>;
2808
+ "road-range": LocalJSX.RoadRange & JSXBase.HTMLAttributes<HTMLRoadRangeElement>;
2809
+ "road-rating": LocalJSX.RoadRating & JSXBase.HTMLAttributes<HTMLRoadRatingElement>;
2810
+ "road-row": LocalJSX.RoadRow & JSXBase.HTMLAttributes<HTMLRoadRowElement>;
2811
+ "road-select": LocalJSX.RoadSelect & JSXBase.HTMLAttributes<HTMLRoadSelectElement>;
2812
+ "road-skeleton": LocalJSX.RoadSkeleton & JSXBase.HTMLAttributes<HTMLRoadSkeletonElement>;
2813
+ "road-spinner": LocalJSX.RoadSpinner & JSXBase.HTMLAttributes<HTMLRoadSpinnerElement>;
2814
+ "road-switch": LocalJSX.RoadSwitch & JSXBase.HTMLAttributes<HTMLRoadSwitchElement>;
2815
+ "road-tab": LocalJSX.RoadTab & JSXBase.HTMLAttributes<HTMLRoadTabElement>;
2816
+ "road-tab-bar": LocalJSX.RoadTabBar & JSXBase.HTMLAttributes<HTMLRoadTabBarElement>;
2817
+ "road-tab-button": LocalJSX.RoadTabButton & JSXBase.HTMLAttributes<HTMLRoadTabButtonElement>;
2818
+ "road-table": LocalJSX.RoadTable & JSXBase.HTMLAttributes<HTMLRoadTableElement>;
2819
+ "road-tabs": LocalJSX.RoadTabs & JSXBase.HTMLAttributes<HTMLRoadTabsElement>;
2820
+ "road-text": LocalJSX.RoadText & JSXBase.HTMLAttributes<HTMLRoadTextElement>;
2821
+ "road-textarea": LocalJSX.RoadTextarea & JSXBase.HTMLAttributes<HTMLRoadTextareaElement>;
2822
+ "road-toast": LocalJSX.RoadToast & JSXBase.HTMLAttributes<HTMLRoadToastElement>;
2823
+ "road-toolbar": LocalJSX.RoadToolbar & JSXBase.HTMLAttributes<HTMLRoadToolbarElement>;
2824
+ "road-toolbar-title": LocalJSX.RoadToolbarTitle & JSXBase.HTMLAttributes<HTMLRoadToolbarTitleElement>;
2825
+ "road-tooltip": LocalJSX.RoadTooltip & JSXBase.HTMLAttributes<HTMLRoadTooltipElement>;
2826
+ }
2827
+ }
2828
+ }