@ebay/ui-core-react 7.3.1 → 7.3.2
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/CONTRIBUTING.md +236 -0
- package/LICENSE.md +21 -0
- package/dist/ebay-dialog-base/components/animation/index.js +1 -0
- package/dist/ebay-dialog-base/components/animation.d.ts.map +1 -0
- package/jest.config.js +52 -0
- package/package.json +1 -1
- package/src/common/__mocks__/random-id.ts +2 -0
- package/src/common/component-utils/array.polyfill.flat.ts +34 -0
- package/src/common/component-utils/forwardRef.tsx +15 -0
- package/src/common/component-utils/index.ts +2 -0
- package/src/common/component-utils/utils.ts +23 -0
- package/src/common/debounce.ts +11 -0
- package/src/common/event-utils/__tests__/helpers.ts +4 -0
- package/src/common/event-utils/__tests__/use-key-press.spec.tsx +30 -0
- package/src/common/event-utils/__tests__/use-roving-index.spec.tsx +81 -0
- package/src/common/event-utils/index.ts +128 -0
- package/src/common/event-utils/types.ts +38 -0
- package/src/common/event-utils/use-key-press.ts +38 -0
- package/src/common/event-utils/use-roving-index.ts +41 -0
- package/src/common/floating-label-utils/hooks.tsx +162 -0
- package/src/common/notice-utils/notice-content.tsx +19 -0
- package/src/common/notice-utils/notice-cta.tsx +15 -0
- package/src/common/notice-utils/notice-footer.tsx +15 -0
- package/src/common/notice-utils/notice-title.tsx +19 -0
- package/src/common/random-id.ts +14 -0
- package/src/common/range.ts +2 -0
- package/src/common/tooltip-utils/constants.ts +96 -0
- package/src/common/tooltip-utils/index.ts +7 -0
- package/src/common/tooltip-utils/tooltip-close-button.tsx +10 -0
- package/src/common/tooltip-utils/tooltip-content.tsx +62 -0
- package/src/common/tooltip-utils/tooltip-footer.tsx +15 -0
- package/src/common/tooltip-utils/tooltip-host.tsx +24 -0
- package/src/common/tooltip-utils/tooltip.tsx +49 -0
- package/src/common/tooltip-utils/types.ts +7 -0
- package/src/common/tooltip-utils/use-tooltip.ts +39 -0
- package/src/ebay-alert-dialog/__tests__/index.spec.tsx +36 -0
- package/src/ebay-alert-dialog/__tests__/index.stories.tsx +77 -0
- package/src/ebay-alert-dialog/__tests__/render.spec.tsx +16 -0
- package/src/ebay-alert-dialog/alert-dialog.tsx +53 -0
- package/src/ebay-alert-dialog/index.ts +1 -0
- package/src/ebay-badge/__tests__/index.spec.tsx +47 -0
- package/src/ebay-badge/__tests__/index.stories.tsx +31 -0
- package/src/ebay-badge/badge.tsx +32 -0
- package/src/ebay-badge/index.ts +1 -0
- package/src/ebay-breadcrumbs/__tests__/index.spec.tsx +40 -0
- package/src/ebay-breadcrumbs/__tests__/index.stories.tsx +94 -0
- package/src/ebay-breadcrumbs/__tests__/render.spec.tsx +59 -0
- package/src/ebay-breadcrumbs/breadcrumb-item.tsx +39 -0
- package/src/ebay-breadcrumbs/breadcrumbs.tsx +61 -0
- package/src/ebay-breadcrumbs/index.ts +2 -0
- package/src/ebay-button/__tests__/index.spec.tsx +131 -0
- package/src/ebay-button/__tests__/index.stories.tsx +406 -0
- package/src/ebay-button/button-cell.tsx +21 -0
- package/src/ebay-button/button-expand.tsx +18 -0
- package/src/ebay-button/button-loading.tsx +11 -0
- package/src/ebay-button/button-text.tsx +10 -0
- package/src/ebay-button/button.tsx +154 -0
- package/src/ebay-button/index.ts +3 -0
- package/src/ebay-button/types.ts +9 -0
- package/src/ebay-calendar/__tests__/__snapshots__/render.spec.tsx.snap +27 -0
- package/src/ebay-calendar/__tests__/index.spec.tsx +99 -0
- package/src/ebay-calendar/__tests__/index.stories.tsx +65 -0
- package/src/ebay-calendar/__tests__/render.spec.tsx +68 -0
- package/src/ebay-calendar/calendar.tsx +461 -0
- package/src/ebay-calendar/date-utils.ts +63 -0
- package/src/ebay-calendar/index.ts +1 -0
- package/src/ebay-carousel/__tests__/__snapshots__/index.spec.tsx.snap +39 -0
- package/src/ebay-carousel/__tests__/index.spec.tsx +55 -0
- package/src/ebay-carousel/__tests__/index.stories.tsx +68 -0
- package/src/ebay-carousel/carousel-control-button.tsx +45 -0
- package/src/ebay-carousel/carousel-item.tsx +52 -0
- package/src/ebay-carousel/carousel-list.tsx +102 -0
- package/src/ebay-carousel/carousel.tsx +137 -0
- package/src/ebay-carousel/helpers.ts +159 -0
- package/src/ebay-carousel/index.ts +2 -0
- package/src/ebay-carousel/scroll-to-transition.ts +123 -0
- package/src/ebay-carousel/types.ts +11 -0
- package/src/ebay-checkbox/__tests__/index.spec.tsx +36 -0
- package/src/ebay-checkbox/__tests__/index.stories.tsx +162 -0
- package/src/ebay-checkbox/__tests__/render.spec.tsx +39 -0
- package/src/ebay-checkbox/checkbox.tsx +89 -0
- package/src/ebay-checkbox/index.ts +1 -0
- package/src/ebay-confirm-dialog/__tests__/index.spec.tsx +59 -0
- package/src/ebay-confirm-dialog/__tests__/index.stories.tsx +70 -0
- package/src/ebay-confirm-dialog/__tests__/render.spec.tsx +42 -0
- package/src/ebay-confirm-dialog/confirm-dialog.tsx +63 -0
- package/src/ebay-confirm-dialog/index.ts +1 -0
- package/src/ebay-cta-button/__tests__/index.spec.tsx +48 -0
- package/src/ebay-cta-button/__tests__/index.stories.tsx +58 -0
- package/src/ebay-cta-button/cta-button.tsx +40 -0
- package/src/ebay-cta-button/index.ts +1 -0
- package/src/ebay-date-textbox/__tests__/__snapshots__/render.spec.tsx.snap +27 -0
- package/src/ebay-date-textbox/__tests__/index.spec.tsx +148 -0
- package/src/ebay-date-textbox/__tests__/index.stories.tsx +55 -0
- package/src/ebay-date-textbox/__tests__/render.spec.tsx +94 -0
- package/src/ebay-date-textbox/date-textbox.tsx +227 -0
- package/src/ebay-date-textbox/index.ts +1 -0
- package/src/ebay-dialog-base/__tests__/index.spec.tsx +83 -0
- package/src/ebay-dialog-base/__tests__/mocks.tsx +38 -0
- package/src/ebay-dialog-base/__tests__/server.spec.tsx +33 -0
- package/src/ebay-dialog-base/components/animation.ts +144 -0
- package/src/ebay-dialog-base/components/dialog-actions.tsx +9 -0
- package/src/ebay-dialog-base/components/dialog-close-button.tsx +9 -0
- package/src/ebay-dialog-base/components/dialog-footer.tsx +9 -0
- package/src/ebay-dialog-base/components/dialog-header.tsx +10 -0
- package/src/ebay-dialog-base/components/dialog-previous-button.tsx +23 -0
- package/src/ebay-dialog-base/components/dialogBase.tsx +234 -0
- package/src/ebay-dialog-base/dialog-base-with-state.tsx +61 -0
- package/src/ebay-dialog-base/index.ts +8 -0
- package/src/ebay-drawer-dialog/__tests__/index.spec.tsx +53 -0
- package/src/ebay-drawer-dialog/__tests__/index.stories.tsx +244 -0
- package/src/ebay-drawer-dialog/components/drawer.tsx +120 -0
- package/src/ebay-drawer-dialog/index.ts +1 -0
- package/src/ebay-eek/__tests__/index.spec.tsx +81 -0
- package/src/ebay-eek/__tests__/index.stories.tsx +102 -0
- package/src/ebay-eek/__tests__/render.spec.tsx +49 -0
- package/src/ebay-eek/eek-rating.tsx +46 -0
- package/src/ebay-eek/eek-util.ts +34 -0
- package/src/ebay-eek/index.ts +1 -0
- package/src/ebay-fake-menu/__tests__/index.spec.tsx +79 -0
- package/src/ebay-fake-menu/__tests__/index.stories.tsx +127 -0
- package/src/ebay-fake-menu/__tests__/render.spec.tsx +70 -0
- package/src/ebay-fake-menu/index.ts +3 -0
- package/src/ebay-fake-menu/menu-item-separator.tsx +17 -0
- package/src/ebay-fake-menu/menu-item.tsx +84 -0
- package/src/ebay-fake-menu/menu.tsx +58 -0
- package/src/ebay-fake-menu-button/__tests__/__snapshots__/render.spec.tsx.snap +79 -0
- package/src/ebay-fake-menu-button/__tests__/index.spec.tsx +99 -0
- package/src/ebay-fake-menu-button/__tests__/index.stories.tsx +202 -0
- package/src/ebay-fake-menu-button/__tests__/render.spec.tsx +166 -0
- package/src/ebay-fake-menu-button/index.ts +8 -0
- package/src/ebay-fake-menu-button/menu-button-item.tsx +6 -0
- package/src/ebay-fake-menu-button/menu-button-label.tsx +7 -0
- package/src/ebay-fake-menu-button/menu-button-separator.tsx +17 -0
- package/src/ebay-fake-menu-button/menu-button.tsx +147 -0
- package/src/ebay-fake-tabs/__tests__/index.spec.tsx +35 -0
- package/src/ebay-fake-tabs/__tests__/index.stories.tsx +54 -0
- package/src/ebay-fake-tabs/fake-tabs.tsx +41 -0
- package/src/ebay-fake-tabs/index.ts +2 -0
- package/src/ebay-fake-tabs/tab.tsx +23 -0
- package/src/ebay-field/__tests__/index.spec.tsx +42 -0
- package/src/ebay-field/__tests__/index.stories.tsx +159 -0
- package/src/ebay-field/description.tsx +30 -0
- package/src/ebay-field/field.tsx +24 -0
- package/src/ebay-field/index.ts +4 -0
- package/src/ebay-field/label.tsx +31 -0
- package/src/ebay-field/types.ts +7 -0
- package/src/ebay-fullscreen-dialog/__tests__/index.spec.tsx +52 -0
- package/src/ebay-fullscreen-dialog/__tests__/index.stories.tsx +96 -0
- package/src/ebay-fullscreen-dialog/__tests__/render.spec.tsx +44 -0
- package/src/ebay-fullscreen-dialog/fullscreen-dialog.tsx +32 -0
- package/src/ebay-fullscreen-dialog/index.ts +1 -0
- package/src/ebay-icon/__tests__/constants.ts +782 -0
- package/src/ebay-icon/__tests__/index.spec.tsx +46 -0
- package/src/ebay-icon/__tests__/index.stories.tsx +47 -0
- package/src/ebay-icon/icon.tsx +104 -0
- package/src/ebay-icon/index.ts +2 -0
- package/src/ebay-icon/types.ts +779 -0
- package/src/ebay-icon-button/__tests__/index.spec.tsx +59 -0
- package/src/ebay-icon-button/__tests__/index.stories.tsx +64 -0
- package/src/ebay-icon-button/__tests__/render.spec.tsx +61 -0
- package/src/ebay-icon-button/icon-button.tsx +84 -0
- package/src/ebay-icon-button/index.ts +1 -0
- package/src/ebay-infotip/__tests__/__snapshots__/render.spec.tsx.snap +40 -0
- package/src/ebay-infotip/__tests__/index.spec.tsx +108 -0
- package/src/ebay-infotip/__tests__/index.stories.tsx +204 -0
- package/src/ebay-infotip/__tests__/render.spec.tsx +121 -0
- package/src/ebay-infotip/ebay-infotip-content.tsx +10 -0
- package/src/ebay-infotip/ebay-infotip-heading.tsx +13 -0
- package/src/ebay-infotip/ebay-infotip-host.tsx +37 -0
- package/src/ebay-infotip/ebay-infotip.tsx +125 -0
- package/src/ebay-infotip/index.ts +5 -0
- package/src/ebay-infotip/types.ts +1 -0
- package/src/ebay-inline-notice/__tests__/index.spec.tsx +68 -0
- package/src/ebay-inline-notice/__tests__/index.stories.tsx +95 -0
- package/src/ebay-inline-notice/index.ts +3 -0
- package/src/ebay-inline-notice/inline-notice.tsx +62 -0
- package/src/ebay-inline-notice/types.ts +1 -0
- package/src/ebay-lightbox-dialog/__tests__/index.spec.tsx +52 -0
- package/src/ebay-lightbox-dialog/__tests__/index.stories.tsx +274 -0
- package/src/ebay-lightbox-dialog/index.ts +1 -0
- package/src/ebay-lightbox-dialog/lightbox-dialog.tsx +38 -0
- package/src/ebay-listbox-button/__tests__/__snapshots__/render.spec.tsx.snap +118 -0
- package/src/ebay-listbox-button/__tests__/index.spec.tsx +221 -0
- package/src/ebay-listbox-button/__tests__/index.stories.tsx +183 -0
- package/src/ebay-listbox-button/__tests__/render.spec.tsx +140 -0
- package/src/ebay-listbox-button/__tests__/statefull-test.tsx +34 -0
- package/src/ebay-listbox-button/index.ts +2 -0
- package/src/ebay-listbox-button/listbox-button-option.tsx +40 -0
- package/src/ebay-listbox-button/listbox-button.tsx +320 -0
- package/src/ebay-menu/__tests__/index.spec.tsx +287 -0
- package/src/ebay-menu/__tests__/index.stories.tsx +160 -0
- package/src/ebay-menu/index.ts +11 -0
- package/src/ebay-menu/menu-item-separator.tsx +17 -0
- package/src/ebay-menu/menu-item.tsx +69 -0
- package/src/ebay-menu/menu.tsx +174 -0
- package/src/ebay-menu/types.ts +30 -0
- package/src/ebay-menu-button/__tests__/__snapshots__/render.spec.tsx.snap +118 -0
- package/src/ebay-menu-button/__tests__/index.spec.tsx +104 -0
- package/src/ebay-menu-button/__tests__/index.stories.tsx +325 -0
- package/src/ebay-menu-button/__tests__/render.spec.tsx +202 -0
- package/src/ebay-menu-button/index.ts +10 -0
- package/src/ebay-menu-button/menu-button-item.tsx +4 -0
- package/src/ebay-menu-button/menu-button-label.tsx +5 -0
- package/src/ebay-menu-button/menu-button-separator.tsx +17 -0
- package/src/ebay-menu-button/menu-button.tsx +169 -0
- package/src/ebay-menu-button/types.ts +39 -0
- package/src/ebay-notice-base/components/ebay-notice-content/__tests__/index.spec.tsx +29 -0
- package/src/ebay-notice-base/components/ebay-notice-content/index.ts +1 -0
- package/src/ebay-notice-base/components/ebay-notice-content/notice-content.tsx +12 -0
- package/src/ebay-notice-base/components/ebay-notice-title/index.ts +1 -0
- package/src/ebay-notice-base/components/ebay-notice-title/notice-title.tsx +13 -0
- package/src/ebay-notice-base/index.ts +2 -0
- package/src/ebay-page-notice/__tests__/__snapshots__/render.spec.tsx.snap +112 -0
- package/src/ebay-page-notice/__tests__/index.spec.tsx +91 -0
- package/src/ebay-page-notice/__tests__/index.stories.tsx +117 -0
- package/src/ebay-page-notice/__tests__/render.spec.tsx +175 -0
- package/src/ebay-page-notice/index.ts +5 -0
- package/src/ebay-page-notice/page-notice-cta.tsx +15 -0
- package/src/ebay-page-notice/page-notice-footer.tsx +15 -0
- package/src/ebay-page-notice/page-notice-title.tsx +16 -0
- package/src/ebay-page-notice/page-notice.tsx +77 -0
- package/src/ebay-pagination/__tests__/__snapshots__/render.spec.tsx.snap +53 -0
- package/src/ebay-pagination/__tests__/helpers.spec.ts +171 -0
- package/src/ebay-pagination/__tests__/index.spec.tsx +130 -0
- package/src/ebay-pagination/__tests__/index.stories.tsx +317 -0
- package/src/ebay-pagination/__tests__/render.spec.tsx +129 -0
- package/src/ebay-pagination/const.ts +5 -0
- package/src/ebay-pagination/helpers.ts +119 -0
- package/src/ebay-pagination/index.ts +3 -0
- package/src/ebay-pagination/pagination-item.tsx +126 -0
- package/src/ebay-pagination/pagination.tsx +193 -0
- package/src/ebay-pagination/types.ts +2 -0
- package/src/ebay-panel-dialog/__tests__/index.spec.tsx +52 -0
- package/src/ebay-panel-dialog/__tests__/index.stories.tsx +124 -0
- package/src/ebay-panel-dialog/index.ts +1 -0
- package/src/ebay-panel-dialog/panel-dialog.tsx +40 -0
- package/src/ebay-progress-bar/__tests__/index.spec.tsx +41 -0
- package/src/ebay-progress-bar/__tests__/index.stories.tsx +50 -0
- package/src/ebay-progress-bar/index.ts +1 -0
- package/src/ebay-progress-bar/progress-bar.tsx +23 -0
- package/src/ebay-progress-spinner/__tests__/index.spec.tsx +19 -0
- package/src/ebay-progress-spinner/__tests__/index.stories.tsx +24 -0
- package/src/ebay-progress-spinner/index.ts +1 -0
- package/src/ebay-progress-spinner/progress-spinner.tsx +42 -0
- package/src/ebay-progress-stepper/__tests__/__snapshots__/index.spec.tsx.snap +183 -0
- package/src/ebay-progress-stepper/__tests__/index.spec.tsx +129 -0
- package/src/ebay-progress-stepper/__tests__/index.stories.tsx +170 -0
- package/src/ebay-progress-stepper/ebay-progress-step.tsx +58 -0
- package/src/ebay-progress-stepper/ebay-progress-stepper.tsx +68 -0
- package/src/ebay-progress-stepper/ebay-progress-title.tsx +13 -0
- package/src/ebay-progress-stepper/index.ts +4 -0
- package/src/ebay-progress-stepper/types.ts +3 -0
- package/src/ebay-radio/__tests__/index.spec.tsx +48 -0
- package/src/ebay-radio/__tests__/index.stories.tsx +193 -0
- package/src/ebay-radio/__tests__/render.spec.tsx +57 -0
- package/src/ebay-radio/index.ts +1 -0
- package/src/ebay-radio/radio.tsx +85 -0
- package/src/ebay-section-notice/__tests__/index.spec.tsx +109 -0
- package/src/ebay-section-notice/__tests__/index.stories.tsx +199 -0
- package/src/ebay-section-notice/index.ts +9 -0
- package/src/ebay-section-notice/section-notice-cta.tsx +15 -0
- package/src/ebay-section-notice/section-notice-footer.tsx +15 -0
- package/src/ebay-section-notice/section-notice-title.tsx +15 -0
- package/src/ebay-section-notice/section-notice.tsx +107 -0
- package/src/ebay-section-title/__tests__/index.spec.tsx +62 -0
- package/src/ebay-section-title/__tests__/index.stories.tsx +79 -0
- package/src/ebay-section-title/cta.tsx +26 -0
- package/src/ebay-section-title/index.ts +5 -0
- package/src/ebay-section-title/info.tsx +19 -0
- package/src/ebay-section-title/overflow.tsx +19 -0
- package/src/ebay-section-title/section-title.tsx +41 -0
- package/src/ebay-section-title/subtitle.tsx +19 -0
- package/src/ebay-section-title/title.tsx +19 -0
- package/src/ebay-segmented-buttons/__tests__/index.spec.tsx +42 -0
- package/src/ebay-segmented-buttons/__tests__/index.stories.tsx +52 -0
- package/src/ebay-segmented-buttons/button.tsx +39 -0
- package/src/ebay-segmented-buttons/index.ts +3 -0
- package/src/ebay-segmented-buttons/segmented-buttons.tsx +47 -0
- package/src/ebay-segmented-buttons/types.ts +15 -0
- package/src/ebay-select/__tests__/__snapshots__/render.spec.tsx.snap +16 -0
- package/src/ebay-select/__tests__/index.spec.tsx +99 -0
- package/src/ebay-select/__tests__/index.stories.tsx +221 -0
- package/src/ebay-select/__tests__/render.spec.tsx +92 -0
- package/src/ebay-select/ebay-select-option.tsx +10 -0
- package/src/ebay-select/ebay-select.tsx +164 -0
- package/src/ebay-select/index.ts +2 -0
- package/src/ebay-signal/__tests__/index.spec.tsx +26 -0
- package/src/ebay-signal/__tests__/index.stories.tsx +37 -0
- package/src/ebay-signal/index.ts +1 -0
- package/src/ebay-signal/signal.tsx +15 -0
- package/src/ebay-snackbar-dialog/__tests__/index.spec.tsx +151 -0
- package/src/ebay-snackbar-dialog/__tests__/index.stories.tsx +83 -0
- package/src/ebay-snackbar-dialog/components/ebay-snackbar-dialog-action.tsx +12 -0
- package/src/ebay-snackbar-dialog/components/ebay-snackbar-dialog.tsx +132 -0
- package/src/ebay-snackbar-dialog/index.ts +2 -0
- package/src/ebay-split-button/__tests__/__snapshots__/render.spec.tsx.snap +118 -0
- package/src/ebay-split-button/__tests__/index.spec.tsx +168 -0
- package/src/ebay-split-button/__tests__/index.stories.tsx +241 -0
- package/src/ebay-split-button/__tests__/render.spec.tsx +156 -0
- package/src/ebay-split-button/index.ts +5 -0
- package/src/ebay-split-button/split-button.tsx +54 -0
- package/src/ebay-split-button/types.ts +19 -0
- package/src/ebay-star-rating/__tests__/__snapshots__/index.spec.tsx.snap +307 -0
- package/src/ebay-star-rating/__tests__/index.spec.tsx +30 -0
- package/src/ebay-star-rating/__tests__/index.stories.tsx +35 -0
- package/src/ebay-star-rating/index.ts +1 -0
- package/src/ebay-star-rating/star-rating.tsx +29 -0
- package/src/ebay-star-rating-select/__tests__/__snapshots__/index.spec.tsx.snap +679 -0
- package/src/ebay-star-rating-select/__tests__/index.spec.tsx +105 -0
- package/src/ebay-star-rating-select/__tests__/index.stories.tsx +73 -0
- package/src/ebay-star-rating-select/__tests__/mocks.tsx +26 -0
- package/src/ebay-star-rating-select/index.ts +1 -0
- package/src/ebay-star-rating-select/star-rating-select.tsx +95 -0
- package/src/ebay-svg/__tests__/index.stories.tsx +16 -0
- package/src/ebay-svg/index.ts +1 -0
- package/src/ebay-svg/svg.tsx +23 -0
- package/src/ebay-svg/symbols.tsx +808 -0
- package/src/ebay-switch/__tests__/index.spec.tsx +28 -0
- package/src/ebay-switch/__tests__/index.stories.tsx +71 -0
- package/src/ebay-switch/__tests__/render.spec.tsx +37 -0
- package/src/ebay-switch/ebay-switch.tsx +56 -0
- package/src/ebay-switch/index.ts +1 -0
- package/src/ebay-tabs/__tests__/index.spec.tsx +205 -0
- package/src/ebay-tabs/__tests__/index.stories.tsx +301 -0
- package/src/ebay-tabs/index.ts +4 -0
- package/src/ebay-tabs/tab-panel.tsx +32 -0
- package/src/ebay-tabs/tab.tsx +38 -0
- package/src/ebay-tabs/tabs.tsx +104 -0
- package/src/ebay-tabs/types.ts +19 -0
- package/src/ebay-textbox/__tests__/__snapshots__/render.spec.tsx.snap +57 -0
- package/src/ebay-textbox/__tests__/index.spec.tsx +155 -0
- package/src/ebay-textbox/__tests__/index.stories.tsx +391 -0
- package/src/ebay-textbox/__tests__/render.spec.tsx +140 -0
- package/src/ebay-textbox/index.ts +7 -0
- package/src/ebay-textbox/postfix-icon.tsx +21 -0
- package/src/ebay-textbox/postfix-text.tsx +8 -0
- package/src/ebay-textbox/prefix-icon.tsx +12 -0
- package/src/ebay-textbox/prefix-text.tsx +8 -0
- package/src/ebay-textbox/textbox.tsx +209 -0
- package/src/ebay-textbox/types.ts +18 -0
- package/src/ebay-toast-dialog/__tests__/index.spec.tsx +41 -0
- package/src/ebay-toast-dialog/__tests__/index.stories.tsx +131 -0
- package/src/ebay-toast-dialog/components/toast.tsx +26 -0
- package/src/ebay-toast-dialog/index.ts +1 -0
- package/src/ebay-tooltip/__tests__/index.spec.tsx +183 -0
- package/src/ebay-tooltip/__tests__/index.stories.tsx +104 -0
- package/src/ebay-tooltip/__tests__/render.spec.tsx +79 -0
- package/src/ebay-tooltip/ebay-tooltip-content.tsx +11 -0
- package/src/ebay-tooltip/ebay-tooltip-host.tsx +11 -0
- package/src/ebay-tooltip/ebay-tooltip.tsx +96 -0
- package/src/ebay-tooltip/index.ts +8 -0
- package/src/ebay-tourtip/__tests__/__snapshots__/render.spec.tsx.snap +14 -0
- package/src/ebay-tourtip/__tests__/index.spec.tsx +105 -0
- package/src/ebay-tourtip/__tests__/index.stories.tsx +116 -0
- package/src/ebay-tourtip/__tests__/render.spec.tsx +214 -0
- package/src/ebay-tourtip/ebay-tourtip-content.tsx +11 -0
- package/src/ebay-tourtip/ebay-tourtip-footer.tsx +19 -0
- package/src/ebay-tourtip/ebay-tourtip-heading.tsx +23 -0
- package/src/ebay-tourtip/ebay-tourtip-host.tsx +11 -0
- package/src/ebay-tourtip/ebay-tourtip.tsx +89 -0
- package/src/ebay-tourtip/index.ts +6 -0
- package/src/ebay-video/__tests__/index.spec.tsx +39 -0
- package/src/ebay-video/__tests__/index.stories.tsx +147 -0
- package/src/ebay-video/__tests__/render.spec.tsx +55 -0
- package/src/ebay-video/const.ts +16 -0
- package/src/ebay-video/controls.tsx +42 -0
- package/src/ebay-video/index.ts +9 -0
- package/src/ebay-video/reportButton.tsx +13 -0
- package/src/ebay-video/shaka-player.d.ts +4 -0
- package/src/ebay-video/source.tsx +7 -0
- package/src/ebay-video/types.ts +10 -0
- package/src/ebay-video/video.tsx +291 -0
- package/src/events/index.ts +30 -0
- package/src/utils/index.ts +9 -0
- package/tsconfig.json +42 -0
- package/vite.config.mjs +50 -0
- package/ebay-dialog-base/components/animation/index.js +0 -1
- package/ebay-dialog-base/components/animation.d.ts.map +0 -1
- /package/{array.polyfill.flat-5BAolFdk.js → dist/array.polyfill.flat-5BAolFdk.js} +0 -0
- /package/{badge-CoHKfiPt.js → dist/badge-CoHKfiPt.js} +0 -0
- /package/{button-DGuEBUDJ.js → dist/button-DGuEBUDJ.js} +0 -0
- /package/{calendar-lAu6VfAb.js → dist/calendar-lAu6VfAb.js} +0 -0
- /package/{common → dist/common}/__mocks__/random-id.d.ts +0 -0
- /package/{common → dist/common}/__mocks__/random-id.d.ts.map +0 -0
- /package/{common → dist/common}/component-utils/array.polyfill.flat.d.ts +0 -0
- /package/{common → dist/common}/component-utils/array.polyfill.flat.d.ts.map +0 -0
- /package/{common → dist/common}/component-utils/forwardRef/index.js +0 -0
- /package/{common → dist/common}/component-utils/forwardRef.d.ts +0 -0
- /package/{common → dist/common}/component-utils/forwardRef.d.ts.map +0 -0
- /package/{common → dist/common}/component-utils/index.d.ts +0 -0
- /package/{common → dist/common}/component-utils/index.d.ts.map +0 -0
- /package/{common → dist/common}/component-utils/index.js +0 -0
- /package/{common → dist/common}/component-utils/utils/index.js +0 -0
- /package/{common → dist/common}/component-utils/utils.d.ts +0 -0
- /package/{common → dist/common}/component-utils/utils.d.ts.map +0 -0
- /package/{common → dist/common}/debounce.d.ts +0 -0
- /package/{common → dist/common}/debounce.d.ts.map +0 -0
- /package/{common → dist/common}/event-utils/index.d.ts +0 -0
- /package/{common → dist/common}/event-utils/index.d.ts.map +0 -0
- /package/{common → dist/common}/event-utils/index.js +0 -0
- /package/{common → dist/common}/event-utils/types.d.ts +0 -0
- /package/{common → dist/common}/event-utils/types.d.ts.map +0 -0
- /package/{common → dist/common}/event-utils/use-key-press.d.ts +0 -0
- /package/{common → dist/common}/event-utils/use-key-press.d.ts.map +0 -0
- /package/{common → dist/common}/event-utils/use-roving-index.d.ts +0 -0
- /package/{common → dist/common}/event-utils/use-roving-index.d.ts.map +0 -0
- /package/{common → dist/common}/floating-label-utils/hooks/index.js +0 -0
- /package/{common → dist/common}/floating-label-utils/hooks.d.ts +0 -0
- /package/{common → dist/common}/floating-label-utils/hooks.d.ts.map +0 -0
- /package/{common → dist/common}/notice-utils/notice-content.d.ts +0 -0
- /package/{common → dist/common}/notice-utils/notice-content.d.ts.map +0 -0
- /package/{common → dist/common}/notice-utils/notice-cta/index.js +0 -0
- /package/{common → dist/common}/notice-utils/notice-cta.d.ts +0 -0
- /package/{common → dist/common}/notice-utils/notice-cta.d.ts.map +0 -0
- /package/{common → dist/common}/notice-utils/notice-footer.d.ts +0 -0
- /package/{common → dist/common}/notice-utils/notice-footer.d.ts.map +0 -0
- /package/{common → dist/common}/notice-utils/notice-title.d.ts +0 -0
- /package/{common → dist/common}/notice-utils/notice-title.d.ts.map +0 -0
- /package/{common → dist/common}/random-id/index.js +0 -0
- /package/{common → dist/common}/random-id.d.ts +0 -0
- /package/{common → dist/common}/random-id.d.ts.map +0 -0
- /package/{common → dist/common}/range.d.ts +0 -0
- /package/{common → dist/common}/range.d.ts.map +0 -0
- /package/{common → dist/common}/tooltip-utils/constants/index.js +0 -0
- /package/{common → dist/common}/tooltip-utils/constants.d.ts +0 -0
- /package/{common → dist/common}/tooltip-utils/constants.d.ts.map +0 -0
- /package/{common → dist/common}/tooltip-utils/index.d.ts +0 -0
- /package/{common → dist/common}/tooltip-utils/index.d.ts.map +0 -0
- /package/{common → dist/common}/tooltip-utils/index.js +0 -0
- /package/{common → dist/common}/tooltip-utils/tooltip-close-button.d.ts +0 -0
- /package/{common → dist/common}/tooltip-utils/tooltip-close-button.d.ts.map +0 -0
- /package/{common → dist/common}/tooltip-utils/tooltip-content.d.ts +0 -0
- /package/{common → dist/common}/tooltip-utils/tooltip-content.d.ts.map +0 -0
- /package/{common → dist/common}/tooltip-utils/tooltip-footer.d.ts +0 -0
- /package/{common → dist/common}/tooltip-utils/tooltip-footer.d.ts.map +0 -0
- /package/{common → dist/common}/tooltip-utils/tooltip-host.d.ts +0 -0
- /package/{common → dist/common}/tooltip-utils/tooltip-host.d.ts.map +0 -0
- /package/{common → dist/common}/tooltip-utils/tooltip.d.ts +0 -0
- /package/{common → dist/common}/tooltip-utils/tooltip.d.ts.map +0 -0
- /package/{common → dist/common}/tooltip-utils/types.d.ts +0 -0
- /package/{common → dist/common}/tooltip-utils/types.d.ts.map +0 -0
- /package/{common → dist/common}/tooltip-utils/use-tooltip.d.ts +0 -0
- /package/{common → dist/common}/tooltip-utils/use-tooltip.d.ts.map +0 -0
- /package/{debounce-BQsYxxOL.js → dist/debounce-BQsYxxOL.js} +0 -0
- /package/{dialog-previous-button-CpuFLkQp.js → dist/dialog-previous-button-CpuFLkQp.js} +0 -0
- /package/{drawer-rqXAEeqd.js → dist/drawer-rqXAEeqd.js} +0 -0
- /package/{ebay-alert-dialog → dist/ebay-alert-dialog}/alert-dialog.d.ts +0 -0
- /package/{ebay-alert-dialog → dist/ebay-alert-dialog}/alert-dialog.d.ts.map +0 -0
- /package/{ebay-alert-dialog → dist/ebay-alert-dialog}/index.d.ts +0 -0
- /package/{ebay-alert-dialog → dist/ebay-alert-dialog}/index.d.ts.map +0 -0
- /package/{ebay-alert-dialog → dist/ebay-alert-dialog}/index.js +0 -0
- /package/{ebay-badge → dist/ebay-badge}/badge.d.ts +0 -0
- /package/{ebay-badge → dist/ebay-badge}/badge.d.ts.map +0 -0
- /package/{ebay-badge → dist/ebay-badge}/index.d.ts +0 -0
- /package/{ebay-badge → dist/ebay-badge}/index.d.ts.map +0 -0
- /package/{ebay-badge → dist/ebay-badge}/index.js +0 -0
- /package/{ebay-breadcrumbs → dist/ebay-breadcrumbs}/breadcrumb-item.d.ts +0 -0
- /package/{ebay-breadcrumbs → dist/ebay-breadcrumbs}/breadcrumb-item.d.ts.map +0 -0
- /package/{ebay-breadcrumbs → dist/ebay-breadcrumbs}/breadcrumbs.d.ts +0 -0
- /package/{ebay-breadcrumbs → dist/ebay-breadcrumbs}/breadcrumbs.d.ts.map +0 -0
- /package/{ebay-breadcrumbs → dist/ebay-breadcrumbs}/index.d.ts +0 -0
- /package/{ebay-breadcrumbs → dist/ebay-breadcrumbs}/index.d.ts.map +0 -0
- /package/{ebay-breadcrumbs → dist/ebay-breadcrumbs}/index.js +0 -0
- /package/{ebay-button → dist/ebay-button}/button-cell.d.ts +0 -0
- /package/{ebay-button → dist/ebay-button}/button-cell.d.ts.map +0 -0
- /package/{ebay-button → dist/ebay-button}/button-expand.d.ts +0 -0
- /package/{ebay-button → dist/ebay-button}/button-expand.d.ts.map +0 -0
- /package/{ebay-button → dist/ebay-button}/button-loading.d.ts +0 -0
- /package/{ebay-button → dist/ebay-button}/button-loading.d.ts.map +0 -0
- /package/{ebay-button → dist/ebay-button}/button-text.d.ts +0 -0
- /package/{ebay-button → dist/ebay-button}/button-text.d.ts.map +0 -0
- /package/{ebay-button → dist/ebay-button}/button.d.ts +0 -0
- /package/{ebay-button → dist/ebay-button}/button.d.ts.map +0 -0
- /package/{ebay-button → dist/ebay-button}/index.d.ts +0 -0
- /package/{ebay-button → dist/ebay-button}/index.d.ts.map +0 -0
- /package/{ebay-button → dist/ebay-button}/index.js +0 -0
- /package/{ebay-button → dist/ebay-button}/types.d.ts +0 -0
- /package/{ebay-button → dist/ebay-button}/types.d.ts.map +0 -0
- /package/{ebay-calendar → dist/ebay-calendar}/calendar.d.ts +0 -0
- /package/{ebay-calendar → dist/ebay-calendar}/calendar.d.ts.map +0 -0
- /package/{ebay-calendar → dist/ebay-calendar}/date-utils.d.ts +0 -0
- /package/{ebay-calendar → dist/ebay-calendar}/date-utils.d.ts.map +0 -0
- /package/{ebay-calendar → dist/ebay-calendar}/index.d.ts +0 -0
- /package/{ebay-calendar → dist/ebay-calendar}/index.d.ts.map +0 -0
- /package/{ebay-calendar → dist/ebay-calendar}/index.js +0 -0
- /package/{ebay-carousel → dist/ebay-carousel}/carousel-control-button.d.ts +0 -0
- /package/{ebay-carousel → dist/ebay-carousel}/carousel-control-button.d.ts.map +0 -0
- /package/{ebay-carousel → dist/ebay-carousel}/carousel-item.d.ts +0 -0
- /package/{ebay-carousel → dist/ebay-carousel}/carousel-item.d.ts.map +0 -0
- /package/{ebay-carousel → dist/ebay-carousel}/carousel-list.d.ts +0 -0
- /package/{ebay-carousel → dist/ebay-carousel}/carousel-list.d.ts.map +0 -0
- /package/{ebay-carousel → dist/ebay-carousel}/carousel.d.ts +0 -0
- /package/{ebay-carousel → dist/ebay-carousel}/carousel.d.ts.map +0 -0
- /package/{ebay-carousel → dist/ebay-carousel}/helpers.d.ts +0 -0
- /package/{ebay-carousel → dist/ebay-carousel}/helpers.d.ts.map +0 -0
- /package/{ebay-carousel → dist/ebay-carousel}/index.d.ts +0 -0
- /package/{ebay-carousel → dist/ebay-carousel}/index.d.ts.map +0 -0
- /package/{ebay-carousel → dist/ebay-carousel}/index.js +0 -0
- /package/{ebay-carousel → dist/ebay-carousel}/scroll-to-transition.d.ts +0 -0
- /package/{ebay-carousel → dist/ebay-carousel}/scroll-to-transition.d.ts.map +0 -0
- /package/{ebay-carousel → dist/ebay-carousel}/types.d.ts +0 -0
- /package/{ebay-carousel → dist/ebay-carousel}/types.d.ts.map +0 -0
- /package/{ebay-checkbox → dist/ebay-checkbox}/checkbox.d.ts +0 -0
- /package/{ebay-checkbox → dist/ebay-checkbox}/checkbox.d.ts.map +0 -0
- /package/{ebay-checkbox → dist/ebay-checkbox}/index.d.ts +0 -0
- /package/{ebay-checkbox → dist/ebay-checkbox}/index.d.ts.map +0 -0
- /package/{ebay-checkbox → dist/ebay-checkbox}/index.js +0 -0
- /package/{ebay-confirm-dialog → dist/ebay-confirm-dialog}/confirm-dialog.d.ts +0 -0
- /package/{ebay-confirm-dialog → dist/ebay-confirm-dialog}/confirm-dialog.d.ts.map +0 -0
- /package/{ebay-confirm-dialog → dist/ebay-confirm-dialog}/index.d.ts +0 -0
- /package/{ebay-confirm-dialog → dist/ebay-confirm-dialog}/index.d.ts.map +0 -0
- /package/{ebay-confirm-dialog → dist/ebay-confirm-dialog}/index.js +0 -0
- /package/{ebay-cta-button → dist/ebay-cta-button}/cta-button.d.ts +0 -0
- /package/{ebay-cta-button → dist/ebay-cta-button}/cta-button.d.ts.map +0 -0
- /package/{ebay-cta-button → dist/ebay-cta-button}/index.d.ts +0 -0
- /package/{ebay-cta-button → dist/ebay-cta-button}/index.d.ts.map +0 -0
- /package/{ebay-cta-button → dist/ebay-cta-button}/index.js +0 -0
- /package/{ebay-date-textbox → dist/ebay-date-textbox}/date-textbox.d.ts +0 -0
- /package/{ebay-date-textbox → dist/ebay-date-textbox}/date-textbox.d.ts.map +0 -0
- /package/{ebay-date-textbox → dist/ebay-date-textbox}/index.d.ts +0 -0
- /package/{ebay-date-textbox → dist/ebay-date-textbox}/index.d.ts.map +0 -0
- /package/{ebay-date-textbox → dist/ebay-date-textbox}/index.js +0 -0
- /package/{ebay-dialog-base → dist/ebay-dialog-base}/components/animation.d.ts +0 -0
- /package/{ebay-dialog-base → dist/ebay-dialog-base}/components/dialog-actions.d.ts +0 -0
- /package/{ebay-dialog-base → dist/ebay-dialog-base}/components/dialog-actions.d.ts.map +0 -0
- /package/{ebay-dialog-base → dist/ebay-dialog-base}/components/dialog-close-button.d.ts +0 -0
- /package/{ebay-dialog-base → dist/ebay-dialog-base}/components/dialog-close-button.d.ts.map +0 -0
- /package/{ebay-dialog-base → dist/ebay-dialog-base}/components/dialog-footer/index.js +0 -0
- /package/{ebay-dialog-base → dist/ebay-dialog-base}/components/dialog-footer.d.ts +0 -0
- /package/{ebay-dialog-base → dist/ebay-dialog-base}/components/dialog-footer.d.ts.map +0 -0
- /package/{ebay-dialog-base → dist/ebay-dialog-base}/components/dialog-header/index.js +0 -0
- /package/{ebay-dialog-base → dist/ebay-dialog-base}/components/dialog-header.d.ts +0 -0
- /package/{ebay-dialog-base → dist/ebay-dialog-base}/components/dialog-header.d.ts.map +0 -0
- /package/{ebay-dialog-base → dist/ebay-dialog-base}/components/dialog-previous-button.d.ts +0 -0
- /package/{ebay-dialog-base → dist/ebay-dialog-base}/components/dialog-previous-button.d.ts.map +0 -0
- /package/{ebay-dialog-base → dist/ebay-dialog-base}/components/dialogBase.d.ts +0 -0
- /package/{ebay-dialog-base → dist/ebay-dialog-base}/components/dialogBase.d.ts.map +0 -0
- /package/{ebay-dialog-base → dist/ebay-dialog-base}/dialog-base-with-state.d.ts +0 -0
- /package/{ebay-dialog-base → dist/ebay-dialog-base}/dialog-base-with-state.d.ts.map +0 -0
- /package/{ebay-dialog-base → dist/ebay-dialog-base}/index.d.ts +0 -0
- /package/{ebay-dialog-base → dist/ebay-dialog-base}/index.d.ts.map +0 -0
- /package/{ebay-dialog-base → dist/ebay-dialog-base}/index.js +0 -0
- /package/{ebay-drawer-dialog → dist/ebay-drawer-dialog}/components/drawer.d.ts +0 -0
- /package/{ebay-drawer-dialog → dist/ebay-drawer-dialog}/components/drawer.d.ts.map +0 -0
- /package/{ebay-drawer-dialog → dist/ebay-drawer-dialog}/index.d.ts +0 -0
- /package/{ebay-drawer-dialog → dist/ebay-drawer-dialog}/index.d.ts.map +0 -0
- /package/{ebay-drawer-dialog → dist/ebay-drawer-dialog}/index.js +0 -0
- /package/{ebay-eek → dist/ebay-eek}/eek-rating.d.ts +0 -0
- /package/{ebay-eek → dist/ebay-eek}/eek-rating.d.ts.map +0 -0
- /package/{ebay-eek → dist/ebay-eek}/eek-util.d.ts +0 -0
- /package/{ebay-eek → dist/ebay-eek}/eek-util.d.ts.map +0 -0
- /package/{ebay-eek → dist/ebay-eek}/index.d.ts +0 -0
- /package/{ebay-eek → dist/ebay-eek}/index.d.ts.map +0 -0
- /package/{ebay-eek → dist/ebay-eek}/index.js +0 -0
- /package/{ebay-fake-menu → dist/ebay-fake-menu}/index.d.ts +0 -0
- /package/{ebay-fake-menu → dist/ebay-fake-menu}/index.d.ts.map +0 -0
- /package/{ebay-fake-menu → dist/ebay-fake-menu}/index.js +0 -0
- /package/{ebay-fake-menu → dist/ebay-fake-menu}/menu-item/index.js +0 -0
- /package/{ebay-fake-menu → dist/ebay-fake-menu}/menu-item-separator.d.ts +0 -0
- /package/{ebay-fake-menu → dist/ebay-fake-menu}/menu-item-separator.d.ts.map +0 -0
- /package/{ebay-fake-menu → dist/ebay-fake-menu}/menu-item.d.ts +0 -0
- /package/{ebay-fake-menu → dist/ebay-fake-menu}/menu-item.d.ts.map +0 -0
- /package/{ebay-fake-menu → dist/ebay-fake-menu}/menu.d.ts +0 -0
- /package/{ebay-fake-menu → dist/ebay-fake-menu}/menu.d.ts.map +0 -0
- /package/{ebay-fake-menu-button → dist/ebay-fake-menu-button}/index.d.ts +0 -0
- /package/{ebay-fake-menu-button → dist/ebay-fake-menu-button}/index.d.ts.map +0 -0
- /package/{ebay-fake-menu-button → dist/ebay-fake-menu-button}/index.js +0 -0
- /package/{ebay-fake-menu-button → dist/ebay-fake-menu-button}/menu-button/index.js +0 -0
- /package/{ebay-fake-menu-button → dist/ebay-fake-menu-button}/menu-button-item.d.ts +0 -0
- /package/{ebay-fake-menu-button → dist/ebay-fake-menu-button}/menu-button-item.d.ts.map +0 -0
- /package/{ebay-fake-menu-button → dist/ebay-fake-menu-button}/menu-button-label.d.ts +0 -0
- /package/{ebay-fake-menu-button → dist/ebay-fake-menu-button}/menu-button-label.d.ts.map +0 -0
- /package/{ebay-fake-menu-button → dist/ebay-fake-menu-button}/menu-button-separator.d.ts +0 -0
- /package/{ebay-fake-menu-button → dist/ebay-fake-menu-button}/menu-button-separator.d.ts.map +0 -0
- /package/{ebay-fake-menu-button → dist/ebay-fake-menu-button}/menu-button.d.ts +0 -0
- /package/{ebay-fake-menu-button → dist/ebay-fake-menu-button}/menu-button.d.ts.map +0 -0
- /package/{ebay-fake-tabs → dist/ebay-fake-tabs}/fake-tabs.d.ts +0 -0
- /package/{ebay-fake-tabs → dist/ebay-fake-tabs}/fake-tabs.d.ts.map +0 -0
- /package/{ebay-fake-tabs → dist/ebay-fake-tabs}/index.d.ts +0 -0
- /package/{ebay-fake-tabs → dist/ebay-fake-tabs}/index.d.ts.map +0 -0
- /package/{ebay-fake-tabs → dist/ebay-fake-tabs}/index.js +0 -0
- /package/{ebay-fake-tabs → dist/ebay-fake-tabs}/tab.d.ts +0 -0
- /package/{ebay-fake-tabs → dist/ebay-fake-tabs}/tab.d.ts.map +0 -0
- /package/{ebay-field → dist/ebay-field}/description.d.ts +0 -0
- /package/{ebay-field → dist/ebay-field}/description.d.ts.map +0 -0
- /package/{ebay-field → dist/ebay-field}/field.d.ts +0 -0
- /package/{ebay-field → dist/ebay-field}/field.d.ts.map +0 -0
- /package/{ebay-field → dist/ebay-field}/index.d.ts +0 -0
- /package/{ebay-field → dist/ebay-field}/index.d.ts.map +0 -0
- /package/{ebay-field → dist/ebay-field}/index.js +0 -0
- /package/{ebay-field → dist/ebay-field}/label.d.ts +0 -0
- /package/{ebay-field → dist/ebay-field}/label.d.ts.map +0 -0
- /package/{ebay-field → dist/ebay-field}/types.d.ts +0 -0
- /package/{ebay-field → dist/ebay-field}/types.d.ts.map +0 -0
- /package/{ebay-fullscreen-dialog → dist/ebay-fullscreen-dialog}/fullscreen-dialog.d.ts +0 -0
- /package/{ebay-fullscreen-dialog → dist/ebay-fullscreen-dialog}/fullscreen-dialog.d.ts.map +0 -0
- /package/{ebay-fullscreen-dialog → dist/ebay-fullscreen-dialog}/index.d.ts +0 -0
- /package/{ebay-fullscreen-dialog → dist/ebay-fullscreen-dialog}/index.d.ts.map +0 -0
- /package/{ebay-fullscreen-dialog → dist/ebay-fullscreen-dialog}/index.js +0 -0
- /package/{ebay-icon → dist/ebay-icon}/icon.d.ts +0 -0
- /package/{ebay-icon → dist/ebay-icon}/icon.d.ts.map +0 -0
- /package/{ebay-icon → dist/ebay-icon}/index.d.ts +0 -0
- /package/{ebay-icon → dist/ebay-icon}/index.d.ts.map +0 -0
- /package/{ebay-icon → dist/ebay-icon}/index.js +0 -0
- /package/{ebay-icon → dist/ebay-icon}/types.d.ts +0 -0
- /package/{ebay-icon → dist/ebay-icon}/types.d.ts.map +0 -0
- /package/{ebay-icon-button → dist/ebay-icon-button}/icon-button.d.ts +0 -0
- /package/{ebay-icon-button → dist/ebay-icon-button}/icon-button.d.ts.map +0 -0
- /package/{ebay-icon-button → dist/ebay-icon-button}/index.d.ts +0 -0
- /package/{ebay-icon-button → dist/ebay-icon-button}/index.d.ts.map +0 -0
- /package/{ebay-icon-button → dist/ebay-icon-button}/index.js +0 -0
- /package/{ebay-infotip → dist/ebay-infotip}/ebay-infotip-content.d.ts +0 -0
- /package/{ebay-infotip → dist/ebay-infotip}/ebay-infotip-content.d.ts.map +0 -0
- /package/{ebay-infotip → dist/ebay-infotip}/ebay-infotip-heading.d.ts +0 -0
- /package/{ebay-infotip → dist/ebay-infotip}/ebay-infotip-heading.d.ts.map +0 -0
- /package/{ebay-infotip → dist/ebay-infotip}/ebay-infotip-host.d.ts +0 -0
- /package/{ebay-infotip → dist/ebay-infotip}/ebay-infotip-host.d.ts.map +0 -0
- /package/{ebay-infotip → dist/ebay-infotip}/ebay-infotip.d.ts +0 -0
- /package/{ebay-infotip → dist/ebay-infotip}/ebay-infotip.d.ts.map +0 -0
- /package/{ebay-infotip → dist/ebay-infotip}/index.d.ts +0 -0
- /package/{ebay-infotip → dist/ebay-infotip}/index.d.ts.map +0 -0
- /package/{ebay-infotip → dist/ebay-infotip}/index.js +0 -0
- /package/{ebay-infotip → dist/ebay-infotip}/types.d.ts +0 -0
- /package/{ebay-infotip → dist/ebay-infotip}/types.d.ts.map +0 -0
- /package/{ebay-inline-notice → dist/ebay-inline-notice}/index.d.ts +0 -0
- /package/{ebay-inline-notice → dist/ebay-inline-notice}/index.d.ts.map +0 -0
- /package/{ebay-inline-notice → dist/ebay-inline-notice}/index.js +0 -0
- /package/{ebay-inline-notice → dist/ebay-inline-notice}/inline-notice.d.ts +0 -0
- /package/{ebay-inline-notice → dist/ebay-inline-notice}/inline-notice.d.ts.map +0 -0
- /package/{ebay-inline-notice → dist/ebay-inline-notice}/types.d.ts +0 -0
- /package/{ebay-inline-notice → dist/ebay-inline-notice}/types.d.ts.map +0 -0
- /package/{ebay-lightbox-dialog → dist/ebay-lightbox-dialog}/index.d.ts +0 -0
- /package/{ebay-lightbox-dialog → dist/ebay-lightbox-dialog}/index.d.ts.map +0 -0
- /package/{ebay-lightbox-dialog → dist/ebay-lightbox-dialog}/index.js +0 -0
- /package/{ebay-lightbox-dialog → dist/ebay-lightbox-dialog}/lightbox-dialog.d.ts +0 -0
- /package/{ebay-lightbox-dialog → dist/ebay-lightbox-dialog}/lightbox-dialog.d.ts.map +0 -0
- /package/{ebay-listbox-button → dist/ebay-listbox-button}/index.d.ts +0 -0
- /package/{ebay-listbox-button → dist/ebay-listbox-button}/index.d.ts.map +0 -0
- /package/{ebay-listbox-button → dist/ebay-listbox-button}/index.js +0 -0
- /package/{ebay-listbox-button → dist/ebay-listbox-button}/listbox-button-option.d.ts +0 -0
- /package/{ebay-listbox-button → dist/ebay-listbox-button}/listbox-button-option.d.ts.map +0 -0
- /package/{ebay-listbox-button → dist/ebay-listbox-button}/listbox-button.d.ts +0 -0
- /package/{ebay-listbox-button → dist/ebay-listbox-button}/listbox-button.d.ts.map +0 -0
- /package/{ebay-menu → dist/ebay-menu}/index.d.ts +0 -0
- /package/{ebay-menu → dist/ebay-menu}/index.d.ts.map +0 -0
- /package/{ebay-menu → dist/ebay-menu}/index.js +0 -0
- /package/{ebay-menu → dist/ebay-menu}/menu-item-separator.d.ts +0 -0
- /package/{ebay-menu → dist/ebay-menu}/menu-item-separator.d.ts.map +0 -0
- /package/{ebay-menu → dist/ebay-menu}/menu-item.d.ts +0 -0
- /package/{ebay-menu → dist/ebay-menu}/menu-item.d.ts.map +0 -0
- /package/{ebay-menu → dist/ebay-menu}/menu.d.ts +0 -0
- /package/{ebay-menu → dist/ebay-menu}/menu.d.ts.map +0 -0
- /package/{ebay-menu → dist/ebay-menu}/types.d.ts +0 -0
- /package/{ebay-menu → dist/ebay-menu}/types.d.ts.map +0 -0
- /package/{ebay-menu-button → dist/ebay-menu-button}/index.d.ts +0 -0
- /package/{ebay-menu-button → dist/ebay-menu-button}/index.d.ts.map +0 -0
- /package/{ebay-menu-button → dist/ebay-menu-button}/index.js +0 -0
- /package/{ebay-menu-button → dist/ebay-menu-button}/menu-button-item.d.ts +0 -0
- /package/{ebay-menu-button → dist/ebay-menu-button}/menu-button-item.d.ts.map +0 -0
- /package/{ebay-menu-button → dist/ebay-menu-button}/menu-button-label.d.ts +0 -0
- /package/{ebay-menu-button → dist/ebay-menu-button}/menu-button-label.d.ts.map +0 -0
- /package/{ebay-menu-button → dist/ebay-menu-button}/menu-button-separator.d.ts +0 -0
- /package/{ebay-menu-button → dist/ebay-menu-button}/menu-button-separator.d.ts.map +0 -0
- /package/{ebay-menu-button → dist/ebay-menu-button}/menu-button.d.ts +0 -0
- /package/{ebay-menu-button → dist/ebay-menu-button}/menu-button.d.ts.map +0 -0
- /package/{ebay-menu-button → dist/ebay-menu-button}/types.d.ts +0 -0
- /package/{ebay-menu-button → dist/ebay-menu-button}/types.d.ts.map +0 -0
- /package/{ebay-notice-base → dist/ebay-notice-base}/components/ebay-notice-content/index.d.ts +0 -0
- /package/{ebay-notice-base → dist/ebay-notice-base}/components/ebay-notice-content/index.d.ts.map +0 -0
- /package/{ebay-notice-base → dist/ebay-notice-base}/components/ebay-notice-content/notice-content.d.ts +0 -0
- /package/{ebay-notice-base → dist/ebay-notice-base}/components/ebay-notice-content/notice-content.d.ts.map +0 -0
- /package/{ebay-notice-base → dist/ebay-notice-base}/components/ebay-notice-title/index.d.ts +0 -0
- /package/{ebay-notice-base → dist/ebay-notice-base}/components/ebay-notice-title/index.d.ts.map +0 -0
- /package/{ebay-notice-base → dist/ebay-notice-base}/components/ebay-notice-title/notice-title.d.ts +0 -0
- /package/{ebay-notice-base → dist/ebay-notice-base}/components/ebay-notice-title/notice-title.d.ts.map +0 -0
- /package/{ebay-notice-base → dist/ebay-notice-base}/index.d.ts +0 -0
- /package/{ebay-notice-base → dist/ebay-notice-base}/index.d.ts.map +0 -0
- /package/{ebay-notice-base → dist/ebay-notice-base}/index.js +0 -0
- /package/{ebay-page-notice → dist/ebay-page-notice}/index.d.ts +0 -0
- /package/{ebay-page-notice → dist/ebay-page-notice}/index.d.ts.map +0 -0
- /package/{ebay-page-notice → dist/ebay-page-notice}/index.js +0 -0
- /package/{ebay-page-notice → dist/ebay-page-notice}/page-notice-cta.d.ts +0 -0
- /package/{ebay-page-notice → dist/ebay-page-notice}/page-notice-cta.d.ts.map +0 -0
- /package/{ebay-page-notice → dist/ebay-page-notice}/page-notice-footer.d.ts +0 -0
- /package/{ebay-page-notice → dist/ebay-page-notice}/page-notice-footer.d.ts.map +0 -0
- /package/{ebay-page-notice → dist/ebay-page-notice}/page-notice-title.d.ts +0 -0
- /package/{ebay-page-notice → dist/ebay-page-notice}/page-notice-title.d.ts.map +0 -0
- /package/{ebay-page-notice → dist/ebay-page-notice}/page-notice.d.ts +0 -0
- /package/{ebay-page-notice → dist/ebay-page-notice}/page-notice.d.ts.map +0 -0
- /package/{ebay-pagination → dist/ebay-pagination}/const.d.ts +0 -0
- /package/{ebay-pagination → dist/ebay-pagination}/const.d.ts.map +0 -0
- /package/{ebay-pagination → dist/ebay-pagination}/helpers.d.ts +0 -0
- /package/{ebay-pagination → dist/ebay-pagination}/helpers.d.ts.map +0 -0
- /package/{ebay-pagination → dist/ebay-pagination}/index.d.ts +0 -0
- /package/{ebay-pagination → dist/ebay-pagination}/index.d.ts.map +0 -0
- /package/{ebay-pagination → dist/ebay-pagination}/index.js +0 -0
- /package/{ebay-pagination → dist/ebay-pagination}/pagination-item.d.ts +0 -0
- /package/{ebay-pagination → dist/ebay-pagination}/pagination-item.d.ts.map +0 -0
- /package/{ebay-pagination → dist/ebay-pagination}/pagination.d.ts +0 -0
- /package/{ebay-pagination → dist/ebay-pagination}/pagination.d.ts.map +0 -0
- /package/{ebay-pagination → dist/ebay-pagination}/types.d.ts +0 -0
- /package/{ebay-pagination → dist/ebay-pagination}/types.d.ts.map +0 -0
- /package/{ebay-panel-dialog → dist/ebay-panel-dialog}/index.d.ts +0 -0
- /package/{ebay-panel-dialog → dist/ebay-panel-dialog}/index.d.ts.map +0 -0
- /package/{ebay-panel-dialog → dist/ebay-panel-dialog}/index.js +0 -0
- /package/{ebay-panel-dialog → dist/ebay-panel-dialog}/panel-dialog.d.ts +0 -0
- /package/{ebay-panel-dialog → dist/ebay-panel-dialog}/panel-dialog.d.ts.map +0 -0
- /package/{ebay-progress-bar → dist/ebay-progress-bar}/index.d.ts +0 -0
- /package/{ebay-progress-bar → dist/ebay-progress-bar}/index.d.ts.map +0 -0
- /package/{ebay-progress-bar → dist/ebay-progress-bar}/index.js +0 -0
- /package/{ebay-progress-bar → dist/ebay-progress-bar}/progress-bar.d.ts +0 -0
- /package/{ebay-progress-bar → dist/ebay-progress-bar}/progress-bar.d.ts.map +0 -0
- /package/{ebay-progress-spinner → dist/ebay-progress-spinner}/index.d.ts +0 -0
- /package/{ebay-progress-spinner → dist/ebay-progress-spinner}/index.d.ts.map +0 -0
- /package/{ebay-progress-spinner → dist/ebay-progress-spinner}/index.js +0 -0
- /package/{ebay-progress-spinner → dist/ebay-progress-spinner}/progress-spinner.d.ts +0 -0
- /package/{ebay-progress-spinner → dist/ebay-progress-spinner}/progress-spinner.d.ts.map +0 -0
- /package/{ebay-progress-stepper → dist/ebay-progress-stepper}/ebay-progress-step.d.ts +0 -0
- /package/{ebay-progress-stepper → dist/ebay-progress-stepper}/ebay-progress-step.d.ts.map +0 -0
- /package/{ebay-progress-stepper → dist/ebay-progress-stepper}/ebay-progress-stepper.d.ts +0 -0
- /package/{ebay-progress-stepper → dist/ebay-progress-stepper}/ebay-progress-stepper.d.ts.map +0 -0
- /package/{ebay-progress-stepper → dist/ebay-progress-stepper}/ebay-progress-title.d.ts +0 -0
- /package/{ebay-progress-stepper → dist/ebay-progress-stepper}/ebay-progress-title.d.ts.map +0 -0
- /package/{ebay-progress-stepper → dist/ebay-progress-stepper}/index.d.ts +0 -0
- /package/{ebay-progress-stepper → dist/ebay-progress-stepper}/index.d.ts.map +0 -0
- /package/{ebay-progress-stepper → dist/ebay-progress-stepper}/index.js +0 -0
- /package/{ebay-progress-stepper → dist/ebay-progress-stepper}/types.d.ts +0 -0
- /package/{ebay-progress-stepper → dist/ebay-progress-stepper}/types.d.ts.map +0 -0
- /package/{ebay-radio → dist/ebay-radio}/index.d.ts +0 -0
- /package/{ebay-radio → dist/ebay-radio}/index.d.ts.map +0 -0
- /package/{ebay-radio → dist/ebay-radio}/index.js +0 -0
- /package/{ebay-radio → dist/ebay-radio}/radio/index.js +0 -0
- /package/{ebay-radio → dist/ebay-radio}/radio.d.ts +0 -0
- /package/{ebay-radio → dist/ebay-radio}/radio.d.ts.map +0 -0
- /package/{ebay-section-notice → dist/ebay-section-notice}/index.d.ts +0 -0
- /package/{ebay-section-notice → dist/ebay-section-notice}/index.d.ts.map +0 -0
- /package/{ebay-section-notice → dist/ebay-section-notice}/index.js +0 -0
- /package/{ebay-section-notice → dist/ebay-section-notice}/section-notice-cta.d.ts +0 -0
- /package/{ebay-section-notice → dist/ebay-section-notice}/section-notice-cta.d.ts.map +0 -0
- /package/{ebay-section-notice → dist/ebay-section-notice}/section-notice-footer.d.ts +0 -0
- /package/{ebay-section-notice → dist/ebay-section-notice}/section-notice-footer.d.ts.map +0 -0
- /package/{ebay-section-notice → dist/ebay-section-notice}/section-notice-title.d.ts +0 -0
- /package/{ebay-section-notice → dist/ebay-section-notice}/section-notice-title.d.ts.map +0 -0
- /package/{ebay-section-notice → dist/ebay-section-notice}/section-notice.d.ts +0 -0
- /package/{ebay-section-notice → dist/ebay-section-notice}/section-notice.d.ts.map +0 -0
- /package/{ebay-section-title → dist/ebay-section-title}/cta.d.ts +0 -0
- /package/{ebay-section-title → dist/ebay-section-title}/cta.d.ts.map +0 -0
- /package/{ebay-section-title → dist/ebay-section-title}/index.d.ts +0 -0
- /package/{ebay-section-title → dist/ebay-section-title}/index.d.ts.map +0 -0
- /package/{ebay-section-title → dist/ebay-section-title}/index.js +0 -0
- /package/{ebay-section-title → dist/ebay-section-title}/info.d.ts +0 -0
- /package/{ebay-section-title → dist/ebay-section-title}/info.d.ts.map +0 -0
- /package/{ebay-section-title → dist/ebay-section-title}/overflow.d.ts +0 -0
- /package/{ebay-section-title → dist/ebay-section-title}/overflow.d.ts.map +0 -0
- /package/{ebay-section-title → dist/ebay-section-title}/section-title.d.ts +0 -0
- /package/{ebay-section-title → dist/ebay-section-title}/section-title.d.ts.map +0 -0
- /package/{ebay-section-title → dist/ebay-section-title}/subtitle.d.ts +0 -0
- /package/{ebay-section-title → dist/ebay-section-title}/subtitle.d.ts.map +0 -0
- /package/{ebay-section-title → dist/ebay-section-title}/title.d.ts +0 -0
- /package/{ebay-section-title → dist/ebay-section-title}/title.d.ts.map +0 -0
- /package/{ebay-segmented-buttons → dist/ebay-segmented-buttons}/button.d.ts +0 -0
- /package/{ebay-segmented-buttons → dist/ebay-segmented-buttons}/button.d.ts.map +0 -0
- /package/{ebay-segmented-buttons → dist/ebay-segmented-buttons}/index.d.ts +0 -0
- /package/{ebay-segmented-buttons → dist/ebay-segmented-buttons}/index.d.ts.map +0 -0
- /package/{ebay-segmented-buttons → dist/ebay-segmented-buttons}/index.js +0 -0
- /package/{ebay-segmented-buttons → dist/ebay-segmented-buttons}/segmented-buttons.d.ts +0 -0
- /package/{ebay-segmented-buttons → dist/ebay-segmented-buttons}/segmented-buttons.d.ts.map +0 -0
- /package/{ebay-segmented-buttons → dist/ebay-segmented-buttons}/types.d.ts +0 -0
- /package/{ebay-segmented-buttons → dist/ebay-segmented-buttons}/types.d.ts.map +0 -0
- /package/{ebay-select → dist/ebay-select}/ebay-select-option.d.ts +0 -0
- /package/{ebay-select → dist/ebay-select}/ebay-select-option.d.ts.map +0 -0
- /package/{ebay-select → dist/ebay-select}/ebay-select.d.ts +0 -0
- /package/{ebay-select → dist/ebay-select}/ebay-select.d.ts.map +0 -0
- /package/{ebay-select → dist/ebay-select}/index.d.ts +0 -0
- /package/{ebay-select → dist/ebay-select}/index.d.ts.map +0 -0
- /package/{ebay-select → dist/ebay-select}/index.js +0 -0
- /package/{ebay-signal → dist/ebay-signal}/index.d.ts +0 -0
- /package/{ebay-signal → dist/ebay-signal}/index.d.ts.map +0 -0
- /package/{ebay-signal → dist/ebay-signal}/index.js +0 -0
- /package/{ebay-signal → dist/ebay-signal}/signal.d.ts +0 -0
- /package/{ebay-signal → dist/ebay-signal}/signal.d.ts.map +0 -0
- /package/{ebay-snackbar-dialog → dist/ebay-snackbar-dialog}/components/ebay-snackbar-dialog-action.d.ts +0 -0
- /package/{ebay-snackbar-dialog → dist/ebay-snackbar-dialog}/components/ebay-snackbar-dialog-action.d.ts.map +0 -0
- /package/{ebay-snackbar-dialog → dist/ebay-snackbar-dialog}/components/ebay-snackbar-dialog.d.ts +0 -0
- /package/{ebay-snackbar-dialog → dist/ebay-snackbar-dialog}/components/ebay-snackbar-dialog.d.ts.map +0 -0
- /package/{ebay-snackbar-dialog → dist/ebay-snackbar-dialog}/index.d.ts +0 -0
- /package/{ebay-snackbar-dialog → dist/ebay-snackbar-dialog}/index.d.ts.map +0 -0
- /package/{ebay-snackbar-dialog → dist/ebay-snackbar-dialog}/index.js +0 -0
- /package/{ebay-split-button → dist/ebay-split-button}/index.d.ts +0 -0
- /package/{ebay-split-button → dist/ebay-split-button}/index.d.ts.map +0 -0
- /package/{ebay-split-button → dist/ebay-split-button}/index.js +0 -0
- /package/{ebay-split-button → dist/ebay-split-button}/split-button.d.ts +0 -0
- /package/{ebay-split-button → dist/ebay-split-button}/split-button.d.ts.map +0 -0
- /package/{ebay-split-button → dist/ebay-split-button}/types.d.ts +0 -0
- /package/{ebay-split-button → dist/ebay-split-button}/types.d.ts.map +0 -0
- /package/{ebay-star-rating → dist/ebay-star-rating}/index.d.ts +0 -0
- /package/{ebay-star-rating → dist/ebay-star-rating}/index.d.ts.map +0 -0
- /package/{ebay-star-rating → dist/ebay-star-rating}/index.js +0 -0
- /package/{ebay-star-rating → dist/ebay-star-rating}/star-rating.d.ts +0 -0
- /package/{ebay-star-rating → dist/ebay-star-rating}/star-rating.d.ts.map +0 -0
- /package/{ebay-star-rating-select → dist/ebay-star-rating-select}/index.d.ts +0 -0
- /package/{ebay-star-rating-select → dist/ebay-star-rating-select}/index.d.ts.map +0 -0
- /package/{ebay-star-rating-select → dist/ebay-star-rating-select}/index.js +0 -0
- /package/{ebay-star-rating-select → dist/ebay-star-rating-select}/star-rating-select.d.ts +0 -0
- /package/{ebay-star-rating-select → dist/ebay-star-rating-select}/star-rating-select.d.ts.map +0 -0
- /package/{ebay-svg → dist/ebay-svg}/index.d.ts +0 -0
- /package/{ebay-svg → dist/ebay-svg}/index.d.ts.map +0 -0
- /package/{ebay-svg → dist/ebay-svg}/index.js +0 -0
- /package/{ebay-svg → dist/ebay-svg}/svg.d.ts +0 -0
- /package/{ebay-svg → dist/ebay-svg}/svg.d.ts.map +0 -0
- /package/{ebay-svg → dist/ebay-svg}/symbols.d.ts +0 -0
- /package/{ebay-svg → dist/ebay-svg}/symbols.d.ts.map +0 -0
- /package/{ebay-switch → dist/ebay-switch}/ebay-switch.d.ts +0 -0
- /package/{ebay-switch → dist/ebay-switch}/ebay-switch.d.ts.map +0 -0
- /package/{ebay-switch → dist/ebay-switch}/index.d.ts +0 -0
- /package/{ebay-switch → dist/ebay-switch}/index.d.ts.map +0 -0
- /package/{ebay-switch → dist/ebay-switch}/index.js +0 -0
- /package/{ebay-tabs → dist/ebay-tabs}/index.d.ts +0 -0
- /package/{ebay-tabs → dist/ebay-tabs}/index.d.ts.map +0 -0
- /package/{ebay-tabs → dist/ebay-tabs}/index.js +0 -0
- /package/{ebay-tabs → dist/ebay-tabs}/tab-panel.d.ts +0 -0
- /package/{ebay-tabs → dist/ebay-tabs}/tab-panel.d.ts.map +0 -0
- /package/{ebay-tabs → dist/ebay-tabs}/tab.d.ts +0 -0
- /package/{ebay-tabs → dist/ebay-tabs}/tab.d.ts.map +0 -0
- /package/{ebay-tabs → dist/ebay-tabs}/tabs.d.ts +0 -0
- /package/{ebay-tabs → dist/ebay-tabs}/tabs.d.ts.map +0 -0
- /package/{ebay-tabs → dist/ebay-tabs}/types.d.ts +0 -0
- /package/{ebay-tabs → dist/ebay-tabs}/types.d.ts.map +0 -0
- /package/{ebay-textbox → dist/ebay-textbox}/index.d.ts +0 -0
- /package/{ebay-textbox → dist/ebay-textbox}/index.d.ts.map +0 -0
- /package/{ebay-textbox → dist/ebay-textbox}/index.js +0 -0
- /package/{ebay-textbox → dist/ebay-textbox}/postfix-icon.d.ts +0 -0
- /package/{ebay-textbox → dist/ebay-textbox}/postfix-icon.d.ts.map +0 -0
- /package/{ebay-textbox → dist/ebay-textbox}/postfix-text.d.ts +0 -0
- /package/{ebay-textbox → dist/ebay-textbox}/postfix-text.d.ts.map +0 -0
- /package/{ebay-textbox → dist/ebay-textbox}/prefix-icon.d.ts +0 -0
- /package/{ebay-textbox → dist/ebay-textbox}/prefix-icon.d.ts.map +0 -0
- /package/{ebay-textbox → dist/ebay-textbox}/prefix-text.d.ts +0 -0
- /package/{ebay-textbox → dist/ebay-textbox}/prefix-text.d.ts.map +0 -0
- /package/{ebay-textbox → dist/ebay-textbox}/textbox.d.ts +0 -0
- /package/{ebay-textbox → dist/ebay-textbox}/textbox.d.ts.map +0 -0
- /package/{ebay-textbox → dist/ebay-textbox}/types.d.ts +0 -0
- /package/{ebay-textbox → dist/ebay-textbox}/types.d.ts.map +0 -0
- /package/{ebay-toast-dialog → dist/ebay-toast-dialog}/components/toast.d.ts +0 -0
- /package/{ebay-toast-dialog → dist/ebay-toast-dialog}/components/toast.d.ts.map +0 -0
- /package/{ebay-toast-dialog → dist/ebay-toast-dialog}/index.d.ts +0 -0
- /package/{ebay-toast-dialog → dist/ebay-toast-dialog}/index.d.ts.map +0 -0
- /package/{ebay-toast-dialog → dist/ebay-toast-dialog}/index.js +0 -0
- /package/{ebay-tooltip → dist/ebay-tooltip}/ebay-tooltip-content.d.ts +0 -0
- /package/{ebay-tooltip → dist/ebay-tooltip}/ebay-tooltip-content.d.ts.map +0 -0
- /package/{ebay-tooltip → dist/ebay-tooltip}/ebay-tooltip-host.d.ts +0 -0
- /package/{ebay-tooltip → dist/ebay-tooltip}/ebay-tooltip-host.d.ts.map +0 -0
- /package/{ebay-tooltip → dist/ebay-tooltip}/ebay-tooltip.d.ts +0 -0
- /package/{ebay-tooltip → dist/ebay-tooltip}/ebay-tooltip.d.ts.map +0 -0
- /package/{ebay-tooltip → dist/ebay-tooltip}/index.d.ts +0 -0
- /package/{ebay-tooltip → dist/ebay-tooltip}/index.d.ts.map +0 -0
- /package/{ebay-tooltip → dist/ebay-tooltip}/index.js +0 -0
- /package/{ebay-tourtip → dist/ebay-tourtip}/ebay-tourtip-content.d.ts +0 -0
- /package/{ebay-tourtip → dist/ebay-tourtip}/ebay-tourtip-content.d.ts.map +0 -0
- /package/{ebay-tourtip → dist/ebay-tourtip}/ebay-tourtip-footer.d.ts +0 -0
- /package/{ebay-tourtip → dist/ebay-tourtip}/ebay-tourtip-footer.d.ts.map +0 -0
- /package/{ebay-tourtip → dist/ebay-tourtip}/ebay-tourtip-heading.d.ts +0 -0
- /package/{ebay-tourtip → dist/ebay-tourtip}/ebay-tourtip-heading.d.ts.map +0 -0
- /package/{ebay-tourtip → dist/ebay-tourtip}/ebay-tourtip-host.d.ts +0 -0
- /package/{ebay-tourtip → dist/ebay-tourtip}/ebay-tourtip-host.d.ts.map +0 -0
- /package/{ebay-tourtip → dist/ebay-tourtip}/ebay-tourtip.d.ts +0 -0
- /package/{ebay-tourtip → dist/ebay-tourtip}/ebay-tourtip.d.ts.map +0 -0
- /package/{ebay-tourtip → dist/ebay-tourtip}/index.d.ts +0 -0
- /package/{ebay-tourtip → dist/ebay-tourtip}/index.d.ts.map +0 -0
- /package/{ebay-tourtip → dist/ebay-tourtip}/index.js +0 -0
- /package/{ebay-video → dist/ebay-video}/const.d.ts +0 -0
- /package/{ebay-video → dist/ebay-video}/const.d.ts.map +0 -0
- /package/{ebay-video → dist/ebay-video}/controls.d.ts +0 -0
- /package/{ebay-video → dist/ebay-video}/controls.d.ts.map +0 -0
- /package/{ebay-video → dist/ebay-video}/index.d.ts +0 -0
- /package/{ebay-video → dist/ebay-video}/index.d.ts.map +0 -0
- /package/{ebay-video → dist/ebay-video}/index.js +0 -0
- /package/{ebay-video → dist/ebay-video}/reportButton.d.ts +0 -0
- /package/{ebay-video → dist/ebay-video}/reportButton.d.ts.map +0 -0
- /package/{ebay-video → dist/ebay-video}/source.d.ts +0 -0
- /package/{ebay-video → dist/ebay-video}/source.d.ts.map +0 -0
- /package/{ebay-video → dist/ebay-video}/types.d.ts +0 -0
- /package/{ebay-video → dist/ebay-video}/types.d.ts.map +0 -0
- /package/{ebay-video → dist/ebay-video}/video.d.ts +0 -0
- /package/{ebay-video → dist/ebay-video}/video.d.ts.map +0 -0
- /package/{events → dist/events}/index.d.ts +0 -0
- /package/{events → dist/events}/index.d.ts.map +0 -0
- /package/{events → dist/events}/index.js +0 -0
- /package/{icon-TuxfQndO.js → dist/icon-TuxfQndO.js} +0 -0
- /package/{icon-button-Cwaj-eT9.js → dist/icon-button-Cwaj-eT9.js} +0 -0
- /package/{label-CnrpYJ-g.js → dist/label-CnrpYJ-g.js} +0 -0
- /package/{menu-CV-INYLM.js → dist/menu-CV-INYLM.js} +0 -0
- /package/{menu-_LzP6yje.js → dist/menu-_LzP6yje.js} +0 -0
- /package/{menu-button-BZ66jxvI.js → dist/menu-button-BZ66jxvI.js} +0 -0
- /package/{notice-content-9iF4T8uB.js → dist/notice-content-9iF4T8uB.js} +0 -0
- /package/{notice-content-C0ZStfuX.js → dist/notice-content-C0ZStfuX.js} +0 -0
- /package/{notice-footer-Cw1DMzoB.js → dist/notice-footer-Cw1DMzoB.js} +0 -0
- /package/{progress-spinner-U2qOANON.js → dist/progress-spinner-U2qOANON.js} +0 -0
- /package/{range-DOsPN0h5.js → dist/range-DOsPN0h5.js} +0 -0
- /package/{textbox-dUhinDwj.js → dist/textbox-dUhinDwj.js} +0 -0
- /package/{use-roving-index-DoAVBgsp.js → dist/use-roving-index-DoAVBgsp.js} +0 -0
- /package/{use-tooltip-CL3_zAeg.js → dist/use-tooltip-CL3_zAeg.js} +0 -0
- /package/{utils → dist/utils}/index.d.ts +0 -0
- /package/{utils → dist/utils}/index.d.ts.map +0 -0
- /package/{utils → dist/utils}/index.js +0 -0
- /package/{ebay-alert-dialog → src/ebay-alert-dialog}/README.md +0 -0
- /package/{ebay-badge → src/ebay-badge}/README.md +0 -0
- /package/{ebay-breadcrumbs → src/ebay-breadcrumbs}/README.md +0 -0
- /package/{ebay-button → src/ebay-button}/README.md +0 -0
- /package/{ebay-calendar → src/ebay-calendar}/README.md +0 -0
- /package/{ebay-carousel → src/ebay-carousel}/README.md +0 -0
- /package/{ebay-checkbox → src/ebay-checkbox}/README.md +0 -0
- /package/{ebay-confirm-dialog → src/ebay-confirm-dialog}/README.md +0 -0
- /package/{ebay-cta-button → src/ebay-cta-button}/README.md +0 -0
- /package/{ebay-date-textbox → src/ebay-date-textbox}/README.md +0 -0
- /package/{ebay-dialog-base → src/ebay-dialog-base}/README.md +0 -0
- /package/{ebay-drawer-dialog → src/ebay-drawer-dialog}/README.md +0 -0
- /package/{ebay-eek → src/ebay-eek}/README.md +0 -0
- /package/{ebay-fake-menu → src/ebay-fake-menu}/README.md +0 -0
- /package/{ebay-fake-menu-button → src/ebay-fake-menu-button}/README.md +0 -0
- /package/{ebay-fake-tabs → src/ebay-fake-tabs}/README.md +0 -0
- /package/{ebay-field → src/ebay-field}/README.md +0 -0
- /package/{ebay-fullscreen-dialog → src/ebay-fullscreen-dialog}/README.md +0 -0
- /package/{ebay-icon → src/ebay-icon}/README.md +0 -0
- /package/{ebay-icon-button → src/ebay-icon-button}/README.md +0 -0
- /package/{ebay-infotip → src/ebay-infotip}/README.md +0 -0
- /package/{ebay-inline-notice → src/ebay-inline-notice}/README.md +0 -0
- /package/{ebay-lightbox-dialog → src/ebay-lightbox-dialog}/README.md +0 -0
- /package/{ebay-listbox-button → src/ebay-listbox-button}/README.md +0 -0
- /package/{ebay-menu → src/ebay-menu}/README.md +0 -0
- /package/{ebay-menu-button → src/ebay-menu-button}/README.md +0 -0
- /package/{ebay-page-notice → src/ebay-page-notice}/README.md +0 -0
- /package/{ebay-pagination → src/ebay-pagination}/README.md +0 -0
- /package/{ebay-panel-dialog → src/ebay-panel-dialog}/README.md +0 -0
- /package/{ebay-progress-bar → src/ebay-progress-bar}/README.md +0 -0
- /package/{ebay-progress-spinner → src/ebay-progress-spinner}/README.md +0 -0
- /package/{ebay-progress-stepper → src/ebay-progress-stepper}/README.md +0 -0
- /package/{ebay-radio → src/ebay-radio}/README.md +0 -0
- /package/{ebay-section-notice → src/ebay-section-notice}/README.md +0 -0
- /package/{ebay-section-title → src/ebay-section-title}/README.md +0 -0
- /package/{ebay-segmented-buttons → src/ebay-segmented-buttons}/README.md +0 -0
- /package/{ebay-select → src/ebay-select}/README.md +0 -0
- /package/{ebay-signal → src/ebay-signal}/README.md +0 -0
- /package/{ebay-snackbar-dialog → src/ebay-snackbar-dialog}/README.md +0 -0
- /package/{ebay-split-button → src/ebay-split-button}/README.md +0 -0
- /package/{ebay-star-rating → src/ebay-star-rating}/README.md +0 -0
- /package/{ebay-star-rating-select → src/ebay-star-rating-select}/README.md +0 -0
- /package/{ebay-svg → src/ebay-svg}/README.md +0 -0
- /package/{ebay-switch → src/ebay-switch}/README.md +0 -0
- /package/{ebay-tabs → src/ebay-tabs}/README.md +0 -0
- /package/{ebay-textbox → src/ebay-textbox}/README.md +0 -0
- /package/{ebay-toast-dialog → src/ebay-toast-dialog}/README.md +0 -0
- /package/{ebay-tooltip → src/ebay-tooltip}/README.md +0 -0
- /package/{ebay-tourtip → src/ebay-tourtip}/README.md +0 -0
- /package/{ebay-video → src/ebay-video}/README.md +0 -0
- /package/{events → src/events}/README.md +0 -0
- /package/{utils → src/utils}/README.md +0 -0
|
@@ -0,0 +1,679 @@
|
|
|
1
|
+
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
2
|
+
|
|
3
|
+
exports[`star-rating-select renders basic fieldset 1`] = `
|
|
4
|
+
<DocumentFragment>
|
|
5
|
+
<fieldset>
|
|
6
|
+
<legend>
|
|
7
|
+
Rate Product
|
|
8
|
+
</legend>
|
|
9
|
+
<div
|
|
10
|
+
class="star-rating-select"
|
|
11
|
+
>
|
|
12
|
+
<span
|
|
13
|
+
class="star-rating-select__radio"
|
|
14
|
+
>
|
|
15
|
+
<input
|
|
16
|
+
aria-label="1 star"
|
|
17
|
+
class="star-rating-select__control"
|
|
18
|
+
name="star-rating"
|
|
19
|
+
type="radio"
|
|
20
|
+
value="1"
|
|
21
|
+
/>
|
|
22
|
+
<span
|
|
23
|
+
class="star-rating-select__radio-icon"
|
|
24
|
+
>
|
|
25
|
+
<svg
|
|
26
|
+
aria-hidden="true"
|
|
27
|
+
class="star-rating__icon icon icon--star-dynamic"
|
|
28
|
+
focusable="false"
|
|
29
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
30
|
+
>
|
|
31
|
+
<use
|
|
32
|
+
xlink:href="#icon-star-dynamic"
|
|
33
|
+
/>
|
|
34
|
+
</svg>
|
|
35
|
+
</span>
|
|
36
|
+
</span>
|
|
37
|
+
<span
|
|
38
|
+
class="star-rating-select__radio"
|
|
39
|
+
>
|
|
40
|
+
<input
|
|
41
|
+
aria-label="2 stars"
|
|
42
|
+
class="star-rating-select__control"
|
|
43
|
+
name="star-rating"
|
|
44
|
+
type="radio"
|
|
45
|
+
value="2"
|
|
46
|
+
/>
|
|
47
|
+
<span
|
|
48
|
+
class="star-rating-select__radio-icon"
|
|
49
|
+
>
|
|
50
|
+
<svg
|
|
51
|
+
aria-hidden="true"
|
|
52
|
+
class="star-rating__icon icon icon--star-dynamic"
|
|
53
|
+
focusable="false"
|
|
54
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
55
|
+
>
|
|
56
|
+
<use
|
|
57
|
+
xlink:href="#icon-star-dynamic"
|
|
58
|
+
/>
|
|
59
|
+
</svg>
|
|
60
|
+
</span>
|
|
61
|
+
</span>
|
|
62
|
+
<span
|
|
63
|
+
class="star-rating-select__radio"
|
|
64
|
+
>
|
|
65
|
+
<input
|
|
66
|
+
aria-label="3 stars"
|
|
67
|
+
class="star-rating-select__control"
|
|
68
|
+
name="star-rating"
|
|
69
|
+
type="radio"
|
|
70
|
+
value="3"
|
|
71
|
+
/>
|
|
72
|
+
<span
|
|
73
|
+
class="star-rating-select__radio-icon"
|
|
74
|
+
>
|
|
75
|
+
<svg
|
|
76
|
+
aria-hidden="true"
|
|
77
|
+
class="star-rating__icon icon icon--star-dynamic"
|
|
78
|
+
focusable="false"
|
|
79
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
80
|
+
>
|
|
81
|
+
<use
|
|
82
|
+
xlink:href="#icon-star-dynamic"
|
|
83
|
+
/>
|
|
84
|
+
</svg>
|
|
85
|
+
</span>
|
|
86
|
+
</span>
|
|
87
|
+
<span
|
|
88
|
+
class="star-rating-select__radio"
|
|
89
|
+
>
|
|
90
|
+
<input
|
|
91
|
+
aria-label="4 stars"
|
|
92
|
+
class="star-rating-select__control"
|
|
93
|
+
name="star-rating"
|
|
94
|
+
type="radio"
|
|
95
|
+
value="4"
|
|
96
|
+
/>
|
|
97
|
+
<span
|
|
98
|
+
class="star-rating-select__radio-icon"
|
|
99
|
+
>
|
|
100
|
+
<svg
|
|
101
|
+
aria-hidden="true"
|
|
102
|
+
class="star-rating__icon icon icon--star-dynamic"
|
|
103
|
+
focusable="false"
|
|
104
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
105
|
+
>
|
|
106
|
+
<use
|
|
107
|
+
xlink:href="#icon-star-dynamic"
|
|
108
|
+
/>
|
|
109
|
+
</svg>
|
|
110
|
+
</span>
|
|
111
|
+
</span>
|
|
112
|
+
<span
|
|
113
|
+
class="star-rating-select__radio"
|
|
114
|
+
>
|
|
115
|
+
<input
|
|
116
|
+
aria-label="5 stars"
|
|
117
|
+
class="star-rating-select__control"
|
|
118
|
+
name="star-rating"
|
|
119
|
+
type="radio"
|
|
120
|
+
value="5"
|
|
121
|
+
/>
|
|
122
|
+
<span
|
|
123
|
+
class="star-rating-select__radio-icon"
|
|
124
|
+
>
|
|
125
|
+
<svg
|
|
126
|
+
aria-hidden="true"
|
|
127
|
+
class="star-rating__icon icon icon--star-dynamic"
|
|
128
|
+
focusable="false"
|
|
129
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
130
|
+
>
|
|
131
|
+
<use
|
|
132
|
+
xlink:href="#icon-star-dynamic"
|
|
133
|
+
/>
|
|
134
|
+
</svg>
|
|
135
|
+
</span>
|
|
136
|
+
</span>
|
|
137
|
+
</div>
|
|
138
|
+
</fieldset>
|
|
139
|
+
</DocumentFragment>
|
|
140
|
+
`;
|
|
141
|
+
|
|
142
|
+
exports[`star-rating-select renders defaults 1`] = `
|
|
143
|
+
<DocumentFragment>
|
|
144
|
+
<div
|
|
145
|
+
class="star-rating-select"
|
|
146
|
+
>
|
|
147
|
+
<span
|
|
148
|
+
class="star-rating-select__radio"
|
|
149
|
+
>
|
|
150
|
+
<input
|
|
151
|
+
class="star-rating-select__control"
|
|
152
|
+
name="star-rating"
|
|
153
|
+
type="radio"
|
|
154
|
+
value="1"
|
|
155
|
+
/>
|
|
156
|
+
<span
|
|
157
|
+
class="star-rating-select__radio-icon"
|
|
158
|
+
>
|
|
159
|
+
<svg
|
|
160
|
+
aria-hidden="true"
|
|
161
|
+
class="star-rating__icon icon icon--star-dynamic"
|
|
162
|
+
focusable="false"
|
|
163
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
164
|
+
>
|
|
165
|
+
<use
|
|
166
|
+
xlink:href="#icon-star-dynamic"
|
|
167
|
+
/>
|
|
168
|
+
</svg>
|
|
169
|
+
</span>
|
|
170
|
+
</span>
|
|
171
|
+
<span
|
|
172
|
+
class="star-rating-select__radio"
|
|
173
|
+
>
|
|
174
|
+
<input
|
|
175
|
+
class="star-rating-select__control"
|
|
176
|
+
name="star-rating"
|
|
177
|
+
type="radio"
|
|
178
|
+
value="2"
|
|
179
|
+
/>
|
|
180
|
+
<span
|
|
181
|
+
class="star-rating-select__radio-icon"
|
|
182
|
+
>
|
|
183
|
+
<svg
|
|
184
|
+
aria-hidden="true"
|
|
185
|
+
class="star-rating__icon icon icon--star-dynamic"
|
|
186
|
+
focusable="false"
|
|
187
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
188
|
+
>
|
|
189
|
+
<use
|
|
190
|
+
xlink:href="#icon-star-dynamic"
|
|
191
|
+
/>
|
|
192
|
+
</svg>
|
|
193
|
+
</span>
|
|
194
|
+
</span>
|
|
195
|
+
<span
|
|
196
|
+
class="star-rating-select__radio"
|
|
197
|
+
>
|
|
198
|
+
<input
|
|
199
|
+
class="star-rating-select__control"
|
|
200
|
+
name="star-rating"
|
|
201
|
+
type="radio"
|
|
202
|
+
value="3"
|
|
203
|
+
/>
|
|
204
|
+
<span
|
|
205
|
+
class="star-rating-select__radio-icon"
|
|
206
|
+
>
|
|
207
|
+
<svg
|
|
208
|
+
aria-hidden="true"
|
|
209
|
+
class="star-rating__icon icon icon--star-dynamic"
|
|
210
|
+
focusable="false"
|
|
211
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
212
|
+
>
|
|
213
|
+
<use
|
|
214
|
+
xlink:href="#icon-star-dynamic"
|
|
215
|
+
/>
|
|
216
|
+
</svg>
|
|
217
|
+
</span>
|
|
218
|
+
</span>
|
|
219
|
+
<span
|
|
220
|
+
class="star-rating-select__radio"
|
|
221
|
+
>
|
|
222
|
+
<input
|
|
223
|
+
class="star-rating-select__control"
|
|
224
|
+
name="star-rating"
|
|
225
|
+
type="radio"
|
|
226
|
+
value="4"
|
|
227
|
+
/>
|
|
228
|
+
<span
|
|
229
|
+
class="star-rating-select__radio-icon"
|
|
230
|
+
>
|
|
231
|
+
<svg
|
|
232
|
+
aria-hidden="true"
|
|
233
|
+
class="star-rating__icon icon icon--star-dynamic"
|
|
234
|
+
focusable="false"
|
|
235
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
236
|
+
>
|
|
237
|
+
<use
|
|
238
|
+
xlink:href="#icon-star-dynamic"
|
|
239
|
+
/>
|
|
240
|
+
</svg>
|
|
241
|
+
</span>
|
|
242
|
+
</span>
|
|
243
|
+
<span
|
|
244
|
+
class="star-rating-select__radio"
|
|
245
|
+
>
|
|
246
|
+
<input
|
|
247
|
+
class="star-rating-select__control"
|
|
248
|
+
name="star-rating"
|
|
249
|
+
type="radio"
|
|
250
|
+
value="5"
|
|
251
|
+
/>
|
|
252
|
+
<span
|
|
253
|
+
class="star-rating-select__radio-icon"
|
|
254
|
+
>
|
|
255
|
+
<svg
|
|
256
|
+
aria-hidden="true"
|
|
257
|
+
class="star-rating__icon icon icon--star-dynamic"
|
|
258
|
+
focusable="false"
|
|
259
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
260
|
+
>
|
|
261
|
+
<use
|
|
262
|
+
xlink:href="#icon-star-dynamic"
|
|
263
|
+
/>
|
|
264
|
+
</svg>
|
|
265
|
+
</span>
|
|
266
|
+
</span>
|
|
267
|
+
</div>
|
|
268
|
+
</DocumentFragment>
|
|
269
|
+
`;
|
|
270
|
+
|
|
271
|
+
exports[`star-rating-select renders with 0 selected 1`] = `
|
|
272
|
+
<DocumentFragment>
|
|
273
|
+
<div
|
|
274
|
+
aria-label="Rate product"
|
|
275
|
+
class="star-rating-select"
|
|
276
|
+
role="radiogroup"
|
|
277
|
+
>
|
|
278
|
+
<span
|
|
279
|
+
class="star-rating-select__radio"
|
|
280
|
+
>
|
|
281
|
+
<input
|
|
282
|
+
aria-label="1 star"
|
|
283
|
+
class="star-rating-select__control"
|
|
284
|
+
name="star-rating"
|
|
285
|
+
type="radio"
|
|
286
|
+
value="1"
|
|
287
|
+
/>
|
|
288
|
+
<span
|
|
289
|
+
class="star-rating-select__radio-icon"
|
|
290
|
+
>
|
|
291
|
+
<svg
|
|
292
|
+
aria-hidden="true"
|
|
293
|
+
class="star-rating__icon icon icon--star-dynamic"
|
|
294
|
+
focusable="false"
|
|
295
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
296
|
+
>
|
|
297
|
+
<use
|
|
298
|
+
xlink:href="#icon-star-dynamic"
|
|
299
|
+
/>
|
|
300
|
+
</svg>
|
|
301
|
+
</span>
|
|
302
|
+
</span>
|
|
303
|
+
<span
|
|
304
|
+
class="star-rating-select__radio"
|
|
305
|
+
>
|
|
306
|
+
<input
|
|
307
|
+
aria-label="2 stars"
|
|
308
|
+
class="star-rating-select__control"
|
|
309
|
+
name="star-rating"
|
|
310
|
+
type="radio"
|
|
311
|
+
value="2"
|
|
312
|
+
/>
|
|
313
|
+
<span
|
|
314
|
+
class="star-rating-select__radio-icon"
|
|
315
|
+
>
|
|
316
|
+
<svg
|
|
317
|
+
aria-hidden="true"
|
|
318
|
+
class="star-rating__icon icon icon--star-dynamic"
|
|
319
|
+
focusable="false"
|
|
320
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
321
|
+
>
|
|
322
|
+
<use
|
|
323
|
+
xlink:href="#icon-star-dynamic"
|
|
324
|
+
/>
|
|
325
|
+
</svg>
|
|
326
|
+
</span>
|
|
327
|
+
</span>
|
|
328
|
+
<span
|
|
329
|
+
class="star-rating-select__radio"
|
|
330
|
+
>
|
|
331
|
+
<input
|
|
332
|
+
aria-label="3 stars"
|
|
333
|
+
class="star-rating-select__control"
|
|
334
|
+
name="star-rating"
|
|
335
|
+
type="radio"
|
|
336
|
+
value="3"
|
|
337
|
+
/>
|
|
338
|
+
<span
|
|
339
|
+
class="star-rating-select__radio-icon"
|
|
340
|
+
>
|
|
341
|
+
<svg
|
|
342
|
+
aria-hidden="true"
|
|
343
|
+
class="star-rating__icon icon icon--star-dynamic"
|
|
344
|
+
focusable="false"
|
|
345
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
346
|
+
>
|
|
347
|
+
<use
|
|
348
|
+
xlink:href="#icon-star-dynamic"
|
|
349
|
+
/>
|
|
350
|
+
</svg>
|
|
351
|
+
</span>
|
|
352
|
+
</span>
|
|
353
|
+
<span
|
|
354
|
+
class="star-rating-select__radio"
|
|
355
|
+
>
|
|
356
|
+
<input
|
|
357
|
+
aria-label="4 stars"
|
|
358
|
+
class="star-rating-select__control"
|
|
359
|
+
name="star-rating"
|
|
360
|
+
type="radio"
|
|
361
|
+
value="4"
|
|
362
|
+
/>
|
|
363
|
+
<span
|
|
364
|
+
class="star-rating-select__radio-icon"
|
|
365
|
+
>
|
|
366
|
+
<svg
|
|
367
|
+
aria-hidden="true"
|
|
368
|
+
class="star-rating__icon icon icon--star-dynamic"
|
|
369
|
+
focusable="false"
|
|
370
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
371
|
+
>
|
|
372
|
+
<use
|
|
373
|
+
xlink:href="#icon-star-dynamic"
|
|
374
|
+
/>
|
|
375
|
+
</svg>
|
|
376
|
+
</span>
|
|
377
|
+
</span>
|
|
378
|
+
<span
|
|
379
|
+
class="star-rating-select__radio"
|
|
380
|
+
>
|
|
381
|
+
<input
|
|
382
|
+
aria-label="5 stars"
|
|
383
|
+
class="star-rating-select__control"
|
|
384
|
+
name="star-rating"
|
|
385
|
+
type="radio"
|
|
386
|
+
value="5"
|
|
387
|
+
/>
|
|
388
|
+
<span
|
|
389
|
+
class="star-rating-select__radio-icon"
|
|
390
|
+
>
|
|
391
|
+
<svg
|
|
392
|
+
aria-hidden="true"
|
|
393
|
+
class="star-rating__icon icon icon--star-dynamic"
|
|
394
|
+
focusable="false"
|
|
395
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
396
|
+
>
|
|
397
|
+
<use
|
|
398
|
+
xlink:href="#icon-star-dynamic"
|
|
399
|
+
/>
|
|
400
|
+
</svg>
|
|
401
|
+
</span>
|
|
402
|
+
</span>
|
|
403
|
+
</div>
|
|
404
|
+
</DocumentFragment>
|
|
405
|
+
`;
|
|
406
|
+
|
|
407
|
+
exports[`star-rating-select renders with 2 selected 1`] = `
|
|
408
|
+
<DocumentFragment>
|
|
409
|
+
<div
|
|
410
|
+
aria-label="Rate product"
|
|
411
|
+
class="star-rating-select"
|
|
412
|
+
role="radiogroup"
|
|
413
|
+
>
|
|
414
|
+
<span
|
|
415
|
+
class="star-rating-select__radio"
|
|
416
|
+
>
|
|
417
|
+
<input
|
|
418
|
+
aria-label="1 star"
|
|
419
|
+
class="star-rating-select__control star-rating-select__control--filled"
|
|
420
|
+
name="star-rating"
|
|
421
|
+
type="radio"
|
|
422
|
+
value="1"
|
|
423
|
+
/>
|
|
424
|
+
<span
|
|
425
|
+
class="star-rating-select__radio-icon"
|
|
426
|
+
>
|
|
427
|
+
<svg
|
|
428
|
+
aria-hidden="true"
|
|
429
|
+
class="star-rating__icon icon icon--star-dynamic"
|
|
430
|
+
focusable="false"
|
|
431
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
432
|
+
>
|
|
433
|
+
<use
|
|
434
|
+
xlink:href="#icon-star-dynamic"
|
|
435
|
+
/>
|
|
436
|
+
</svg>
|
|
437
|
+
</span>
|
|
438
|
+
</span>
|
|
439
|
+
<span
|
|
440
|
+
class="star-rating-select__radio"
|
|
441
|
+
>
|
|
442
|
+
<input
|
|
443
|
+
aria-label="2 stars"
|
|
444
|
+
checked=""
|
|
445
|
+
class="star-rating-select__control star-rating-select__control--filled"
|
|
446
|
+
name="star-rating"
|
|
447
|
+
type="radio"
|
|
448
|
+
value="2"
|
|
449
|
+
/>
|
|
450
|
+
<span
|
|
451
|
+
class="star-rating-select__radio-icon"
|
|
452
|
+
>
|
|
453
|
+
<svg
|
|
454
|
+
aria-hidden="true"
|
|
455
|
+
class="star-rating__icon icon icon--star-dynamic"
|
|
456
|
+
focusable="false"
|
|
457
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
458
|
+
>
|
|
459
|
+
<use
|
|
460
|
+
xlink:href="#icon-star-dynamic"
|
|
461
|
+
/>
|
|
462
|
+
</svg>
|
|
463
|
+
</span>
|
|
464
|
+
</span>
|
|
465
|
+
<span
|
|
466
|
+
class="star-rating-select__radio"
|
|
467
|
+
>
|
|
468
|
+
<input
|
|
469
|
+
aria-label="3 stars"
|
|
470
|
+
class="star-rating-select__control"
|
|
471
|
+
name="star-rating"
|
|
472
|
+
type="radio"
|
|
473
|
+
value="3"
|
|
474
|
+
/>
|
|
475
|
+
<span
|
|
476
|
+
class="star-rating-select__radio-icon"
|
|
477
|
+
>
|
|
478
|
+
<svg
|
|
479
|
+
aria-hidden="true"
|
|
480
|
+
class="star-rating__icon icon icon--star-dynamic"
|
|
481
|
+
focusable="false"
|
|
482
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
483
|
+
>
|
|
484
|
+
<use
|
|
485
|
+
xlink:href="#icon-star-dynamic"
|
|
486
|
+
/>
|
|
487
|
+
</svg>
|
|
488
|
+
</span>
|
|
489
|
+
</span>
|
|
490
|
+
<span
|
|
491
|
+
class="star-rating-select__radio"
|
|
492
|
+
>
|
|
493
|
+
<input
|
|
494
|
+
aria-label="4 stars"
|
|
495
|
+
class="star-rating-select__control"
|
|
496
|
+
name="star-rating"
|
|
497
|
+
type="radio"
|
|
498
|
+
value="4"
|
|
499
|
+
/>
|
|
500
|
+
<span
|
|
501
|
+
class="star-rating-select__radio-icon"
|
|
502
|
+
>
|
|
503
|
+
<svg
|
|
504
|
+
aria-hidden="true"
|
|
505
|
+
class="star-rating__icon icon icon--star-dynamic"
|
|
506
|
+
focusable="false"
|
|
507
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
508
|
+
>
|
|
509
|
+
<use
|
|
510
|
+
xlink:href="#icon-star-dynamic"
|
|
511
|
+
/>
|
|
512
|
+
</svg>
|
|
513
|
+
</span>
|
|
514
|
+
</span>
|
|
515
|
+
<span
|
|
516
|
+
class="star-rating-select__radio"
|
|
517
|
+
>
|
|
518
|
+
<input
|
|
519
|
+
aria-label="5 stars"
|
|
520
|
+
class="star-rating-select__control"
|
|
521
|
+
name="star-rating"
|
|
522
|
+
type="radio"
|
|
523
|
+
value="5"
|
|
524
|
+
/>
|
|
525
|
+
<span
|
|
526
|
+
class="star-rating-select__radio-icon"
|
|
527
|
+
>
|
|
528
|
+
<svg
|
|
529
|
+
aria-hidden="true"
|
|
530
|
+
class="star-rating__icon icon icon--star-dynamic"
|
|
531
|
+
focusable="false"
|
|
532
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
533
|
+
>
|
|
534
|
+
<use
|
|
535
|
+
xlink:href="#icon-star-dynamic"
|
|
536
|
+
/>
|
|
537
|
+
</svg>
|
|
538
|
+
</span>
|
|
539
|
+
</span>
|
|
540
|
+
</div>
|
|
541
|
+
</DocumentFragment>
|
|
542
|
+
`;
|
|
543
|
+
|
|
544
|
+
exports[`star-rating-select renders with 5 selected 1`] = `
|
|
545
|
+
<DocumentFragment>
|
|
546
|
+
<div
|
|
547
|
+
aria-label="Rate product"
|
|
548
|
+
class="star-rating-select"
|
|
549
|
+
role="radiogroup"
|
|
550
|
+
>
|
|
551
|
+
<span
|
|
552
|
+
class="star-rating-select__radio"
|
|
553
|
+
>
|
|
554
|
+
<input
|
|
555
|
+
aria-label="1 star"
|
|
556
|
+
class="star-rating-select__control star-rating-select__control--filled"
|
|
557
|
+
name="star-rating"
|
|
558
|
+
type="radio"
|
|
559
|
+
value="1"
|
|
560
|
+
/>
|
|
561
|
+
<span
|
|
562
|
+
class="star-rating-select__radio-icon"
|
|
563
|
+
>
|
|
564
|
+
<svg
|
|
565
|
+
aria-hidden="true"
|
|
566
|
+
class="star-rating__icon icon icon--star-dynamic"
|
|
567
|
+
focusable="false"
|
|
568
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
569
|
+
>
|
|
570
|
+
<use
|
|
571
|
+
xlink:href="#icon-star-dynamic"
|
|
572
|
+
/>
|
|
573
|
+
</svg>
|
|
574
|
+
</span>
|
|
575
|
+
</span>
|
|
576
|
+
<span
|
|
577
|
+
class="star-rating-select__radio"
|
|
578
|
+
>
|
|
579
|
+
<input
|
|
580
|
+
aria-label="2 stars"
|
|
581
|
+
class="star-rating-select__control star-rating-select__control--filled"
|
|
582
|
+
name="star-rating"
|
|
583
|
+
type="radio"
|
|
584
|
+
value="2"
|
|
585
|
+
/>
|
|
586
|
+
<span
|
|
587
|
+
class="star-rating-select__radio-icon"
|
|
588
|
+
>
|
|
589
|
+
<svg
|
|
590
|
+
aria-hidden="true"
|
|
591
|
+
class="star-rating__icon icon icon--star-dynamic"
|
|
592
|
+
focusable="false"
|
|
593
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
594
|
+
>
|
|
595
|
+
<use
|
|
596
|
+
xlink:href="#icon-star-dynamic"
|
|
597
|
+
/>
|
|
598
|
+
</svg>
|
|
599
|
+
</span>
|
|
600
|
+
</span>
|
|
601
|
+
<span
|
|
602
|
+
class="star-rating-select__radio"
|
|
603
|
+
>
|
|
604
|
+
<input
|
|
605
|
+
aria-label="3 stars"
|
|
606
|
+
class="star-rating-select__control star-rating-select__control--filled"
|
|
607
|
+
name="star-rating"
|
|
608
|
+
type="radio"
|
|
609
|
+
value="3"
|
|
610
|
+
/>
|
|
611
|
+
<span
|
|
612
|
+
class="star-rating-select__radio-icon"
|
|
613
|
+
>
|
|
614
|
+
<svg
|
|
615
|
+
aria-hidden="true"
|
|
616
|
+
class="star-rating__icon icon icon--star-dynamic"
|
|
617
|
+
focusable="false"
|
|
618
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
619
|
+
>
|
|
620
|
+
<use
|
|
621
|
+
xlink:href="#icon-star-dynamic"
|
|
622
|
+
/>
|
|
623
|
+
</svg>
|
|
624
|
+
</span>
|
|
625
|
+
</span>
|
|
626
|
+
<span
|
|
627
|
+
class="star-rating-select__radio"
|
|
628
|
+
>
|
|
629
|
+
<input
|
|
630
|
+
aria-label="4 stars"
|
|
631
|
+
class="star-rating-select__control star-rating-select__control--filled"
|
|
632
|
+
name="star-rating"
|
|
633
|
+
type="radio"
|
|
634
|
+
value="4"
|
|
635
|
+
/>
|
|
636
|
+
<span
|
|
637
|
+
class="star-rating-select__radio-icon"
|
|
638
|
+
>
|
|
639
|
+
<svg
|
|
640
|
+
aria-hidden="true"
|
|
641
|
+
class="star-rating__icon icon icon--star-dynamic"
|
|
642
|
+
focusable="false"
|
|
643
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
644
|
+
>
|
|
645
|
+
<use
|
|
646
|
+
xlink:href="#icon-star-dynamic"
|
|
647
|
+
/>
|
|
648
|
+
</svg>
|
|
649
|
+
</span>
|
|
650
|
+
</span>
|
|
651
|
+
<span
|
|
652
|
+
class="star-rating-select__radio"
|
|
653
|
+
>
|
|
654
|
+
<input
|
|
655
|
+
aria-label="5 stars"
|
|
656
|
+
checked=""
|
|
657
|
+
class="star-rating-select__control star-rating-select__control--filled"
|
|
658
|
+
name="star-rating"
|
|
659
|
+
type="radio"
|
|
660
|
+
value="5"
|
|
661
|
+
/>
|
|
662
|
+
<span
|
|
663
|
+
class="star-rating-select__radio-icon"
|
|
664
|
+
>
|
|
665
|
+
<svg
|
|
666
|
+
aria-hidden="true"
|
|
667
|
+
class="star-rating__icon icon icon--star-dynamic"
|
|
668
|
+
focusable="false"
|
|
669
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
670
|
+
>
|
|
671
|
+
<use
|
|
672
|
+
xlink:href="#icon-star-dynamic"
|
|
673
|
+
/>
|
|
674
|
+
</svg>
|
|
675
|
+
</span>
|
|
676
|
+
</span>
|
|
677
|
+
</div>
|
|
678
|
+
</DocumentFragment>
|
|
679
|
+
`;
|