@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.
- package/LICENSE +201 -0
- package/dist/cjs/app-268f9884.js +7 -0
- package/dist/cjs/css-shim-9670f2f3.js +6 -0
- package/dist/cjs/dom-3e7d9c3b.js +75 -0
- package/dist/cjs/focus-visible-a5d1ccf9.js +335 -0
- package/dist/cjs/index-0181f02a.js +29 -0
- package/dist/cjs/index-8402028a.js +1824 -0
- package/dist/cjs/index.cjs.js +10 -0
- package/dist/cjs/loader.cjs.js +36 -0
- package/dist/cjs/polyfill-c7a0fa22.js +7 -0
- package/dist/cjs/road-accordion.cjs.entry.js +31 -0
- package/dist/cjs/road-alert.cjs.entry.js +24 -0
- package/dist/cjs/road-autocomplete.cjs.entry.js +49 -0
- package/dist/cjs/road-avatar.cjs.entry.js +19 -0
- package/dist/cjs/road-badge_11.cjs.entry.js +516 -0
- package/dist/cjs/road-card.cjs.entry.js +60 -0
- package/dist/cjs/road-carousel-item.cjs.entry.js +22 -0
- package/dist/cjs/road-carousel.cjs.entry.js +407 -0
- package/dist/cjs/road-checkbox.cjs.entry.js +77 -0
- package/dist/cjs/road-chip.cjs.entry.js +38 -0
- package/dist/cjs/road-collapse.cjs.entry.js +44 -0
- package/dist/cjs/road-counter.cjs.entry.js +39 -0
- package/dist/cjs/road-dialog.cjs.entry.js +98 -0
- package/dist/cjs/road-flap.cjs.entry.js +24 -0
- package/dist/cjs/road-img.cjs.entry.js +75 -0
- package/dist/cjs/road-input-group.cjs.entry.js +19 -0
- package/dist/cjs/road-input.cjs.entry.js +108 -0
- package/dist/cjs/road-modal.cjs.entry.js +80 -0
- package/dist/cjs/road-navbar-item.cjs.entry.js +64 -0
- package/dist/cjs/road-navbar.cjs.entry.js +37 -0
- package/dist/cjs/road-plate-number.cjs.entry.js +94 -0
- package/dist/cjs/road-progress.cjs.entry.js +28 -0
- package/dist/cjs/road-radio-group.cjs.entry.js +78 -0
- package/dist/cjs/road-radio.cjs.entry.js +90 -0
- package/dist/cjs/road-range.cjs.entry.js +58 -0
- package/dist/cjs/road-rating.cjs.entry.js +34 -0
- package/dist/cjs/road-select.cjs.entry.js +79 -0
- package/dist/cjs/road-skeleton.cjs.entry.js +19 -0
- package/dist/cjs/road-spinner.cjs.entry.js +19 -0
- package/dist/cjs/road-switch.cjs.entry.js +91 -0
- package/dist/cjs/road-tab-bar.cjs.entry.js +47 -0
- package/dist/cjs/road-tab-button.cjs.entry.js +82 -0
- package/dist/cjs/road-tab.cjs.entry.js +34 -0
- package/dist/cjs/road-table.cjs.entry.js +19 -0
- package/dist/cjs/road-tabs.cjs.entry.js +110 -0
- package/dist/cjs/road-text.cjs.entry.js +24 -0
- package/dist/cjs/road-textarea.cjs.entry.js +93 -0
- package/dist/cjs/road-toast.cjs.entry.js +99 -0
- package/dist/cjs/road-toolbar-title.cjs.entry.js +19 -0
- package/dist/cjs/road-tooltip.cjs.entry.js +77 -0
- package/dist/cjs/roadtrip.cjs.js +87 -0
- package/dist/cjs/shadow-css-09555044.js +391 -0
- package/dist/cjs/swiper.bundle-dec9b216.js +10002 -0
- package/dist/cjs/utils-07e0a826.js +80 -0
- package/dist/collection/collection-manifest.json +62 -0
- package/dist/collection/components/accordion/accordion.css +127 -0
- package/dist/collection/components/accordion/accordion.js +58 -0
- package/dist/collection/components/accordion/accordion.stories.js +49 -0
- package/dist/collection/components/alert/alert.css +108 -0
- package/dist/collection/components/alert/alert.js +54 -0
- package/dist/collection/components/alert/alert.stories.js +60 -0
- package/dist/collection/components/autocomplete/autocomplete.css +53 -0
- package/dist/collection/components/autocomplete/autocomplete.js +114 -0
- package/dist/collection/components/autocomplete/autocomplete.stories.js +101 -0
- package/dist/collection/components/avatar/avatar.css +33 -0
- package/dist/collection/components/avatar/avatar.js +18 -0
- package/dist/collection/components/avatar/avatar.stories.js +25 -0
- package/dist/collection/components/badge/badge.css +104 -0
- package/dist/collection/components/badge/badge.js +68 -0
- package/dist/collection/components/badge/badge.stories.js +52 -0
- package/dist/collection/components/button/button.css +452 -0
- package/dist/collection/components/button/button.js +293 -0
- package/dist/collection/components/button/button.stories.js +85 -0
- package/dist/collection/components/card/card.css +57 -0
- package/dist/collection/components/card/card.js +201 -0
- package/dist/collection/components/card/card.stories.js +82 -0
- package/dist/collection/components/carousel/carousel.css +134 -0
- package/dist/collection/components/carousel/carousel.js +1052 -0
- package/dist/collection/components/carousel/carousel.stories.js +116 -0
- package/dist/collection/components/carousel/swiper/swiper-interface.d.ts +1 -0
- package/dist/collection/components/carousel/swiper/swiper.bundle.js +10002 -0
- package/dist/collection/components/carousel/swiper/swiper.js +4 -0
- package/dist/collection/components/carousel-item/carousel-item.css +37 -0
- package/dist/collection/components/carousel-item/carousel-item.js +20 -0
- package/dist/collection/components/checkbox/checkbox.css +168 -0
- package/dist/collection/components/checkbox/checkbox.js +292 -0
- package/dist/collection/components/checkbox/checkbox.stories.js +83 -0
- package/dist/collection/components/chip/chip.css +83 -0
- package/dist/collection/components/chip/chip.js +114 -0
- package/dist/collection/components/chip/chip.stories.js +103 -0
- package/dist/collection/components/col/col.css +612 -0
- package/dist/collection/components/col/col.js +18 -0
- package/dist/collection/components/collapse/collapse.css +61 -0
- package/dist/collection/components/collapse/collapse.js +124 -0
- package/dist/collection/components/collapse/collapse.stories.js +157 -0
- package/dist/collection/components/counter/counter.css +18 -0
- package/dist/collection/components/counter/counter.js +158 -0
- package/dist/collection/components/counter/counter.stories.js +40 -0
- package/dist/collection/components/dialog/dialog.css +195 -0
- package/dist/collection/components/dialog/dialog.js +278 -0
- package/dist/collection/components/dialog/dialog.stories.js +59 -0
- package/dist/collection/components/drawer/drawer.dark.css +250 -0
- package/dist/collection/components/drawer/drawer.js +380 -0
- package/dist/collection/components/drawer/drawer.light.css +244 -0
- package/dist/collection/components/drawer/drawer.stories.js +83 -0
- package/dist/collection/components/flap/flap.css +27 -0
- package/dist/collection/components/flap/flap.js +45 -0
- package/dist/collection/components/flap/flap.stories.js +52 -0
- package/dist/collection/components/grid/grid.css +10 -0
- package/dist/collection/components/grid/grid.js +18 -0
- package/dist/collection/components/grid/grid.stories.js +89 -0
- package/dist/collection/components/icon/icon.css +96 -0
- package/dist/collection/components/icon/icon.js +288 -0
- package/dist/collection/components/icon/icon.stories.js +129 -0
- package/dist/collection/components/icon/request.js +32 -0
- package/dist/collection/components/icon/svg/alert-danger-outline.svg +1 -0
- package/dist/collection/components/icon/svg/alert-danger.svg +1 -0
- package/dist/collection/components/icon/svg/alert-error-outline-color.svg +1 -0
- package/dist/collection/components/icon/svg/alert-error-outline.svg +1 -0
- package/dist/collection/components/icon/svg/alert-error.svg +1 -0
- package/dist/collection/components/icon/svg/alert-info-outline-color.svg +1 -0
- package/dist/collection/components/icon/svg/alert-info-outline.svg +1 -0
- package/dist/collection/components/icon/svg/alert-info.svg +1 -0
- package/dist/collection/components/icon/svg/alert-notification-alarm-outline.svg +1 -0
- package/dist/collection/components/icon/svg/alert-notification-alarm.svg +1 -0
- package/dist/collection/components/icon/svg/alert-notification-outline.svg +1 -0
- package/dist/collection/components/icon/svg/alert-notification-warning-outline.svg +1 -0
- package/dist/collection/components/icon/svg/alert-notification-warning.svg +1 -0
- package/dist/collection/components/icon/svg/alert-notification.svg +1 -0
- package/dist/collection/components/icon/svg/alert-question-outline-color.svg +1 -0
- package/dist/collection/components/icon/svg/alert-question-outline.svg +1 -0
- package/dist/collection/components/icon/svg/alert-question.svg +1 -0
- package/dist/collection/components/icon/svg/alert-success-outline.svg +1 -0
- package/dist/collection/components/icon/svg/alert-success.svg +1 -0
- package/dist/collection/components/icon/svg/alert-valid-outline-color.svg +1 -0
- package/dist/collection/components/icon/svg/alert-valid-outline.svg +1 -0
- package/dist/collection/components/icon/svg/alert-valid.svg +1 -0
- package/dist/collection/components/icon/svg/alert-warning-outline-color.svg +1 -0
- package/dist/collection/components/icon/svg/alert-warning-outline.svg +1 -0
- package/dist/collection/components/icon/svg/alert-warning.svg +1 -0
- package/dist/collection/components/icon/svg/alternator-color.svg +1 -0
- package/dist/collection/components/icon/svg/alternator.svg +1 -0
- package/dist/collection/components/icon/svg/app.svg +1 -0
- package/dist/collection/components/icon/svg/arrow-drop-down.svg +1 -0
- package/dist/collection/components/icon/svg/arrow-drop.svg +1 -0
- package/dist/collection/components/icon/svg/arrow-fullscreen-collapse.svg +1 -0
- package/dist/collection/components/icon/svg/arrow-fullscreen-expand.svg +1 -0
- package/dist/collection/components/icon/svg/arrow-swap.svg +1 -0
- package/dist/collection/components/icon/svg/arrow.svg +1 -0
- package/dist/collection/components/icon/svg/axle-support.svg +1 -0
- package/dist/collection/components/icon/svg/bacterium-color.svg +1 -0
- package/dist/collection/components/icon/svg/bacterium.svg +1 -0
- package/dist/collection/components/icon/svg/battery-charger-color.svg +1 -0
- package/dist/collection/components/icon/svg/battery-charger.svg +1 -0
- package/dist/collection/components/icon/svg/battery-color.svg +1 -0
- package/dist/collection/components/icon/svg/battery-recycle-color.svg +1 -0
- package/dist/collection/components/icon/svg/battery-recycle.svg +1 -0
- package/dist/collection/components/icon/svg/battery-start-stop-color.svg +1 -0
- package/dist/collection/components/icon/svg/battery-start-stop.svg +1 -0
- package/dist/collection/components/icon/svg/battery.svg +1 -0
- package/dist/collection/components/icon/svg/best-customer.svg +1 -0
- package/dist/collection/components/icon/svg/book-service-color.svg +1 -0
- package/dist/collection/components/icon/svg/book-service.svg +1 -0
- package/dist/collection/components/icon/svg/book-technical-color.svg +1 -0
- package/dist/collection/components/icon/svg/book-technical.svg +1 -0
- package/dist/collection/components/icon/svg/brake-color.svg +1 -0
- package/dist/collection/components/icon/svg/brake-outline-color.svg +1 -0
- package/dist/collection/components/icon/svg/brake-outline.svg +1 -0
- package/dist/collection/components/icon/svg/brake-pad.svg +1 -0
- package/dist/collection/components/icon/svg/brake.svg +1 -0
- package/dist/collection/components/icon/svg/bulk-3d-color.svg +1 -0
- package/dist/collection/components/icon/svg/bulk-3d.svg +1 -0
- package/dist/collection/components/icon/svg/bundle-color.svg +1 -0
- package/dist/collection/components/icon/svg/bundle.svg +1 -0
- package/dist/collection/components/icon/svg/cable.svg +1 -0
- package/dist/collection/components/icon/svg/calculator-color.svg +1 -0
- package/dist/collection/components/icon/svg/calculator.svg +1 -0
- package/dist/collection/components/icon/svg/call-center-color.svg +1 -0
- package/dist/collection/components/icon/svg/call-center.svg +1 -0
- package/dist/collection/components/icon/svg/camera-off-outline-color.svg +1 -0
- package/dist/collection/components/icon/svg/camera-off-outline.svg +1 -0
- package/dist/collection/components/icon/svg/camera-off.svg +1 -0
- package/dist/collection/components/icon/svg/camera-outline-color.svg +1 -0
- package/dist/collection/components/icon/svg/camera-outline.svg +1 -0
- package/dist/collection/components/icon/svg/camera.svg +1 -0
- package/dist/collection/components/icon/svg/car-door-color.svg +1 -0
- package/dist/collection/components/icon/svg/car-door.svg +1 -0
- package/dist/collection/components/icon/svg/car-identity-paper-open.svg +1 -0
- package/dist/collection/components/icon/svg/car-identity-paper.svg +1 -0
- package/dist/collection/components/icon/svg/car-petrol-off-color.svg +1 -0
- package/dist/collection/components/icon/svg/car-petrol-off-outline.svg +1 -0
- package/dist/collection/components/icon/svg/car-petrol-off.svg +1 -0
- package/dist/collection/components/icon/svg/car-petrol-outline-color.svg +1 -0
- package/dist/collection/components/icon/svg/car-petrol-outline.svg +1 -0
- package/dist/collection/components/icon/svg/car-petrol.svg +1 -0
- package/dist/collection/components/icon/svg/car-power-color.svg +1 -0
- package/dist/collection/components/icon/svg/car-power.svg +1 -0
- package/dist/collection/components/icon/svg/car-seat-baby.svg +1 -0
- package/dist/collection/components/icon/svg/car-seat.svg +1 -0
- package/dist/collection/components/icon/svg/car-wiper-back-color.svg +1 -0
- package/dist/collection/components/icon/svg/car-wiper-back.svg +1 -0
- package/dist/collection/components/icon/svg/car-wiper-front-color.svg +1 -0
- package/dist/collection/components/icon/svg/car-wiper-front.svg +1 -0
- package/dist/collection/components/icon/svg/carpet-color.svg +1 -0
- package/dist/collection/components/icon/svg/carpet.svg +1 -0
- package/dist/collection/components/icon/svg/certified-outline-color.svg +1 -0
- package/dist/collection/components/icon/svg/certified-outline.svg +1 -0
- package/dist/collection/components/icon/svg/certified-warning-outline-color.svg +1 -0
- package/dist/collection/components/icon/svg/certified-warning-outline.svg +1 -0
- package/dist/collection/components/icon/svg/certified-warning.svg +1 -0
- package/dist/collection/components/icon/svg/certified.svg +1 -0
- package/dist/collection/components/icon/svg/check-point-color.svg +1 -0
- package/dist/collection/components/icon/svg/check-point-location-color.svg +1 -0
- package/dist/collection/components/icon/svg/check-point-location.svg +1 -0
- package/dist/collection/components/icon/svg/check-point.svg +1 -0
- package/dist/collection/components/icon/svg/check-small.svg +1 -0
- package/dist/collection/components/icon/svg/check-wide.svg +1 -0
- package/dist/collection/components/icon/svg/cleanser-color.svg +1 -0
- package/dist/collection/components/icon/svg/cleanser.svg +1 -0
- package/dist/collection/components/icon/svg/cloud-download-color.svg +1 -0
- package/dist/collection/components/icon/svg/cloud-download.svg +1 -0
- package/dist/collection/components/icon/svg/cloud-outline.svg +1 -0
- package/dist/collection/components/icon/svg/cloud-upload-color.svg +1 -0
- package/dist/collection/components/icon/svg/cloud-upload.svg +1 -0
- package/dist/collection/components/icon/svg/clutch-color.svg +1 -0
- package/dist/collection/components/icon/svg/clutch.svg +1 -0
- package/dist/collection/components/icon/svg/collapse.svg +1 -0
- package/dist/collection/components/icon/svg/comodo.svg +1 -0
- package/dist/collection/components/icon/svg/control-switch-color.svg +1 -0
- package/dist/collection/components/icon/svg/control-switch.svg +1 -0
- package/dist/collection/components/icon/svg/cookie.svg +1 -0
- package/dist/collection/components/icon/svg/cooling-color.svg +1 -0
- package/dist/collection/components/icon/svg/cooling.svg +1 -0
- package/dist/collection/components/icon/svg/cover-color.svg +1 -0
- package/dist/collection/components/icon/svg/cover.svg +1 -0
- package/dist/collection/components/icon/svg/covid-stop-color.svg +1 -0
- package/dist/collection/components/icon/svg/covid-stop.svg +1 -0
- package/dist/collection/components/icon/svg/crown.svg +1 -0
- package/dist/collection/components/icon/svg/dashboard.svg +1 -0
- package/dist/collection/components/icon/svg/data-add-color.svg +1 -0
- package/dist/collection/components/icon/svg/data-add.svg +1 -0
- package/dist/collection/components/icon/svg/data-color.svg +1 -0
- package/dist/collection/components/icon/svg/data-up-color.svg +1 -0
- package/dist/collection/components/icon/svg/data-up.svg +1 -0
- package/dist/collection/components/icon/svg/data.svg +1 -0
- package/dist/collection/components/icon/svg/delete-forever-color.svg +1 -0
- package/dist/collection/components/icon/svg/delete-forever.svg +1 -0
- package/dist/collection/components/icon/svg/device-color.svg +1 -0
- package/dist/collection/components/icon/svg/device-laptop-color.svg +1 -0
- package/dist/collection/components/icon/svg/device-laptop.svg +1 -0
- package/dist/collection/components/icon/svg/device-rotate-color.svg +1 -0
- package/dist/collection/components/icon/svg/device-rotate.svg +1 -0
- package/dist/collection/components/icon/svg/device-smartphone-color.svg +1 -0
- package/dist/collection/components/icon/svg/device-smartphone-sms-color.svg +1 -0
- package/dist/collection/components/icon/svg/device-smartphone-sms-wrench-color.svg +1 -0
- package/dist/collection/components/icon/svg/device-smartphone-sms-wrench.svg +1 -0
- package/dist/collection/components/icon/svg/device-smartphone-sms.svg +1 -0
- package/dist/collection/components/icon/svg/device-smartphone.svg +1 -0
- package/dist/collection/components/icon/svg/device-tablet-color.svg +1 -0
- package/dist/collection/components/icon/svg/device-tablet.svg +1 -0
- package/dist/collection/components/icon/svg/device.svg +1 -0
- package/dist/collection/components/icon/svg/diagnostic-color.svg +1 -0
- package/dist/collection/components/icon/svg/diagnostic.svg +1 -0
- package/dist/collection/components/icon/svg/discount-prct-outline-color.svg +1 -0
- package/dist/collection/components/icon/svg/discount-prct-outline.svg +1 -0
- package/dist/collection/components/icon/svg/discount-prct-single.svg +1 -0
- package/dist/collection/components/icon/svg/discount-prct.svg +1 -0
- package/dist/collection/components/icon/svg/discount-ticket-color.svg +1 -0
- package/dist/collection/components/icon/svg/discount-ticket.svg +1 -0
- package/dist/collection/components/icon/svg/discount-worshop.svg +1 -0
- package/dist/collection/components/icon/svg/download-color.svg +1 -0
- package/dist/collection/components/icon/svg/download.svg +1 -0
- package/dist/collection/components/icon/svg/edit-outline-color.svg +1 -0
- package/dist/collection/components/icon/svg/edit-outline.svg +1 -0
- package/dist/collection/components/icon/svg/edit-pen-color.svg +1 -0
- package/dist/collection/components/icon/svg/edit-pen-outline.svg +1 -0
- package/dist/collection/components/icon/svg/edit-pen.svg +1 -0
- package/dist/collection/components/icon/svg/edit.svg +1 -0
- package/dist/collection/components/icon/svg/electric-outline.svg +1 -0
- package/dist/collection/components/icon/svg/electric-plug-13pin-color.svg +1 -0
- package/dist/collection/components/icon/svg/electric-plug-13pin.svg +1 -0
- package/dist/collection/components/icon/svg/electric-plug-7pin-color.svg +1 -0
- package/dist/collection/components/icon/svg/electric-plug-7pin.svg +1 -0
- package/dist/collection/components/icon/svg/electric.svg +1 -0
- package/dist/collection/components/icon/svg/electricity-outline.svg +1 -0
- package/dist/collection/components/icon/svg/electricity.svg +1 -0
- package/dist/collection/components/icon/svg/electronic-diagnostic.svg +1 -0
- package/dist/collection/components/icon/svg/electronic-ethanol.svg +1 -0
- package/dist/collection/components/icon/svg/electronic-outline.svg +1 -0
- package/dist/collection/components/icon/svg/electronic.svg +1 -0
- package/dist/collection/components/icon/svg/engine-color.svg +1 -0
- package/dist/collection/components/icon/svg/engine-electric-color.svg +1 -0
- package/dist/collection/components/icon/svg/engine-electric.svg +1 -0
- package/dist/collection/components/icon/svg/engine-lubrication-color.svg +1 -0
- package/dist/collection/components/icon/svg/engine-lubrication.svg +1 -0
- package/dist/collection/components/icon/svg/engine-piston-color.svg +1 -0
- package/dist/collection/components/icon/svg/engine-piston.svg +1 -0
- package/dist/collection/components/icon/svg/engine.svg +1 -0
- package/dist/collection/components/icon/svg/exclamation-small.svg +1 -0
- package/dist/collection/components/icon/svg/exclamation-wide.svg +1 -0
- package/dist/collection/components/icon/svg/exhaust-pipe-color.svg +1 -0
- package/dist/collection/components/icon/svg/exhaust-pipe.svg +1 -0
- package/dist/collection/components/icon/svg/factory-color.svg +1 -0
- package/dist/collection/components/icon/svg/factory.svg +1 -0
- package/dist/collection/components/icon/svg/fidelity-card-color.svg +1 -0
- package/dist/collection/components/icon/svg/fidelity-card-wallet-color.svg +1 -0
- package/dist/collection/components/icon/svg/fidelity-card-wallet.svg +1 -0
- package/dist/collection/components/icon/svg/fidelity-card.svg +1 -0
- package/dist/collection/components/icon/svg/file-business-outline-color.svg +1 -0
- package/dist/collection/components/icon/svg/file-business-outline.svg +1 -0
- package/dist/collection/components/icon/svg/file-catalog-color.svg +1 -0
- package/dist/collection/components/icon/svg/file-catalog.svg +1 -0
- package/dist/collection/components/icon/svg/file-copy-color.svg +1 -0
- package/dist/collection/components/icon/svg/file-copy.svg +1 -0
- package/dist/collection/components/icon/svg/file-edit-color.svg +1 -0
- package/dist/collection/components/icon/svg/file-edit.svg +1 -0
- package/dist/collection/components/icon/svg/file-excel-color.svg +1 -0
- package/dist/collection/components/icon/svg/file-excel-outline.svg +1 -0
- package/dist/collection/components/icon/svg/file-excel.svg +1 -0
- package/dist/collection/components/icon/svg/file-list-outline-color.svg +1 -0
- package/dist/collection/components/icon/svg/file-list-outline.svg +1 -0
- package/dist/collection/components/icon/svg/file-outline.svg +1 -0
- package/dist/collection/components/icon/svg/file-pdf-color.svg +1 -0
- package/dist/collection/components/icon/svg/file-pdf-outline-color.svg +1 -0
- package/dist/collection/components/icon/svg/file-pdf-outline.svg +1 -0
- package/dist/collection/components/icon/svg/file-pdf.svg +1 -0
- package/dist/collection/components/icon/svg/file-powerpoint-color.svg +1 -0
- package/dist/collection/components/icon/svg/file-powerpoint.svg +1 -0
- package/dist/collection/components/icon/svg/file-technical-color.svg +1 -0
- package/dist/collection/components/icon/svg/file-technical.svg +1 -0
- package/dist/collection/components/icon/svg/file-word-color.svg +1 -0
- package/dist/collection/components/icon/svg/file-word.svg +1 -0
- package/dist/collection/components/icon/svg/filter-color.svg +1 -0
- package/dist/collection/components/icon/svg/filter-particle-color.svg +1 -0
- package/dist/collection/components/icon/svg/filter-particle.svg +1 -0
- package/dist/collection/components/icon/svg/filter-sport-color.svg +1 -0
- package/dist/collection/components/icon/svg/filter-sport.svg +1 -0
- package/dist/collection/components/icon/svg/filter.svg +1 -0
- package/dist/collection/components/icon/svg/fingerprint.svg +1 -0
- package/dist/collection/components/icon/svg/flag-argentina.svg +1 -0
- package/dist/collection/components/icon/svg/flag-austria.svg +1 -0
- package/dist/collection/components/icon/svg/flag-belgium.svg +1 -0
- package/dist/collection/components/icon/svg/flag-france.svg +1 -0
- package/dist/collection/components/icon/svg/flag-germany.svg +1 -0
- package/dist/collection/components/icon/svg/flag-italy.svg +1 -0
- package/dist/collection/components/icon/svg/flag-poland.svg +1 -0
- package/dist/collection/components/icon/svg/flag-portugal.svg +1 -0
- package/dist/collection/components/icon/svg/flag-romania.svg +1 -0
- package/dist/collection/components/icon/svg/flag-russia.svg +1 -0
- package/dist/collection/components/icon/svg/flag-spain.svg +1 -0
- package/dist/collection/components/icon/svg/flag-sweden.svg +1 -0
- package/dist/collection/components/icon/svg/flower-color.svg +1 -0
- package/dist/collection/components/icon/svg/flower.svg +1 -0
- package/dist/collection/components/icon/svg/fuel-air-supply-color.svg +1 -0
- package/dist/collection/components/icon/svg/fuel-air-supply.svg +1 -0
- package/dist/collection/components/icon/svg/fuel-door-color.svg +1 -0
- package/dist/collection/components/icon/svg/fuel-door.svg +1 -0
- package/dist/collection/components/icon/svg/funding-best-price-color.svg +1 -0
- package/dist/collection/components/icon/svg/funding-best-price.svg +1 -0
- package/dist/collection/components/icon/svg/funding-outline-color.svg +1 -0
- package/dist/collection/components/icon/svg/funding-outline.svg +1 -0
- package/dist/collection/components/icon/svg/funding-small-color.svg +1 -0
- package/dist/collection/components/icon/svg/funding-small-outline.svg +1 -0
- package/dist/collection/components/icon/svg/funding-small.svg +1 -0
- package/dist/collection/components/icon/svg/funding.svg +1 -0
- package/dist/collection/components/icon/svg/fuse.svg +1 -0
- package/dist/collection/components/icon/svg/garage-color.svg +1 -0
- package/dist/collection/components/icon/svg/garage-house-color.svg +1 -0
- package/dist/collection/components/icon/svg/garage-house.svg +1 -0
- package/dist/collection/components/icon/svg/garage.svg +1 -0
- package/dist/collection/components/icon/svg/gas-5-color.svg +1 -0
- package/dist/collection/components/icon/svg/gas-5-outline.svg +1 -0
- package/dist/collection/components/icon/svg/gas-5.svg +1 -0
- package/dist/collection/components/icon/svg/gasket-outline-color.svg +1 -0
- package/dist/collection/components/icon/svg/gasket-outline.svg +1 -0
- package/dist/collection/components/icon/svg/gasket.svg +1 -0
- package/dist/collection/components/icon/svg/gearbox-color.svg +1 -0
- package/dist/collection/components/icon/svg/gearbox.svg +1 -0
- package/dist/collection/components/icon/svg/gift-color.svg +1 -0
- package/dist/collection/components/icon/svg/gift-outline.svg +1 -0
- package/dist/collection/components/icon/svg/gift.svg +1 -0
- package/dist/collection/components/icon/svg/gps-color.svg +1 -0
- package/dist/collection/components/icon/svg/gps.svg +1 -0
- package/dist/collection/components/icon/svg/handicap.svg +1 -0
- package/dist/collection/components/icon/svg/hear-color.svg +1 -0
- package/dist/collection/components/icon/svg/hear.svg +1 -0
- package/dist/collection/components/icon/svg/helmet-bike-color.svg +1 -0
- package/dist/collection/components/icon/svg/helmet-bike.svg +1 -0
- package/dist/collection/components/icon/svg/helmet-cross-color.svg +1 -0
- package/dist/collection/components/icon/svg/helmet-cross.svg +1 -0
- package/dist/collection/components/icon/svg/helmet-full-color.svg +1 -0
- package/dist/collection/components/icon/svg/helmet-full.svg +1 -0
- package/dist/collection/components/icon/svg/helmet-half-jet-color.svg +1 -0
- package/dist/collection/components/icon/svg/helmet-half-jet.svg +1 -0
- package/dist/collection/components/icon/svg/helmet-jet-color.svg +1 -0
- package/dist/collection/components/icon/svg/helmet-jet.svg +1 -0
- package/dist/collection/components/icon/svg/helmet-modular-color.svg +1 -0
- package/dist/collection/components/icon/svg/helmet-modular.svg +1 -0
- package/dist/collection/components/icon/svg/helmet-skate-color.svg +1 -0
- package/dist/collection/components/icon/svg/helmet-skate.svg +1 -0
- package/dist/collection/components/icon/svg/home.svg +1 -0
- package/dist/collection/components/icon/svg/hook-hitch-color.svg +1 -0
- package/dist/collection/components/icon/svg/hook-hitch-outline.svg +1 -0
- package/dist/collection/components/icon/svg/hook-hitch.svg +1 -0
- package/dist/collection/components/icon/svg/house-color.svg +1 -0
- package/dist/collection/components/icon/svg/house.svg +1 -0
- package/dist/collection/components/icon/svg/ice-color.svg +1 -0
- package/dist/collection/components/icon/svg/ice-outline-color.svg +1 -0
- package/dist/collection/components/icon/svg/ice-outline.svg +1 -0
- package/dist/collection/components/icon/svg/ice.svg +1 -0
- package/dist/collection/components/icon/svg/identity-card-color.svg +1 -0
- package/dist/collection/components/icon/svg/identity-card.svg +1 -0
- package/dist/collection/components/icon/svg/keep-in-repair-outline.svg +1 -0
- package/dist/collection/components/icon/svg/keep-in-repair.svg +1 -0
- package/dist/collection/components/icon/svg/key-outline-color.svg +1 -0
- package/dist/collection/components/icon/svg/key-outline.svg +1 -0
- package/dist/collection/components/icon/svg/key.svg +1 -0
- package/dist/collection/components/icon/svg/leaf.svg +1 -0
- package/dist/collection/components/icon/svg/license-plate-be.svg +1 -0
- package/dist/collection/components/icon/svg/license-plate-es.svg +1 -0
- package/dist/collection/components/icon/svg/license-plate-eu.svg +1 -0
- package/dist/collection/components/icon/svg/license-plate-fr.svg +1 -0
- package/dist/collection/components/icon/svg/license-plate-it.svg +1 -0
- package/dist/collection/components/icon/svg/license-plate-pl.svg +1 -0
- package/dist/collection/components/icon/svg/license-plate-po.svg +1 -0
- package/dist/collection/components/icon/svg/license-plate-ru.svg +1 -0
- package/dist/collection/components/icon/svg/license-plate-star-be.svg +1 -0
- package/dist/collection/components/icon/svg/license-plate-star-es.svg +1 -0
- package/dist/collection/components/icon/svg/license-plate-star-eu.svg +1 -0
- package/dist/collection/components/icon/svg/license-plate-star-fr.svg +1 -0
- package/dist/collection/components/icon/svg/license-plate-star-it.svg +1 -0
- package/dist/collection/components/icon/svg/license-plate-star-pl.svg +1 -0
- package/dist/collection/components/icon/svg/license-plate-star-po.svg +1 -0
- package/dist/collection/components/icon/svg/light-beam-back-color.svg +1 -0
- package/dist/collection/components/icon/svg/light-beam-back.svg +1 -0
- package/dist/collection/components/icon/svg/light-beam-color.svg +1 -0
- package/dist/collection/components/icon/svg/light-beam-day-color.svg +1 -0
- package/dist/collection/components/icon/svg/light-beam-day.svg +1 -0
- package/dist/collection/components/icon/svg/light-beam-fog-color.svg +1 -0
- package/dist/collection/components/icon/svg/light-beam-fog.svg +1 -0
- package/dist/collection/components/icon/svg/light-beam-high-color.svg +1 -0
- package/dist/collection/components/icon/svg/light-beam-high.svg +1 -0
- package/dist/collection/components/icon/svg/light-beam-numberplate-color.svg +1 -0
- package/dist/collection/components/icon/svg/light-beam-numberplate.svg +1 -0
- package/dist/collection/components/icon/svg/light-beam-signal-color.svg +1 -0
- package/dist/collection/components/icon/svg/light-beam-signal.svg +1 -0
- package/dist/collection/components/icon/svg/light-beam-stop-color.svg +1 -0
- package/dist/collection/components/icon/svg/light-beam-stop.svg +1 -0
- package/dist/collection/components/icon/svg/light-beam-turn-color.svg +1 -0
- package/dist/collection/components/icon/svg/light-beam-turn.svg +1 -0
- package/dist/collection/components/icon/svg/light-beam.svg +1 -0
- package/dist/collection/components/icon/svg/light-box-color.svg +1 -0
- package/dist/collection/components/icon/svg/light-box.svg +1 -0
- package/dist/collection/components/icon/svg/light-bulb-color.svg +1 -0
- package/dist/collection/components/icon/svg/light-bulb.svg +1 -0
- package/dist/collection/components/icon/svg/light-color.svg +1 -0
- package/dist/collection/components/icon/svg/light-master-color.svg +1 -0
- package/dist/collection/components/icon/svg/light-master.svg +1 -0
- package/dist/collection/components/icon/svg/light-sidelight-color.svg +1 -0
- package/dist/collection/components/icon/svg/light-sidelight.svg +1 -0
- package/dist/collection/components/icon/svg/light.svg +1 -0
- package/dist/collection/components/icon/svg/link-broken-color.svg +1 -0
- package/dist/collection/components/icon/svg/link-broken.svg +1 -0
- package/dist/collection/components/icon/svg/link-color.svg +1 -0
- package/dist/collection/components/icon/svg/link.svg +1 -0
- package/dist/collection/components/icon/svg/load-cached-color.svg +1 -0
- package/dist/collection/components/icon/svg/load-cached.svg +1 -0
- package/dist/collection/components/icon/svg/load-hitstory-color.svg +1 -0
- package/dist/collection/components/icon/svg/load-hitstory.svg +1 -0
- package/dist/collection/components/icon/svg/load-refresh.svg +1 -0
- package/dist/collection/components/icon/svg/load-sync-problem-color.svg +1 -0
- package/dist/collection/components/icon/svg/load-sync-problem.svg +1 -0
- package/dist/collection/components/icon/svg/load-update-color.svg +1 -0
- package/dist/collection/components/icon/svg/load-update.svg +1 -0
- package/dist/collection/components/icon/svg/location-compass-outline.svg +1 -0
- package/dist/collection/components/icon/svg/location-compass.svg +1 -0
- package/dist/collection/components/icon/svg/location-direction.svg +1 -0
- package/dist/collection/components/icon/svg/location-navigation-outline.svg +1 -0
- package/dist/collection/components/icon/svg/location-navigation.svg +1 -0
- package/dist/collection/components/icon/svg/location-path.svg +1 -0
- package/dist/collection/components/icon/svg/location-pin-all.svg +1 -0
- package/dist/collection/components/icon/svg/location-pin-garage-auto5.svg +1 -0
- package/dist/collection/components/icon/svg/location-pin-garage-norauto.svg +1 -0
- package/dist/collection/components/icon/svg/location-pin-garage.svg +1 -0
- package/dist/collection/components/icon/svg/location-pin-number.svg +1 -0
- package/dist/collection/components/icon/svg/location-pin-outline-color.svg +1 -0
- package/dist/collection/components/icon/svg/location-pin-outline.svg +1 -0
- package/dist/collection/components/icon/svg/location-pin.svg +1 -0
- package/dist/collection/components/icon/svg/location-target-color.svg +1 -0
- package/dist/collection/components/icon/svg/location-target.svg +1 -0
- package/dist/collection/components/icon/svg/lock-secure-open.svg +1 -0
- package/dist/collection/components/icon/svg/lock-secure.svg +1 -0
- package/dist/collection/components/icon/svg/log-out-door.svg +1 -0
- package/dist/collection/components/icon/svg/log-out.svg +1 -0
- package/dist/collection/components/icon/svg/lowering-down-color.svg +1 -0
- package/dist/collection/components/icon/svg/lowering-up-color.svg +1 -0
- package/dist/collection/components/icon/svg/lowering.svg +1 -0
- package/dist/collection/components/icon/svg/mail-outline-send-color.svg +1 -0
- package/dist/collection/components/icon/svg/mail-outline-send.svg +1 -0
- package/dist/collection/components/icon/svg/mail-outline.svg +1 -0
- package/dist/collection/components/icon/svg/mail.svg +1 -0
- package/dist/collection/components/icon/svg/meeting-check-color.svg +1 -0
- package/dist/collection/components/icon/svg/meeting-check.svg +1 -0
- package/dist/collection/components/icon/svg/meeting-color.svg +1 -0
- package/dist/collection/components/icon/svg/meeting-maintenance-color.svg +1 -0
- package/dist/collection/components/icon/svg/meeting-maintenance.svg +1 -0
- package/dist/collection/components/icon/svg/meeting-off-color.svg +1 -0
- package/dist/collection/components/icon/svg/meeting-off.svg +1 -0
- package/dist/collection/components/icon/svg/meeting-online-color.svg +1 -0
- package/dist/collection/components/icon/svg/meeting-online.svg +1 -0
- package/dist/collection/components/icon/svg/meeting-week-color.svg +1 -0
- package/dist/collection/components/icon/svg/meeting-week.svg +1 -0
- package/dist/collection/components/icon/svg/meeting.svg +1 -0
- package/dist/collection/components/icon/svg/mic-outline-color.svg +1 -0
- package/dist/collection/components/icon/svg/mic-outline.svg +1 -0
- package/dist/collection/components/icon/svg/mic.svg +1 -0
- package/dist/collection/components/icon/svg/more-horizontal.svg +1 -0
- package/dist/collection/components/icon/svg/more-vertical.svg +1 -0
- package/dist/collection/components/icon/svg/multi-service-outline.svg +1 -0
- package/dist/collection/components/icon/svg/multi-service.svg +1 -0
- package/dist/collection/components/icon/svg/navigation-add-less.svg +1 -0
- package/dist/collection/components/icon/svg/navigation-add-more.svg +1 -0
- package/dist/collection/components/icon/svg/navigation-back.svg +1 -0
- package/dist/collection/components/icon/svg/navigation-chevron.svg +1 -0
- package/dist/collection/components/icon/svg/navigation-close.svg +1 -0
- package/dist/collection/components/icon/svg/navigation-dashboard-outline-color.svg +1 -0
- package/dist/collection/components/icon/svg/navigation-dashboard-outline.svg +1 -0
- package/dist/collection/components/icon/svg/navigation-dashboard.svg +1 -0
- package/dist/collection/components/icon/svg/navigation-filter.svg +1 -0
- package/dist/collection/components/icon/svg/navigation-grid.svg +1 -0
- package/dist/collection/components/icon/svg/navigation-home-outline.svg +1 -0
- package/dist/collection/components/icon/svg/navigation-home.svg +1 -0
- package/dist/collection/components/icon/svg/navigation-launch-color.svg +1 -0
- package/dist/collection/components/icon/svg/navigation-launch-outline.svg +1 -0
- package/dist/collection/components/icon/svg/navigation-launch.svg +1 -0
- package/dist/collection/components/icon/svg/navigation-layers-outline-color.svg +1 -0
- package/dist/collection/components/icon/svg/navigation-layers-outline.svg +1 -0
- package/dist/collection/components/icon/svg/navigation-layers.svg +1 -0
- package/dist/collection/components/icon/svg/navigation-list.svg +1 -0
- package/dist/collection/components/icon/svg/navigation-menu.svg +1 -0
- package/dist/collection/components/icon/svg/navigation-more.svg +1 -0
- package/dist/collection/components/icon/svg/navigation-setting-outline-color.svg +1 -0
- package/dist/collection/components/icon/svg/navigation-setting-outline.svg +1 -0
- package/dist/collection/components/icon/svg/navigation-setting.svg +1 -0
- package/dist/collection/components/icon/svg/nose-odour-color.svg +1 -0
- package/dist/collection/components/icon/svg/nose-odour.svg +1 -0
- package/dist/collection/components/icon/svg/nut-outline-color.svg +1 -0
- package/dist/collection/components/icon/svg/nut-outline.svg +1 -0
- package/dist/collection/components/icon/svg/nut.svg +1 -0
- package/dist/collection/components/icon/svg/oil-can-outline-color.svg +1 -0
- package/dist/collection/components/icon/svg/oil-can-outline.svg +1 -0
- package/dist/collection/components/icon/svg/oil-can-small-color.svg +1 -0
- package/dist/collection/components/icon/svg/oil-can-small.svg +1 -0
- package/dist/collection/components/icon/svg/oil-can.svg +1 -0
- package/dist/collection/components/icon/svg/oil-change-color.svg +1 -0
- package/dist/collection/components/icon/svg/oil-change.svg +1 -0
- package/dist/collection/components/icon/svg/oil-color.svg +1 -0
- package/dist/collection/components/icon/svg/oil-cruet-color.svg +1 -0
- package/dist/collection/components/icon/svg/oil-cruet.svg +1 -0
- package/dist/collection/components/icon/svg/oil.svg +1 -0
- package/dist/collection/components/icon/svg/paiment-store.svg +1 -0
- package/dist/collection/components/icon/svg/paint-color.svg +1 -0
- package/dist/collection/components/icon/svg/paint-spary-gun.svg +1 -0
- package/dist/collection/components/icon/svg/paint.svg +1 -0
- package/dist/collection/components/icon/svg/parking-break-color.svg +1 -0
- package/dist/collection/components/icon/svg/parking-break.svg +1 -0
- package/dist/collection/components/icon/svg/pass-maintain-color.svg +1 -0
- package/dist/collection/components/icon/svg/pass-maintain-logo-color.svg +1 -0
- package/dist/collection/components/icon/svg/pass-maintain-logo-outline-color.svg +1 -0
- package/dist/collection/components/icon/svg/pass-maintain-logo-outline.svg +1 -0
- package/dist/collection/components/icon/svg/pass-maintain-logo.svg +1 -0
- package/dist/collection/components/icon/svg/pass-maintain.svg +1 -0
- package/dist/collection/components/icon/svg/password-reset.svg +1 -0
- package/dist/collection/components/icon/svg/payment-bill-color.svg +1 -0
- package/dist/collection/components/icon/svg/payment-bill.svg +1 -0
- package/dist/collection/components/icon/svg/payment-card-color.svg +1 -0
- package/dist/collection/components/icon/svg/payment-card.svg +1 -0
- package/dist/collection/components/icon/svg/payment-cash-color.svg +1 -0
- package/dist/collection/components/icon/svg/payment-cash.svg +1 -0
- package/dist/collection/components/icon/svg/payment-delevery-color.svg +1 -0
- package/dist/collection/components/icon/svg/payment-delevery.svg +1 -0
- package/dist/collection/components/icon/svg/payment-safety-color.svg +1 -0
- package/dist/collection/components/icon/svg/payment-safety.svg +1 -0
- package/dist/collection/components/icon/svg/payment-store-color.svg +1 -0
- package/dist/collection/components/icon/svg/payment-store.svg +1 -0
- package/dist/collection/components/icon/svg/people-add-outline-color.svg +1 -0
- package/dist/collection/components/icon/svg/people-add-outline.svg +1 -0
- package/dist/collection/components/icon/svg/people-add.svg +1 -0
- package/dist/collection/components/icon/svg/people-car-fleet-color.svg +1 -0
- package/dist/collection/components/icon/svg/people-car-fleet.svg +1 -0
- package/dist/collection/components/icon/svg/people-card-color.svg +1 -0
- package/dist/collection/components/icon/svg/people-card.svg +1 -0
- package/dist/collection/components/icon/svg/people-coworker-color.svg +1 -0
- package/dist/collection/components/icon/svg/people-coworker-norauto-color.svg +1 -0
- package/dist/collection/components/icon/svg/people-coworker-norauto.svg +1 -0
- package/dist/collection/components/icon/svg/people-coworker.svg +1 -0
- package/dist/collection/components/icon/svg/people-customer-outline.svg +1 -0
- package/dist/collection/components/icon/svg/people-customer.svg +1 -0
- package/dist/collection/components/icon/svg/people-group-outline-color.svg +1 -0
- package/dist/collection/components/icon/svg/people-group-outline.svg +1 -0
- package/dist/collection/components/icon/svg/people-group.svg +1 -0
- package/dist/collection/components/icon/svg/people-outline.svg +1 -0
- package/dist/collection/components/icon/svg/people-vip-outline-color.svg +1 -0
- package/dist/collection/components/icon/svg/people-vip-outline.svg +1 -0
- package/dist/collection/components/icon/svg/people-vip.svg +1 -0
- package/dist/collection/components/icon/svg/people.svg +1 -0
- package/dist/collection/components/icon/svg/petrol-outline-color.svg +1 -0
- package/dist/collection/components/icon/svg/petrol-outline.svg +1 -0
- package/dist/collection/components/icon/svg/petrol.svg +1 -0
- package/dist/collection/components/icon/svg/phone-ouline.svg +1 -0
- package/dist/collection/components/icon/svg/phone.svg +1 -0
- package/dist/collection/components/icon/svg/picture-color.svg +1 -0
- package/dist/collection/components/icon/svg/picture.svg +1 -0
- package/dist/collection/components/icon/svg/player-arrow-play.svg +1 -0
- package/dist/collection/components/icon/svg/player-break.svg +1 -0
- package/dist/collection/components/icon/svg/player-dvd.svg +1 -0
- package/dist/collection/components/icon/svg/player-irregular.svg +1 -0
- package/dist/collection/components/icon/svg/player-pause.svg +1 -0
- package/dist/collection/components/icon/svg/player-radio-outline.svg +1 -0
- package/dist/collection/components/icon/svg/player-radio.svg +1 -0
- package/dist/collection/components/icon/svg/player-regular.svg +1 -0
- package/dist/collection/components/icon/svg/player-unlimited.svg +1 -0
- package/dist/collection/components/icon/svg/player-video-color.svg +1 -0
- package/dist/collection/components/icon/svg/player-video.svg +1 -0
- package/dist/collection/components/icon/svg/power-color.svg +1 -0
- package/dist/collection/components/icon/svg/power.svg +1 -0
- package/dist/collection/components/icon/svg/print-outline-color.svg +1 -0
- package/dist/collection/components/icon/svg/print-outline.svg +1 -0
- package/dist/collection/components/icon/svg/print.svg +1 -0
- package/dist/collection/components/icon/svg/purchase-history-color.svg +1 -0
- package/dist/collection/components/icon/svg/purchase-history.svg +1 -0
- package/dist/collection/components/icon/svg/radiator-color.svg +1 -0
- package/dist/collection/components/icon/svg/radiator.svg +1 -0
- package/dist/collection/components/icon/svg/rent-back-color.svg +1 -0
- package/dist/collection/components/icon/svg/rent-back.svg +1 -0
- package/dist/collection/components/icon/svg/rent-color.svg +1 -0
- package/dist/collection/components/icon/svg/rent.svg +1 -0
- package/dist/collection/components/icon/svg/roof-rack-cross-bars.svg +1 -0
- package/dist/collection/components/icon/svg/rubber-outline-color.svg +1 -0
- package/dist/collection/components/icon/svg/rubber-outline.svg +1 -0
- package/dist/collection/components/icon/svg/rubber.svg +1 -0
- package/dist/collection/components/icon/svg/save-disk-color.svg +1 -0
- package/dist/collection/components/icon/svg/save-disk.svg +1 -0
- package/dist/collection/components/icon/svg/scan-bar-code-color.svg +1 -0
- package/dist/collection/components/icon/svg/scan-bar-code.svg +1 -0
- package/dist/collection/components/icon/svg/scan-color.svg +1 -0
- package/dist/collection/components/icon/svg/scan-qr-code-color.svg +1 -0
- package/dist/collection/components/icon/svg/scan-qr-code.svg +1 -0
- package/dist/collection/components/icon/svg/scan-vehicle-card.svg +1 -0
- package/dist/collection/components/icon/svg/scan.svg +1 -0
- package/dist/collection/components/icon/svg/scissor-color.svg +1 -0
- package/dist/collection/components/icon/svg/scissor-outline.svg +1 -0
- package/dist/collection/components/icon/svg/scissor.svg +1 -0
- package/dist/collection/components/icon/svg/search.svg +1 -0
- package/dist/collection/components/icon/svg/security-belt.svg +1 -0
- package/dist/collection/components/icon/svg/security-color.svg +1 -0
- package/dist/collection/components/icon/svg/security.svg +1 -0
- package/dist/collection/components/icon/svg/sensor.svg +1 -0
- package/dist/collection/components/icon/svg/setting.svg +1 -0
- package/dist/collection/components/icon/svg/shipping-checked-color.svg +1 -0
- package/dist/collection/components/icon/svg/shipping-checked.svg +1 -0
- package/dist/collection/components/icon/svg/shipping-click-and-collect-color.svg +1 -0
- package/dist/collection/components/icon/svg/shipping-click-and-collect.svg +1 -0
- package/dist/collection/components/icon/svg/shipping-color.svg +1 -0
- package/dist/collection/components/icon/svg/shipping-express-color.svg +1 -0
- package/dist/collection/components/icon/svg/shipping-express.svg +1 -0
- package/dist/collection/components/icon/svg/shipping-locator-color.svg +1 -0
- package/dist/collection/components/icon/svg/shipping-locator.svg +1 -0
- package/dist/collection/components/icon/svg/shipping-locker-color.svg +1 -0
- package/dist/collection/components/icon/svg/shipping-locker.svg +1 -0
- package/dist/collection/components/icon/svg/shipping-return-color.svg +1 -0
- package/dist/collection/components/icon/svg/shipping-return.svg +1 -0
- package/dist/collection/components/icon/svg/shipping.svg +1 -0
- package/dist/collection/components/icon/svg/shock-absorber-color.svg +1 -0
- package/dist/collection/components/icon/svg/shock-absorber.svg +1 -0
- package/dist/collection/components/icon/svg/shop-color.svg +1 -0
- package/dist/collection/components/icon/svg/shop.svg +1 -0
- package/dist/collection/components/icon/svg/shopping-cart-add-color.svg +1 -0
- package/dist/collection/components/icon/svg/shopping-cart-add.svg +1 -0
- package/dist/collection/components/icon/svg/shopping-cart-sad-color.svg +1 -0
- package/dist/collection/components/icon/svg/shopping-cart-sad.svg +1 -0
- package/dist/collection/components/icon/svg/shopping-cart.svg +1 -0
- package/dist/collection/components/icon/svg/sign.svg +1 -0
- package/dist/collection/components/icon/svg/sissor.svg +1 -0
- package/dist/collection/components/icon/svg/snowflake-color.svg +1 -0
- package/dist/collection/components/icon/svg/snowflake-outline-color.svg +1 -0
- package/dist/collection/components/icon/svg/snowflake-outline.svg +1 -0
- package/dist/collection/components/icon/svg/snowflake.svg +1 -0
- package/dist/collection/components/icon/svg/social-facebook-outline.svg +1 -0
- package/dist/collection/components/icon/svg/social-facebook.svg +1 -0
- package/dist/collection/components/icon/svg/social-google-outline.svg +1 -0
- package/dist/collection/components/icon/svg/social-google.svg +1 -0
- package/dist/collection/components/icon/svg/social-instagram-outline.svg +1 -0
- package/dist/collection/components/icon/svg/social-instagram.svg +1 -0
- package/dist/collection/components/icon/svg/social-twitter-outline.svg +1 -0
- package/dist/collection/components/icon/svg/social-twitter.svg +1 -0
- package/dist/collection/components/icon/svg/social-youtube-outline.svg +1 -0
- package/dist/collection/components/icon/svg/social-youtube.svg +1 -0
- package/dist/collection/components/icon/svg/sound-0-outline-color.svg +1 -0
- package/dist/collection/components/icon/svg/sound-0-outline.svg +1 -0
- package/dist/collection/components/icon/svg/sound-0.svg +1 -0
- package/dist/collection/components/icon/svg/sound-1-outline-color.svg +1 -0
- package/dist/collection/components/icon/svg/sound-1-outline.svg +1 -0
- package/dist/collection/components/icon/svg/sound-1.svg +1 -0
- package/dist/collection/components/icon/svg/sound-2-outline-color.svg +1 -0
- package/dist/collection/components/icon/svg/sound-2-outline.svg +1 -0
- package/dist/collection/components/icon/svg/sound-2.svg +1 -0
- package/dist/collection/components/icon/svg/sound-3-outline-color.svg +1 -0
- package/dist/collection/components/icon/svg/sound-3-outline.svg +1 -0
- package/dist/collection/components/icon/svg/sound-3.svg +1 -0
- package/dist/collection/components/icon/svg/sound-alarm.svg +1 -0
- package/dist/collection/components/icon/svg/spark-color.svg +1 -0
- package/dist/collection/components/icon/svg/spark-outline.svg +1 -0
- package/dist/collection/components/icon/svg/spark.svg +1 -0
- package/dist/collection/components/icon/svg/speak-advice-outline-color.svg +1 -0
- package/dist/collection/components/icon/svg/speak-advice-outline.svg +1 -0
- package/dist/collection/components/icon/svg/speak-advice.svg +1 -0
- package/dist/collection/components/icon/svg/speak-outline-color.svg +1 -0
- package/dist/collection/components/icon/svg/speak-outline.svg +1 -0
- package/dist/collection/components/icon/svg/speak.svg +1 -0
- package/dist/collection/components/icon/svg/speaker-color.svg +1 -0
- package/dist/collection/components/icon/svg/speaker.svg +1 -0
- package/dist/collection/components/icon/svg/star-half-color.svg +1 -0
- package/dist/collection/components/icon/svg/star-smile.svg +1 -0
- package/dist/collection/components/icon/svg/star.svg +1 -0
- package/dist/collection/components/icon/svg/steering-control-color.svg +1 -0
- package/dist/collection/components/icon/svg/steering-control.svg +1 -0
- package/dist/collection/components/icon/svg/style-color.svg +1 -0
- package/dist/collection/components/icon/svg/style.svg +1 -0
- package/dist/collection/components/icon/svg/suspension.svg +1 -0
- package/dist/collection/components/icon/svg/thumb-outline.svg +1 -0
- package/dist/collection/components/icon/svg/thumb.svg +1 -0
- package/dist/collection/components/icon/svg/time-access-color.svg +1 -0
- package/dist/collection/components/icon/svg/time-access.svg +1 -0
- package/dist/collection/components/icon/svg/timer-1h-color.svg +1 -0
- package/dist/collection/components/icon/svg/timer-1h.svg +1 -0
- package/dist/collection/components/icon/svg/timer-2h-color.svg +1 -0
- package/dist/collection/components/icon/svg/timer-2h.svg +1 -0
- package/dist/collection/components/icon/svg/timer-color.svg +1 -0
- package/dist/collection/components/icon/svg/timer.svg +1 -0
- package/dist/collection/components/icon/svg/timing-belt-color.svg +1 -0
- package/dist/collection/components/icon/svg/timing-belt.svg +1 -0
- package/dist/collection/components/icon/svg/tire-all-terrain-color.svg +1 -0
- package/dist/collection/components/icon/svg/tire-all-terrain-outline.svg +1 -0
- package/dist/collection/components/icon/svg/tire-all-terrain.svg +1 -0
- package/dist/collection/components/icon/svg/tire-alone.svg +1 -0
- package/dist/collection/components/icon/svg/tire-color.svg +1 -0
- package/dist/collection/components/icon/svg/tire-diameter-color.svg +1 -0
- package/dist/collection/components/icon/svg/tire-diameter-outline.svg +1 -0
- package/dist/collection/components/icon/svg/tire-diameter.svg +1 -0
- package/dist/collection/components/icon/svg/tire-energy-color.svg +1 -0
- package/dist/collection/components/icon/svg/tire-energy-outline.svg +1 -0
- package/dist/collection/components/icon/svg/tire-energy.svg +1 -0
- package/dist/collection/components/icon/svg/tire-flat-color.svg +1 -0
- package/dist/collection/components/icon/svg/tire-flat-outline.svg +1 -0
- package/dist/collection/components/icon/svg/tire-flat.svg +1 -0
- package/dist/collection/components/icon/svg/tire-hotel-outline-color.svg +1 -0
- package/dist/collection/components/icon/svg/tire-hotel-outline.svg +1 -0
- package/dist/collection/components/icon/svg/tire-hotel.svg +1 -0
- package/dist/collection/components/icon/svg/tire-hub-cap-color.svg +1 -0
- package/dist/collection/components/icon/svg/tire-hub-cap-outline.svg +1 -0
- package/dist/collection/components/icon/svg/tire-hub-cap.svg +1 -0
- package/dist/collection/components/icon/svg/tire-ice-color.svg +1 -0
- package/dist/collection/components/icon/svg/tire-ice-outline.svg +1 -0
- package/dist/collection/components/icon/svg/tire-ice.svg +1 -0
- package/dist/collection/components/icon/svg/tire-outline.svg +1 -0
- package/dist/collection/components/icon/svg/tire-parallelism-color.svg +1 -0
- package/dist/collection/components/icon/svg/tire-parallelism.svg +1 -0
- package/dist/collection/components/icon/svg/tire-rain-color.svg +1 -0
- package/dist/collection/components/icon/svg/tire-rain-outline.svg +1 -0
- package/dist/collection/components/icon/svg/tire-rain.svg +1 -0
- package/dist/collection/components/icon/svg/tire-rim-color.svg +1 -0
- package/dist/collection/components/icon/svg/tire-rim-outline.svg +1 -0
- package/dist/collection/components/icon/svg/tire-rim.svg +1 -0
- package/dist/collection/components/icon/svg/tire-seize.svg +1 -0
- package/dist/collection/components/icon/svg/tire-sidewall-height-color.svg +1 -0
- package/dist/collection/components/icon/svg/tire-sidewall-height-outline.svg +1 -0
- package/dist/collection/components/icon/svg/tire-sidewall-height.svg +1 -0
- package/dist/collection/components/icon/svg/tire-snow-chain-color.svg +1 -0
- package/dist/collection/components/icon/svg/tire-snow-chain-outline.svg +1 -0
- package/dist/collection/components/icon/svg/tire-snow-chain.svg +1 -0
- package/dist/collection/components/icon/svg/tire-snow-color.svg +1 -0
- package/dist/collection/components/icon/svg/tire-snow-outline.svg +1 -0
- package/dist/collection/components/icon/svg/tire-snow-studded-color.svg +1 -0
- package/dist/collection/components/icon/svg/tire-snow-studded-outline.svg +1 -0
- package/dist/collection/components/icon/svg/tire-snow-studded.svg +1 -0
- package/dist/collection/components/icon/svg/tire-snow.svg +1 -0
- package/dist/collection/components/icon/svg/tire-sound-color.svg +1 -0
- package/dist/collection/components/icon/svg/tire-sound-outline.svg +1 -0
- package/dist/collection/components/icon/svg/tire-sound.svg +1 -0
- package/dist/collection/components/icon/svg/tire-steel.svg +1 -0
- package/dist/collection/components/icon/svg/tire-sun-color.svg +1 -0
- package/dist/collection/components/icon/svg/tire-sun-outline.svg +1 -0
- package/dist/collection/components/icon/svg/tire-sun-snow-color.svg +1 -0
- package/dist/collection/components/icon/svg/tire-sun-snow-outline.svg +1 -0
- package/dist/collection/components/icon/svg/tire-sun-snow.svg +1 -0
- package/dist/collection/components/icon/svg/tire-sun.svg +1 -0
- package/dist/collection/components/icon/svg/tire-suspension-color.svg +1 -0
- package/dist/collection/components/icon/svg/tire-suspension.svg +1 -0
- package/dist/collection/components/icon/svg/tire-wheel-diameter-color.svg +1 -0
- package/dist/collection/components/icon/svg/tire-wheel-diameter-outline.svg +1 -0
- package/dist/collection/components/icon/svg/tire-wheel-diameter.svg +1 -0
- package/dist/collection/components/icon/svg/tire-wheel-rim-color.svg +1 -0
- package/dist/collection/components/icon/svg/tire-wheel-rim-outline.svg +1 -0
- package/dist/collection/components/icon/svg/tire-wheel-rim.svg +1 -0
- package/dist/collection/components/icon/svg/tire-wheel-steel-color.svg +1 -0
- package/dist/collection/components/icon/svg/tire-wheel-steel-outline.svg +1 -0
- package/dist/collection/components/icon/svg/tire-wheel-steel.svg +1 -0
- package/dist/collection/components/icon/svg/tire-witdh-color.svg +1 -0
- package/dist/collection/components/icon/svg/tire-witdh-outline.svg +1 -0
- package/dist/collection/components/icon/svg/tire-witdh.svg +1 -0
- package/dist/collection/components/icon/svg/tire.svg +1 -0
- package/dist/collection/components/icon/svg/touch.svg +1 -0
- package/dist/collection/components/icon/svg/translate.svg +1 -0
- package/dist/collection/components/icon/svg/transmission-color.svg +1 -0
- package/dist/collection/components/icon/svg/transmission.svg +1 -0
- package/dist/collection/components/icon/svg/trash-bin-color.svg +1 -0
- package/dist/collection/components/icon/svg/trash-bin.svg +1 -0
- package/dist/collection/components/icon/svg/travel-bag.svg +1 -0
- package/dist/collection/components/icon/svg/travel-suitcase.svg +1 -0
- package/dist/collection/components/icon/svg/travel.svg +1 -0
- package/dist/collection/components/icon/svg/trick-outline-color.svg +1 -0
- package/dist/collection/components/icon/svg/trick-outline.svg +1 -0
- package/dist/collection/components/icon/svg/trick.svg +1 -0
- package/dist/collection/components/icon/svg/trust.svg +1 -0
- package/dist/collection/components/icon/svg/vehicle-3-doors-color.svg +1 -0
- package/dist/collection/components/icon/svg/vehicle-3-doors-hatchback-color.svg +1 -0
- package/dist/collection/components/icon/svg/vehicle-3-doors.svg +1 -0
- package/dist/collection/components/icon/svg/vehicle-5-doors-color.svg +1 -0
- package/dist/collection/components/icon/svg/vehicle-5-doors-hatchback-color.svg +1 -0
- package/dist/collection/components/icon/svg/vehicle-5-doors.svg +1 -0
- package/dist/collection/components/icon/svg/vehicle-bike-electric.svg +1 -0
- package/dist/collection/components/icon/svg/vehicle-bike-rack.svg +1 -0
- package/dist/collection/components/icon/svg/vehicle-bike.svg +1 -0
- package/dist/collection/components/icon/svg/vehicle-bus.svg +1 -0
- package/dist/collection/components/icon/svg/vehicle-car-add-outline-color.svg +1 -0
- package/dist/collection/components/icon/svg/vehicle-car-add-outline.svg +1 -0
- package/dist/collection/components/icon/svg/vehicle-car-add.svg +1 -0
- package/dist/collection/components/icon/svg/vehicle-car-all-outline-color.svg +1 -0
- package/dist/collection/components/icon/svg/vehicle-car-all-outline.svg +1 -0
- package/dist/collection/components/icon/svg/vehicle-car-all.svg +1 -0
- package/dist/collection/components/icon/svg/vehicle-car-bodywork.svg +1 -0
- package/dist/collection/components/icon/svg/vehicle-car-checked-outline-color.svg +1 -0
- package/dist/collection/components/icon/svg/vehicle-car-checked-outline.svg +1 -0
- package/dist/collection/components/icon/svg/vehicle-car-checked.svg +1 -0
- package/dist/collection/components/icon/svg/vehicle-car-light-back-color.svg +1 -0
- package/dist/collection/components/icon/svg/vehicle-car-light-front-color.svg +1 -0
- package/dist/collection/components/icon/svg/vehicle-car-light-inside-color.svg +1 -0
- package/dist/collection/components/icon/svg/vehicle-car-moto.svg +1 -0
- package/dist/collection/components/icon/svg/vehicle-car-outline-back.svg +1 -0
- package/dist/collection/components/icon/svg/vehicle-car-outline-cockpit.svg +1 -0
- package/dist/collection/components/icon/svg/vehicle-car-outline-color.svg +1 -0
- package/dist/collection/components/icon/svg/vehicle-car-outline-front.svg +1 -0
- package/dist/collection/components/icon/svg/vehicle-car-outline-side.svg +1 -0
- package/dist/collection/components/icon/svg/vehicle-car-outline-signal.svg +1 -0
- package/dist/collection/components/icon/svg/vehicle-car-outline.svg +1 -0
- package/dist/collection/components/icon/svg/vehicle-car-sad-outline.svg +1 -0
- package/dist/collection/components/icon/svg/vehicle-car-sad.svg +1 -0
- package/dist/collection/components/icon/svg/vehicle-car-search-outline.svg +1 -0
- package/dist/collection/components/icon/svg/vehicle-car-search.svg +1 -0
- package/dist/collection/components/icon/svg/vehicle-car-setting-outline-color.svg +1 -0
- package/dist/collection/components/icon/svg/vehicle-car-setting-outline.svg +1 -0
- package/dist/collection/components/icon/svg/vehicle-car-setting.svg +1 -0
- package/dist/collection/components/icon/svg/vehicle-car-side-outline.svg +1 -0
- package/dist/collection/components/icon/svg/vehicle-car-side-tire-behind.svg +1 -0
- package/dist/collection/components/icon/svg/vehicle-car-side-tire-front.svg +1 -0
- package/dist/collection/components/icon/svg/vehicle-car-side.svg +1 -0
- package/dist/collection/components/icon/svg/vehicle-car-sound-outline.svg +1 -0
- package/dist/collection/components/icon/svg/vehicle-car-sound.svg +1 -0
- package/dist/collection/components/icon/svg/vehicle-car-unknow-outline.svg +1 -0
- package/dist/collection/components/icon/svg/vehicle-car-unknow.svg +1 -0
- package/dist/collection/components/icon/svg/vehicle-car-unknowoutline-color.svg +1 -0
- package/dist/collection/components/icon/svg/vehicle-car-unselected-outline-color.svg +1 -0
- package/dist/collection/components/icon/svg/vehicle-car-unselected-outline.svg +1 -0
- package/dist/collection/components/icon/svg/vehicle-car-unselected.svg +1 -0
- package/dist/collection/components/icon/svg/vehicle-car.svg +1 -0
- package/dist/collection/components/icon/svg/vehicle-caravan.svg +1 -0
- package/dist/collection/components/icon/svg/vehicle-carport-color.svg +1 -0
- package/dist/collection/components/icon/svg/vehicle-carport.svg +1 -0
- package/dist/collection/components/icon/svg/vehicle-collector.svg +1 -0
- package/dist/collection/components/icon/svg/vehicle-delevery-fast-outline-color.svg +1 -0
- package/dist/collection/components/icon/svg/vehicle-delevery-fast-outline.svg +1 -0
- package/dist/collection/components/icon/svg/vehicle-delevery-fast.svg +1 -0
- package/dist/collection/components/icon/svg/vehicle-delevery-meeting-outline-color.svg +1 -0
- package/dist/collection/components/icon/svg/vehicle-delevery-meeting-outline.svg +1 -0
- package/dist/collection/components/icon/svg/vehicle-delevery-meeting.svg +1 -0
- package/dist/collection/components/icon/svg/vehicle-delevery-privilege.svg +1 -0
- package/dist/collection/components/icon/svg/vehicle-delevery-van.svg +1 -0
- package/dist/collection/components/icon/svg/vehicle-delevery.svg +1 -0
- package/dist/collection/components/icon/svg/vehicle-drive-carport-color.svg +1 -0
- package/dist/collection/components/icon/svg/vehicle-drive-carport.svg +1 -0
- package/dist/collection/components/icon/svg/vehicle-drive-color.svg +1 -0
- package/dist/collection/components/icon/svg/vehicle-drive.svg +1 -0
- package/dist/collection/components/icon/svg/vehicle-moto-bike.svg +1 -0
- package/dist/collection/components/icon/svg/vehicle-moto.svg +1 -0
- package/dist/collection/components/icon/svg/vehicle-mower.svg +1 -0
- package/dist/collection/components/icon/svg/vehicle-no-license.svg +1 -0
- package/dist/collection/components/icon/svg/vehicle-pickup-van.svg +1 -0
- package/dist/collection/components/icon/svg/vehicle-pickup.svg +1 -0
- package/dist/collection/components/icon/svg/vehicle-quad.svg +1 -0
- package/dist/collection/components/icon/svg/vehicle-rally.svg +1 -0
- package/dist/collection/components/icon/svg/vehicle-rent-bike-electric.svg +1 -0
- package/dist/collection/components/icon/svg/vehicle-rent-car-no-license.svg +1 -0
- package/dist/collection/components/icon/svg/vehicle-rent-car.svg +1 -0
- package/dist/collection/components/icon/svg/vehicle-rent-trailer.svg +1 -0
- package/dist/collection/components/icon/svg/vehicle-repair-car.svg +1 -0
- package/dist/collection/components/icon/svg/vehicle-repair-moto.svg +1 -0
- package/dist/collection/components/icon/svg/vehicle-repair-pickup-van.svg +1 -0
- package/dist/collection/components/icon/svg/vehicle-repair-van.svg +1 -0
- package/dist/collection/components/icon/svg/vehicle-road-grip-outline.svg +1 -0
- package/dist/collection/components/icon/svg/vehicle-road-grip.svg +1 -0
- package/dist/collection/components/icon/svg/vehicle-roof-box-outline-color.svg +1 -0
- package/dist/collection/components/icon/svg/vehicle-roof-box-outline.svg +1 -0
- package/dist/collection/components/icon/svg/vehicle-roof-box.svg +1 -0
- package/dist/collection/components/icon/svg/vehicle-scooter-kick.svg +1 -0
- package/dist/collection/components/icon/svg/vehicle-scooter.svg +1 -0
- package/dist/collection/components/icon/svg/vehicle-suv.svg +1 -0
- package/dist/collection/components/icon/svg/vehicle-tire-invert.svg +1 -0
- package/dist/collection/components/icon/svg/vehicle-tires-all-color.svg +1 -0
- package/dist/collection/components/icon/svg/vehicle-tires-back-color.svg +1 -0
- package/dist/collection/components/icon/svg/vehicle-tires-back-left-color.svg +1 -0
- package/dist/collection/components/icon/svg/vehicle-tires-back-right-color.svg +1 -0
- package/dist/collection/components/icon/svg/vehicle-tires-front-color.svg +1 -0
- package/dist/collection/components/icon/svg/vehicle-tires-front-left-color.svg +1 -0
- package/dist/collection/components/icon/svg/vehicle-tires-front-right-color.svg +1 -0
- package/dist/collection/components/icon/svg/vehicle-tires.svg +1 -0
- package/dist/collection/components/icon/svg/vehicle-tractor.svg +1 -0
- package/dist/collection/components/icon/svg/vehicle-trailer.svg +1 -0
- package/dist/collection/components/icon/svg/vehicle-truck.svg +1 -0
- package/dist/collection/components/icon/svg/vehicle-van.svg +1 -0
- package/dist/collection/components/icon/svg/vehicle-workshop-outline-color.svg +1 -0
- package/dist/collection/components/icon/svg/vehicle-workshop-outline.svg +1 -0
- package/dist/collection/components/icon/svg/vehicle-workshop.svg +1 -0
- package/dist/collection/components/icon/svg/ventilator-color.svg +1 -0
- package/dist/collection/components/icon/svg/ventilator.svg +1 -0
- package/dist/collection/components/icon/svg/videocam-outline.svg +1 -0
- package/dist/collection/components/icon/svg/videocam.svg +1 -0
- package/dist/collection/components/icon/svg/view-3d-360-color.svg +1 -0
- package/dist/collection/components/icon/svg/view-3d-360-disabled-color.svg +1 -0
- package/dist/collection/components/icon/svg/view-3d-360-disabled.svg +1 -0
- package/dist/collection/components/icon/svg/view-3d-360.svg +1 -0
- package/dist/collection/components/icon/svg/virus-color.svg +1 -0
- package/dist/collection/components/icon/svg/virus.svg +1 -0
- package/dist/collection/components/icon/svg/visibility-off-outline-color.svg +1 -0
- package/dist/collection/components/icon/svg/visibility-off-outline.svg +1 -0
- package/dist/collection/components/icon/svg/visibility-off.svg +1 -0
- package/dist/collection/components/icon/svg/visibility-outline-color.svg +1 -0
- package/dist/collection/components/icon/svg/visibility-outline.svg +1 -0
- package/dist/collection/components/icon/svg/visibility.svg +1 -0
- package/dist/collection/components/icon/svg/warehouse-color.svg +1 -0
- package/dist/collection/components/icon/svg/warehouse.svg +1 -0
- package/dist/collection/components/icon/svg/weather-rain-color.svg +1 -0
- package/dist/collection/components/icon/svg/weather-rain-outline-color.svg +1 -0
- package/dist/collection/components/icon/svg/weather-rain-outline.svg +1 -0
- package/dist/collection/components/icon/svg/weather-rain.svg +1 -0
- package/dist/collection/components/icon/svg/weather-snow-color.svg +1 -0
- package/dist/collection/components/icon/svg/weather-snow.svg +1 -0
- package/dist/collection/components/icon/svg/weather-sun-color.svg +1 -0
- package/dist/collection/components/icon/svg/weather-sun-outline-color.svg +1 -0
- package/dist/collection/components/icon/svg/weather-sun-outline.svg +1 -0
- package/dist/collection/components/icon/svg/weather-sun-snow-color.svg +1 -0
- package/dist/collection/components/icon/svg/weather-sun-snow-outline-color.svg +1 -0
- package/dist/collection/components/icon/svg/weather-sun-snow-outline.svg +1 -0
- package/dist/collection/components/icon/svg/weather-sun-snow.svg +1 -0
- package/dist/collection/components/icon/svg/weather-sun.svg +1 -0
- package/dist/collection/components/icon/svg/wheel-bearings-color.svg +1 -0
- package/dist/collection/components/icon/svg/wheel-bearings.svg +1 -0
- package/dist/collection/components/icon/svg/wifi.svg +1 -0
- package/dist/collection/components/icon/svg/windscreen-back-fluid-color.svg +1 -0
- package/dist/collection/components/icon/svg/windscreen-back-fluid.svg +1 -0
- package/dist/collection/components/icon/svg/windscreen-back-frost-color.svg +1 -0
- package/dist/collection/components/icon/svg/windscreen-back-frost.svg +1 -0
- package/dist/collection/components/icon/svg/windscreen-back-wiper-color.svg +1 -0
- package/dist/collection/components/icon/svg/windscreen-back-wiper.svg +1 -0
- package/dist/collection/components/icon/svg/windscreen-color.svg +1 -0
- package/dist/collection/components/icon/svg/windscreen-fluid-color.svg +1 -0
- package/dist/collection/components/icon/svg/windscreen-fluid.svg +1 -0
- package/dist/collection/components/icon/svg/windscreen-frost-color.svg +1 -0
- package/dist/collection/components/icon/svg/windscreen-frost.svg +1 -0
- package/dist/collection/components/icon/svg/windscreen-wiper-color.svg +1 -0
- package/dist/collection/components/icon/svg/windscreen-wiper.svg +1 -0
- package/dist/collection/components/icon/svg/windscreen-wipers-color.svg +1 -0
- package/dist/collection/components/icon/svg/windscreen-wipers-left-color.svg +1 -0
- package/dist/collection/components/icon/svg/windscreen-wipers-left.svg +1 -0
- package/dist/collection/components/icon/svg/windscreen-wipers-right-color.svg +1 -0
- package/dist/collection/components/icon/svg/windscreen-wipers-right.svg +1 -0
- package/dist/collection/components/icon/svg/windscreen-wipers.svg +1 -0
- package/dist/collection/components/icon/svg/windscreen.svg +1 -0
- package/dist/collection/components/icon/svg/windshield-washer-fluid.svg +1 -0
- package/dist/collection/components/icon/svg/world-color.svg +1 -0
- package/dist/collection/components/icon/svg/world.svg +1 -0
- package/dist/collection/components/icon/svg/wrench-dual-outline.svg +1 -0
- package/dist/collection/components/icon/svg/wrench-dual.svg +1 -0
- package/dist/collection/components/icon/svg/wrench-hand-color.svg +1 -0
- package/dist/collection/components/icon/svg/wrench-hand-dual-color.svg +1 -0
- package/dist/collection/components/icon/svg/wrench-hand-dual.svg +1 -0
- package/dist/collection/components/icon/svg/wrench-hand.svg +1 -0
- package/dist/collection/components/icon/svg/wrench-outline-color.svg +1 -0
- package/dist/collection/components/icon/svg/wrench-outline.svg +1 -0
- package/dist/collection/components/icon/svg/wrench-tools.svg +1 -0
- package/dist/collection/components/icon/svg/wrench-twin.svg +1 -0
- package/dist/collection/components/icon/svg/wrench.svg +1 -0
- package/dist/collection/components/icon/utils.js +72 -0
- package/dist/collection/components/icon/validate.js +43 -0
- package/dist/collection/components/img/img.css +41 -0
- package/dist/collection/components/img/img.js +160 -0
- package/dist/collection/components/img/img.stories.js +28 -0
- package/dist/collection/components/input/input.css +181 -0
- package/dist/collection/components/input/input.js +603 -0
- package/dist/collection/components/input/input.stories.js +156 -0
- package/dist/collection/components/input-group/input-group.css +183 -0
- package/dist/collection/components/input-group/input-group.js +24 -0
- package/dist/collection/components/input-group/input-group.stories.js +31 -0
- package/dist/collection/components/item/item.css +200 -0
- package/dist/collection/components/item/item.js +267 -0
- package/dist/collection/components/item/item.stories.js +130 -0
- package/dist/collection/components/label/label.css +9 -0
- package/dist/collection/components/label/label.js +18 -0
- package/dist/collection/components/list/list.css +51 -0
- package/dist/collection/components/list/list.js +40 -0
- package/dist/collection/components/list/list.stories.js +85 -0
- package/dist/collection/components/modal/modal.css +206 -0
- package/dist/collection/components/modal/modal.js +236 -0
- package/dist/collection/components/modal/modal.stories.js +51 -0
- package/dist/collection/components/navbar/navbar.css +29 -0
- package/dist/collection/components/navbar/navbar.js +81 -0
- package/dist/collection/components/navbar/navbar.stories.js +92 -0
- package/dist/collection/components/navbar-item/navbar-item.css +123 -0
- package/dist/collection/components/navbar-item/navbar-item.js +217 -0
- package/dist/collection/components/patterns/crossselling.stories.js +171 -0
- package/dist/collection/components/patterns/filter.stories.js +288 -0
- package/dist/collection/components/plate-number/fonts/Oswald-Medium.woff2 +0 -0
- package/dist/collection/components/plate-number/plate-number.css +82 -0
- package/dist/collection/components/plate-number/plate-number.js +214 -0
- package/dist/collection/components/plate-number/plate-number.stories.js +41 -0
- package/dist/collection/components/progress/progress.css +52 -0
- package/dist/collection/components/progress/progress.js +69 -0
- package/dist/collection/components/progress/progress.stories.js +65 -0
- package/dist/collection/components/radio/radio.css +165 -0
- package/dist/collection/components/radio/radio.js +290 -0
- package/dist/collection/components/radio/radio.stories.js +117 -0
- package/dist/collection/components/radio-group/radio-group.css +34 -0
- package/dist/collection/components/radio-group/radio-group.js +245 -0
- package/dist/collection/components/range/range.css +149 -0
- package/dist/collection/components/range/range.js +182 -0
- package/dist/collection/components/range/range.stories.js +44 -0
- package/dist/collection/components/rating/rating.css +18 -0
- package/dist/collection/components/rating/rating.js +96 -0
- package/dist/collection/components/rating/rating.stories.js +45 -0
- package/dist/collection/components/row/row.css +333 -0
- package/dist/collection/components/row/row.js +18 -0
- package/dist/collection/components/select/select.css +126 -0
- package/dist/collection/components/select/select.js +307 -0
- package/dist/collection/components/select/select.stories.js +113 -0
- package/dist/collection/components/skeleton/skeleton.css +36 -0
- package/dist/collection/components/skeleton/skeleton.js +15 -0
- package/dist/collection/components/skeleton/skeleton.stories.js +90 -0
- package/dist/collection/components/spinner/spinner.css +63 -0
- package/dist/collection/components/spinner/spinner.js +16 -0
- package/dist/collection/components/spinner/spinner.stories.js +10 -0
- package/dist/collection/components/switch/switch.css +206 -0
- package/dist/collection/components/switch/switch.js +342 -0
- package/dist/collection/components/switch/switch.stories.js +103 -0
- package/dist/collection/components/tab/tab.css +7 -0
- package/dist/collection/components/tab/tab.js +93 -0
- package/dist/collection/components/tab-bar/tab-bar.css +47 -0
- package/dist/collection/components/tab-bar/tab-bar.js +122 -0
- package/dist/collection/components/tab-button/tab-button.css +165 -0
- package/dist/collection/components/tab-button/tab-button.js +235 -0
- package/dist/collection/components/table/table.css +30 -0
- package/dist/collection/components/table/table.js +18 -0
- package/dist/collection/components/table/table.stories.js +42 -0
- package/dist/collection/components/tabs/tabs.css +4 -0
- package/dist/collection/components/tabs/tabs.js +220 -0
- package/dist/collection/components/tabs/tabs.stories.js +176 -0
- package/dist/collection/components/text/text.css +46 -0
- package/dist/collection/components/text/text.js +45 -0
- package/dist/collection/components/text/text.stories.js +23 -0
- package/dist/collection/components/textarea/textarea.css +142 -0
- package/dist/collection/components/textarea/textarea.js +490 -0
- package/dist/collection/components/textarea/textarea.stories.js +141 -0
- package/dist/collection/components/toast/toast.css +197 -0
- package/dist/collection/components/toast/toast.js +247 -0
- package/dist/collection/components/toast/toast.stories.js +66 -0
- package/dist/collection/components/toolbar/toolbar.css +72 -0
- package/dist/collection/components/toolbar/toolbar.js +49 -0
- package/dist/collection/components/toolbar/toolbar.stories.js +30 -0
- package/dist/collection/components/toolbar-title/toolbar-title.css +23 -0
- package/dist/collection/components/toolbar-title/toolbar-title.js +19 -0
- package/dist/collection/components/tooltip/tooltip.css +102 -0
- package/dist/collection/components/tooltip/tooltip.js +209 -0
- package/dist/collection/components/tooltip/tooltip.stories.js +67 -0
- package/dist/collection/components/utilities/border.stories.js +39 -0
- package/dist/collection/components/utilities/color.stories.js +27 -0
- package/dist/collection/components/utilities/flexbox.stories.js +72 -0
- package/dist/collection/components/utilities/text.stories.js +29 -0
- package/dist/collection/components/utilities/typography.stories.js +23 -0
- package/dist/collection/fonts/Muli-Bold.woff +0 -0
- package/dist/collection/fonts/Muli-Bold.woff2 +0 -0
- package/dist/collection/fonts/Muli-Regular.woff +0 -0
- package/dist/collection/fonts/Muli-Regular.woff2 +0 -0
- package/dist/collection/global/app.js +4 -0
- package/dist/collection/index.js +1 -0
- package/dist/collection/utils/polyfill.js +6 -0
- package/dist/esm/app-7b5384c5.js +5 -0
- package/dist/esm/css-shim-a7f418e3.js +4 -0
- package/dist/esm/dom-1f98a75f.js +73 -0
- package/dist/esm/focus-visible-0fc6119c.js +333 -0
- package/dist/esm/index-1ea26b25.js +15 -0
- package/dist/esm/index-42b74371.js +1789 -0
- package/dist/esm/index.js +2 -0
- package/dist/esm/loader.js +32 -0
- package/dist/esm/polyfill-2b159e86.js +5 -0
- package/dist/esm/polyfills/core-js.js +11 -0
- package/dist/esm/polyfills/css-shim.js +1 -0
- package/dist/esm/polyfills/dom.js +79 -0
- package/dist/esm/polyfills/es5-html-element.js +1 -0
- package/dist/esm/polyfills/index.js +34 -0
- package/dist/esm/polyfills/system.js +6 -0
- package/dist/esm/road-accordion.entry.js +27 -0
- package/dist/esm/road-alert.entry.js +20 -0
- package/dist/esm/road-autocomplete.entry.js +45 -0
- package/dist/esm/road-avatar.entry.js +15 -0
- package/dist/esm/road-badge_11.entry.js +502 -0
- package/dist/esm/road-card.entry.js +56 -0
- package/dist/esm/road-carousel-item.entry.js +18 -0
- package/dist/esm/road-carousel.entry.js +403 -0
- package/dist/esm/road-checkbox.entry.js +73 -0
- package/dist/esm/road-chip.entry.js +34 -0
- package/dist/esm/road-collapse.entry.js +40 -0
- package/dist/esm/road-counter.entry.js +35 -0
- package/dist/esm/road-dialog.entry.js +94 -0
- package/dist/esm/road-flap.entry.js +20 -0
- package/dist/esm/road-img.entry.js +71 -0
- package/dist/esm/road-input-group.entry.js +15 -0
- package/dist/esm/road-input.entry.js +104 -0
- package/dist/esm/road-modal.entry.js +76 -0
- package/dist/esm/road-navbar-item.entry.js +60 -0
- package/dist/esm/road-navbar.entry.js +33 -0
- package/dist/esm/road-plate-number.entry.js +90 -0
- package/dist/esm/road-progress.entry.js +24 -0
- package/dist/esm/road-radio-group.entry.js +74 -0
- package/dist/esm/road-radio.entry.js +86 -0
- package/dist/esm/road-range.entry.js +54 -0
- package/dist/esm/road-rating.entry.js +30 -0
- package/dist/esm/road-select.entry.js +75 -0
- package/dist/esm/road-skeleton.entry.js +15 -0
- package/dist/esm/road-spinner.entry.js +15 -0
- package/dist/esm/road-switch.entry.js +87 -0
- package/dist/esm/road-tab-bar.entry.js +43 -0
- package/dist/esm/road-tab-button.entry.js +78 -0
- package/dist/esm/road-tab.entry.js +30 -0
- package/dist/esm/road-table.entry.js +15 -0
- package/dist/esm/road-tabs.entry.js +106 -0
- package/dist/esm/road-text.entry.js +20 -0
- package/dist/esm/road-textarea.entry.js +89 -0
- package/dist/esm/road-toast.entry.js +95 -0
- package/dist/esm/road-toolbar-title.entry.js +15 -0
- package/dist/esm/road-tooltip.entry.js +73 -0
- package/dist/esm/roadtrip.js +85 -0
- package/dist/esm/shadow-css-67b66845.js +389 -0
- package/dist/esm/swiper.bundle-6070542b.js +10000 -0
- package/dist/esm/utils-cf12c226.js +75 -0
- package/dist/esm-es5/app-7b5384c5.js +1 -0
- package/dist/esm-es5/css-shim-a7f418e3.js +1 -0
- package/dist/esm-es5/dom-1f98a75f.js +21 -0
- package/dist/esm-es5/focus-visible-0fc6119c.js +1 -0
- package/dist/esm-es5/index-1ea26b25.js +1 -0
- package/dist/esm-es5/index-42b74371.js +1 -0
- package/dist/esm-es5/index.js +1 -0
- package/dist/esm-es5/loader.js +1 -0
- package/dist/esm-es5/polyfill-2b159e86.js +1 -0
- package/dist/esm-es5/road-accordion.entry.js +1 -0
- package/dist/esm-es5/road-alert.entry.js +1 -0
- package/dist/esm-es5/road-autocomplete.entry.js +1 -0
- package/dist/esm-es5/road-avatar.entry.js +1 -0
- package/dist/esm-es5/road-badge_11.entry.js +1 -0
- package/dist/esm-es5/road-card.entry.js +1 -0
- package/dist/esm-es5/road-carousel-item.entry.js +1 -0
- package/dist/esm-es5/road-carousel.entry.js +1 -0
- package/dist/esm-es5/road-checkbox.entry.js +1 -0
- package/dist/esm-es5/road-chip.entry.js +1 -0
- package/dist/esm-es5/road-collapse.entry.js +1 -0
- package/dist/esm-es5/road-counter.entry.js +1 -0
- package/dist/esm-es5/road-dialog.entry.js +1 -0
- package/dist/esm-es5/road-flap.entry.js +1 -0
- package/dist/esm-es5/road-img.entry.js +1 -0
- package/dist/esm-es5/road-input-group.entry.js +1 -0
- package/dist/esm-es5/road-input.entry.js +1 -0
- package/dist/esm-es5/road-modal.entry.js +1 -0
- package/dist/esm-es5/road-navbar-item.entry.js +1 -0
- package/dist/esm-es5/road-navbar.entry.js +1 -0
- package/dist/esm-es5/road-plate-number.entry.js +1 -0
- package/dist/esm-es5/road-progress.entry.js +1 -0
- package/dist/esm-es5/road-radio-group.entry.js +1 -0
- package/dist/esm-es5/road-radio.entry.js +1 -0
- package/dist/esm-es5/road-range.entry.js +1 -0
- package/dist/esm-es5/road-rating.entry.js +1 -0
- package/dist/esm-es5/road-select.entry.js +1 -0
- package/dist/esm-es5/road-skeleton.entry.js +1 -0
- package/dist/esm-es5/road-spinner.entry.js +1 -0
- package/dist/esm-es5/road-switch.entry.js +1 -0
- package/dist/esm-es5/road-tab-bar.entry.js +1 -0
- package/dist/esm-es5/road-tab-button.entry.js +1 -0
- package/dist/esm-es5/road-tab.entry.js +1 -0
- package/dist/esm-es5/road-table.entry.js +1 -0
- package/dist/esm-es5/road-tabs.entry.js +1 -0
- package/dist/esm-es5/road-text.entry.js +1 -0
- package/dist/esm-es5/road-textarea.entry.js +1 -0
- package/dist/esm-es5/road-toast.entry.js +1 -0
- package/dist/esm-es5/road-toolbar-title.entry.js +1 -0
- package/dist/esm-es5/road-tooltip.entry.js +1 -0
- package/dist/esm-es5/roadtrip.js +1 -0
- package/dist/esm-es5/shadow-css-67b66845.js +12 -0
- package/dist/esm-es5/swiper.bundle-6070542b.js +1 -0
- package/dist/esm-es5/utils-cf12c226.js +1 -0
- package/dist/html.html-data.json +2294 -0
- package/dist/icons/icons.svg +1 -0
- package/dist/icons/index.d.ts +887 -0
- package/dist/icons/index.js +887 -0
- package/dist/index.cjs.js +1 -0
- package/dist/index.js +1 -0
- package/dist/loader/cdn.js +3 -0
- package/dist/loader/index.cjs.js +3 -0
- package/dist/loader/index.d.ts +13 -0
- package/dist/loader/index.es2017.js +3 -0
- package/dist/loader/index.js +4 -0
- package/dist/loader/package.json +10 -0
- package/dist/roadtrip/fonts/Muli-Bold.woff +0 -0
- package/dist/roadtrip/fonts/Muli-Bold.woff2 +0 -0
- package/dist/roadtrip/fonts/Muli-Regular.woff +0 -0
- package/dist/roadtrip/fonts/Muli-Regular.woff2 +0 -0
- package/dist/roadtrip/fonts/Oswald-Medium.woff2 +0 -0
- package/dist/roadtrip/index.esm.js +1 -0
- package/dist/roadtrip/p-0114b277.system.entry.js +1 -0
- package/dist/roadtrip/p-02438cfb.entry.js +1 -0
- package/dist/roadtrip/p-02e4bc64.system.entry.js +1 -0
- package/dist/roadtrip/p-041210d2.system.entry.js +1 -0
- package/dist/roadtrip/p-0cef4909.entry.js +1 -0
- package/dist/roadtrip/p-0d394981.entry.js +1 -0
- package/dist/roadtrip/p-0d72b32f.entry.js +1 -0
- package/dist/roadtrip/p-0f922d99.system.entry.js +1 -0
- package/dist/roadtrip/p-10d2f292.entry.js +1 -0
- package/dist/roadtrip/p-1247ae38.entry.js +1 -0
- package/dist/roadtrip/p-12a635b5.js +1 -0
- package/dist/roadtrip/p-12fd8791.js +1 -0
- package/dist/roadtrip/p-1331984c.system.entry.js +1 -0
- package/dist/roadtrip/p-13b4e299.entry.js +1 -0
- package/dist/roadtrip/p-17c183fb.system.entry.js +1 -0
- package/dist/roadtrip/p-17e1fad4.entry.js +1 -0
- package/dist/roadtrip/p-1fc157fe.entry.js +1 -0
- package/dist/roadtrip/p-29112092.system.entry.js +1 -0
- package/dist/roadtrip/p-2fbab6fe.system.js +1 -0
- package/dist/roadtrip/p-316f18c5.system.entry.js +1 -0
- package/dist/roadtrip/p-35eb0f57.entry.js +1 -0
- package/dist/roadtrip/p-37c7c67a.system.entry.js +1 -0
- package/dist/roadtrip/p-37e3988b.entry.js +1 -0
- package/dist/roadtrip/p-3961060c.system.entry.js +1 -0
- package/dist/roadtrip/p-3b0bf6c7.system.entry.js +1 -0
- package/dist/roadtrip/p-3b954155.entry.js +1 -0
- package/dist/roadtrip/p-40f0da52.js +1 -0
- package/dist/roadtrip/p-420fd82a.system.js +1 -0
- package/dist/roadtrip/p-425ea346.entry.js +1 -0
- package/dist/roadtrip/p-42a9ad7b.entry.js +1 -0
- package/dist/roadtrip/p-430a11a6.system.entry.js +1 -0
- package/dist/roadtrip/p-436ed9ba.system.entry.js +1 -0
- package/dist/roadtrip/p-498ca42b.system.js +1 -0
- package/dist/roadtrip/p-4f31338d.js +1 -0
- package/dist/roadtrip/p-510a8cc4.system.js +1 -0
- package/dist/roadtrip/p-518b69d3.system.entry.js +1 -0
- package/dist/roadtrip/p-5350841a.system.entry.js +1 -0
- package/dist/roadtrip/p-5419dd76.entry.js +1 -0
- package/dist/roadtrip/p-54eb6c30.system.entry.js +1 -0
- package/dist/roadtrip/p-551176bd.entry.js +1 -0
- package/dist/roadtrip/p-58e70635.system.entry.js +1 -0
- package/dist/roadtrip/p-590dcc09.entry.js +1 -0
- package/dist/roadtrip/p-5fae0a97.system.js +1 -0
- package/dist/roadtrip/p-60019e46.entry.js +1 -0
- package/dist/roadtrip/p-62c3be42.system.entry.js +1 -0
- package/dist/roadtrip/p-63daafae.js +1 -0
- package/dist/roadtrip/p-680a8005.system.entry.js +1 -0
- package/dist/roadtrip/p-68bbe841.system.entry.js +1 -0
- package/dist/roadtrip/p-69599f4e.js +19 -0
- package/dist/roadtrip/p-6bf12486.system.entry.js +1 -0
- package/dist/roadtrip/p-6cbf0271.entry.js +1 -0
- package/dist/roadtrip/p-7103b86e.system.entry.js +1 -0
- package/dist/roadtrip/p-7a59ecb8.system.entry.js +1 -0
- package/dist/roadtrip/p-7dc1cc99.entry.js +1 -0
- package/dist/roadtrip/p-7f407e93.entry.js +1 -0
- package/dist/roadtrip/p-7f900814.system.entry.js +1 -0
- package/dist/roadtrip/p-801c9922.system.js +1 -0
- package/dist/roadtrip/p-8459879b.system.js +1 -0
- package/dist/roadtrip/p-871be532.entry.js +1 -0
- package/dist/roadtrip/p-8a10bd9c.entry.js +1 -0
- package/dist/roadtrip/p-8c389605.system.entry.js +1 -0
- package/dist/roadtrip/p-9112876a.system.entry.js +1 -0
- package/dist/roadtrip/p-93b244be.entry.js +1 -0
- package/dist/roadtrip/p-97d9114f.system.entry.js +1 -0
- package/dist/roadtrip/p-990f2104.system.entry.js +1 -0
- package/dist/roadtrip/p-9aabadbf.system.entry.js +1 -0
- package/dist/roadtrip/p-9c8ddf01.js +1 -0
- package/dist/roadtrip/p-9cd9dd57.system.entry.js +1 -0
- package/dist/roadtrip/p-9e8ca61a.system.entry.js +1 -0
- package/dist/roadtrip/p-9eae51cb.entry.js +1 -0
- package/dist/roadtrip/p-a225ba2d.entry.js +1 -0
- package/dist/roadtrip/p-a5548019.entry.js +1 -0
- package/dist/roadtrip/p-a69855b7.js +12 -0
- package/dist/roadtrip/p-a71ed0b6.entry.js +1 -0
- package/dist/roadtrip/p-abb85557.entry.js +1 -0
- package/dist/roadtrip/p-ac68d72d.entry.js +1 -0
- package/dist/roadtrip/p-afc0a90b.system.entry.js +1 -0
- package/dist/roadtrip/p-ba78dff5.system.entry.js +1 -0
- package/dist/roadtrip/p-bd2c0a1b.system.js +1 -0
- package/dist/roadtrip/p-c2334232.system.js +1 -0
- package/dist/roadtrip/p-c9906366.entry.js +1 -0
- package/dist/roadtrip/p-cafbe9cb.entry.js +1 -0
- package/dist/roadtrip/p-cc1da076.system.entry.js +1 -0
- package/dist/roadtrip/p-cd603d87.system.js +13 -0
- package/dist/roadtrip/p-d13bb916.entry.js +1 -0
- package/dist/roadtrip/p-d1854f4f.entry.js +1 -0
- package/dist/roadtrip/p-d64857ac.entry.js +1 -0
- package/dist/roadtrip/p-d8712919.entry.js +1 -0
- package/dist/roadtrip/p-dbe056ce.system.js +21 -0
- package/dist/roadtrip/p-df4a232f.system.entry.js +1 -0
- package/dist/roadtrip/p-e2add5a5.system.entry.js +1 -0
- package/dist/roadtrip/p-e381e807.entry.js +1 -0
- package/dist/roadtrip/p-e487ed25.entry.js +1 -0
- package/dist/roadtrip/p-e558ebfb.js +1 -0
- package/dist/roadtrip/p-e575fb5f.entry.js +1 -0
- package/dist/roadtrip/p-e9113160.entry.js +1 -0
- package/dist/roadtrip/p-ec231b77.js +1 -0
- package/dist/roadtrip/p-ee0455c8.system.entry.js +1 -0
- package/dist/roadtrip/p-fb92eb91.system.entry.js +1 -0
- package/dist/roadtrip/p-fe5c5fd9.system.entry.js +1 -0
- package/dist/roadtrip/p-ffbbba64.system.js +1 -0
- package/dist/roadtrip/p-ffe2b39f.system.entry.js +1 -0
- package/dist/roadtrip/roadtrip.css +1 -0
- package/dist/roadtrip/roadtrip.esm.js +1 -0
- package/dist/roadtrip/roadtrip.js +132 -0
- package/dist/roadtrip/svg/alert-danger-outline.svg +1 -0
- package/dist/roadtrip/svg/alert-danger.svg +1 -0
- package/dist/roadtrip/svg/alert-error-outline-color.svg +1 -0
- package/dist/roadtrip/svg/alert-error-outline.svg +1 -0
- package/dist/roadtrip/svg/alert-error.svg +1 -0
- package/dist/roadtrip/svg/alert-info-outline-color.svg +1 -0
- package/dist/roadtrip/svg/alert-info-outline.svg +1 -0
- package/dist/roadtrip/svg/alert-info.svg +1 -0
- package/dist/roadtrip/svg/alert-notification-alarm-outline.svg +1 -0
- package/dist/roadtrip/svg/alert-notification-alarm.svg +1 -0
- package/dist/roadtrip/svg/alert-notification-outline.svg +1 -0
- package/dist/roadtrip/svg/alert-notification-warning-outline.svg +1 -0
- package/dist/roadtrip/svg/alert-notification-warning.svg +1 -0
- package/dist/roadtrip/svg/alert-notification.svg +1 -0
- package/dist/roadtrip/svg/alert-question-outline-color.svg +1 -0
- package/dist/roadtrip/svg/alert-question-outline.svg +1 -0
- package/dist/roadtrip/svg/alert-question.svg +1 -0
- package/dist/roadtrip/svg/alert-success-outline.svg +1 -0
- package/dist/roadtrip/svg/alert-success.svg +1 -0
- package/dist/roadtrip/svg/alert-valid-outline-color.svg +1 -0
- package/dist/roadtrip/svg/alert-valid-outline.svg +1 -0
- package/dist/roadtrip/svg/alert-valid.svg +1 -0
- package/dist/roadtrip/svg/alert-warning-outline-color.svg +1 -0
- package/dist/roadtrip/svg/alert-warning-outline.svg +1 -0
- package/dist/roadtrip/svg/alert-warning.svg +1 -0
- package/dist/roadtrip/svg/alternator-color.svg +1 -0
- package/dist/roadtrip/svg/alternator.svg +1 -0
- package/dist/roadtrip/svg/app.svg +1 -0
- package/dist/roadtrip/svg/arrow-drop-down.svg +1 -0
- package/dist/roadtrip/svg/arrow-drop.svg +1 -0
- package/dist/roadtrip/svg/arrow-fullscreen-collapse.svg +1 -0
- package/dist/roadtrip/svg/arrow-fullscreen-expand.svg +1 -0
- package/dist/roadtrip/svg/arrow-swap.svg +1 -0
- package/dist/roadtrip/svg/arrow.svg +1 -0
- package/dist/roadtrip/svg/axle-support.svg +1 -0
- package/dist/roadtrip/svg/bacterium-color.svg +1 -0
- package/dist/roadtrip/svg/bacterium.svg +1 -0
- package/dist/roadtrip/svg/battery-charger-color.svg +1 -0
- package/dist/roadtrip/svg/battery-charger.svg +1 -0
- package/dist/roadtrip/svg/battery-color.svg +1 -0
- package/dist/roadtrip/svg/battery-recycle-color.svg +1 -0
- package/dist/roadtrip/svg/battery-recycle.svg +1 -0
- package/dist/roadtrip/svg/battery-start-stop-color.svg +1 -0
- package/dist/roadtrip/svg/battery-start-stop.svg +1 -0
- package/dist/roadtrip/svg/battery.svg +1 -0
- package/dist/roadtrip/svg/best-customer.svg +1 -0
- package/dist/roadtrip/svg/book-service-color.svg +1 -0
- package/dist/roadtrip/svg/book-service.svg +1 -0
- package/dist/roadtrip/svg/book-technical-color.svg +1 -0
- package/dist/roadtrip/svg/book-technical.svg +1 -0
- package/dist/roadtrip/svg/brake-color.svg +1 -0
- package/dist/roadtrip/svg/brake-outline-color.svg +1 -0
- package/dist/roadtrip/svg/brake-outline.svg +1 -0
- package/dist/roadtrip/svg/brake-pad.svg +1 -0
- package/dist/roadtrip/svg/brake.svg +1 -0
- package/dist/roadtrip/svg/bulk-3d-color.svg +1 -0
- package/dist/roadtrip/svg/bulk-3d.svg +1 -0
- package/dist/roadtrip/svg/bundle-color.svg +1 -0
- package/dist/roadtrip/svg/bundle.svg +1 -0
- package/dist/roadtrip/svg/cable.svg +1 -0
- package/dist/roadtrip/svg/calculator-color.svg +1 -0
- package/dist/roadtrip/svg/calculator.svg +1 -0
- package/dist/roadtrip/svg/call-center-color.svg +1 -0
- package/dist/roadtrip/svg/call-center.svg +1 -0
- package/dist/roadtrip/svg/camera-off-outline-color.svg +1 -0
- package/dist/roadtrip/svg/camera-off-outline.svg +1 -0
- package/dist/roadtrip/svg/camera-off.svg +1 -0
- package/dist/roadtrip/svg/camera-outline-color.svg +1 -0
- package/dist/roadtrip/svg/camera-outline.svg +1 -0
- package/dist/roadtrip/svg/camera.svg +1 -0
- package/dist/roadtrip/svg/car-door-color.svg +1 -0
- package/dist/roadtrip/svg/car-door.svg +1 -0
- package/dist/roadtrip/svg/car-identity-paper-open.svg +1 -0
- package/dist/roadtrip/svg/car-identity-paper.svg +1 -0
- package/dist/roadtrip/svg/car-petrol-off-color.svg +1 -0
- package/dist/roadtrip/svg/car-petrol-off-outline.svg +1 -0
- package/dist/roadtrip/svg/car-petrol-off.svg +1 -0
- package/dist/roadtrip/svg/car-petrol-outline-color.svg +1 -0
- package/dist/roadtrip/svg/car-petrol-outline.svg +1 -0
- package/dist/roadtrip/svg/car-petrol.svg +1 -0
- package/dist/roadtrip/svg/car-power-color.svg +1 -0
- package/dist/roadtrip/svg/car-power.svg +1 -0
- package/dist/roadtrip/svg/car-seat-baby.svg +1 -0
- package/dist/roadtrip/svg/car-seat.svg +1 -0
- package/dist/roadtrip/svg/car-wiper-back-color.svg +1 -0
- package/dist/roadtrip/svg/car-wiper-back.svg +1 -0
- package/dist/roadtrip/svg/car-wiper-front-color.svg +1 -0
- package/dist/roadtrip/svg/car-wiper-front.svg +1 -0
- package/dist/roadtrip/svg/carpet-color.svg +1 -0
- package/dist/roadtrip/svg/carpet.svg +1 -0
- package/dist/roadtrip/svg/certified-outline-color.svg +1 -0
- package/dist/roadtrip/svg/certified-outline.svg +1 -0
- package/dist/roadtrip/svg/certified-warning-outline-color.svg +1 -0
- package/dist/roadtrip/svg/certified-warning-outline.svg +1 -0
- package/dist/roadtrip/svg/certified-warning.svg +1 -0
- package/dist/roadtrip/svg/certified.svg +1 -0
- package/dist/roadtrip/svg/check-point-color.svg +1 -0
- package/dist/roadtrip/svg/check-point-location-color.svg +1 -0
- package/dist/roadtrip/svg/check-point-location.svg +1 -0
- package/dist/roadtrip/svg/check-point.svg +1 -0
- package/dist/roadtrip/svg/check-small.svg +1 -0
- package/dist/roadtrip/svg/check-wide.svg +1 -0
- package/dist/roadtrip/svg/cleanser-color.svg +1 -0
- package/dist/roadtrip/svg/cleanser.svg +1 -0
- package/dist/roadtrip/svg/cloud-download-color.svg +1 -0
- package/dist/roadtrip/svg/cloud-download.svg +1 -0
- package/dist/roadtrip/svg/cloud-outline.svg +1 -0
- package/dist/roadtrip/svg/cloud-upload-color.svg +1 -0
- package/dist/roadtrip/svg/cloud-upload.svg +1 -0
- package/dist/roadtrip/svg/clutch-color.svg +1 -0
- package/dist/roadtrip/svg/clutch.svg +1 -0
- package/dist/roadtrip/svg/collapse.svg +1 -0
- package/dist/roadtrip/svg/comodo.svg +1 -0
- package/dist/roadtrip/svg/control-switch-color.svg +1 -0
- package/dist/roadtrip/svg/control-switch.svg +1 -0
- package/dist/roadtrip/svg/cookie.svg +1 -0
- package/dist/roadtrip/svg/cooling-color.svg +1 -0
- package/dist/roadtrip/svg/cooling.svg +1 -0
- package/dist/roadtrip/svg/cover-color.svg +1 -0
- package/dist/roadtrip/svg/cover.svg +1 -0
- package/dist/roadtrip/svg/covid-stop-color.svg +1 -0
- package/dist/roadtrip/svg/covid-stop.svg +1 -0
- package/dist/roadtrip/svg/crown.svg +1 -0
- package/dist/roadtrip/svg/dashboard.svg +1 -0
- package/dist/roadtrip/svg/data-add-color.svg +1 -0
- package/dist/roadtrip/svg/data-add.svg +1 -0
- package/dist/roadtrip/svg/data-color.svg +1 -0
- package/dist/roadtrip/svg/data-up-color.svg +1 -0
- package/dist/roadtrip/svg/data-up.svg +1 -0
- package/dist/roadtrip/svg/data.svg +1 -0
- package/dist/roadtrip/svg/delete-forever-color.svg +1 -0
- package/dist/roadtrip/svg/delete-forever.svg +1 -0
- package/dist/roadtrip/svg/device-color.svg +1 -0
- package/dist/roadtrip/svg/device-laptop-color.svg +1 -0
- package/dist/roadtrip/svg/device-laptop.svg +1 -0
- package/dist/roadtrip/svg/device-rotate-color.svg +1 -0
- package/dist/roadtrip/svg/device-rotate.svg +1 -0
- package/dist/roadtrip/svg/device-smartphone-color.svg +1 -0
- package/dist/roadtrip/svg/device-smartphone-sms-color.svg +1 -0
- package/dist/roadtrip/svg/device-smartphone-sms-wrench-color.svg +1 -0
- package/dist/roadtrip/svg/device-smartphone-sms-wrench.svg +1 -0
- package/dist/roadtrip/svg/device-smartphone-sms.svg +1 -0
- package/dist/roadtrip/svg/device-smartphone.svg +1 -0
- package/dist/roadtrip/svg/device-tablet-color.svg +1 -0
- package/dist/roadtrip/svg/device-tablet.svg +1 -0
- package/dist/roadtrip/svg/device.svg +1 -0
- package/dist/roadtrip/svg/diagnostic-color.svg +1 -0
- package/dist/roadtrip/svg/diagnostic.svg +1 -0
- package/dist/roadtrip/svg/discount-prct-outline-color.svg +1 -0
- package/dist/roadtrip/svg/discount-prct-outline.svg +1 -0
- package/dist/roadtrip/svg/discount-prct-single.svg +1 -0
- package/dist/roadtrip/svg/discount-prct.svg +1 -0
- package/dist/roadtrip/svg/discount-ticket-color.svg +1 -0
- package/dist/roadtrip/svg/discount-ticket.svg +1 -0
- package/dist/roadtrip/svg/discount-worshop.svg +1 -0
- package/dist/roadtrip/svg/download-color.svg +1 -0
- package/dist/roadtrip/svg/download.svg +1 -0
- package/dist/roadtrip/svg/edit-outline-color.svg +1 -0
- package/dist/roadtrip/svg/edit-outline.svg +1 -0
- package/dist/roadtrip/svg/edit-pen-color.svg +1 -0
- package/dist/roadtrip/svg/edit-pen-outline.svg +1 -0
- package/dist/roadtrip/svg/edit-pen.svg +1 -0
- package/dist/roadtrip/svg/edit.svg +1 -0
- package/dist/roadtrip/svg/electric-outline.svg +1 -0
- package/dist/roadtrip/svg/electric-plug-13pin-color.svg +1 -0
- package/dist/roadtrip/svg/electric-plug-13pin.svg +1 -0
- package/dist/roadtrip/svg/electric-plug-7pin-color.svg +1 -0
- package/dist/roadtrip/svg/electric-plug-7pin.svg +1 -0
- package/dist/roadtrip/svg/electric.svg +1 -0
- package/dist/roadtrip/svg/electricity-outline.svg +1 -0
- package/dist/roadtrip/svg/electricity.svg +1 -0
- package/dist/roadtrip/svg/electronic-diagnostic.svg +1 -0
- package/dist/roadtrip/svg/electronic-ethanol.svg +1 -0
- package/dist/roadtrip/svg/electronic-outline.svg +1 -0
- package/dist/roadtrip/svg/electronic.svg +1 -0
- package/dist/roadtrip/svg/engine-color.svg +1 -0
- package/dist/roadtrip/svg/engine-electric-color.svg +1 -0
- package/dist/roadtrip/svg/engine-electric.svg +1 -0
- package/dist/roadtrip/svg/engine-lubrication-color.svg +1 -0
- package/dist/roadtrip/svg/engine-lubrication.svg +1 -0
- package/dist/roadtrip/svg/engine-piston-color.svg +1 -0
- package/dist/roadtrip/svg/engine-piston.svg +1 -0
- package/dist/roadtrip/svg/engine.svg +1 -0
- package/dist/roadtrip/svg/exclamation-small.svg +1 -0
- package/dist/roadtrip/svg/exclamation-wide.svg +1 -0
- package/dist/roadtrip/svg/exhaust-pipe-color.svg +1 -0
- package/dist/roadtrip/svg/exhaust-pipe.svg +1 -0
- package/dist/roadtrip/svg/factory-color.svg +1 -0
- package/dist/roadtrip/svg/factory.svg +1 -0
- package/dist/roadtrip/svg/fidelity-card-color.svg +1 -0
- package/dist/roadtrip/svg/fidelity-card-wallet-color.svg +1 -0
- package/dist/roadtrip/svg/fidelity-card-wallet.svg +1 -0
- package/dist/roadtrip/svg/fidelity-card.svg +1 -0
- package/dist/roadtrip/svg/file-business-outline-color.svg +1 -0
- package/dist/roadtrip/svg/file-business-outline.svg +1 -0
- package/dist/roadtrip/svg/file-catalog-color.svg +1 -0
- package/dist/roadtrip/svg/file-catalog.svg +1 -0
- package/dist/roadtrip/svg/file-copy-color.svg +1 -0
- package/dist/roadtrip/svg/file-copy.svg +1 -0
- package/dist/roadtrip/svg/file-edit-color.svg +1 -0
- package/dist/roadtrip/svg/file-edit.svg +1 -0
- package/dist/roadtrip/svg/file-excel-color.svg +1 -0
- package/dist/roadtrip/svg/file-excel-outline.svg +1 -0
- package/dist/roadtrip/svg/file-excel.svg +1 -0
- package/dist/roadtrip/svg/file-list-outline-color.svg +1 -0
- package/dist/roadtrip/svg/file-list-outline.svg +1 -0
- package/dist/roadtrip/svg/file-outline.svg +1 -0
- package/dist/roadtrip/svg/file-pdf-color.svg +1 -0
- package/dist/roadtrip/svg/file-pdf-outline-color.svg +1 -0
- package/dist/roadtrip/svg/file-pdf-outline.svg +1 -0
- package/dist/roadtrip/svg/file-pdf.svg +1 -0
- package/dist/roadtrip/svg/file-powerpoint-color.svg +1 -0
- package/dist/roadtrip/svg/file-powerpoint.svg +1 -0
- package/dist/roadtrip/svg/file-technical-color.svg +1 -0
- package/dist/roadtrip/svg/file-technical.svg +1 -0
- package/dist/roadtrip/svg/file-word-color.svg +1 -0
- package/dist/roadtrip/svg/file-word.svg +1 -0
- package/dist/roadtrip/svg/filter-color.svg +1 -0
- package/dist/roadtrip/svg/filter-particle-color.svg +1 -0
- package/dist/roadtrip/svg/filter-particle.svg +1 -0
- package/dist/roadtrip/svg/filter-sport-color.svg +1 -0
- package/dist/roadtrip/svg/filter-sport.svg +1 -0
- package/dist/roadtrip/svg/filter.svg +1 -0
- package/dist/roadtrip/svg/fingerprint.svg +1 -0
- package/dist/roadtrip/svg/flag-argentina.svg +1 -0
- package/dist/roadtrip/svg/flag-austria.svg +1 -0
- package/dist/roadtrip/svg/flag-belgium.svg +1 -0
- package/dist/roadtrip/svg/flag-france.svg +1 -0
- package/dist/roadtrip/svg/flag-germany.svg +1 -0
- package/dist/roadtrip/svg/flag-italy.svg +1 -0
- package/dist/roadtrip/svg/flag-poland.svg +1 -0
- package/dist/roadtrip/svg/flag-portugal.svg +1 -0
- package/dist/roadtrip/svg/flag-romania.svg +1 -0
- package/dist/roadtrip/svg/flag-russia.svg +1 -0
- package/dist/roadtrip/svg/flag-spain.svg +1 -0
- package/dist/roadtrip/svg/flag-sweden.svg +1 -0
- package/dist/roadtrip/svg/flower-color.svg +1 -0
- package/dist/roadtrip/svg/flower.svg +1 -0
- package/dist/roadtrip/svg/fuel-air-supply-color.svg +1 -0
- package/dist/roadtrip/svg/fuel-air-supply.svg +1 -0
- package/dist/roadtrip/svg/fuel-door-color.svg +1 -0
- package/dist/roadtrip/svg/fuel-door.svg +1 -0
- package/dist/roadtrip/svg/funding-best-price-color.svg +1 -0
- package/dist/roadtrip/svg/funding-best-price.svg +1 -0
- package/dist/roadtrip/svg/funding-outline-color.svg +1 -0
- package/dist/roadtrip/svg/funding-outline.svg +1 -0
- package/dist/roadtrip/svg/funding-small-color.svg +1 -0
- package/dist/roadtrip/svg/funding-small-outline.svg +1 -0
- package/dist/roadtrip/svg/funding-small.svg +1 -0
- package/dist/roadtrip/svg/funding.svg +1 -0
- package/dist/roadtrip/svg/fuse.svg +1 -0
- package/dist/roadtrip/svg/garage-color.svg +1 -0
- package/dist/roadtrip/svg/garage-house-color.svg +1 -0
- package/dist/roadtrip/svg/garage-house.svg +1 -0
- package/dist/roadtrip/svg/garage.svg +1 -0
- package/dist/roadtrip/svg/gas-5-color.svg +1 -0
- package/dist/roadtrip/svg/gas-5-outline.svg +1 -0
- package/dist/roadtrip/svg/gas-5.svg +1 -0
- package/dist/roadtrip/svg/gasket-outline-color.svg +1 -0
- package/dist/roadtrip/svg/gasket-outline.svg +1 -0
- package/dist/roadtrip/svg/gasket.svg +1 -0
- package/dist/roadtrip/svg/gearbox-color.svg +1 -0
- package/dist/roadtrip/svg/gearbox.svg +1 -0
- package/dist/roadtrip/svg/gift-color.svg +1 -0
- package/dist/roadtrip/svg/gift-outline.svg +1 -0
- package/dist/roadtrip/svg/gift.svg +1 -0
- package/dist/roadtrip/svg/gps-color.svg +1 -0
- package/dist/roadtrip/svg/gps.svg +1 -0
- package/dist/roadtrip/svg/handicap.svg +1 -0
- package/dist/roadtrip/svg/hear-color.svg +1 -0
- package/dist/roadtrip/svg/hear.svg +1 -0
- package/dist/roadtrip/svg/helmet-bike-color.svg +1 -0
- package/dist/roadtrip/svg/helmet-bike.svg +1 -0
- package/dist/roadtrip/svg/helmet-cross-color.svg +1 -0
- package/dist/roadtrip/svg/helmet-cross.svg +1 -0
- package/dist/roadtrip/svg/helmet-full-color.svg +1 -0
- package/dist/roadtrip/svg/helmet-full.svg +1 -0
- package/dist/roadtrip/svg/helmet-half-jet-color.svg +1 -0
- package/dist/roadtrip/svg/helmet-half-jet.svg +1 -0
- package/dist/roadtrip/svg/helmet-jet-color.svg +1 -0
- package/dist/roadtrip/svg/helmet-jet.svg +1 -0
- package/dist/roadtrip/svg/helmet-modular-color.svg +1 -0
- package/dist/roadtrip/svg/helmet-modular.svg +1 -0
- package/dist/roadtrip/svg/helmet-skate-color.svg +1 -0
- package/dist/roadtrip/svg/helmet-skate.svg +1 -0
- package/dist/roadtrip/svg/home.svg +1 -0
- package/dist/roadtrip/svg/hook-hitch-color.svg +1 -0
- package/dist/roadtrip/svg/hook-hitch-outline.svg +1 -0
- package/dist/roadtrip/svg/hook-hitch.svg +1 -0
- package/dist/roadtrip/svg/house-color.svg +1 -0
- package/dist/roadtrip/svg/house.svg +1 -0
- package/dist/roadtrip/svg/ice-color.svg +1 -0
- package/dist/roadtrip/svg/ice-outline-color.svg +1 -0
- package/dist/roadtrip/svg/ice-outline.svg +1 -0
- package/dist/roadtrip/svg/ice.svg +1 -0
- package/dist/roadtrip/svg/identity-card-color.svg +1 -0
- package/dist/roadtrip/svg/identity-card.svg +1 -0
- package/dist/roadtrip/svg/keep-in-repair-outline.svg +1 -0
- package/dist/roadtrip/svg/keep-in-repair.svg +1 -0
- package/dist/roadtrip/svg/key-outline-color.svg +1 -0
- package/dist/roadtrip/svg/key-outline.svg +1 -0
- package/dist/roadtrip/svg/key.svg +1 -0
- package/dist/roadtrip/svg/leaf.svg +1 -0
- package/dist/roadtrip/svg/license-plate-be.svg +1 -0
- package/dist/roadtrip/svg/license-plate-es.svg +1 -0
- package/dist/roadtrip/svg/license-plate-eu.svg +1 -0
- package/dist/roadtrip/svg/license-plate-fr.svg +1 -0
- package/dist/roadtrip/svg/license-plate-it.svg +1 -0
- package/dist/roadtrip/svg/license-plate-pl.svg +1 -0
- package/dist/roadtrip/svg/license-plate-po.svg +1 -0
- package/dist/roadtrip/svg/license-plate-ru.svg +1 -0
- package/dist/roadtrip/svg/license-plate-star-be.svg +1 -0
- package/dist/roadtrip/svg/license-plate-star-es.svg +1 -0
- package/dist/roadtrip/svg/license-plate-star-eu.svg +1 -0
- package/dist/roadtrip/svg/license-plate-star-fr.svg +1 -0
- package/dist/roadtrip/svg/license-plate-star-it.svg +1 -0
- package/dist/roadtrip/svg/license-plate-star-pl.svg +1 -0
- package/dist/roadtrip/svg/license-plate-star-po.svg +1 -0
- package/dist/roadtrip/svg/light-beam-back-color.svg +1 -0
- package/dist/roadtrip/svg/light-beam-back.svg +1 -0
- package/dist/roadtrip/svg/light-beam-color.svg +1 -0
- package/dist/roadtrip/svg/light-beam-day-color.svg +1 -0
- package/dist/roadtrip/svg/light-beam-day.svg +1 -0
- package/dist/roadtrip/svg/light-beam-fog-color.svg +1 -0
- package/dist/roadtrip/svg/light-beam-fog.svg +1 -0
- package/dist/roadtrip/svg/light-beam-high-color.svg +1 -0
- package/dist/roadtrip/svg/light-beam-high.svg +1 -0
- package/dist/roadtrip/svg/light-beam-numberplate-color.svg +1 -0
- package/dist/roadtrip/svg/light-beam-numberplate.svg +1 -0
- package/dist/roadtrip/svg/light-beam-signal-color.svg +1 -0
- package/dist/roadtrip/svg/light-beam-signal.svg +1 -0
- package/dist/roadtrip/svg/light-beam-stop-color.svg +1 -0
- package/dist/roadtrip/svg/light-beam-stop.svg +1 -0
- package/dist/roadtrip/svg/light-beam-turn-color.svg +1 -0
- package/dist/roadtrip/svg/light-beam-turn.svg +1 -0
- package/dist/roadtrip/svg/light-beam.svg +1 -0
- package/dist/roadtrip/svg/light-box-color.svg +1 -0
- package/dist/roadtrip/svg/light-box.svg +1 -0
- package/dist/roadtrip/svg/light-bulb-color.svg +1 -0
- package/dist/roadtrip/svg/light-bulb.svg +1 -0
- package/dist/roadtrip/svg/light-color.svg +1 -0
- package/dist/roadtrip/svg/light-master-color.svg +1 -0
- package/dist/roadtrip/svg/light-master.svg +1 -0
- package/dist/roadtrip/svg/light-sidelight-color.svg +1 -0
- package/dist/roadtrip/svg/light-sidelight.svg +1 -0
- package/dist/roadtrip/svg/light.svg +1 -0
- package/dist/roadtrip/svg/link-broken-color.svg +1 -0
- package/dist/roadtrip/svg/link-broken.svg +1 -0
- package/dist/roadtrip/svg/link-color.svg +1 -0
- package/dist/roadtrip/svg/link.svg +1 -0
- package/dist/roadtrip/svg/load-cached-color.svg +1 -0
- package/dist/roadtrip/svg/load-cached.svg +1 -0
- package/dist/roadtrip/svg/load-hitstory-color.svg +1 -0
- package/dist/roadtrip/svg/load-hitstory.svg +1 -0
- package/dist/roadtrip/svg/load-refresh.svg +1 -0
- package/dist/roadtrip/svg/load-sync-problem-color.svg +1 -0
- package/dist/roadtrip/svg/load-sync-problem.svg +1 -0
- package/dist/roadtrip/svg/load-update-color.svg +1 -0
- package/dist/roadtrip/svg/load-update.svg +1 -0
- package/dist/roadtrip/svg/location-compass-outline.svg +1 -0
- package/dist/roadtrip/svg/location-compass.svg +1 -0
- package/dist/roadtrip/svg/location-direction.svg +1 -0
- package/dist/roadtrip/svg/location-navigation-outline.svg +1 -0
- package/dist/roadtrip/svg/location-navigation.svg +1 -0
- package/dist/roadtrip/svg/location-path.svg +1 -0
- package/dist/roadtrip/svg/location-pin-all.svg +1 -0
- package/dist/roadtrip/svg/location-pin-garage-auto5.svg +1 -0
- package/dist/roadtrip/svg/location-pin-garage-norauto.svg +1 -0
- package/dist/roadtrip/svg/location-pin-garage.svg +1 -0
- package/dist/roadtrip/svg/location-pin-number.svg +1 -0
- package/dist/roadtrip/svg/location-pin-outline-color.svg +1 -0
- package/dist/roadtrip/svg/location-pin-outline.svg +1 -0
- package/dist/roadtrip/svg/location-pin.svg +1 -0
- package/dist/roadtrip/svg/location-target-color.svg +1 -0
- package/dist/roadtrip/svg/location-target.svg +1 -0
- package/dist/roadtrip/svg/lock-secure-open.svg +1 -0
- package/dist/roadtrip/svg/lock-secure.svg +1 -0
- package/dist/roadtrip/svg/log-out-door.svg +1 -0
- package/dist/roadtrip/svg/log-out.svg +1 -0
- package/dist/roadtrip/svg/lowering-down-color.svg +1 -0
- package/dist/roadtrip/svg/lowering-up-color.svg +1 -0
- package/dist/roadtrip/svg/lowering.svg +1 -0
- package/dist/roadtrip/svg/mail-outline-send-color.svg +1 -0
- package/dist/roadtrip/svg/mail-outline-send.svg +1 -0
- package/dist/roadtrip/svg/mail-outline.svg +1 -0
- package/dist/roadtrip/svg/mail.svg +1 -0
- package/dist/roadtrip/svg/meeting-check-color.svg +1 -0
- package/dist/roadtrip/svg/meeting-check.svg +1 -0
- package/dist/roadtrip/svg/meeting-color.svg +1 -0
- package/dist/roadtrip/svg/meeting-maintenance-color.svg +1 -0
- package/dist/roadtrip/svg/meeting-maintenance.svg +1 -0
- package/dist/roadtrip/svg/meeting-off-color.svg +1 -0
- package/dist/roadtrip/svg/meeting-off.svg +1 -0
- package/dist/roadtrip/svg/meeting-online-color.svg +1 -0
- package/dist/roadtrip/svg/meeting-online.svg +1 -0
- package/dist/roadtrip/svg/meeting-week-color.svg +1 -0
- package/dist/roadtrip/svg/meeting-week.svg +1 -0
- package/dist/roadtrip/svg/meeting.svg +1 -0
- package/dist/roadtrip/svg/mic-outline-color.svg +1 -0
- package/dist/roadtrip/svg/mic-outline.svg +1 -0
- package/dist/roadtrip/svg/mic.svg +1 -0
- package/dist/roadtrip/svg/more-horizontal.svg +1 -0
- package/dist/roadtrip/svg/more-vertical.svg +1 -0
- package/dist/roadtrip/svg/multi-service-outline.svg +1 -0
- package/dist/roadtrip/svg/multi-service.svg +1 -0
- package/dist/roadtrip/svg/navigation-add-less.svg +1 -0
- package/dist/roadtrip/svg/navigation-add-more.svg +1 -0
- package/dist/roadtrip/svg/navigation-back.svg +1 -0
- package/dist/roadtrip/svg/navigation-chevron.svg +1 -0
- package/dist/roadtrip/svg/navigation-close.svg +1 -0
- package/dist/roadtrip/svg/navigation-dashboard-outline-color.svg +1 -0
- package/dist/roadtrip/svg/navigation-dashboard-outline.svg +1 -0
- package/dist/roadtrip/svg/navigation-dashboard.svg +1 -0
- package/dist/roadtrip/svg/navigation-filter.svg +1 -0
- package/dist/roadtrip/svg/navigation-grid.svg +1 -0
- package/dist/roadtrip/svg/navigation-home-outline.svg +1 -0
- package/dist/roadtrip/svg/navigation-home.svg +1 -0
- package/dist/roadtrip/svg/navigation-launch-color.svg +1 -0
- package/dist/roadtrip/svg/navigation-launch-outline.svg +1 -0
- package/dist/roadtrip/svg/navigation-launch.svg +1 -0
- package/dist/roadtrip/svg/navigation-layers-outline-color.svg +1 -0
- package/dist/roadtrip/svg/navigation-layers-outline.svg +1 -0
- package/dist/roadtrip/svg/navigation-layers.svg +1 -0
- package/dist/roadtrip/svg/navigation-list.svg +1 -0
- package/dist/roadtrip/svg/navigation-menu.svg +1 -0
- package/dist/roadtrip/svg/navigation-more.svg +1 -0
- package/dist/roadtrip/svg/navigation-setting-outline-color.svg +1 -0
- package/dist/roadtrip/svg/navigation-setting-outline.svg +1 -0
- package/dist/roadtrip/svg/navigation-setting.svg +1 -0
- package/dist/roadtrip/svg/nose-odour-color.svg +1 -0
- package/dist/roadtrip/svg/nose-odour.svg +1 -0
- package/dist/roadtrip/svg/nut-outline-color.svg +1 -0
- package/dist/roadtrip/svg/nut-outline.svg +1 -0
- package/dist/roadtrip/svg/nut.svg +1 -0
- package/dist/roadtrip/svg/oil-can-outline-color.svg +1 -0
- package/dist/roadtrip/svg/oil-can-outline.svg +1 -0
- package/dist/roadtrip/svg/oil-can-small-color.svg +1 -0
- package/dist/roadtrip/svg/oil-can-small.svg +1 -0
- package/dist/roadtrip/svg/oil-can.svg +1 -0
- package/dist/roadtrip/svg/oil-change-color.svg +1 -0
- package/dist/roadtrip/svg/oil-change.svg +1 -0
- package/dist/roadtrip/svg/oil-color.svg +1 -0
- package/dist/roadtrip/svg/oil-cruet-color.svg +1 -0
- package/dist/roadtrip/svg/oil-cruet.svg +1 -0
- package/dist/roadtrip/svg/oil.svg +1 -0
- package/dist/roadtrip/svg/paiment-store.svg +1 -0
- package/dist/roadtrip/svg/paint-color.svg +1 -0
- package/dist/roadtrip/svg/paint-spary-gun.svg +1 -0
- package/dist/roadtrip/svg/paint.svg +1 -0
- package/dist/roadtrip/svg/parking-break-color.svg +1 -0
- package/dist/roadtrip/svg/parking-break.svg +1 -0
- package/dist/roadtrip/svg/pass-maintain-color.svg +1 -0
- package/dist/roadtrip/svg/pass-maintain-logo-color.svg +1 -0
- package/dist/roadtrip/svg/pass-maintain-logo-outline-color.svg +1 -0
- package/dist/roadtrip/svg/pass-maintain-logo-outline.svg +1 -0
- package/dist/roadtrip/svg/pass-maintain-logo.svg +1 -0
- package/dist/roadtrip/svg/pass-maintain.svg +1 -0
- package/dist/roadtrip/svg/password-reset.svg +1 -0
- package/dist/roadtrip/svg/payment-bill-color.svg +1 -0
- package/dist/roadtrip/svg/payment-bill.svg +1 -0
- package/dist/roadtrip/svg/payment-card-color.svg +1 -0
- package/dist/roadtrip/svg/payment-card.svg +1 -0
- package/dist/roadtrip/svg/payment-cash-color.svg +1 -0
- package/dist/roadtrip/svg/payment-cash.svg +1 -0
- package/dist/roadtrip/svg/payment-delevery-color.svg +1 -0
- package/dist/roadtrip/svg/payment-delevery.svg +1 -0
- package/dist/roadtrip/svg/payment-safety-color.svg +1 -0
- package/dist/roadtrip/svg/payment-safety.svg +1 -0
- package/dist/roadtrip/svg/payment-store-color.svg +1 -0
- package/dist/roadtrip/svg/payment-store.svg +1 -0
- package/dist/roadtrip/svg/people-add-outline-color.svg +1 -0
- package/dist/roadtrip/svg/people-add-outline.svg +1 -0
- package/dist/roadtrip/svg/people-add.svg +1 -0
- package/dist/roadtrip/svg/people-car-fleet-color.svg +1 -0
- package/dist/roadtrip/svg/people-car-fleet.svg +1 -0
- package/dist/roadtrip/svg/people-card-color.svg +1 -0
- package/dist/roadtrip/svg/people-card.svg +1 -0
- package/dist/roadtrip/svg/people-coworker-color.svg +1 -0
- package/dist/roadtrip/svg/people-coworker-norauto-color.svg +1 -0
- package/dist/roadtrip/svg/people-coworker-norauto.svg +1 -0
- package/dist/roadtrip/svg/people-coworker.svg +1 -0
- package/dist/roadtrip/svg/people-customer-outline.svg +1 -0
- package/dist/roadtrip/svg/people-customer.svg +1 -0
- package/dist/roadtrip/svg/people-group-outline-color.svg +1 -0
- package/dist/roadtrip/svg/people-group-outline.svg +1 -0
- package/dist/roadtrip/svg/people-group.svg +1 -0
- package/dist/roadtrip/svg/people-outline.svg +1 -0
- package/dist/roadtrip/svg/people-vip-outline-color.svg +1 -0
- package/dist/roadtrip/svg/people-vip-outline.svg +1 -0
- package/dist/roadtrip/svg/people-vip.svg +1 -0
- package/dist/roadtrip/svg/people.svg +1 -0
- package/dist/roadtrip/svg/petrol-outline-color.svg +1 -0
- package/dist/roadtrip/svg/petrol-outline.svg +1 -0
- package/dist/roadtrip/svg/petrol.svg +1 -0
- package/dist/roadtrip/svg/phone-ouline.svg +1 -0
- package/dist/roadtrip/svg/phone.svg +1 -0
- package/dist/roadtrip/svg/picture-color.svg +1 -0
- package/dist/roadtrip/svg/picture.svg +1 -0
- package/dist/roadtrip/svg/player-arrow-play.svg +1 -0
- package/dist/roadtrip/svg/player-break.svg +1 -0
- package/dist/roadtrip/svg/player-dvd.svg +1 -0
- package/dist/roadtrip/svg/player-irregular.svg +1 -0
- package/dist/roadtrip/svg/player-pause.svg +1 -0
- package/dist/roadtrip/svg/player-radio-outline.svg +1 -0
- package/dist/roadtrip/svg/player-radio.svg +1 -0
- package/dist/roadtrip/svg/player-regular.svg +1 -0
- package/dist/roadtrip/svg/player-unlimited.svg +1 -0
- package/dist/roadtrip/svg/player-video-color.svg +1 -0
- package/dist/roadtrip/svg/player-video.svg +1 -0
- package/dist/roadtrip/svg/power-color.svg +1 -0
- package/dist/roadtrip/svg/power.svg +1 -0
- package/dist/roadtrip/svg/print-outline-color.svg +1 -0
- package/dist/roadtrip/svg/print-outline.svg +1 -0
- package/dist/roadtrip/svg/print.svg +1 -0
- package/dist/roadtrip/svg/purchase-history-color.svg +1 -0
- package/dist/roadtrip/svg/purchase-history.svg +1 -0
- package/dist/roadtrip/svg/radiator-color.svg +1 -0
- package/dist/roadtrip/svg/radiator.svg +1 -0
- package/dist/roadtrip/svg/rent-back-color.svg +1 -0
- package/dist/roadtrip/svg/rent-back.svg +1 -0
- package/dist/roadtrip/svg/rent-color.svg +1 -0
- package/dist/roadtrip/svg/rent.svg +1 -0
- package/dist/roadtrip/svg/roof-rack-cross-bars.svg +1 -0
- package/dist/roadtrip/svg/rubber-outline-color.svg +1 -0
- package/dist/roadtrip/svg/rubber-outline.svg +1 -0
- package/dist/roadtrip/svg/rubber.svg +1 -0
- package/dist/roadtrip/svg/save-disk-color.svg +1 -0
- package/dist/roadtrip/svg/save-disk.svg +1 -0
- package/dist/roadtrip/svg/scan-bar-code-color.svg +1 -0
- package/dist/roadtrip/svg/scan-bar-code.svg +1 -0
- package/dist/roadtrip/svg/scan-color.svg +1 -0
- package/dist/roadtrip/svg/scan-qr-code-color.svg +1 -0
- package/dist/roadtrip/svg/scan-qr-code.svg +1 -0
- package/dist/roadtrip/svg/scan-vehicle-card.svg +1 -0
- package/dist/roadtrip/svg/scan.svg +1 -0
- package/dist/roadtrip/svg/scissor-color.svg +1 -0
- package/dist/roadtrip/svg/scissor-outline.svg +1 -0
- package/dist/roadtrip/svg/scissor.svg +1 -0
- package/dist/roadtrip/svg/search.svg +1 -0
- package/dist/roadtrip/svg/security-belt.svg +1 -0
- package/dist/roadtrip/svg/security-color.svg +1 -0
- package/dist/roadtrip/svg/security.svg +1 -0
- package/dist/roadtrip/svg/sensor.svg +1 -0
- package/dist/roadtrip/svg/setting.svg +1 -0
- package/dist/roadtrip/svg/shipping-checked-color.svg +1 -0
- package/dist/roadtrip/svg/shipping-checked.svg +1 -0
- package/dist/roadtrip/svg/shipping-click-and-collect-color.svg +1 -0
- package/dist/roadtrip/svg/shipping-click-and-collect.svg +1 -0
- package/dist/roadtrip/svg/shipping-color.svg +1 -0
- package/dist/roadtrip/svg/shipping-express-color.svg +1 -0
- package/dist/roadtrip/svg/shipping-express.svg +1 -0
- package/dist/roadtrip/svg/shipping-locator-color.svg +1 -0
- package/dist/roadtrip/svg/shipping-locator.svg +1 -0
- package/dist/roadtrip/svg/shipping-locker-color.svg +1 -0
- package/dist/roadtrip/svg/shipping-locker.svg +1 -0
- package/dist/roadtrip/svg/shipping-return-color.svg +1 -0
- package/dist/roadtrip/svg/shipping-return.svg +1 -0
- package/dist/roadtrip/svg/shipping.svg +1 -0
- package/dist/roadtrip/svg/shock-absorber-color.svg +1 -0
- package/dist/roadtrip/svg/shock-absorber.svg +1 -0
- package/dist/roadtrip/svg/shop-color.svg +1 -0
- package/dist/roadtrip/svg/shop.svg +1 -0
- package/dist/roadtrip/svg/shopping-cart-add-color.svg +1 -0
- package/dist/roadtrip/svg/shopping-cart-add.svg +1 -0
- package/dist/roadtrip/svg/shopping-cart-sad-color.svg +1 -0
- package/dist/roadtrip/svg/shopping-cart-sad.svg +1 -0
- package/dist/roadtrip/svg/shopping-cart.svg +1 -0
- package/dist/roadtrip/svg/sign.svg +1 -0
- package/dist/roadtrip/svg/sissor.svg +1 -0
- package/dist/roadtrip/svg/snowflake-color.svg +1 -0
- package/dist/roadtrip/svg/snowflake-outline-color.svg +1 -0
- package/dist/roadtrip/svg/snowflake-outline.svg +1 -0
- package/dist/roadtrip/svg/snowflake.svg +1 -0
- package/dist/roadtrip/svg/social-facebook-outline.svg +1 -0
- package/dist/roadtrip/svg/social-facebook.svg +1 -0
- package/dist/roadtrip/svg/social-google-outline.svg +1 -0
- package/dist/roadtrip/svg/social-google.svg +1 -0
- package/dist/roadtrip/svg/social-instagram-outline.svg +1 -0
- package/dist/roadtrip/svg/social-instagram.svg +1 -0
- package/dist/roadtrip/svg/social-twitter-outline.svg +1 -0
- package/dist/roadtrip/svg/social-twitter.svg +1 -0
- package/dist/roadtrip/svg/social-youtube-outline.svg +1 -0
- package/dist/roadtrip/svg/social-youtube.svg +1 -0
- package/dist/roadtrip/svg/sound-0-outline-color.svg +1 -0
- package/dist/roadtrip/svg/sound-0-outline.svg +1 -0
- package/dist/roadtrip/svg/sound-0.svg +1 -0
- package/dist/roadtrip/svg/sound-1-outline-color.svg +1 -0
- package/dist/roadtrip/svg/sound-1-outline.svg +1 -0
- package/dist/roadtrip/svg/sound-1.svg +1 -0
- package/dist/roadtrip/svg/sound-2-outline-color.svg +1 -0
- package/dist/roadtrip/svg/sound-2-outline.svg +1 -0
- package/dist/roadtrip/svg/sound-2.svg +1 -0
- package/dist/roadtrip/svg/sound-3-outline-color.svg +1 -0
- package/dist/roadtrip/svg/sound-3-outline.svg +1 -0
- package/dist/roadtrip/svg/sound-3.svg +1 -0
- package/dist/roadtrip/svg/sound-alarm.svg +1 -0
- package/dist/roadtrip/svg/spark-color.svg +1 -0
- package/dist/roadtrip/svg/spark-outline.svg +1 -0
- package/dist/roadtrip/svg/spark.svg +1 -0
- package/dist/roadtrip/svg/speak-advice-outline-color.svg +1 -0
- package/dist/roadtrip/svg/speak-advice-outline.svg +1 -0
- package/dist/roadtrip/svg/speak-advice.svg +1 -0
- package/dist/roadtrip/svg/speak-outline-color.svg +1 -0
- package/dist/roadtrip/svg/speak-outline.svg +1 -0
- package/dist/roadtrip/svg/speak.svg +1 -0
- package/dist/roadtrip/svg/speaker-color.svg +1 -0
- package/dist/roadtrip/svg/speaker.svg +1 -0
- package/dist/roadtrip/svg/star-half-color.svg +1 -0
- package/dist/roadtrip/svg/star-smile.svg +1 -0
- package/dist/roadtrip/svg/star.svg +1 -0
- package/dist/roadtrip/svg/steering-control-color.svg +1 -0
- package/dist/roadtrip/svg/steering-control.svg +1 -0
- package/dist/roadtrip/svg/style-color.svg +1 -0
- package/dist/roadtrip/svg/style.svg +1 -0
- package/dist/roadtrip/svg/suspension.svg +1 -0
- package/dist/roadtrip/svg/thumb-outline.svg +1 -0
- package/dist/roadtrip/svg/thumb.svg +1 -0
- package/dist/roadtrip/svg/time-access-color.svg +1 -0
- package/dist/roadtrip/svg/time-access.svg +1 -0
- package/dist/roadtrip/svg/timer-1h-color.svg +1 -0
- package/dist/roadtrip/svg/timer-1h.svg +1 -0
- package/dist/roadtrip/svg/timer-2h-color.svg +1 -0
- package/dist/roadtrip/svg/timer-2h.svg +1 -0
- package/dist/roadtrip/svg/timer-color.svg +1 -0
- package/dist/roadtrip/svg/timer.svg +1 -0
- package/dist/roadtrip/svg/timing-belt-color.svg +1 -0
- package/dist/roadtrip/svg/timing-belt.svg +1 -0
- package/dist/roadtrip/svg/tire-all-terrain-color.svg +1 -0
- package/dist/roadtrip/svg/tire-all-terrain-outline.svg +1 -0
- package/dist/roadtrip/svg/tire-all-terrain.svg +1 -0
- package/dist/roadtrip/svg/tire-alone.svg +1 -0
- package/dist/roadtrip/svg/tire-color.svg +1 -0
- package/dist/roadtrip/svg/tire-diameter-color.svg +1 -0
- package/dist/roadtrip/svg/tire-diameter-outline.svg +1 -0
- package/dist/roadtrip/svg/tire-diameter.svg +1 -0
- package/dist/roadtrip/svg/tire-energy-color.svg +1 -0
- package/dist/roadtrip/svg/tire-energy-outline.svg +1 -0
- package/dist/roadtrip/svg/tire-energy.svg +1 -0
- package/dist/roadtrip/svg/tire-flat-color.svg +1 -0
- package/dist/roadtrip/svg/tire-flat-outline.svg +1 -0
- package/dist/roadtrip/svg/tire-flat.svg +1 -0
- package/dist/roadtrip/svg/tire-hotel-outline-color.svg +1 -0
- package/dist/roadtrip/svg/tire-hotel-outline.svg +1 -0
- package/dist/roadtrip/svg/tire-hotel.svg +1 -0
- package/dist/roadtrip/svg/tire-hub-cap-color.svg +1 -0
- package/dist/roadtrip/svg/tire-hub-cap-outline.svg +1 -0
- package/dist/roadtrip/svg/tire-hub-cap.svg +1 -0
- package/dist/roadtrip/svg/tire-ice-color.svg +1 -0
- package/dist/roadtrip/svg/tire-ice-outline.svg +1 -0
- package/dist/roadtrip/svg/tire-ice.svg +1 -0
- package/dist/roadtrip/svg/tire-outline.svg +1 -0
- package/dist/roadtrip/svg/tire-parallelism-color.svg +1 -0
- package/dist/roadtrip/svg/tire-parallelism.svg +1 -0
- package/dist/roadtrip/svg/tire-rain-color.svg +1 -0
- package/dist/roadtrip/svg/tire-rain-outline.svg +1 -0
- package/dist/roadtrip/svg/tire-rain.svg +1 -0
- package/dist/roadtrip/svg/tire-rim-color.svg +1 -0
- package/dist/roadtrip/svg/tire-rim-outline.svg +1 -0
- package/dist/roadtrip/svg/tire-rim.svg +1 -0
- package/dist/roadtrip/svg/tire-seize.svg +1 -0
- package/dist/roadtrip/svg/tire-sidewall-height-color.svg +1 -0
- package/dist/roadtrip/svg/tire-sidewall-height-outline.svg +1 -0
- package/dist/roadtrip/svg/tire-sidewall-height.svg +1 -0
- package/dist/roadtrip/svg/tire-snow-chain-color.svg +1 -0
- package/dist/roadtrip/svg/tire-snow-chain-outline.svg +1 -0
- package/dist/roadtrip/svg/tire-snow-chain.svg +1 -0
- package/dist/roadtrip/svg/tire-snow-color.svg +1 -0
- package/dist/roadtrip/svg/tire-snow-outline.svg +1 -0
- package/dist/roadtrip/svg/tire-snow-studded-color.svg +1 -0
- package/dist/roadtrip/svg/tire-snow-studded-outline.svg +1 -0
- package/dist/roadtrip/svg/tire-snow-studded.svg +1 -0
- package/dist/roadtrip/svg/tire-snow.svg +1 -0
- package/dist/roadtrip/svg/tire-sound-color.svg +1 -0
- package/dist/roadtrip/svg/tire-sound-outline.svg +1 -0
- package/dist/roadtrip/svg/tire-sound.svg +1 -0
- package/dist/roadtrip/svg/tire-steel.svg +1 -0
- package/dist/roadtrip/svg/tire-sun-color.svg +1 -0
- package/dist/roadtrip/svg/tire-sun-outline.svg +1 -0
- package/dist/roadtrip/svg/tire-sun-snow-color.svg +1 -0
- package/dist/roadtrip/svg/tire-sun-snow-outline.svg +1 -0
- package/dist/roadtrip/svg/tire-sun-snow.svg +1 -0
- package/dist/roadtrip/svg/tire-sun.svg +1 -0
- package/dist/roadtrip/svg/tire-suspension-color.svg +1 -0
- package/dist/roadtrip/svg/tire-suspension.svg +1 -0
- package/dist/roadtrip/svg/tire-wheel-diameter-color.svg +1 -0
- package/dist/roadtrip/svg/tire-wheel-diameter-outline.svg +1 -0
- package/dist/roadtrip/svg/tire-wheel-diameter.svg +1 -0
- package/dist/roadtrip/svg/tire-wheel-rim-color.svg +1 -0
- package/dist/roadtrip/svg/tire-wheel-rim-outline.svg +1 -0
- package/dist/roadtrip/svg/tire-wheel-rim.svg +1 -0
- package/dist/roadtrip/svg/tire-wheel-steel-color.svg +1 -0
- package/dist/roadtrip/svg/tire-wheel-steel-outline.svg +1 -0
- package/dist/roadtrip/svg/tire-wheel-steel.svg +1 -0
- package/dist/roadtrip/svg/tire-witdh-color.svg +1 -0
- package/dist/roadtrip/svg/tire-witdh-outline.svg +1 -0
- package/dist/roadtrip/svg/tire-witdh.svg +1 -0
- package/dist/roadtrip/svg/tire.svg +1 -0
- package/dist/roadtrip/svg/touch.svg +1 -0
- package/dist/roadtrip/svg/translate.svg +1 -0
- package/dist/roadtrip/svg/transmission-color.svg +1 -0
- package/dist/roadtrip/svg/transmission.svg +1 -0
- package/dist/roadtrip/svg/trash-bin-color.svg +1 -0
- package/dist/roadtrip/svg/trash-bin.svg +1 -0
- package/dist/roadtrip/svg/travel-bag.svg +1 -0
- package/dist/roadtrip/svg/travel-suitcase.svg +1 -0
- package/dist/roadtrip/svg/travel.svg +1 -0
- package/dist/roadtrip/svg/trick-outline-color.svg +1 -0
- package/dist/roadtrip/svg/trick-outline.svg +1 -0
- package/dist/roadtrip/svg/trick.svg +1 -0
- package/dist/roadtrip/svg/trust.svg +1 -0
- package/dist/roadtrip/svg/vehicle-3-doors-color.svg +1 -0
- package/dist/roadtrip/svg/vehicle-3-doors-hatchback-color.svg +1 -0
- package/dist/roadtrip/svg/vehicle-3-doors.svg +1 -0
- package/dist/roadtrip/svg/vehicle-5-doors-color.svg +1 -0
- package/dist/roadtrip/svg/vehicle-5-doors-hatchback-color.svg +1 -0
- package/dist/roadtrip/svg/vehicle-5-doors.svg +1 -0
- package/dist/roadtrip/svg/vehicle-bike-electric.svg +1 -0
- package/dist/roadtrip/svg/vehicle-bike-rack.svg +1 -0
- package/dist/roadtrip/svg/vehicle-bike.svg +1 -0
- package/dist/roadtrip/svg/vehicle-bus.svg +1 -0
- package/dist/roadtrip/svg/vehicle-car-add-outline-color.svg +1 -0
- package/dist/roadtrip/svg/vehicle-car-add-outline.svg +1 -0
- package/dist/roadtrip/svg/vehicle-car-add.svg +1 -0
- package/dist/roadtrip/svg/vehicle-car-all-outline-color.svg +1 -0
- package/dist/roadtrip/svg/vehicle-car-all-outline.svg +1 -0
- package/dist/roadtrip/svg/vehicle-car-all.svg +1 -0
- package/dist/roadtrip/svg/vehicle-car-bodywork.svg +1 -0
- package/dist/roadtrip/svg/vehicle-car-checked-outline-color.svg +1 -0
- package/dist/roadtrip/svg/vehicle-car-checked-outline.svg +1 -0
- package/dist/roadtrip/svg/vehicle-car-checked.svg +1 -0
- package/dist/roadtrip/svg/vehicle-car-light-back-color.svg +1 -0
- package/dist/roadtrip/svg/vehicle-car-light-front-color.svg +1 -0
- package/dist/roadtrip/svg/vehicle-car-light-inside-color.svg +1 -0
- package/dist/roadtrip/svg/vehicle-car-moto.svg +1 -0
- package/dist/roadtrip/svg/vehicle-car-outline-back.svg +1 -0
- package/dist/roadtrip/svg/vehicle-car-outline-cockpit.svg +1 -0
- package/dist/roadtrip/svg/vehicle-car-outline-color.svg +1 -0
- package/dist/roadtrip/svg/vehicle-car-outline-front.svg +1 -0
- package/dist/roadtrip/svg/vehicle-car-outline-side.svg +1 -0
- package/dist/roadtrip/svg/vehicle-car-outline-signal.svg +1 -0
- package/dist/roadtrip/svg/vehicle-car-outline.svg +1 -0
- package/dist/roadtrip/svg/vehicle-car-sad-outline.svg +1 -0
- package/dist/roadtrip/svg/vehicle-car-sad.svg +1 -0
- package/dist/roadtrip/svg/vehicle-car-search-outline.svg +1 -0
- package/dist/roadtrip/svg/vehicle-car-search.svg +1 -0
- package/dist/roadtrip/svg/vehicle-car-setting-outline-color.svg +1 -0
- package/dist/roadtrip/svg/vehicle-car-setting-outline.svg +1 -0
- package/dist/roadtrip/svg/vehicle-car-setting.svg +1 -0
- package/dist/roadtrip/svg/vehicle-car-side-outline.svg +1 -0
- package/dist/roadtrip/svg/vehicle-car-side-tire-behind.svg +1 -0
- package/dist/roadtrip/svg/vehicle-car-side-tire-front.svg +1 -0
- package/dist/roadtrip/svg/vehicle-car-side.svg +1 -0
- package/dist/roadtrip/svg/vehicle-car-sound-outline.svg +1 -0
- package/dist/roadtrip/svg/vehicle-car-sound.svg +1 -0
- package/dist/roadtrip/svg/vehicle-car-unknow-outline.svg +1 -0
- package/dist/roadtrip/svg/vehicle-car-unknow.svg +1 -0
- package/dist/roadtrip/svg/vehicle-car-unknowoutline-color.svg +1 -0
- package/dist/roadtrip/svg/vehicle-car-unselected-outline-color.svg +1 -0
- package/dist/roadtrip/svg/vehicle-car-unselected-outline.svg +1 -0
- package/dist/roadtrip/svg/vehicle-car-unselected.svg +1 -0
- package/dist/roadtrip/svg/vehicle-car.svg +1 -0
- package/dist/roadtrip/svg/vehicle-caravan.svg +1 -0
- package/dist/roadtrip/svg/vehicle-carport-color.svg +1 -0
- package/dist/roadtrip/svg/vehicle-carport.svg +1 -0
- package/dist/roadtrip/svg/vehicle-collector.svg +1 -0
- package/dist/roadtrip/svg/vehicle-delevery-fast-outline-color.svg +1 -0
- package/dist/roadtrip/svg/vehicle-delevery-fast-outline.svg +1 -0
- package/dist/roadtrip/svg/vehicle-delevery-fast.svg +1 -0
- package/dist/roadtrip/svg/vehicle-delevery-meeting-outline-color.svg +1 -0
- package/dist/roadtrip/svg/vehicle-delevery-meeting-outline.svg +1 -0
- package/dist/roadtrip/svg/vehicle-delevery-meeting.svg +1 -0
- package/dist/roadtrip/svg/vehicle-delevery-privilege.svg +1 -0
- package/dist/roadtrip/svg/vehicle-delevery-van.svg +1 -0
- package/dist/roadtrip/svg/vehicle-delevery.svg +1 -0
- package/dist/roadtrip/svg/vehicle-drive-carport-color.svg +1 -0
- package/dist/roadtrip/svg/vehicle-drive-carport.svg +1 -0
- package/dist/roadtrip/svg/vehicle-drive-color.svg +1 -0
- package/dist/roadtrip/svg/vehicle-drive.svg +1 -0
- package/dist/roadtrip/svg/vehicle-moto-bike.svg +1 -0
- package/dist/roadtrip/svg/vehicle-moto.svg +1 -0
- package/dist/roadtrip/svg/vehicle-mower.svg +1 -0
- package/dist/roadtrip/svg/vehicle-no-license.svg +1 -0
- package/dist/roadtrip/svg/vehicle-pickup-van.svg +1 -0
- package/dist/roadtrip/svg/vehicle-pickup.svg +1 -0
- package/dist/roadtrip/svg/vehicle-quad.svg +1 -0
- package/dist/roadtrip/svg/vehicle-rally.svg +1 -0
- package/dist/roadtrip/svg/vehicle-rent-bike-electric.svg +1 -0
- package/dist/roadtrip/svg/vehicle-rent-car-no-license.svg +1 -0
- package/dist/roadtrip/svg/vehicle-rent-car.svg +1 -0
- package/dist/roadtrip/svg/vehicle-rent-trailer.svg +1 -0
- package/dist/roadtrip/svg/vehicle-repair-car.svg +1 -0
- package/dist/roadtrip/svg/vehicle-repair-moto.svg +1 -0
- package/dist/roadtrip/svg/vehicle-repair-pickup-van.svg +1 -0
- package/dist/roadtrip/svg/vehicle-repair-van.svg +1 -0
- package/dist/roadtrip/svg/vehicle-road-grip-outline.svg +1 -0
- package/dist/roadtrip/svg/vehicle-road-grip.svg +1 -0
- package/dist/roadtrip/svg/vehicle-roof-box-outline-color.svg +1 -0
- package/dist/roadtrip/svg/vehicle-roof-box-outline.svg +1 -0
- package/dist/roadtrip/svg/vehicle-roof-box.svg +1 -0
- package/dist/roadtrip/svg/vehicle-scooter-kick.svg +1 -0
- package/dist/roadtrip/svg/vehicle-scooter.svg +1 -0
- package/dist/roadtrip/svg/vehicle-suv.svg +1 -0
- package/dist/roadtrip/svg/vehicle-tire-invert.svg +1 -0
- package/dist/roadtrip/svg/vehicle-tires-all-color.svg +1 -0
- package/dist/roadtrip/svg/vehicle-tires-back-color.svg +1 -0
- package/dist/roadtrip/svg/vehicle-tires-back-left-color.svg +1 -0
- package/dist/roadtrip/svg/vehicle-tires-back-right-color.svg +1 -0
- package/dist/roadtrip/svg/vehicle-tires-front-color.svg +1 -0
- package/dist/roadtrip/svg/vehicle-tires-front-left-color.svg +1 -0
- package/dist/roadtrip/svg/vehicle-tires-front-right-color.svg +1 -0
- package/dist/roadtrip/svg/vehicle-tires.svg +1 -0
- package/dist/roadtrip/svg/vehicle-tractor.svg +1 -0
- package/dist/roadtrip/svg/vehicle-trailer.svg +1 -0
- package/dist/roadtrip/svg/vehicle-truck.svg +1 -0
- package/dist/roadtrip/svg/vehicle-van.svg +1 -0
- package/dist/roadtrip/svg/vehicle-workshop-outline-color.svg +1 -0
- package/dist/roadtrip/svg/vehicle-workshop-outline.svg +1 -0
- package/dist/roadtrip/svg/vehicle-workshop.svg +1 -0
- package/dist/roadtrip/svg/ventilator-color.svg +1 -0
- package/dist/roadtrip/svg/ventilator.svg +1 -0
- package/dist/roadtrip/svg/videocam-outline.svg +1 -0
- package/dist/roadtrip/svg/videocam.svg +1 -0
- package/dist/roadtrip/svg/view-3d-360-color.svg +1 -0
- package/dist/roadtrip/svg/view-3d-360-disabled-color.svg +1 -0
- package/dist/roadtrip/svg/view-3d-360-disabled.svg +1 -0
- package/dist/roadtrip/svg/view-3d-360.svg +1 -0
- package/dist/roadtrip/svg/virus-color.svg +1 -0
- package/dist/roadtrip/svg/virus.svg +1 -0
- package/dist/roadtrip/svg/visibility-off-outline-color.svg +1 -0
- package/dist/roadtrip/svg/visibility-off-outline.svg +1 -0
- package/dist/roadtrip/svg/visibility-off.svg +1 -0
- package/dist/roadtrip/svg/visibility-outline-color.svg +1 -0
- package/dist/roadtrip/svg/visibility-outline.svg +1 -0
- package/dist/roadtrip/svg/visibility.svg +1 -0
- package/dist/roadtrip/svg/warehouse-color.svg +1 -0
- package/dist/roadtrip/svg/warehouse.svg +1 -0
- package/dist/roadtrip/svg/weather-rain-color.svg +1 -0
- package/dist/roadtrip/svg/weather-rain-outline-color.svg +1 -0
- package/dist/roadtrip/svg/weather-rain-outline.svg +1 -0
- package/dist/roadtrip/svg/weather-rain.svg +1 -0
- package/dist/roadtrip/svg/weather-snow-color.svg +1 -0
- package/dist/roadtrip/svg/weather-snow.svg +1 -0
- package/dist/roadtrip/svg/weather-sun-color.svg +1 -0
- package/dist/roadtrip/svg/weather-sun-outline-color.svg +1 -0
- package/dist/roadtrip/svg/weather-sun-outline.svg +1 -0
- package/dist/roadtrip/svg/weather-sun-snow-color.svg +1 -0
- package/dist/roadtrip/svg/weather-sun-snow-outline-color.svg +1 -0
- package/dist/roadtrip/svg/weather-sun-snow-outline.svg +1 -0
- package/dist/roadtrip/svg/weather-sun-snow.svg +1 -0
- package/dist/roadtrip/svg/weather-sun.svg +1 -0
- package/dist/roadtrip/svg/wheel-bearings-color.svg +1 -0
- package/dist/roadtrip/svg/wheel-bearings.svg +1 -0
- package/dist/roadtrip/svg/wifi.svg +1 -0
- package/dist/roadtrip/svg/windscreen-back-fluid-color.svg +1 -0
- package/dist/roadtrip/svg/windscreen-back-fluid.svg +1 -0
- package/dist/roadtrip/svg/windscreen-back-frost-color.svg +1 -0
- package/dist/roadtrip/svg/windscreen-back-frost.svg +1 -0
- package/dist/roadtrip/svg/windscreen-back-wiper-color.svg +1 -0
- package/dist/roadtrip/svg/windscreen-back-wiper.svg +1 -0
- package/dist/roadtrip/svg/windscreen-color.svg +1 -0
- package/dist/roadtrip/svg/windscreen-fluid-color.svg +1 -0
- package/dist/roadtrip/svg/windscreen-fluid.svg +1 -0
- package/dist/roadtrip/svg/windscreen-frost-color.svg +1 -0
- package/dist/roadtrip/svg/windscreen-frost.svg +1 -0
- package/dist/roadtrip/svg/windscreen-wiper-color.svg +1 -0
- package/dist/roadtrip/svg/windscreen-wiper.svg +1 -0
- package/dist/roadtrip/svg/windscreen-wipers-color.svg +1 -0
- package/dist/roadtrip/svg/windscreen-wipers-left-color.svg +1 -0
- package/dist/roadtrip/svg/windscreen-wipers-left.svg +1 -0
- package/dist/roadtrip/svg/windscreen-wipers-right-color.svg +1 -0
- package/dist/roadtrip/svg/windscreen-wipers-right.svg +1 -0
- package/dist/roadtrip/svg/windscreen-wipers.svg +1 -0
- package/dist/roadtrip/svg/windscreen.svg +1 -0
- package/dist/roadtrip/svg/windshield-washer-fluid.svg +1 -0
- package/dist/roadtrip/svg/world-color.svg +1 -0
- package/dist/roadtrip/svg/world.svg +1 -0
- package/dist/roadtrip/svg/wrench-dual-outline.svg +1 -0
- package/dist/roadtrip/svg/wrench-dual.svg +1 -0
- package/dist/roadtrip/svg/wrench-hand-color.svg +1 -0
- package/dist/roadtrip/svg/wrench-hand-dual-color.svg +1 -0
- package/dist/roadtrip/svg/wrench-hand-dual.svg +1 -0
- package/dist/roadtrip/svg/wrench-hand.svg +1 -0
- package/dist/roadtrip/svg/wrench-outline-color.svg +1 -0
- package/dist/roadtrip/svg/wrench-outline.svg +1 -0
- package/dist/roadtrip/svg/wrench-tools.svg +1 -0
- package/dist/roadtrip/svg/wrench-twin.svg +1 -0
- package/dist/roadtrip/svg/wrench.svg +1 -0
- package/dist/roadtrip/swiper/swiper-interface.d.ts +1 -0
- package/dist/roadtrip/swiper/swiper.bundle.js +10002 -0
- package/dist/roadtrip/swiper/swiper.js +4 -0
- package/dist/types/components/accordion/accordion.d.ts +16 -0
- package/dist/types/components/alert/alert.d.ts +12 -0
- package/dist/types/components/autocomplete/autocomplete.d.ts +24 -0
- package/dist/types/components/avatar/avatar.d.ts +6 -0
- package/dist/types/components/badge/badge.d.ts +15 -0
- package/dist/types/components/button/button.d.ts +72 -0
- package/dist/types/components/card/card.d.ts +55 -0
- package/dist/types/components/carousel/carousel.d.ts +183 -0
- package/dist/types/components/carousel/swiper/swiper-interface.d.ts +1 -0
- package/dist/types/components/carousel-item/carousel-item.d.ts +6 -0
- package/dist/types/components/checkbox/checkbox.d.ts +63 -0
- package/dist/types/components/chip/chip.d.ts +23 -0
- package/dist/types/components/col/col.d.ts +6 -0
- package/dist/types/components/collapse/collapse.d.ts +27 -0
- package/dist/types/components/counter/counter.d.ts +30 -0
- package/dist/types/components/dialog/dialog.d.ts +62 -0
- package/dist/types/components/drawer/drawer.d.ts +87 -0
- package/dist/types/components/flap/flap.d.ts +10 -0
- package/dist/types/components/grid/grid.d.ts +6 -0
- package/dist/types/components/icon/icon.d.ts +59 -0
- package/dist/types/components/icon/request.d.ts +2 -0
- package/dist/types/components/icon/utils.d.ts +11 -0
- package/dist/types/components/icon/validate.d.ts +2 -0
- package/dist/types/components/img/img.d.ts +34 -0
- package/dist/types/components/input/input.d.ts +131 -0
- package/dist/types/components/input-group/input-group.d.ts +8 -0
- package/dist/types/components/item/item.d.ts +65 -0
- package/dist/types/components/label/label.d.ts +6 -0
- package/dist/types/components/list/list.d.ts +10 -0
- package/dist/types/components/modal/modal.d.ts +55 -0
- package/dist/types/components/navbar/navbar.d.ts +17 -0
- package/dist/types/components/navbar-item/navbar-item.d.ts +55 -0
- package/dist/types/components/plate-number/plate-number.d.ts +43 -0
- package/dist/types/components/progress/progress.d.ts +13 -0
- package/dist/types/components/radio/radio.d.ts +61 -0
- package/dist/types/components/radio-group/radio-group.d.ts +50 -0
- package/dist/types/components/range/range.d.ts +42 -0
- package/dist/types/components/rating/rating.d.ts +15 -0
- package/dist/types/components/row/row.d.ts +6 -0
- package/dist/types/components/select/select.d.ts +67 -0
- package/dist/types/components/skeleton/skeleton.d.ts +3 -0
- package/dist/types/components/spinner/spinner.d.ts +3 -0
- package/dist/types/components/switch/switch.d.ts +69 -0
- package/dist/types/components/tab/tab.d.ts +17 -0
- package/dist/types/components/tab-bar/tab-bar.d.ts +25 -0
- package/dist/types/components/tab-button/tab-button.d.ts +58 -0
- package/dist/types/components/table/table.d.ts +6 -0
- package/dist/types/components/tabs/tabs.d.ts +47 -0
- package/dist/types/components/text/text.d.ts +10 -0
- package/dist/types/components/textarea/textarea.d.ts +109 -0
- package/dist/types/components/toast/toast.d.ts +47 -0
- package/dist/types/components/toolbar/toolbar.d.ts +15 -0
- package/dist/types/components/toolbar-title/toolbar-title.d.ts +6 -0
- package/dist/types/components/tooltip/tooltip.d.ts +43 -0
- package/dist/types/components.d.ts +2828 -0
- package/dist/types/global/app.d.ts +1 -0
- package/dist/types/index.d.ts +2 -0
- package/dist/types/interface.d.ts +14 -0
- package/dist/types/stencil-public-runtime.d.ts +1563 -0
- package/dist/types/utils/polyfill.d.ts +0 -0
- package/icons/icons.svg +1 -0
- package/icons/index.d.ts +887 -0
- package/icons/index.js +887 -0
- package/package.json +83 -0
- 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
|
+
}
|