UNPKG

@tsed/schema-formio

Version:

Transform Ts.ED Schema & JsonSchema to a valid Formio schema

12 lines (11 loc) 404 B
import { execMapper, registerFormioMapper } from "../registries/FormioMappersContainer.js"; export function panelToComponent(schema, options) { return { ...execMapper("default", schema, options), collapsible: false, input: false, tableView: false, components: execMapper("properties", schema, options) }; } registerFormioMapper("panel", panelToComponent);