Skip to content

Commit

Permalink
feat(filter-menu): add search header
Browse files Browse the repository at this point in the history
  • Loading branch information
LuLaValva authored Nov 22, 2024
1 parent 73ff807 commit 9ebb7c9
Show file tree
Hide file tree
Showing 13 changed files with 2,233 additions and 38 deletions.
5 changes: 5 additions & 0 deletions .changeset/famous-peas-own.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@ebay/ebayui-core": minor
---

Search header for filter menu & filter menu button
4 changes: 4 additions & 0 deletions src/components/ebay-filter-menu-button/component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,15 @@ interface FilterMenuButtonInput
"form-method"?: string;
disabled?: boolean;
"a11y-text"?: AttrString;
"search-header-value"?: string;
"search-header-placeholder-text"?: AttrString;
"a11y-search-header-clear-text"?: AttrString;
"on-expand"?: () => void;
"on-change"?: (event: FilterMenuButtonEvent) => void;
"on-collapse"?: (event: FilterMenuButtonEvent) => void;
"on-footer-click"?: (event: FilterMenuButtonEvent) => void;
"on-form-submit"?: (event: FilterMenuButtonEvent) => void;
"on-search-change"?: (value: string) => void;
}

export interface Input extends WithNormalizedProps<FilterMenuButtonInput> {}
Expand Down
Loading

0 comments on commit 9ebb7c9

Please sign in to comment.