2023-02-05 17:59:22 +01:00
|
|
|
import { DesignOptionPctDeg } from 'shared/components/workbench/inputs/design-option-pct-deg.mjs'
|
2023-01-29 18:57:24 +01:00
|
|
|
import { CountOption } from 'shared/components/workbench/inputs/design-option-count.mjs'
|
|
|
|
import { ListOption } from 'shared/components/workbench/inputs/design-option-list.mjs'
|
|
|
|
import { Popout } from 'shared/components/popout.mjs'
|
|
|
|
|
|
|
|
export const Tmp = (props) => <p>not yet</p>
|
|
|
|
|
|
|
|
export const inputs = {
|
2023-02-05 17:59:22 +01:00
|
|
|
pct: DesignOptionPctDeg,
|
2023-01-29 18:57:24 +01:00
|
|
|
count: CountOption,
|
2023-02-05 17:59:22 +01:00
|
|
|
deg: (props) => <DesignOptionPctDeg {...props} type="deg" />,
|
2023-01-29 18:57:24 +01:00
|
|
|
list: ListOption,
|
|
|
|
mm: () => (
|
|
|
|
<Popout fixme compact>
|
|
|
|
Mm options are deprecated. Please report this
|
|
|
|
</Popout>
|
|
|
|
),
|
|
|
|
constant: Tmp,
|
|
|
|
}
|