diff --git a/.changeset/curvy-bobcats-attend.md b/.changeset/curvy-bobcats-attend.md deleted file mode 100644 index 66b42c189..000000000 --- a/.changeset/curvy-bobcats-attend.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@ebay/ebayui-core": minor ---- - -feat(eek): added size option diff --git a/.changeset/four-mangos-hug.md b/.changeset/four-mangos-hug.md deleted file mode 100644 index 5112108c2..000000000 --- a/.changeset/four-mangos-hug.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@ebay/ebayui-core": minor ---- - -docs(contributing): updated tests section diff --git a/.changeset/purple-seals-deliver.md b/.changeset/purple-seals-deliver.md deleted file mode 100644 index 9add1cd17..000000000 --- a/.changeset/purple-seals-deliver.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@ebay/ebayui-core": minor ---- - -feat: added async loading instead of cdn loader diff --git a/.changeset/strong-grapes-work.md b/.changeset/strong-grapes-work.md deleted file mode 100644 index 82c61a4d6..000000000 --- a/.changeset/strong-grapes-work.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@ebay/ebayui-core": minor ---- - -fix(ebay-carousel): fix width calculation for last pill when font not loaded (#2344) diff --git a/CHANGELOG.md b/CHANGELOG.md index 801e5b086..7568cac63 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # eBayUI-Core Changelog +## 14.6.0 + +### Minor Changes + +- [#2351](https://github.com/eBay/ebayui-core/pull/2351) [`8024cfe`](https://github.com/eBay/ebayui-core/commit/8024cfe2a7db3c6e21c0fbbe1edda25198358694) Thanks [@LuLaValva](https://github.com/LuLaValva)! - feat(eek): added size option + +- [#2348](https://github.com/eBay/ebayui-core/pull/2348) [`981e76a`](https://github.com/eBay/ebayui-core/commit/981e76ac2d00d961a552a59dfa3914b3f1148516) Thanks [@saiponnada](https://github.com/saiponnada)! - docs(contributing): updated tests section + +- [#2337](https://github.com/eBay/ebayui-core/pull/2337) [`9c308b4`](https://github.com/eBay/ebayui-core/commit/9c308b46736f2ac646cec07d4e92f2ada1a10954) Thanks [@agliga](https://github.com/agliga)! - feat: added async loading instead of cdn loader + +- [#2352](https://github.com/eBay/ebayui-core/pull/2352) [`a5b2e69`](https://github.com/eBay/ebayui-core/commit/a5b2e6967a53593a2766f651ebed89328b7e093f) Thanks [@WinkeeFace](https://github.com/WinkeeFace)! - fix(ebay-carousel): fix width calculation for last pill when font not loaded (#2344) + ## 14.5.1 ### Patch Changes diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 79b8caab0..4aab09c06 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -4,13 +4,13 @@ This page contains instructions and guidelines for anybody contributing code to ## Table of Contents -- [Development](#development) -- [Pull Requests](#pull-requests) -- [Branching Strategy](#branching-strategy) -- [Unit Tests](#unit-tests) -- [Definition of Done](#definition-of-done) -- [Naming Scheme](#naming-scheme) -- [Releases](#releases) +- [Development](#development) +- [Pull Requests](#pull-requests) +- [Branching Strategy](#branching-strategy) +- [Unit Tests](#unit-tests) +- [Definition of Done](#definition-of-done) +- [Naming Scheme](#naming-scheme) +- [Releases](#releases) ## Development @@ -18,7 +18,7 @@ This section includes information on system requirements, running the local serv ### System Requirements -- [Node.js](https://nodejs.org/en/) +- [Node.js](https://nodejs.org/en/) Clone this repo to your local environment then run `npm i` to install all dependencies. @@ -71,9 +71,9 @@ If you are creating a new component or significantly altering an existing one, p We ask this because: -- we want to avoid cases where developers build something that does not align with our wants & needs -- we want to be able to carefully plan our sprint and test cycles with minimal disruption -- we want to avoid cases where two developers duplicate work +- we want to avoid cases where developers build something that does not align with our wants & needs +- we want to be able to carefully plan our sprint and test cycles with minimal disruption +- we want to avoid cases where two developers duplicate work ### Writing Code @@ -81,10 +81,10 @@ The contents of a pull request should be related to a single issue only (or, at Whilst it may be tempting to fix any [broken windows](https://www.rtuin.nl/2012/08/software-development-and-the-broken-windows-theory/) that you encounter, we ask you not to because: -- it can distract the reviewer from the main issue at hand -- it can add additional time needed for the reviewer -- it can increase the chance of regressions -- it can make rollbacks more difficult +- it can distract the reviewer from the main issue at hand +- it can add additional time needed for the reviewer +- it can increase the chance of regressions +- it can make rollbacks more difficult So please be a good citizen and create separate issues or pull requests for any broken windows that you find. @@ -159,10 +159,10 @@ A milestone branch will be deleted after it has been merged into master. There i With this strategy, there are rarely more than a handful of branches at any one moment in time: -- master branch (reflects current production code/release) -- next minor or major milestone branch -- next patch milestone branch -- _n_ number of feature/issue branches (usually 1 - 3) +- master branch (reflects current production code/release) +- next minor or major milestone branch +- next patch milestone branch +- _n_ number of feature/issue branches (usually 1 - 3) ## Unit Tests @@ -176,12 +176,12 @@ Browser side testing is predominantly concerned with the testing of _state_. For For both types of tests, please observe the following golden rules: -- A test should only test one thing - - Watch out for the words 'and' & 'or' in your test description! -- A test should not contain conditional logic - - We don't want to have to write tests for our tests! -- A test description should avoid interpolated strings - - Test descriptions should be human readable (readable != parsable) +- A test should only test one thing + - Watch out for the words 'and' & 'or' in your test description! +- A test should not contain conditional logic + - We don't want to have to write tests for our tests! +- A test description should avoid interpolated strings + - Test descriptions should be human readable (readable != parsable) Above all, all aspects of a test should be human readable. A simple litmus test for this is that anybody should be able to read the test and, within a few seconds, be able to tell you what the _purpose_ of the test is. If they are confused, or ask questions, then it is not a well written test. Go back and refactor! @@ -191,28 +191,28 @@ A component is considered "done", and ready for merge into release branch, when 1. Foundational layer review -- Visual design (DS6) -- Markup structure (Bones) -- Accessibility pattern (MIND) -- CSS (Skin) +- Visual design (DS6) +- Markup structure (Bones) +- Accessibility pattern (MIND) +- CSS (Skin) 2. Component layer review -- Tag API -- Event API -- Unit tests -- Integration test -- Performance test -- Documentation +- Tag API +- Event API +- Unit tests +- Integration test +- Performance test +- Documentation 3. Code review -- Linter should catch syntax and style issues -- Prefer performance over readability, but readability over "space saving" code -- Apply the single-responsibility principle to functions -- Refactor long functions into several small functions -- Identify and move common utility functions to libraries or static methods -- All CSS should come from Skin +- Linter should catch syntax and style issues +- Prefer performance over readability, but readability over "space saving" code +- Apply the single-responsibility principle to functions +- Refactor long functions into several small functions +- Identify and move common utility functions to libraries or static methods +- All CSS should come from Skin ## Naming Scheme diff --git a/README.md b/README.md index e61d851b8..d843417a6 100644 --- a/README.md +++ b/README.md @@ -7,9 +7,9 @@ ## Requirements -- [Node.js](https://nodejs.org/en/) -- [Marko](https://markojs.com) (v4+) -- [eBay Skin](https://ebay.github.io/skin/) (v16+) +- [Node.js](https://nodejs.org/en/) +- [Marko](https://markojs.com) (v4+) +- [eBay Skin](https://ebay.github.io/skin/) (v16+) _Note: eBayUI Core components utilize Marko flags and, therefore, require `` to be added to any page which will have core components._ @@ -29,77 +29,77 @@ We take accessibility very seriously. Very seriously indeed. Therefore, all comp Components are built in a layered, progressively enhanced fashion, utilizing the following resources: -- Bones (HTML) -- eBay Skin (CSS) -- MakeupJS (JavaScript) +- Bones (HTML) +- eBay Skin (CSS) +- MakeupJS (JavaScript) Each layer does its bit to enforce and enhance accessibility. We consider this level of support to be one of our chief selling points, and we hope you do too! ## Components -- [`ebay-3d-viewer`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-3d-viewer) -- [`ebay-alert-dialog`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-alert-dialog) -- [`ebay-avatar`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-avatar) -- [`ebay-badge`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-badge) -- [`ebay-breadcrumbs`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-breadcrumbs) -- [`ebay-button`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-button) -- [`ebay-calendar`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-calendar) -- [`ebay-carousel`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-carousel) -- [`ebay-character-count`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-character-count) -- [`ebay-checkbox`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-checkbox) -- [`ebay-chip`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-chip) -- [`ebay-combobox`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-combobox) -- [`ebay-cta-button`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-cta-button) -- [`ebay-date-textbox`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-date-textbox) -- [`ebay-details`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-details) -- [`ebay-drawer-dialog`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-drawer-dialog) -- [`ebay-eek`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-eek) -- [`ebay-fake-link`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-fake-link) -- [`ebay-fake-menu`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-fake-menu) -- [`ebay-fake-menu-button`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-fake-menu-button) -- [`ebay-fake-tabs`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-fake-tabs) -- [`ebay-filter`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-filter) -- [`ebay-filter-menu`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-filter-menu) -- [`ebay-filter-menu-button`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-filter-menu-button) -- [`ebay-fullscreen-dialog`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-fullscreen-dialog) -- [`ebay-icon`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-icon) -- [`ebay-icon-button`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-icon-button) -- [`ebay-infotip`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-infotip) -- [`ebay-inline-notice`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-inline-notice) -- [`ebay-lightbox-dialog`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-lightbox-dialog) -- [`ebay-list`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-list) -- [`ebay-listbox-button`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-listbox-button) -- [`ebay-menu`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-menu) -- [`ebay-menu-button`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-menu-button) -- [`ebay-page-notice`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-page-notice) -- [`ebay-pagination`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-pagination) -- [`ebay-panel-dialog`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-panel-dialog) -- [`ebay-phone-input`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-phone-input) -- [`ebay-progress-bar`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-progress-bar) -- [`ebay-progress-bar-expressive`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-progress-bar-expressive) -- [`ebay-progress-spinner`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-progress-spinner) -- [`ebay-progress-stepper`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-progress-stepper) -- [`ebay-radio`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-radio) -- [`ebay-section-notice`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-section-notice) -- [`ebay-section-title`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-section-title) -- [`ebay-segmented-buttons`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-segmented-buttons) -- [`ebay-select`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-select) -- [`ebay-signal`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-signal) -- [`ebay-skeleton`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-skeleton) -- [`ebay-snackbar-dialog`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-snackbar-dialog) -- [`ebay-split-button`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-split-button) -- [`ebay-star-rating`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-star-rating) -- [`ebay-star-rating-select`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-star-rating-select) -- [`ebay-switch`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-switch) -- [`ebay-tabs`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-tabs) -- [`ebay-textbox`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-textbox) -- [`ebay-toast-dialog`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-toast-dialog) -- [`ebay-toggle-button`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-toggle-button) -- [`ebay-toggle-button-group`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-toggle-button-group) -- [`ebay-tooltip`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-tooltip) -- [`ebay-tourtip`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-tourtip) -- [`ebay-tri-state-checkbox`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-tri-state-checkbox) -- [`ebay-video`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-video) +- [`ebay-3d-viewer`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-3d-viewer) +- [`ebay-alert-dialog`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-alert-dialog) +- [`ebay-avatar`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-avatar) +- [`ebay-badge`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-badge) +- [`ebay-breadcrumbs`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-breadcrumbs) +- [`ebay-button`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-button) +- [`ebay-calendar`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-calendar) +- [`ebay-carousel`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-carousel) +- [`ebay-character-count`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-character-count) +- [`ebay-checkbox`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-checkbox) +- [`ebay-chip`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-chip) +- [`ebay-combobox`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-combobox) +- [`ebay-cta-button`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-cta-button) +- [`ebay-date-textbox`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-date-textbox) +- [`ebay-details`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-details) +- [`ebay-drawer-dialog`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-drawer-dialog) +- [`ebay-eek`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-eek) +- [`ebay-fake-link`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-fake-link) +- [`ebay-fake-menu`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-fake-menu) +- [`ebay-fake-menu-button`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-fake-menu-button) +- [`ebay-fake-tabs`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-fake-tabs) +- [`ebay-filter`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-filter) +- [`ebay-filter-menu`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-filter-menu) +- [`ebay-filter-menu-button`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-filter-menu-button) +- [`ebay-fullscreen-dialog`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-fullscreen-dialog) +- [`ebay-icon`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-icon) +- [`ebay-icon-button`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-icon-button) +- [`ebay-infotip`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-infotip) +- [`ebay-inline-notice`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-inline-notice) +- [`ebay-lightbox-dialog`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-lightbox-dialog) +- [`ebay-list`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-list) +- [`ebay-listbox-button`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-listbox-button) +- [`ebay-menu`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-menu) +- [`ebay-menu-button`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-menu-button) +- [`ebay-page-notice`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-page-notice) +- [`ebay-pagination`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-pagination) +- [`ebay-panel-dialog`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-panel-dialog) +- [`ebay-phone-input`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-phone-input) +- [`ebay-progress-bar`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-progress-bar) +- [`ebay-progress-bar-expressive`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-progress-bar-expressive) +- [`ebay-progress-spinner`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-progress-spinner) +- [`ebay-progress-stepper`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-progress-stepper) +- [`ebay-radio`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-radio) +- [`ebay-section-notice`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-section-notice) +- [`ebay-section-title`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-section-title) +- [`ebay-segmented-buttons`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-segmented-buttons) +- [`ebay-select`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-select) +- [`ebay-signal`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-signal) +- [`ebay-skeleton`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-skeleton) +- [`ebay-snackbar-dialog`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-snackbar-dialog) +- [`ebay-split-button`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-split-button) +- [`ebay-star-rating`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-star-rating) +- [`ebay-star-rating-select`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-star-rating-select) +- [`ebay-switch`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-switch) +- [`ebay-tabs`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-tabs) +- [`ebay-textbox`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-textbox) +- [`ebay-toast-dialog`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-toast-dialog) +- [`ebay-toggle-button`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-toggle-button) +- [`ebay-toggle-button-group`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-toggle-button-group) +- [`ebay-tooltip`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-tooltip) +- [`ebay-tourtip`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-tourtip) +- [`ebay-tri-state-checkbox`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-tri-state-checkbox) +- [`ebay-video`](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-video) ## Getting Started @@ -218,9 +218,9 @@ The ebayui-core package follows strict [Semantic Versioning](http://semver.org). Given a version number MAJOR.MINOR.PATCH: -- MAJOR version is incremented when we make incompatible API changes -- MINOR version is incremented when we add functionality in a backwards-compatible manner -- PATCH version is incremented when we make backwards-compatible bug fixes. +- MAJOR version is incremented when we make incompatible API changes +- MINOR version is incremented when we add functionality in a backwards-compatible manner +- PATCH version is incremented when we make backwards-compatible bug fixes. ### Deprecations @@ -232,14 +232,14 @@ Please use our [issues page](https://github.com/eBay/ebayui-core/issues) to ask To help track your issue, our admins will assign it with one or more coloured labels: -- Black: Issue Type (e.g. bug, question, test case) -- White: Resolution (e.g. wont fix, invalid, duplicate) -- Gray: Status (e.g. backlog, in progress, help wanted) -- Red: Blocker (e.g. dependency, discussion, design) -- Green: Module (e.g. button, radio, dialog) -- Blue: Aspect (e.g. build, documentation, website) -- Yellow: Semver Guidance (e.g. breaking change, backwards compatible) -- Purple: Sprint (e.g. sprint 1, sprint 2, etc) +- Black: Issue Type (e.g. bug, question, test case) +- White: Resolution (e.g. wont fix, invalid, duplicate) +- Gray: Status (e.g. backlog, in progress, help wanted) +- Red: Blocker (e.g. dependency, discussion, design) +- Green: Module (e.g. button, radio, dialog) +- Blue: Aspect (e.g. build, documentation, website) +- Yellow: Semver Guidance (e.g. breaking change, backwards compatible) +- Purple: Sprint (e.g. sprint 1, sprint 2, etc) ## Contributing diff --git a/UPGRADE.md b/UPGRADE.md index 7f7733924..69b539d7d 100644 --- a/UPGRADE.md +++ b/UPGRADE.md @@ -14,16 +14,16 @@ Make sure your app starts before moving to the next step (it does not have to lo ### Things to watch out for -- Between version 4 and 5 ebayui we have removed marko 3 support. All out components are written in marko v4 syntax. As long as you are on the compatibility layer you should be safe -- All background icons have been removed. This means you need to use SVG icons. If you are moving to use `ebayui-icon`, wait until getting to at least version 6 in order to use the new icon syntax. -- Some components have been renamed. This should be fixed by running the migratiors. -- DS6 is now the default design system. To use the old legacy ds4, you need to add `ds-4` flag to your lasso config. -- `ebay-pill`, pagination dots on carousl, cards, and skin grid system are all removed. If you need grid system, feel free to go to `v9.0.0` skin tag and copy the code in your app. +- Between version 4 and 5 ebayui we have removed marko 3 support. All out components are written in marko v4 syntax. As long as you are on the compatibility layer you should be safe +- All background icons have been removed. This means you need to use SVG icons. If you are moving to use `ebayui-icon`, wait until getting to at least version 6 in order to use the new icon syntax. +- Some components have been renamed. This should be fixed by running the migratiors. +- DS6 is now the default design system. To use the old legacy ds4, you need to add `ds-4` flag to your lasso config. +- `ebay-pill`, pagination dots on carousl, cards, and skin grid system are all removed. If you need grid system, feel free to go to `v9.0.0` skin tag and copy the code in your app. ### Release notes link for more info -- [ebayui@v5 release notes](https://github.com/eBay/ebayui-core/releases/tag/v5.0.0) -- [skin@v10 release notes](https://github.com/eBay/skin/releases/tag/v10.0.0) +- [ebayui@v5 release notes](https://github.com/eBay/ebayui-core/releases/tag/v5.0.0) +- [skin@v10 release notes](https://github.com/eBay/skin/releases/tag/v10.0.0) ## Starting at `eBayUI-core@v5.x.x` and `skin@v10.x.x` OR `eBayUI-core@v6.x.x` and `skin@v11.x.x` @@ -33,9 +33,9 @@ Make sure your app starts before moving to the next step (it does not have to lo ### Things to watch out for on `ebayui-core@v6` and `skin@v11` -- `ebayui-core@v6` has a lot of syntax and event changes. Many events have been simplified and made shorter (like instead of `on-button-click` it does `on-click`). These should be auto migrated but need to be migrated on version 7, otherwise they break. -- Icons now are individual components. Before it was `` and now it will be `` -- Components like notice and dialog were split up based on their `type` element. **Note** Most can be auto migrated but if `type` is a variable `(like `) then it cannot be auto migrated. You can rework your component like this: +- `ebayui-core@v6` has a lot of syntax and event changes. Many events have been simplified and made shorter (like instead of `on-button-click` it does `on-click`). These should be auto migrated but need to be migrated on version 7, otherwise they break. +- Icons now are individual components. Before it was `` and now it will be `` +- Components like notice and dialog were split up based on their `type` element. **Note** Most can be auto migrated but if `type` is a variable `(like `) then it cannot be auto migrated. You can rework your component like this: ``` import pageNotice from '' @@ -48,14 +48,14 @@ import inlineNotice from '' ### Things to watch out for on `ebayui-core@v7` and `skin@v12` -- Skin 12 and ebayui 7 added rounded buttons and components by default. In order to turn these off, see `v8.0.0`. +- Skin 12 and ebayui 7 added rounded buttons and components by default. In order to turn these off, see `v8.0.0`. ### Release notes link for more info -- [ebayui@v6 release notes](https://github.com/eBay/ebayui-core/releases/tag/v6.0.0) -- [skin@v11 release notes](https://github.com/eBay/skin/releases/tag/v11.0.0) -- [ebayui@v7 release notes](https://github.com/eBay/ebayui-core/releases/tag/v7.0.0) -- [skin@v12 release notes](https://github.com/eBay/skin/releases/tag/v12.0.0) +- [ebayui@v6 release notes](https://github.com/eBay/ebayui-core/releases/tag/v6.0.0) +- [skin@v11 release notes](https://github.com/eBay/skin/releases/tag/v11.0.0) +- [ebayui@v7 release notes](https://github.com/eBay/ebayui-core/releases/tag/v7.0.0) +- [skin@v12 release notes](https://github.com/eBay/skin/releases/tag/v12.0.0) ## Starting at `eBayUI-core@v7.x.x` and `skin@v12.x.x` @@ -64,17 +64,17 @@ From this point, you should start to make sure your component are working proper ### Things to watch out for on `ebayui-core@v8` and `skin@v13` -- For turning off rounded elements import the module `@ebay/skin/square-corner-theme` -- Evolution is the new design system, there are many changes to all components look and feel. -- No more IE11 support -- DS4 icons are consolidated with DS6 icons -- Many deprecated variables removed (in skin) -- Button has been split up into various components base on `variant` argument **Note** Can be auto migrated but if the `variant` is a variable `(like ` then it cannot be auto migrated). +- For turning off rounded elements import the module `@ebay/skin/square-corner-theme` +- Evolution is the new design system, there are many changes to all components look and feel. +- No more IE11 support +- DS4 icons are consolidated with DS6 icons +- Many deprecated variables removed (in skin) +- Button has been split up into various components base on `variant` argument **Note** Can be auto migrated but if the `variant` is a variable `(like ` then it cannot be auto migrated). ### Release notes link for more info -- [ebayui@v8 release notes](https://github.com/eBay/ebayui-core/releases/tag/v8.0.0) -- [skin@v13 release notes](https://github.com/eBay/skin/releases/tag/v13.0.0) +- [ebayui@v8 release notes](https://github.com/eBay/ebayui-core/releases/tag/v8.0.0) +- [skin@v13 release notes](https://github.com/eBay/skin/releases/tag/v13.0.0) ## Final throughts diff --git a/package-lock.json b/package-lock.json index e8d9e69e9..1c4632b33 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@ebay/ebayui-core", - "version": "14.5.1", + "version": "14.6.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@ebay/ebayui-core", - "version": "14.5.1", + "version": "14.6.0", "license": "MIT", "dependencies": { "@floating-ui/dom": "^1.6.12", diff --git a/package.json b/package.json index 1e4c10251..797cba9b0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@ebay/ebayui-core", - "version": "14.5.1", + "version": "14.6.0", "description": "Collection of core eBay components; considered to be the building blocks for all composite structures, pages & apps.", "keywords": [ "marko-components" diff --git a/src/common/countries/countries.ts b/src/common/countries/countries.ts index fbff553f4..66231bf94 100644 --- a/src/common/countries/countries.ts +++ b/src/common/countries/countries.ts @@ -23,7 +23,7 @@ export default { BG: { countryCode: "BG", callingCode: "359", mask: "000 000 000" }, BH: { countryCode: "BH", callingCode: "973", mask: "0000 0000" }, BI: { countryCode: "BI", callingCode: "257", mask: "00 00 00 00" }, - BJ: { countryCode: "BJ", callingCode: "229", mask: "00 00 00 00" }, + BJ: { countryCode: "BJ", callingCode: "229", mask: "00 00 00 00 00" }, BL: { countryCode: "BL", callingCode: "590", mask: "0000 00 00 00" }, BM: { countryCode: "BM", callingCode: "1", mask: "(000) 000-0000" }, BN: { countryCode: "BN", callingCode: "673", mask: "000 0000" }, diff --git a/src/common/dates/index.ts b/src/common/dates/index.ts index e834b5dc1..94c844489 100644 --- a/src/common/dates/index.ts +++ b/src/common/dates/index.ts @@ -1,7 +1,7 @@ import type { DayISO } from "./date-utils"; import localeInfo, { LocaleInfo, Locales } from "./locale-info"; -export function localeDefault(inputLocale?: string):string { +export function localeDefault(inputLocale?: string): string { if (inputLocale) return inputLocale; let locale = (typeof navigator !== "undefined" && diff --git a/src/components/documentation/welcome.mdx b/src/components/documentation/welcome.mdx index 308853dfa..889833312 100644 --- a/src/components/documentation/welcome.mdx +++ b/src/components/documentation/welcome.mdx @@ -8,9 +8,9 @@ import { Meta } from "@storybook/addon-docs"; ## Requirements -- [Node.js](https://nodejs.org/en/) -- [Marko](https://markojs.com) (v4+) -- [eBay Skin](https://ebay.github.io/skin/) (v13+) +- [Node.js](https://nodejs.org/en/) +- [Marko](https://markojs.com) (v4+) +- [eBay Skin](https://ebay.github.io/skin/) (v13+) _Note: eBayUI Core components utilize Marko flags and, therefore, require `` to be added to any page which will have core components._ @@ -28,9 +28,9 @@ We take accessibility very seriously. Very seriously indeed. Therefore, all comp Components are built in a layered, progressively enhanced fashion, utilizing the following resources: -- Bones (HTML) -- eBay Skin (CSS) -- MakeupJS (JavaScript) +- Bones (HTML) +- eBay Skin (CSS) +- MakeupJS (JavaScript) Each layer does its bit to enforce and enhance accessibility. We consider this level of support to be one of our chief selling points, and we hope you do too! @@ -44,9 +44,9 @@ The ebayui-core package follows strict [Semantic Versioning](http://semver.org). Given a version number MAJOR.MINOR.PATCH: -- MAJOR version is incremented when we make incompatible API changes -- MINOR version is incremented when we add functionality in a backwards-compatible manner -- PATCH version is incremented when we make backwards-compatible bug fixes. +- MAJOR version is incremented when we make incompatible API changes +- MINOR version is incremented when we add functionality in a backwards-compatible manner +- PATCH version is incremented when we make backwards-compatible bug fixes. ### Deprecations @@ -58,14 +58,14 @@ Please use our [issues page](https://github.com/eBay/ebayui-core/issues) to ask To help track your issue, our admins will assign it with one or more coloured labels: -- Black: Issue Type (e.g. bug, question, test case) -- White: Resolution (e.g. wont fix, invalid, duplicate) -- Gray: Status (e.g. backlog, in progress, help wanted) -- Red: Blocker (e.g. dependency, discussion, design) -- Green: Module (e.g. button, radio, dialog) -- Blue: Aspect (e.g. build, documentation, website) -- Yellow: Semver Guidance (e.g. breaking change, backwards compatible) -- Purple: Sprint (e.g. sprint 1, sprint 2, etc) +- Black: Issue Type (e.g. bug, question, test case) +- White: Resolution (e.g. wont fix, invalid, duplicate) +- Gray: Status (e.g. backlog, in progress, help wanted) +- Red: Blocker (e.g. dependency, discussion, design) +- Green: Module (e.g. button, radio, dialog) +- Blue: Aspect (e.g. build, documentation, website) +- Yellow: Semver Guidance (e.g. breaking change, backwards compatible) +- Purple: Sprint (e.g. sprint 1, sprint 2, etc) ## License diff --git a/src/components/ebay-3d-viewer/README.md b/src/components/ebay-3d-viewer/README.md index dd63dbc87..e2d374d88 100644 --- a/src/components/ebay-3d-viewer/README.md +++ b/src/components/ebay-3d-viewer/README.md @@ -13,6 +13,6 @@ Under the hood, this uses google model viewer. All APIs are passthough to the mo ## Examples and Documentation -- [Storybook](https://ebay.github.io/ebayui-core/?path=/story/media-ebay-3d-viewer) -- [Storybook Docs](https://ebay.github.io/ebayui-core/?path=/docs/media-ebay-3d-viewer) -- [Code Examples](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-3d-viewer/examples) +- [Storybook](https://ebay.github.io/ebayui-core/?path=/story/media-ebay-3d-viewer) +- [Storybook Docs](https://ebay.github.io/ebayui-core/?path=/docs/media-ebay-3d-viewer) +- [Code Examples](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-3d-viewer/examples) diff --git a/src/components/ebay-alert-dialog/README.md b/src/components/ebay-alert-dialog/README.md index 4af297e4a..dc6967d78 100644 --- a/src/components/ebay-alert-dialog/README.md +++ b/src/components/ebay-alert-dialog/README.md @@ -18,6 +18,6 @@ Used to force the user to read an import message. The dialog will only be dismis ## Examples and Documentation -- [Storybook](https://ebay.github.io/ebayui-core/?path=/story/dialogs-ebay-alert-dialog) -- [Storybook Docs](https://ebay.github.io/ebayui-core/?path=/docs/dialogs-ebay-alert-dialog) -- [Code Examples](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-alert-dialog/examples) +- [Storybook](https://ebay.github.io/ebayui-core/?path=/story/dialogs-ebay-alert-dialog) +- [Storybook Docs](https://ebay.github.io/ebayui-core/?path=/docs/dialogs-ebay-alert-dialog) +- [Code Examples](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-alert-dialog/examples) diff --git a/src/components/ebay-avatar/README.md b/src/components/ebay-avatar/README.md index 122a70e38..a59402477 100644 --- a/src/components/ebay-avatar/README.md +++ b/src/components/ebay-avatar/README.md @@ -11,6 +11,6 @@ Avatar is a users badge which shows their current state, either signed out or si ## Examples and Documentation -- [Storybook](https://ebay.github.io/ebayui-core/?path=/story/graphics-icons-ebay-avatar) -- [Storybook Docs](https://ebay.github.io/ebayui-core/?path=/docs/graphics-icons-ebay-avatar) -- [Code Examples](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-avatar/examples) +- [Storybook](https://ebay.github.io/ebayui-core/?path=/story/graphics-icons-ebay-avatar) +- [Storybook Docs](https://ebay.github.io/ebayui-core/?path=/docs/graphics-icons-ebay-avatar) +- [Code Examples](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-avatar/examples) diff --git a/src/components/ebay-badge/README.md b/src/components/ebay-badge/README.md index ed0aec0c5..9f493450e 100644 --- a/src/components/ebay-badge/README.md +++ b/src/components/ebay-badge/README.md @@ -15,6 +15,6 @@ ## Examples and Documentation -- [Storybook](https://ebay.github.io/ebayui-core/?path=/story/graphics-icons-ebay-badge) -- [Storybook Docs](https://ebay.github.io/ebayui-core/?path=/docs/graphics-icons-ebay-badge) -- [Code Examples](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-badge/examples) +- [Storybook](https://ebay.github.io/ebayui-core/?path=/story/graphics-icons-ebay-badge) +- [Storybook Docs](https://ebay.github.io/ebayui-core/?path=/docs/graphics-icons-ebay-badge) +- [Code Examples](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-badge/examples) diff --git a/src/components/ebay-breadcrumbs/README.md b/src/components/ebay-breadcrumbs/README.md index 4f50bbe14..2090e5403 100644 --- a/src/components/ebay-breadcrumbs/README.md +++ b/src/components/ebay-breadcrumbs/README.md @@ -11,6 +11,6 @@ ## Examples and Documentation -- [Storybook](https://ebay.github.io/ebayui-core/?path=/story/navigation-disclosure-ebay-breadcrumbs) -- [Storybook Docs](https://ebay.github.io/ebayui-core/?path=/docs/navigation-disclosure-ebay-breadcrumbs) -- [Code Examples](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-breadcrumbs/examples) +- [Storybook](https://ebay.github.io/ebayui-core/?path=/story/navigation-disclosure-ebay-breadcrumbs) +- [Storybook Docs](https://ebay.github.io/ebayui-core/?path=/docs/navigation-disclosure-ebay-breadcrumbs) +- [Code Examples](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-breadcrumbs/examples) diff --git a/src/components/ebay-button/README.md b/src/components/ebay-button/README.md index e44f782e7..332df2947 100644 --- a/src/components/ebay-button/README.md +++ b/src/components/ebay-button/README.md @@ -11,6 +11,6 @@ Button styled with core classes. ## Examples and Documentation -- [Storybook](https://ebay.github.io/ebayui-core/?path=/story/buttons-ebay-button) -- [Storybook Docs](https://ebay.github.io/ebayui-core/?path=/docs/buttons-ebay-button) -- [Code Examples](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-button/examples) +- [Storybook](https://ebay.github.io/ebayui-core/?path=/story/buttons-ebay-button) +- [Storybook Docs](https://ebay.github.io/ebayui-core/?path=/docs/buttons-ebay-button) +- [Code Examples](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-button/examples) diff --git a/src/components/ebay-calendar/README.md b/src/components/ebay-calendar/README.md index 82670b2e6..75fe4fb4c 100644 --- a/src/components/ebay-calendar/README.md +++ b/src/components/ebay-calendar/README.md @@ -11,6 +11,6 @@ Calendar component, used for displaying dates and date ranges. ## Examples and Documentation -- [Storybook](https://ebay.github.io/ebayui-core/?path=/story/dialogs-ebay-date-textbox) -- [Storybook Docs](https://ebay.github.io/ebayui-core/?path=/docs/dialogs-ebay-date-textbox) -- [Code Examples](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-date-textbox/examples) +- [Storybook](https://ebay.github.io/ebayui-core/?path=/story/dialogs-ebay-date-textbox) +- [Storybook Docs](https://ebay.github.io/ebayui-core/?path=/docs/dialogs-ebay-date-textbox) +- [Code Examples](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-date-textbox/examples) diff --git a/src/components/ebay-carousel/README.md b/src/components/ebay-carousel/README.md index f8a9dcd78..f7f3502dd 100644 --- a/src/components/ebay-carousel/README.md +++ b/src/components/ebay-carousel/README.md @@ -11,9 +11,9 @@ Discrete or Continuous carousel component. Can show items as a slide or various ## Examples and Documentation -- [Storybook](https://ebay.github.io/ebayui-core/?path=/story/navigation-disclosure-ebay-carousel) -- [Storybook Docs](https://ebay.github.io/ebayui-core/?path=/docs/navigation-disclosure-ebay-carousel) -- [Code Examples](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-carousel/examples) +- [Storybook](https://ebay.github.io/ebayui-core/?path=/story/navigation-disclosure-ebay-carousel) +- [Storybook Docs](https://ebay.github.io/ebayui-core/?path=/docs/navigation-disclosure-ebay-carousel) +- [Code Examples](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-carousel/examples) ## Preserving tabindex for focusable elements diff --git a/src/components/ebay-carousel/component.ts b/src/components/ebay-carousel/component.ts index a2059ee54..379b1ab66 100644 --- a/src/components/ebay-carousel/component.ts +++ b/src/components/ebay-carousel/component.ts @@ -531,7 +531,7 @@ class Carousel extends Marko.Component { if (!config.scrollTransitioning) { this.handleScroll(this.listEl.scrollLeft); } - }) + }), ); } else { this.subscribeTo(this.listEl).on("transitionend", ({ target }) => { @@ -546,7 +546,6 @@ class Carousel extends Marko.Component { this.cleanupAsync(); this.onRenderLegacy(); }); - } onUpdate() { diff --git a/src/components/ebay-character-count/README.md b/src/components/ebay-character-count/README.md index 68e57866c..f69b794b6 100644 --- a/src/components/ebay-character-count/README.md +++ b/src/components/ebay-character-count/README.md @@ -11,6 +11,6 @@ Button styled with core classes. ## Examples and Documentation -- [Storybook](https://ebay.github.io/ebayui-core/?path=/story/building-blocks-ebay-character-count) -- [Storybook Docs](https://ebay.github.io/ebayui-core/?path=/docs/building-blocks-ebay-character-count) -- [Code Examples](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-character-count/examples) +- [Storybook](https://ebay.github.io/ebayui-core/?path=/story/building-blocks-ebay-character-count) +- [Storybook Docs](https://ebay.github.io/ebayui-core/?path=/docs/building-blocks-ebay-character-count) +- [Code Examples](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-character-count/examples) diff --git a/src/components/ebay-checkbox/README.md b/src/components/ebay-checkbox/README.md index 7ee276a44..17198269c 100644 --- a/src/components/ebay-checkbox/README.md +++ b/src/components/ebay-checkbox/README.md @@ -11,6 +11,6 @@ Displays an accessible checkbox component. Uses `` under the hood but di ## Examples and Documentation -- [Storybook](https://ebay.github.io/ebayui-core/?path=/story/form-input-ebay-checkbox) -- [Storybook Docs](https://ebay.github.io/ebayui-core/?path=/docs/form-input-ebay-checkbox) -- [Code Examples](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-checkbox/examples) +- [Storybook](https://ebay.github.io/ebayui-core/?path=/story/form-input-ebay-checkbox) +- [Storybook Docs](https://ebay.github.io/ebayui-core/?path=/docs/form-input-ebay-checkbox) +- [Code Examples](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-checkbox/examples) diff --git a/src/components/ebay-chip/README.md b/src/components/ebay-chip/README.md index a1f72a763..4285aa4ef 100644 --- a/src/components/ebay-chip/README.md +++ b/src/components/ebay-chip/README.md @@ -11,6 +11,6 @@ A discrete highlighted value. ## Examples and Documentation -- [Storybook](https://ebay.github.io/ebayui-core/?path=/story/building-blocks-ebay-chip) -- [Storybook Docs](https://ebay.github.io/ebayui-core/?path=/docs/building-blocks-ebay-chip) -- [Code Examples](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-chip/examples) +- [Storybook](https://ebay.github.io/ebayui-core/?path=/story/building-blocks-ebay-chip) +- [Storybook Docs](https://ebay.github.io/ebayui-core/?path=/docs/building-blocks-ebay-chip) +- [Code Examples](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-chip/examples) diff --git a/src/components/ebay-chips-combobox/README.md b/src/components/ebay-chips-combobox/README.md index f8d7f734f..282986bd3 100644 --- a/src/components/ebay-chips-combobox/README.md +++ b/src/components/ebay-chips-combobox/README.md @@ -11,6 +11,6 @@ The `` is a combination of a text ``, and a listbox (`aria ## Examples and Documentation -- [Storybook](https://ebay.github.io/ebayui-core/?path=/story/form-input-ebay-combobox) -- [Storybook Docs](https://ebay.github.io/ebayui-core/?path=/docs/form-input-ebay-combobox) -- [Code Examples](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-combobox/examples) +- [Storybook](https://ebay.github.io/ebayui-core/?path=/story/form-input-ebay-combobox) +- [Storybook Docs](https://ebay.github.io/ebayui-core/?path=/docs/form-input-ebay-combobox) +- [Code Examples](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-combobox/examples) diff --git a/src/components/ebay-combobox/README.md b/src/components/ebay-combobox/README.md index f8d7f734f..282986bd3 100644 --- a/src/components/ebay-combobox/README.md +++ b/src/components/ebay-combobox/README.md @@ -11,6 +11,6 @@ The `` is a combination of a text ``, and a listbox (`aria ## Examples and Documentation -- [Storybook](https://ebay.github.io/ebayui-core/?path=/story/form-input-ebay-combobox) -- [Storybook Docs](https://ebay.github.io/ebayui-core/?path=/docs/form-input-ebay-combobox) -- [Code Examples](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-combobox/examples) +- [Storybook](https://ebay.github.io/ebayui-core/?path=/story/form-input-ebay-combobox) +- [Storybook Docs](https://ebay.github.io/ebayui-core/?path=/docs/form-input-ebay-combobox) +- [Code Examples](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-combobox/examples) diff --git a/src/components/ebay-confirm-dialog/README.md b/src/components/ebay-confirm-dialog/README.md index e8cab9fe0..244753c83 100644 --- a/src/components/ebay-confirm-dialog/README.md +++ b/src/components/ebay-confirm-dialog/README.md @@ -11,6 +11,6 @@ Used to force the user to make a choice to either confirm or reject. Cannot be c ## Examples and Documentation -- [Storybook](https://ebay.github.io/ebayui-core/?path=/story/dialogs-ebay-confirm-dialog) -- [Storybook Docs](https://ebay.github.io/ebayui-core/?path=/docs/dialogs-ebay-confirm-dialog) -- [Code Examples](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-confirm-dialog/examples) +- [Storybook](https://ebay.github.io/ebayui-core/?path=/story/dialogs-ebay-confirm-dialog) +- [Storybook Docs](https://ebay.github.io/ebayui-core/?path=/docs/dialogs-ebay-confirm-dialog) +- [Code Examples](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-confirm-dialog/examples) diff --git a/src/components/ebay-cta-button/README.md b/src/components/ebay-cta-button/README.md index 5a311cf0f..3b53b61ee 100644 --- a/src/components/ebay-cta-button/README.md +++ b/src/components/ebay-cta-button/README.md @@ -9,6 +9,6 @@ ## Examples and Documentation -- [Storybook](https://ebay.github.io/ebayui-core/?path=/story/buttons-ebay-cta-button) -- [Storybook Docs](https://ebay.github.io/ebayui-core/?path=/docs/buttons-ebay-cta-button) -- [Code Examples](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-cta-button/examples) +- [Storybook](https://ebay.github.io/ebayui-core/?path=/story/buttons-ebay-cta-button) +- [Storybook Docs](https://ebay.github.io/ebayui-core/?path=/docs/buttons-ebay-cta-button) +- [Code Examples](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-cta-button/examples) diff --git a/src/components/ebay-date-textbox/README.md b/src/components/ebay-date-textbox/README.md index df4092405..f32063f41 100644 --- a/src/components/ebay-date-textbox/README.md +++ b/src/components/ebay-date-textbox/README.md @@ -11,6 +11,6 @@ Date textbox component, used as an alternative method for entering dates instead ## Examples and Documentation -- [Storybook](https://ebay.github.io/ebayui-core/?path=/story/form-input-ebay-date-textbox--documentation) -- [Storybook Docs](https://ebay.github.io/ebayui-core/?path=/docs/form-input-ebay-date-textbox--documentation) -- [Code Examples](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-date-textbox/examples) +- [Storybook](https://ebay.github.io/ebayui-core/?path=/story/form-input-ebay-date-textbox--documentation) +- [Storybook Docs](https://ebay.github.io/ebayui-core/?path=/docs/form-input-ebay-date-textbox--documentation) +- [Code Examples](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-date-textbox/examples) diff --git a/src/components/ebay-details/README.md b/src/components/ebay-details/README.md index 37bcce3b6..70b805ca5 100644 --- a/src/components/ebay-details/README.md +++ b/src/components/ebay-details/README.md @@ -11,6 +11,6 @@ Details component which expands and collapses extra text on click ## Examples and Documentation -- [Storybook](https://ebay.github.io/ebayui-core/?path=/story/navigation-disclosure-ebay-details) -- [Storybook Docs](https://ebay.github.io/ebayui-core/?path=/docs/navigation-disclosure-ebay-details) -- [Code Examples](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-details/examples) +- [Storybook](https://ebay.github.io/ebayui-core/?path=/story/navigation-disclosure-ebay-details) +- [Storybook Docs](https://ebay.github.io/ebayui-core/?path=/docs/navigation-disclosure-ebay-details) +- [Code Examples](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-details/examples) diff --git a/src/components/ebay-donut-chart/README.md b/src/components/ebay-donut-chart/README.md index 00a3a16c9..4206166d9 100644 --- a/src/components/ebay-donut-chart/README.md +++ b/src/components/ebay-donut-chart/README.md @@ -13,6 +13,6 @@ It also allows for a title and a metric value to be displayed. ## Examples and Documentation -- [Storybook](https://ebay.github.io/ebayui-core/?path=/docs/charts-ebay-donut-chart) -- [Storybook Docs](https://ebay.github.io/ebayui-core/?path=/docs/charts-ebay-donut-chart) -- [Code Examples](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-donut-chart/examples) +- [Storybook](https://ebay.github.io/ebayui-core/?path=/docs/charts-ebay-donut-chart) +- [Storybook Docs](https://ebay.github.io/ebayui-core/?path=/docs/charts-ebay-donut-chart) +- [Code Examples](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-donut-chart/examples) diff --git a/src/components/ebay-drawer-dialog/README.md b/src/components/ebay-drawer-dialog/README.md index 8ed9b4f0f..04be22ddc 100644 --- a/src/components/ebay-drawer-dialog/README.md +++ b/src/components/ebay-drawer-dialog/README.md @@ -12,6 +12,6 @@ Dialog which slides in from the bottom of the screen. Used mainly on moble. ## Examples and Documentation -- [Storybook](https://ebay.github.io/ebayui-core/?path=/story/dialogs-ebay-drawer-dialog) -- [Storybook Docs](https://ebay.github.io/ebayui-core/?path=/docs/dialogs-ebay-drawer-dialog) -- [Code Examples](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-drawer-dialog/examples) +- [Storybook](https://ebay.github.io/ebayui-core/?path=/story/dialogs-ebay-drawer-dialog) +- [Storybook Docs](https://ebay.github.io/ebayui-core/?path=/docs/dialogs-ebay-drawer-dialog) +- [Code Examples](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-drawer-dialog/examples) diff --git a/src/components/ebay-education-notice/README.md b/src/components/ebay-education-notice/README.md index 42559f841..145d70709 100644 --- a/src/components/ebay-education-notice/README.md +++ b/src/components/ebay-education-notice/README.md @@ -11,6 +11,6 @@ The `` is a tag used to create an education notice elemen ## Examples and Documentation -- [Storybook](https://ebay.github.io/ebayui-core/?path=/story/notices-tips-ebay-education-notice) -- [Storybook Docs](https://ebay.github.io/ebayui-core/?path=/docs/notices-tips-ebay-education-notice) -- [Code Examples](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-education-notice/examples) +- [Storybook](https://ebay.github.io/ebayui-core/?path=/story/notices-tips-ebay-education-notice) +- [Storybook Docs](https://ebay.github.io/ebayui-core/?path=/docs/notices-tips-ebay-education-notice) +- [Code Examples](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-education-notice/examples) diff --git a/src/components/ebay-eek/README.md b/src/components/ebay-eek/README.md index 7a1ee632e..059c5115b 100644 --- a/src/components/ebay-eek/README.md +++ b/src/components/ebay-eek/README.md @@ -11,6 +11,6 @@ EU energy label ## Examples and Documentation -- [Storybook](https://ebay.github.io/ebayui-core/?path=/story/graphics-icons-ebay-eek) -- [Storybook Docs](https://ebay.github.io/ebayui-core/?path=/docs/graphics-icons-ebay-eek) -- [Code Examples](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-eek/examples) +- [Storybook](https://ebay.github.io/ebayui-core/?path=/story/graphics-icons-ebay-eek) +- [Storybook Docs](https://ebay.github.io/ebayui-core/?path=/docs/graphics-icons-ebay-eek) +- [Code Examples](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-eek/examples) diff --git a/src/components/ebay-fake-link/README.md b/src/components/ebay-fake-link/README.md index 3d34c1408..82c1740de 100644 --- a/src/components/ebay-fake-link/README.md +++ b/src/components/ebay-fake-link/README.md @@ -11,6 +11,6 @@ Looks like a link, but under the hood is a button. ## Examples and Documentation -- [Storybook](https://ebay.github.io/ebayui-core/?path=/story/buttons-ebay-fake-link) -- [Storybook Docs](https://ebay.github.io/ebayui-core/?path=/docs/buttons-ebay-fake-link) -- [Code Examples](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-fake-link/examples) +- [Storybook](https://ebay.github.io/ebayui-core/?path=/story/buttons-ebay-fake-link) +- [Storybook Docs](https://ebay.github.io/ebayui-core/?path=/docs/buttons-ebay-fake-link) +- [Code Examples](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-fake-link/examples) diff --git a/src/components/ebay-fake-menu-button/README.md b/src/components/ebay-fake-menu-button/README.md index 6ed273093..00d3bc762 100644 --- a/src/components/ebay-fake-menu-button/README.md +++ b/src/components/ebay-fake-menu-button/README.md @@ -11,6 +11,6 @@ A button which shows a menu of links when clicked. ## Examples and Documentation -- [Storybook](https://ebay.github.io/ebayui-core/?path=/story/buttons-ebay-fake-menu-button) -- [Storybook Docs](https://ebay.github.io/ebayui-core/?path=/docs/buttons-ebay-fake-menu-button) -- [Code Examples](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-fake-menu-button/examples) +- [Storybook](https://ebay.github.io/ebayui-core/?path=/story/buttons-ebay-fake-menu-button) +- [Storybook Docs](https://ebay.github.io/ebayui-core/?path=/docs/buttons-ebay-fake-menu-button) +- [Code Examples](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-fake-menu-button/examples) diff --git a/src/components/ebay-fake-menu/README.md b/src/components/ebay-fake-menu/README.md index bc04d71ec..f1364243f 100644 --- a/src/components/ebay-fake-menu/README.md +++ b/src/components/ebay-fake-menu/README.md @@ -11,6 +11,6 @@ The dropdown portion of the menu-button. Used to build a list of links which lin ## Examples and Documentation -- [Storybook](https://ebay.github.io/ebayui-core/?path=/story/building-blocks-ebay-fake-menu) -- [Storybook Docs](https://ebay.github.io/ebayui-core/?path=/docs/building-blocks-ebay-fake-menu) -- [Code Examples](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-fake-menu/examples) +- [Storybook](https://ebay.github.io/ebayui-core/?path=/story/building-blocks-ebay-fake-menu) +- [Storybook Docs](https://ebay.github.io/ebayui-core/?path=/docs/building-blocks-ebay-fake-menu) +- [Code Examples](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-fake-menu/examples) diff --git a/src/components/ebay-fake-tabs/README.md b/src/components/ebay-fake-tabs/README.md index d75d93529..41ae714a3 100644 --- a/src/components/ebay-fake-tabs/README.md +++ b/src/components/ebay-fake-tabs/README.md @@ -11,6 +11,6 @@ Tabs which link to other pages. This can be used to deep link to other pages whi ## Examples and Documentation -- [Storybook](https://ebay.github.io/ebayui-core/?path=/story/navigation-disclosure-ebay-fake-tabs) -- [Storybook Docs](https://ebay.github.io/ebayui-core/?path=/docs/navigation-disclosure-ebay-fake-tabs) -- [Code Examples](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-video/examples) +- [Storybook](https://ebay.github.io/ebayui-core/?path=/story/navigation-disclosure-ebay-fake-tabs) +- [Storybook Docs](https://ebay.github.io/ebayui-core/?path=/docs/navigation-disclosure-ebay-fake-tabs) +- [Code Examples](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-video/examples) diff --git a/src/components/ebay-file-input/README.md b/src/components/ebay-file-input/README.md index cb31e0445..0159fa378 100644 --- a/src/components/ebay-file-input/README.md +++ b/src/components/ebay-file-input/README.md @@ -11,6 +11,6 @@ Wrapper for `` with additional styles applied. ## Examples and Documentation -- [Storybook](https://ebay.github.io/ebayui-core/?path=/story/form-input-ebay-file-input) -- [Storybook Docs](https://ebay.github.io/ebayui-core/?path=/docs/form-input-ebay-file-input) -- [Code Examples](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-file-input/examples) +- [Storybook](https://ebay.github.io/ebayui-core/?path=/story/form-input-ebay-file-input) +- [Storybook Docs](https://ebay.github.io/ebayui-core/?path=/docs/form-input-ebay-file-input) +- [Code Examples](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-file-input/examples) diff --git a/src/components/ebay-file-preview-card-group/README.md b/src/components/ebay-file-preview-card-group/README.md index 3b4ea1ce5..618707965 100644 --- a/src/components/ebay-file-preview-card-group/README.md +++ b/src/components/ebay-file-preview-card-group/README.md @@ -11,6 +11,6 @@ Group of file preview cards, primarily used alongside `ebay-file-input`. ## Examples and Documentation -- [Storybook](https://ebay.github.io/ebayui-core/?path=/story/media-ebay-file-preview-card-group) -- [Storybook Docs](https://ebay.github.io/ebayui-core/?path=/docs/media-ebay-file-preview-card-group) -- [Code Examples](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-file-preview-card-group/examples) +- [Storybook](https://ebay.github.io/ebayui-core/?path=/story/media-ebay-file-preview-card-group) +- [Storybook Docs](https://ebay.github.io/ebayui-core/?path=/docs/media-ebay-file-preview-card-group) +- [Code Examples](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-file-preview-card-group/examples) diff --git a/src/components/ebay-file-preview-card/README.md b/src/components/ebay-file-preview-card/README.md index c917b30a2..f12dfa5f2 100644 --- a/src/components/ebay-file-preview-card/README.md +++ b/src/components/ebay-file-preview-card/README.md @@ -11,6 +11,6 @@ Preview card for files, primarily used alongside `ebay-file-preview-card-group` ## Examples and Documentation -- [Storybook](https://ebay.github.io/ebayui-core/?path=/story/media-ebay-file-preview-card) -- [Storybook Docs](https://ebay.github.io/ebayui-core/?path=/docs/media-ebay-file-preview-card) -- [Code Examples](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-file-preview-card/examples) +- [Storybook](https://ebay.github.io/ebayui-core/?path=/story/media-ebay-file-preview-card) +- [Storybook Docs](https://ebay.github.io/ebayui-core/?path=/docs/media-ebay-file-preview-card) +- [Code Examples](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-file-preview-card/examples) diff --git a/src/components/ebay-filter-menu-button/README.md b/src/components/ebay-filter-menu-button/README.md index f92677062..3365961e4 100644 --- a/src/components/ebay-filter-menu-button/README.md +++ b/src/components/ebay-filter-menu-button/README.md @@ -9,6 +9,6 @@ ## Examples and Documentation -- [Storybook](https://ebay.github.io/ebayui-core/?path=/story/buttons-ebay-filter-menu-button) -- [Storybook Docs](https://ebay.github.io/ebayui-core/?path=/docs/buttons-ebay-filter-menu-button) -- [Code Examples](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-filter-menu-button/examples) +- [Storybook](https://ebay.github.io/ebayui-core/?path=/story/buttons-ebay-filter-menu-button) +- [Storybook Docs](https://ebay.github.io/ebayui-core/?path=/docs/buttons-ebay-filter-menu-button) +- [Code Examples](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-filter-menu-button/examples) diff --git a/src/components/ebay-filter-menu/README.md b/src/components/ebay-filter-menu/README.md index eb2960203..cd1e67441 100644 --- a/src/components/ebay-filter-menu/README.md +++ b/src/components/ebay-filter-menu/README.md @@ -11,6 +11,6 @@ The `ebay-filter-menu` component is used as a checkbox menu specificially styled ## Examples and Documentation -- [Storybook](https://ebay.github.io/ebayui-core/?path=/story/building-blocks-ebay-filter-menu) -- [Storybook Docs](https://ebay.github.io/ebayui-core/?path=/docs/building-blocks-ebay-filter-menu) -- [Code Examples](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-filter-menu/examples) +- [Storybook](https://ebay.github.io/ebayui-core/?path=/story/building-blocks-ebay-filter-menu) +- [Storybook Docs](https://ebay.github.io/ebayui-core/?path=/docs/building-blocks-ebay-filter-menu) +- [Code Examples](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-filter-menu/examples) diff --git a/src/components/ebay-filter/README.md b/src/components/ebay-filter/README.md index 26c8aca23..9c8c511bb 100644 --- a/src/components/ebay-filter/README.md +++ b/src/components/ebay-filter/README.md @@ -11,6 +11,6 @@ A button with a label which toggles between unselected and selected when clicked ## Examples and Documentation -- [Storybook](https://ebay.github.io/ebayui-core/?path=/story/building-blocks-ebay-filter) -- [Storybook Docs](https://ebay.github.io/ebayui-core/?path=/docs/building-blocks-ebay-filter) -- [Code Examples](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-filter/examples) +- [Storybook](https://ebay.github.io/ebayui-core/?path=/story/building-blocks-ebay-filter) +- [Storybook Docs](https://ebay.github.io/ebayui-core/?path=/docs/building-blocks-ebay-filter) +- [Code Examples](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-filter/examples) diff --git a/src/components/ebay-flag/README.md b/src/components/ebay-flag/README.md index d3a138417..921e728aa 100644 --- a/src/components/ebay-flag/README.md +++ b/src/components/ebay-flag/README.md @@ -9,6 +9,6 @@ ## Examples and Documentation -- [Storybook](https://ebay.github.io/ebayui-core/?path=/story/graphics-icons-ebay-flag) -- [Storybook Docs](https://ebay.github.io/ebayui-core/?path=/docs/graphics-icons-ebay-flag) -- [Code Examples](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-flag/examples) +- [Storybook](https://ebay.github.io/ebayui-core/?path=/story/graphics-icons-ebay-flag) +- [Storybook Docs](https://ebay.github.io/ebayui-core/?path=/docs/graphics-icons-ebay-flag) +- [Code Examples](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-flag/examples) diff --git a/src/components/ebay-fullscreen-dialog/README.md b/src/components/ebay-fullscreen-dialog/README.md index 49f25be77..3bfad3020 100644 --- a/src/components/ebay-fullscreen-dialog/README.md +++ b/src/components/ebay-fullscreen-dialog/README.md @@ -18,6 +18,6 @@ ## Examples and Documentation -- [Storybook](https://ebay.github.io/ebayui-core/?path=/story/dialogs-ebay-fullscreen-dialog) -- [Storybook Docs](https://ebay.github.io/ebayui-core/?path=/docs/dialogs-ebay-fullscreen-dialog) -- [Code Examples](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-fullscreen-dialog/examples) +- [Storybook](https://ebay.github.io/ebayui-core/?path=/story/dialogs-ebay-fullscreen-dialog) +- [Storybook Docs](https://ebay.github.io/ebayui-core/?path=/docs/dialogs-ebay-fullscreen-dialog) +- [Code Examples](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-fullscreen-dialog/examples) diff --git a/src/components/ebay-icon-button/README.md b/src/components/ebay-icon-button/README.md index 6d46aa2e1..43b876c93 100644 --- a/src/components/ebay-icon-button/README.md +++ b/src/components/ebay-icon-button/README.md @@ -11,6 +11,6 @@ This is a circular button with an icon only. ## Examples and Documentation -- [Storybook](https://ebay.github.io/ebayui-core/?path=/story/buttons-ebay-icon-button) -- [Storybook Docs](https://ebay.github.io/ebayui-core/?path=/docs/buttons-ebay-icon-button) -- [Code Examples](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-icon-button/examples) +- [Storybook](https://ebay.github.io/ebayui-core/?path=/story/buttons-ebay-icon-button) +- [Storybook Docs](https://ebay.github.io/ebayui-core/?path=/docs/buttons-ebay-icon-button) +- [Code Examples](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-icon-button/examples) diff --git a/src/components/ebay-icon/CONTRIBUTING.md b/src/components/ebay-icon/CONTRIBUTING.md index aae8a2bdb..ff3b3aaaf 100644 --- a/src/components/ebay-icon/CONTRIBUTING.md +++ b/src/components/ebay-icon/CONTRIBUTING.md @@ -8,4 +8,4 @@ Notes: -- All Icons are automatically added to `./src/components/components/ebay-icon-base/icons` and this folder should not be touched. +- All Icons are automatically added to `./src/components/components/ebay-icon-base/icons` and this folder should not be touched. diff --git a/src/components/ebay-icon/README.md b/src/components/ebay-icon/README.md index da3344341..4fb450992 100644 --- a/src/components/ebay-icon/README.md +++ b/src/components/ebay-icon/README.md @@ -18,6 +18,6 @@ video ## Examples and Documentation -- [Storybook](https://ebay.github.io/ebayui-core/?path=/story/graphics-icons-ebay-icon) -- [Storybook Docs](https://ebay.github.io/ebayui-core/?path=/docs/graphics-icons-ebay-icon) -- [Code Examples](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-icon/examples) +- [Storybook](https://ebay.github.io/ebayui-core/?path=/story/graphics-icons-ebay-icon) +- [Storybook Docs](https://ebay.github.io/ebayui-core/?path=/docs/graphics-icons-ebay-icon) +- [Code Examples](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-icon/examples) diff --git a/src/components/ebay-icon/examples/all.marko b/src/components/ebay-icon/examples/all.marko index f20857714..44cd06032 100644 --- a/src/components/ebay-icon/examples/all.marko +++ b/src/components/ebay-icon/examples/all.marko @@ -996,6 +996,12 @@ div.icon-examples span.text -- ebay-coin-24-icon + div + span.icon + ebay-coin-battery-48-icon + span.text + -- ebay-coin-battery-48-icon + div span.icon ebay-collections-16-icon @@ -1518,6 +1524,12 @@ div.icon-examples span.text -- ebay-euro-24-icon + div + span.icon + ebay-european-conformity-48-icon + span.text + -- ebay-european-conformity-48-icon + div span.icon ebay-exclude-16-icon @@ -1764,6 +1776,18 @@ div.icon-examples span.text -- ebay-folder-24-icon + div + span.icon + ebay-folder-add-16-icon + span.text + -- ebay-folder-add-16-icon + + div + span.icon + ebay-folder-add-24-icon + span.text + -- ebay-folder-add-24-icon + div span.icon ebay-franc-16-icon @@ -2946,6 +2970,12 @@ div.icon-examples span.text -- ebay-neutral-24-icon + div + span.icon + ebay-no-children-zero-three-48-icon + span.text + -- ebay-no-children-zero-three-48-icon + div span.icon ebay-notification-16-icon @@ -2988,6 +3018,12 @@ div.icon-examples span.text -- ebay-on-the-way-24-icon + div + span.icon + ebay-out-of-reach-48-icon + span.text + -- ebay-out-of-reach-48-icon + div span.icon ebay-overflow-horizontal-16-icon @@ -3078,6 +3114,24 @@ div.icon-examples span.text -- ebay-panel-close-24-icon + div + span.icon + ebay-panel-close-vertical-16-icon + span.text + -- ebay-panel-close-vertical-16-icon + + div + span.icon + ebay-panel-close-vertical-20-icon + span.text + -- ebay-panel-close-vertical-20-icon + + div + span.icon + ebay-panel-close-vertical-24-icon + span.text + -- ebay-panel-close-vertical-24-icon + div span.icon ebay-panel-open-16-icon @@ -3096,6 +3150,24 @@ div.icon-examples span.text -- ebay-panel-open-24-icon + div + span.icon + ebay-panel-open-vertical-16-icon + span.text + -- ebay-panel-open-vertical-16-icon + + div + span.icon + ebay-panel-open-vertical-20-icon + span.text + -- ebay-panel-open-vertical-20-icon + + div + span.icon + ebay-panel-open-vertical-24-icon + span.text + -- ebay-panel-open-vertical-24-icon + div span.icon ebay-passkey-16-icon @@ -3426,6 +3498,18 @@ div.icon-examples span.text -- ebay-promotion-24-icon + div + span.icon + ebay-psa-vault-16-icon + span.text + -- ebay-psa-vault-16-icon + + div + span.icon + ebay-psa-vault-16-colored-icon + span.text + -- ebay-psa-vault-16-colored-icon + div span.icon ebay-qr-code-16-icon @@ -4416,6 +4500,18 @@ div.icon-examples span.text -- ebay-trading-card-24-icon + div + span.icon + ebay-trading-card-grade-16-icon + span.text + -- ebay-trading-card-grade-16-icon + + div + span.icon + ebay-trading-card-grade-24-icon + span.text + -- ebay-trading-card-grade-24-icon + div span.icon ebay-transaction-24-icon diff --git a/src/components/ebay-icon/icons/ebay-coin-battery-48-icon/index.marko b/src/components/ebay-icon/icons/ebay-coin-battery-48-icon/index.marko new file mode 100644 index 000000000..8b79fd761 --- /dev/null +++ b/src/components/ebay-icon/icons/ebay-coin-battery-48-icon/index.marko @@ -0,0 +1,5 @@ +import { symbol } from "./symbol"; + +import type { Input as IconInput } from "../../component-browser" +export type Input = Omit; + diff --git a/src/components/ebay-icon/icons/ebay-coin-battery-48-icon/marko-tag.json b/src/components/ebay-icon/icons/ebay-coin-battery-48-icon/marko-tag.json new file mode 100644 index 000000000..0109d5328 --- /dev/null +++ b/src/components/ebay-icon/icons/ebay-coin-battery-48-icon/marko-tag.json @@ -0,0 +1,16 @@ +{ + "template": "./index.marko", + "attribute-groups": ["html-attributes"], + "@*": { + "targetProperty": null, + "type": "expression" + }, + "@html-attributes": "expression", + "@a11y-text": "string", + "@a11y-variant": "string", + "@no-skin-classes": "boolean", + "@_def": "expression", + "@role": "never", + "@aria-labelledby": "never", + "description": "[view documentation](https://ebay.github.io/ebayui-core/?path=/story/graphics-icons-ebay-icon)" +} diff --git a/src/components/ebay-icon/icons/ebay-coin-battery-48-icon/symbol.ts b/src/components/ebay-icon/icons/ebay-coin-battery-48-icon/symbol.ts new file mode 100644 index 000000000..338795124 --- /dev/null +++ b/src/components/ebay-icon/icons/ebay-coin-battery-48-icon/symbol.ts @@ -0,0 +1,4 @@ +export function symbol() { + // eslint-disable-next-line max-len,quotes + return ''; +} diff --git a/src/components/ebay-icon/icons/ebay-european-conformity-48-icon/index.marko b/src/components/ebay-icon/icons/ebay-european-conformity-48-icon/index.marko new file mode 100644 index 000000000..974648c36 --- /dev/null +++ b/src/components/ebay-icon/icons/ebay-european-conformity-48-icon/index.marko @@ -0,0 +1,5 @@ +import { symbol } from "./symbol"; + +import type { Input as IconInput } from "../../component-browser" +export type Input = Omit; + diff --git a/src/components/ebay-icon/icons/ebay-european-conformity-48-icon/marko-tag.json b/src/components/ebay-icon/icons/ebay-european-conformity-48-icon/marko-tag.json new file mode 100644 index 000000000..0109d5328 --- /dev/null +++ b/src/components/ebay-icon/icons/ebay-european-conformity-48-icon/marko-tag.json @@ -0,0 +1,16 @@ +{ + "template": "./index.marko", + "attribute-groups": ["html-attributes"], + "@*": { + "targetProperty": null, + "type": "expression" + }, + "@html-attributes": "expression", + "@a11y-text": "string", + "@a11y-variant": "string", + "@no-skin-classes": "boolean", + "@_def": "expression", + "@role": "never", + "@aria-labelledby": "never", + "description": "[view documentation](https://ebay.github.io/ebayui-core/?path=/story/graphics-icons-ebay-icon)" +} diff --git a/src/components/ebay-icon/icons/ebay-european-conformity-48-icon/symbol.ts b/src/components/ebay-icon/icons/ebay-european-conformity-48-icon/symbol.ts new file mode 100644 index 000000000..ac70c4406 --- /dev/null +++ b/src/components/ebay-icon/icons/ebay-european-conformity-48-icon/symbol.ts @@ -0,0 +1,4 @@ +export function symbol() { + // eslint-disable-next-line max-len,quotes + return ''; +} diff --git a/src/components/ebay-icon/icons/ebay-folder-add-16-icon/index.marko b/src/components/ebay-icon/icons/ebay-folder-add-16-icon/index.marko new file mode 100644 index 000000000..d9af8b6f2 --- /dev/null +++ b/src/components/ebay-icon/icons/ebay-folder-add-16-icon/index.marko @@ -0,0 +1,5 @@ +import { symbol } from "./symbol"; + +import type { Input as IconInput } from "../../component-browser" +export type Input = Omit; + diff --git a/src/components/ebay-icon/icons/ebay-folder-add-16-icon/marko-tag.json b/src/components/ebay-icon/icons/ebay-folder-add-16-icon/marko-tag.json new file mode 100644 index 000000000..0109d5328 --- /dev/null +++ b/src/components/ebay-icon/icons/ebay-folder-add-16-icon/marko-tag.json @@ -0,0 +1,16 @@ +{ + "template": "./index.marko", + "attribute-groups": ["html-attributes"], + "@*": { + "targetProperty": null, + "type": "expression" + }, + "@html-attributes": "expression", + "@a11y-text": "string", + "@a11y-variant": "string", + "@no-skin-classes": "boolean", + "@_def": "expression", + "@role": "never", + "@aria-labelledby": "never", + "description": "[view documentation](https://ebay.github.io/ebayui-core/?path=/story/graphics-icons-ebay-icon)" +} diff --git a/src/components/ebay-icon/icons/ebay-folder-add-16-icon/symbol.ts b/src/components/ebay-icon/icons/ebay-folder-add-16-icon/symbol.ts new file mode 100644 index 000000000..e4ed1337e --- /dev/null +++ b/src/components/ebay-icon/icons/ebay-folder-add-16-icon/symbol.ts @@ -0,0 +1,4 @@ +export function symbol() { + // eslint-disable-next-line max-len,quotes + return ''; +} diff --git a/src/components/ebay-icon/icons/ebay-folder-add-24-icon/index.marko b/src/components/ebay-icon/icons/ebay-folder-add-24-icon/index.marko new file mode 100644 index 000000000..235a36564 --- /dev/null +++ b/src/components/ebay-icon/icons/ebay-folder-add-24-icon/index.marko @@ -0,0 +1,5 @@ +import { symbol } from "./symbol"; + +import type { Input as IconInput } from "../../component-browser" +export type Input = Omit; + diff --git a/src/components/ebay-icon/icons/ebay-folder-add-24-icon/marko-tag.json b/src/components/ebay-icon/icons/ebay-folder-add-24-icon/marko-tag.json new file mode 100644 index 000000000..0109d5328 --- /dev/null +++ b/src/components/ebay-icon/icons/ebay-folder-add-24-icon/marko-tag.json @@ -0,0 +1,16 @@ +{ + "template": "./index.marko", + "attribute-groups": ["html-attributes"], + "@*": { + "targetProperty": null, + "type": "expression" + }, + "@html-attributes": "expression", + "@a11y-text": "string", + "@a11y-variant": "string", + "@no-skin-classes": "boolean", + "@_def": "expression", + "@role": "never", + "@aria-labelledby": "never", + "description": "[view documentation](https://ebay.github.io/ebayui-core/?path=/story/graphics-icons-ebay-icon)" +} diff --git a/src/components/ebay-icon/icons/ebay-folder-add-24-icon/symbol.ts b/src/components/ebay-icon/icons/ebay-folder-add-24-icon/symbol.ts new file mode 100644 index 000000000..4af1b9488 --- /dev/null +++ b/src/components/ebay-icon/icons/ebay-folder-add-24-icon/symbol.ts @@ -0,0 +1,4 @@ +export function symbol() { + // eslint-disable-next-line max-len,quotes + return ''; +} diff --git a/src/components/ebay-icon/icons/ebay-no-children-zero-three-48-icon/index.marko b/src/components/ebay-icon/icons/ebay-no-children-zero-three-48-icon/index.marko new file mode 100644 index 000000000..a70556ac0 --- /dev/null +++ b/src/components/ebay-icon/icons/ebay-no-children-zero-three-48-icon/index.marko @@ -0,0 +1,5 @@ +import { symbol } from "./symbol"; + +import type { Input as IconInput } from "../../component-browser" +export type Input = Omit; + diff --git a/src/components/ebay-icon/icons/ebay-no-children-zero-three-48-icon/marko-tag.json b/src/components/ebay-icon/icons/ebay-no-children-zero-three-48-icon/marko-tag.json new file mode 100644 index 000000000..0109d5328 --- /dev/null +++ b/src/components/ebay-icon/icons/ebay-no-children-zero-three-48-icon/marko-tag.json @@ -0,0 +1,16 @@ +{ + "template": "./index.marko", + "attribute-groups": ["html-attributes"], + "@*": { + "targetProperty": null, + "type": "expression" + }, + "@html-attributes": "expression", + "@a11y-text": "string", + "@a11y-variant": "string", + "@no-skin-classes": "boolean", + "@_def": "expression", + "@role": "never", + "@aria-labelledby": "never", + "description": "[view documentation](https://ebay.github.io/ebayui-core/?path=/story/graphics-icons-ebay-icon)" +} diff --git a/src/components/ebay-icon/icons/ebay-no-children-zero-three-48-icon/symbol.ts b/src/components/ebay-icon/icons/ebay-no-children-zero-three-48-icon/symbol.ts new file mode 100644 index 000000000..81f18791e --- /dev/null +++ b/src/components/ebay-icon/icons/ebay-no-children-zero-three-48-icon/symbol.ts @@ -0,0 +1,4 @@ +export function symbol() { + // eslint-disable-next-line max-len,quotes + return ''; +} diff --git a/src/components/ebay-icon/icons/ebay-out-of-reach-48-icon/index.marko b/src/components/ebay-icon/icons/ebay-out-of-reach-48-icon/index.marko new file mode 100644 index 000000000..4dbe45389 --- /dev/null +++ b/src/components/ebay-icon/icons/ebay-out-of-reach-48-icon/index.marko @@ -0,0 +1,5 @@ +import { symbol } from "./symbol"; + +import type { Input as IconInput } from "../../component-browser" +export type Input = Omit; + diff --git a/src/components/ebay-icon/icons/ebay-out-of-reach-48-icon/marko-tag.json b/src/components/ebay-icon/icons/ebay-out-of-reach-48-icon/marko-tag.json new file mode 100644 index 000000000..0109d5328 --- /dev/null +++ b/src/components/ebay-icon/icons/ebay-out-of-reach-48-icon/marko-tag.json @@ -0,0 +1,16 @@ +{ + "template": "./index.marko", + "attribute-groups": ["html-attributes"], + "@*": { + "targetProperty": null, + "type": "expression" + }, + "@html-attributes": "expression", + "@a11y-text": "string", + "@a11y-variant": "string", + "@no-skin-classes": "boolean", + "@_def": "expression", + "@role": "never", + "@aria-labelledby": "never", + "description": "[view documentation](https://ebay.github.io/ebayui-core/?path=/story/graphics-icons-ebay-icon)" +} diff --git a/src/components/ebay-icon/icons/ebay-out-of-reach-48-icon/symbol.ts b/src/components/ebay-icon/icons/ebay-out-of-reach-48-icon/symbol.ts new file mode 100644 index 000000000..050f744e1 --- /dev/null +++ b/src/components/ebay-icon/icons/ebay-out-of-reach-48-icon/symbol.ts @@ -0,0 +1,4 @@ +export function symbol() { + // eslint-disable-next-line max-len,quotes + return ''; +} diff --git a/src/components/ebay-icon/icons/ebay-panel-close-vertical-16-icon/index.marko b/src/components/ebay-icon/icons/ebay-panel-close-vertical-16-icon/index.marko new file mode 100644 index 000000000..34dd0d941 --- /dev/null +++ b/src/components/ebay-icon/icons/ebay-panel-close-vertical-16-icon/index.marko @@ -0,0 +1,5 @@ +import { symbol } from "./symbol"; + +import type { Input as IconInput } from "../../component-browser" +export type Input = Omit; + diff --git a/src/components/ebay-icon/icons/ebay-panel-close-vertical-16-icon/marko-tag.json b/src/components/ebay-icon/icons/ebay-panel-close-vertical-16-icon/marko-tag.json new file mode 100644 index 000000000..0109d5328 --- /dev/null +++ b/src/components/ebay-icon/icons/ebay-panel-close-vertical-16-icon/marko-tag.json @@ -0,0 +1,16 @@ +{ + "template": "./index.marko", + "attribute-groups": ["html-attributes"], + "@*": { + "targetProperty": null, + "type": "expression" + }, + "@html-attributes": "expression", + "@a11y-text": "string", + "@a11y-variant": "string", + "@no-skin-classes": "boolean", + "@_def": "expression", + "@role": "never", + "@aria-labelledby": "never", + "description": "[view documentation](https://ebay.github.io/ebayui-core/?path=/story/graphics-icons-ebay-icon)" +} diff --git a/src/components/ebay-icon/icons/ebay-panel-close-vertical-16-icon/symbol.ts b/src/components/ebay-icon/icons/ebay-panel-close-vertical-16-icon/symbol.ts new file mode 100644 index 000000000..b6dfa1f2d --- /dev/null +++ b/src/components/ebay-icon/icons/ebay-panel-close-vertical-16-icon/symbol.ts @@ -0,0 +1,4 @@ +export function symbol() { + // eslint-disable-next-line max-len,quotes + return ''; +} diff --git a/src/components/ebay-icon/icons/ebay-panel-close-vertical-20-icon/index.marko b/src/components/ebay-icon/icons/ebay-panel-close-vertical-20-icon/index.marko new file mode 100644 index 000000000..eb7ebe655 --- /dev/null +++ b/src/components/ebay-icon/icons/ebay-panel-close-vertical-20-icon/index.marko @@ -0,0 +1,5 @@ +import { symbol } from "./symbol"; + +import type { Input as IconInput } from "../../component-browser" +export type Input = Omit; + diff --git a/src/components/ebay-icon/icons/ebay-panel-close-vertical-20-icon/marko-tag.json b/src/components/ebay-icon/icons/ebay-panel-close-vertical-20-icon/marko-tag.json new file mode 100644 index 000000000..0109d5328 --- /dev/null +++ b/src/components/ebay-icon/icons/ebay-panel-close-vertical-20-icon/marko-tag.json @@ -0,0 +1,16 @@ +{ + "template": "./index.marko", + "attribute-groups": ["html-attributes"], + "@*": { + "targetProperty": null, + "type": "expression" + }, + "@html-attributes": "expression", + "@a11y-text": "string", + "@a11y-variant": "string", + "@no-skin-classes": "boolean", + "@_def": "expression", + "@role": "never", + "@aria-labelledby": "never", + "description": "[view documentation](https://ebay.github.io/ebayui-core/?path=/story/graphics-icons-ebay-icon)" +} diff --git a/src/components/ebay-icon/icons/ebay-panel-close-vertical-20-icon/symbol.ts b/src/components/ebay-icon/icons/ebay-panel-close-vertical-20-icon/symbol.ts new file mode 100644 index 000000000..505e3462c --- /dev/null +++ b/src/components/ebay-icon/icons/ebay-panel-close-vertical-20-icon/symbol.ts @@ -0,0 +1,4 @@ +export function symbol() { + // eslint-disable-next-line max-len,quotes + return ''; +} diff --git a/src/components/ebay-icon/icons/ebay-panel-close-vertical-24-icon/index.marko b/src/components/ebay-icon/icons/ebay-panel-close-vertical-24-icon/index.marko new file mode 100644 index 000000000..af4fed1ad --- /dev/null +++ b/src/components/ebay-icon/icons/ebay-panel-close-vertical-24-icon/index.marko @@ -0,0 +1,5 @@ +import { symbol } from "./symbol"; + +import type { Input as IconInput } from "../../component-browser" +export type Input = Omit; + diff --git a/src/components/ebay-icon/icons/ebay-panel-close-vertical-24-icon/marko-tag.json b/src/components/ebay-icon/icons/ebay-panel-close-vertical-24-icon/marko-tag.json new file mode 100644 index 000000000..0109d5328 --- /dev/null +++ b/src/components/ebay-icon/icons/ebay-panel-close-vertical-24-icon/marko-tag.json @@ -0,0 +1,16 @@ +{ + "template": "./index.marko", + "attribute-groups": ["html-attributes"], + "@*": { + "targetProperty": null, + "type": "expression" + }, + "@html-attributes": "expression", + "@a11y-text": "string", + "@a11y-variant": "string", + "@no-skin-classes": "boolean", + "@_def": "expression", + "@role": "never", + "@aria-labelledby": "never", + "description": "[view documentation](https://ebay.github.io/ebayui-core/?path=/story/graphics-icons-ebay-icon)" +} diff --git a/src/components/ebay-icon/icons/ebay-panel-close-vertical-24-icon/symbol.ts b/src/components/ebay-icon/icons/ebay-panel-close-vertical-24-icon/symbol.ts new file mode 100644 index 000000000..f992da9c1 --- /dev/null +++ b/src/components/ebay-icon/icons/ebay-panel-close-vertical-24-icon/symbol.ts @@ -0,0 +1,4 @@ +export function symbol() { + // eslint-disable-next-line max-len,quotes + return ''; +} diff --git a/src/components/ebay-icon/icons/ebay-panel-open-vertical-16-icon/index.marko b/src/components/ebay-icon/icons/ebay-panel-open-vertical-16-icon/index.marko new file mode 100644 index 000000000..1cedc93ca --- /dev/null +++ b/src/components/ebay-icon/icons/ebay-panel-open-vertical-16-icon/index.marko @@ -0,0 +1,5 @@ +import { symbol } from "./symbol"; + +import type { Input as IconInput } from "../../component-browser" +export type Input = Omit; + diff --git a/src/components/ebay-icon/icons/ebay-panel-open-vertical-16-icon/marko-tag.json b/src/components/ebay-icon/icons/ebay-panel-open-vertical-16-icon/marko-tag.json new file mode 100644 index 000000000..0109d5328 --- /dev/null +++ b/src/components/ebay-icon/icons/ebay-panel-open-vertical-16-icon/marko-tag.json @@ -0,0 +1,16 @@ +{ + "template": "./index.marko", + "attribute-groups": ["html-attributes"], + "@*": { + "targetProperty": null, + "type": "expression" + }, + "@html-attributes": "expression", + "@a11y-text": "string", + "@a11y-variant": "string", + "@no-skin-classes": "boolean", + "@_def": "expression", + "@role": "never", + "@aria-labelledby": "never", + "description": "[view documentation](https://ebay.github.io/ebayui-core/?path=/story/graphics-icons-ebay-icon)" +} diff --git a/src/components/ebay-icon/icons/ebay-panel-open-vertical-16-icon/symbol.ts b/src/components/ebay-icon/icons/ebay-panel-open-vertical-16-icon/symbol.ts new file mode 100644 index 000000000..168f579f5 --- /dev/null +++ b/src/components/ebay-icon/icons/ebay-panel-open-vertical-16-icon/symbol.ts @@ -0,0 +1,4 @@ +export function symbol() { + // eslint-disable-next-line max-len,quotes + return ''; +} diff --git a/src/components/ebay-icon/icons/ebay-panel-open-vertical-20-icon/index.marko b/src/components/ebay-icon/icons/ebay-panel-open-vertical-20-icon/index.marko new file mode 100644 index 000000000..d9f293dfb --- /dev/null +++ b/src/components/ebay-icon/icons/ebay-panel-open-vertical-20-icon/index.marko @@ -0,0 +1,5 @@ +import { symbol } from "./symbol"; + +import type { Input as IconInput } from "../../component-browser" +export type Input = Omit; + diff --git a/src/components/ebay-icon/icons/ebay-panel-open-vertical-20-icon/marko-tag.json b/src/components/ebay-icon/icons/ebay-panel-open-vertical-20-icon/marko-tag.json new file mode 100644 index 000000000..0109d5328 --- /dev/null +++ b/src/components/ebay-icon/icons/ebay-panel-open-vertical-20-icon/marko-tag.json @@ -0,0 +1,16 @@ +{ + "template": "./index.marko", + "attribute-groups": ["html-attributes"], + "@*": { + "targetProperty": null, + "type": "expression" + }, + "@html-attributes": "expression", + "@a11y-text": "string", + "@a11y-variant": "string", + "@no-skin-classes": "boolean", + "@_def": "expression", + "@role": "never", + "@aria-labelledby": "never", + "description": "[view documentation](https://ebay.github.io/ebayui-core/?path=/story/graphics-icons-ebay-icon)" +} diff --git a/src/components/ebay-icon/icons/ebay-panel-open-vertical-20-icon/symbol.ts b/src/components/ebay-icon/icons/ebay-panel-open-vertical-20-icon/symbol.ts new file mode 100644 index 000000000..849b5cda2 --- /dev/null +++ b/src/components/ebay-icon/icons/ebay-panel-open-vertical-20-icon/symbol.ts @@ -0,0 +1,4 @@ +export function symbol() { + // eslint-disable-next-line max-len,quotes + return ''; +} diff --git a/src/components/ebay-icon/icons/ebay-panel-open-vertical-24-icon/index.marko b/src/components/ebay-icon/icons/ebay-panel-open-vertical-24-icon/index.marko new file mode 100644 index 000000000..5e3a2cfda --- /dev/null +++ b/src/components/ebay-icon/icons/ebay-panel-open-vertical-24-icon/index.marko @@ -0,0 +1,5 @@ +import { symbol } from "./symbol"; + +import type { Input as IconInput } from "../../component-browser" +export type Input = Omit; + diff --git a/src/components/ebay-icon/icons/ebay-panel-open-vertical-24-icon/marko-tag.json b/src/components/ebay-icon/icons/ebay-panel-open-vertical-24-icon/marko-tag.json new file mode 100644 index 000000000..0109d5328 --- /dev/null +++ b/src/components/ebay-icon/icons/ebay-panel-open-vertical-24-icon/marko-tag.json @@ -0,0 +1,16 @@ +{ + "template": "./index.marko", + "attribute-groups": ["html-attributes"], + "@*": { + "targetProperty": null, + "type": "expression" + }, + "@html-attributes": "expression", + "@a11y-text": "string", + "@a11y-variant": "string", + "@no-skin-classes": "boolean", + "@_def": "expression", + "@role": "never", + "@aria-labelledby": "never", + "description": "[view documentation](https://ebay.github.io/ebayui-core/?path=/story/graphics-icons-ebay-icon)" +} diff --git a/src/components/ebay-icon/icons/ebay-panel-open-vertical-24-icon/symbol.ts b/src/components/ebay-icon/icons/ebay-panel-open-vertical-24-icon/symbol.ts new file mode 100644 index 000000000..5fc8d8dc1 --- /dev/null +++ b/src/components/ebay-icon/icons/ebay-panel-open-vertical-24-icon/symbol.ts @@ -0,0 +1,4 @@ +export function symbol() { + // eslint-disable-next-line max-len,quotes + return ''; +} diff --git a/src/components/ebay-icon/icons/ebay-psa-vault-16-colored-icon/index.marko b/src/components/ebay-icon/icons/ebay-psa-vault-16-colored-icon/index.marko new file mode 100644 index 000000000..3c1637d9e --- /dev/null +++ b/src/components/ebay-icon/icons/ebay-psa-vault-16-colored-icon/index.marko @@ -0,0 +1,5 @@ +import { symbol } from "./symbol"; + +import type { Input as IconInput } from "../../component-browser" +export type Input = Omit; + diff --git a/src/components/ebay-icon/icons/ebay-psa-vault-16-colored-icon/marko-tag.json b/src/components/ebay-icon/icons/ebay-psa-vault-16-colored-icon/marko-tag.json new file mode 100644 index 000000000..0109d5328 --- /dev/null +++ b/src/components/ebay-icon/icons/ebay-psa-vault-16-colored-icon/marko-tag.json @@ -0,0 +1,16 @@ +{ + "template": "./index.marko", + "attribute-groups": ["html-attributes"], + "@*": { + "targetProperty": null, + "type": "expression" + }, + "@html-attributes": "expression", + "@a11y-text": "string", + "@a11y-variant": "string", + "@no-skin-classes": "boolean", + "@_def": "expression", + "@role": "never", + "@aria-labelledby": "never", + "description": "[view documentation](https://ebay.github.io/ebayui-core/?path=/story/graphics-icons-ebay-icon)" +} diff --git a/src/components/ebay-icon/icons/ebay-psa-vault-16-colored-icon/symbol.ts b/src/components/ebay-icon/icons/ebay-psa-vault-16-colored-icon/symbol.ts new file mode 100644 index 000000000..cab786f4a --- /dev/null +++ b/src/components/ebay-icon/icons/ebay-psa-vault-16-colored-icon/symbol.ts @@ -0,0 +1,4 @@ +export function symbol() { + // eslint-disable-next-line max-len,quotes + return ''; +} diff --git a/src/components/ebay-icon/icons/ebay-psa-vault-16-icon/index.marko b/src/components/ebay-icon/icons/ebay-psa-vault-16-icon/index.marko new file mode 100644 index 000000000..97988fba8 --- /dev/null +++ b/src/components/ebay-icon/icons/ebay-psa-vault-16-icon/index.marko @@ -0,0 +1,5 @@ +import { symbol } from "./symbol"; + +import type { Input as IconInput } from "../../component-browser" +export type Input = Omit; + diff --git a/src/components/ebay-icon/icons/ebay-psa-vault-16-icon/marko-tag.json b/src/components/ebay-icon/icons/ebay-psa-vault-16-icon/marko-tag.json new file mode 100644 index 000000000..0109d5328 --- /dev/null +++ b/src/components/ebay-icon/icons/ebay-psa-vault-16-icon/marko-tag.json @@ -0,0 +1,16 @@ +{ + "template": "./index.marko", + "attribute-groups": ["html-attributes"], + "@*": { + "targetProperty": null, + "type": "expression" + }, + "@html-attributes": "expression", + "@a11y-text": "string", + "@a11y-variant": "string", + "@no-skin-classes": "boolean", + "@_def": "expression", + "@role": "never", + "@aria-labelledby": "never", + "description": "[view documentation](https://ebay.github.io/ebayui-core/?path=/story/graphics-icons-ebay-icon)" +} diff --git a/src/components/ebay-icon/icons/ebay-psa-vault-16-icon/symbol.ts b/src/components/ebay-icon/icons/ebay-psa-vault-16-icon/symbol.ts new file mode 100644 index 000000000..c44277b24 --- /dev/null +++ b/src/components/ebay-icon/icons/ebay-psa-vault-16-icon/symbol.ts @@ -0,0 +1,4 @@ +export function symbol() { + // eslint-disable-next-line max-len,quotes + return ''; +} diff --git a/src/components/ebay-icon/icons/ebay-stepper-upcoming-24-icon/symbol.ts b/src/components/ebay-icon/icons/ebay-stepper-upcoming-24-icon/symbol.ts index 33e374c70..d61ef6d02 100644 --- a/src/components/ebay-icon/icons/ebay-stepper-upcoming-24-icon/symbol.ts +++ b/src/components/ebay-icon/icons/ebay-stepper-upcoming-24-icon/symbol.ts @@ -1,4 +1,4 @@ export function symbol() { // eslint-disable-next-line max-len,quotes - return ''; + return ''; } diff --git a/src/components/ebay-icon/icons/ebay-trading-card-grade-16-icon/index.marko b/src/components/ebay-icon/icons/ebay-trading-card-grade-16-icon/index.marko new file mode 100644 index 000000000..b04c44c9e --- /dev/null +++ b/src/components/ebay-icon/icons/ebay-trading-card-grade-16-icon/index.marko @@ -0,0 +1,5 @@ +import { symbol } from "./symbol"; + +import type { Input as IconInput } from "../../component-browser" +export type Input = Omit; + diff --git a/src/components/ebay-icon/icons/ebay-trading-card-grade-16-icon/marko-tag.json b/src/components/ebay-icon/icons/ebay-trading-card-grade-16-icon/marko-tag.json new file mode 100644 index 000000000..0109d5328 --- /dev/null +++ b/src/components/ebay-icon/icons/ebay-trading-card-grade-16-icon/marko-tag.json @@ -0,0 +1,16 @@ +{ + "template": "./index.marko", + "attribute-groups": ["html-attributes"], + "@*": { + "targetProperty": null, + "type": "expression" + }, + "@html-attributes": "expression", + "@a11y-text": "string", + "@a11y-variant": "string", + "@no-skin-classes": "boolean", + "@_def": "expression", + "@role": "never", + "@aria-labelledby": "never", + "description": "[view documentation](https://ebay.github.io/ebayui-core/?path=/story/graphics-icons-ebay-icon)" +} diff --git a/src/components/ebay-icon/icons/ebay-trading-card-grade-16-icon/symbol.ts b/src/components/ebay-icon/icons/ebay-trading-card-grade-16-icon/symbol.ts new file mode 100644 index 000000000..797077e52 --- /dev/null +++ b/src/components/ebay-icon/icons/ebay-trading-card-grade-16-icon/symbol.ts @@ -0,0 +1,4 @@ +export function symbol() { + // eslint-disable-next-line max-len,quotes + return ''; +} diff --git a/src/components/ebay-icon/icons/ebay-trading-card-grade-24-icon/index.marko b/src/components/ebay-icon/icons/ebay-trading-card-grade-24-icon/index.marko new file mode 100644 index 000000000..1044104dc --- /dev/null +++ b/src/components/ebay-icon/icons/ebay-trading-card-grade-24-icon/index.marko @@ -0,0 +1,5 @@ +import { symbol } from "./symbol"; + +import type { Input as IconInput } from "../../component-browser" +export type Input = Omit; + diff --git a/src/components/ebay-icon/icons/ebay-trading-card-grade-24-icon/marko-tag.json b/src/components/ebay-icon/icons/ebay-trading-card-grade-24-icon/marko-tag.json new file mode 100644 index 000000000..0109d5328 --- /dev/null +++ b/src/components/ebay-icon/icons/ebay-trading-card-grade-24-icon/marko-tag.json @@ -0,0 +1,16 @@ +{ + "template": "./index.marko", + "attribute-groups": ["html-attributes"], + "@*": { + "targetProperty": null, + "type": "expression" + }, + "@html-attributes": "expression", + "@a11y-text": "string", + "@a11y-variant": "string", + "@no-skin-classes": "boolean", + "@_def": "expression", + "@role": "never", + "@aria-labelledby": "never", + "description": "[view documentation](https://ebay.github.io/ebayui-core/?path=/story/graphics-icons-ebay-icon)" +} diff --git a/src/components/ebay-icon/icons/ebay-trading-card-grade-24-icon/symbol.ts b/src/components/ebay-icon/icons/ebay-trading-card-grade-24-icon/symbol.ts new file mode 100644 index 000000000..ee8af709e --- /dev/null +++ b/src/components/ebay-icon/icons/ebay-trading-card-grade-24-icon/symbol.ts @@ -0,0 +1,4 @@ +export function symbol() { + // eslint-disable-next-line max-len,quotes + return ''; +} diff --git a/src/components/ebay-image-placeholder/README.md b/src/components/ebay-image-placeholder/README.md index 278213bb0..8a50c78f4 100644 --- a/src/components/ebay-image-placeholder/README.md +++ b/src/components/ebay-image-placeholder/README.md @@ -9,6 +9,6 @@ ## Examples and Documentation -- [Storybook](https://ebay.github.io/ebayui-core/?path=/story/graphics-icons-ebay-image-placeholder) -- [Storybook Docs](https://ebay.github.io/ebayui-core/?path=/docs/graphics-icons-ebay-image-placeholder) -- [Code Examples](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-image-placeholder/examples) +- [Storybook](https://ebay.github.io/ebayui-core/?path=/story/graphics-icons-ebay-image-placeholder) +- [Storybook Docs](https://ebay.github.io/ebayui-core/?path=/docs/graphics-icons-ebay-image-placeholder) +- [Code Examples](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-image-placeholder/examples) diff --git a/src/components/ebay-infotip/README.md b/src/components/ebay-infotip/README.md index 3dc5eadde..d356a7d33 100644 --- a/src/components/ebay-infotip/README.md +++ b/src/components/ebay-infotip/README.md @@ -9,6 +9,6 @@ ## Examples and Documentation -- [Storybook](https://ebay.github.io/ebayui-core/?path=/story/buttons-ebay-infotip) -- [Storybook Docs](https://ebay.github.io/ebayui-core/?path=/docs/buttons-ebay-infotip) -- [Code Examples](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-infotip/examples) +- [Storybook](https://ebay.github.io/ebayui-core/?path=/story/buttons-ebay-infotip) +- [Storybook Docs](https://ebay.github.io/ebayui-core/?path=/docs/buttons-ebay-infotip) +- [Code Examples](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-infotip/examples) diff --git a/src/components/ebay-inline-notice/README.md b/src/components/ebay-inline-notice/README.md index c0532620f..76bf72774 100644 --- a/src/components/ebay-inline-notice/README.md +++ b/src/components/ebay-inline-notice/README.md @@ -13,6 +13,6 @@ This notice should be rendered inline in the page and should not be used at the ## Examples and Documentation -- [Storybook](https://ebay.github.io/ebayui-core/?path=/story/notices-tips-ebay-inline-notice) -- [Storybook Docs](https://ebay.github.io/ebayui-core/?path=/docs/notices-tips-ebay-inline-notice) -- [Code Examples](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-inline-notice/examples) +- [Storybook](https://ebay.github.io/ebayui-core/?path=/story/notices-tips-ebay-inline-notice) +- [Storybook Docs](https://ebay.github.io/ebayui-core/?path=/docs/notices-tips-ebay-inline-notice) +- [Code Examples](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-inline-notice/examples) diff --git a/src/components/ebay-lightbox-dialog/README.md b/src/components/ebay-lightbox-dialog/README.md index 9459cfb90..9888b7652 100644 --- a/src/components/ebay-lightbox-dialog/README.md +++ b/src/components/ebay-lightbox-dialog/README.md @@ -9,10 +9,10 @@ ## Notes / FAQ -- `@header` is _required_, and styles will break if you do not include it +- `@header` is _required_, and styles will break if you do not include it ## Examples and Documentation -- [Storybook](https://ebay.github.io/ebayui-core/?path=/story/dialogs-ebay-lightbox-dialog) -- [Storybook Docs](https://ebay.github.io/ebayui-core/?path=/docs/dialogs-ebay-lightbox-dialog) -- [Code Examples](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-lightbox-dialog/examples) +- [Storybook](https://ebay.github.io/ebayui-core/?path=/story/dialogs-ebay-lightbox-dialog) +- [Storybook Docs](https://ebay.github.io/ebayui-core/?path=/docs/dialogs-ebay-lightbox-dialog) +- [Code Examples](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-lightbox-dialog/examples) diff --git a/src/components/ebay-list/README.md b/src/components/ebay-list/README.md index 558c3aa52..7b507fae4 100644 --- a/src/components/ebay-list/README.md +++ b/src/components/ebay-list/README.md @@ -9,6 +9,6 @@ ## Examples and Documentation -- [Storybook](https://ebay.github.io/ebayui-core/?path=/story/building-blocks-ebay-list) -- [Storybook Docs](https://ebay.github.io/ebayui-core/?path=/docs/building-blocks-ebay-list) -- [Code Examples](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-list/examples) +- [Storybook](https://ebay.github.io/ebayui-core/?path=/story/building-blocks-ebay-list) +- [Storybook Docs](https://ebay.github.io/ebayui-core/?path=/docs/building-blocks-ebay-list) +- [Code Examples](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-list/examples) diff --git a/src/components/ebay-listbox-button/README.md b/src/components/ebay-listbox-button/README.md index fedca1155..22888a322 100644 --- a/src/components/ebay-listbox-button/README.md +++ b/src/components/ebay-listbox-button/README.md @@ -9,6 +9,6 @@ ## Examples and Documentation -- [Storybook](https://ebay.github.io/ebayui-core/?path=/story/buttons-ebay-listbox-button) -- [Storybook Docs](https://ebay.github.io/ebayui-core/?path=/docs/buttons-ebay-listbox-button) -- [Code Examples](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-listbox-button/examples) +- [Storybook](https://ebay.github.io/ebayui-core/?path=/story/buttons-ebay-listbox-button) +- [Storybook Docs](https://ebay.github.io/ebayui-core/?path=/docs/buttons-ebay-listbox-button) +- [Code Examples](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-listbox-button/examples) diff --git a/src/components/ebay-listbox/README.md b/src/components/ebay-listbox/README.md index c1aed9e0c..237d49807 100644 --- a/src/components/ebay-listbox/README.md +++ b/src/components/ebay-listbox/README.md @@ -11,6 +11,6 @@ Used to generate a menu portion of listbox. For use with a button which hides an ## Examples and Documentation -- [Storybook](https://ebay.github.io/ebayui-core/?path=/story/building-blocks-ebay-listbox) -- [Storybook Docs](https://ebay.github.io/ebayui-core/?path=/docs/building-blocks-ebay-listbox) -- [Code Examples](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-listbox/examples) +- [Storybook](https://ebay.github.io/ebayui-core/?path=/story/building-blocks-ebay-listbox) +- [Storybook Docs](https://ebay.github.io/ebayui-core/?path=/docs/building-blocks-ebay-listbox) +- [Code Examples](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-listbox/examples) diff --git a/src/components/ebay-menu-button/README.md b/src/components/ebay-menu-button/README.md index 6c14c2950..ac9a6612c 100644 --- a/src/components/ebay-menu-button/README.md +++ b/src/components/ebay-menu-button/README.md @@ -9,6 +9,6 @@ ## Examples and Documentation -- [Storybook](https://ebay.github.io/ebayui-core/?path=/story/buttons-ebay-menu-button) -- [Storybook Docs](https://ebay.github.io/ebayui-core/?path=/docs/buttons-ebay-menu-button) -- [Code Examples](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-menu-button/examples) +- [Storybook](https://ebay.github.io/ebayui-core/?path=/story/buttons-ebay-menu-button) +- [Storybook Docs](https://ebay.github.io/ebayui-core/?path=/docs/buttons-ebay-menu-button) +- [Code Examples](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-menu-button/examples) diff --git a/src/components/ebay-menu/README.md b/src/components/ebay-menu/README.md index 8f57154d1..e2d7cd6dd 100644 --- a/src/components/ebay-menu/README.md +++ b/src/components/ebay-menu/README.md @@ -9,6 +9,6 @@ ## Examples and Documentation -- [Storybook](https://ebay.github.io/ebayui-core/?path=/story/building-blocks-ebay-menu) -- [Storybook Docs](https://ebay.github.io/ebayui-core/?path=/docs/building-blocks-ebay-menu) -- [Code Examples](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-menu/examples) +- [Storybook](https://ebay.github.io/ebayui-core/?path=/story/building-blocks-ebay-menu) +- [Storybook Docs](https://ebay.github.io/ebayui-core/?path=/docs/building-blocks-ebay-menu) +- [Code Examples](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-menu/examples) diff --git a/src/components/ebay-page-notice/README.md b/src/components/ebay-page-notice/README.md index 1742bb346..5801d1fd2 100644 --- a/src/components/ebay-page-notice/README.md +++ b/src/components/ebay-page-notice/README.md @@ -11,6 +11,6 @@ The `` is a tag used to create a custom-designed notice elemen ## Examples and Documentation -- [Storybook](https://ebay.github.io/ebayui-core/?path=/story/notices-tips-ebay-page-notice) -- [Storybook Docs](https://ebay.github.io/ebayui-core/?path=/docs/notices-tips-ebay-page-notice) -- [Code Examples](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-page-notice/examples) +- [Storybook](https://ebay.github.io/ebayui-core/?path=/story/notices-tips-ebay-page-notice) +- [Storybook Docs](https://ebay.github.io/ebayui-core/?path=/docs/notices-tips-ebay-page-notice) +- [Code Examples](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-page-notice/examples) diff --git a/src/components/ebay-pagination/README.md b/src/components/ebay-pagination/README.md index 8effc76d5..0fb7c44b8 100644 --- a/src/components/ebay-pagination/README.md +++ b/src/components/ebay-pagination/README.md @@ -13,6 +13,6 @@ The `` is a tag used to create a pagination navigation. It will ## Examples and Documentation -- [Storybook](https://ebay.github.io/ebayui-core/?path=/story/navigation-disclosure-ebay-pagination) -- [Storybook Docs](https://ebay.github.io/ebayui-core/?path=/docs/navigation-disclosure-ebay-pagination) -- [Code Examples](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-pagination/examples) +- [Storybook](https://ebay.github.io/ebayui-core/?path=/story/navigation-disclosure-ebay-pagination) +- [Storybook Docs](https://ebay.github.io/ebayui-core/?path=/docs/navigation-disclosure-ebay-pagination) +- [Code Examples](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-pagination/examples) diff --git a/src/components/ebay-panel-dialog/README.md b/src/components/ebay-panel-dialog/README.md index 15fd6d3a6..89d48c5b6 100644 --- a/src/components/ebay-panel-dialog/README.md +++ b/src/components/ebay-panel-dialog/README.md @@ -9,6 +9,6 @@ ## Examples and Documentation -- [Storybook](https://ebay.github.io/ebayui-core/?path=/story/dialogs-ebay-panel-dialog) -- [Storybook Docs](https://ebay.github.io/ebayui-core/?path=/docs/dialogs-ebay-panel-dialog) -- [Code Examples](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-panel-dialog/examples) +- [Storybook](https://ebay.github.io/ebayui-core/?path=/story/dialogs-ebay-panel-dialog) +- [Storybook Docs](https://ebay.github.io/ebayui-core/?path=/docs/dialogs-ebay-panel-dialog) +- [Code Examples](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-panel-dialog/examples) diff --git a/src/components/ebay-phone-input/README.md b/src/components/ebay-phone-input/README.md index 4af1c3d74..173736eaf 100644 --- a/src/components/ebay-phone-input/README.md +++ b/src/components/ebay-phone-input/README.md @@ -14,6 +14,6 @@ See [this example](https://github.com/eBay/ebayui-core/tree/master/src/component ## Examples and Documentation -- [Storybook](https://ebay.github.io/ebayui-core/?path=/story/form-input-ebay-phone-input-button) -- [Storybook Docs](https://ebay.github.io/ebayui-core/?path=/docs/form-input-ebay-phone-input-button) -- [Code Examples](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-phone-input-button/examples) +- [Storybook](https://ebay.github.io/ebayui-core/?path=/story/form-input-ebay-phone-input-button) +- [Storybook Docs](https://ebay.github.io/ebayui-core/?path=/docs/form-input-ebay-phone-input-button) +- [Code Examples](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-phone-input-button/examples) diff --git a/src/components/ebay-progress-bar-expressive/README.md b/src/components/ebay-progress-bar-expressive/README.md index 0b57a2149..d2203cc89 100644 --- a/src/components/ebay-progress-bar-expressive/README.md +++ b/src/components/ebay-progress-bar-expressive/README.md @@ -20,6 +20,6 @@ The expressive progress bar can replace our traditional spinner to feel faster d ## Examples and Documentation -- [Storybook](https://ebay.github.io/ebayui-core/?path=/story/progress-ebay-progress-bar-expressive) -- [Storybook Docs](https://ebay.github.io/ebayui-core/?path=/docs/progress-ebay-progress-bar-expressive) -- [Code Examples](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-progress-bar-expressive/examples) +- [Storybook](https://ebay.github.io/ebayui-core/?path=/story/progress-ebay-progress-bar-expressive) +- [Storybook Docs](https://ebay.github.io/ebayui-core/?path=/docs/progress-ebay-progress-bar-expressive) +- [Code Examples](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-progress-bar-expressive/examples) diff --git a/src/components/ebay-progress-bar/README.md b/src/components/ebay-progress-bar/README.md index e013367ec..c9561041b 100644 --- a/src/components/ebay-progress-bar/README.md +++ b/src/components/ebay-progress-bar/README.md @@ -15,6 +15,6 @@ The progress bar gives an immediate, real-time visualisation of the current task ## Examples and Documentation -- [Storybook](https://ebay.github.io/ebayui-core/?path=/story/progress-ebay-progress-bar) -- [Storybook Docs](https://ebay.github.io/ebayui-core/?path=/docs/progress-ebay-progress-bar) -- [Code Examples](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-progress-bar/examples) +- [Storybook](https://ebay.github.io/ebayui-core/?path=/story/progress-ebay-progress-bar) +- [Storybook Docs](https://ebay.github.io/ebayui-core/?path=/docs/progress-ebay-progress-bar) +- [Code Examples](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-progress-bar/examples) diff --git a/src/components/ebay-progress-spinner/README.md b/src/components/ebay-progress-spinner/README.md index c5c99b20e..a8e753244 100644 --- a/src/components/ebay-progress-spinner/README.md +++ b/src/components/ebay-progress-spinner/README.md @@ -13,6 +13,6 @@ ## Examples and Documentation -- [Storybook](https://ebay.github.io/ebayui-core/?path=/story/progress-ebay-progress-spinner) -- [Storybook Docs](https://ebay.github.io/ebayui-core/?path=/docs/progress-ebay-progress-spinner) -- [Code Examples](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-progress-spinner/examples) +- [Storybook](https://ebay.github.io/ebayui-core/?path=/story/progress-ebay-progress-spinner) +- [Storybook Docs](https://ebay.github.io/ebayui-core/?path=/docs/progress-ebay-progress-spinner) +- [Code Examples](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-progress-spinner/examples) diff --git a/src/components/ebay-progress-stepper/README.md b/src/components/ebay-progress-stepper/README.md index 424acdef3..cb5946da9 100644 --- a/src/components/ebay-progress-stepper/README.md +++ b/src/components/ebay-progress-stepper/README.md @@ -9,6 +9,6 @@ ## Examples and Documentation -- [Storybook](https://ebay.github.io/ebayui-core/?path=/story/progress-ebay-progress-stepper) -- [Storybook Docs](https://ebay.github.io/ebayui-core/?path=/docs/progress-ebay-progress-stepper) -- [Code Examples](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-progress-stepper/examples) +- [Storybook](https://ebay.github.io/ebayui-core/?path=/story/progress-ebay-progress-stepper) +- [Storybook Docs](https://ebay.github.io/ebayui-core/?path=/docs/progress-ebay-progress-stepper) +- [Code Examples](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-progress-stepper/examples) diff --git a/src/components/ebay-radio/README.md b/src/components/ebay-radio/README.md index 53a9cfb9b..97185361b 100644 --- a/src/components/ebay-radio/README.md +++ b/src/components/ebay-radio/README.md @@ -9,6 +9,6 @@ ## Examples and Documentation -- [Storybook](https://ebay.github.io/ebayui-core/?path=/story/form-input-ebay-radio) -- [Storybook Docs](https://ebay.github.io/ebayui-core/?path=/docs/form-input-ebay-radio) -- [Code Examples](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-radio/examples) +- [Storybook](https://ebay.github.io/ebayui-core/?path=/story/form-input-ebay-radio) +- [Storybook Docs](https://ebay.github.io/ebayui-core/?path=/docs/form-input-ebay-radio) +- [Code Examples](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-radio/examples) diff --git a/src/components/ebay-section-notice/README.md b/src/components/ebay-section-notice/README.md index 7d3729452..1b4111fff 100644 --- a/src/components/ebay-section-notice/README.md +++ b/src/components/ebay-section-notice/README.md @@ -13,6 +13,6 @@ This notice should be used at the top of various sections to display information ## Examples and Documentation -- [Storybook](https://ebay.github.io/ebayui-core/?path=/story/notices-tips-ebay-section-notice) -- [Storybook Docs](https://ebay.github.io/ebayui-core/?path=/docs/notices-tips-ebay-section-notice) -- [Code Examples](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-section-notice/examples) +- [Storybook](https://ebay.github.io/ebayui-core/?path=/story/notices-tips-ebay-section-notice) +- [Storybook Docs](https://ebay.github.io/ebayui-core/?path=/docs/notices-tips-ebay-section-notice) +- [Code Examples](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-section-notice/examples) diff --git a/src/components/ebay-section-title/README.md b/src/components/ebay-section-title/README.md index 6f6dbd2f3..4cd3f9185 100644 --- a/src/components/ebay-section-title/README.md +++ b/src/components/ebay-section-title/README.md @@ -7,6 +7,6 @@ -- [Storybook](https://ebay.github.io/ebayui-core/?path=/story/navigation-disclosure-ebay-section-title) -- [Storybook Docs](https://ebay.github.io/ebayui-core/?path=/docs/navigation-disclosure-ebay-section-title) -- [Code Examples](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-section-title/examples) +- [Storybook](https://ebay.github.io/ebayui-core/?path=/story/navigation-disclosure-ebay-section-title) +- [Storybook Docs](https://ebay.github.io/ebayui-core/?path=/docs/navigation-disclosure-ebay-section-title) +- [Code Examples](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-section-title/examples) diff --git a/src/components/ebay-segmented-buttons/README.md b/src/components/ebay-segmented-buttons/README.md index 61ed60c60..4c0ccee9a 100644 --- a/src/components/ebay-segmented-buttons/README.md +++ b/src/components/ebay-segmented-buttons/README.md @@ -9,6 +9,6 @@ ## Examples and Documentation -- [Storybook](https://ebay.github.io/ebayui-core/?path=/story/buttons-ebay-segmented-buttons) -- [Storybook Docs](https://ebay.github.io/ebayui-core/?path=/docs/buttons-ebay-segmented-buttons) -- [Code Examples](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-segmented-buttons/examples) +- [Storybook](https://ebay.github.io/ebayui-core/?path=/story/buttons-ebay-segmented-buttons) +- [Storybook Docs](https://ebay.github.io/ebayui-core/?path=/docs/buttons-ebay-segmented-buttons) +- [Code Examples](https://github.com/eBay/ebayui-core/tree/master/src/components/ebay-segmented-buttons/examples) diff --git a/src/components/ebay-select/README.md b/src/components/ebay-select/README.md index 9b429175a..72d5f4b37 100644 --- a/src/components/ebay-select/README.md +++ b/src/components/ebay-select/README.md @@ -11,6 +11,6 @@ The `` is used to create a native `