Skip to content

Commit

Permalink
feat: add props isHideableParentSearch on SearchTreeView
Browse files Browse the repository at this point in the history
  • Loading branch information
vhu-axelor committed Dec 11, 2024
1 parent 5304ff6 commit 78e700e
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
5 changes: 5 additions & 0 deletions changelogs/unreleased/88276.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"title": "SearchTreeView: add possibility to have a fixed parent search bar",
"type": "feat",
"packages": "core"
}
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ interface SearchTreeViewProps {
searchNavigate?: boolean;
scanKeySearch?: string;
isHideableSearch?: boolean;
isHideableParentSearch?: boolean;
fixedItems?: any;
topFixedItems?: any;
chipComponent?: any;
Expand Down Expand Up @@ -86,6 +87,7 @@ const SearchTreeView = ({
searchNavigate,
scanKeySearch = null,
isHideableSearch = false,
isHideableParentSearch = true,
fixedItems,
topFixedItems,
chipComponent,
Expand Down Expand Up @@ -215,12 +217,13 @@ const SearchTreeView = ({
topChildren={
<>
{headerTopChildren}
{renderParentSearchBar()}
{isHideableParentSearch && renderParentSearchBar()}
</>
}
fixedItems={
<>
{topFixedItems}
{!isHideableParentSearch && renderParentSearchBar()}
{!isHideableSearch && renderSearchBar()}
{fixedItems}
</>
Expand Down

0 comments on commit 78e700e

Please sign in to comment.