@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,1563 @@
|
|
|
1
|
+
declare type CustomMethodDecorator<T> = (target: Object, propertyKey: string | symbol, descriptor: TypedPropertyDescriptor<T>) => TypedPropertyDescriptor<T> | void;
|
|
2
|
+
export interface ComponentDecorator {
|
|
3
|
+
(opts?: ComponentOptions): ClassDecorator;
|
|
4
|
+
}
|
|
5
|
+
export interface ComponentOptions {
|
|
6
|
+
/**
|
|
7
|
+
* Tag name of the web component. Ideally, the tag name must be globally unique,
|
|
8
|
+
* so it's recommended to choose an unique prefix for all your components within the same collection.
|
|
9
|
+
*
|
|
10
|
+
* In addition, tag name must contain a '-'
|
|
11
|
+
*/
|
|
12
|
+
tag: string;
|
|
13
|
+
/**
|
|
14
|
+
* If `true`, the component will use scoped stylesheets. Similar to shadow-dom,
|
|
15
|
+
* but without native isolation. Defaults to `false`.
|
|
16
|
+
*/
|
|
17
|
+
scoped?: boolean;
|
|
18
|
+
/**
|
|
19
|
+
* If `true`, the component will use native shadow-dom encapsulation, it will fallback to
|
|
20
|
+
* `scoped` if the browser does not support shadow-dom natively. Defaults to `false`.
|
|
21
|
+
* Additionally, `shadow` can also be given options when attaching the shadow root.
|
|
22
|
+
*/
|
|
23
|
+
shadow?: boolean | ShadowRootOptions;
|
|
24
|
+
/**
|
|
25
|
+
* Relative URL to some external stylesheet file. It should be a `.css` file unless some
|
|
26
|
+
* external plugin is installed like `@stencil/sass`.
|
|
27
|
+
*/
|
|
28
|
+
styleUrl?: string;
|
|
29
|
+
/**
|
|
30
|
+
* Similar as `styleUrl` but allows to specify different stylesheets for different modes.
|
|
31
|
+
*/
|
|
32
|
+
styleUrls?: string[] | ModeStyles;
|
|
33
|
+
/**
|
|
34
|
+
* String that contains inlined CSS instead of using an external stylesheet.
|
|
35
|
+
* The performance characteristics of this feature are the same as using an external stylesheet.
|
|
36
|
+
*
|
|
37
|
+
* Notice, you can't use sass, or less, only `css` is allowed using `styles`, use `styleUrl` is you need more advanced features.
|
|
38
|
+
*/
|
|
39
|
+
styles?: string | {
|
|
40
|
+
[modeName: string]: any;
|
|
41
|
+
};
|
|
42
|
+
/**
|
|
43
|
+
* Array of relative links to folders of assets required by the component.
|
|
44
|
+
*/
|
|
45
|
+
assetsDirs?: string[];
|
|
46
|
+
}
|
|
47
|
+
export interface ShadowRootOptions {
|
|
48
|
+
/**
|
|
49
|
+
* When set to `true`, specifies behavior that mitigates custom element issues
|
|
50
|
+
* around focusability. When a non-focusable part of the shadow DOM is clicked, the first
|
|
51
|
+
* focusable part is given focus, and the shadow host is given any available `:focus` styling.
|
|
52
|
+
*/
|
|
53
|
+
delegatesFocus?: boolean;
|
|
54
|
+
}
|
|
55
|
+
export interface ModeStyles {
|
|
56
|
+
[modeName: string]: string | string[];
|
|
57
|
+
}
|
|
58
|
+
export interface PropDecorator {
|
|
59
|
+
(opts?: PropOptions): PropertyDecorator;
|
|
60
|
+
}
|
|
61
|
+
export interface PropOptions {
|
|
62
|
+
/**
|
|
63
|
+
* The name of the associated DOM attribute.
|
|
64
|
+
* Stencil uses different heuristics to determine the default name of the attribute,
|
|
65
|
+
* but using this property, you can override the default behaviour.
|
|
66
|
+
*/
|
|
67
|
+
attribute?: string | null;
|
|
68
|
+
/**
|
|
69
|
+
* A Prop is _by default_ immutable from inside the component logic.
|
|
70
|
+
* Once a value is set by a user, the component cannot update it internally.
|
|
71
|
+
* However, it's possible to explicitly allow a Prop to be mutated from inside the component,
|
|
72
|
+
* by setting this `mutable` option to `true`.
|
|
73
|
+
*/
|
|
74
|
+
mutable?: boolean;
|
|
75
|
+
/**
|
|
76
|
+
* In some cases it may be useful to keep a Prop in sync with an attribute.
|
|
77
|
+
* In this case you can set the `reflect` option to `true`, since it defaults to `false`:
|
|
78
|
+
*/
|
|
79
|
+
reflect?: boolean;
|
|
80
|
+
}
|
|
81
|
+
export interface MethodDecorator {
|
|
82
|
+
(opts?: MethodOptions): CustomMethodDecorator<any>;
|
|
83
|
+
}
|
|
84
|
+
export interface MethodOptions {
|
|
85
|
+
}
|
|
86
|
+
export interface ElementDecorator {
|
|
87
|
+
(): PropertyDecorator;
|
|
88
|
+
}
|
|
89
|
+
export interface EventDecorator {
|
|
90
|
+
(opts?: EventOptions): PropertyDecorator;
|
|
91
|
+
}
|
|
92
|
+
export interface EventOptions {
|
|
93
|
+
/**
|
|
94
|
+
* A string custom event name to override the default.
|
|
95
|
+
*/
|
|
96
|
+
eventName?: string;
|
|
97
|
+
/**
|
|
98
|
+
* A Boolean indicating whether the event bubbles up through the DOM or not.
|
|
99
|
+
*/
|
|
100
|
+
bubbles?: boolean;
|
|
101
|
+
/**
|
|
102
|
+
* A Boolean indicating whether the event is cancelable.
|
|
103
|
+
*/
|
|
104
|
+
cancelable?: boolean;
|
|
105
|
+
/**
|
|
106
|
+
* A Boolean value indicating whether or not the event can bubble across the boundary between the shadow DOM and the regular DOM.
|
|
107
|
+
*/
|
|
108
|
+
composed?: boolean;
|
|
109
|
+
}
|
|
110
|
+
export interface ListenDecorator {
|
|
111
|
+
(eventName: string, opts?: ListenOptions): CustomMethodDecorator<any>;
|
|
112
|
+
}
|
|
113
|
+
export interface ListenOptions {
|
|
114
|
+
/**
|
|
115
|
+
* Handlers can also be registered for an event other than the host itself.
|
|
116
|
+
* The `target` option can be used to change where the event listener is attached,
|
|
117
|
+
* this is useful for listening to application-wide events.
|
|
118
|
+
*/
|
|
119
|
+
target?: ListenTargetOptions;
|
|
120
|
+
/**
|
|
121
|
+
* Event listener attached with `@Listen` does not "capture" by default,
|
|
122
|
+
* When a event listener is set to "capture", means the event will be dispatched
|
|
123
|
+
* during the "capture phase". Please see
|
|
124
|
+
* https://www.quirksmode.org/js/events_order.html for further information.
|
|
125
|
+
*/
|
|
126
|
+
capture?: boolean;
|
|
127
|
+
/**
|
|
128
|
+
* By default, Stencil uses several heuristics to determine if
|
|
129
|
+
* it must attach a `passive` event listener or not.
|
|
130
|
+
*
|
|
131
|
+
* Using the `passive` option can be used to change the default behaviour.
|
|
132
|
+
* Please see https://developers.google.com/web/updates/2016/06/passive-event-listeners for further information.
|
|
133
|
+
*/
|
|
134
|
+
passive?: boolean;
|
|
135
|
+
}
|
|
136
|
+
export declare type ListenTargetOptions = 'body' | 'document' | 'window';
|
|
137
|
+
export interface StateDecorator {
|
|
138
|
+
(): PropertyDecorator;
|
|
139
|
+
}
|
|
140
|
+
export interface WatchDecorator {
|
|
141
|
+
(propName: string): CustomMethodDecorator<any>;
|
|
142
|
+
}
|
|
143
|
+
export interface UserBuildConditionals {
|
|
144
|
+
isDev: boolean;
|
|
145
|
+
isBrowser: boolean;
|
|
146
|
+
isServer: boolean;
|
|
147
|
+
isTesting: boolean;
|
|
148
|
+
}
|
|
149
|
+
/**
|
|
150
|
+
* The `Build` object provides many build conditionals that can be used to
|
|
151
|
+
* include or exclude code depending on the build.
|
|
152
|
+
*/
|
|
153
|
+
export declare const Build: UserBuildConditionals;
|
|
154
|
+
/**
|
|
155
|
+
* The `Env` object provides access to the "env" object declared in the project's `stencil.config.ts`.
|
|
156
|
+
*/
|
|
157
|
+
export declare const Env: {
|
|
158
|
+
[prop: string]: string | undefined;
|
|
159
|
+
};
|
|
160
|
+
/**
|
|
161
|
+
* The `@Component()` decorator is used to provide metadata about the component class.
|
|
162
|
+
* https://stenciljs.com/docs/component
|
|
163
|
+
*/
|
|
164
|
+
export declare const Component: ComponentDecorator;
|
|
165
|
+
/**
|
|
166
|
+
* The `@Element()` decorator is a reference to the actual host element
|
|
167
|
+
* once it has rendered.
|
|
168
|
+
*/
|
|
169
|
+
export declare const Element: ElementDecorator;
|
|
170
|
+
/**
|
|
171
|
+
* Components can emit data and events using the Event Emitter decorator.
|
|
172
|
+
* To dispatch Custom DOM events for other components to handle, use the
|
|
173
|
+
* `@Event()` decorator. The Event decorator also makes it easier for Stencil
|
|
174
|
+
* to automatically build types and documentation for the event data.
|
|
175
|
+
* https://stenciljs.com/docs/events
|
|
176
|
+
*/
|
|
177
|
+
export declare const Event: EventDecorator;
|
|
178
|
+
/**
|
|
179
|
+
* The `Listen()` decorator is for listening DOM events, including the ones
|
|
180
|
+
* dispatched from `@Events()`.
|
|
181
|
+
* https://stenciljs.com/docs/events#listen-decorator
|
|
182
|
+
*/
|
|
183
|
+
export declare const Listen: ListenDecorator;
|
|
184
|
+
/**
|
|
185
|
+
* The `@Method()` decorator is used to expose methods on the public API.
|
|
186
|
+
* Class methods decorated with the @Method() decorator can be called directly
|
|
187
|
+
* from the element, meaning they are intended to be callable from the outside.
|
|
188
|
+
* https://stenciljs.com/docs/methods
|
|
189
|
+
*/
|
|
190
|
+
export declare const Method: MethodDecorator;
|
|
191
|
+
/**
|
|
192
|
+
* Props are custom attribute/properties exposed publicly on the element
|
|
193
|
+
* that developers can provide values for. Children components do not need to
|
|
194
|
+
* know about or reference parent components, so Props can be used to pass
|
|
195
|
+
* data down from the parent to the child. Components need to explicitly
|
|
196
|
+
* declare the Props they expect to receive using the `@Prop()` decorator.
|
|
197
|
+
* Any value changes to a Prop will cause a re-render.
|
|
198
|
+
* https://stenciljs.com/docs/properties
|
|
199
|
+
*/
|
|
200
|
+
export declare const Prop: PropDecorator;
|
|
201
|
+
/**
|
|
202
|
+
* The `@State()` decorator can be used to manage internal data for a component.
|
|
203
|
+
* This means that a user cannot modify this data from outside the component,
|
|
204
|
+
* but the component can modify it however it sees fit. Any value changes to a
|
|
205
|
+
* `@State()` property will cause the components render function to be called again.
|
|
206
|
+
* https://stenciljs.com/docs/state
|
|
207
|
+
*/
|
|
208
|
+
export declare const State: StateDecorator;
|
|
209
|
+
/**
|
|
210
|
+
* When a property's value has changed, a method decorated with `@Watch()` will be
|
|
211
|
+
* called and passed the new value of the prop along with the old value. Watch is
|
|
212
|
+
* useful for validating props or handling side effects. Watch decorator does not
|
|
213
|
+
* fire when a component initially loads.
|
|
214
|
+
* https://stenciljs.com/docs/reactive-data#watch-decorator
|
|
215
|
+
*/
|
|
216
|
+
export declare const Watch: WatchDecorator;
|
|
217
|
+
export declare type ResolutionHandler = (elm: HTMLElement) => string | undefined | null;
|
|
218
|
+
export declare type ErrorHandler = (err: any, element?: HTMLElement) => void;
|
|
219
|
+
/**
|
|
220
|
+
* `setMode()` is used for libraries which provide multiple "modes" for styles.
|
|
221
|
+
*/
|
|
222
|
+
export declare const setMode: (handler: ResolutionHandler) => void;
|
|
223
|
+
/**
|
|
224
|
+
* getMode
|
|
225
|
+
*/
|
|
226
|
+
export declare function getMode<T = string | undefined>(ref: any): T;
|
|
227
|
+
export declare function setPlatformHelpers(helpers: {
|
|
228
|
+
jmp?: (c: any) => any;
|
|
229
|
+
raf?: (c: any) => number;
|
|
230
|
+
ael?: (el: any, eventName: string, listener: any, options: any) => void;
|
|
231
|
+
rel?: (el: any, eventName: string, listener: any, options: any) => void;
|
|
232
|
+
ce?: (eventName: string, opts?: any) => any;
|
|
233
|
+
}): void;
|
|
234
|
+
/**
|
|
235
|
+
* Get the base path to where the assets can be found. Use `setAssetPath(path)`
|
|
236
|
+
* if the path needs to be customized.
|
|
237
|
+
*/
|
|
238
|
+
export declare function getAssetPath(path: string): string;
|
|
239
|
+
/**
|
|
240
|
+
* Used to manually set the base path where assets can be found. For lazy-loaded
|
|
241
|
+
* builds the asset path is automatically set and assets copied to the correct
|
|
242
|
+
* build directory. However, for custom elements builds, the `setAssetPath(path)` could
|
|
243
|
+
* be used to customize the asset path depending on how the script file is consumed.
|
|
244
|
+
* If the script is used as "module", it's recommended to use "import.meta.url", such
|
|
245
|
+
* as `setAssetPath(import.meta.url)`. Other options include
|
|
246
|
+
* `setAssetPath(document.currentScript.src)`, or using a bundler's replace plugin to
|
|
247
|
+
* dynamically set the path at build time, such as `setAssetPath(process.env.ASSET_PATH)`.
|
|
248
|
+
* But do note that this configuration depends on how your script is bundled, or lack of
|
|
249
|
+
* bunding, and where your assets can be loaded from. Additionally custom bundling
|
|
250
|
+
* will have to ensure the static assets are copied to its build directory.
|
|
251
|
+
*/
|
|
252
|
+
export declare function setAssetPath(path: string): string;
|
|
253
|
+
/**
|
|
254
|
+
* getElement
|
|
255
|
+
*/
|
|
256
|
+
export declare function getElement(ref: any): HTMLStencilElement;
|
|
257
|
+
/**
|
|
258
|
+
* Schedules a new render of the given instance or element even if no state changed.
|
|
259
|
+
*
|
|
260
|
+
* Notice `forceUpdate()` is not syncronous and might perform the DOM render in the next frame.
|
|
261
|
+
*/
|
|
262
|
+
export declare function forceUpdate(ref: any): void;
|
|
263
|
+
/**
|
|
264
|
+
* getRenderingRef
|
|
265
|
+
*/
|
|
266
|
+
export declare function getRenderingRef(): any;
|
|
267
|
+
export interface HTMLStencilElement extends HTMLElement {
|
|
268
|
+
componentOnReady(): Promise<this>;
|
|
269
|
+
}
|
|
270
|
+
/**
|
|
271
|
+
* Schedules a DOM-write task. The provided callback will be executed
|
|
272
|
+
* in the best moment to perform DOM mutation without causing layout thrashing.
|
|
273
|
+
*
|
|
274
|
+
* For further information: https://developers.google.com/web/fundamentals/performance/rendering/avoid-large-complex-layouts-and-layout-thrashing
|
|
275
|
+
*/
|
|
276
|
+
export declare function writeTask(task: RafCallback): void;
|
|
277
|
+
/**
|
|
278
|
+
* Schedules a DOM-read task. The provided callback will be executed
|
|
279
|
+
* in the best moment to perform DOM reads without causing layout thrashing.
|
|
280
|
+
*
|
|
281
|
+
* For further information: https://developers.google.com/web/fundamentals/performance/rendering/avoid-large-complex-layouts-and-layout-thrashing
|
|
282
|
+
*/
|
|
283
|
+
export declare function readTask(task: RafCallback): void;
|
|
284
|
+
/**
|
|
285
|
+
* `setErrorHandler()` can be used to inject a custom global error handler.
|
|
286
|
+
* Unhandled exception raised while rendering, during event handling, or lifecycles will trigger the custom event handler.
|
|
287
|
+
*/
|
|
288
|
+
export declare const setErrorHandler: (handler: ErrorHandler) => void;
|
|
289
|
+
/**
|
|
290
|
+
* This file gets copied to all distributions of stencil component collections.
|
|
291
|
+
* - no imports
|
|
292
|
+
*/
|
|
293
|
+
export interface ComponentWillLoad {
|
|
294
|
+
/**
|
|
295
|
+
* The component is about to load and it has not
|
|
296
|
+
* rendered yet.
|
|
297
|
+
*
|
|
298
|
+
* This is the best place to make any data updates
|
|
299
|
+
* before the first render.
|
|
300
|
+
*
|
|
301
|
+
* componentWillLoad will only be called once.
|
|
302
|
+
*/
|
|
303
|
+
componentWillLoad(): Promise<void> | void;
|
|
304
|
+
}
|
|
305
|
+
export interface ComponentDidLoad {
|
|
306
|
+
/**
|
|
307
|
+
* The component has loaded and has already rendered.
|
|
308
|
+
*
|
|
309
|
+
* Updating data in this method will cause the
|
|
310
|
+
* component to re-render.
|
|
311
|
+
*
|
|
312
|
+
* componentDidLoad will only be called once.
|
|
313
|
+
*/
|
|
314
|
+
componentDidLoad(): void;
|
|
315
|
+
}
|
|
316
|
+
export interface ComponentWillUpdate {
|
|
317
|
+
/**
|
|
318
|
+
* The component is about to update and re-render.
|
|
319
|
+
*
|
|
320
|
+
* Called multiple times throughout the life of
|
|
321
|
+
* the component as it updates.
|
|
322
|
+
*
|
|
323
|
+
* componentWillUpdate is not called on the first render.
|
|
324
|
+
*/
|
|
325
|
+
componentWillUpdate(): Promise<void> | void;
|
|
326
|
+
}
|
|
327
|
+
export interface ComponentDidUpdate {
|
|
328
|
+
/**
|
|
329
|
+
* The component has just re-rendered.
|
|
330
|
+
*
|
|
331
|
+
* Called multiple times throughout the life of
|
|
332
|
+
* the component as it updates.
|
|
333
|
+
*
|
|
334
|
+
* componentWillUpdate is not called on the
|
|
335
|
+
* first render.
|
|
336
|
+
*/
|
|
337
|
+
componentDidUpdate(): void;
|
|
338
|
+
}
|
|
339
|
+
export interface ComponentInterface {
|
|
340
|
+
connectedCallback?(): void;
|
|
341
|
+
disconnectedCallback?(): void;
|
|
342
|
+
componentWillRender?(): Promise<void> | void;
|
|
343
|
+
componentDidRender?(): void;
|
|
344
|
+
/**
|
|
345
|
+
* The component is about to load and it has not
|
|
346
|
+
* rendered yet.
|
|
347
|
+
*
|
|
348
|
+
* This is the best place to make any data updates
|
|
349
|
+
* before the first render.
|
|
350
|
+
*
|
|
351
|
+
* componentWillLoad will only be called once.
|
|
352
|
+
*/
|
|
353
|
+
componentWillLoad?(): Promise<void> | void;
|
|
354
|
+
/**
|
|
355
|
+
* The component has loaded and has already rendered.
|
|
356
|
+
*
|
|
357
|
+
* Updating data in this method will cause the
|
|
358
|
+
* component to re-render.
|
|
359
|
+
*
|
|
360
|
+
* componentDidLoad will only be called once.
|
|
361
|
+
*/
|
|
362
|
+
componentDidLoad?(): void;
|
|
363
|
+
/**
|
|
364
|
+
* A `@Prop` or `@State` property changed and a rerender is about to be requested.
|
|
365
|
+
*
|
|
366
|
+
* Called multiple times throughout the life of
|
|
367
|
+
* the component as its properties change.
|
|
368
|
+
*
|
|
369
|
+
* componentShouldUpdate is not called on the first render.
|
|
370
|
+
*/
|
|
371
|
+
componentShouldUpdate?(newVal: any, oldVal: any, propName: string): boolean | void;
|
|
372
|
+
/**
|
|
373
|
+
* The component is about to update and re-render.
|
|
374
|
+
*
|
|
375
|
+
* Called multiple times throughout the life of
|
|
376
|
+
* the component as it updates.
|
|
377
|
+
*
|
|
378
|
+
* componentWillUpdate is not called on the first render.
|
|
379
|
+
*/
|
|
380
|
+
componentWillUpdate?(): Promise<void> | void;
|
|
381
|
+
/**
|
|
382
|
+
* The component has just re-rendered.
|
|
383
|
+
*
|
|
384
|
+
* Called multiple times throughout the life of
|
|
385
|
+
* the component as it updates.
|
|
386
|
+
*
|
|
387
|
+
* componentWillUpdate is not called on the
|
|
388
|
+
* first render.
|
|
389
|
+
*/
|
|
390
|
+
componentDidUpdate?(): void;
|
|
391
|
+
render?(): any;
|
|
392
|
+
[memberName: string]: any;
|
|
393
|
+
}
|
|
394
|
+
export interface EventEmitter<T = any> {
|
|
395
|
+
emit: (data?: T) => CustomEvent<T>;
|
|
396
|
+
}
|
|
397
|
+
export interface RafCallback {
|
|
398
|
+
(timeStamp: number): void;
|
|
399
|
+
}
|
|
400
|
+
export interface QueueApi {
|
|
401
|
+
tick: (cb: RafCallback) => void;
|
|
402
|
+
read: (cb: RafCallback) => void;
|
|
403
|
+
write: (cb: RafCallback) => void;
|
|
404
|
+
clear?: () => void;
|
|
405
|
+
flush?: (cb?: () => void) => void;
|
|
406
|
+
}
|
|
407
|
+
/**
|
|
408
|
+
* Host
|
|
409
|
+
*/
|
|
410
|
+
interface HostAttributes {
|
|
411
|
+
class?: string | {
|
|
412
|
+
[className: string]: boolean;
|
|
413
|
+
};
|
|
414
|
+
style?: {
|
|
415
|
+
[key: string]: string | undefined;
|
|
416
|
+
};
|
|
417
|
+
ref?: (el: HTMLElement | null) => void;
|
|
418
|
+
[prop: string]: any;
|
|
419
|
+
}
|
|
420
|
+
export interface FunctionalUtilities {
|
|
421
|
+
forEach: (children: VNode[], cb: (vnode: ChildNode, index: number, array: ChildNode[]) => void) => void;
|
|
422
|
+
map: (children: VNode[], cb: (vnode: ChildNode, index: number, array: ChildNode[]) => ChildNode) => VNode[];
|
|
423
|
+
}
|
|
424
|
+
export interface FunctionalComponent<T = {}> {
|
|
425
|
+
(props: T, children: VNode[], utils: FunctionalUtilities): VNode | VNode[];
|
|
426
|
+
}
|
|
427
|
+
export interface ChildNode {
|
|
428
|
+
vtag?: string | number | Function;
|
|
429
|
+
vkey?: string | number;
|
|
430
|
+
vtext?: string;
|
|
431
|
+
vchildren?: VNode[];
|
|
432
|
+
vattrs?: any;
|
|
433
|
+
vname?: string;
|
|
434
|
+
}
|
|
435
|
+
/**
|
|
436
|
+
* Host is a functional component can be used at the root of the render function
|
|
437
|
+
* to set attributes and event listeners to the host element itself.
|
|
438
|
+
*
|
|
439
|
+
* For further information: https://stenciljs.com/docs/host-element
|
|
440
|
+
*/
|
|
441
|
+
export declare const Host: FunctionalComponent<HostAttributes>;
|
|
442
|
+
/**
|
|
443
|
+
* Fragment
|
|
444
|
+
*/
|
|
445
|
+
export declare const Fragment: FunctionalComponent<{}>;
|
|
446
|
+
/**
|
|
447
|
+
* The "h" namespace is used to import JSX types for elements and attributes.
|
|
448
|
+
* It is imported in order to avoid conflicting global JSX issues.
|
|
449
|
+
*/
|
|
450
|
+
export declare namespace h {
|
|
451
|
+
function h(sel: any): VNode;
|
|
452
|
+
function h(sel: Node, data: VNodeData | null): VNode;
|
|
453
|
+
function h(sel: any, data: VNodeData | null): VNode;
|
|
454
|
+
function h(sel: any, text: string): VNode;
|
|
455
|
+
function h(sel: any, children: Array<VNode | undefined | null>): VNode;
|
|
456
|
+
function h(sel: any, data: VNodeData | null, text: string): VNode;
|
|
457
|
+
function h(sel: any, data: VNodeData | null, children: Array<VNode | undefined | null>): VNode;
|
|
458
|
+
function h(sel: any, data: VNodeData | null, children: VNode): VNode;
|
|
459
|
+
namespace JSX {
|
|
460
|
+
interface IntrinsicElements extends LocalJSX.IntrinsicElements, JSXBase.IntrinsicElements {
|
|
461
|
+
[tagName: string]: any;
|
|
462
|
+
}
|
|
463
|
+
}
|
|
464
|
+
}
|
|
465
|
+
export declare function h(sel: any): VNode;
|
|
466
|
+
export declare function h(sel: Node, data: VNodeData | null): VNode;
|
|
467
|
+
export declare function h(sel: any, data: VNodeData | null): VNode;
|
|
468
|
+
export declare function h(sel: any, text: string): VNode;
|
|
469
|
+
export declare function h(sel: any, children: Array<VNode | undefined | null>): VNode;
|
|
470
|
+
export declare function h(sel: any, data: VNodeData | null, text: string): VNode;
|
|
471
|
+
export declare function h(sel: any, data: VNodeData | null, children: Array<VNode | undefined | null>): VNode;
|
|
472
|
+
export declare function h(sel: any, data: VNodeData | null, children: VNode): VNode;
|
|
473
|
+
export interface VNode {
|
|
474
|
+
$flags$: number;
|
|
475
|
+
$tag$: string | number | Function;
|
|
476
|
+
$elm$: any;
|
|
477
|
+
$text$: string;
|
|
478
|
+
$children$: VNode[];
|
|
479
|
+
$attrs$?: any;
|
|
480
|
+
$name$?: string;
|
|
481
|
+
$key$?: string | number;
|
|
482
|
+
}
|
|
483
|
+
export interface VNodeData {
|
|
484
|
+
class?: {
|
|
485
|
+
[className: string]: boolean;
|
|
486
|
+
};
|
|
487
|
+
style?: any;
|
|
488
|
+
[attrName: string]: any;
|
|
489
|
+
}
|
|
490
|
+
declare namespace LocalJSX {
|
|
491
|
+
interface Element {
|
|
492
|
+
}
|
|
493
|
+
interface IntrinsicElements {
|
|
494
|
+
}
|
|
495
|
+
}
|
|
496
|
+
export { LocalJSX as JSX };
|
|
497
|
+
export declare namespace JSXBase {
|
|
498
|
+
interface IntrinsicElements {
|
|
499
|
+
slot: JSXBase.SlotAttributes;
|
|
500
|
+
a: JSXBase.AnchorHTMLAttributes<HTMLAnchorElement>;
|
|
501
|
+
abbr: JSXBase.HTMLAttributes;
|
|
502
|
+
address: JSXBase.HTMLAttributes;
|
|
503
|
+
area: JSXBase.AreaHTMLAttributes<HTMLAreaElement>;
|
|
504
|
+
article: JSXBase.HTMLAttributes;
|
|
505
|
+
aside: JSXBase.HTMLAttributes;
|
|
506
|
+
audio: JSXBase.AudioHTMLAttributes<HTMLAudioElement>;
|
|
507
|
+
b: JSXBase.HTMLAttributes;
|
|
508
|
+
base: JSXBase.BaseHTMLAttributes<HTMLBaseElement>;
|
|
509
|
+
bdi: JSXBase.HTMLAttributes;
|
|
510
|
+
bdo: JSXBase.HTMLAttributes;
|
|
511
|
+
big: JSXBase.HTMLAttributes;
|
|
512
|
+
blockquote: JSXBase.BlockquoteHTMLAttributes<HTMLQuoteElement>;
|
|
513
|
+
body: JSXBase.HTMLAttributes<HTMLBodyElement>;
|
|
514
|
+
br: JSXBase.HTMLAttributes<HTMLBRElement>;
|
|
515
|
+
button: JSXBase.ButtonHTMLAttributes<HTMLButtonElement>;
|
|
516
|
+
canvas: JSXBase.CanvasHTMLAttributes<HTMLCanvasElement>;
|
|
517
|
+
caption: JSXBase.HTMLAttributes<HTMLTableCaptionElement>;
|
|
518
|
+
cite: JSXBase.HTMLAttributes;
|
|
519
|
+
code: JSXBase.HTMLAttributes;
|
|
520
|
+
col: JSXBase.ColHTMLAttributes<HTMLTableColElement>;
|
|
521
|
+
colgroup: JSXBase.ColgroupHTMLAttributes<HTMLTableColElement>;
|
|
522
|
+
data: JSXBase.HTMLAttributes<HTMLDataElement>;
|
|
523
|
+
datalist: JSXBase.HTMLAttributes<HTMLDataListElement>;
|
|
524
|
+
dd: JSXBase.HTMLAttributes;
|
|
525
|
+
del: JSXBase.DelHTMLAttributes<HTMLModElement>;
|
|
526
|
+
details: JSXBase.DetailsHTMLAttributes<HTMLElement>;
|
|
527
|
+
dfn: JSXBase.HTMLAttributes;
|
|
528
|
+
dialog: JSXBase.DialogHTMLAttributes<HTMLDialogElement>;
|
|
529
|
+
div: JSXBase.HTMLAttributes<HTMLDivElement>;
|
|
530
|
+
dl: JSXBase.HTMLAttributes<HTMLDListElement>;
|
|
531
|
+
dt: JSXBase.HTMLAttributes;
|
|
532
|
+
em: JSXBase.HTMLAttributes;
|
|
533
|
+
embed: JSXBase.EmbedHTMLAttributes<HTMLEmbedElement>;
|
|
534
|
+
fieldset: JSXBase.FieldsetHTMLAttributes<HTMLFieldSetElement>;
|
|
535
|
+
figcaption: JSXBase.HTMLAttributes;
|
|
536
|
+
figure: JSXBase.HTMLAttributes;
|
|
537
|
+
footer: JSXBase.HTMLAttributes;
|
|
538
|
+
form: JSXBase.FormHTMLAttributes<HTMLFormElement>;
|
|
539
|
+
h1: JSXBase.HTMLAttributes<HTMLHeadingElement>;
|
|
540
|
+
h2: JSXBase.HTMLAttributes<HTMLHeadingElement>;
|
|
541
|
+
h3: JSXBase.HTMLAttributes<HTMLHeadingElement>;
|
|
542
|
+
h4: JSXBase.HTMLAttributes<HTMLHeadingElement>;
|
|
543
|
+
h5: JSXBase.HTMLAttributes<HTMLHeadingElement>;
|
|
544
|
+
h6: JSXBase.HTMLAttributes<HTMLHeadingElement>;
|
|
545
|
+
head: JSXBase.HTMLAttributes<HTMLHeadElement>;
|
|
546
|
+
header: JSXBase.HTMLAttributes;
|
|
547
|
+
hgroup: JSXBase.HTMLAttributes;
|
|
548
|
+
hr: JSXBase.HTMLAttributes<HTMLHRElement>;
|
|
549
|
+
html: JSXBase.HTMLAttributes<HTMLHtmlElement>;
|
|
550
|
+
i: JSXBase.HTMLAttributes;
|
|
551
|
+
iframe: JSXBase.IframeHTMLAttributes<HTMLIFrameElement>;
|
|
552
|
+
img: JSXBase.ImgHTMLAttributes<HTMLImageElement>;
|
|
553
|
+
input: JSXBase.InputHTMLAttributes<HTMLInputElement>;
|
|
554
|
+
ins: JSXBase.InsHTMLAttributes<HTMLModElement>;
|
|
555
|
+
kbd: JSXBase.HTMLAttributes;
|
|
556
|
+
keygen: JSXBase.KeygenHTMLAttributes<HTMLElement>;
|
|
557
|
+
label: JSXBase.LabelHTMLAttributes<HTMLLabelElement>;
|
|
558
|
+
legend: JSXBase.HTMLAttributes<HTMLLegendElement>;
|
|
559
|
+
li: JSXBase.LiHTMLAttributes<HTMLLIElement>;
|
|
560
|
+
link: JSXBase.LinkHTMLAttributes<HTMLLinkElement>;
|
|
561
|
+
main: JSXBase.HTMLAttributes;
|
|
562
|
+
map: JSXBase.MapHTMLAttributes<HTMLMapElement>;
|
|
563
|
+
mark: JSXBase.HTMLAttributes;
|
|
564
|
+
menu: JSXBase.MenuHTMLAttributes<HTMLMenuElement>;
|
|
565
|
+
menuitem: JSXBase.HTMLAttributes;
|
|
566
|
+
meta: JSXBase.MetaHTMLAttributes<HTMLMetaElement>;
|
|
567
|
+
meter: JSXBase.MeterHTMLAttributes<HTMLMeterElement>;
|
|
568
|
+
nav: JSXBase.HTMLAttributes;
|
|
569
|
+
noscript: JSXBase.HTMLAttributes;
|
|
570
|
+
object: JSXBase.ObjectHTMLAttributes<HTMLObjectElement>;
|
|
571
|
+
ol: JSXBase.OlHTMLAttributes<HTMLOListElement>;
|
|
572
|
+
optgroup: JSXBase.OptgroupHTMLAttributes<HTMLOptGroupElement>;
|
|
573
|
+
option: JSXBase.OptionHTMLAttributes<HTMLOptionElement>;
|
|
574
|
+
output: JSXBase.OutputHTMLAttributes<HTMLOutputElement>;
|
|
575
|
+
p: JSXBase.HTMLAttributes<HTMLParagraphElement>;
|
|
576
|
+
param: JSXBase.ParamHTMLAttributes<HTMLParamElement>;
|
|
577
|
+
picture: JSXBase.HTMLAttributes<HTMLPictureElement>;
|
|
578
|
+
pre: JSXBase.HTMLAttributes<HTMLPreElement>;
|
|
579
|
+
progress: JSXBase.ProgressHTMLAttributes<HTMLProgressElement>;
|
|
580
|
+
q: JSXBase.QuoteHTMLAttributes<HTMLQuoteElement>;
|
|
581
|
+
rp: JSXBase.HTMLAttributes;
|
|
582
|
+
rt: JSXBase.HTMLAttributes;
|
|
583
|
+
ruby: JSXBase.HTMLAttributes;
|
|
584
|
+
s: JSXBase.HTMLAttributes;
|
|
585
|
+
samp: JSXBase.HTMLAttributes;
|
|
586
|
+
script: JSXBase.ScriptHTMLAttributes<HTMLScriptElement>;
|
|
587
|
+
section: JSXBase.HTMLAttributes;
|
|
588
|
+
select: JSXBase.SelectHTMLAttributes<HTMLSelectElement>;
|
|
589
|
+
small: JSXBase.HTMLAttributes;
|
|
590
|
+
source: JSXBase.SourceHTMLAttributes<HTMLSourceElement>;
|
|
591
|
+
span: JSXBase.HTMLAttributes<HTMLSpanElement>;
|
|
592
|
+
strong: JSXBase.HTMLAttributes;
|
|
593
|
+
style: JSXBase.StyleHTMLAttributes<HTMLStyleElement>;
|
|
594
|
+
sub: JSXBase.HTMLAttributes;
|
|
595
|
+
summary: JSXBase.HTMLAttributes;
|
|
596
|
+
sup: JSXBase.HTMLAttributes;
|
|
597
|
+
table: JSXBase.TableHTMLAttributes<HTMLTableElement>;
|
|
598
|
+
tbody: JSXBase.HTMLAttributes<HTMLTableSectionElement>;
|
|
599
|
+
td: JSXBase.TdHTMLAttributes<HTMLTableDataCellElement>;
|
|
600
|
+
textarea: JSXBase.TextareaHTMLAttributes<HTMLTextAreaElement>;
|
|
601
|
+
tfoot: JSXBase.HTMLAttributes<HTMLTableSectionElement>;
|
|
602
|
+
th: JSXBase.ThHTMLAttributes<HTMLTableHeaderCellElement>;
|
|
603
|
+
thead: JSXBase.HTMLAttributes<HTMLTableSectionElement>;
|
|
604
|
+
time: JSXBase.TimeHTMLAttributes<HTMLTimeElement>;
|
|
605
|
+
title: JSXBase.HTMLAttributes<HTMLTitleElement>;
|
|
606
|
+
tr: JSXBase.HTMLAttributes<HTMLTableRowElement>;
|
|
607
|
+
track: JSXBase.TrackHTMLAttributes<HTMLTrackElement>;
|
|
608
|
+
u: JSXBase.HTMLAttributes;
|
|
609
|
+
ul: JSXBase.HTMLAttributes<HTMLUListElement>;
|
|
610
|
+
var: JSXBase.HTMLAttributes;
|
|
611
|
+
video: JSXBase.VideoHTMLAttributes<HTMLVideoElement>;
|
|
612
|
+
wbr: JSXBase.HTMLAttributes;
|
|
613
|
+
animate: JSXBase.SVGAttributes;
|
|
614
|
+
circle: JSXBase.SVGAttributes;
|
|
615
|
+
clipPath: JSXBase.SVGAttributes;
|
|
616
|
+
defs: JSXBase.SVGAttributes;
|
|
617
|
+
desc: JSXBase.SVGAttributes;
|
|
618
|
+
ellipse: JSXBase.SVGAttributes;
|
|
619
|
+
feBlend: JSXBase.SVGAttributes;
|
|
620
|
+
feColorMatrix: JSXBase.SVGAttributes;
|
|
621
|
+
feComponentTransfer: JSXBase.SVGAttributes;
|
|
622
|
+
feComposite: JSXBase.SVGAttributes;
|
|
623
|
+
feConvolveMatrix: JSXBase.SVGAttributes;
|
|
624
|
+
feDiffuseLighting: JSXBase.SVGAttributes;
|
|
625
|
+
feDisplacementMap: JSXBase.SVGAttributes;
|
|
626
|
+
feDistantLight: JSXBase.SVGAttributes;
|
|
627
|
+
feDropShadow: JSXBase.SVGAttributes;
|
|
628
|
+
feFlood: JSXBase.SVGAttributes;
|
|
629
|
+
feFuncA: JSXBase.SVGAttributes;
|
|
630
|
+
feFuncB: JSXBase.SVGAttributes;
|
|
631
|
+
feFuncG: JSXBase.SVGAttributes;
|
|
632
|
+
feFuncR: JSXBase.SVGAttributes;
|
|
633
|
+
feGaussianBlur: JSXBase.SVGAttributes;
|
|
634
|
+
feImage: JSXBase.SVGAttributes;
|
|
635
|
+
feMerge: JSXBase.SVGAttributes;
|
|
636
|
+
feMergeNode: JSXBase.SVGAttributes;
|
|
637
|
+
feMorphology: JSXBase.SVGAttributes;
|
|
638
|
+
feOffset: JSXBase.SVGAttributes;
|
|
639
|
+
fePointLight: JSXBase.SVGAttributes;
|
|
640
|
+
feSpecularLighting: JSXBase.SVGAttributes;
|
|
641
|
+
feSpotLight: JSXBase.SVGAttributes;
|
|
642
|
+
feTile: JSXBase.SVGAttributes;
|
|
643
|
+
feTurbulence: JSXBase.SVGAttributes;
|
|
644
|
+
filter: JSXBase.SVGAttributes;
|
|
645
|
+
foreignObject: JSXBase.SVGAttributes;
|
|
646
|
+
g: JSXBase.SVGAttributes;
|
|
647
|
+
image: JSXBase.SVGAttributes;
|
|
648
|
+
line: JSXBase.SVGAttributes;
|
|
649
|
+
linearGradient: JSXBase.SVGAttributes;
|
|
650
|
+
marker: JSXBase.SVGAttributes;
|
|
651
|
+
mask: JSXBase.SVGAttributes;
|
|
652
|
+
metadata: JSXBase.SVGAttributes;
|
|
653
|
+
path: JSXBase.SVGAttributes;
|
|
654
|
+
pattern: JSXBase.SVGAttributes;
|
|
655
|
+
polygon: JSXBase.SVGAttributes;
|
|
656
|
+
polyline: JSXBase.SVGAttributes;
|
|
657
|
+
radialGradient: JSXBase.SVGAttributes;
|
|
658
|
+
rect: JSXBase.SVGAttributes;
|
|
659
|
+
stop: JSXBase.SVGAttributes;
|
|
660
|
+
svg: JSXBase.SVGAttributes;
|
|
661
|
+
switch: JSXBase.SVGAttributes;
|
|
662
|
+
symbol: JSXBase.SVGAttributes;
|
|
663
|
+
text: JSXBase.SVGAttributes;
|
|
664
|
+
textPath: JSXBase.SVGAttributes;
|
|
665
|
+
tspan: JSXBase.SVGAttributes;
|
|
666
|
+
use: JSXBase.SVGAttributes;
|
|
667
|
+
view: JSXBase.SVGAttributes;
|
|
668
|
+
}
|
|
669
|
+
interface SlotAttributes {
|
|
670
|
+
name?: string;
|
|
671
|
+
slot?: string;
|
|
672
|
+
onSlotchange?: (event: Event) => void;
|
|
673
|
+
}
|
|
674
|
+
interface AnchorHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
675
|
+
download?: any;
|
|
676
|
+
href?: string;
|
|
677
|
+
hrefLang?: string;
|
|
678
|
+
hreflang?: string;
|
|
679
|
+
media?: string;
|
|
680
|
+
rel?: string;
|
|
681
|
+
target?: string;
|
|
682
|
+
referrerPolicy?: ReferrerPolicy;
|
|
683
|
+
}
|
|
684
|
+
interface AudioHTMLAttributes<T> extends MediaHTMLAttributes<T> {
|
|
685
|
+
}
|
|
686
|
+
interface AreaHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
687
|
+
alt?: string;
|
|
688
|
+
coords?: string;
|
|
689
|
+
download?: any;
|
|
690
|
+
href?: string;
|
|
691
|
+
hrefLang?: string;
|
|
692
|
+
hreflang?: string;
|
|
693
|
+
media?: string;
|
|
694
|
+
rel?: string;
|
|
695
|
+
shape?: string;
|
|
696
|
+
target?: string;
|
|
697
|
+
}
|
|
698
|
+
interface BaseHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
699
|
+
href?: string;
|
|
700
|
+
target?: string;
|
|
701
|
+
}
|
|
702
|
+
interface BlockquoteHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
703
|
+
cite?: string;
|
|
704
|
+
}
|
|
705
|
+
interface ButtonHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
706
|
+
autoFocus?: boolean;
|
|
707
|
+
disabled?: boolean;
|
|
708
|
+
form?: string;
|
|
709
|
+
formAction?: string;
|
|
710
|
+
formaction?: string;
|
|
711
|
+
formEncType?: string;
|
|
712
|
+
formenctype?: string;
|
|
713
|
+
formMethod?: string;
|
|
714
|
+
formmethod?: string;
|
|
715
|
+
formNoValidate?: boolean;
|
|
716
|
+
formnovalidate?: boolean;
|
|
717
|
+
formTarget?: string;
|
|
718
|
+
formtarget?: string;
|
|
719
|
+
name?: string;
|
|
720
|
+
type?: string;
|
|
721
|
+
value?: string | string[] | number;
|
|
722
|
+
}
|
|
723
|
+
interface CanvasHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
724
|
+
height?: number | string;
|
|
725
|
+
width?: number | string;
|
|
726
|
+
}
|
|
727
|
+
interface ColHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
728
|
+
span?: number;
|
|
729
|
+
}
|
|
730
|
+
interface ColgroupHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
731
|
+
span?: number;
|
|
732
|
+
}
|
|
733
|
+
interface DetailsHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
734
|
+
open?: boolean;
|
|
735
|
+
onToggle?: (event: Event) => void;
|
|
736
|
+
}
|
|
737
|
+
interface DelHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
738
|
+
cite?: string;
|
|
739
|
+
dateTime?: string;
|
|
740
|
+
datetime?: string;
|
|
741
|
+
}
|
|
742
|
+
interface DialogHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
743
|
+
onClose?: (event: Event) => void;
|
|
744
|
+
open?: boolean;
|
|
745
|
+
returnValue?: string;
|
|
746
|
+
}
|
|
747
|
+
interface EmbedHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
748
|
+
height?: number | string;
|
|
749
|
+
src?: string;
|
|
750
|
+
type?: string;
|
|
751
|
+
width?: number | string;
|
|
752
|
+
}
|
|
753
|
+
interface FieldsetHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
754
|
+
disabled?: boolean;
|
|
755
|
+
form?: string;
|
|
756
|
+
name?: string;
|
|
757
|
+
}
|
|
758
|
+
interface FormHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
759
|
+
acceptCharset?: string;
|
|
760
|
+
acceptcharset?: string;
|
|
761
|
+
action?: string;
|
|
762
|
+
autoComplete?: string;
|
|
763
|
+
autocomplete?: string;
|
|
764
|
+
encType?: string;
|
|
765
|
+
enctype?: string;
|
|
766
|
+
method?: string;
|
|
767
|
+
name?: string;
|
|
768
|
+
noValidate?: boolean;
|
|
769
|
+
novalidate?: boolean | string;
|
|
770
|
+
target?: string;
|
|
771
|
+
}
|
|
772
|
+
interface HtmlHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
773
|
+
manifest?: string;
|
|
774
|
+
}
|
|
775
|
+
interface IframeHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
776
|
+
allow?: string;
|
|
777
|
+
allowFullScreen?: boolean;
|
|
778
|
+
allowfullScreen?: string | boolean;
|
|
779
|
+
allowTransparency?: boolean;
|
|
780
|
+
allowtransparency?: string | boolean;
|
|
781
|
+
frameBorder?: number | string;
|
|
782
|
+
frameborder?: number | string;
|
|
783
|
+
importance?: 'low' | 'auto' | 'high';
|
|
784
|
+
height?: number | string;
|
|
785
|
+
loading?: 'lazy' | 'auto' | 'eager';
|
|
786
|
+
marginHeight?: number;
|
|
787
|
+
marginheight?: string | number;
|
|
788
|
+
marginWidth?: number;
|
|
789
|
+
marginwidth?: string | number;
|
|
790
|
+
name?: string;
|
|
791
|
+
referrerPolicy?: ReferrerPolicy;
|
|
792
|
+
sandbox?: string;
|
|
793
|
+
scrolling?: string;
|
|
794
|
+
seamless?: boolean;
|
|
795
|
+
src?: string;
|
|
796
|
+
srcDoc?: string;
|
|
797
|
+
srcdoc?: string;
|
|
798
|
+
width?: number | string;
|
|
799
|
+
}
|
|
800
|
+
interface ImgHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
801
|
+
alt?: string;
|
|
802
|
+
decoding?: 'async' | 'auto' | 'sync';
|
|
803
|
+
importance?: 'low' | 'auto' | 'high';
|
|
804
|
+
height?: number | string;
|
|
805
|
+
loading?: 'lazy' | 'auto' | 'eager';
|
|
806
|
+
sizes?: string;
|
|
807
|
+
src?: string;
|
|
808
|
+
srcSet?: string;
|
|
809
|
+
srcset?: string;
|
|
810
|
+
useMap?: string;
|
|
811
|
+
usemap?: string;
|
|
812
|
+
width?: number | string;
|
|
813
|
+
}
|
|
814
|
+
interface InsHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
815
|
+
cite?: string;
|
|
816
|
+
dateTime?: string;
|
|
817
|
+
datetime?: string;
|
|
818
|
+
}
|
|
819
|
+
interface InputHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
820
|
+
accept?: string;
|
|
821
|
+
allowdirs?: boolean;
|
|
822
|
+
alt?: string;
|
|
823
|
+
autoCapitalize?: any;
|
|
824
|
+
autocapitalize?: any;
|
|
825
|
+
autoComplete?: string;
|
|
826
|
+
autocomplete?: string;
|
|
827
|
+
autoFocus?: boolean;
|
|
828
|
+
autofocus?: boolean | string;
|
|
829
|
+
capture?: string;
|
|
830
|
+
checked?: boolean;
|
|
831
|
+
crossOrigin?: string;
|
|
832
|
+
crossorigin?: string;
|
|
833
|
+
defaultChecked?: boolean;
|
|
834
|
+
defaultValue?: string;
|
|
835
|
+
dirName?: string;
|
|
836
|
+
disabled?: boolean;
|
|
837
|
+
files?: any;
|
|
838
|
+
form?: string;
|
|
839
|
+
formAction?: string;
|
|
840
|
+
formaction?: string;
|
|
841
|
+
formEncType?: string;
|
|
842
|
+
formenctype?: string;
|
|
843
|
+
formMethod?: string;
|
|
844
|
+
formmethod?: string;
|
|
845
|
+
formNoValidate?: boolean;
|
|
846
|
+
formnovalidate?: boolean;
|
|
847
|
+
formTarget?: string;
|
|
848
|
+
formtarget?: string;
|
|
849
|
+
height?: number | string;
|
|
850
|
+
indeterminate?: boolean;
|
|
851
|
+
list?: string;
|
|
852
|
+
max?: number | string;
|
|
853
|
+
maxLength?: number;
|
|
854
|
+
maxlength?: number | string;
|
|
855
|
+
min?: number | string;
|
|
856
|
+
minLength?: number;
|
|
857
|
+
minlength?: number | string;
|
|
858
|
+
multiple?: boolean;
|
|
859
|
+
name?: string;
|
|
860
|
+
pattern?: string;
|
|
861
|
+
placeholder?: string;
|
|
862
|
+
readOnly?: boolean;
|
|
863
|
+
readonly?: boolean | string;
|
|
864
|
+
required?: boolean;
|
|
865
|
+
selectionStart?: number | string;
|
|
866
|
+
selectionEnd?: number | string;
|
|
867
|
+
selectionDirection?: string;
|
|
868
|
+
size?: number;
|
|
869
|
+
src?: string;
|
|
870
|
+
step?: number | string;
|
|
871
|
+
type?: string;
|
|
872
|
+
value?: string | string[] | number;
|
|
873
|
+
valueAsDate?: any;
|
|
874
|
+
valueAsNumber?: any;
|
|
875
|
+
webkitdirectory?: boolean;
|
|
876
|
+
webkitEntries?: any;
|
|
877
|
+
width?: number | string;
|
|
878
|
+
}
|
|
879
|
+
interface KeygenHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
880
|
+
autoFocus?: boolean;
|
|
881
|
+
autofocus?: boolean | string;
|
|
882
|
+
challenge?: string;
|
|
883
|
+
disabled?: boolean;
|
|
884
|
+
form?: string;
|
|
885
|
+
keyType?: string;
|
|
886
|
+
keytype?: string;
|
|
887
|
+
keyParams?: string;
|
|
888
|
+
keyparams?: string;
|
|
889
|
+
name?: string;
|
|
890
|
+
}
|
|
891
|
+
interface LabelHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
892
|
+
form?: string;
|
|
893
|
+
htmlFor?: string;
|
|
894
|
+
htmlfor?: string;
|
|
895
|
+
}
|
|
896
|
+
interface LiHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
897
|
+
value?: string | string[] | number;
|
|
898
|
+
}
|
|
899
|
+
interface LinkHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
900
|
+
as?: string;
|
|
901
|
+
href?: string;
|
|
902
|
+
hrefLang?: string;
|
|
903
|
+
hreflang?: string;
|
|
904
|
+
importance?: 'low' | 'auto' | 'high';
|
|
905
|
+
integrity?: string;
|
|
906
|
+
media?: string;
|
|
907
|
+
rel?: string;
|
|
908
|
+
sizes?: string;
|
|
909
|
+
type?: string;
|
|
910
|
+
}
|
|
911
|
+
interface MapHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
912
|
+
name?: string;
|
|
913
|
+
}
|
|
914
|
+
interface MenuHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
915
|
+
type?: string;
|
|
916
|
+
}
|
|
917
|
+
interface MediaHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
918
|
+
autoPlay?: boolean;
|
|
919
|
+
autoplay?: boolean | string;
|
|
920
|
+
controls?: boolean;
|
|
921
|
+
crossOrigin?: string;
|
|
922
|
+
crossorigin?: string;
|
|
923
|
+
loop?: boolean;
|
|
924
|
+
mediaGroup?: string;
|
|
925
|
+
mediagroup?: string;
|
|
926
|
+
muted?: boolean;
|
|
927
|
+
preload?: string;
|
|
928
|
+
src?: string;
|
|
929
|
+
onAbort?: (event: Event) => void;
|
|
930
|
+
onCanPlay?: (event: Event) => void;
|
|
931
|
+
onCanPlayThrough?: (event: Event) => void;
|
|
932
|
+
onDurationChange?: (event: Event) => void;
|
|
933
|
+
onEmptied?: (event: Event) => void;
|
|
934
|
+
onEnded?: (event: Event) => void;
|
|
935
|
+
onError?: (event: Event) => void;
|
|
936
|
+
onInterruptBegin?: (event: Event) => void;
|
|
937
|
+
onInterruptEnd?: (event: Event) => void;
|
|
938
|
+
onLoadedData?: (event: Event) => void;
|
|
939
|
+
onLoadedMetaData?: (event: Event) => void;
|
|
940
|
+
onLoadStart?: (event: Event) => void;
|
|
941
|
+
onMozAudioAvailable?: (event: Event) => void;
|
|
942
|
+
onPause?: (event: Event) => void;
|
|
943
|
+
onPlay?: (event: Event) => void;
|
|
944
|
+
onPlaying?: (event: Event) => void;
|
|
945
|
+
onProgress?: (event: Event) => void;
|
|
946
|
+
onRateChange?: (event: Event) => void;
|
|
947
|
+
onSeeked?: (event: Event) => void;
|
|
948
|
+
onSeeking?: (event: Event) => void;
|
|
949
|
+
onStalled?: (event: Event) => void;
|
|
950
|
+
onSuspend?: (event: Event) => void;
|
|
951
|
+
onTimeUpdate?: (event: Event) => void;
|
|
952
|
+
onVolumeChange?: (event: Event) => void;
|
|
953
|
+
onWaiting?: (event: Event) => void;
|
|
954
|
+
}
|
|
955
|
+
interface MetaHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
956
|
+
charSet?: string;
|
|
957
|
+
charset?: string;
|
|
958
|
+
content?: string;
|
|
959
|
+
httpEquiv?: string;
|
|
960
|
+
httpequiv?: string;
|
|
961
|
+
name?: string;
|
|
962
|
+
}
|
|
963
|
+
interface MeterHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
964
|
+
form?: string;
|
|
965
|
+
high?: number;
|
|
966
|
+
low?: number;
|
|
967
|
+
max?: number | string;
|
|
968
|
+
min?: number | string;
|
|
969
|
+
optimum?: number;
|
|
970
|
+
value?: string | string[] | number;
|
|
971
|
+
}
|
|
972
|
+
interface QuoteHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
973
|
+
cite?: string;
|
|
974
|
+
}
|
|
975
|
+
interface ObjectHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
976
|
+
classID?: string;
|
|
977
|
+
classid?: string;
|
|
978
|
+
data?: string;
|
|
979
|
+
form?: string;
|
|
980
|
+
height?: number | string;
|
|
981
|
+
name?: string;
|
|
982
|
+
type?: string;
|
|
983
|
+
useMap?: string;
|
|
984
|
+
usemap?: string;
|
|
985
|
+
width?: number | string;
|
|
986
|
+
wmode?: string;
|
|
987
|
+
}
|
|
988
|
+
interface OlHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
989
|
+
reversed?: boolean;
|
|
990
|
+
start?: number;
|
|
991
|
+
}
|
|
992
|
+
interface OptgroupHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
993
|
+
disabled?: boolean;
|
|
994
|
+
label?: string;
|
|
995
|
+
}
|
|
996
|
+
interface OptionHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
997
|
+
disabled?: boolean;
|
|
998
|
+
label?: string;
|
|
999
|
+
selected?: boolean;
|
|
1000
|
+
value?: string | string[] | number;
|
|
1001
|
+
}
|
|
1002
|
+
interface OutputHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
1003
|
+
form?: string;
|
|
1004
|
+
htmlFor?: string;
|
|
1005
|
+
htmlfor?: string;
|
|
1006
|
+
name?: string;
|
|
1007
|
+
}
|
|
1008
|
+
interface ParamHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
1009
|
+
name?: string;
|
|
1010
|
+
value?: string | string[] | number;
|
|
1011
|
+
}
|
|
1012
|
+
interface ProgressHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
1013
|
+
max?: number | string;
|
|
1014
|
+
value?: string | string[] | number;
|
|
1015
|
+
}
|
|
1016
|
+
interface ScriptHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
1017
|
+
async?: boolean;
|
|
1018
|
+
charSet?: string;
|
|
1019
|
+
charset?: string;
|
|
1020
|
+
crossOrigin?: string;
|
|
1021
|
+
crossorigin?: string;
|
|
1022
|
+
defer?: boolean;
|
|
1023
|
+
importance?: 'low' | 'auto' | 'high';
|
|
1024
|
+
integrity?: string;
|
|
1025
|
+
nonce?: string;
|
|
1026
|
+
src?: string;
|
|
1027
|
+
type?: string;
|
|
1028
|
+
}
|
|
1029
|
+
interface SelectHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
1030
|
+
autoFocus?: boolean;
|
|
1031
|
+
disabled?: boolean;
|
|
1032
|
+
form?: string;
|
|
1033
|
+
multiple?: boolean;
|
|
1034
|
+
name?: string;
|
|
1035
|
+
required?: boolean;
|
|
1036
|
+
size?: number;
|
|
1037
|
+
autoComplete?: string;
|
|
1038
|
+
autocomplete?: string;
|
|
1039
|
+
}
|
|
1040
|
+
interface SourceHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
1041
|
+
media?: string;
|
|
1042
|
+
sizes?: string;
|
|
1043
|
+
src?: string;
|
|
1044
|
+
srcSet?: string;
|
|
1045
|
+
type?: string;
|
|
1046
|
+
}
|
|
1047
|
+
interface StyleHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
1048
|
+
media?: string;
|
|
1049
|
+
nonce?: string;
|
|
1050
|
+
scoped?: boolean;
|
|
1051
|
+
type?: string;
|
|
1052
|
+
}
|
|
1053
|
+
interface TableHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
1054
|
+
cellPadding?: number | string;
|
|
1055
|
+
cellpadding?: number | string;
|
|
1056
|
+
cellSpacing?: number | string;
|
|
1057
|
+
cellspacing?: number | string;
|
|
1058
|
+
summary?: string;
|
|
1059
|
+
}
|
|
1060
|
+
interface TextareaHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
1061
|
+
autoFocus?: boolean;
|
|
1062
|
+
autofocus?: boolean | string;
|
|
1063
|
+
cols?: number;
|
|
1064
|
+
disabled?: boolean;
|
|
1065
|
+
form?: string;
|
|
1066
|
+
maxLength?: number;
|
|
1067
|
+
maxlength?: number | string;
|
|
1068
|
+
minLength?: number;
|
|
1069
|
+
minlength?: number | string;
|
|
1070
|
+
name?: string;
|
|
1071
|
+
placeholder?: string;
|
|
1072
|
+
readOnly?: boolean;
|
|
1073
|
+
readonly?: boolean | string;
|
|
1074
|
+
required?: boolean;
|
|
1075
|
+
rows?: number;
|
|
1076
|
+
value?: string | string[] | number;
|
|
1077
|
+
wrap?: string;
|
|
1078
|
+
}
|
|
1079
|
+
interface TdHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
1080
|
+
colSpan?: number;
|
|
1081
|
+
headers?: string;
|
|
1082
|
+
rowSpan?: number;
|
|
1083
|
+
}
|
|
1084
|
+
interface ThHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
1085
|
+
abbr?: string;
|
|
1086
|
+
colSpan?: number;
|
|
1087
|
+
headers?: string;
|
|
1088
|
+
rowSpan?: number;
|
|
1089
|
+
rowspan?: number | string;
|
|
1090
|
+
scope?: string;
|
|
1091
|
+
}
|
|
1092
|
+
interface TimeHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
1093
|
+
dateTime?: string;
|
|
1094
|
+
}
|
|
1095
|
+
interface TrackHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
1096
|
+
default?: boolean;
|
|
1097
|
+
kind?: string;
|
|
1098
|
+
label?: string;
|
|
1099
|
+
src?: string;
|
|
1100
|
+
srcLang?: string;
|
|
1101
|
+
srclang?: string;
|
|
1102
|
+
}
|
|
1103
|
+
interface VideoHTMLAttributes<T> extends MediaHTMLAttributes<T> {
|
|
1104
|
+
height?: number | string;
|
|
1105
|
+
playsInline?: boolean;
|
|
1106
|
+
playsinline?: boolean | string;
|
|
1107
|
+
poster?: string;
|
|
1108
|
+
width?: number | string;
|
|
1109
|
+
}
|
|
1110
|
+
interface HTMLAttributes<T = HTMLElement> extends DOMAttributes<T> {
|
|
1111
|
+
innerHTML?: string;
|
|
1112
|
+
accessKey?: string;
|
|
1113
|
+
class?: string | {
|
|
1114
|
+
[className: string]: boolean;
|
|
1115
|
+
};
|
|
1116
|
+
contentEditable?: boolean | string;
|
|
1117
|
+
contenteditable?: boolean | string;
|
|
1118
|
+
contextMenu?: string;
|
|
1119
|
+
contextmenu?: string;
|
|
1120
|
+
dir?: string;
|
|
1121
|
+
draggable?: boolean;
|
|
1122
|
+
hidden?: boolean;
|
|
1123
|
+
id?: string;
|
|
1124
|
+
lang?: string;
|
|
1125
|
+
spellcheck?: 'true' | 'false' | any;
|
|
1126
|
+
style?: {
|
|
1127
|
+
[key: string]: string | undefined;
|
|
1128
|
+
};
|
|
1129
|
+
tabIndex?: number;
|
|
1130
|
+
tabindex?: number | string;
|
|
1131
|
+
title?: string;
|
|
1132
|
+
inputMode?: string;
|
|
1133
|
+
inputmode?: string;
|
|
1134
|
+
enterKeyHint?: string;
|
|
1135
|
+
enterkeyhint?: string;
|
|
1136
|
+
is?: string;
|
|
1137
|
+
radioGroup?: string;
|
|
1138
|
+
radiogroup?: string;
|
|
1139
|
+
role?: string;
|
|
1140
|
+
about?: string;
|
|
1141
|
+
datatype?: string;
|
|
1142
|
+
inlist?: any;
|
|
1143
|
+
prefix?: string;
|
|
1144
|
+
property?: string;
|
|
1145
|
+
resource?: string;
|
|
1146
|
+
typeof?: string;
|
|
1147
|
+
vocab?: string;
|
|
1148
|
+
autoCapitalize?: any;
|
|
1149
|
+
autocapitalize?: any;
|
|
1150
|
+
autoCorrect?: string;
|
|
1151
|
+
autocorrect?: string;
|
|
1152
|
+
autoSave?: string;
|
|
1153
|
+
autosave?: string;
|
|
1154
|
+
color?: string;
|
|
1155
|
+
itemProp?: string;
|
|
1156
|
+
itemprop?: string;
|
|
1157
|
+
itemScope?: boolean;
|
|
1158
|
+
itemscope?: boolean;
|
|
1159
|
+
itemType?: string;
|
|
1160
|
+
itemtype?: string;
|
|
1161
|
+
itemID?: string;
|
|
1162
|
+
itemid?: string;
|
|
1163
|
+
itemRef?: string;
|
|
1164
|
+
itemref?: string;
|
|
1165
|
+
results?: number;
|
|
1166
|
+
security?: string;
|
|
1167
|
+
unselectable?: boolean;
|
|
1168
|
+
}
|
|
1169
|
+
interface SVGAttributes<T = SVGElement> extends DOMAttributes<T> {
|
|
1170
|
+
class?: string | {
|
|
1171
|
+
[className: string]: boolean;
|
|
1172
|
+
};
|
|
1173
|
+
color?: string;
|
|
1174
|
+
height?: number | string;
|
|
1175
|
+
id?: string;
|
|
1176
|
+
lang?: string;
|
|
1177
|
+
max?: number | string;
|
|
1178
|
+
media?: string;
|
|
1179
|
+
method?: string;
|
|
1180
|
+
min?: number | string;
|
|
1181
|
+
name?: string;
|
|
1182
|
+
style?: {
|
|
1183
|
+
[key: string]: string | undefined;
|
|
1184
|
+
};
|
|
1185
|
+
target?: string;
|
|
1186
|
+
type?: string;
|
|
1187
|
+
width?: number | string;
|
|
1188
|
+
role?: string;
|
|
1189
|
+
tabindex?: number;
|
|
1190
|
+
'accent-height'?: number | string;
|
|
1191
|
+
accumulate?: 'none' | 'sum';
|
|
1192
|
+
additive?: 'replace' | 'sum';
|
|
1193
|
+
'alignment-baseline'?: 'auto' | 'baseline' | 'before-edge' | 'text-before-edge' | 'middle' | 'central' | 'after-edge' | 'text-after-edge' | 'ideographic' | 'alphabetic' | 'hanging' | 'mathematical' | 'inherit';
|
|
1194
|
+
allowReorder?: 'no' | 'yes';
|
|
1195
|
+
alphabetic?: number | string;
|
|
1196
|
+
amplitude?: number | string;
|
|
1197
|
+
'arabic-form'?: 'initial' | 'medial' | 'terminal' | 'isolated';
|
|
1198
|
+
ascent?: number | string;
|
|
1199
|
+
attributeName?: string;
|
|
1200
|
+
attributeType?: string;
|
|
1201
|
+
autoReverse?: number | string;
|
|
1202
|
+
azimuth?: number | string;
|
|
1203
|
+
baseFrequency?: number | string;
|
|
1204
|
+
'baseline-shift'?: number | string;
|
|
1205
|
+
baseProfile?: number | string;
|
|
1206
|
+
bbox?: number | string;
|
|
1207
|
+
begin?: number | string;
|
|
1208
|
+
bias?: number | string;
|
|
1209
|
+
by?: number | string;
|
|
1210
|
+
calcMode?: number | string;
|
|
1211
|
+
'cap-height'?: number | string;
|
|
1212
|
+
clip?: number | string;
|
|
1213
|
+
'clip-path'?: string;
|
|
1214
|
+
clipPathUnits?: number | string;
|
|
1215
|
+
'clip-rule'?: number | string;
|
|
1216
|
+
'color-interpolation'?: number | string;
|
|
1217
|
+
'color-interpolation-filters'?: 'auto' | 's-rGB' | 'linear-rGB' | 'inherit';
|
|
1218
|
+
'color-profile'?: number | string;
|
|
1219
|
+
'color-rendering'?: number | string;
|
|
1220
|
+
contentScriptType?: number | string;
|
|
1221
|
+
contentStyleType?: number | string;
|
|
1222
|
+
cursor?: number | string;
|
|
1223
|
+
cx?: number | string;
|
|
1224
|
+
cy?: number | string;
|
|
1225
|
+
d?: string;
|
|
1226
|
+
decelerate?: number | string;
|
|
1227
|
+
descent?: number | string;
|
|
1228
|
+
diffuseConstant?: number | string;
|
|
1229
|
+
direction?: number | string;
|
|
1230
|
+
display?: number | string;
|
|
1231
|
+
divisor?: number | string;
|
|
1232
|
+
'dominant-baseline'?: number | string;
|
|
1233
|
+
dur?: number | string;
|
|
1234
|
+
dx?: number | string;
|
|
1235
|
+
dy?: number | string;
|
|
1236
|
+
'edge-mode'?: number | string;
|
|
1237
|
+
elevation?: number | string;
|
|
1238
|
+
'enable-background'?: number | string;
|
|
1239
|
+
end?: number | string;
|
|
1240
|
+
exponent?: number | string;
|
|
1241
|
+
externalResourcesRequired?: number | string;
|
|
1242
|
+
fill?: string;
|
|
1243
|
+
'fill-opacity'?: number | string;
|
|
1244
|
+
'fill-rule'?: 'nonzero' | 'evenodd' | 'inherit';
|
|
1245
|
+
filter?: string;
|
|
1246
|
+
filterRes?: number | string;
|
|
1247
|
+
filterUnits?: number | string;
|
|
1248
|
+
'flood-color'?: number | string;
|
|
1249
|
+
'flood-opacity'?: number | string;
|
|
1250
|
+
focusable?: number | string;
|
|
1251
|
+
'font-family'?: string;
|
|
1252
|
+
'font-size'?: number | string;
|
|
1253
|
+
'font-size-adjust'?: number | string;
|
|
1254
|
+
'font-stretch'?: number | string;
|
|
1255
|
+
'font-style'?: number | string;
|
|
1256
|
+
'font-variant'?: number | string;
|
|
1257
|
+
'font-weight'?: number | string;
|
|
1258
|
+
format?: number | string;
|
|
1259
|
+
from?: number | string;
|
|
1260
|
+
fx?: number | string;
|
|
1261
|
+
fy?: number | string;
|
|
1262
|
+
g1?: number | string;
|
|
1263
|
+
g2?: number | string;
|
|
1264
|
+
'glyph-name'?: number | string;
|
|
1265
|
+
'glyph-orientation-horizontal'?: number | string;
|
|
1266
|
+
'glyph-orientation-vertical'?: number | string;
|
|
1267
|
+
glyphRef?: number | string;
|
|
1268
|
+
gradientTransform?: string;
|
|
1269
|
+
gradientUnits?: string;
|
|
1270
|
+
hanging?: number | string;
|
|
1271
|
+
'horiz-adv-x'?: number | string;
|
|
1272
|
+
'horiz-origin-x'?: number | string;
|
|
1273
|
+
href?: string;
|
|
1274
|
+
ideographic?: number | string;
|
|
1275
|
+
'image-rendering'?: number | string;
|
|
1276
|
+
in2?: number | string;
|
|
1277
|
+
in?: string;
|
|
1278
|
+
intercept?: number | string;
|
|
1279
|
+
k1?: number | string;
|
|
1280
|
+
k2?: number | string;
|
|
1281
|
+
k3?: number | string;
|
|
1282
|
+
k4?: number | string;
|
|
1283
|
+
k?: number | string;
|
|
1284
|
+
kernelMatrix?: number | string;
|
|
1285
|
+
kernelUnitLength?: number | string;
|
|
1286
|
+
kerning?: number | string;
|
|
1287
|
+
keyPoints?: number | string;
|
|
1288
|
+
keySplines?: number | string;
|
|
1289
|
+
keyTimes?: number | string;
|
|
1290
|
+
lengthAdjust?: number | string;
|
|
1291
|
+
'letter-spacing'?: number | string;
|
|
1292
|
+
'lighting-color'?: number | string;
|
|
1293
|
+
limitingConeAngle?: number | string;
|
|
1294
|
+
local?: number | string;
|
|
1295
|
+
'marker-end'?: string;
|
|
1296
|
+
markerHeight?: number | string;
|
|
1297
|
+
'marker-mid'?: string;
|
|
1298
|
+
'marker-start'?: string;
|
|
1299
|
+
markerUnits?: number | string;
|
|
1300
|
+
markerWidth?: number | string;
|
|
1301
|
+
mask?: string;
|
|
1302
|
+
maskContentUnits?: number | string;
|
|
1303
|
+
maskUnits?: number | string;
|
|
1304
|
+
mathematical?: number | string;
|
|
1305
|
+
mode?: number | string;
|
|
1306
|
+
numOctaves?: number | string;
|
|
1307
|
+
offset?: number | string;
|
|
1308
|
+
opacity?: number | string;
|
|
1309
|
+
operator?: number | string;
|
|
1310
|
+
order?: number | string;
|
|
1311
|
+
orient?: number | string;
|
|
1312
|
+
orientation?: number | string;
|
|
1313
|
+
origin?: number | string;
|
|
1314
|
+
overflow?: number | string;
|
|
1315
|
+
'overline-position'?: number | string;
|
|
1316
|
+
'overline-thickness'?: number | string;
|
|
1317
|
+
'paint-order'?: number | string;
|
|
1318
|
+
panose1?: number | string;
|
|
1319
|
+
pathLength?: number | string;
|
|
1320
|
+
patternContentUnits?: string;
|
|
1321
|
+
patternTransform?: number | string;
|
|
1322
|
+
patternUnits?: string;
|
|
1323
|
+
'pointer-events'?: number | string;
|
|
1324
|
+
points?: string;
|
|
1325
|
+
pointsAtX?: number | string;
|
|
1326
|
+
pointsAtY?: number | string;
|
|
1327
|
+
pointsAtZ?: number | string;
|
|
1328
|
+
preserveAlpha?: number | string;
|
|
1329
|
+
preserveAspectRatio?: string;
|
|
1330
|
+
primitiveUnits?: number | string;
|
|
1331
|
+
r?: number | string;
|
|
1332
|
+
radius?: number | string;
|
|
1333
|
+
refX?: number | string;
|
|
1334
|
+
refY?: number | string;
|
|
1335
|
+
'rendering-intent'?: number | string;
|
|
1336
|
+
repeatCount?: number | string;
|
|
1337
|
+
repeatDur?: number | string;
|
|
1338
|
+
requiredextensions?: number | string;
|
|
1339
|
+
requiredFeatures?: number | string;
|
|
1340
|
+
restart?: number | string;
|
|
1341
|
+
result?: string;
|
|
1342
|
+
rotate?: number | string;
|
|
1343
|
+
rx?: number | string;
|
|
1344
|
+
ry?: number | string;
|
|
1345
|
+
scale?: number | string;
|
|
1346
|
+
seed?: number | string;
|
|
1347
|
+
'shape-rendering'?: number | string;
|
|
1348
|
+
slope?: number | string;
|
|
1349
|
+
spacing?: number | string;
|
|
1350
|
+
specularConstant?: number | string;
|
|
1351
|
+
specularExponent?: number | string;
|
|
1352
|
+
speed?: number | string;
|
|
1353
|
+
spreadMethod?: string;
|
|
1354
|
+
startOffset?: number | string;
|
|
1355
|
+
stdDeviation?: number | string;
|
|
1356
|
+
stemh?: number | string;
|
|
1357
|
+
stemv?: number | string;
|
|
1358
|
+
stitchTiles?: number | string;
|
|
1359
|
+
'stop-color'?: string;
|
|
1360
|
+
'stop-opacity'?: number | string;
|
|
1361
|
+
'strikethrough-position'?: number | string;
|
|
1362
|
+
'strikethrough-thickness'?: number | string;
|
|
1363
|
+
string?: number | string;
|
|
1364
|
+
stroke?: string;
|
|
1365
|
+
'stroke-dasharray'?: string | number;
|
|
1366
|
+
'stroke-dashoffset'?: string | number;
|
|
1367
|
+
'stroke-linecap'?: 'butt' | 'round' | 'square' | 'inherit';
|
|
1368
|
+
'stroke-linejoin'?: 'miter' | 'round' | 'bevel' | 'inherit';
|
|
1369
|
+
'stroke-miterlimit'?: string;
|
|
1370
|
+
'stroke-opacity'?: number | string;
|
|
1371
|
+
'stroke-width'?: number | string;
|
|
1372
|
+
surfaceScale?: number | string;
|
|
1373
|
+
systemLanguage?: number | string;
|
|
1374
|
+
tableValues?: number | string;
|
|
1375
|
+
targetX?: number | string;
|
|
1376
|
+
targetY?: number | string;
|
|
1377
|
+
'text-anchor'?: string;
|
|
1378
|
+
'text-decoration'?: number | string;
|
|
1379
|
+
textLength?: number | string;
|
|
1380
|
+
'text-rendering'?: number | string;
|
|
1381
|
+
to?: number | string;
|
|
1382
|
+
transform?: string;
|
|
1383
|
+
u1?: number | string;
|
|
1384
|
+
u2?: number | string;
|
|
1385
|
+
'underline-position'?: number | string;
|
|
1386
|
+
'underline-thickness'?: number | string;
|
|
1387
|
+
unicode?: number | string;
|
|
1388
|
+
'unicode-bidi'?: number | string;
|
|
1389
|
+
'unicode-range'?: number | string;
|
|
1390
|
+
'units-per-em'?: number | string;
|
|
1391
|
+
'v-alphabetic'?: number | string;
|
|
1392
|
+
values?: string;
|
|
1393
|
+
'vector-effect'?: number | string;
|
|
1394
|
+
version?: string;
|
|
1395
|
+
'vert-adv-y'?: number | string;
|
|
1396
|
+
'vert-origin-x'?: number | string;
|
|
1397
|
+
'vert-origin-y'?: number | string;
|
|
1398
|
+
'v-hanging'?: number | string;
|
|
1399
|
+
'v-ideographic'?: number | string;
|
|
1400
|
+
viewBox?: string;
|
|
1401
|
+
viewTarget?: number | string;
|
|
1402
|
+
visibility?: number | string;
|
|
1403
|
+
'v-mathematical'?: number | string;
|
|
1404
|
+
widths?: number | string;
|
|
1405
|
+
'word-spacing'?: number | string;
|
|
1406
|
+
'writing-mode'?: number | string;
|
|
1407
|
+
x1?: number | string;
|
|
1408
|
+
x2?: number | string;
|
|
1409
|
+
x?: number | string;
|
|
1410
|
+
'x-channel-selector'?: string;
|
|
1411
|
+
'x-height'?: number | string;
|
|
1412
|
+
xlinkActuate?: string;
|
|
1413
|
+
xlinkArcrole?: string;
|
|
1414
|
+
xlinkHref?: string;
|
|
1415
|
+
xlinkRole?: string;
|
|
1416
|
+
xlinkShow?: string;
|
|
1417
|
+
xlinkTitle?: string;
|
|
1418
|
+
xlinkType?: string;
|
|
1419
|
+
xmlBase?: string;
|
|
1420
|
+
xmlLang?: string;
|
|
1421
|
+
xmlns?: string;
|
|
1422
|
+
xmlSpace?: string;
|
|
1423
|
+
y1?: number | string;
|
|
1424
|
+
y2?: number | string;
|
|
1425
|
+
y?: number | string;
|
|
1426
|
+
yChannelSelector?: string;
|
|
1427
|
+
z?: number | string;
|
|
1428
|
+
zoomAndPan?: string;
|
|
1429
|
+
}
|
|
1430
|
+
interface DOMAttributes<T = Element> {
|
|
1431
|
+
key?: string | number;
|
|
1432
|
+
ref?: (elm?: T) => void;
|
|
1433
|
+
slot?: string;
|
|
1434
|
+
part?: string;
|
|
1435
|
+
exportparts?: string;
|
|
1436
|
+
onCopy?: (event: ClipboardEvent) => void;
|
|
1437
|
+
onCopyCapture?: (event: ClipboardEvent) => void;
|
|
1438
|
+
onCut?: (event: ClipboardEvent) => void;
|
|
1439
|
+
onCutCapture?: (event: ClipboardEvent) => void;
|
|
1440
|
+
onPaste?: (event: ClipboardEvent) => void;
|
|
1441
|
+
onPasteCapture?: (event: ClipboardEvent) => void;
|
|
1442
|
+
onCompositionEnd?: (event: CompositionEvent) => void;
|
|
1443
|
+
onCompositionEndCapture?: (event: CompositionEvent) => void;
|
|
1444
|
+
onCompositionStart?: (event: CompositionEvent) => void;
|
|
1445
|
+
onCompositionStartCapture?: (event: CompositionEvent) => void;
|
|
1446
|
+
onCompositionUpdate?: (event: CompositionEvent) => void;
|
|
1447
|
+
onCompositionUpdateCapture?: (event: CompositionEvent) => void;
|
|
1448
|
+
onFocus?: (event: FocusEvent) => void;
|
|
1449
|
+
onFocusCapture?: (event: FocusEvent) => void;
|
|
1450
|
+
onFocusin?: (event: FocusEvent) => void;
|
|
1451
|
+
onFocusinCapture?: (event: FocusEvent) => void;
|
|
1452
|
+
onFocusout?: (event: FocusEvent) => void;
|
|
1453
|
+
onFocusoutCapture?: (event: FocusEvent) => void;
|
|
1454
|
+
onBlur?: (event: FocusEvent) => void;
|
|
1455
|
+
onBlurCapture?: (event: FocusEvent) => void;
|
|
1456
|
+
onChange?: (event: Event) => void;
|
|
1457
|
+
onChangeCapture?: (event: Event) => void;
|
|
1458
|
+
onInput?: (event: Event) => void;
|
|
1459
|
+
onInputCapture?: (event: Event) => void;
|
|
1460
|
+
onReset?: (event: Event) => void;
|
|
1461
|
+
onResetCapture?: (event: Event) => void;
|
|
1462
|
+
onSubmit?: (event: Event) => void;
|
|
1463
|
+
onSubmitCapture?: (event: Event) => void;
|
|
1464
|
+
onInvalid?: (event: Event) => void;
|
|
1465
|
+
onInvalidCapture?: (event: Event) => void;
|
|
1466
|
+
onLoad?: (event: Event) => void;
|
|
1467
|
+
onLoadCapture?: (event: Event) => void;
|
|
1468
|
+
onError?: (event: Event) => void;
|
|
1469
|
+
onErrorCapture?: (event: Event) => void;
|
|
1470
|
+
onKeyDown?: (event: KeyboardEvent) => void;
|
|
1471
|
+
onKeyDownCapture?: (event: KeyboardEvent) => void;
|
|
1472
|
+
onKeyPress?: (event: KeyboardEvent) => void;
|
|
1473
|
+
onKeyPressCapture?: (event: KeyboardEvent) => void;
|
|
1474
|
+
onKeyUp?: (event: KeyboardEvent) => void;
|
|
1475
|
+
onKeyUpCapture?: (event: KeyboardEvent) => void;
|
|
1476
|
+
onAuxClick?: (event: MouseEvent) => void;
|
|
1477
|
+
onClick?: (event: MouseEvent) => void;
|
|
1478
|
+
onClickCapture?: (event: MouseEvent) => void;
|
|
1479
|
+
onContextMenu?: (event: MouseEvent) => void;
|
|
1480
|
+
onContextMenuCapture?: (event: MouseEvent) => void;
|
|
1481
|
+
onDblClick?: (event: MouseEvent) => void;
|
|
1482
|
+
onDblClickCapture?: (event: MouseEvent) => void;
|
|
1483
|
+
onDrag?: (event: DragEvent) => void;
|
|
1484
|
+
onDragCapture?: (event: DragEvent) => void;
|
|
1485
|
+
onDragEnd?: (event: DragEvent) => void;
|
|
1486
|
+
onDragEndCapture?: (event: DragEvent) => void;
|
|
1487
|
+
onDragEnter?: (event: DragEvent) => void;
|
|
1488
|
+
onDragEnterCapture?: (event: DragEvent) => void;
|
|
1489
|
+
onDragExit?: (event: DragEvent) => void;
|
|
1490
|
+
onDragExitCapture?: (event: DragEvent) => void;
|
|
1491
|
+
onDragLeave?: (event: DragEvent) => void;
|
|
1492
|
+
onDragLeaveCapture?: (event: DragEvent) => void;
|
|
1493
|
+
onDragOver?: (event: DragEvent) => void;
|
|
1494
|
+
onDragOverCapture?: (event: DragEvent) => void;
|
|
1495
|
+
onDragStart?: (event: DragEvent) => void;
|
|
1496
|
+
onDragStartCapture?: (event: DragEvent) => void;
|
|
1497
|
+
onDrop?: (event: DragEvent) => void;
|
|
1498
|
+
onDropCapture?: (event: DragEvent) => void;
|
|
1499
|
+
onMouseDown?: (event: MouseEvent) => void;
|
|
1500
|
+
onMouseDownCapture?: (event: MouseEvent) => void;
|
|
1501
|
+
onMouseEnter?: (event: MouseEvent) => void;
|
|
1502
|
+
onMouseLeave?: (event: MouseEvent) => void;
|
|
1503
|
+
onMouseMove?: (event: MouseEvent) => void;
|
|
1504
|
+
onMouseMoveCapture?: (event: MouseEvent) => void;
|
|
1505
|
+
onMouseOut?: (event: MouseEvent) => void;
|
|
1506
|
+
onMouseOutCapture?: (event: MouseEvent) => void;
|
|
1507
|
+
onMouseOver?: (event: MouseEvent) => void;
|
|
1508
|
+
onMouseOverCapture?: (event: MouseEvent) => void;
|
|
1509
|
+
onMouseUp?: (event: MouseEvent) => void;
|
|
1510
|
+
onMouseUpCapture?: (event: MouseEvent) => void;
|
|
1511
|
+
onTouchCancel?: (event: TouchEvent) => void;
|
|
1512
|
+
onTouchCancelCapture?: (event: TouchEvent) => void;
|
|
1513
|
+
onTouchEnd?: (event: TouchEvent) => void;
|
|
1514
|
+
onTouchEndCapture?: (event: TouchEvent) => void;
|
|
1515
|
+
onTouchMove?: (event: TouchEvent) => void;
|
|
1516
|
+
onTouchMoveCapture?: (event: TouchEvent) => void;
|
|
1517
|
+
onTouchStart?: (event: TouchEvent) => void;
|
|
1518
|
+
onTouchStartCapture?: (event: TouchEvent) => void;
|
|
1519
|
+
onPointerDown?: (event: PointerEvent) => void;
|
|
1520
|
+
onPointerDownCapture?: (event: PointerEvent) => void;
|
|
1521
|
+
onPointerMove?: (event: PointerEvent) => void;
|
|
1522
|
+
onPointerMoveCapture?: (event: PointerEvent) => void;
|
|
1523
|
+
onPointerUp?: (event: PointerEvent) => void;
|
|
1524
|
+
onPointerUpCapture?: (event: PointerEvent) => void;
|
|
1525
|
+
onPointerCancel?: (event: PointerEvent) => void;
|
|
1526
|
+
onPointerCancelCapture?: (event: PointerEvent) => void;
|
|
1527
|
+
onPointerEnter?: (event: PointerEvent) => void;
|
|
1528
|
+
onPointerEnterCapture?: (event: PointerEvent) => void;
|
|
1529
|
+
onPointerLeave?: (event: PointerEvent) => void;
|
|
1530
|
+
onPointerLeaveCapture?: (event: PointerEvent) => void;
|
|
1531
|
+
onPointerOver?: (event: PointerEvent) => void;
|
|
1532
|
+
onPointerOverCapture?: (event: PointerEvent) => void;
|
|
1533
|
+
onPointerOut?: (event: PointerEvent) => void;
|
|
1534
|
+
onPointerOutCapture?: (event: PointerEvent) => void;
|
|
1535
|
+
onGotPointerCapture?: (event: PointerEvent) => void;
|
|
1536
|
+
onGotPointerCaptureCapture?: (event: PointerEvent) => void;
|
|
1537
|
+
onLostPointerCapture?: (event: PointerEvent) => void;
|
|
1538
|
+
onLostPointerCaptureCapture?: (event: PointerEvent) => void;
|
|
1539
|
+
onScroll?: (event: UIEvent) => void;
|
|
1540
|
+
onScrollCapture?: (event: UIEvent) => void;
|
|
1541
|
+
onWheel?: (event: WheelEvent) => void;
|
|
1542
|
+
onWheelCapture?: (event: WheelEvent) => void;
|
|
1543
|
+
onAnimationStart?: (event: AnimationEvent) => void;
|
|
1544
|
+
onAnimationStartCapture?: (event: AnimationEvent) => void;
|
|
1545
|
+
onAnimationEnd?: (event: AnimationEvent) => void;
|
|
1546
|
+
onAnimationEndCapture?: (event: AnimationEvent) => void;
|
|
1547
|
+
onAnimationIteration?: (event: AnimationEvent) => void;
|
|
1548
|
+
onAnimationIterationCapture?: (event: AnimationEvent) => void;
|
|
1549
|
+
onTransitionEnd?: (event: TransitionEvent) => void;
|
|
1550
|
+
onTransitionEndCapture?: (event: TransitionEvent) => void;
|
|
1551
|
+
}
|
|
1552
|
+
}
|
|
1553
|
+
export interface CustomElementsDefineOptions {
|
|
1554
|
+
exclude?: string[];
|
|
1555
|
+
resourcesUrl?: string;
|
|
1556
|
+
syncQueue?: boolean;
|
|
1557
|
+
transformTagName?: (tagName: string) => string;
|
|
1558
|
+
jmp?: (c: Function) => any;
|
|
1559
|
+
raf?: (c: FrameRequestCallback) => number;
|
|
1560
|
+
ael?: (el: EventTarget, eventName: string, listener: EventListenerOrEventListenerObject, options: boolean | AddEventListenerOptions) => void;
|
|
1561
|
+
rel?: (el: EventTarget, eventName: string, listener: EventListenerOrEventListenerObject, options: boolean | AddEventListenerOptions) => void;
|
|
1562
|
+
ce?: (eventName: string, opts?: any) => CustomEvent;
|
|
1563
|
+
}
|