@tsed/schema-formio
Version:
Transform Ts.ED Schema & JsonSchema to a valid Formio schema
16 lines • 328 B
JavaScript
import { Component } from "./component.js";
/**
* Configure the property as Textarea component.
* @decorator
* @formio
* @property
* @schema
*/
export function Textarea(props = {}) {
return Component({
autoExpand: false,
...props,
type: "textarea"
});
}
//# sourceMappingURL=textarea.js.map