From d7ef12d86e03f92083c45d0b25689780fc9a1853 Mon Sep 17 00:00:00 2001 From: JesmoDev <26099018+JesmoDev@users.noreply.github.com> Date: Tue, 8 Oct 2024 20:50:00 +0200 Subject: [PATCH] add missing readonly story --- packages/uui-input/lib/uui-input.stories.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/packages/uui-input/lib/uui-input.stories.ts b/packages/uui-input/lib/uui-input.stories.ts index 8836844e4..47346fb0b 100644 --- a/packages/uui-input/lib/uui-input.stories.ts +++ b/packages/uui-input/lib/uui-input.stories.ts @@ -88,6 +88,10 @@ export const Disabled: Story = { args: { disabled: true }, }; +export const Readonly: Story = { + args: { readonly: true, value: 'Readonly' }, +}; + export const Error: Story = { args: { error: true, label: 'Error' }, };