diff --git a/packages/components/src/input-control/index.tsx b/packages/components/src/input-control/index.tsx index 8c480bd7c7dfb4..c6498ef8799a4a 100644 --- a/packages/components/src/input-control/index.tsx +++ b/packages/components/src/input-control/index.tsx @@ -92,7 +92,7 @@ export function UnforwardedInputControl( * InputControl components let users enter and edit text. This is an experimental component * intended to (in time) merge with or replace `TextControl`. * - * @example + * ```jsx * import { __experimentalInputControl as InputControl } from '@wordpress/components'; * import { useState } from '@wordpress/compose'; * @@ -106,6 +106,7 @@ export function UnforwardedInputControl( * /> * ); * }; + * ``` */ export const InputControl = forwardRef( UnforwardedInputControl ); diff --git a/packages/components/src/input-control/stories/index.tsx b/packages/components/src/input-control/stories/index.tsx index 4a0ef0e90805c7..b71567de0091e7 100644 --- a/packages/components/src/input-control/stories/index.tsx +++ b/packages/components/src/input-control/stories/index.tsx @@ -23,7 +23,6 @@ const meta: ComponentMeta< typeof InputControl > = { prefix: { control: { type: null } }, suffix: { control: { type: null } }, type: { control: { type: 'text' } }, - value: { control: { disable: true } }, }, parameters: { controls: { expanded: true }, @@ -32,7 +31,11 @@ const meta: ComponentMeta< typeof InputControl > = { }; export default meta; -const Template: ComponentStory< typeof InputControl > = ( args ) => { +const UncontrolledTemplate: ComponentStory< typeof InputControl > = ( + args +) => ; + +const ControlledTemplate: ComponentStory< typeof InputControl > = ( args ) => { const [ value, setValue ] = useState( '' ); return ( @@ -44,33 +47,41 @@ const Template: ComponentStory< typeof InputControl > = ( args ) => { ); }; -export const Default = Template.bind( {} ); +export const Default = UncontrolledTemplate.bind( {} ); Default.args = { label: 'Value', placeholder: 'Placeholder', }; -export const WithPrefix = Template.bind( {} ); +export const WithPrefix = UncontrolledTemplate.bind( {} ); WithPrefix.args = { ...Default.args, prefix: @, }; -export const WithSuffix = Template.bind( {} ); +export const WithSuffix = UncontrolledTemplate.bind( {} ); WithSuffix.args = { ...Default.args, suffix: , }; -export const WithSideLabel = Template.bind( {} ); +export const WithSideLabel = UncontrolledTemplate.bind( {} ); WithSideLabel.args = { ...Default.args, labelPosition: 'side', }; -export const WithEdgeLabel = Template.bind( {} ); +export const WithEdgeLabel = UncontrolledTemplate.bind( {} ); WithEdgeLabel.args = { ...Default.args, __unstableInputWidth: '20em', labelPosition: 'edge', }; + +export const Controlled = ControlledTemplate.bind( {} ); +Controlled.args = { + ...Default.args, +}; +Controlled.argTypes = { + value: { control: { disable: true } }, +};