Skip to content

Commit

Permalink
merge update
Browse files Browse the repository at this point in the history
  • Loading branch information
scomea committed Aug 10, 2023
1 parent 39f8320 commit 34f863b
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions packages/web-components/fast-foundation/src/picker/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -193,8 +193,10 @@ export class FASTTextField extends TextField {}
| ---------------------------- | ------- | --------------------------- | ---------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | -------------------- |
| `selection` | public | `string` | `""` | Currently selected items. Comma delineated string ie. "apples,oranges". | |
| `options` | public | `string` | | Currently available options. Comma delineated string ie. "apples,oranges". | |
| `filterSelected` | public | `boolean` | `true` | Whether the component should remove an option from the list when it is in the selection | |
| `filterQuery` | public | `boolean` | `true` | Whether the component should remove options based on the current query | |
| `filterSelected` | public | `boolean` | `false` | Deprecated. Whether the component should remove an option from the list when it is in the selection. Default is false. | |
| `disableSelectionFilter` | public | `boolean` | `false` | Whether the component should remove an option from the list when it is in the selection. Default is false. | |
| `filterQuery` | public | `boolean` | `true` | Deprecated. Whether the component should remove options based on the current query. Default is false. | |
| `disableQueryFilter` | public | `boolean` | `false` | Whether the component should remove options based on the current query. Default is false. | |
| `maxSelected` | public | `number or null` | `null` | The maximum number of items that can be selected. | |
| `noSuggestionsText` | public | `string` | `"No suggestions available"` | The text to present to assistive technolgies when no suggestions are available. | |
| `suggestionsAvailableText` | public | `string` | `"Suggestions available"` | The text to present to assistive technolgies when suggestions are available. | |
Expand Down Expand Up @@ -260,3 +262,5 @@ export class FASTTextField extends TextField {}
| `menu-placement` | menuPlacement | |

<hr/>


0 comments on commit 34f863b

Please sign in to comment.