import { DemoStory } from '../demo/demo-types'; import { SelectWithTitle, SelectOptionProps } from './select-with-title'; export const selectWithTitleDemo: DemoStory = { id: 'select-with-title-demo', text: 'Select With Title Demo', args: { title: 'Choose a fruit', size: 1, width: '200px', }, argTypes: { title: { control: 'text', description: 'Title text shown above' }, size: { control: 'number', description: 'HTML select size attribute' }, width: { control: 'text', description: 'Width of the select' }, }, render: (args) => { const options: SelectOptionProps[] = [ { option: 'Apple', value: 'apple' }, { option: 'Banana', value: 'banana', selected: true }, { option: 'Cherry', value: 'cherry' }, ]; return (
{SelectWithTitle( args.title, options, (val) => console.log('Selected:', val), args.size, 'input-base', args.width )}
); }, code: `import { SelectWithTitle, SelectOptionProps } from 'lupine.components/components/select-with-title'; const options: SelectOptionProps[] = [ { option: 'Apple', value: 'apple' }, { option: 'Banana', value: 'banana', selected: true }, { option: 'Cherry', value: 'cherry' }, ]; {SelectWithTitle( 'Choose a fruit', // title options, // options array (val) => console.log('Selected:', val), // onChange 1, // size 'input-base', // className '200px' // width )} `, };