19 lines
682 B
JavaScript
19 lines
682 B
JavaScript
import { DesignOptionPctDeg } from 'shared/components/workbench/inputs/design-option-pct-deg.mjs'
|
|
import { DesignOptionCount } from 'shared/components/workbench/inputs/design-option-count.mjs'
|
|
import { DesignOptionList } from 'shared/components/workbench/inputs/design-option-list.mjs'
|
|
import { Popout } from 'shared/components/popout.mjs'
|
|
|
|
export const Tmp = () => <p>not yet</p>
|
|
|
|
export const inputs = {
|
|
Pct: DesignOptionPctDeg,
|
|
Count: DesignOptionCount,
|
|
Deg: (props) => <DesignOptionPctDeg {...props} type="deg" />,
|
|
List: DesignOptionList,
|
|
Mm: () => (
|
|
<Popout fixme compact>
|
|
Mm options are deprecated. Please report this
|
|
</Popout>
|
|
),
|
|
Constant: Tmp,
|
|
}
|