import type { TabviewDetail, TabviewSketcher, TabviewSpec } from '../../ui/types/TabviewTypes'; import { Replacing } from '../behaviour/Replacing'; import * as SketchBehaviours from '../component/SketchBehaviours'; import * as Sketcher from './Sketcher'; import type { SingleSketchFactory } from './UiSketcher'; const factory: SingleSketchFactory = (detail, _spec) => ({ uid: detail.uid, dom: detail.dom, behaviours: SketchBehaviours.augment( detail.tabviewBehaviours, [ Replacing.config({ }) ] ), domModification: { attributes: { role: 'tabpanel' } } }); const Tabview: TabviewSketcher = Sketcher.single({ name: 'Tabview', configFields: [ SketchBehaviours.field('tabviewBehaviours', [ Replacing ]) ], factory }); export { Tabview };