@open-formulieren/formio-builder
Version:
An opinionated Formio webform builder for Open Forms
35 lines (34 loc) • 883 B
JavaScript
import { jsx as a } from "react/jsx-runtime";
import "../../components/formio/tabs.js";
import "clsx";
import "formik";
/* empty css */
import "@floating-ui/react";
import "react";
/* empty css */
import { TextFieldMultiple as s } from "../../components/formio/textfield.js";
import "../../context.js";
import "react-intl";
import "lodash";
/* empty css */
import "react-select";
import "dompurify";
import "../../components/formio/datagrid.js";
const T = ({
component: t
}) => {
const {
key: i,
label: o,
description: r,
tooltip: p,
validate: m = {},
multiple: e
} = t, {
required: l = !1
} = m;
return /* @__PURE__ */ a(s, { name: i, multiple: !!e, label: o, description: r, tooltip: p, required: l });
};
export {
T as default
};