@tsed/schema-formio
Version:
Transform Ts.ED Schema & JsonSchema to a valid Formio schema
14 lines • 310 B
JavaScript
import { Component } from "./component.js";
/**
* Open automatically the editgrid when the list is empty.
* @decorator
* @formio
* @property
* @schema
*/
export function OpenWhenEmpty(openWhenEmpty = true) {
return Component({
openWhenEmpty
});
}
//# sourceMappingURL=openWhenEmpty.js.map