mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 18:41:06 +08:00
Addon-knobs: Fix select options types to allow string[] and null (#7356)
Addon-knobs: Fix select options types to allow string[] and null
This commit is contained in:
commit
5f6ce01af5
@ -3,7 +3,7 @@ import PropTypes from 'prop-types';
|
||||
|
||||
import { Form } from '@storybook/components';
|
||||
|
||||
type SelectTypeKnobValue = string;
|
||||
export type SelectTypeKnobValue = string | number | null | undefined;
|
||||
|
||||
export interface SelectTypeKnob {
|
||||
name: string;
|
||||
@ -11,9 +11,9 @@ export interface SelectTypeKnob {
|
||||
options: SelectTypeOptionsProp;
|
||||
}
|
||||
|
||||
export interface SelectTypeOptionsProp {
|
||||
[key: string]: SelectTypeKnobValue;
|
||||
}
|
||||
export type SelectTypeOptionsProp =
|
||||
| Record<string, SelectTypeKnobValue>
|
||||
| NonNullable<SelectTypeKnobValue>[];
|
||||
|
||||
export interface SelectTypeProps {
|
||||
knob: SelectTypeKnob;
|
||||
|
@ -31,7 +31,7 @@ export { NumberTypeKnob, NumberTypeKnobOptions } from './Number';
|
||||
export { ColorTypeKnob } from './Color';
|
||||
export { BooleanTypeKnob } from './Boolean';
|
||||
export { ObjectTypeKnob } from './Object';
|
||||
export { SelectTypeKnob, SelectTypeOptionsProp } from './Select';
|
||||
export { SelectTypeKnob, SelectTypeOptionsProp, SelectTypeKnobValue } from './Select';
|
||||
export { RadiosTypeKnob, RadiosTypeOptionsProp } from './Radio';
|
||||
export { ArrayTypeKnob } from './Array';
|
||||
export { DateTypeKnob } from './Date';
|
||||
|
@ -7,6 +7,7 @@ import {
|
||||
ButtonTypeOnClickProp,
|
||||
RadiosTypeOptionsProp,
|
||||
SelectTypeOptionsProp,
|
||||
SelectTypeKnobValue,
|
||||
OptionsTypeOptionsProp,
|
||||
OptionsKnobOptions,
|
||||
} from './components/types';
|
||||
@ -63,7 +64,7 @@ export function object<T>(name: string, value: T, groupId?: string) {
|
||||
export function select(
|
||||
name: string,
|
||||
options: SelectTypeOptionsProp,
|
||||
value: string,
|
||||
value: SelectTypeKnobValue,
|
||||
groupId?: string
|
||||
) {
|
||||
return manager.knob(name, { type: 'select', selectV2: true, options, value, groupId });
|
||||
|
Loading…
x
Reference in New Issue
Block a user