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 objectToEditGrid(schema, options) { return { ...execMapper("default", schema, options), rowDrafts: false, type: "editgrid", input: true, components: execMapper("properties", schema, options) }; } registerFormioMapper("editgrid", objectToEditGrid);