@tsed/schema-formio
Version:
Transform Ts.ED Schema & JsonSchema to a valid Formio schema
14 lines (11 loc) • 390 B
text/typescript
import {execMapper, registerFormioMapper} from "../registries/FormioMappersContainer.js";
export function objectToEditGrid(schema: any, options: any) {
return {
...execMapper("default", schema, options),
rowDrafts: false,
type: "editgrid",
input: true,
components: execMapper("properties", schema, options)
};
}
registerFormioMapper("editgrid", objectToEditGrid);