File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ import { LayoutModule } from "../layout";
8
8
import { TagModule } from "../tag" ;
9
9
import { DialogModule } from "../dialog" ;
10
10
import { TooltipModule } from "../tooltip" ;
11
+ import { SearchModule } from "../search" ;
11
12
import { ContainedListKind , ContainedListSize } from "./contained-list.enums" ;
12
13
import { ContainedListStoryModule } from "./stories/contained-list-story.module" ;
13
14
@@ -24,7 +25,8 @@ export default {
24
25
LayoutModule ,
25
26
TagModule ,
26
27
DialogModule ,
27
- TooltipModule
28
+ TooltipModule ,
29
+ SearchModule
28
30
]
29
31
} )
30
32
] ,
@@ -242,7 +244,10 @@ const withInteractiveItemsAndActionsTemplate: Story<ContainedList> = () => ({
242
244
<svg ibmIcon="subtract--alt" size="16" class="cds--btn__icon"></svg>
243
245
</button>
244
246
</ng-template>
245
- <cds-contained-list label="List title">
247
+ <ng-template #search>
248
+ <cds-search [expandable]="true" size="lg"></cds-search>
249
+ </ng-template>
250
+ <cds-contained-list label="List title" [action]="search">
246
251
<cds-contained-list-item [clickable]="true" [action]="action">
247
252
<ng-container ibmContainedListItemButton>List item</ng-container>
248
253
</cds-contained-list-item>
You can’t perform that action at this time.
0 commit comments