Skip to content

Commit

Permalink
ci: release (#2403)
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored Jan 23, 2025
1 parent 6fea187 commit be60239
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 13 deletions.
5 changes: 0 additions & 5 deletions .changeset/gentle-foxes-push.md

This file was deleted.

6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
14 changes: 9 additions & 5 deletions src/components/ebay-combobox/component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,11 @@ interface ComboboxInput extends Omit<Marko.Input<"input">, `on${string}`> {
"list-selection"?: "manual" | "automatic";
"floating-label"?: boolean;
"view-all-options"?: boolean;
button?: Marko.Input<"button"> & Marko.AttrTag<{
htmlAttributes?: Record<string, unknown>;
renderBody?: Marko.Body;
}>;
button?: Marko.Input<"button"> &
Marko.AttrTag<{
htmlAttributes?: Record<string, unknown>;
renderBody?: Marko.Body;
}>;
options?: Marko.AttrTag<ComboboxOption>;
"chevron-size"?: "large";
"on-focus"?: (event: ComboboxEvent) => void;
Expand Down Expand Up @@ -235,7 +236,10 @@ export default class Combobox extends Marko.Component<Input, State> {
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;
Expand Down

0 comments on commit be60239

Please sign in to comment.