UNPKG

@open-formulieren/formio-builder

Version:

An opinionated Formio webform builder for Open Forms

10 lines (9 loc) 643 B
import { jsx as _jsx } from "react/jsx-runtime"; import { FormattedMessage, useIntl } from 'react-intl'; import { Checkbox } from '../../components/formio'; const EnableSelection = () => { const intl = useIntl(); const tooltip = intl.formatMessage({ id: "e09gXO", defaultMessage: [{ type: 0, value: "Allow the selection of specific children that are retrieved from the external source for further processing." }] }); return (_jsx(Checkbox, { name: "enableSelection", label: _jsx(FormattedMessage, { id: '7E8B/6', defaultMessage: [{ type: 0, value: "Enable selection" }] }), tooltip: tooltip })); }; export default EnableSelection;