FormioComponent
@tsed/formio-types
Usage
typescript
import { FormioComponent } from "@tsed/formio-types";
See /packages/third-parties/formio-types/src/types/domain/FormioComponent.ts.
Overview
ts
interface FormioComponent extends ExtendedComponentSchema {
type: string;
key: string;
template?: string;
dataSrc?: "json" | "url";
data?: {
json?: any;
url?: string;
[key: string]: any;
};
valueProperty?: string;
customConditional?: string;
components?: FormioComponent[];
form?: string | FormioForm;
}
type
ts
type: string;
key
ts
key: string;
template
ts
template?: string;
dataSrc
ts
dataSrc?: "json" | "url";
data
ts
data?: {
json?: any;
url?: string;
[key: string]: any;
};
valueProperty
ts
valueProperty?: string;
customConditional
ts
customConditional?: string;
components
ts
components?: FormioComponent[];
form
ts
form?: string | FormioForm;