From 1f20369f84236d9dfd233fc7547b93e818738f15 Mon Sep 17 00:00:00 2001 From: Katie George Date: Fri, 17 Jan 2025 11:34:30 -0800 Subject: [PATCH] chore: Updates documenter --- .../snapshot-tests/__snapshots__/documenter.test.ts.snap | 6 ++++++ src/multiselect/interfaces.ts | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/src/__tests__/snapshot-tests/__snapshots__/documenter.test.ts.snap b/src/__tests__/snapshot-tests/__snapshots__/documenter.test.ts.snap index 0fed0e3e02..f83e1c2da5 100644 --- a/src/__tests__/snapshot-tests/__snapshots__/documenter.test.ts.snap +++ b/src/__tests__/snapshot-tests/__snapshots__/documenter.test.ts.snap @@ -11259,6 +11259,12 @@ use the \`id\` attribute, consider setting it on a parent element instead.", "optional": true, "type": "string", }, + { + "description": "Shows tokens inside the trigger instead of below it.", + "name": "inlineTokens", + "optional": true, + "type": "boolean", + }, { "description": "Overrides the invalidation state. Usually the invalid state comes from the parent \`FormField\`component, diff --git a/src/multiselect/interfaces.ts b/src/multiselect/interfaces.ts index 0a3e02a5ef..5ebe51e7ee 100644 --- a/src/multiselect/interfaces.ts +++ b/src/multiselect/interfaces.ts @@ -24,7 +24,7 @@ export interface MultiselectProps extends BaseSelectProps { */ hideTokens?: boolean; /** - * Shows tokens inside the input instead of below. + * Shows tokens inside the trigger instead of below it. */ inlineTokens?: boolean; /**