@ebay/ui-core-react 3.13.2 → 4.0.0-rc.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/common/tooltip-utils/tooltip-content.js +1 -1
- package/common/tooltip-utils/tooltip.d.ts +1 -1
- package/ebay-breadcrumbs/breadcrumb-item.js +1 -1
- package/ebay-button/button-expand.js +1 -1
- package/ebay-button/button.d.ts +1 -1
- package/ebay-carousel/carousel-control-button.js +2 -2
- package/ebay-carousel/carousel-item.d.ts +1 -1
- package/ebay-checkbox/checkbox.js +4 -4
- package/ebay-cta-button/cta-button.d.ts +1 -1
- package/ebay-cta-button/cta-button.js +1 -1
- package/ebay-dialog-base/components/dialogBase.js +1 -1
- package/ebay-fake-menu/menu-item.js +1 -1
- package/ebay-fake-menu-button/menu-button.js +1 -1
- package/ebay-icon/README.md +1 -1
- package/ebay-icon/icon.d.ts +1 -5
- package/ebay-icon/icon.d.ts.map +1 -1
- package/ebay-icon/icon.js +9 -21
- package/ebay-icon/types.d.ts +1 -1
- package/ebay-icon/types.d.ts.map +1 -1
- package/ebay-icon-button/icon-button.d.ts +1 -1
- package/ebay-infotip/ebay-infotip-host.d.ts +1 -1
- package/ebay-listbox-button/listbox-button-option.js +1 -1
- package/ebay-listbox-button/listbox-button.js +1 -1
- package/ebay-menu/menu-item.js +1 -1
- package/ebay-pagination/pagination-item.d.ts +1 -1
- package/ebay-pagination/pagination-item.js +2 -2
- package/ebay-pagination/pagination.js +1 -1
- package/ebay-progress-spinner/progress-spinner.js +1 -1
- package/ebay-progress-stepper/ebay-progress-step.js +4 -4
- package/ebay-radio/radio.js +4 -4
- package/ebay-select/ebay-select.js +1 -1
- package/ebay-svg/svg.d.ts.map +1 -1
- package/ebay-svg/svg.js +2088 -651
- package/ebay-textbox/textbox.d.ts +1 -1
- package/ebay-video/reportButton.js +1 -1
- package/ebay-video/video.js +2 -2
- package/package.json +3 -5
- package/ebay-program-badge/README.md +0 -20
- package/ebay-program-badge/index.d.ts +0 -3
- package/ebay-program-badge/index.d.ts.map +0 -1
- package/ebay-program-badge/index.js +0 -4
- package/ebay-program-badge/program-badge.d.ts +0 -9
- package/ebay-program-badge/program-badge.d.ts.map +0 -1
- package/ebay-program-badge/program-badge.js +0 -34
- package/ebay-program-badge/types.d.ts +0 -2
- package/ebay-program-badge/types.d.ts.map +0 -1
- package/ebay-program-badge/types.js +0 -3
- package/index.d.ts +0 -44
- package/index.d.ts.map +0 -1
- package/index.js +0 -132
package/README.md
CHANGED
|
@@ -8,7 +8,7 @@ eBayUI React components
|
|
|
8
8
|
|
|
9
9
|
* [Node.js](https://nodejs.org/en/) (v16.14+)
|
|
10
10
|
* [React](https://reactjs.org/) (v16.8+)
|
|
11
|
-
* [eBay Skin](https://ebay.github.io/skin/) (
|
|
11
|
+
* [eBay Skin](https://ebay.github.io/skin/) (v16)
|
|
12
12
|
|
|
13
13
|
### eBayUI Components
|
|
14
14
|
* [ ] `ebay-3d-viewer`
|
|
@@ -46,7 +46,6 @@ eBayUI React components
|
|
|
46
46
|
* [x] [ebay-page-notice](src/ebay-page-notice)
|
|
47
47
|
* [x] [ebay-pagination](src/ebay-pagination)
|
|
48
48
|
* [x] [ebay-panel-dialog](src/ebay-panel-dialog)
|
|
49
|
-
* [x] [ebay-program-badge](src/ebay-program-badge)
|
|
50
49
|
* [x] [ebay-progress-bar](src/ebay-progress-bar)
|
|
51
50
|
* [x] [ebay-progress-spinner](src/ebay-progress-spinner)
|
|
52
51
|
* [x] [ebay-progress-stepper](src/ebay-progress-stepper)
|
|
@@ -180,6 +179,7 @@ One way to comply those guidelines is to implement your new component as similia
|
|
|
180
179
|
## Changelog
|
|
181
180
|
|
|
182
181
|
`@ebay/ui-core-react`
|
|
182
|
+
### version 4.x (Skin 16, breaking changes in icon names)
|
|
183
183
|
### version 3.x (Skin 15, some breaking changes in dialog components)
|
|
184
184
|
### version 2.x (Skin 15)
|
|
185
185
|
|
|
@@ -31,7 +31,7 @@ var TooltipContent = function (_a) {
|
|
|
31
31
|
react_1.default.createElement("span", { className: type + "__cell" },
|
|
32
32
|
react_1.default.createElement("span", { className: type + "__content" }, allChildrenExceptFooter),
|
|
33
33
|
showCloseButton ? (react_1.default.createElement("button", __assign({}, closeButton === null || closeButton === void 0 ? void 0 : closeButton.props, { className: "icon-btn icon-btn--transparent " + type + "__close", type: "button", "aria-label": a11yCloseText, onClick: onClose }),
|
|
34
|
-
react_1.default.createElement(ebay_icon_1.EbayIcon, { name: "
|
|
34
|
+
react_1.default.createElement(ebay_icon_1.EbayIcon, { name: "close16" }))) : null,
|
|
35
35
|
footer))));
|
|
36
36
|
};
|
|
37
37
|
exports.default = TooltipContent;
|
|
@@ -5,6 +5,6 @@ export declare type TooltipProps = ComponentProps<'span'> & {
|
|
|
5
5
|
isExpanded?: boolean;
|
|
6
6
|
forwardedRef?: RefObject<HTMLSpanElement>;
|
|
7
7
|
};
|
|
8
|
-
declare const _default: React.ForwardRefExoticComponent<Pick<TooltipProps, "slot" | "style" | "title" | "type" | "key" | "className" | "
|
|
8
|
+
declare const _default: React.ForwardRefExoticComponent<Pick<TooltipProps, "slot" | "style" | "title" | "type" | "key" | "className" | "placeholder" | "children" | "dir" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "draggable" | "hidden" | "id" | "lang" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "forwardedRef" | "isExpanded"> & React.RefAttributes<React.FC<TooltipProps>>>;
|
|
9
9
|
export default _default;
|
|
10
10
|
//# sourceMappingURL=tooltip.d.ts.map
|
|
@@ -33,6 +33,6 @@ var BreadcrumbItem = function (_a) {
|
|
|
33
33
|
var itemAttr = __assign(__assign(__assign({}, rest), isLastItem ? { 'aria-current': 'location' } : {}), { href: isLink ? href : undefined, onClick: isLink ? undefined : onClick });
|
|
34
34
|
return (react_1.default.createElement("li", null,
|
|
35
35
|
react_1.default.createElement(Item, __assign({}, itemAttr), children),
|
|
36
|
-
!isLastItem && react_1.default.createElement(ebay_icon_1.EbayIcon, { name: "
|
|
36
|
+
!isLastItem && react_1.default.createElement(ebay_icon_1.EbayIcon, { name: "chevronRight12", height: "8", width: "8" })));
|
|
37
37
|
};
|
|
38
38
|
exports.default = BreadcrumbItem;
|
|
@@ -11,6 +11,6 @@ var EbayButtonExpand = function (_a) {
|
|
|
11
11
|
var children = _a.children;
|
|
12
12
|
return children ? (react_1.default.createElement(button_cell_1.default, null,
|
|
13
13
|
react_1.default.createElement(button_text_1.default, null, children),
|
|
14
|
-
react_1.default.createElement(ebay_icon_1.EbayIcon, { name: "
|
|
14
|
+
react_1.default.createElement(ebay_icon_1.EbayIcon, { name: "chevronDown24" }))) : (react_1.default.createElement(ebay_icon_1.EbayIcon, { name: "chevronDown24" }));
|
|
15
15
|
};
|
|
16
16
|
exports.default = EbayButtonExpand;
|
package/ebay-button/button.d.ts
CHANGED
|
@@ -18,6 +18,6 @@ export declare type EbayButtonProps = {
|
|
|
18
18
|
fixedHeight?: boolean;
|
|
19
19
|
};
|
|
20
20
|
declare type Props = ComponentProps<'button'> & ComponentProps<'a'> & EbayButtonProps;
|
|
21
|
-
declare const _default: React.ForwardRefExoticComponent<Pick<Props, "form" | "slot" | "style" | "title" | "type" | "download" | "
|
|
21
|
+
declare const _default: React.ForwardRefExoticComponent<Pick<Props, "form" | "slot" | "style" | "title" | "type" | "key" | "value" | "className" | "disabled" | "placeholder" | "children" | "dir" | "autoFocus" | "download" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "href" | "hrefLang" | "media" | "name" | "rel" | "size" | "target" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "draggable" | "hidden" | "id" | "lang" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "forwardedRef" | "priority" | "variant" | "bodyState" | "split" | "transparent" | "fluid" | "partiallyDisabled" | "onEscape" | "truncate" | "borderless" | "fixedHeight" | "ping" | "referrerPolicy"> & React.RefAttributes<React.FC<Props>>>;
|
|
22
22
|
export default _default;
|
|
23
23
|
//# sourceMappingURL=button.d.ts.map
|
|
@@ -7,8 +7,8 @@ var react_1 = __importDefault(require("react"));
|
|
|
7
7
|
var classnames_1 = __importDefault(require("classnames"));
|
|
8
8
|
var ebay_icon_1 = require("../ebay-icon");
|
|
9
9
|
var icon = {
|
|
10
|
-
prev: '
|
|
11
|
-
next: '
|
|
10
|
+
prev: 'chevronLeft24',
|
|
11
|
+
next: 'chevronRight24'
|
|
12
12
|
};
|
|
13
13
|
var typeToDirection = {
|
|
14
14
|
prev: 'LEFT',
|
|
@@ -7,6 +7,6 @@ declare type CarouselItemProps = ListProps & {
|
|
|
7
7
|
className?: string;
|
|
8
8
|
forwardedRef?: RefObject<ListItemRef>;
|
|
9
9
|
};
|
|
10
|
-
declare const _default: React.ForwardRefExoticComponent<Pick<CarouselItemProps, "slot" | "style" | "title" | "key" | "className" | "
|
|
10
|
+
declare const _default: React.ForwardRefExoticComponent<Pick<CarouselItemProps, "slot" | "style" | "title" | "key" | "value" | "className" | "placeholder" | "children" | "dir" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "draggable" | "hidden" | "id" | "lang" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "forwardedRef" | "offset" | "slideWidth"> & React.RefAttributes<React.FC<CarouselItemProps>>>;
|
|
11
11
|
export default _default;
|
|
12
12
|
//# sourceMappingURL=carousel-item.d.ts.map
|
|
@@ -60,11 +60,11 @@ var EbayCheckbox = function (_a) {
|
|
|
60
60
|
};
|
|
61
61
|
var containerClass = classnames_1.default('checkbox', className, { 'checkbox--large': size === 'large' });
|
|
62
62
|
var iconChecked = size === 'large' ?
|
|
63
|
-
react_1.default.createElement(ebay_icon_1.EbayIcon, { name: "
|
|
64
|
-
react_1.default.createElement(ebay_icon_1.EbayIcon, { name: "
|
|
63
|
+
react_1.default.createElement(ebay_icon_1.EbayIcon, { name: "checkboxChecked24", className: "checkbox__checked" }) :
|
|
64
|
+
react_1.default.createElement(ebay_icon_1.EbayIcon, { name: "checkboxChecked18", className: "checkbox__checked" });
|
|
65
65
|
var iconUnChecked = size === 'large' ?
|
|
66
|
-
react_1.default.createElement(ebay_icon_1.EbayIcon, { name: "
|
|
67
|
-
react_1.default.createElement(ebay_icon_1.EbayIcon, { name: "
|
|
66
|
+
react_1.default.createElement(ebay_icon_1.EbayIcon, { name: "checkboxUnchecked24", className: "checkbox__unchecked" }) :
|
|
67
|
+
react_1.default.createElement(ebay_icon_1.EbayIcon, { name: "checkboxUnchecked18", className: "checkbox__unchecked" });
|
|
68
68
|
var ebayLabel = component_utils_1.findComponent(children, ebay_field_1.EbayLabel);
|
|
69
69
|
return (react_1.default.createElement(react_1.default.Fragment, null,
|
|
70
70
|
react_1.default.createElement("span", { className: containerClass, style: __assign(__assign({}, style), { alignItems: 'center' }) },
|
|
@@ -7,6 +7,6 @@ declare type Props = HTMLAnchorProps & {
|
|
|
7
7
|
size?: Size;
|
|
8
8
|
forwardedRef?: RefObject<HTMLAnchorElement>;
|
|
9
9
|
};
|
|
10
|
-
declare const _default: React.ForwardRefExoticComponent<Pick<Props, "slot" | "style" | "title" | "type" | "download" | "
|
|
10
|
+
declare const _default: React.ForwardRefExoticComponent<Pick<Props, "slot" | "style" | "title" | "type" | "key" | "className" | "placeholder" | "children" | "dir" | "download" | "href" | "hrefLang" | "media" | "rel" | "size" | "target" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "draggable" | "hidden" | "id" | "lang" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "forwardedRef" | "fluid" | "truncate" | "ping" | "referrerPolicy"> & React.RefAttributes<React.FC<Props>>>;
|
|
11
11
|
export default _default;
|
|
12
12
|
//# sourceMappingURL=cta-button.d.ts.map
|
|
@@ -36,6 +36,6 @@ var EbayCtaButton = function (_a) {
|
|
|
36
36
|
return (react_1.default.createElement("a", __assign({}, rest, { className: className, ref: forwardedRef }),
|
|
37
37
|
react_1.default.createElement(ebay_button_1.EbayButtonCell, { type: "cta" },
|
|
38
38
|
react_1.default.createElement("span", null, children),
|
|
39
|
-
react_1.default.createElement(ebay_icon_1.EbayIcon, { name: "
|
|
39
|
+
react_1.default.createElement(ebay_icon_1.EbayIcon, { name: "arrowRight24", width: 8, height: 8 }))));
|
|
40
40
|
};
|
|
41
41
|
exports.default = forwardRef_1.withForwardRef(EbayCtaButton);
|
|
@@ -129,7 +129,7 @@ exports.DialogBase = function (_a) {
|
|
|
129
129
|
}
|
|
130
130
|
var closeButtonContent = buttonPosition !== 'hidden' && (react_1.default.createElement("button", { ref: closeButtonRef, className: classnames_1.default("icon-btn", classPrefix + "__close", {
|
|
131
131
|
'icon-btn--transparent': classPrefix === "toast-dialog"
|
|
132
|
-
}), type: "button", "aria-label": a11yCloseText, onClick: onCloseBtnClick }, closeButton || react_1.default.createElement(ebay_icon_1.EbayIcon, { name: "
|
|
132
|
+
}), type: "button", "aria-label": a11yCloseText, onClick: onCloseBtnClick }, closeButton || react_1.default.createElement(ebay_icon_1.EbayIcon, { name: "close16" })));
|
|
133
133
|
var windowClassName = windowType ? classPrefix + "__" + windowType + "-window" : classPrefix + "__window";
|
|
134
134
|
var dialogTitleId = ((_b = header === null || header === void 0 ? void 0 : header.props) === null || _b === void 0 ? void 0 : _b.id) || "dialog-title-" + rId;
|
|
135
135
|
var dialogLabelledBy = ariaLabelledby || dialogTitleId;
|
|
@@ -58,6 +58,6 @@ var EbayMenuItem = function (_a) {
|
|
|
58
58
|
});
|
|
59
59
|
return (react_1.default.createElement("a", __assign({}, rest, { ref: ref, className: classnames_1.default(className, 'fake-menu__item'), "aria-disabled": disabled ? 'true' : undefined }),
|
|
60
60
|
react_1.default.createElement("span", null, children),
|
|
61
|
-
react_1.default.createElement(ebay_icon_1.EbayIcon, { name: "
|
|
61
|
+
react_1.default.createElement(ebay_icon_1.EbayIcon, { name: "tick16" })));
|
|
62
62
|
};
|
|
63
63
|
exports.default = EbayMenuItem;
|
|
@@ -100,7 +100,7 @@ var EbayMenuButton = function (_a) {
|
|
|
100
100
|
var buttonProps = __assign({ ref: ref, className: 'fake-menu-button__button', 'aria-expanded': !!expanded, 'aria-haspopup': true, 'aria-label': a11yText, 'aria-controls': menuId, onClick: function () { return setExpanded(!expanded); } }, rest);
|
|
101
101
|
return (react_1.default.createElement("span", { className: classnames_1.default('fake-menu-button', className) },
|
|
102
102
|
variant === 'overflow' ?
|
|
103
|
-
react_1.default.createElement(ebay_icon_button_1.EbayIconButton, __assign({ icon: "
|
|
103
|
+
react_1.default.createElement(ebay_icon_button_1.EbayIconButton, __assign({ icon: "overflowHorizontal24" }, buttonProps)) :
|
|
104
104
|
react_1.default.createElement(ebay_button_1.EbayButton, __assign({ variant: variant === 'form' ? 'form' : undefined, bodyState: noToggleIcon ? undefined : 'expand' }, buttonProps),
|
|
105
105
|
icon,
|
|
106
106
|
label),
|
package/ebay-icon/README.md
CHANGED
package/ebay-icon/icon.d.ts
CHANGED
|
@@ -3,16 +3,12 @@ import { Icon } from './types';
|
|
|
3
3
|
export declare type A11yVariant = 'label';
|
|
4
4
|
export declare type EbayIconProps = SVGProps<SVGSVGElement> & {
|
|
5
5
|
className?: string;
|
|
6
|
-
/**
|
|
7
|
-
* @deprecated Use <EbayProgramBadge /> instead of type='program-badge'
|
|
8
|
-
*/
|
|
9
|
-
type?: 'icon' | 'program-badge' | string;
|
|
10
6
|
name: Icon;
|
|
11
7
|
noSkinClasses?: boolean;
|
|
12
8
|
a11yText?: string;
|
|
13
9
|
a11yVariant?: A11yVariant;
|
|
14
10
|
forwardedRef?: Ref<SVGSVGElement>;
|
|
15
11
|
};
|
|
16
|
-
declare const _default: React.ForwardRefExoticComponent<Pick<EbayIconProps, "string" | "style" | "clipPath" | "filter" | "mask" | "path" | "type" | "key" | "
|
|
12
|
+
declare const _default: React.ForwardRefExoticComponent<Pick<EbayIconProps, "string" | "style" | "clipPath" | "filter" | "mask" | "path" | "type" | "key" | "className" | "children" | "crossOrigin" | "height" | "href" | "max" | "media" | "method" | "min" | "name" | "target" | "width" | "id" | "lang" | "tabIndex" | "role" | "color" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "forwardedRef" | "noSkinClasses" | "a11yText" | "a11yVariant" | "accentHeight" | "accumulate" | "additive" | "alignmentBaseline" | "allowReorder" | "alphabetic" | "amplitude" | "arabicForm" | "ascent" | "attributeName" | "attributeType" | "autoReverse" | "azimuth" | "baseFrequency" | "baselineShift" | "baseProfile" | "bbox" | "begin" | "bias" | "by" | "calcMode" | "capHeight" | "clip" | "clipPathUnits" | "clipRule" | "colorInterpolation" | "colorInterpolationFilters" | "colorProfile" | "colorRendering" | "contentScriptType" | "contentStyleType" | "cursor" | "cx" | "cy" | "d" | "decelerate" | "descent" | "diffuseConstant" | "direction" | "display" | "divisor" | "dominantBaseline" | "dur" | "dx" | "dy" | "edgeMode" | "elevation" | "enableBackground" | "end" | "exponent" | "externalResourcesRequired" | "fill" | "fillOpacity" | "fillRule" | "filterRes" | "filterUnits" | "floodColor" | "floodOpacity" | "focusable" | "fontFamily" | "fontSize" | "fontSizeAdjust" | "fontStretch" | "fontStyle" | "fontVariant" | "fontWeight" | "format" | "fr" | "from" | "fx" | "fy" | "g1" | "g2" | "glyphName" | "glyphOrientationHorizontal" | "glyphOrientationVertical" | "glyphRef" | "gradientTransform" | "gradientUnits" | "hanging" | "horizAdvX" | "horizOriginX" | "ideographic" | "imageRendering" | "in2" | "in" | "intercept" | "k1" | "k2" | "k3" | "k4" | "k" | "kernelMatrix" | "kernelUnitLength" | "kerning" | "keyPoints" | "keySplines" | "keyTimes" | "lengthAdjust" | "letterSpacing" | "lightingColor" | "limitingConeAngle" | "local" | "markerEnd" | "markerHeight" | "markerMid" | "markerStart" | "markerUnits" | "markerWidth" | "maskContentUnits" | "maskUnits" | "mathematical" | "mode" | "numOctaves" | "offset" | "opacity" | "operator" | "order" | "orient" | "orientation" | "origin" | "overflow" | "overlinePosition" | "overlineThickness" | "paintOrder" | "panose1" | "pathLength" | "patternContentUnits" | "patternTransform" | "patternUnits" | "pointerEvents" | "points" | "pointsAtX" | "pointsAtY" | "pointsAtZ" | "preserveAlpha" | "preserveAspectRatio" | "primitiveUnits" | "r" | "radius" | "refX" | "refY" | "renderingIntent" | "repeatCount" | "repeatDur" | "requiredExtensions" | "requiredFeatures" | "restart" | "result" | "rotate" | "rx" | "ry" | "scale" | "seed" | "shapeRendering" | "slope" | "spacing" | "specularConstant" | "specularExponent" | "speed" | "spreadMethod" | "startOffset" | "stdDeviation" | "stemh" | "stemv" | "stitchTiles" | "stopColor" | "stopOpacity" | "strikethroughPosition" | "strikethroughThickness" | "stroke" | "strokeDasharray" | "strokeDashoffset" | "strokeLinecap" | "strokeLinejoin" | "strokeMiterlimit" | "strokeOpacity" | "strokeWidth" | "surfaceScale" | "systemLanguage" | "tableValues" | "targetX" | "targetY" | "textAnchor" | "textDecoration" | "textLength" | "textRendering" | "to" | "transform" | "u1" | "u2" | "underlinePosition" | "underlineThickness" | "unicode" | "unicodeBidi" | "unicodeRange" | "unitsPerEm" | "vAlphabetic" | "values" | "vectorEffect" | "version" | "vertAdvY" | "vertOriginX" | "vertOriginY" | "vHanging" | "vIdeographic" | "viewBox" | "viewTarget" | "visibility" | "vMathematical" | "widths" | "wordSpacing" | "writingMode" | "x1" | "x2" | "x" | "xChannelSelector" | "xHeight" | "xlinkActuate" | "xlinkArcrole" | "xlinkHref" | "xlinkRole" | "xlinkShow" | "xlinkTitle" | "xlinkType" | "xmlBase" | "xmlLang" | "xmlns" | "xmlnsXlink" | "xmlSpace" | "y1" | "y2" | "y" | "yChannelSelector" | "z" | "zoomAndPan"> & React.RefAttributes<React.FC<EbayIconProps>>>;
|
|
17
13
|
export default _default;
|
|
18
14
|
//# sourceMappingURL=icon.d.ts.map
|
package/ebay-icon/icon.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"icon.d.ts","sourceRoot":"","sources":["../../src/ebay-icon/icon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAM,GAAG,EAAE,QAAQ,EAAuB,MAAM,OAAO,CAAA;AAIrE,OAAO,EAAE,IAAI,EAAE,MAAM,SAAS,CAAA;
|
|
1
|
+
{"version":3,"file":"icon.d.ts","sourceRoot":"","sources":["../../src/ebay-icon/icon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAM,GAAG,EAAE,QAAQ,EAAuB,MAAM,OAAO,CAAA;AAIrE,OAAO,EAAE,IAAI,EAAE,MAAM,SAAS,CAAA;AAE9B,oBAAY,WAAW,GAAG,OAAO,CAAC;AAElC,oBAAY,aAAa,GAAG,QAAQ,CAAC,aAAa,CAAC,GAAG;IAClD,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,IAAI,EAAE,IAAI,CAAC;IACX,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,WAAW,CAAC,EAAE,WAAW,CAAC;IAC1B,YAAY,CAAC,EAAE,GAAG,CAAC,aAAa,CAAC,CAAC;CACrC,CAAC;;AAoDF,wBAAuC"}
|
package/ebay-icon/icon.js
CHANGED
|
@@ -48,15 +48,10 @@ var react_1 = __importStar(require("react"));
|
|
|
48
48
|
var classnames_1 = __importDefault(require("classnames"));
|
|
49
49
|
var component_utils_1 = require("../common/component-utils");
|
|
50
50
|
var random_id_1 = require("../common/random-id");
|
|
51
|
-
var iconPixelSizes = {
|
|
52
|
-
small: 16,
|
|
53
|
-
large: 64
|
|
54
|
-
};
|
|
55
|
-
var DEFAULT_ICON_SIZE = 24;
|
|
56
51
|
var EbayIcon = function (_a) {
|
|
57
52
|
var _b;
|
|
58
|
-
var name = _a.name,
|
|
59
|
-
var
|
|
53
|
+
var name = _a.name, extraClass = _a.className, _c = _a.noSkinClasses, noSkinClasses = _c === void 0 ? false : _c, a11yText = _a.a11yText, a11yVariant = _a.a11yVariant, forwardedRef = _a.forwardedRef, rest = __rest(_a, ["name", "className", "noSkinClasses", "a11yText", "a11yVariant", "forwardedRef"]);
|
|
54
|
+
var _d = react_1.useState(''), rId = _d[0], setRandomId = _d[1];
|
|
60
55
|
react_1.useEffect(function () {
|
|
61
56
|
setRandomId(random_id_1.randomId());
|
|
62
57
|
}, []);
|
|
@@ -69,22 +64,15 @@ var EbayIcon = function (_a) {
|
|
|
69
64
|
} : {
|
|
70
65
|
'aria-hidden': true
|
|
71
66
|
};
|
|
72
|
-
var kebabName = kebabCased(
|
|
73
|
-
var
|
|
74
|
-
|
|
75
|
-
return (react_1.default.createElement("svg", __assign({ height: iconSize, width: iconSize }, rest, { className: className, xmlns: "http://www.w3.org/2000/svg", focusable: false, ref: forwardedRef }, a11yProps),
|
|
67
|
+
var kebabName = kebabCased(name);
|
|
68
|
+
var className = classnames_1.default(extraClass, (_b = {}, _b["icon icon--" + kebabName] = !noSkinClasses, _b));
|
|
69
|
+
return (react_1.default.createElement("svg", __assign({}, rest, { className: className, xmlns: "http://www.w3.org/2000/svg", focusable: false, ref: forwardedRef }, a11yProps),
|
|
76
70
|
a11yText && !withAriaLabel && react_1.default.createElement("title", { id: a11yTextId }, a11yText),
|
|
77
|
-
react_1.default.createElement("use", { xlinkHref: "#
|
|
71
|
+
react_1.default.createElement("use", { xlinkHref: "#icon-" + kebabName })));
|
|
78
72
|
};
|
|
79
|
-
function getIconPixelSize(iconName) {
|
|
80
|
-
var sizeCandidate = iconName.split('-').slice(-1)[0];
|
|
81
|
-
return iconPixelSizes[sizeCandidate] || DEFAULT_ICON_SIZE;
|
|
82
|
-
}
|
|
83
|
-
function withoutProgramBadgePrefix(name) {
|
|
84
|
-
// Deprecated, remove this function in v4.x
|
|
85
|
-
return name.replace(/programBadge([A-Z])/, function (s, c) { return c.toLowerCase(); });
|
|
86
|
-
}
|
|
87
73
|
function kebabCased(str) {
|
|
88
|
-
return str
|
|
74
|
+
return str
|
|
75
|
+
.replace(/([0-9]+)/g, function (s, n) { return "-" + n; })
|
|
76
|
+
.replace(/([A-Z])/g, function (s, c) { return "-" + c.toLowerCase(); });
|
|
89
77
|
}
|
|
90
78
|
exports.default = component_utils_1.withForwardRef(EbayIcon);
|
package/ebay-icon/types.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare type Icon = 'add' | 'addSmall' | 'archive' | 'archiveSmall' | 'arrowLeft' | 'arrowLeftMedium' | 'arrowLeftSmall' | 'arrowMove' | 'arrowMoveSmall' | 'arrowRight' | 'arrowRightBold' | 'arrowRightExtraSmall' | 'arrowRightGroupTitles' | 'arrowRightSmall' | 'attention' | 'attentionFilled' | 'attentionFilledSmall' | 'attentionSmall' | 'avatar' | 'avatarDark' | 'avatarFilled' | 'avatarLight' | 'back' | 'bag' | 'bank' | 'bankLarge' | 'bids' | 'bidsLarge' | 'breadcrumb' | 'calendar' | 'calendarLarge' | 'calendarSmall' | 'camera' | 'cameraSmall' | 'carouselNext' | 'carouselPrev' | 'cart' | 'cartLarge' | 'cartSmall' | 'categories' | 'certifiedRecycle' | 'certifiedRecycleSmall' | 'chatLarge' | 'checkboxChecked' | 'checkboxCheckedLarge' | 'checkboxMixed' | 'checkboxMixedLarge' | 'checkboxSquareChecked' | 'checkboxSquareCheckedLarge' | 'checkboxSquareUnchecked' | 'checkboxSquareUncheckedLarge' | 'checkboxUnchecked' | 'checkboxUncheckedLarge' | 'chevronDown' | 'chevronDownBold' | 'chevronDownExtraSmall' | 'chevronDownSmall' | 'chevronLeft' | 'chevronLeftExtraSmall' | 'chevronLeftSmall' | 'chevronRight' | 'chevronRightExtraSmall' | 'chevronRightSmall' | 'chevronUp' | 'chevronUpBold' | 'chevronUpExtraSmall' | 'chevronUpSmall' | 'circle' | 'clear' | 'clearSmall' | 'clock' | 'clockSmall' | 'close' | 'closeSmall' | 'confirmation' | 'confirmationFilled' | 'confirmationFilledSmall' | 'confirmationSmall' | 'creditCard' | 'creditCardLarge' | 'creditCardSmall' | 'cta' | 'customize' | 'customizeSmall' | 'deals' | 'delete' | 'deleteSmall' | 'download' | 'downloadSmall' | 'dropdown' | 'edit' | 'editSmall' | 'eekArrow' | 'eekRangeArrow' | 'envelope' | 'event' | 'eventLarge' | 'fastNFree' | 'fastNFreeSmall' | 'filter' | 'filterGallery' | 'filterGallerySmall' | 'filterList' | 'filterListSmall' | 'filterSingle' | 'filterSingleSelected' | 'filterSingleSmall' | 'filterSmall' | 'fingerprintLarge' | 'flag' | 'flagSmall' | 'folder' | 'folderSmall' | 'following' | 'followingSmall' | 'gift' | 'giftLarge' | 'giftSmall' | 'help' | 'helpSmall' | 'hideSecret' | 'hideSecretSmall' | 'history' | 'home' | 'inbox' | 'inboxSmall' | 'information' | 'informationFilled' | 'informationFilledSmall' | 'informationSmall' | 'key' | 'largeBox' | 'largeCase' | 'lightbulb' | 'lightbulbSmall' | 'liveEye' | 'liveEyeSmall' | 'location' | 'locationLarge' | 'locked' | 'lockedSmall' | 'mailMove' | 'mailMoveSmall' | 'mailOpen' | 'mailOpenSmall' | 'mailUnread' | 'mailUnreadSmall' | 'mediumBox' | 'menu' | 'messages' | 'messagesLarge' | 'messagesSmall' | 'mic' | 'micSmall' | 'mobile' | 'mobileSignal' | 'moneyBackGuaranteeUs' | 'moneyBackGuaranteeUsSmall' | 'notification' | 'overflow' | 'overflowSmall' | 'package' | 'paginationNext' | 'paginationPrev' | 'pause' | 'pauseFilled' | 'pauseFilledLarge' | 'pauseLarge' | 'pauseSmall' | 'photoBrightness' | 'photoContrast' | 'photoCrop' | 'photoFlash' | 'photoFlipCamera' | 'photoGallery' | 'photoGalleryMore' | 'photoGallerySmall' | 'photoImage' | 'photoImageSmall' | 'photoRotate' | 'photoSelectAll' | 'photoSelectNone' | 'photoSharpen' | 'play' | 'playFilled' | 'playFilledLarge' | 'playLarge' | 'playSmall' | 'print' | 'profile' | 'programBadgeAuthenticityGuaranteed' | 'programBadgeClickToCall' | 'programBadgeEbayPlus' | 'programBadgeEscrow' | 'programBadgeFreeWarranty' | 'programBadgeMoneyBackGuaranteeChf' | 'programBadgeMoneyBackGuaranteeEu' | 'programBadgeMoneyBackGuaranteeUk' | 'programBadgeMoneyBackGuaranteeUs' | 'programBadgeMoneyBackGuaranteeZl' | 'programBadgeTopRatedSeller' | 'programBadgeVault' | 'purchases' | 'purchasesLarge' | 'radioChecked' | 'radioCheckedLarge' | 'radioUnchecked' | 'radioUncheckedLarge' | 'redLaser' | 'redLaserSmall' | 'refresh' | 'remove' | 'reply' | 'replySmall' | 'reportFlag' | 'reportFlagSmall' | 'return' | 'returnSmall' | 'save' | 'saveBold' | 'saveSelected' | 'saveSelectedSmall' | 'saveSmall' | 'scan' | 'scanSmall' | 'search' | 'searchActive' | 'searchBold' | 'searchLarge' | 'searchSmall' | 'securityKey' | 'selling' | 'sellingMedium' | 'send' | 'settings' | 'settingsSmall' | 'share' | 'shareSmall' | 'shoeBox' | 'showSecret' | 'showSecretSmall' | 'smallBox' | 'smallCase' | 'smallLetter' | 'socialDiscord' | 'socialFacebook' | 'socialInstagram' | 'socialLink' | 'socialLinkedin' | 'socialMessenger' | 'socialPinterest' | 'socialReddit' | 'socialTwitter' | 'socialWhatsapp' | 'sortDownSmall' | 'sortSmall' | 'sortUpSmall' | 'spinner' | 'spinnerLarge' | 'spinnerSmall' | 'starDynamic' | 'starEmptyLarge' | 'starEmptySmall' | 'starFilledLarge' | 'starFilledSmall' | 'starFullSmall' | 'starHalfLarge' | 'starHalfSmall' | 'starUndefined' | 'starUndefinedSmall' | 'stepperAttention' | 'stepperConfirmation' | 'stepperCurrent' | 'stepperUpcoming' | 'store' | 'storeLarge' | 'suitcase' | 'support' | 'tabletCondensedGrid' | 'tabletCondensedGridFilled' | 'tabletRelaxedGrid' | 'tabletRelaxedGridFilled' | 'tabletVerticalSplit' | 'tabletVerticalSplitFilled' | 'textMessagingLarge' | 'thumbsDown' | 'thumbsDownSelected' | 'thumbsDownSelectedSmall' | 'thumbsDownSmall' | 'thumbsUp' | 'thumbsUpSelected' | 'thumbsUpSelectedSmall' | 'thumbsUpSmall' | 'tick' | 'tickSmall' | 'topSeller' | 'truck' | 'truckSmall' | 'undo' | 'unlocked' | 'unlockedSmall' | 'userProfile' | 'vault' | 'vaultSmall' | 'videoPause' | 'videoPlay' | 'visa' | 'visaLarge' | 'visaSmall' | 'visaXsmall' | 'watch' | 'watchLarge' | 'window' | 'zoomIn' | 'zoomOut';
|
|
1
|
+
export declare type Icon = 'add16' | 'add24' | 'addImage24' | 'afterpay12Colored' | 'afterpay18Colored' | 'afterpay24Colored' | 'afterpay32Colored' | 'amex12Colored' | 'amex18Colored' | 'amex24Colored' | 'amex32Colored' | 'applePay12Colored' | 'applePay18Colored' | 'applePay24Colored' | 'applePay32Colored' | 'archive16' | 'archive24' | 'arrowLeft12' | 'arrowLeft16' | 'arrowLeft20' | 'arrowLeft24' | 'arrowRight12' | 'arrowRight16' | 'arrowRight24' | 'arrowTitle20' | 'arrows3d16' | 'arrows3d24' | 'article16' | 'article24' | 'attention16' | 'attention24' | 'attention64' | 'attentionFilled16' | 'attentionFilled24' | 'atv16' | 'atv24' | 'audioHigh16' | 'audioLow16' | 'audioOff16' | 'authenticityGuarantee16Fit' | 'authenticityGuarantee24Fit' | 'autoAdjust24' | 'bag24' | 'bank24' | 'bank64' | 'bankAccount12Colored' | 'bankAccount18Colored' | 'bankAccount24Colored' | 'bankAccount32Colored' | 'bids24' | 'bids64' | 'boat16' | 'boat24' | 'book16' | 'book24' | 'brandAuthorizedSeller16Fit' | 'brandAuthorizedSeller24Fit' | 'brightness24' | 'calendar16' | 'calendar24' | 'calendar64' | 'camera16' | 'camera24' | 'camera64' | 'car16' | 'car24' | 'carryon24' | 'cart16' | 'cart20' | 'cart24' | 'cart64' | 'categories16' | 'categories24' | 'cb12Colored' | 'cb18Colored' | 'cb24Colored' | 'cb32Colored' | 'certifiedRecycled16Fit' | 'certifiedRecycled24Fit' | 'chair16' | 'chair24' | 'chat16' | 'chat24' | 'chat64' | 'checkIn24' | 'checkboxChecked18' | 'checkboxChecked24' | 'checkboxMixed18' | 'checkboxMixed24' | 'checkboxUnchecked18' | 'checkboxUnchecked24' | 'checkmark24' | 'chevronDown12' | 'chevronDown16' | 'chevronDown24' | 'chevronLeft12' | 'chevronLeft16' | 'chevronLeft20' | 'chevronLeft24' | 'chevronRight12' | 'chevronRight16' | 'chevronRight24' | 'chevronUp12' | 'chevronUp16' | 'chevronUp24' | 'clear16' | 'clear24' | 'clickToCall16Fit' | 'clickToCall24Fit' | 'clock16' | 'clock24' | 'close16' | 'close20' | 'close24' | 'closedCaption16' | 'closedCaptionFilled16' | 'coin24' | 'collections16' | 'collections24' | 'condensedGrid24' | 'condensedGridFilled24' | 'confirmation16' | 'confirmation24' | 'confirmationFilled16' | 'confirmationFilled24' | 'contract16' | 'contrast24' | 'copy16' | 'copy24' | 'creditCard16' | 'creditCard24' | 'creditCard64' | 'crop24' | 'currencyDollar16' | 'currencyDollar24' | 'currencyEuro16' | 'currencyEuro24' | 'currencyFranc16' | 'currencyFranc24' | 'currencyKrona16' | 'currencyKrona24' | 'currencyPeso16' | 'currencyPeso24' | 'currencyPound16' | 'currencyPound24' | 'currencyRinggit16' | 'currencyRinggit24' | 'currencyRupee16' | 'currencyRupee24' | 'currencyWon16' | 'currencyWon24' | 'currencyYuan16' | 'currencyYuan24' | 'currencyZloty16' | 'currencyZloty24' | 'customize16' | 'customize24' | 'delete16' | 'delete20' | 'delete24' | 'diamond16' | 'diamond24' | 'diners12Colored' | 'diners18Colored' | 'diners24Colored' | 'diners32Colored' | 'directDebit12Colored' | 'directDebit18Colored' | 'directDebit24Colored' | 'directDebit32Colored' | 'directFromBrand16Fit' | 'directFromBrand24Fit' | 'discover12Colored' | 'discover18Colored' | 'discover24Colored' | 'discover32Colored' | 'download16' | 'download24' | 'ebayBalance12Colored' | 'ebayBalance18Colored' | 'ebayBalance24Colored' | 'ebayBalance32Colored' | 'ebayBucks16Colored' | 'ebayInternationalShipping16Fit' | 'ebayInternationalShipping24Fit' | 'ebayLive16' | 'ebayLive24' | 'ebayMastercard12Colored' | 'ebayMastercard18Colored' | 'ebayMastercard24Colored' | 'ebayMastercard32Colored' | 'ebayMoneyBackGuaranteeLogo16Colored' | 'ebayPlus16Fit' | 'ebayPlus24Fit' | 'ebayPlusLogo16Colored' | 'ebayRefurbished16Fit' | 'ebayRefurbished24Fit' | 'eekArrow' | 'eekRangeArrow' | 'escrow16Fit' | 'escrow24Fit' | 'escrowCard12Colored' | 'escrowCard18Colored' | 'escrowCard24Colored' | 'escrowCard32Colored' | 'expand16' | 'externalLink16' | 'externalLink24' | 'faceHappiest24' | 'faceHappy24' | 'faceNeutral24' | 'faceSad24' | 'faceSaddest24' | 'fastAndFree16' | 'fastAndFree24' | 'file16' | 'file24' | 'filter16' | 'filter24' | 'fingerprint24' | 'fingerprint64' | 'flag16' | 'flag24' | 'flagFilled16' | 'flagFilled24' | 'flash24' | 'flashAuto24' | 'flashOff24' | 'folder16' | 'folder24' | 'freeWarranty16Fit' | 'freeWarranty24Fit' | 'fullView16' | 'fullView24' | 'fullViewFilled16' | 'fullViewFilled24' | 'gallery16' | 'gallery24' | 'generalCard12Colored' | 'generalCard18Colored' | 'generalCard24Colored' | 'generalCard32Colored' | 'genericCard12Colored' | 'genericCard18Colored' | 'genericCard24Colored' | 'genericCard32Colored' | 'gift16' | 'gift24' | 'gift64' | 'giftCard12Colored' | 'giftCard18Colored' | 'giftCard24Colored' | 'giftCard32Colored' | 'glasses24' | 'glasses64' | 'googlePay12Colored' | 'googlePay18Colored' | 'googlePay24Colored' | 'googlePay32Colored' | 'gridView16' | 'gridView24' | 'gridViewFilled16' | 'gridViewFilled24' | 'handbag16' | 'handbag24' | 'hanger16' | 'hanger24' | 'headphone16' | 'headphone24' | 'help16' | 'help20' | 'help24' | 'helpOutline16' | 'helpOutline24' | 'hide16' | 'hide24' | 'history24' | 'history64' | 'home24' | 'homeFilled24' | 'image16' | 'image24' | 'image64' | 'imagePlaceholder' | 'inbox16' | 'inbox24' | 'information16' | 'information24' | 'informationFilled16' | 'informationFilled24' | 'inspect16' | 'inspect24' | 'jcb12Colored' | 'jcb18Colored' | 'jcb24Colored' | 'jcb32Colored' | 'keyboard16' | 'keyboard24' | 'klarnaBlack12Colored' | 'klarnaBlack18Colored' | 'klarnaBlack24Colored' | 'klarnaBlack32Colored' | 'klarnaPink12Colored' | 'klarnaPink18Colored' | 'klarnaPink24Colored' | 'klarnaPink32Colored' | 'klarnaWhite12Colored' | 'klarnaWhite18Colored' | 'klarnaWhite24Colored' | 'klarnaWhite32Colored' | 'lamp16' | 'lamp24' | 'largeBox24' | 'legacyAuthenticityGuarantee48Colored' | 'legacyClickToCall48Colored' | 'legacyEscrow48Colored' | 'legacyFreeWarranty48Colored' | 'legacyMoneyBackGuaranteeChf48Colored' | 'legacyMoneyBackGuaranteeEu48Colored' | 'legacyMoneyBackGuaranteeUk48Colored' | 'legacyMoneyBackGuaranteeUs48Colored' | 'legacyMoneyBackGuaranteeZl48Colored' | 'legacyTopRatedSeller48Colored' | 'lightbulb16' | 'lightbulb24' | 'lightningBolt16' | 'lightningBolt24' | 'listView16' | 'listView24' | 'listViewFilled16' | 'listViewFilled24' | 'liveEye16' | 'liveEye24' | 'location24' | 'location64' | 'locked16' | 'locked24' | 'maestro12Colored' | 'maestro18Colored' | 'maestro24Colored' | 'maestro32Colored' | 'mail16' | 'mail24' | 'mail64' | 'mailMove16' | 'mailMove24' | 'mailOpen16' | 'mailOpen24' | 'mailUnread16' | 'mailUnread24' | 'masonryView24' | 'masonryViewFilled24' | 'mastercard12Colored' | 'mastercard18Colored' | 'mastercard24Colored' | 'mastercard32Colored' | 'mediumBox24' | 'menu20' | 'menu24' | 'microphone16' | 'microphone24' | 'mobile24' | 'mobileSignal24' | 'motorcycle16' | 'motorcycle24' | 'move16' | 'move24' | 'nectar24Colored' | 'negativeFilled16' | 'negativeFilled24' | 'neutral16' | 'neutral24' | 'notification16' | 'notification20' | 'notification24' | 'notificationFilled24' | 'onTheWay16' | 'onTheWay24' | 'overflowHorizontal16' | 'overflowHorizontal20' | 'overflowHorizontal24' | 'overflowVertical16' | 'overflowVertical20' | 'overflowVertical24' | 'package24' | 'pause16' | 'pause24' | 'pause64Colored' | 'payoneer12Colored' | 'payoneer18Colored' | 'payoneer24Colored' | 'payoneer32Colored' | 'paypal12Colored' | 'paypal18Colored' | 'paypal24Colored' | 'paypal32Colored' | 'paypalCredit12Colored' | 'paypalCredit18Colored' | 'paypalCredit24Colored' | 'paypalCredit32Colored' | 'paypalDisabled12Colored' | 'paypalDisabled18Colored' | 'paypalDisabled24Colored' | 'paypalDisabled32Colored' | 'pencil16' | 'pencil24' | 'phone24' | 'pin24' | 'pinFilled24' | 'play16' | 'play24' | 'play64Colored' | 'playFilled16' | 'playFilled24' | 'postepay12Colored' | 'postepay18Colored' | 'postepay24Colored' | 'postepay32Colored' | 'print24' | 'profile20' | 'profile24' | 'profileFilled24' | 'progressCurrent24' | 'progressUpcoming24' | 'qrCode16' | 'qrCode24' | 'radioChecked18' | 'radioChecked24' | 'radioUnchecked18' | 'radioUnchecked24' | 'recoveryCode16' | 'recoveryCode24' | 'refresh16' | 'refresh24' | 'relaxedGrid24' | 'relaxedGridFilled24' | 'remove16' | 'remove24' | 'reply16' | 'reply24' | 'return16' | 'return24' | 'rim16' | 'rim24' | 'rotate24' | 'rotateLandscapeLeft' | 'rotateLandscapeRight' | 'rotatePortraitLeft' | 'rotatePortraitRight' | 'satchel24' | 'save16' | 'save20' | 'save24' | 'saveFilled16' | 'saveFilled20' | 'saveFilled24' | 'scan16' | 'scan24' | 'search16' | 'search20' | 'search24' | 'search64' | 'searchFilled24' | 'searchSimilar20' | 'securityKey24' | 'selectAll24' | 'selling20' | 'selling24' | 'sellingFilled24' | 'send24' | 'settings16' | 'settings20' | 'settings24' | 'shareAndroid16' | 'shareAndroid20' | 'shareAndroid24' | 'shareIos16' | 'shareIos20' | 'shareIos24' | 'sharpen24' | 'shoeBox24' | 'show16' | 'show24' | 'smallBox24' | 'smallLetter24' | 'sneaker16' | 'sneaker24' | 'socialDiscord24' | 'socialFacebook24' | 'socialFacebookMessenger24' | 'socialInstagram24' | 'socialLink24' | 'socialLinkedin24' | 'socialPinterest24' | 'socialReddit24' | 'socialTwitter24' | 'socialWhatsapp24' | 'sort12' | 'sort24' | 'sortDown12' | 'sortUp12' | 'spinner20' | 'spinner24' | 'spinner30' | 'splitView24' | 'splitViewFilled24' | 'starDynamic' | 'starEmpty16' | 'starEmpty24' | 'starFilled16' | 'starFilled24' | 'starHalf16Colored' | 'starHalf24Colored' | 'starHalfDark16Colored' | 'starHalfDark24Colored' | 'stepperAttention24' | 'stepperConfirmation24' | 'stepperCurrent24' | 'stepperUpcoming24' | 'store16' | 'store24' | 'store64' | 'suitcase24' | 'support24' | 'switchCamera24' | 'textMessaging16' | 'textMessaging24' | 'textMessaging64' | 'theEbayVault16Fit' | 'theEbayVault24Fit' | 'thumbDown16' | 'thumbDown24' | 'thumbDownFilled16' | 'thumbDownFilled24' | 'thumbUp16' | 'thumbUp24' | 'thumbUpFilled16' | 'thumbUpFilled24' | 'tick16' | 'tick24' | 'topRatedSeller16Fit' | 'topRatedSeller24Fit' | 'tradingCard16' | 'tradingCard24' | 'trendDown16' | 'trendUp16' | 'trophy16' | 'trophy24' | 'undo24' | 'unionpay12Colored' | 'unionpay18Colored' | 'unionpay24Colored' | 'unionpay32Colored' | 'unlocked16' | 'unlocked24' | 'unselectAll24' | 'upload16' | 'upload24' | 'verifiedCondition16Fit' | 'verifiedCondition24Fit' | 'video24' | 'visa12Colored' | 'visa18Colored' | 'visa24Colored' | 'visa32Colored' | 'wallet24' | 'wallet64' | 'walletBalance12Colored' | 'walletBalance18Colored' | 'walletBalance24Colored' | 'walletBalance32Colored' | 'watch16' | 'watch24' | 'wrench16' | 'wrench24' | 'zoomIn16' | 'zoomIn24' | 'zoomOut16' | 'zoomOut24';
|
|
2
2
|
//# sourceMappingURL=types.d.ts.map
|
package/ebay-icon/types.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/ebay-icon/types.ts"],"names":[],"mappings":"AAEA,oBAAY,IAAI,GACZ,
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/ebay-icon/types.ts"],"names":[],"mappings":"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"}
|