Skip to content
This repository was archived by the owner on Apr 25, 2025. It is now read-only.

Commit 102c737

Browse files
authored
Merge pull request #2442 from eBay/changeset-release/master
2 parents 79efea5 + ba339aa commit 102c737

File tree

15 files changed

+32
-33
lines changed

15 files changed

+32
-33
lines changed

.changeset/clever-rivers-compete.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/gold-walls-think.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/warm-glasses-sink.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/wild-boats-film.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# eBayUI-Core Changelog
22

3+
## 15.1.0
4+
5+
### Minor Changes
6+
7+
- [#2433](https://github.com/eBay/ebayui-core/pull/2433) [`f82f058`](https://github.com/eBay/ebayui-core/commit/f82f058e140b5adae3694ff1fb0717f21ee0b8ba) Thanks [@agliga](https://github.com/agliga)! - feat(avatar): added image position option
8+
9+
- [#2426](https://github.com/eBay/ebayui-core/pull/2426) [`ac954a8`](https://github.com/eBay/ebayui-core/commit/ac954a8789de769487fba9d1414de57bc3b8f3c9) Thanks [@agliga](https://github.com/agliga)! - feat(textbox): added check to show prefix label only if floating is not set
10+
11+
- [`79efea5`](https://github.com/eBay/ebayui-core/commit/79efea5456b42b41fdcaa3db11201737b1e35a49) Thanks [@agliga](https://github.com/agliga)! - feat(dropdowns): added fixed strategy option
12+
13+
### Patch Changes
14+
15+
- [#2429](https://github.com/eBay/ebayui-core/pull/2429) [`d929e04`](https://github.com/eBay/ebayui-core/commit/d929e04aba285749d89d81a5453059ab62c10e52) Thanks [@agliga](https://github.com/agliga)! - fix(section-title): removed tabindex=-1 and aria-hidden from anchor tag
16+
317
## 15.0.2
418

519
### Patch Changes

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ebay/ebayui-core",
3-
"version": "15.0.2",
3+
"version": "15.1.0",
44
"description": "Collection of core eBay components; considered to be the building blocks for all composite structures, pages & apps.",
55
"keywords": [
66
"marko-components"

src/common/dropdown/index.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,7 @@ export class DropdownUtil {
4141
computePosition(this.host, this.overlay, {
4242
placement: this.options.reverse ? "bottom-end" : "bottom-start",
4343
strategy: this.options.strategy ?? "fixed",
44-
middleware: [offset(this.options.offset ?? 4), flip({
45-
}), shift()],
44+
middleware: [offset(this.options.offset ?? 4), flip({}), shift()],
4645
}).then(({ x, y }) => {
4746
Object.assign(this.overlay.style, {
4847
left: `${x}px`,

src/components/ebay-combobox/combobox.stories.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,8 @@ export default {
9898
summary: "absolute",
9999
},
100100
},
101-
description: "Swap between fixed and absolute positioning strategy. Use fixed when dropdown is in contained in an overflow and needs to be visible as you scroll the screen.",
101+
description:
102+
"Swap between fixed and absolute positioning strategy. Use fixed when dropdown is in contained in an overflow and needs to be visible as you scroll the screen.",
102103
},
103104
onCollapse: {
104105
action: "on-collapse",

src/components/ebay-combobox/component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,7 @@ export default class Combobox extends Marko.Component<Input, State> {
322322
this.getEl("listbox"),
323323
{
324324
strategy: this.input.strategy,
325-
}
325+
},
326326
);
327327
if (this.isExpanded()) {
328328
this.dropdownUtil.show();

0 commit comments

Comments
 (0)