Skip to content

Commit f7b7b4d

Browse files
andreancardonaalisonjosephfrancineluccakodiakhq[bot]
authored
fix: update contained list search placeholder (#14105)
* feat: contained list persistent search * docs: update docs for contained list search * fix: fix border * feat: functionality working * fix(tabs): hover style bugs * fix: remove hover from disabled state * feat: clean up code * Update packages/react/src/components/ContainedList/ContainedList.mdx Co-authored-by: Francine Lucca <40550942+francinelucca@users.noreply.github.com> * fix: update docs * fix: fix styling Co-authored-by: Francine Lucca <francinelucca@users.noreply.github.com> * fix: update docs * fix: failing test * fix: fix tests * fix: update contained list search placeholder --------- Co-authored-by: Alison Joseph <alison.joseph@us.ibm.com> Co-authored-by: Francine Lucca <40550942+francinelucca@users.noreply.github.com> Co-authored-by: Francine Lucca <francinelucca@users.noreply.github.com> Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
1 parent b9e28c4 commit f7b7b4d

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

packages/react/src/components/ContainedList/ContainedList.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ To prevent this potential conflict, we have added funtionality to support both d
6565
kind="on-page"
6666
action={
6767
<ExpandableSearch
68-
placeholder="Search"
68+
placeholder="Filterable search"
6969
value={searchTerm}
7070
onChange={handleChange}
7171
closeButtonLabelText="Clear search input"
@@ -117,7 +117,7 @@ export const WithPersistentSearch = () => {
117117
return (
118118
<ContainedList label="List title" kind="on-page" action={''}>
119119
<Search
120-
placeholder="Search"
120+
placeholder="Filterable search"
121121
value={searchTerm}
122122
onChange={handleChange}
123123
closeButtonLabelText="Clear search input"

packages/react/src/components/ContainedList/ContainedList.stories.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ export const WithExpandableSearch = () => {
158158
kind="on-page"
159159
action={
160160
<ExpandableSearch
161-
placeholder="Search"
161+
placeholder="Filterable search"
162162
value={searchTerm}
163163
onChange={handleChange}
164164
closeButtonLabelText="Clear search input"
@@ -196,7 +196,7 @@ export const WithPersistentSearch = () => {
196196
return (
197197
<ContainedList label="List title" kind="on-page" action={''}>
198198
<Search
199-
placeholder="Search"
199+
placeholder="Filterable search"
200200
value={searchTerm}
201201
onChange={handleChange}
202202
closeButtonLabelText="Clear search input"

0 commit comments

Comments
 (0)