2022-06-06 11:32:28 -05:00
|
|
|
import PctDegOption from 'shared/components/workbench/inputs/design-option-pct-deg'
|
|
|
|
import CountOption from 'shared/components/workbench/inputs/design-option-count'
|
|
|
|
import ListOption from 'shared/components/workbench/inputs/design-option-list'
|
2022-07-03 12:56:10 +02:00
|
|
|
import Popout from 'shared/components/popout'
|
2022-06-06 11:32:28 -05:00
|
|
|
|
|
|
|
export const Tmp = props => <p>not yet</p>
|
|
|
|
|
|
|
|
export const inputs = {
|
|
|
|
pct: PctDegOption,
|
|
|
|
count: CountOption,
|
|
|
|
deg: props => (<PctDegOption {...props} type='deg' />),
|
|
|
|
list: ListOption,
|
2022-07-03 12:56:10 +02:00
|
|
|
mm: () => <Popout fixme compact>Mm options are deprecated. Please report this</Popout>,
|
2022-06-06 11:32:28 -05:00
|
|
|
constant: Tmp,
|
|
|
|
}
|