import * as InputBase from '../../ui/common/InputBase'; import type { InputDetail, InputSketcher, InputSpec } from '../../ui/types/InputTypes'; import type { SketchSpec } from '../component/SpecTypes'; import * as Sketcher from './Sketcher'; import type { SingleSketchFactory } from './UiSketcher'; const factory: SingleSketchFactory = (detail, _spec): SketchSpec => ({ uid: detail.uid, dom: InputBase.dom(detail), // No children. components: [ ], behaviours: InputBase.behaviours(detail), eventOrder: detail.eventOrder }); const Input: InputSketcher = Sketcher.single({ name: 'Input', configFields: InputBase.schema(), factory }); export { Input };