{"version":3,"file":"TypeSelect-CfsBhXcd.js","sources":["../../../node_modules/@mui/icons-material/esm/CheckBoxOutlined.js","../../../node_modules/@mui/icons-material/esm/PhotoAlbum.js","../../../node_modules/@mui/icons-material/esm/RadioButtonCheckedOutlined.js","../../../node_modules/@mui/icons-material/esm/Room.js","../../../node_modules/@mui/icons-material/esm/ShortText.js","../../../node_modules/@mui/icons-material/esm/Subject.js","../../../frontend/src/Utils/Post/Form/questionUpdateWarning.tsx","../../../frontend/src/Components/Posts/Forms/Common/FormBuilder/Inputs/TypeSelect.tsx"],"sourcesContent":["\"use client\";\n\nimport createSvgIcon from \"./utils/createSvgIcon.js\";\nimport { jsx as _jsx } from \"react/jsx-runtime\";\nexport default createSvgIcon(/*#__PURE__*/_jsx(\"path\", {\n d: \"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2m0 16H5V5h14zM17.99 9l-1.41-1.42-6.59 6.59-2.58-2.57-1.42 1.41 4 3.99z\"\n}), 'CheckBoxOutlined');","\"use client\";\n\nimport createSvgIcon from \"./utils/createSvgIcon.js\";\nimport { jsx as _jsx } from \"react/jsx-runtime\";\nexport default createSvgIcon(/*#__PURE__*/_jsx(\"path\", {\n d: \"M18 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2m-7 2h5v7l-2.5-1.5L11 11zM7 18l2.38-3.17L11 17l2.62-3.5L17 18z\"\n}), 'PhotoAlbum');","\"use client\";\n\nimport createSvgIcon from \"./utils/createSvgIcon.js\";\nimport { jsx as _jsx } from \"react/jsx-runtime\";\nexport default createSvgIcon([/*#__PURE__*/_jsx(\"path\", {\n d: \"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2m0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8\"\n}, \"0\"), /*#__PURE__*/_jsx(\"circle\", {\n cx: \"12\",\n cy: \"12\",\n r: \"5\"\n}, \"1\")], 'RadioButtonCheckedOutlined');","\"use client\";\n\nimport createSvgIcon from \"./utils/createSvgIcon.js\";\nimport { jsx as _jsx } from \"react/jsx-runtime\";\nexport default createSvgIcon(/*#__PURE__*/_jsx(\"path\", {\n d: \"M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7m0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5\"\n}), 'Room');","\"use client\";\n\nimport createSvgIcon from \"./utils/createSvgIcon.js\";\nimport { jsx as _jsx } from \"react/jsx-runtime\";\nexport default createSvgIcon(/*#__PURE__*/_jsx(\"path\", {\n d: \"M4 9h16v2H4zm0 4h10v2H4z\"\n}), 'ShortText');","\"use client\";\n\nimport createSvgIcon from \"./utils/createSvgIcon.js\";\nimport { jsx as _jsx } from \"react/jsx-runtime\";\nexport default createSvgIcon(/*#__PURE__*/_jsx(\"path\", {\n d: \"M14 17H4v2h10zm6-8H4v2h16zM4 15h16v-2H4zM4 5v2h16V5z\"\n}), 'Subject');","import { Typography } from '@mui/material';\nimport React from 'react';\n\n// Define the type for the confirm function's argument\ninterface ConfirmOptions {\n title: string;\n label: string;\n content: React.ReactNode;\n}\n\nexport const confirmChangeType = async ({ confirm, intl }) => {\n const options: ConfirmOptions = {\n title: intl.formatMessage({ id: 'POST_FORM.FORM_BUILDER.TYPE_SELECT_WARNING.TITLE' }),\n label: intl.formatMessage({ id: 'POST_FORM.FORM_BUILDER.TYPE_SELECT_WARNING.TITLE' }),\n content: (\n
\n \n {intl.formatMessage({ id: 'POST_FORM.FORM_BUILDER.TYPE_SELECT_WARNING.DESCRIPTION_1' })}\n \n \n {intl.formatMessage({ id: 'POST_FORM.FORM_BUILDER.TYPE_SELECT_WARNING.DESCRIPTION_2' })}\n \n \n {intl.formatMessage({ id: 'POST_FORM.FORM_BUILDER.TYPE_SELECT_WARNING.DESCRIPTION_3' })}\n \n
\n ),\n };\n\n return confirm(options);\n};\n","import React from 'react';\nimport { MenuItem, Select, Divider, ListItemText, ListItemIcon } from '@mui/material';\nimport { FormattedMessage, useIntl } from 'react-intl';\nimport { Control, Controller, useWatch } from 'react-hook-form';\nimport {\n CheckBoxOutlined as Checkbox,\n Event as Date,\n RadioButtonCheckedOutlined as Radio,\n Room,\n ShortText,\n Subject as Textarea,\n AttachFile,\n PhotoAlbum as Picture,\n AccountBalance,\n Phone,\n} from '@mui/icons-material';\n\nimport {\n FormQuestionType,\n ContextType,\n singletonQuestionTypes,\n alwaysPublicTypes,\n questionTypesForContext,\n} from '../../../../../../Utils/Types/FormBuilder';\nimport useConfirmationDialog from '../../../../../../Hooks/useConfirmationDialog';\nimport { confirmChangeType } from '../../../../../../Utils/Post/Form/questionUpdateWarning';\n\ntype TypeSelectProps = {\n scope?: string;\n position: number;\n control: Control;\n context: ContextType;\n setValue: (name: string, value: any) => void;\n};\n\nexport const icons: { [key in FormQuestionType]: JSX.Element } = {\n attachment: ,\n checkbox: ,\n date: ,\n location: ,\n money: ,\n phone_number: ,\n picture: ,\n radio: ,\n text: ,\n textarea: