mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-16 10:51:06 +00:00
parent
eb0ad4106d
commit
02ba8cb6ee
10 changed files with 410 additions and 6 deletions
38
src/components/MultiSelect/MultiSelect.stories.js
Normal file
38
src/components/MultiSelect/MultiSelect.stories.js
Normal file
|
@ -0,0 +1,38 @@
|
|||
import { withKnobs, select, boolean, text } from '@storybook/addon-knobs';
|
||||
import Component from './MultiSelect.Story.svelte';
|
||||
|
||||
export default { title: 'MultiSelect', decorators: [withKnobs] };
|
||||
|
||||
const types = {
|
||||
'Default (default)': 'default',
|
||||
'Inline (inline)': 'inline'
|
||||
};
|
||||
|
||||
const sizes = {
|
||||
'Extra large size (xl)': 'xl',
|
||||
'Regular size (lg)': '',
|
||||
'Small size (sm)': 'sm'
|
||||
};
|
||||
|
||||
export const Default = () => ({
|
||||
Component,
|
||||
props: {
|
||||
id: 'multiselect',
|
||||
titleText: text('Title (titleText)', 'Multiselect Title'),
|
||||
helperText: text('Helper text (helperText)', 'This is not helper text'),
|
||||
filterable: boolean('Filterable (filterable)', false),
|
||||
selectionFeedback: select(
|
||||
'Selection feedback (selectionFeedback)',
|
||||
['top', 'fixed', 'top-after-reopen'],
|
||||
'top-after-reopen'
|
||||
),
|
||||
disabled: boolean('Disabled (disabled)', false),
|
||||
light: boolean('Light variant (light)', false),
|
||||
useTitleInItem: boolean('Show tooltip on hover', false),
|
||||
type: select('UI type (Only for `<MultiSelect>`) (type)', types, 'default'),
|
||||
size: select('Field size (size)', sizes, '') || undefined,
|
||||
label: text('Label (label)', 'MultiSelect Label'),
|
||||
invalid: boolean('Show form validation UI (invalid)', false),
|
||||
invalidText: text('Form validation UI content (invalidText)', 'Invalid Selection')
|
||||
}
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue