@micromerce/formbuilder-react 1.0.651 → 1.0.656
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/Checkbox/Checkbox.module.scss +10 -0
- package/dist/components/FormBuilder/FormBuilder.module.scss +94 -0
- package/dist/components/FormFooter/FormFooter.module.scss +65 -0
- package/dist/components/FormGroup/FormGroup.module.scss +69 -0
- package/dist/components/FormList/FormList.module.scss +173 -0
- package/dist/components/Group/Group.module.scss +28 -0
- package/dist/components/Input/Input.module.scss +3 -0
- package/dist/components/InputFreeSolo/InputFreeSolo.module.scss +29 -0
- package/dist/components/MrnInput/MrnInput.module.scss +31 -0
- package/dist/components/MultiSelect/MultiSelect.module.scss +13 -0
- package/dist/components/PasswordInput/PasswordInput.module.scss +26 -0
- package/dist/components/Select/Select.module.scss +15 -0
- package/dist/components/Textarea/Textarea.module.scss +14 -0
- package/dist/components/addressGroup/AddressGroup.module.scss +72 -0
- package/dist/src/assets/icons/error/Error.d.ts +2 -0
- package/dist/src/assets/icons/error/Error.js +6 -0
- package/dist/src/assets/icons/error/Error.js.map +1 -0
- package/dist/src/components/Checkbox/Checkbox.d.ts +10 -0
- package/dist/src/components/Checkbox/Checkbox.js +37 -0
- package/dist/src/components/Checkbox/Checkbox.js.map +1 -0
- package/dist/src/components/Checkbox/index.d.ts +1 -0
- package/dist/src/components/Checkbox/index.js +2 -0
- package/dist/src/components/Checkbox/index.js.map +1 -0
- package/dist/src/components/ControlWrapper/ControlWrapper.d.ts +11 -0
- package/dist/src/components/ControlWrapper/ControlWrapper.js +37 -0
- package/dist/src/components/ControlWrapper/ControlWrapper.js.map +1 -0
- package/dist/src/components/ControlWrapper/index.d.ts +1 -0
- package/dist/src/components/ControlWrapper/index.js +2 -0
- package/dist/src/components/ControlWrapper/index.js.map +1 -0
- package/dist/src/components/DateRangeGroup/DateRangeGroup.d.ts +10 -0
- package/dist/src/components/DateRangeGroup/DateRangeGroup.js +69 -0
- package/dist/src/components/DateRangeGroup/DateRangeGroup.js.map +1 -0
- package/dist/src/components/DateRangeGroup/DateRangeGroup.styles.d.ts +3 -0
- package/dist/src/components/DateRangeGroup/DateRangeGroup.styles.js +59 -0
- package/dist/src/components/DateRangeGroup/DateRangeGroup.styles.js.map +1 -0
- package/dist/src/components/DateRangeGroup/components/CalendarModal.d.ts +14 -0
- package/dist/src/components/DateRangeGroup/components/CalendarModal.js +90 -0
- package/dist/src/components/DateRangeGroup/components/CalendarModal.js.map +1 -0
- package/dist/src/components/DateRangeGroup/index.d.ts +1 -0
- package/dist/src/components/DateRangeGroup/index.js +2 -0
- package/dist/src/components/DateRangeGroup/index.js.map +1 -0
- package/dist/src/components/ErrorBoundary/ErrorBoundary.d.ts +14 -0
- package/dist/src/components/ErrorBoundary/ErrorBoundary.js +22 -0
- package/dist/src/components/ErrorBoundary/ErrorBoundary.js.map +1 -0
- package/dist/src/components/FileUploader/FileUploader.d.ts +9 -0
- package/dist/src/components/FileUploader/FileUploader.js +30 -0
- package/dist/src/components/FileUploader/FileUploader.js.map +1 -0
- package/dist/src/components/FileUploader/index.d.ts +1 -0
- package/dist/src/components/FileUploader/index.js +2 -0
- package/dist/src/components/FileUploader/index.js.map +1 -0
- package/dist/src/components/FormBuilder/FormBuilder.d.ts +25 -0
- package/dist/src/components/FormBuilder/FormBuilder.js +74 -0
- package/dist/src/components/FormBuilder/FormBuilder.js.map +1 -0
- package/dist/src/components/FormBuilder/index.d.ts +1 -0
- package/dist/src/components/FormBuilder/index.js +2 -0
- package/dist/src/components/FormBuilder/index.js.map +1 -0
- package/dist/src/components/FormBuilder/utils/extractFormControlValues/extractFormControlValues.d.ts +6 -0
- package/dist/src/components/FormBuilder/utils/extractFormControlValues/extractFormControlValues.js +50 -0
- package/dist/src/components/FormBuilder/utils/extractFormControlValues/extractFormControlValues.js.map +1 -0
- package/dist/src/components/FormBuilder/utils/extractFormControlValues/index.d.ts +1 -0
- package/dist/src/components/FormBuilder/utils/extractFormControlValues/index.js +2 -0
- package/dist/src/components/FormBuilder/utils/extractFormControlValues/index.js.map +1 -0
- package/dist/src/components/FormBuilder/utils/jsonToUrlEncoded/index.d.ts +1 -0
- package/dist/src/components/FormBuilder/utils/jsonToUrlEncoded/index.js +2 -0
- package/dist/src/components/FormBuilder/utils/jsonToUrlEncoded/index.js.map +1 -0
- package/dist/src/components/FormBuilder/utils/jsonToUrlEncoded/jsonToUrlEncoded.d.ts +5 -0
- package/dist/src/components/FormBuilder/utils/jsonToUrlEncoded/jsonToUrlEncoded.js +15 -0
- package/dist/src/components/FormBuilder/utils/jsonToUrlEncoded/jsonToUrlEncoded.js.map +1 -0
- package/dist/src/components/FormFooter/FormFooter.d.ts +15 -0
- package/dist/src/components/FormFooter/FormFooter.js +46 -0
- package/dist/src/components/FormFooter/FormFooter.js.map +1 -0
- package/dist/src/components/FormFooter/components/Switch.d.ts +1 -0
- package/dist/src/components/FormFooter/components/Switch.js +15 -0
- package/dist/src/components/FormFooter/components/Switch.js.map +1 -0
- package/dist/src/components/FormFooter/index.d.ts +1 -0
- package/dist/src/components/FormFooter/index.js +2 -0
- package/dist/src/components/FormFooter/index.js.map +1 -0
- package/dist/src/components/FormGroup/FormGroup.d.ts +15 -0
- package/dist/src/components/FormGroup/FormGroup.js +18 -0
- package/dist/src/components/FormGroup/FormGroup.js.map +1 -0
- package/dist/src/components/FormGroup/index.d.ts +1 -0
- package/dist/src/components/FormGroup/index.js +2 -0
- package/dist/src/components/FormGroup/index.js.map +1 -0
- package/dist/src/components/FormList/FormList.d.ts +11 -0
- package/dist/src/components/FormList/FormList.js +66 -0
- package/dist/src/components/FormList/FormList.js.map +1 -0
- package/dist/src/components/FormList/index.d.ts +1 -0
- package/dist/src/components/FormList/index.js +2 -0
- package/dist/src/components/FormList/index.js.map +1 -0
- package/dist/src/components/GeneralFormGroup/GeneralFormGroup.d.ts +5 -0
- package/dist/src/components/GeneralFormGroup/GeneralFormGroup.js +4 -0
- package/dist/src/components/GeneralFormGroup/GeneralFormGroup.js.map +1 -0
- package/dist/src/components/GeneralFormGroup/index.d.ts +1 -0
- package/dist/src/components/GeneralFormGroup/index.js +2 -0
- package/dist/src/components/GeneralFormGroup/index.js.map +1 -0
- package/dist/src/components/Group/Group.d.ts +12 -0
- package/dist/src/components/Group/Group.js +32 -0
- package/dist/src/components/Group/Group.js.map +1 -0
- package/dist/src/components/Group/index.d.ts +1 -0
- package/dist/src/components/Group/index.js +2 -0
- package/dist/src/components/Group/index.js.map +1 -0
- package/dist/src/components/Input/Input.d.ts +14 -0
- package/dist/src/components/Input/Input.js +57 -0
- package/dist/src/components/Input/Input.js.map +1 -0
- package/dist/src/components/Input/index.d.ts +1 -0
- package/dist/src/components/Input/index.js +2 -0
- package/dist/src/components/Input/index.js.map +1 -0
- package/dist/src/components/Input/input.styles.d.ts +9 -0
- package/dist/src/components/Input/input.styles.js +24 -0
- package/dist/src/components/Input/input.styles.js.map +1 -0
- package/dist/src/components/InputFreeSolo/InputFreeSolo.d.ts +10 -0
- package/dist/src/components/InputFreeSolo/InputFreeSolo.js +67 -0
- package/dist/src/components/InputFreeSolo/InputFreeSolo.js.map +1 -0
- package/dist/src/components/InputFreeSolo/index.d.ts +1 -0
- package/dist/src/components/InputFreeSolo/index.js +2 -0
- package/dist/src/components/InputFreeSolo/index.js.map +1 -0
- package/dist/src/components/MrnInput/MrnInput.d.ts +11 -0
- package/dist/src/components/MrnInput/MrnInput.js +64 -0
- package/dist/src/components/MrnInput/MrnInput.js.map +1 -0
- package/dist/src/components/MrnInput/hooks/useMrn.d.ts +21 -0
- package/dist/src/components/MrnInput/hooks/useMrn.js +92 -0
- package/dist/src/components/MrnInput/hooks/useMrn.js.map +1 -0
- package/dist/src/components/MrnInput/index.d.ts +1 -0
- package/dist/src/components/MrnInput/index.js +2 -0
- package/dist/src/components/MrnInput/index.js.map +1 -0
- package/dist/src/components/MrnInput/services/fetchMrn.d.ts +3 -0
- package/dist/src/components/MrnInput/services/fetchMrn.js +30 -0
- package/dist/src/components/MrnInput/services/fetchMrn.js.map +1 -0
- package/dist/src/components/MrnInput/ui-helper/Link/Link.d.ts +3 -0
- package/dist/src/components/MrnInput/ui-helper/Link/Link.js +15 -0
- package/dist/src/components/MrnInput/ui-helper/Link/Link.js.map +1 -0
- package/dist/src/components/MrnInput/utils/mrnUtils/mrnUtils.d.ts +8 -0
- package/dist/src/components/MrnInput/utils/mrnUtils/mrnUtils.js +35 -0
- package/dist/src/components/MrnInput/utils/mrnUtils/mrnUtils.js.map +1 -0
- package/dist/src/components/MrnInput/utils/resolveMrnLinks/resolveMrnLink.d.ts +2 -0
- package/dist/src/components/MrnInput/utils/resolveMrnLinks/resolveMrnLink.js +11 -0
- package/dist/src/components/MrnInput/utils/resolveMrnLinks/resolveMrnLink.js.map +1 -0
- package/dist/src/components/MrnInput/utils/resolveNestedQueryLink/resolveNestedQueryLink.d.ts +2 -0
- package/dist/src/components/MrnInput/utils/resolveNestedQueryLink/resolveNestedQueryLink.js +19 -0
- package/dist/src/components/MrnInput/utils/resolveNestedQueryLink/resolveNestedQueryLink.js.map +1 -0
- package/dist/src/components/MrnInput/utils/urlSearchParam/urlSearchParam.d.ts +1 -0
- package/dist/src/components/MrnInput/utils/urlSearchParam/urlSearchParam.js +8 -0
- package/dist/src/components/MrnInput/utils/urlSearchParam/urlSearchParam.js.map +1 -0
- package/dist/src/components/MultiSelect/MultiSelect.d.ts +17 -0
- package/dist/src/components/MultiSelect/MultiSelect.js +61 -0
- package/dist/src/components/MultiSelect/MultiSelect.js.map +1 -0
- package/dist/src/components/MultiSelect/index.d.ts +1 -0
- package/dist/src/components/MultiSelect/index.js +2 -0
- package/dist/src/components/MultiSelect/index.js.map +1 -0
- package/dist/src/components/MultiSelect/utils/extractSelectedOptionValues/extractSelectedOptionValues.d.ts +24 -0
- package/dist/src/components/MultiSelect/utils/extractSelectedOptionValues/extractSelectedOptionValues.js +21 -0
- package/dist/src/components/MultiSelect/utils/extractSelectedOptionValues/extractSelectedOptionValues.js.map +1 -0
- package/dist/src/components/MultiSelect/utils/extractSelectedOptionValues/index.d.ts +1 -0
- package/dist/src/components/MultiSelect/utils/extractSelectedOptionValues/index.js +2 -0
- package/dist/src/components/MultiSelect/utils/extractSelectedOptionValues/index.js.map +1 -0
- package/dist/src/components/PasswordInput/PasswordInput.d.ts +12 -0
- package/dist/src/components/PasswordInput/PasswordInput.js +21 -0
- package/dist/src/components/PasswordInput/PasswordInput.js.map +1 -0
- package/dist/src/components/PasswordInput/index.d.ts +1 -0
- package/dist/src/components/PasswordInput/index.js +2 -0
- package/dist/src/components/PasswordInput/index.js.map +1 -0
- package/dist/src/components/QueryControl/QueryControl.d.ts +13 -0
- package/dist/src/components/QueryControl/QueryControl.js +95 -0
- package/dist/src/components/QueryControl/QueryControl.js.map +1 -0
- package/dist/src/components/QueryControl/data/defaultControls.d.ts +9 -0
- package/dist/src/components/QueryControl/data/defaultControls.js +95 -0
- package/dist/src/components/QueryControl/data/defaultControls.js.map +1 -0
- package/dist/src/components/QueryControl/index.d.ts +1 -0
- package/dist/src/components/QueryControl/index.js +2 -0
- package/dist/src/components/QueryControl/index.js.map +1 -0
- package/dist/src/components/QueryControl/ui-helper/Wrapper/QueryControlWrapper.d.ts +8 -0
- package/dist/src/components/QueryControl/ui-helper/Wrapper/QueryControlWrapper.js +8 -0
- package/dist/src/components/QueryControl/ui-helper/Wrapper/QueryControlWrapper.js.map +1 -0
- package/dist/src/components/QueryControl/ui-helper/Wrapper/QueryControlWrapper.styles.d.ts +6 -0
- package/dist/src/components/QueryControl/ui-helper/Wrapper/QueryControlWrapper.styles.js +14 -0
- package/dist/src/components/QueryControl/ui-helper/Wrapper/QueryControlWrapper.styles.js.map +1 -0
- package/dist/src/components/QueryControl/ui-helper/Wrapper/index.d.ts +1 -0
- package/dist/src/components/QueryControl/ui-helper/Wrapper/index.js +2 -0
- package/dist/src/components/QueryControl/ui-helper/Wrapper/index.js.map +1 -0
- package/dist/src/components/QueryControl/utils/allControlsHidden/allControlsHidden.d.ts +3 -0
- package/dist/src/components/QueryControl/utils/allControlsHidden/allControlsHidden.js +39 -0
- package/dist/src/components/QueryControl/utils/allControlsHidden/allControlsHidden.js.map +1 -0
- package/dist/src/components/QueryControl/utils/allControlsHidden/index.d.ts +1 -0
- package/dist/src/components/QueryControl/utils/allControlsHidden/index.js +2 -0
- package/dist/src/components/QueryControl/utils/allControlsHidden/index.js.map +1 -0
- package/dist/src/components/QueryControl/utils/getMatchingControls.d.ts +9 -0
- package/dist/src/components/QueryControl/utils/getMatchingControls.js +19 -0
- package/dist/src/components/QueryControl/utils/getMatchingControls.js.map +1 -0
- package/dist/src/components/QueryControl/utils/hasExpertControl/hasExpertControl.d.ts +3 -0
- package/dist/src/components/QueryControl/utils/hasExpertControl/hasExpertControl.js +38 -0
- package/dist/src/components/QueryControl/utils/hasExpertControl/hasExpertControl.js.map +1 -0
- package/dist/src/components/QueryControl/utils/hasExpertControl/index.d.ts +1 -0
- package/dist/src/components/QueryControl/utils/hasExpertControl/index.js +2 -0
- package/dist/src/components/QueryControl/utils/hasExpertControl/index.js.map +1 -0
- package/dist/src/components/QueryControl/utils/hideGroup/hideGroup.d.ts +3 -0
- package/dist/src/components/QueryControl/utils/hideGroup/hideGroup.js +9 -0
- package/dist/src/components/QueryControl/utils/hideGroup/hideGroup.js.map +1 -0
- package/dist/src/components/QueryControl/utils/hideGroup/index.d.ts +1 -0
- package/dist/src/components/QueryControl/utils/hideGroup/index.js +2 -0
- package/dist/src/components/QueryControl/utils/hideGroup/index.js.map +1 -0
- package/dist/src/components/Select/Select.d.ts +12 -0
- package/dist/src/components/Select/Select.js +67 -0
- package/dist/src/components/Select/Select.js.map +1 -0
- package/dist/src/components/Select/index.d.ts +1 -0
- package/dist/src/components/Select/index.js +2 -0
- package/dist/src/components/Select/index.js.map +1 -0
- package/dist/src/components/Select/utils/getSelectedOption.d.ts +3 -0
- package/dist/src/components/Select/utils/getSelectedOption.js +8 -0
- package/dist/src/components/Select/utils/getSelectedOption.js.map +1 -0
- package/dist/src/components/Textarea/Textarea.d.ts +10 -0
- package/dist/src/components/Textarea/Textarea.js +55 -0
- package/dist/src/components/Textarea/Textarea.js.map +1 -0
- package/dist/src/components/Textarea/Textarea.types.d.ts +12 -0
- package/dist/src/components/Textarea/Textarea.types.js +2 -0
- package/dist/src/components/Textarea/Textarea.types.js.map +1 -0
- package/dist/src/components/Textarea/aiWrapper/aiAction.d.ts +12 -0
- package/dist/src/components/Textarea/aiWrapper/aiAction.js +21 -0
- package/dist/src/components/Textarea/aiWrapper/aiAction.js.map +1 -0
- package/dist/src/components/Textarea/aiWrapper/aiLayout.d.ts +10 -0
- package/dist/src/components/Textarea/aiWrapper/aiLayout.js +21 -0
- package/dist/src/components/Textarea/aiWrapper/aiLayout.js.map +1 -0
- package/dist/src/components/Textarea/aiWrapper/index.d.ts +11 -0
- package/dist/src/components/Textarea/aiWrapper/index.js +29 -0
- package/dist/src/components/Textarea/aiWrapper/index.js.map +1 -0
- package/dist/src/components/Textarea/aiWrapper/useAi.d.ts +21 -0
- package/dist/src/components/Textarea/aiWrapper/useAi.js +74 -0
- package/dist/src/components/Textarea/aiWrapper/useAi.js.map +1 -0
- package/dist/src/components/Textarea/editors/Default.d.ts +13 -0
- package/dist/src/components/Textarea/editors/Default.js +26 -0
- package/dist/src/components/Textarea/editors/Default.js.map +1 -0
- package/dist/src/components/Textarea/editors/Html.d.ts +10 -0
- package/dist/src/components/Textarea/editors/Html.js +9 -0
- package/dist/src/components/Textarea/editors/Html.js.map +1 -0
- package/dist/src/components/Textarea/editors/Json.d.ts +10 -0
- package/dist/src/components/Textarea/editors/Json.js +9 -0
- package/dist/src/components/Textarea/editors/Json.js.map +1 -0
- package/dist/src/components/Textarea/editors/Markdown.d.ts +10 -0
- package/dist/src/components/Textarea/editors/Markdown.js +20 -0
- package/dist/src/components/Textarea/editors/Markdown.js.map +1 -0
- package/dist/src/components/Textarea/editors/Richtext.d.ts +12 -0
- package/dist/src/components/Textarea/editors/Richtext.js +13 -0
- package/dist/src/components/Textarea/editors/Richtext.js.map +1 -0
- package/dist/src/components/Textarea/index.d.ts +1 -0
- package/dist/src/components/Textarea/index.js +2 -0
- package/dist/src/components/Textarea/index.js.map +1 -0
- package/dist/src/components/addressGroup/AddressGroup.d.ts +12 -0
- package/dist/src/components/addressGroup/AddressGroup.js +39 -0
- package/dist/src/components/addressGroup/AddressGroup.js.map +1 -0
- package/dist/src/components/addressGroup/index.d.ts +1 -0
- package/dist/src/components/addressGroup/index.js +2 -0
- package/dist/src/components/addressGroup/index.js.map +1 -0
- package/dist/src/components/addressGroup/utils/Countries.d.ts +3 -0
- package/dist/src/components/addressGroup/utils/Countries.js +1249 -0
- package/dist/src/components/addressGroup/utils/Countries.js.map +1 -0
- package/dist/src/components/plate/PlateEditor.d.ts +10 -0
- package/dist/src/components/plate/PlateEditor.js +38 -0
- package/dist/src/components/plate/PlateEditor.js.map +1 -0
- package/dist/src/components/plate/PlateEditorContent.d.ts +24 -0
- package/dist/src/components/plate/PlateEditorContent.js +45 -0
- package/dist/src/components/plate/PlateEditorContent.js.map +1 -0
- package/dist/src/components/plate/components/align-dropdown-menu.d.ts +2 -0
- package/dist/src/components/plate/components/align-dropdown-menu.js +33 -0
- package/dist/src/components/plate/components/align-dropdown-menu.js.map +1 -0
- package/dist/src/components/plate/components/blockquote-element.d.ts +21 -0
- package/dist/src/components/plate/components/blockquote-element.js +8 -0
- package/dist/src/components/plate/components/blockquote-element.js.map +1 -0
- package/dist/src/components/plate/components/button.d.ts +14 -0
- package/dist/src/components/plate/components/button.js +38 -0
- package/dist/src/components/plate/components/button.js.map +1 -0
- package/dist/src/components/plate/components/caption.d.ts +43 -0
- package/dist/src/components/plate/components/caption.js +25 -0
- package/dist/src/components/plate/components/caption.js.map +1 -0
- package/dist/src/components/plate/components/checkbox.d.ts +3 -0
- package/dist/src/components/plate/components/checkbox.js +7 -0
- package/dist/src/components/plate/components/checkbox.js.map +1 -0
- package/dist/src/components/plate/components/code-block-combobox.d.ts +48 -0
- package/dist/src/components/plate/components/code-block-combobox.js +131 -0
- package/dist/src/components/plate/components/code-block-combobox.js.map +1 -0
- package/dist/src/components/plate/components/code-block-element.d.ts +22 -0
- package/dist/src/components/plate/components/code-block-element.js +13 -0
- package/dist/src/components/plate/components/code-block-element.js.map +1 -0
- package/dist/src/components/plate/components/code-leaf.d.ts +19 -0
- package/dist/src/components/plate/components/code-leaf.js +8 -0
- package/dist/src/components/plate/components/code-leaf.js.map +1 -0
- package/dist/src/components/plate/components/code-line-element.d.ts +21 -0
- package/dist/src/components/plate/components/code-line-element.js +6 -0
- package/dist/src/components/plate/components/code-line-element.js.map +1 -0
- package/dist/src/components/plate/components/code-syntax-leaf.d.ts +19 -0
- package/dist/src/components/plate/components/code-syntax-leaf.js +11 -0
- package/dist/src/components/plate/components/code-syntax-leaf.js.map +1 -0
- package/dist/src/components/plate/components/color-constants.d.ts +10 -0
- package/dist/src/components/plate/components/color-constants.js +430 -0
- package/dist/src/components/plate/components/color-constants.js.map +1 -0
- package/dist/src/components/plate/components/color-dropdown-menu-items.d.ts +18 -0
- package/dist/src/components/plate/components/color-dropdown-menu-items.js +21 -0
- package/dist/src/components/plate/components/color-dropdown-menu-items.js.map +1 -0
- package/dist/src/components/plate/components/color-dropdown-menu.d.ts +12 -0
- package/dist/src/components/plate/components/color-dropdown-menu.js +18 -0
- package/dist/src/components/plate/components/color-dropdown-menu.js.map +1 -0
- package/dist/src/components/plate/components/color-input.d.ts +2 -0
- package/dist/src/components/plate/components/color-input.js +15 -0
- package/dist/src/components/plate/components/color-input.js.map +1 -0
- package/dist/src/components/plate/components/color-picker.d.ts +18 -0
- package/dist/src/components/plate/components/color-picker.js +19 -0
- package/dist/src/components/plate/components/color-picker.js.map +1 -0
- package/dist/src/components/plate/components/colors-custom.d.ts +10 -0
- package/dist/src/components/plate/components/colors-custom.js +21 -0
- package/dist/src/components/plate/components/colors-custom.js.map +1 -0
- package/dist/src/components/plate/components/command.d.ts +76 -0
- package/dist/src/components/plate/components/command.js +18 -0
- package/dist/src/components/plate/components/command.js.map +1 -0
- package/dist/src/components/plate/components/comment-leaf.d.ts +3 -0
- package/dist/src/components/plate/components/comment-leaf.js +23 -0
- package/dist/src/components/plate/components/comment-leaf.js.map +1 -0
- package/dist/src/components/plate/components/dialog.d.ts +12 -0
- package/dist/src/components/plate/components/dialog.js +16 -0
- package/dist/src/components/plate/components/dialog.js.map +1 -0
- package/dist/src/components/plate/components/dropdown-menu.d.ts +29 -0
- package/dist/src/components/plate/components/dropdown-menu.js +51 -0
- package/dist/src/components/plate/components/dropdown-menu.js.map +1 -0
- package/dist/src/components/plate/components/excalidraw-element.d.ts +21 -0
- package/dist/src/components/plate/components/excalidraw-element.js +12 -0
- package/dist/src/components/plate/components/excalidraw-element.js.map +1 -0
- package/dist/src/components/plate/components/fixed-toolbar-buttons.d.ts +1 -0
- package/dist/src/components/plate/components/fixed-toolbar-buttons.js +25 -0
- package/dist/src/components/plate/components/fixed-toolbar-buttons.js.map +1 -0
- package/dist/src/components/plate/components/fixed-toolbar.d.ts +1 -0
- package/dist/src/components/plate/components/fixed-toolbar.js +4 -0
- package/dist/src/components/plate/components/fixed-toolbar.js.map +1 -0
- package/dist/src/components/plate/components/heading-element.d.ts +24 -0
- package/dist/src/components/plate/components/heading-element.js +30 -0
- package/dist/src/components/plate/components/heading-element.js.map +1 -0
- package/dist/src/components/plate/components/highlight-leaf.d.ts +19 -0
- package/dist/src/components/plate/components/highlight-leaf.js +5 -0
- package/dist/src/components/plate/components/highlight-leaf.js.map +1 -0
- package/dist/src/components/plate/components/hr-element.d.ts +21 -0
- package/dist/src/components/plate/components/hr-element.js +11 -0
- package/dist/src/components/plate/components/hr-element.js.map +1 -0
- package/dist/src/components/plate/components/image-element.d.ts +21 -0
- package/dist/src/components/plate/components/image-element.js +19 -0
- package/dist/src/components/plate/components/image-element.js.map +1 -0
- package/dist/src/components/plate/components/indent-list-toolbar-button.d.ts +18 -0
- package/dist/src/components/plate/components/indent-list-toolbar-button.js +12 -0
- package/dist/src/components/plate/components/indent-list-toolbar-button.js.map +1 -0
- package/dist/src/components/plate/components/indent-todo-marker-component.d.ts +3 -0
- package/dist/src/components/plate/components/indent-todo-marker-component.js +14 -0
- package/dist/src/components/plate/components/indent-todo-marker-component.js.map +1 -0
- package/dist/src/components/plate/components/indent-todo-toolbar-button.d.ts +15 -0
- package/dist/src/components/plate/components/indent-todo-toolbar-button.js +11 -0
- package/dist/src/components/plate/components/indent-todo-toolbar-button.js.map +1 -0
- package/dist/src/components/plate/components/indent-toolbar-button.d.ts +15 -0
- package/dist/src/components/plate/components/indent-toolbar-button.js +10 -0
- package/dist/src/components/plate/components/indent-toolbar-button.js.map +1 -0
- package/dist/src/components/plate/components/inline-combobox.d.ts +29 -0
- package/dist/src/components/plate/components/inline-combobox.js +156 -0
- package/dist/src/components/plate/components/inline-combobox.js.map +1 -0
- package/dist/src/components/plate/components/input.d.ts +8 -0
- package/dist/src/components/plate/components/input.js +20 -0
- package/dist/src/components/plate/components/input.js.map +1 -0
- package/dist/src/components/plate/components/insert-dropdown-menu.d.ts +12 -0
- package/dist/src/components/plate/components/insert-dropdown-menu.js +179 -0
- package/dist/src/components/plate/components/insert-dropdown-menu.js.map +1 -0
- package/dist/src/components/plate/components/kbd-leaf.d.ts +19 -0
- package/dist/src/components/plate/components/kbd-leaf.js +5 -0
- package/dist/src/components/plate/components/kbd-leaf.js.map +1 -0
- package/dist/src/components/plate/components/line-height-dropdown-menu.d.ts +2 -0
- package/dist/src/components/plate/components/line-height-dropdown-menu.js +12 -0
- package/dist/src/components/plate/components/line-height-dropdown-menu.js.map +1 -0
- package/dist/src/components/plate/components/link-element.d.ts +21 -0
- package/dist/src/components/plate/components/link-element.js +10 -0
- package/dist/src/components/plate/components/link-element.js.map +1 -0
- package/dist/src/components/plate/components/link-floating-toolbar.d.ts +5 -0
- package/dist/src/components/plate/components/link-floating-toolbar.js +54 -0
- package/dist/src/components/plate/components/link-floating-toolbar.js.map +1 -0
- package/dist/src/components/plate/components/link-toolbar-button.d.ts +15 -0
- package/dist/src/components/plate/components/link-toolbar-button.js +11 -0
- package/dist/src/components/plate/components/link-toolbar-button.js.map +1 -0
- package/dist/src/components/plate/components/mark-toolbar-button.d.ts +18 -0
- package/dist/src/components/plate/components/mark-toolbar-button.js +11 -0
- package/dist/src/components/plate/components/mark-toolbar-button.js.map +1 -0
- package/dist/src/components/plate/components/media-embed-element.d.ts +21 -0
- package/dist/src/components/plate/components/media-embed-element.js +23 -0
- package/dist/src/components/plate/components/media-embed-element.js.map +1 -0
- package/dist/src/components/plate/components/media-popover.d.ts +7 -0
- package/dist/src/components/plate/components/media-popover.js +30 -0
- package/dist/src/components/plate/components/media-popover.js.map +1 -0
- package/dist/src/components/plate/components/mention-element.d.ts +26 -0
- package/dist/src/components/plate/components/mention-element.js +12 -0
- package/dist/src/components/plate/components/mention-element.js.map +1 -0
- package/dist/src/components/plate/components/mention-input-element.d.ts +25 -0
- package/dist/src/components/plate/components/mention-input-element.js +89 -0
- package/dist/src/components/plate/components/mention-input-element.js.map +1 -0
- package/dist/src/components/plate/components/outdent-toolbar-button.d.ts +15 -0
- package/dist/src/components/plate/components/outdent-toolbar-button.js +10 -0
- package/dist/src/components/plate/components/outdent-toolbar-button.js.map +1 -0
- package/dist/src/components/plate/components/paragraph-element.d.ts +20 -0
- package/dist/src/components/plate/components/paragraph-element.js +4 -0
- package/dist/src/components/plate/components/paragraph-element.js.map +1 -0
- package/dist/src/components/plate/components/placeholder.d.ts +6 -0
- package/dist/src/components/plate/components/placeholder.js +37 -0
- package/dist/src/components/plate/components/placeholder.js.map +1 -0
- package/dist/src/components/plate/components/popover.d.ts +7 -0
- package/dist/src/components/plate/components/popover.js +11 -0
- package/dist/src/components/plate/components/popover.js.map +1 -0
- package/dist/src/components/plate/components/resizable.d.ts +40 -0
- package/dist/src/components/plate/components/resizable.js +38 -0
- package/dist/src/components/plate/components/resizable.js.map +1 -0
- package/dist/src/components/plate/components/separator.d.ts +4 -0
- package/dist/src/components/plate/components/separator.js +20 -0
- package/dist/src/components/plate/components/separator.js.map +1 -0
- package/dist/src/components/plate/components/slash-input-element.d.ts +22 -0
- package/dist/src/components/plate/components/slash-input-element.js +64 -0
- package/dist/src/components/plate/components/slash-input-element.js.map +1 -0
- package/dist/src/components/plate/components/table-cell-element.d.ts +47 -0
- package/dist/src/components/plate/components/table-cell-element.js +35 -0
- package/dist/src/components/plate/components/table-cell-element.js.map +1 -0
- package/dist/src/components/plate/components/table-element.d.ts +24 -0
- package/dist/src/components/plate/components/table-element.js +46 -0
- package/dist/src/components/plate/components/table-element.js.map +1 -0
- package/dist/src/components/plate/components/table-row-element.d.ts +23 -0
- package/dist/src/components/plate/components/table-row-element.js +7 -0
- package/dist/src/components/plate/components/table-row-element.js.map +1 -0
- package/dist/src/components/plate/components/todo-list-element.d.ts +21 -0
- package/dist/src/components/plate/components/todo-list-element.js +12 -0
- package/dist/src/components/plate/components/todo-list-element.js.map +1 -0
- package/dist/src/components/plate/components/toolbar.d.ts +29 -0
- package/dist/src/components/plate/components/toolbar.js +51 -0
- package/dist/src/components/plate/components/toolbar.js.map +1 -0
- package/dist/src/components/plate/components/tooltip.d.ts +12 -0
- package/dist/src/components/plate/components/tooltip.js +26 -0
- package/dist/src/components/plate/components/tooltip.js.map +1 -0
- package/dist/src/components/plate/components/turn-into-dropdown-menu.d.ts +2 -0
- package/dist/src/components/plate/components/turn-into-dropdown-menu.js +93 -0
- package/dist/src/components/plate/components/turn-into-dropdown-menu.js.map +1 -0
- package/dist/src/components/plate/icons.d.ts +85 -0
- package/dist/src/components/plate/icons.js +101 -0
- package/dist/src/components/plate/icons.js.map +1 -0
- package/dist/src/components/plate/lib/autoformat-rules.d.ts +10 -0
- package/dist/src/components/plate/lib/autoformat-rules.js +271 -0
- package/dist/src/components/plate/lib/autoformat-rules.js.map +1 -0
- package/dist/src/components/plate/usePlateEditor.d.ts +4 -0
- package/dist/src/components/plate/usePlateEditor.js +384 -0
- package/dist/src/components/plate/usePlateEditor.js.map +1 -0
- package/dist/src/components/states/error/index.d.ts +5 -0
- package/dist/src/components/states/error/index.js +15 -0
- package/dist/src/components/states/error/index.js.map +1 -0
- package/dist/src/context/FormData.d.ts +33 -0
- package/dist/src/context/FormData.js +109 -0
- package/dist/src/context/FormData.js.map +1 -0
- package/dist/src/hooks/useDependent/enhanced/useInputDependent/useInputDependent.d.ts +12 -0
- package/dist/src/hooks/useDependent/enhanced/useInputDependent/useInputDependent.js +36 -0
- package/dist/src/hooks/useDependent/enhanced/useInputDependent/useInputDependent.js.map +1 -0
- package/dist/src/hooks/useDependent/enhanced/useOptionsGenerator/useOptionsGenerator.d.ts +15 -0
- package/dist/src/hooks/useDependent/enhanced/useOptionsGenerator/useOptionsGenerator.js +16 -0
- package/dist/src/hooks/useDependent/enhanced/useOptionsGenerator/useOptionsGenerator.js.map +1 -0
- package/dist/src/hooks/useDependent/useDependent.d.ts +11 -0
- package/dist/src/hooks/useDependent/useDependent.js +86 -0
- package/dist/src/hooks/useDependent/useDependent.js.map +1 -0
- package/dist/src/hooks/useValueGenerator/useValueGenerator.d.ts +18 -0
- package/dist/src/hooks/useValueGenerator/useValueGenerator.js +99 -0
- package/dist/src/hooks/useValueGenerator/useValueGenerator.js.map +1 -0
- package/dist/src/index.d.ts +18 -0
- package/dist/src/index.js +19 -0
- package/dist/src/index.js.map +1 -0
- package/dist/src/styles/Hidden.styles.d.ts +7 -0
- package/dist/src/styles/Hidden.styles.js +16 -0
- package/dist/src/styles/Hidden.styles.js.map +1 -0
- package/dist/src/styles/Skeleton.d.ts +7 -0
- package/dist/src/styles/Skeleton.js +40 -0
- package/dist/src/styles/Skeleton.js.map +1 -0
- package/dist/src/styles/Textfield.styles.d.ts +5 -0
- package/dist/src/styles/Textfield.styles.js +34 -0
- package/dist/src/styles/Textfield.styles.js.map +1 -0
- package/dist/src/testutils.d.ts +14 -0
- package/dist/src/testutils.js +22 -0
- package/dist/src/testutils.js.map +1 -0
- package/dist/src/types/controlProps.d.ts +70 -0
- package/dist/src/types/controlProps.js +2 -0
- package/dist/src/types/controlProps.js.map +1 -0
- package/dist/src/types/index.d.ts +166 -0
- package/dist/src/types/index.js +2 -0
- package/dist/src/types/index.js.map +1 -0
- package/dist/src/ui/menu/hooks/useMenu.d.ts +13 -0
- package/dist/src/ui/menu/hooks/useMenu.js +41 -0
- package/dist/src/ui/menu/hooks/useMenu.js.map +1 -0
- package/dist/src/ui/menu/index.d.ts +13 -0
- package/dist/src/ui/menu/index.js +13 -0
- package/dist/src/ui/menu/index.js.map +1 -0
- package/dist/src/ui/menu/test/createControl.d.ts +15 -0
- package/dist/src/ui/menu/test/createControl.js +30 -0
- package/dist/src/ui/menu/test/createControl.js.map +1 -0
- package/dist/src/ui/menu/utils/detemineSubmenuTabs/index.d.ts +14 -0
- package/dist/src/ui/menu/utils/detemineSubmenuTabs/index.js +82 -0
- package/dist/src/ui/menu/utils/detemineSubmenuTabs/index.js.map +1 -0
- package/dist/src/ui-helper/HeaderCollapseButton/index.d.ts +7 -0
- package/dist/src/ui-helper/HeaderCollapseButton/index.js +9 -0
- package/dist/src/ui-helper/HeaderCollapseButton/index.js.map +1 -0
- package/dist/src/ui-helper/notifications/Error.d.ts +6 -0
- package/dist/src/ui-helper/notifications/Error.js +77 -0
- package/dist/src/ui-helper/notifications/Error.js.map +1 -0
- package/dist/src/ui-helper/notifications/images/background.d.ts +2 -0
- package/dist/src/ui-helper/notifications/images/background.js +7 -0
- package/dist/src/ui-helper/notifications/images/background.js.map +1 -0
- package/dist/src/ui-helper/notifications/images/spinner.d.ts +2 -0
- package/dist/src/ui-helper/notifications/images/spinner.js +6 -0
- package/dist/src/ui-helper/notifications/images/spinner.js.map +1 -0
- package/dist/src/ui-helper/notifications/images/under-improvement.d.ts +2 -0
- package/dist/src/ui-helper/notifications/images/under-improvement.js +6 -0
- package/dist/src/ui-helper/notifications/images/under-improvement.js.map +1 -0
- package/dist/src/utils/findFormControlError/index.d.ts +4 -0
- package/dist/src/utils/findFormControlError/index.js +24 -0
- package/dist/src/utils/findFormControlError/index.js.map +1 -0
- package/dist/src/utils/hasGroupRequiredFieldsWithValues/index.d.ts +6 -0
- package/dist/src/utils/hasGroupRequiredFieldsWithValues/index.js +22 -0
- package/dist/src/utils/hasGroupRequiredFieldsWithValues/index.js.map +1 -0
- package/dist/styles/formControl.module.scss +59 -0
- package/dist/tailwind.config.d.ts +1 -0
- package/dist/tailwind.config.js +17 -0
- package/dist/tailwind.config.js.map +1 -0
- package/dist/webpack.common.d.ts +63 -0
- package/dist/webpack.common.js +76 -0
- package/dist/webpack.common.js.map +1 -0
- package/dist/webpack.dev.d.ts +65 -0
- package/dist/webpack.dev.js +11 -0
- package/dist/webpack.dev.js.map +1 -0
- package/dist/webpack.prod.d.ts +65 -0
- package/dist/webpack.prod.js +10 -0
- package/dist/webpack.prod.js.map +1 -0
- package/package.json +39 -2
- package/dist/formbuilder.js +0 -521
- package/dist/formbuilder.js.LICENSE.txt +0 -60
- package/dist/formbuilder.js.map +0 -1
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
.hasSubmenu {
|
|
2
|
+
padding: 0 !important;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
.form-builder-container {
|
|
6
|
+
font-family: 'Roboto', sans-serif;
|
|
7
|
+
background-color: white;
|
|
8
|
+
z-index: 9;
|
|
9
|
+
padding: 0 20px;
|
|
10
|
+
|
|
11
|
+
@media screen and (max-width: 767px) {
|
|
12
|
+
padding: 0 40px;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
*:not(i) {
|
|
16
|
+
font-family: inherit;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.required-message {
|
|
20
|
+
display: block;
|
|
21
|
+
font-size: 12px;
|
|
22
|
+
padding-top: 15px;
|
|
23
|
+
padding-bottom: 10px;
|
|
24
|
+
color: rgba(0,0,0,.54);
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.xhtml-form-button {
|
|
28
|
+
min-width: 40px;
|
|
29
|
+
width: fit-content;
|
|
30
|
+
color: #4a95d0;
|
|
31
|
+
background-color: #fff;
|
|
32
|
+
|
|
33
|
+
padding: 3px 8px 3px 5px;
|
|
34
|
+
box-sizing: border-box;
|
|
35
|
+
transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, border 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
|
|
36
|
+
font-size: 14px;
|
|
37
|
+
font-weight: 400;
|
|
38
|
+
border-radius: 4px;
|
|
39
|
+
border: 1px solid #4a95d0;
|
|
40
|
+
|
|
41
|
+
cursor: pointer;
|
|
42
|
+
margin: 0;
|
|
43
|
+
margin-bottom: 2px;
|
|
44
|
+
display: inline-flex;
|
|
45
|
+
outline: 0;
|
|
46
|
+
position: relative;
|
|
47
|
+
align-items: center;
|
|
48
|
+
user-select: none;
|
|
49
|
+
vertical-align: middle;
|
|
50
|
+
-moz-appearance: none;
|
|
51
|
+
justify-content: center;
|
|
52
|
+
text-decoration: none;
|
|
53
|
+
-webkit-appearance: none;
|
|
54
|
+
-webkit-tap-highlight-color: transparent;
|
|
55
|
+
|
|
56
|
+
svg {
|
|
57
|
+
fill: #4a95d0;
|
|
58
|
+
transition: fill 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
&:hover {
|
|
62
|
+
color: #fff;
|
|
63
|
+
background-color: #4a95d0;
|
|
64
|
+
svg {
|
|
65
|
+
fill: #fff;
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
&.remove-item {
|
|
70
|
+
width: 40px;
|
|
71
|
+
height: 40px;
|
|
72
|
+
padding: 0;
|
|
73
|
+
background: transparent;
|
|
74
|
+
box-shadow: none;
|
|
75
|
+
margin-top: -5px !important;
|
|
76
|
+
svg {
|
|
77
|
+
font-size: 16px;
|
|
78
|
+
padding: 0 2px;
|
|
79
|
+
fill: rgba(0,0,0,.54);
|
|
80
|
+
transition: fill 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
|
|
81
|
+
}
|
|
82
|
+
&:hover {
|
|
83
|
+
background: #F0F0F0;
|
|
84
|
+
svg {
|
|
85
|
+
fill: #EB5757;
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
@media screen and (min-width: 768px) {
|
|
89
|
+
margin-top: 10px !important;
|
|
90
|
+
margin-left: -30px;
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
}
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
.form-footer-container {
|
|
2
|
+
display: flex;
|
|
3
|
+
flex-direction: column;
|
|
4
|
+
align-items: center;
|
|
5
|
+
justify-content: space-between;
|
|
6
|
+
font-family: 'Roboto', sans-serif;
|
|
7
|
+
|
|
8
|
+
width: 100%;
|
|
9
|
+
border-radius: 0 0 4px 4px;
|
|
10
|
+
|
|
11
|
+
background: #FFFFFF;
|
|
12
|
+
z-index: 1;
|
|
13
|
+
|
|
14
|
+
.notificationContainer {
|
|
15
|
+
width: 100%;
|
|
16
|
+
display: flex;
|
|
17
|
+
align-items: center;
|
|
18
|
+
padding: 20px 20px 0 20px;
|
|
19
|
+
max-height: 300px;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.controlsContainer {
|
|
23
|
+
width: 100%;
|
|
24
|
+
display: flex;
|
|
25
|
+
align-items: center;
|
|
26
|
+
justify-content: space-between;
|
|
27
|
+
padding: 16px;
|
|
28
|
+
|
|
29
|
+
.submit-container {
|
|
30
|
+
display: flex;
|
|
31
|
+
align-items: center;
|
|
32
|
+
gap: 24px;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.required-message {
|
|
36
|
+
display: block;
|
|
37
|
+
font-size: 12px;
|
|
38
|
+
color: rgba(0,0,0,.54);
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
button:last-child {
|
|
43
|
+
margin-left: auto;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.run-button__spinner {
|
|
47
|
+
-moz-animation: spin 2s infinite linear;
|
|
48
|
+
-o-animation: spin 2s infinite linear;
|
|
49
|
+
-webkit-animation: spin 2s infinite linear;
|
|
50
|
+
animation: spin 2s infinite linear;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
@keyframes spin {
|
|
54
|
+
0% {
|
|
55
|
+
transform: rotate(0);
|
|
56
|
+
}
|
|
57
|
+
100% {
|
|
58
|
+
transform: rotate(360deg);
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
@media (max-width: 991px) {
|
|
63
|
+
border-radius: 0;
|
|
64
|
+
}
|
|
65
|
+
}
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
.form-group {
|
|
2
|
+
display: flex;
|
|
3
|
+
gap: 10px;
|
|
4
|
+
margin-bottom: -10px;
|
|
5
|
+
padding: 10px 0;
|
|
6
|
+
font-size: 14px;
|
|
7
|
+
font-weight: 400;
|
|
8
|
+
box-sizing: border-box;
|
|
9
|
+
|
|
10
|
+
@media screen and (max-width: 767px) {
|
|
11
|
+
flex-direction: column;
|
|
12
|
+
gap: 5px;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
&.expert {
|
|
16
|
+
background-color: #f0f0f0;
|
|
17
|
+
padding-right: 10px;
|
|
18
|
+
margin: 10px 0;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
&.error {
|
|
22
|
+
color: #a94442;
|
|
23
|
+
|
|
24
|
+
.error-message {
|
|
25
|
+
color: #a94442;
|
|
26
|
+
display: block !important;
|
|
27
|
+
font-weight: inherit;
|
|
28
|
+
font-size: 14px;
|
|
29
|
+
padding-top: 5px;
|
|
30
|
+
padding-left: 2px;
|
|
31
|
+
line-height: 1.42857;
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.error-message {
|
|
36
|
+
display: none;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.control-label {
|
|
40
|
+
font-weight: 400;
|
|
41
|
+
width: 200px;
|
|
42
|
+
text-align: right;
|
|
43
|
+
flex-shrink: 0;
|
|
44
|
+
margin: 0 !important; // bootstrap overwrites label selector
|
|
45
|
+
padding-top: 9px;
|
|
46
|
+
color: rgba(0, 0, 0, 0.87);
|
|
47
|
+
font-size: 14px;
|
|
48
|
+
|
|
49
|
+
@media screen and (max-width: 767px) {
|
|
50
|
+
text-align: left;
|
|
51
|
+
width: 100%;
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
.control-wrapper {
|
|
56
|
+
display: flex;
|
|
57
|
+
flex-direction: column;
|
|
58
|
+
// width: 0;
|
|
59
|
+
flex: 1;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
.control-wrapper-firstlayer {
|
|
63
|
+
width: calc(100% - 210px);
|
|
64
|
+
|
|
65
|
+
@media screen and (max-width: 767px) {
|
|
66
|
+
width: 100%;
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
}
|
|
@@ -0,0 +1,173 @@
|
|
|
1
|
+
.list-container {
|
|
2
|
+
margin: 5px 0 -10px;
|
|
3
|
+
padding: 10px 0;
|
|
4
|
+
|
|
5
|
+
.list-header {
|
|
6
|
+
display: flex;
|
|
7
|
+
align-items: center;
|
|
8
|
+
justify-content: space-between;
|
|
9
|
+
|
|
10
|
+
.list-header-label-button {
|
|
11
|
+
display: flex;
|
|
12
|
+
align-items: center;
|
|
13
|
+
gap: 10px;
|
|
14
|
+
|
|
15
|
+
@media screen and (max-width: 767px) {
|
|
16
|
+
flex-direction: column;
|
|
17
|
+
align-items: flex-start;
|
|
18
|
+
gap: 5px;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.list-header-label {
|
|
22
|
+
display: flex;
|
|
23
|
+
align-items: center;
|
|
24
|
+
gap: 4px;
|
|
25
|
+
width: 200px;
|
|
26
|
+
|
|
27
|
+
i {
|
|
28
|
+
color: #000000b2;
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.list-label {
|
|
33
|
+
font-size: 14px;
|
|
34
|
+
font-weight: 400;
|
|
35
|
+
text-align: right;
|
|
36
|
+
font-size: 14px;
|
|
37
|
+
width: 100%;
|
|
38
|
+
|
|
39
|
+
@media screen and (max-width: 767px) {
|
|
40
|
+
text-align: left;
|
|
41
|
+
width: 100%;
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.address {
|
|
48
|
+
margin-left: 0 !important;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
.list-children-container {
|
|
52
|
+
position: relative;
|
|
53
|
+
margin-left: 195px;
|
|
54
|
+
@media screen and (max-width: 767px) {
|
|
55
|
+
margin-left: 0;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.form-list {
|
|
59
|
+
position: relative;
|
|
60
|
+
margin-top: 5px;
|
|
61
|
+
padding: 5px 0 5px 15px;
|
|
62
|
+
@media screen and (max-width: 767px) {
|
|
63
|
+
padding: 5px 0 5px 35px;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
> div:first-of-type {
|
|
67
|
+
margin-top: -10px;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
//* border-left
|
|
71
|
+
&::before {
|
|
72
|
+
content: "";
|
|
73
|
+
position: absolute;
|
|
74
|
+
top: 10px;
|
|
75
|
+
left: -3px;
|
|
76
|
+
height: calc(100% - 20px);
|
|
77
|
+
width: 2px;
|
|
78
|
+
background-color: rgb(192, 192, 192);
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
.remove-item {
|
|
83
|
+
border: none;
|
|
84
|
+
position: absolute;
|
|
85
|
+
top: 0px;
|
|
86
|
+
left: -30px;
|
|
87
|
+
|
|
88
|
+
@media screen and (max-width: 767px) {
|
|
89
|
+
top: 15px;
|
|
90
|
+
left: -45px;
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
.sort-buttons {
|
|
95
|
+
display: flex;
|
|
96
|
+
flex-direction: column;
|
|
97
|
+
align-items: center;
|
|
98
|
+
position: absolute;
|
|
99
|
+
left: -25px;
|
|
100
|
+
top: 50%;
|
|
101
|
+
transform: translateY(-50%);
|
|
102
|
+
|
|
103
|
+
button {
|
|
104
|
+
color: inherit;
|
|
105
|
+
display: flex;
|
|
106
|
+
align-items: center;
|
|
107
|
+
justify-content: center;
|
|
108
|
+
background-color: transparent;
|
|
109
|
+
border: none;
|
|
110
|
+
font-size: 10px;
|
|
111
|
+
padding: 0;
|
|
112
|
+
cursor: pointer;
|
|
113
|
+
height: 20px;
|
|
114
|
+
width: 25px;
|
|
115
|
+
|
|
116
|
+
&:disabled {
|
|
117
|
+
cursor: auto;
|
|
118
|
+
opacity: 0.5;
|
|
119
|
+
}
|
|
120
|
+
}
|
|
121
|
+
}
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
.form-list-single-item {
|
|
125
|
+
padding-right: 50px;
|
|
126
|
+
|
|
127
|
+
.control-label-group:first-child {
|
|
128
|
+
display: none;
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
.form-list {
|
|
132
|
+
margin-top: 0;
|
|
133
|
+
padding: 0;
|
|
134
|
+
position: relative;
|
|
135
|
+
padding-left: 15px;
|
|
136
|
+
@media screen and (max-width: 767px) {
|
|
137
|
+
padding-left: 35px;
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
> div:first-of-type {
|
|
141
|
+
margin-top: 0;
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
//* border-left
|
|
145
|
+
&::before {
|
|
146
|
+
content: "";
|
|
147
|
+
position: absolute;
|
|
148
|
+
top: 10px;
|
|
149
|
+
left: -3px;
|
|
150
|
+
height: calc(100% - 20px);
|
|
151
|
+
width: 2px;
|
|
152
|
+
background-color: rgb(192, 192, 192);
|
|
153
|
+
}
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
.form-list > .form-group > .control-label {
|
|
157
|
+
display: none;
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
.form-list > .form-group > .control-wrapper {
|
|
161
|
+
width: 100%;
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
.remove-item {
|
|
165
|
+
position: absolute;
|
|
166
|
+
left: auto !important;
|
|
167
|
+
right: -50px;
|
|
168
|
+
@media screen and (max-width: 767px) {
|
|
169
|
+
right: -55px;
|
|
170
|
+
}
|
|
171
|
+
}
|
|
172
|
+
}
|
|
173
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
.form-group-container {
|
|
2
|
+
margin: 30px 0 20px;
|
|
3
|
+
padding: 10px 0;
|
|
4
|
+
|
|
5
|
+
.group-header {
|
|
6
|
+
display: flex;
|
|
7
|
+
align-items: center;
|
|
8
|
+
justify-content: space-between;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.control-label-group {
|
|
12
|
+
font-size: 14px;
|
|
13
|
+
font-weight: 400;
|
|
14
|
+
font-size: 18px;
|
|
15
|
+
color: #0000008A;
|
|
16
|
+
margin-top: 0;
|
|
17
|
+
margin-bottom: 0;
|
|
18
|
+
margin-left: 210px;
|
|
19
|
+
|
|
20
|
+
@media screen and (max-width: 767px) {
|
|
21
|
+
margin-left: 0;
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
& > .form-group-container:first-of-type {
|
|
26
|
+
margin-top: 10px;
|
|
27
|
+
}
|
|
28
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
.form-control {
|
|
2
|
+
width: 100%;
|
|
3
|
+
|
|
4
|
+
&:has(input[readonly]) {
|
|
5
|
+
background-color: #e0e0e033;
|
|
6
|
+
cursor: not-allowed;
|
|
7
|
+
}
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.error fieldset {
|
|
11
|
+
border-color: #a94442;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.boxContainer {
|
|
15
|
+
display: flex;
|
|
16
|
+
align-items: center;
|
|
17
|
+
justify-content: space-between;
|
|
18
|
+
width: 100%;
|
|
19
|
+
height: 100%;
|
|
20
|
+
|
|
21
|
+
p {
|
|
22
|
+
margin: 0;
|
|
23
|
+
padding: 0;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
i {
|
|
27
|
+
color: #000000B2;
|
|
28
|
+
}
|
|
29
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
.mrn-input-container {
|
|
2
|
+
width: 100%;
|
|
3
|
+
input {
|
|
4
|
+
max-width: calc(100% - 35px);
|
|
5
|
+
white-space: nowrap;
|
|
6
|
+
overflow: hidden;
|
|
7
|
+
text-overflow: ellipsis;
|
|
8
|
+
color: rgba(0,0,0,0.54) !important;
|
|
9
|
+
font-weight: 400 !important;
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.error fieldset {
|
|
14
|
+
border-color: #a94442;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.hidden {
|
|
18
|
+
display: none !important;
|
|
19
|
+
visibility: hidden !important;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.with-select {
|
|
23
|
+
display: flex;
|
|
24
|
+
align-items: center;
|
|
25
|
+
gap: 10px;
|
|
26
|
+
|
|
27
|
+
@media only screen and (max-width: 991px) {
|
|
28
|
+
flex-direction: column;
|
|
29
|
+
align-items: flex-start;
|
|
30
|
+
}
|
|
31
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
.password-container {
|
|
2
|
+
position: relative;
|
|
3
|
+
display: flex;
|
|
4
|
+
align-items: center;
|
|
5
|
+
width: 100%;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
.password-input {
|
|
9
|
+
padding-right: 50px;
|
|
10
|
+
width: 100%;
|
|
11
|
+
height: 40px;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.toggle-icon {
|
|
15
|
+
background-color: transparent;
|
|
16
|
+
border: none;
|
|
17
|
+
position: absolute;
|
|
18
|
+
right: 10px;
|
|
19
|
+
display: flex;
|
|
20
|
+
align-items: center;
|
|
21
|
+
justify-content: center;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.error {
|
|
25
|
+
border-color: #a94442;
|
|
26
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
.select-container {
|
|
2
|
+
width: 100%;
|
|
3
|
+
height: 100%;
|
|
4
|
+
background-color: white;
|
|
5
|
+
|
|
6
|
+
input {
|
|
7
|
+
color: rgba(0, 0, 0, 0.54) !important;
|
|
8
|
+
font-weight: 400 !important;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
&:has(input[readonly]) {
|
|
12
|
+
background-color: #e0e0e033;
|
|
13
|
+
cursor: not-allowed;
|
|
14
|
+
}
|
|
15
|
+
}
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
.address-group-container {
|
|
2
|
+
display: flex;
|
|
3
|
+
gap: 10px;
|
|
4
|
+
margin-top: 0;
|
|
5
|
+
margin-bottom: -10px;
|
|
6
|
+
@media screen and (max-width: 767px) {
|
|
7
|
+
flex-direction: column;
|
|
8
|
+
gap: 5px;
|
|
9
|
+
}
|
|
10
|
+
.control-label-group {
|
|
11
|
+
font-size: 14px;
|
|
12
|
+
font-weight: 400;
|
|
13
|
+
width: 200px;
|
|
14
|
+
text-align: right;
|
|
15
|
+
flex-shrink: 0;
|
|
16
|
+
margin: 0 !important;
|
|
17
|
+
padding-right: 3px;
|
|
18
|
+
padding-top: 10px;
|
|
19
|
+
color: #333;
|
|
20
|
+
|
|
21
|
+
@media screen and (max-width: 767px) {
|
|
22
|
+
padding-top: 9px;
|
|
23
|
+
text-align: left;
|
|
24
|
+
width: 100%;
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.address {
|
|
30
|
+
display: grid;
|
|
31
|
+
grid-template-columns: 1fr 1fr 1fr;
|
|
32
|
+
width: 100%;
|
|
33
|
+
row-gap: 10px;
|
|
34
|
+
column-gap: 10px;
|
|
35
|
+
& > div > div {
|
|
36
|
+
margin: 0 !important;
|
|
37
|
+
padding: 0 !important;
|
|
38
|
+
}
|
|
39
|
+
& > div {
|
|
40
|
+
margin: 0 !important;
|
|
41
|
+
&:nth-of-type(1) {
|
|
42
|
+
grid-area: streetName;
|
|
43
|
+
}
|
|
44
|
+
&:nth-of-type(2) {
|
|
45
|
+
grid-area: houseNumber;
|
|
46
|
+
}
|
|
47
|
+
&:nth-of-type(3) {
|
|
48
|
+
grid-area: postalCode;
|
|
49
|
+
}
|
|
50
|
+
&:nth-of-type(4) {
|
|
51
|
+
grid-area: locality;
|
|
52
|
+
}
|
|
53
|
+
&:nth-of-type(5) {
|
|
54
|
+
grid-area: country;
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
.address-default {
|
|
60
|
+
grid-template-areas:
|
|
61
|
+
"streetName streetName houseNumber"
|
|
62
|
+
"postalCode locality locality"
|
|
63
|
+
"country country country";
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.gb {
|
|
67
|
+
grid-template-areas:
|
|
68
|
+
"houseNumber streetName streetName"
|
|
69
|
+
"locality locality locality"
|
|
70
|
+
"postalCode postalCode postalCode"
|
|
71
|
+
"country country country";
|
|
72
|
+
}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
const Error = () => {
|
|
3
|
+
return (_jsx("svg", { width: "18", height: "18", viewBox: "0 0 18 18", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: _jsx("path", { d: "M8.1 11.7H9.9V13.5H8.1V11.7ZM8.1 4.5H9.9V9.9H8.1V4.5ZM8.991 0C4.023 0 0 4.032 0 9C0 13.968 4.023 18 8.991 18C13.968 18 18 13.968 18 9C18 4.032 13.968 0 8.991 0ZM9 16.2C5.022 16.2 1.8 12.978 1.8 9C1.8 5.022 5.022 1.8 9 1.8C12.978 1.8 16.2 5.022 16.2 9C16.2 12.978 12.978 16.2 9 16.2Z", fill: "#B01F14" }) }));
|
|
4
|
+
};
|
|
5
|
+
export default Error;
|
|
6
|
+
//# sourceMappingURL=Error.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Error.js","sourceRoot":"","sources":["../../../../../src/assets/icons/error/Error.tsx"],"names":[],"mappings":";AAEA,MAAM,KAAK,GAAG,GAAG,EAAE;IACjB,OAAO,CACL,cACE,KAAK,EAAC,IAAI,EACV,MAAM,EAAC,IAAI,EACX,OAAO,EAAC,WAAW,EACnB,IAAI,EAAC,MAAM,EACX,KAAK,EAAC,4BAA4B,YAElC,eACE,CAAC,EAAC,4RAA4R,EAC9R,IAAI,EAAC,SAAS,GACd,GACE,CACP,CAAC;AACJ,CAAC,CAAC;AAEF,eAAe,KAAK,CAAC"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { DetailedHTMLProps, InputHTMLAttributes } from "react";
|
|
2
|
+
import { CheckboxFormControl, OnChangeValueType } from "../../types";
|
|
3
|
+
export interface IProps extends DetailedHTMLProps<InputHTMLAttributes<HTMLInputElement>, HTMLInputElement> {
|
|
4
|
+
control: CheckboxFormControl;
|
|
5
|
+
id: string;
|
|
6
|
+
objectPathId?: string;
|
|
7
|
+
onChangeValue: (newProperties: OnChangeValueType) => void;
|
|
8
|
+
}
|
|
9
|
+
declare const EnhancedCheckbox: ({ onChangeValue, ...props }: IProps) => import("react/jsx-runtime").JSX.Element;
|
|
10
|
+
export default EnhancedCheckbox;
|