Skip to content

Commit

Permalink
feat(combobox): add filterText prop (#9654)
Browse files Browse the repository at this point in the history
*Related Issue:** #7212

## Summary

Adds `filterText` to allow dynamic access to filter text.
  • Loading branch information
jcfranco committed Jun 21, 2024
1 parent c2daf93 commit 01d01de
Show file tree
Hide file tree
Showing 3 changed files with 305 additions and 183 deletions.
8 changes: 8 additions & 0 deletions packages/calcite-components/src/components.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1236,6 +1236,10 @@ export namespace Components {
* When `true`, interaction is prevented and the component is displayed with lower opacity.
*/
"disabled": boolean;
/**
* Text for the component's filter input field.
*/
"filterText": string;
/**
* Specifies the component's filtered items.
* @readonly
Expand Down Expand Up @@ -9022,6 +9026,10 @@ declare namespace LocalJSX {
* When `true`, interaction is prevented and the component is displayed with lower opacity.
*/
"disabled"?: boolean;
/**
* Text for the component's filter input field.
*/
"filterText"?: string;
/**
* Specifies the component's filtered items.
* @readonly
Expand Down
Loading

0 comments on commit 01d01de

Please sign in to comment.