From 96924ac53f4033a2fbf4ab678f5bf0e5ecf3edeb Mon Sep 17 00:00:00 2001 From: Lukas Harbarth Date: Tue, 6 May 2025 16:36:00 +0200 Subject: [PATCH] docs(Suggestions): remove redundant import and outdated note --- packages/main/src/webComponents/Input/Input.mdx | 3 --- packages/main/src/webComponents/Input/Input.stories.tsx | 1 - 2 files changed, 4 deletions(-) diff --git a/packages/main/src/webComponents/Input/Input.mdx b/packages/main/src/webComponents/Input/Input.mdx index fd3b0c4adb0..95147515327 100644 --- a/packages/main/src/webComponents/Input/Input.mdx +++ b/packages/main/src/webComponents/Input/Input.mdx @@ -30,9 +30,6 @@ import { excludePropsForAbstract } from '@sb/utils'; The `SuggestionItem` represents the suggestion item of the `Input` -**Note:** `SuggestionItems` will only be displayed if the required module has been imported (`import '@ui5/webcomponents/dist/features/InputSuggestions.js';`) -and the `showSuggestions` prop is set to `true`. - {SubcomponentsSection} diff --git a/packages/main/src/webComponents/Input/Input.stories.tsx b/packages/main/src/webComponents/Input/Input.stories.tsx index f0a1aafa80d..586a0cfea4e 100644 --- a/packages/main/src/webComponents/Input/Input.stories.tsx +++ b/packages/main/src/webComponents/Input/Input.stories.tsx @@ -1,4 +1,3 @@ -import '@ui5/webcomponents/dist/features/InputSuggestions.js'; import type { Meta, StoryObj } from '@storybook/react'; import InputType from '@ui5/webcomponents/dist/types/InputType.js'; import ValueState from '@ui5/webcomponents-base/dist/types/ValueState.js';