diff --git a/packages/uui-checkbox/lib/uui-checkbox.story.ts b/packages/uui-checkbox/lib/uui-checkbox.story.ts index 2ae27a92c..b3e0822ab 100644 --- a/packages/uui-checkbox/lib/uui-checkbox.story.ts +++ b/packages/uui-checkbox/lib/uui-checkbox.story.ts @@ -35,13 +35,27 @@ export const Error: Story = { export const Disabled: Story = { args: { - disabled: false, + disabled: true, + }, +}; + +export const DisabledChecked: Story = { + args: { + disabled: true, + checked: true, }, }; export const Readonly: Story = { args: { - readonly: false, + readonly: true, + }, +}; + +export const ReadonlyChecked: Story = { + args: { + readonly: true, + checked: true, }, }; diff --git a/packages/uui-radio/lib/uui-radio.story.ts b/packages/uui-radio/lib/uui-radio.story.ts index a4a446f40..a09c44124 100644 --- a/packages/uui-radio/lib/uui-radio.story.ts +++ b/packages/uui-radio/lib/uui-radio.story.ts @@ -30,12 +30,26 @@ export const Disabled: Story = { }, }; +export const DisabledChecked: Story = { + args: { + disabled: true, + checked: true, + }, +}; + export const Readonly: Story = { args: { readonly: true, }, }; +export const ReadonlyChecked: Story = { + args: { + readonly: true, + checked: true, + }, +}; + export const Checked: Story = { args: { checked: true,