@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 panelToComponent(schema: any, options: any) {
return {
...execMapper("default", schema, options),
collapsible: false,
input: false,
tableView: false,
components: execMapper("properties", schema, options)
};
}
registerFormioMapper("panel", panelToComponent);