From be60239d411f1368807c9d4a3bcf6d4be0d88626 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 23 Jan 2025 10:28:27 -0800 Subject: [PATCH] ci: release (#2403) --- .changeset/gentle-foxes-push.md | 5 ----- CHANGELOG.md | 6 ++++++ package-lock.json | 4 ++-- package.json | 2 +- src/components/ebay-combobox/component.ts | 14 +++++++++----- 5 files changed, 18 insertions(+), 13 deletions(-) delete mode 100644 .changeset/gentle-foxes-push.md diff --git a/.changeset/gentle-foxes-push.md b/.changeset/gentle-foxes-push.md deleted file mode 100644 index d1193acc0..000000000 --- a/.changeset/gentle-foxes-push.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@ebay/ebayui-core": patch ---- - -fix(combobox): reverted removing of view all options diff --git a/CHANGELOG.md b/CHANGELOG.md index 7fae1e040..bf6306f26 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # eBayUI-Core Changelog +## 14.6.9 + +### Patch Changes + +- [#2402](https://github.com/eBay/ebayui-core/pull/2402) [`6fea187`](https://github.com/eBay/ebayui-core/commit/6fea187704aa350922c4cc4009a2cbea929340a0) Thanks [@agliga](https://github.com/agliga)! - fix(combobox): reverted removing of view all options + ## 14.6.8 ### Patch Changes diff --git a/package-lock.json b/package-lock.json index eb829752c..54855a9bb 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@ebay/ebayui-core", - "version": "14.6.8", + "version": "14.6.9", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@ebay/ebayui-core", - "version": "14.6.8", + "version": "14.6.9", "license": "MIT", "dependencies": { "@floating-ui/dom": "^1.6.12", diff --git a/package.json b/package.json index 8e3aa20b4..a9d2ecb67 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@ebay/ebayui-core", - "version": "14.6.8", + "version": "14.6.9", "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/components/ebay-combobox/component.ts b/src/components/ebay-combobox/component.ts index 42a3516a9..becc2573a 100644 --- a/src/components/ebay-combobox/component.ts +++ b/src/components/ebay-combobox/component.ts @@ -28,10 +28,11 @@ interface ComboboxInput extends Omit, `on${string}`> { "list-selection"?: "manual" | "automatic"; "floating-label"?: boolean; "view-all-options"?: boolean; - button?: Marko.Input<"button"> & Marko.AttrTag<{ - htmlAttributes?: Record; - renderBody?: Marko.Body; - }>; + button?: Marko.Input<"button"> & + Marko.AttrTag<{ + htmlAttributes?: Record; + renderBody?: Marko.Body; + }>; options?: Marko.AttrTag; "chevron-size"?: "large"; "on-focus"?: (event: ComboboxEvent) => void; @@ -235,7 +236,10 @@ export default class Combobox extends Marko.Component { this.lastValue = input.value; this.state = { currentValue: this.lastValue, - viewAllOptions: (this.state && this.state.viewAllOptions) || input.viewAllOptions || false, + viewAllOptions: + (this.state && this.state.viewAllOptions) || + input.viewAllOptions || + false, }; if (this.expander) { this.expandedChange = input.expanded !== this.expanded;