2023-02-05 17:59:22 +01:00
|
|
|
import { DesignOptionPctDeg } from 'shared/components/workbench/inputs/design-option-pct-deg.mjs'
|
2023-02-09 21:39:19 -06:00
|
|
|
import { DesignOptionCount } from 'shared/components/workbench/inputs/design-option-count.mjs'
|
|
|
|
import { DesignOptionList } from 'shared/components/workbench/inputs/design-option-list.mjs'
|
2023-01-29 18:57:24 +01:00
|
|
|
import { Popout } from 'shared/components/popout.mjs'
|
|
|
|
|
2023-02-05 19:58:25 +01:00
|
|
|
export const Tmp = () => <p>not yet</p>
|
2023-01-29 18:57:24 +01:00
|
|
|
|
|
|
|
export const inputs = {
|
2023-02-05 19:58:25 +01:00
|
|
|
Pct: DesignOptionPctDeg,
|
2023-02-09 21:39:19 -06:00
|
|
|
Count: DesignOptionCount,
|
2023-02-05 19:58:25 +01:00
|
|
|
Deg: (props) => <DesignOptionPctDeg {...props} type="deg" />,
|
2023-02-09 21:39:19 -06:00
|
|
|
List: DesignOptionList,
|
2023-02-05 19:58:25 +01:00
|
|
|
Mm: () => (
|
2023-01-29 18:57:24 +01:00
|
|
|
<Popout fixme compact>
|
|
|
|
Mm options are deprecated. Please report this
|
|
|
|
</Popout>
|
|
|
|
),
|
2023-02-05 19:58:25 +01:00
|
|
|
Constant: Tmp,
|
2023-01-29 18:57:24 +01:00
|
|
|
}
|