@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,9 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import { FaChevronDown } from "@react-icons/all-files/fa/FaChevronDown";
|
|
3
|
+
import { FaChevronUp } from "@react-icons/all-files/fa/FaChevronUp";
|
|
4
|
+
import * as styles from "./HeaderCollapseButton.module.scss";
|
|
5
|
+
const HeaderCollapseButton = ({ isOpen, itemsCount, onClick }) => {
|
|
6
|
+
return (_jsxs("div", { className: styles["header-collapse-button"], children: [typeof itemsCount === "number" && (_jsx("p", { "data-testid": "control-items-count", children: itemsCount })), _jsxs("button", { type: "button", onClick: () => onClick(), children: [isOpen && _jsx(FaChevronUp, { "data-testid": "collapse-up-button", size: 10 }), !isOpen && (_jsx(FaChevronDown, { "data-testid": "collapse-down-button", size: 10 }))] })] }));
|
|
7
|
+
};
|
|
8
|
+
export default HeaderCollapseButton;
|
|
9
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/ui-helper/HeaderCollapseButton/index.tsx"],"names":[],"mappings":";AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,yCAAyC,CAAC;AACxE,OAAO,EAAE,WAAW,EAAE,MAAM,uCAAuC,CAAC;AAEpE,OAAO,KAAK,MAAM,MAAM,oCAAoC,CAAC;AAQ7D,MAAM,oBAAoB,GAAG,CAAC,EAAE,MAAM,EAAE,UAAU,EAAE,OAAO,EAAU,EAAE,EAAE;IACvE,OAAO,CACL,eAAK,SAAS,EAAE,MAAM,CAAC,wBAAwB,CAAC,aAC7C,OAAO,UAAU,KAAK,QAAQ,IAAI,CACjC,2BAAe,qBAAqB,YAAE,UAAU,GAAK,CACtD,EACD,kBAAQ,IAAI,EAAC,QAAQ,EAAC,OAAO,EAAE,GAAG,EAAE,CAAC,OAAO,EAAE,aAC3C,MAAM,IAAI,KAAC,WAAW,mBAAa,oBAAoB,EAAC,IAAI,EAAE,EAAE,GAAI,EACpE,CAAC,MAAM,IAAI,CACV,KAAC,aAAa,mBAAa,sBAAsB,EAAC,IAAI,EAAE,EAAE,GAAI,CAC/D,IACM,IACL,CACP,CAAC;AACJ,CAAC,CAAC;AAEF,eAAe,oBAAoB,CAAC"}
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import { FaRedo } from "@react-icons/all-files/fa/FaRedo";
|
|
3
|
+
import styled from "styled-components";
|
|
4
|
+
import BackgroundLogo from "./images/background";
|
|
5
|
+
import UnderImprovementImage from "./images/under-improvement";
|
|
6
|
+
const Container = styled.div `
|
|
7
|
+
display: flex;
|
|
8
|
+
justify-content: space-between;
|
|
9
|
+
align-self: center;
|
|
10
|
+
justify-self: center;
|
|
11
|
+
min-height: 300px;
|
|
12
|
+
width: 100%;
|
|
13
|
+
`;
|
|
14
|
+
const Content = styled.div `
|
|
15
|
+
display: flex;
|
|
16
|
+
align-items: center;
|
|
17
|
+
justify-content: center;
|
|
18
|
+
gap: 20px;
|
|
19
|
+
width: 100%;
|
|
20
|
+
`;
|
|
21
|
+
const NonShrinkImageContainer = styled.div `
|
|
22
|
+
flex-shrink: 0;
|
|
23
|
+
`;
|
|
24
|
+
const Info = styled.div `
|
|
25
|
+
display: flex;
|
|
26
|
+
flex-direction: column;
|
|
27
|
+
gap: 16px;
|
|
28
|
+
`;
|
|
29
|
+
const Buttons = styled.div `
|
|
30
|
+
display: flex;
|
|
31
|
+
gap: 16px;
|
|
32
|
+
|
|
33
|
+
p,
|
|
34
|
+
svg {
|
|
35
|
+
margin: 0;
|
|
36
|
+
padding: 0;
|
|
37
|
+
}
|
|
38
|
+
`;
|
|
39
|
+
const StyledBackgroundLogo = styled.div `
|
|
40
|
+
position: absolute;
|
|
41
|
+
bottom: 0;
|
|
42
|
+
right: 0;
|
|
43
|
+
padding: 0;
|
|
44
|
+
margin: 0;
|
|
45
|
+
display: flex;
|
|
46
|
+
justify-content: flex-end;
|
|
47
|
+
z-index: -1;
|
|
48
|
+
`;
|
|
49
|
+
const BackButton = styled.button `
|
|
50
|
+
display: flex;
|
|
51
|
+
padding: 8px 12px;
|
|
52
|
+
justify-content: center;
|
|
53
|
+
align-items: center;
|
|
54
|
+
gap: 8px;
|
|
55
|
+
border-radius: 4px;
|
|
56
|
+
background: #e0e0e0;
|
|
57
|
+
border: none;
|
|
58
|
+
color: rgba(0, 0, 0, 0.96);
|
|
59
|
+
cursor: pointer;
|
|
60
|
+
`;
|
|
61
|
+
const RetryButton = styled.button `
|
|
62
|
+
display: flex;
|
|
63
|
+
padding: 8px 12px;
|
|
64
|
+
justify-content: center;
|
|
65
|
+
align-items: center;
|
|
66
|
+
gap: 8px;
|
|
67
|
+
border-radius: 4px;
|
|
68
|
+
background: #4a96d2;
|
|
69
|
+
border: none;
|
|
70
|
+
color: white;
|
|
71
|
+
cursor: pointer;
|
|
72
|
+
`;
|
|
73
|
+
const ErrorNotification = ({ onBack, onRetry }) => {
|
|
74
|
+
return (_jsxs(Container, { children: [_jsxs(Content, { children: [_jsx(NonShrinkImageContainer, { children: _jsx(UnderImprovementImage, {}) }), _jsxs(Info, { children: [_jsxs("p", { children: ["Sorry, but the request has encountered", _jsx("br", {}), " an issue. We're working on fixing it.", _jsx("br", {}), " Please try again later."] }), _jsxs(Buttons, { children: [_jsxs(BackButton, { onClick: onBack, children: [_jsx("p", { children: "Back" }), _jsx(FaRedo, { size: 16, style: { transform: "scaleX(-1)" } })] }), _jsxs(RetryButton, { onClick: onRetry, children: [_jsx("p", { children: "Retry" }), _jsx(FaRedo, { size: 16 })] })] })] })] }), _jsx(StyledBackgroundLogo, { children: _jsx(BackgroundLogo, {}) })] }));
|
|
75
|
+
};
|
|
76
|
+
export default ErrorNotification;
|
|
77
|
+
//# sourceMappingURL=Error.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Error.js","sourceRoot":"","sources":["../../../../src/ui-helper/notifications/Error.tsx"],"names":[],"mappings":";AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,kCAAkC,CAAC;AAE1D,OAAO,MAAM,MAAM,mBAAmB,CAAC;AACvC,OAAO,cAAc,MAAM,qBAAqB,CAAC;AACjD,OAAO,qBAAqB,MAAM,4BAA4B,CAAC;AAE/D,MAAM,SAAS,GAAG,MAAM,CAAC,GAAG,CAAA;;;;;;;CAO3B,CAAC;AAEF,MAAM,OAAO,GAAG,MAAM,CAAC,GAAG,CAAA;;;;;;CAMzB,CAAC;AAEF,MAAM,uBAAuB,GAAG,MAAM,CAAC,GAAG,CAAA;;CAEzC,CAAC;AAEF,MAAM,IAAI,GAAG,MAAM,CAAC,GAAG,CAAA;;;;CAItB,CAAC;AAEF,MAAM,OAAO,GAAG,MAAM,CAAC,GAAG,CAAA;;;;;;;;;CASzB,CAAC;AAEF,MAAM,oBAAoB,GAAG,MAAM,CAAC,GAAG,CAAA;;;;;;;;;CAStC,CAAC;AAEF,MAAM,UAAU,GAAG,MAAM,CAAC,MAAM,CAAA;;;;;;;;;;;CAW/B,CAAC;AAEF,MAAM,WAAW,GAAG,MAAM,CAAC,MAAM,CAAA;;;;;;;;;;;CAWhC,CAAC;AAOF,MAAM,iBAAiB,GAAG,CAAC,EAAE,MAAM,EAAE,OAAO,EAA0B,EAAE,EAAE;IACxE,OAAO,CACL,MAAC,SAAS,eACR,MAAC,OAAO,eACN,KAAC,uBAAuB,cACtB,KAAC,qBAAqB,KAAG,GACD,EAC1B,MAAC,IAAI,eACH,kEAEE,cAAM,4CACN,cAAM,gCACJ,EACJ,MAAC,OAAO,eACN,MAAC,UAAU,IAAC,OAAO,EAAE,MAAM,aACzB,+BAAW,EACX,KAAC,MAAM,IAAC,IAAI,EAAE,EAAE,EAAE,KAAK,EAAE,EAAE,SAAS,EAAE,YAAY,EAAE,GAAI,IAC7C,EACb,MAAC,WAAW,IAAC,OAAO,EAAE,OAAO,aAC3B,gCAAY,EACZ,KAAC,MAAM,IAAC,IAAI,EAAE,EAAE,GAAI,IACR,IACN,IACL,IACC,EACV,KAAC,oBAAoB,cACnB,KAAC,cAAc,KAAG,GACG,IACb,CACb,CAAC;AACJ,CAAC,CAAC;AAEF,eAAe,iBAAiB,CAAC"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
// width="769" height="532"
|
|
3
|
+
const BackgroundSVG = () => {
|
|
4
|
+
return (_jsxs("svg", { width: "100%", viewBox: "0 0 769 532", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [_jsx("mask", { id: "mask0_6_2662", style: { maskType: "alpha" }, maskUnits: "userSpaceOnUse", x: "0", y: "0", width: "769", height: "532", children: _jsx("path", { d: "M0 6.00001C0 2.6863 2.68629 0 6 0H763C766.314 0 769 2.68629 769 6V526C769 529.314 766.314 532 763 532H0V6.00001Z", fill: "#D9D9D9" }) }), _jsxs("g", { mask: "url(#mask0_6_2662)", children: [_jsx("path", { opacity: "0.5", d: "M307.972 177.272L307.972 -0.300446L153.983 88.4859L153.983 266.059L307.972 177.272Z", fill: "#4A96D2", fillOpacity: "0.2" }), _jsx("path", { opacity: "0.5", d: "M615.263 178.119L769.221 89.2552L615.286 0.431558L461.328 89.295L615.263 178.119Z", fill: "#4A96D2", fillOpacity: "0.2" }), _jsx("path", { opacity: "0.25", d: "M461.961 88.4859L307.972 -0.300459L307.972 177.272L461.961 266.059L461.961 88.4859Z", fill: "#4A96D2", fillOpacity: "0.2" }), _jsx("path", { opacity: "0.25", d: "M769.162 266.883L769.215 89.2476L615.257 178.111L615.204 355.746L769.162 266.883Z", fill: "#4A96D2", fillOpacity: "0.2" }), _jsx("path", { opacity: "0.25", d: "M153.855 264.725L-0.0504942 353.497L153.908 442.36L307.813 353.588L153.855 264.725Z", fill: "#4A96D2", fillOpacity: "0.2" }), _jsx("path", { opacity: "0.5", d: "M153.915 443.352L-0.0435364 354.489L-0.0206077 532.176L153.937 621.04L153.915 443.352Z", fill: "#4A96D2", fillOpacity: "0.2" }), _jsx("path", { opacity: "0.25", d: "M769.095 621.257L923 532.486L769.042 443.622L615.137 532.394L769.095 621.257Z", fill: "#4A96D2", fillOpacity: "0.2" })] })] }));
|
|
5
|
+
};
|
|
6
|
+
export default BackgroundSVG;
|
|
7
|
+
//# sourceMappingURL=background.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"background.js","sourceRoot":"","sources":["../../../../../src/ui-helper/notifications/images/background.tsx"],"names":[],"mappings":";AACA,2BAA2B;AAC3B,MAAM,aAAa,GAAG,GAAG,EAAE;IACzB,OAAO,CACL,eACE,KAAK,EAAC,MAAM,EACZ,OAAO,EAAC,aAAa,EACrB,IAAI,EAAC,MAAM,EACX,KAAK,EAAC,4BAA4B,aAElC,eACE,EAAE,EAAC,cAAc,EACjB,KAAK,EAAE,EAAE,QAAQ,EAAE,OAAO,EAAE,EAC5B,SAAS,EAAC,gBAAgB,EAC1B,CAAC,EAAC,GAAG,EACL,CAAC,EAAC,GAAG,EACL,KAAK,EAAC,KAAK,EACX,MAAM,EAAC,KAAK,YAEZ,eACE,CAAC,EAAC,kHAAkH,EACpH,IAAI,EAAC,SAAS,GACd,GACG,EACP,aAAG,IAAI,EAAC,oBAAoB,aAC1B,eACE,OAAO,EAAC,KAAK,EACb,CAAC,EAAC,qFAAqF,EACvF,IAAI,EAAC,SAAS,EACd,WAAW,EAAC,KAAK,GACjB,EACF,eACE,OAAO,EAAC,KAAK,EACb,CAAC,EAAC,mFAAmF,EACrF,IAAI,EAAC,SAAS,EACd,WAAW,EAAC,KAAK,GACjB,EACF,eACE,OAAO,EAAC,MAAM,EACd,CAAC,EAAC,qFAAqF,EACvF,IAAI,EAAC,SAAS,EACd,WAAW,EAAC,KAAK,GACjB,EACF,eACE,OAAO,EAAC,MAAM,EACd,CAAC,EAAC,mFAAmF,EACrF,IAAI,EAAC,SAAS,EACd,WAAW,EAAC,KAAK,GACjB,EACF,eACE,OAAO,EAAC,MAAM,EACd,CAAC,EAAC,qFAAqF,EACvF,IAAI,EAAC,SAAS,EACd,WAAW,EAAC,KAAK,GACjB,EACF,eACE,OAAO,EAAC,KAAK,EACb,CAAC,EAAC,wFAAwF,EAC1F,IAAI,EAAC,SAAS,EACd,WAAW,EAAC,KAAK,GACjB,EACF,eACE,OAAO,EAAC,MAAM,EACd,CAAC,EAAC,+EAA+E,EACjF,IAAI,EAAC,SAAS,EACd,WAAW,EAAC,KAAK,GACjB,IACA,IACA,CACP,CAAC;AACJ,CAAC,CAAC;AAEF,eAAe,aAAa,CAAC"}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
const Spinner = () => {
|
|
3
|
+
return (_jsx("svg", { width: "12", height: "12", viewBox: "0 0 12 12", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: _jsxs("g", { id: "Vector", children: [_jsx("path", { d: "M2.00001 1.38288L4.00438 0.223145V2.53387L2.00001 3.68923V1.38288Z", fill: "white" }), _jsx("path", { d: "M4.00438 2.53387V0.223145L6.00437 1.38288V3.68923L4.00438 2.53387Z", fill: "white" }), _jsx("path", { d: "M4.00438 9.47487V7.15977L2.00001 8.31513V10.6259L4.00438 9.47487Z", fill: "white" }), _jsx("path", { d: "M6.00438 10.6258L4.00438 9.47487L2.00001 10.6259L4.00438 11.7768L6.00438 10.6258Z", fill: "white" }), _jsx("path", { d: "M5.99563 10.6257L7.99563 11.7767V9.47468L5.99563 8.31495V10.6257Z", fill: "white" }), _jsx("path", { d: "M7.99563 9.47468V11.7767L10 10.6257V8.31495L7.99563 9.47468Z", fill: "white" }), _jsx("path", { d: "M2 6.00857L2.00001 8.31513L0 7.15955V4.84883L2 6.00857Z", fill: "white" }), _jsx("path", { d: "M4.00438 4.84903L2 6.00857L0 4.84883L2 3.69805L4.00438 4.84903Z", fill: "white" }), _jsx("path", { d: "M10 3.68932L7.99563 4.84906V2.53396L10 1.37422V3.68932Z", fill: "white" }), _jsx("path", { d: "M10 1.37422L7.99563 2.53396L5.99563 1.37413L7.99563 0.223145L10 1.37422Z", fill: "white" }), _jsx("path", { d: "M12 4.849L10 3.68932L10 5.99998L12 7.15534V4.849Z", fill: "white" }), _jsx("path", { d: "M12 7.15534L10 5.99998L7.99563 7.15527L10 8.31495L12 7.15534Z", fill: "white" })] }) }));
|
|
4
|
+
};
|
|
5
|
+
export default Spinner;
|
|
6
|
+
//# sourceMappingURL=spinner.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"spinner.js","sourceRoot":"","sources":["../../../../../src/ui-helper/notifications/images/spinner.tsx"],"names":[],"mappings":";AAEA,MAAM,OAAO,GAAG,GAAG,EAAE;IACnB,OAAO,CACL,cACE,KAAK,EAAC,IAAI,EACV,MAAM,EAAC,IAAI,EACX,OAAO,EAAC,WAAW,EACnB,IAAI,EAAC,MAAM,EACX,KAAK,EAAC,4BAA4B,YAElC,aAAG,EAAE,EAAC,QAAQ,aACZ,eACE,CAAC,EAAC,oEAAoE,EACtE,IAAI,EAAC,OAAO,GACZ,EACF,eACE,CAAC,EAAC,oEAAoE,EACtE,IAAI,EAAC,OAAO,GACZ,EACF,eACE,CAAC,EAAC,mEAAmE,EACrE,IAAI,EAAC,OAAO,GACZ,EACF,eACE,CAAC,EAAC,mFAAmF,EACrF,IAAI,EAAC,OAAO,GACZ,EACF,eACE,CAAC,EAAC,mEAAmE,EACrE,IAAI,EAAC,OAAO,GACZ,EACF,eACE,CAAC,EAAC,8DAA8D,EAChE,IAAI,EAAC,OAAO,GACZ,EACF,eACE,CAAC,EAAC,yDAAyD,EAC3D,IAAI,EAAC,OAAO,GACZ,EACF,eACE,CAAC,EAAC,iEAAiE,EACnE,IAAI,EAAC,OAAO,GACZ,EACF,eACE,CAAC,EAAC,yDAAyD,EAC3D,IAAI,EAAC,OAAO,GACZ,EACF,eACE,CAAC,EAAC,0EAA0E,EAC5E,IAAI,EAAC,OAAO,GACZ,EACF,eACE,CAAC,EAAC,mDAAmD,EACrD,IAAI,EAAC,OAAO,GACZ,EACF,eACE,CAAC,EAAC,+DAA+D,EACjE,IAAI,EAAC,OAAO,GACZ,IACA,GACA,CACP,CAAC;AACJ,CAAC,CAAC;AAEF,eAAe,OAAO,CAAC"}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
const UnderImprovementSVG = () => {
|
|
3
|
+
return (_jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "136", height: "160", viewBox: "0 0 136 160", fill: "none", children: [_jsx("path", { d: "M65.4681 59.6214H64.988C64.988 59.2245 64.6615 58.8981 64.2647 58.8981C63.8678 58.8981 63.5413 59.2245 63.5413 59.6214H63.0612C63.0612 58.9557 63.5989 58.418 64.2647 58.418C64.9304 58.418 65.4681 58.9557 65.4681 59.6214Z", fill: "white" }), _jsx("path", { d: "M104.939 158.048H91.4001L96.6043 140.937H99.7345L104.939 158.048Z", fill: "#4A96D2", fillOpacity: "0.2" }), _jsx("path", { d: "M106.059 158.048H90.2798V160H106.059V158.048Z", fill: "#4A96D2", fillOpacity: "0.2" }), _jsx("path", { d: "M92.6995 153.772L91.4001 158.048H104.939L103.639 153.772H92.6995Z", fill: "#1A3846" }), _jsx("path", { d: "M93.999 149.495H102.333L101.034 145.213H95.3049L93.999 149.495Z", fill: "#1A3846" }), _jsx("path", { d: "M110.482 159.892H113.484V148.254H128.911V159.892H131.913V148.254H135.095V138.959H132.554V138.102H128.175V138.959H114.508V138.102H110.13V138.959H107.345V148.254H110.476V159.892H110.482ZM134.135 139.932V139.971L132.285 147.281H128.982L130.844 139.932H134.141H134.135ZM125.512 147.281H122.209L124.072 139.932H127.375L125.512 147.281ZM118.746 147.281H115.443L117.306 139.932H120.609L118.746 147.281ZM110.533 139.932H113.836L111.973 147.281H108.67L110.533 139.932Z", fill: "#4A96D2", fillOpacity: "0.2" }), _jsx("path", { d: "M25.2299 25.605H24.5898V53.7706H25.2299V25.605Z", fill: "#1A3846" }), _jsx("path", { d: "M27.624 56.5046C27.624 58.1306 26.3053 59.4492 24.6794 59.4492C23.0535 59.4492 21.7348 58.1306 21.7348 56.5046C21.7348 54.8787 23.0535 53.5601 24.6794 53.5601C26.3053 53.5601 27.624 54.8787 27.624 56.5046Z", fill: "#1A3846" }), _jsx("path", { d: "M24.7242 66.381C24.673 66.381 23.7128 66.3746 23.015 65.6704C22.5478 65.2031 22.3109 64.5566 22.3109 63.7436C22.3109 63.526 22.4837 63.3532 22.7014 63.3532C22.919 63.3532 23.0919 63.526 23.0919 63.7436C23.0919 64.339 23.2519 64.8063 23.5656 65.1199C24.0393 65.5872 24.7178 65.6 24.7242 65.6C25.8252 65.6 26.715 64.7038 26.715 63.6092C26.715 62.5146 25.8188 61.6184 24.7242 61.6184C24.5066 61.6184 24.3337 61.4456 24.3337 61.2279V59.0643C24.3337 58.8467 24.5066 58.6738 24.7242 58.6738C24.9418 58.6738 25.1147 58.8467 25.1147 59.0643V60.8631C26.4589 61.0551 27.4959 62.2137 27.4959 63.6092C27.4959 65.1391 26.2541 66.381 24.7242 66.381Z", fill: "#1A3846" }), _jsx("path", { d: "M54.535 23.9409H18.3486V27.9225H54.535V23.9409Z", fill: "#4A96D2", fillOpacity: "0.2" }), _jsx("path", { d: "M85.9776 106.261H73.9624V0.0512695H85.9776V106.261ZM75.1531 105.071H84.787V1.24191H75.1531V105.077V105.071Z", fill: "#1A3846" }), _jsx("path", { d: "M85.8242 11.7079H74.1098V0H85.8242V11.7079ZM75.3197 10.5045H84.6207V1.20344H75.3197V10.5045Z", fill: "#1A3846" }), _jsx("path", { d: "M75.1463 0.174427L74.2954 1.02539L84.8011 11.5311L85.6521 10.6802L75.1463 0.174427Z", fill: "#1A3846" }), _jsx("path", { d: "M84.8011 0.178825L74.2954 10.6846L75.1463 11.5355L85.6521 1.02979L84.8011 0.178825Z", fill: "#1A3846" }), _jsx("path", { d: "M85.8242 22.2187H74.1098V10.5107H85.8242V22.2187ZM75.3197 21.0152H84.6207V11.7142H75.3197V21.0152Z", fill: "#1A3846" }), _jsx("path", { d: "M75.1422 10.6808L74.2913 11.5317L84.797 22.0375L85.648 21.1865L75.1422 10.6808Z", fill: "#1A3846" }), _jsx("path", { d: "M84.797 10.6857L74.2913 21.1914L75.1422 22.0424L85.648 11.5366L84.797 10.6857Z", fill: "#1A3846" }), _jsx("path", { d: "M85.8242 32.7236H74.1098V21.0093H85.8242V32.7236ZM75.3197 31.5202H84.6207V22.2191H75.3197V31.5202Z", fill: "#1A3846" }), _jsx("path", { d: "M75.1428 21.192L74.2918 22.043L84.7976 32.5487L85.6485 31.6978L75.1428 21.192Z", fill: "#1A3846" }), _jsx("path", { d: "M84.8041 21.1964L74.2984 31.7021L75.1493 32.5531L85.6551 22.0474L84.8041 21.1964Z", fill: "#1A3846" }), _jsx("path", { d: "M85.8242 43.2338H74.1098V31.5259H85.8242V43.2338ZM75.3197 42.0304H84.6207V32.7293H75.3197V42.0304Z", fill: "#1A3846" }), _jsx("path", { d: "M75.1452 31.6925L74.2943 32.5435L84.8 43.0492L85.651 42.1982L75.1452 31.6925Z", fill: "#1A3846" }), _jsx("path", { d: "M84.8 31.6969L74.2943 42.2026L75.1452 43.0536L85.651 32.5479L84.8 31.6969Z", fill: "#1A3846" }), _jsx("path", { d: "M85.8242 53.7387H74.1098V42.0308H85.8242V53.7387ZM75.3197 52.5353H84.6207V43.2342H75.3197V52.5353Z", fill: "#1A3846" }), _jsx("path", { d: "M75.1454 42.2037L74.2945 43.0547L84.8002 53.5604L85.6512 52.7095L75.1454 42.2037Z", fill: "#1A3846" }), _jsx("path", { d: "M84.7958 42.2111L74.2901 52.7168L75.1411 53.5678L85.6468 43.062L84.7958 42.2111Z", fill: "#1A3846" }), _jsx("path", { d: "M85.8242 64.2495H74.1098V52.5352H85.8242V64.2495ZM75.3197 63.0461H84.6207V53.745H75.3197V63.0461Z", fill: "#1A3846" }), _jsx("path", { d: "M75.1415 52.7106L74.2906 53.5615L84.7963 64.0673L85.6473 63.2163L75.1415 52.7106Z", fill: "#1A3846" }), _jsx("path", { d: "M84.8024 52.7218L74.2967 63.2275L75.1476 64.0785L85.6534 53.5728L84.8024 52.7218Z", fill: "#1A3846" }), _jsx("path", { d: "M85.8242 74.7538H74.1098V63.0459H85.8242V74.7538ZM75.3197 73.5504H84.6207V64.2493H75.3197V73.5504Z", fill: "#1A3846" }), _jsx("path", { d: "M75.1482 63.2218L74.2972 64.0728L84.803 74.5785L85.654 73.7275L75.1482 63.2218Z", fill: "#1A3846" }), _jsx("path", { d: "M84.7983 63.2286L74.2925 73.7344L75.1435 74.5853L85.6492 64.0796L84.7983 63.2286Z", fill: "#1A3846" }), _jsx("path", { d: "M85.8242 85.2587H74.1098V73.5508H85.8242V85.2587ZM75.3197 84.0553H84.6207V74.7542H75.3197V84.0553Z", fill: "#1A3846" }), _jsx("path", { d: "M75.1441 73.7223L74.2931 74.5732L84.7988 85.079L85.6498 84.228L75.1441 73.7223Z", fill: "#1A3846" }), _jsx("path", { d: "M84.7988 73.734L74.2931 84.2397L75.1441 85.0907L85.6498 74.585L84.7988 73.734Z", fill: "#1A3846" }), _jsx("path", { d: "M85.8242 95.7695H74.1098V84.0615H85.8242V95.7695ZM75.3197 94.566H84.6207V85.265H75.3197V94.566Z", fill: "#1A3846" }), _jsx("path", { d: "M75.14 84.2291L74.2891 85.0801L84.7948 95.5858L85.6458 94.7349L75.14 84.2291Z", fill: "#1A3846" }), _jsx("path", { d: "M84.8014 84.2403L74.2956 94.7461L75.1466 95.5971L85.6523 85.0913L84.8014 84.2403Z", fill: "#1A3846" }), _jsx("path", { d: "M85.8242 106.274H74.1098V94.5659H85.8242V106.274ZM75.3197 105.07H84.6207V95.7694H75.3197V105.07Z", fill: "#1A3846" }), _jsx("path", { d: "M75.147 94.7408L74.2961 95.5918L84.8018 106.098L85.6528 105.247L75.147 94.7408Z", fill: "#1A3846" }), _jsx("path", { d: "M84.8014 94.7441L74.2938 105.248L75.1446 106.099L85.6522 95.5952L84.8014 94.7441Z", fill: "#1A3846" }), _jsx("path", { d: "M106.737 22.0591H95.029V10.3447H106.737V22.0591ZM96.2324 20.8556H105.534V11.5546H96.2324V20.8556Z", fill: "#1A3846" }), _jsx("path", { d: "M105.702 10.5276L95.1984 21.0352L96.0495 21.886L106.553 11.3784L105.702 10.5276Z", fill: "#1A3846" }), _jsx("path", { d: "M96.0516 10.525L95.2007 11.376L105.706 21.8817L106.557 21.0308L96.0516 10.525Z", fill: "#1A3846" }), _jsx("path", { d: "M96.2264 22.0591H84.5184V10.3447H96.2264V22.0591ZM85.7219 20.8556H95.0229V11.5546H85.7219V20.8556Z", fill: "#1A3846" }), _jsx("path", { d: "M95.1968 10.5251L84.6929 21.0327L85.544 21.8835L96.048 11.3759L95.1968 10.5251Z", fill: "#1A3846" }), _jsx("path", { d: "M85.5401 10.5255L84.6891 11.3765L95.1949 21.8822L96.0459 21.0313L85.5401 10.5255Z", fill: "#1A3846" }), _jsx("path", { d: "M85.7216 22.0591H74.0137V10.3447H85.7216V22.0591ZM75.2171 20.8556H84.5182V11.5546H75.2171V20.8556Z", fill: "#1A3846" }), _jsx("path", { d: "M75.211 22.0591H63.503V10.3447H75.211V22.0591ZM64.7065 20.8556H74.0075V11.5546H64.7065V20.8556Z", fill: "#1A3846" }), _jsx("path", { d: "M74.1831 10.5236L63.6774 21.0293L64.5284 21.8803L75.0341 11.3745L74.1831 10.5236Z", fill: "#1A3846" }), _jsx("path", { d: "M64.5331 10.5235L63.6821 11.3745L74.1878 21.8803L75.0388 21.0293L64.5331 10.5235Z", fill: "#1A3846" }), _jsx("path", { d: "M64.7064 22.0591H52.9984V10.3447H64.7064V22.0591ZM54.2019 20.8556H63.5029V11.5546H54.2019V20.8556Z", fill: "#1A3846" }), _jsx("path", { d: "M63.6719 10.5236L53.1662 21.0293L54.0172 21.8803L64.5229 11.3745L63.6719 10.5236Z", fill: "#1A3846" }), _jsx("path", { d: "M54.0219 10.5299L53.1709 11.3809L63.6766 21.8866L64.5276 21.0356L54.0219 10.5299Z", fill: "#1A3846" }), _jsx("path", { d: "M54.1956 22.0591H42.4876V10.3447H54.1956V22.0591ZM43.6911 20.8556H52.9921V11.5546H43.6911V20.8556Z", fill: "#1A3846" }), _jsx("path", { d: "M43.0893 22.0585H32.5848C32.3416 22.0585 32.1239 21.9113 32.0279 21.6872C31.9319 21.4632 31.9895 21.2007 32.1559 21.0343L42.6604 10.5298L43.5118 11.3812L34.0315 20.8615H42.8333L53.1649 10.5298L54.0163 11.3812L43.5118 21.8857C43.3966 22.0009 43.2429 22.0649 43.0893 22.0649V22.0585Z", fill: "#1A3846" }), _jsx("path", { d: "M43.5147 10.526L42.6638 11.377L53.1695 21.8827L54.0205 21.0317L43.5147 10.526Z", fill: "#1A3846" }), _jsx("path", { d: "M86.0033 117.976H73.9625V106.268H86.0033V117.976ZM75.2043 116.772H84.7678V107.471H75.2043V116.772Z", fill: "#1A3846" }), _jsx("path", { d: "M84.9471 117.796L74.1481 107.291L75.0187 106.44L85.824 116.944L84.9471 117.796Z", fill: "#1A3846" }), _jsx("path", { d: "M75.0187 117.796L74.1481 116.944L84.9471 106.44L85.824 107.291L75.0187 117.796Z", fill: "#1A3846" }), _jsx("path", { d: "M86.0033 160H73.9625V148.292H86.0033V160ZM75.2043 158.796H84.7678V149.495H75.2043V158.796Z", fill: "#1A3846" }), _jsx("path", { d: "M84.9471 159.827L74.1481 149.316L75.0187 148.471L85.824 158.976L84.9471 159.827Z", fill: "#1A3846" }), _jsx("path", { d: "M75.0187 159.827L74.1481 158.976L84.9471 148.471L85.824 149.316L75.0187 159.827Z", fill: "#1A3846" }), _jsx("path", { d: "M86.0033 127.488H73.9625V115.78H86.0033V127.488ZM75.2043 126.284H84.7678V116.983H75.2043V126.284Z", fill: "#1A3846" }), _jsx("path", { d: "M84.9471 127.309L74.1481 116.804L75.0187 115.953L85.824 126.458L84.9471 127.309Z", fill: "#1A3846" }), _jsx("path", { d: "M75.0187 127.309L74.1481 126.458L84.9471 115.953L85.824 116.804L75.0187 127.309Z", fill: "#1A3846" }), _jsx("path", { d: "M86.0033 137.992H73.9625V126.284H86.0033V137.992ZM75.2043 136.789H84.7678V127.488H75.2043V136.789Z", fill: "#1A3846" }), _jsx("path", { d: "M84.9471 137.82L74.1481 127.309L75.0187 126.458L85.824 136.968L84.9471 137.82Z", fill: "#1A3846" }), _jsx("path", { d: "M75.0187 137.82L74.1481 136.968L84.9471 126.458L85.824 127.309L75.0187 137.82Z", fill: "#1A3846" }), _jsx("path", { d: "M86.0033 148.497H73.9625V136.789H86.0033V148.497ZM75.2043 147.294H84.7678V137.993H75.2043V147.294Z", fill: "#1A3846" }), _jsx("path", { d: "M84.9471 148.324L74.1481 137.82L75.0187 136.968L85.824 147.473L84.9471 148.324Z", fill: "#1A3846" }), _jsx("path", { d: "M75.0187 148.324L74.1481 147.473L84.9471 136.968L85.824 137.82L75.0187 148.324Z", fill: "#1A3846" }), _jsx("path", { d: "M8.3732 65.1426L15.8577 60.812V69.4404L8.3732 73.7546V65.1426Z", fill: "#1A3846" }), _jsx("path", { d: "M15.8576 69.4404V60.812L23.3257 65.1426V73.7546L15.8576 69.4404Z", fill: "#1A3846" }), _jsx("path", { d: "M15.8577 95.3581V86.7134L8.3732 91.0276V99.656L15.8577 95.3581Z", fill: "#1A3846" }), _jsx("path", { d: "M23.3259 99.6563L15.8577 95.3584L8.3732 99.6563L15.8577 103.954L23.3259 99.6563Z", fill: "#1A3846" }), _jsx("path", { d: "M23.2931 99.6567L30.7612 103.955V95.3589L23.2931 91.0283V99.6567Z", fill: "#1A3846" }), _jsx("path", { d: "M30.7614 95.3589V103.955L38.2459 99.6567V91.0283L30.7614 95.3589Z", fill: "#1A3846" }), _jsx("path", { d: "M8.37312 82.416V91.0281L0.904968 86.7139L0.904968 78.0854L8.37312 82.416Z", fill: "#1A3846" }), _jsx("path", { d: "M15.8576 78.085L8.37312 82.4155L0.904968 78.085L8.37312 73.7871L15.8576 78.085Z", fill: "#1A3846" }), _jsx("path", { d: "M38.2459 73.7546L30.7614 78.0852V69.4404L38.2459 65.1099V73.7546Z", fill: "#1A3846" }), _jsx("path", { d: "M38.2457 65.1099L30.7612 69.4404L23.2931 65.1099L30.7612 60.812L38.2457 65.1099Z", fill: "#1A3846" }), _jsx("path", { d: "M45.7139 78.0859L38.2457 73.7554V82.3838L45.7139 86.698V78.0859Z", fill: "#1A3846" }), _jsx("path", { d: "M45.714 86.697L38.2459 82.3828L30.7614 86.697L38.2459 91.0276L45.714 86.697Z", fill: "#1A3846" })] }));
|
|
4
|
+
};
|
|
5
|
+
export default UnderImprovementSVG;
|
|
6
|
+
//# sourceMappingURL=under-improvement.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"under-improvement.js","sourceRoot":"","sources":["../../../../../src/ui-helper/notifications/images/under-improvement.tsx"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
const findFormControlError = (controls, condition) => {
|
|
2
|
+
if (!controls)
|
|
3
|
+
return false;
|
|
4
|
+
for (const control of Object.values(controls)) {
|
|
5
|
+
const formControl = control.control;
|
|
6
|
+
let hasError = !!control.error;
|
|
7
|
+
if (condition === "expert") {
|
|
8
|
+
hasError =
|
|
9
|
+
hasError &&
|
|
10
|
+
control?.["custom-attributes"]?.visibility?.form === "expert";
|
|
11
|
+
}
|
|
12
|
+
if (formControl === "list") {
|
|
13
|
+
hasError = control.items?.some((item) => findFormControlError(item, condition));
|
|
14
|
+
}
|
|
15
|
+
if (formControl === "group") {
|
|
16
|
+
hasError = findFormControlError(control.controls, condition);
|
|
17
|
+
}
|
|
18
|
+
if (hasError)
|
|
19
|
+
return hasError;
|
|
20
|
+
}
|
|
21
|
+
return false;
|
|
22
|
+
};
|
|
23
|
+
export default findFormControlError;
|
|
24
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/utils/findFormControlError/index.ts"],"names":[],"mappings":"AAIA,MAAM,oBAAoB,GAAG,CAC3B,QAAsB,EACtB,SAAqB,EACrB,EAAE;IACF,IAAI,CAAC,QAAQ;QAAE,OAAO,KAAK,CAAC;IAE5B,KAAK,MAAM,OAAO,IAAI,MAAM,CAAC,MAAM,CAAC,QAAQ,CAAC,EAAE,CAAC;QAC9C,MAAM,WAAW,GAAG,OAAO,CAAC,OAAO,CAAC;QACpC,IAAI,QAAQ,GAAG,CAAC,CAAC,OAAO,CAAC,KAAK,CAAC;QAC/B,IAAI,SAAS,KAAK,QAAQ,EAAE,CAAC;YAC3B,QAAQ;gBACN,QAAQ;oBACR,OAAO,EAAE,CAAC,mBAAmB,CAAC,EAAE,UAAU,EAAE,IAAI,KAAK,QAAQ,CAAC;QAClE,CAAC;QAED,IAAI,WAAW,KAAK,MAAM,EAAE,CAAC;YAC3B,QAAQ,GAAG,OAAO,CAAC,KAAK,EAAE,IAAI,CAAC,CAAC,IAAI,EAAE,EAAE,CACtC,oBAAoB,CAAC,IAAI,EAAE,SAAS,CAAC,CACtC,CAAC;QACJ,CAAC;QAED,IAAI,WAAW,KAAK,OAAO,EAAE,CAAC;YAC5B,QAAQ,GAAG,oBAAoB,CAAC,OAAO,CAAC,QAAQ,EAAE,SAAS,CAAC,CAAC;QAC/D,CAAC;QAED,IAAI,QAAQ;YAAE,OAAO,QAAQ,CAAC;IAChC,CAAC;IAED,OAAO,KAAK,CAAC;AACf,CAAC,CAAC;AAEF,eAAe,oBAAoB,CAAC"}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
export const isGroupRequired = ({ controls, }) => {
|
|
2
|
+
for (const fieldName in controls) {
|
|
3
|
+
const field = controls[fieldName];
|
|
4
|
+
if (field.required && field.value) {
|
|
5
|
+
return true;
|
|
6
|
+
}
|
|
7
|
+
if (field.control === "list" && field.items) {
|
|
8
|
+
for (const item of field.items) {
|
|
9
|
+
if (isGroupRequired({ controls: item })) {
|
|
10
|
+
return true;
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
if (field.control === "group" && field.controls) {
|
|
15
|
+
if (isGroupRequired({ controls: field.controls })) {
|
|
16
|
+
return true;
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
return false;
|
|
21
|
+
};
|
|
22
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/utils/hasGroupRequiredFieldsWithValues/index.ts"],"names":[],"mappings":"AAMA,MAAM,CAAC,MAAM,eAAe,GAAG,CAAC,EAC9B,QAAQ,GACa,EAAW,EAAE;IAClC,KAAK,MAAM,SAAS,IAAI,QAAQ,EAAE,CAAC;QACjC,MAAM,KAAK,GAAG,QAAQ,CAAC,SAAS,CAAC,CAAC;QAElC,IAAI,KAAK,CAAC,QAAQ,IAAI,KAAK,CAAC,KAAK,EAAE,CAAC;YAClC,OAAO,IAAI,CAAC;QACd,CAAC;QAED,IAAI,KAAK,CAAC,OAAO,KAAK,MAAM,IAAI,KAAK,CAAC,KAAK,EAAE,CAAC;YAC5C,KAAK,MAAM,IAAI,IAAI,KAAK,CAAC,KAAK,EAAE,CAAC;gBAC/B,IAAI,eAAe,CAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC,EAAE,CAAC;oBACxC,OAAO,IAAI,CAAC;gBACd,CAAC;YACH,CAAC;QACH,CAAC;QAED,IAAI,KAAK,CAAC,OAAO,KAAK,OAAO,IAAI,KAAK,CAAC,QAAQ,EAAE,CAAC;YAChD,IAAI,eAAe,CAAC,EAAE,QAAQ,EAAE,KAAK,CAAC,QAAQ,EAAE,CAAC,EAAE,CAAC;gBAClD,OAAO,IAAI,CAAC;YACd,CAAC;QACH,CAAC;IACH,CAAC;IAED,OAAO,KAAK,CAAC;AACf,CAAC,CAAC"}
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
.form-control {
|
|
2
|
+
font-size: 14px;
|
|
3
|
+
font-weight: 400;
|
|
4
|
+
box-sizing: border-box;
|
|
5
|
+
display: block;
|
|
6
|
+
width: 100%;
|
|
7
|
+
height: 40px;
|
|
8
|
+
padding: 6px 12px;
|
|
9
|
+
font-size: 14px;
|
|
10
|
+
line-height: 1.42857143;
|
|
11
|
+
color: rgba(0, 0, 0, 0.54) !important;
|
|
12
|
+
background-color: #fff;
|
|
13
|
+
background-image: none;
|
|
14
|
+
border: 1px solid #ccc;
|
|
15
|
+
border-radius: 4px;
|
|
16
|
+
-webkit-transition: border-color ease-in-out 0.15s;
|
|
17
|
+
-o-transition: border-color ease-in-out 0.15s;
|
|
18
|
+
transition: border-color ease-in-out 0.15s;
|
|
19
|
+
box-shadow: none !important;
|
|
20
|
+
|
|
21
|
+
&:focus {
|
|
22
|
+
outline: 0;
|
|
23
|
+
}
|
|
24
|
+
&::-moz-placeholder {
|
|
25
|
+
color: #999;
|
|
26
|
+
opacity: 1;
|
|
27
|
+
}
|
|
28
|
+
&:-ms-input-placeholder {
|
|
29
|
+
color: #999;
|
|
30
|
+
}
|
|
31
|
+
&::-webkit-input-placeholder {
|
|
32
|
+
color: #999;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
&:hover,
|
|
36
|
+
&:focus {
|
|
37
|
+
border: 1px solid rgba(0, 0, 0, 0.87);
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
&[readonly] {
|
|
41
|
+
background-color: #e0e0e033;
|
|
42
|
+
cursor: not-allowed;
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.daterangequerycontainer {
|
|
47
|
+
position: relative;
|
|
48
|
+
display: flex;
|
|
49
|
+
justify-content: space-between;
|
|
50
|
+
flex-wrap: wrap;
|
|
51
|
+
width: 100%;
|
|
52
|
+
min-height: 40px;
|
|
53
|
+
column-gap: 15px;
|
|
54
|
+
row-gap: 5px;
|
|
55
|
+
|
|
56
|
+
@container (min-width: 400px) {
|
|
57
|
+
flex-wrap: nowrap;
|
|
58
|
+
}
|
|
59
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { scopedPreflightStyles, isolateInsideOfContainer, } from "tailwindcss-scoped-preflight";
|
|
2
|
+
/** @type {import('tailwindcss').Config} */
|
|
3
|
+
module.exports = {
|
|
4
|
+
content: ["./src/**/*.{html,js,ts,jsx,tsx}"],
|
|
5
|
+
theme: {
|
|
6
|
+
extend: {},
|
|
7
|
+
},
|
|
8
|
+
plugins: [
|
|
9
|
+
scopedPreflightStyles({
|
|
10
|
+
isolationStrategy: isolateInsideOfContainer("#twp"),
|
|
11
|
+
}),
|
|
12
|
+
],
|
|
13
|
+
// corePlugins: {
|
|
14
|
+
// preflight: false, // Deaktiviert die globalen Reset-Stile
|
|
15
|
+
// },
|
|
16
|
+
};
|
|
17
|
+
//# sourceMappingURL=tailwind.config.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"tailwind.config.js","sourceRoot":"","sources":["../tailwind.config.js"],"names":[],"mappings":"AAAA,OAAO,EACL,qBAAqB,EACrB,wBAAwB,GACzB,MAAM,8BAA8B,CAAC;AAEtC,2CAA2C;AAC3C,MAAM,CAAC,OAAO,GAAG;IACf,OAAO,EAAE,CAAC,iCAAiC,CAAC;IAC5C,KAAK,EAAE;QACL,MAAM,EAAE,EAAE;KACX;IACD,OAAO,EAAE;QACP,qBAAqB,CAAC;YACpB,iBAAiB,EAAE,wBAAwB,CAAC,MAAM,CAAC;SACpD,CAAC;KACH;IACD,iBAAiB;IACjB,8DAA8D;IAC9D,KAAK;CACN,CAAC"}
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
import ESLintPlugin = require("eslint-webpack-plugin");
|
|
2
|
+
export let entry: string;
|
|
3
|
+
export let plugins: ESLintPlugin[];
|
|
4
|
+
export let devtool: string;
|
|
5
|
+
export namespace module {
|
|
6
|
+
let rules: ({
|
|
7
|
+
test: RegExp;
|
|
8
|
+
exclude: RegExp;
|
|
9
|
+
use: {
|
|
10
|
+
loader: string;
|
|
11
|
+
options: {
|
|
12
|
+
jsc: {
|
|
13
|
+
parser: {
|
|
14
|
+
syntax: string;
|
|
15
|
+
};
|
|
16
|
+
};
|
|
17
|
+
};
|
|
18
|
+
};
|
|
19
|
+
} | {
|
|
20
|
+
test: RegExp;
|
|
21
|
+
use: (string | {
|
|
22
|
+
loader: string;
|
|
23
|
+
options: {
|
|
24
|
+
postcssOptions: {
|
|
25
|
+
plugins: (import("postcss").PluginCreator<string | import("tailwindcss/types/config").Config | {
|
|
26
|
+
config: string | import("tailwindcss/types/config").Config;
|
|
27
|
+
}> | typeof import("autoprefixer"))[];
|
|
28
|
+
};
|
|
29
|
+
api?: undefined;
|
|
30
|
+
};
|
|
31
|
+
} | {
|
|
32
|
+
loader: string;
|
|
33
|
+
options: {
|
|
34
|
+
api: string;
|
|
35
|
+
postcssOptions?: undefined;
|
|
36
|
+
};
|
|
37
|
+
})[];
|
|
38
|
+
exclude?: undefined;
|
|
39
|
+
})[];
|
|
40
|
+
}
|
|
41
|
+
export namespace resolve {
|
|
42
|
+
let extensions: string[];
|
|
43
|
+
let alias: {
|
|
44
|
+
"@codemirror/state": string;
|
|
45
|
+
"lodash/kebabCase": string;
|
|
46
|
+
};
|
|
47
|
+
}
|
|
48
|
+
export namespace externals {
|
|
49
|
+
let react: string;
|
|
50
|
+
}
|
|
51
|
+
export namespace output {
|
|
52
|
+
namespace library {
|
|
53
|
+
let type: string;
|
|
54
|
+
}
|
|
55
|
+
let globalObject: string;
|
|
56
|
+
let filename: string;
|
|
57
|
+
let path: string;
|
|
58
|
+
}
|
|
59
|
+
export namespace optimization {
|
|
60
|
+
let removeEmptyChunks: boolean;
|
|
61
|
+
let removeAvailableModules: boolean;
|
|
62
|
+
let usedExports: boolean;
|
|
63
|
+
}
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
const path = require("path");
|
|
2
|
+
const ESLintPlugin = require("eslint-webpack-plugin");
|
|
3
|
+
module.exports = {
|
|
4
|
+
entry: "./src/index.ts",
|
|
5
|
+
plugins: [
|
|
6
|
+
new ESLintPlugin({
|
|
7
|
+
context: "src",
|
|
8
|
+
extensions: ["tsx", "jsx", "ts", "js"],
|
|
9
|
+
}),
|
|
10
|
+
],
|
|
11
|
+
devtool: "source-map",
|
|
12
|
+
module: {
|
|
13
|
+
rules: [
|
|
14
|
+
{
|
|
15
|
+
test: /\.(js|ts|jsx|tsx)$/,
|
|
16
|
+
exclude: /(node_modules|bower_components)/,
|
|
17
|
+
use: {
|
|
18
|
+
loader: "swc-loader",
|
|
19
|
+
options: {
|
|
20
|
+
jsc: {
|
|
21
|
+
parser: {
|
|
22
|
+
syntax: "typescript",
|
|
23
|
+
},
|
|
24
|
+
},
|
|
25
|
+
},
|
|
26
|
+
},
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
test: /\.s?[a?c]ss$/i,
|
|
30
|
+
use: [
|
|
31
|
+
"style-loader",
|
|
32
|
+
"css-loader",
|
|
33
|
+
{
|
|
34
|
+
loader: "postcss-loader",
|
|
35
|
+
options: {
|
|
36
|
+
postcssOptions: {
|
|
37
|
+
plugins: [require("tailwindcss"), require("autoprefixer")],
|
|
38
|
+
},
|
|
39
|
+
},
|
|
40
|
+
},
|
|
41
|
+
"postcss-loader",
|
|
42
|
+
{
|
|
43
|
+
loader: "sass-loader",
|
|
44
|
+
options: {
|
|
45
|
+
api: "modern",
|
|
46
|
+
},
|
|
47
|
+
},
|
|
48
|
+
],
|
|
49
|
+
},
|
|
50
|
+
],
|
|
51
|
+
},
|
|
52
|
+
resolve: {
|
|
53
|
+
extensions: [".tsx", ".jsx", ".ts", ".js"],
|
|
54
|
+
alias: {
|
|
55
|
+
"@codemirror/state": path.resolve(__dirname, "node_modules/@codemirror/state"),
|
|
56
|
+
"lodash/kebabCase": path.resolve(__dirname, "node_modules/lodash/kebabCase.js"),
|
|
57
|
+
},
|
|
58
|
+
},
|
|
59
|
+
externals: {
|
|
60
|
+
react: "react",
|
|
61
|
+
},
|
|
62
|
+
output: {
|
|
63
|
+
library: {
|
|
64
|
+
type: "umd",
|
|
65
|
+
},
|
|
66
|
+
globalObject: "this",
|
|
67
|
+
filename: "formbuilder.js",
|
|
68
|
+
path: path.resolve(__dirname, "../../service-entity/webclient/src/js/lib"), // ../../service-entity/webclient/src/js/lib
|
|
69
|
+
},
|
|
70
|
+
optimization: {
|
|
71
|
+
removeEmptyChunks: true,
|
|
72
|
+
removeAvailableModules: true,
|
|
73
|
+
usedExports: true,
|
|
74
|
+
},
|
|
75
|
+
};
|
|
76
|
+
//# sourceMappingURL=webpack.common.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"webpack.common.js","sourceRoot":"","sources":["../webpack.common.js"],"names":[],"mappings":"AAAA,MAAM,IAAI,GAAG,OAAO,CAAC,MAAM,CAAC,CAAC;AAC7B,MAAM,YAAY,GAAG,OAAO,CAAC,uBAAuB,CAAC,CAAC;AAEtD,MAAM,CAAC,OAAO,GAAG;IACf,KAAK,EAAE,gBAAgB;IACvB,OAAO,EAAE;QACP,IAAI,YAAY,CAAC;YACf,OAAO,EAAE,KAAK;YACd,UAAU,EAAE,CAAC,KAAK,EAAE,KAAK,EAAE,IAAI,EAAE,IAAI,CAAC;SACvC,CAAC;KACH;IACD,OAAO,EAAE,YAAY;IACrB,MAAM,EAAE;QACN,KAAK,EAAE;YACL;gBACE,IAAI,EAAE,oBAAoB;gBAC1B,OAAO,EAAE,iCAAiC;gBAC1C,GAAG,EAAE;oBACH,MAAM,EAAE,YAAY;oBACpB,OAAO,EAAE;wBACP,GAAG,EAAE;4BACH,MAAM,EAAE;gCACN,MAAM,EAAE,YAAY;6BACrB;yBACF;qBACF;iBACF;aACF;YACD;gBACE,IAAI,EAAE,eAAe;gBACrB,GAAG,EAAE;oBACH,cAAc;oBACd,YAAY;oBACZ;wBACE,MAAM,EAAE,gBAAgB;wBACxB,OAAO,EAAE;4BACP,cAAc,EAAE;gCACd,OAAO,EAAE,CAAC,OAAO,CAAC,aAAa,CAAC,EAAE,OAAO,CAAC,cAAc,CAAC,CAAC;6BAC3D;yBACF;qBACF;oBACD,gBAAgB;oBAChB;wBACE,MAAM,EAAE,aAAa;wBACrB,OAAO,EAAE;4BACP,GAAG,EAAE,QAAQ;yBACd;qBACF;iBACF;aACF;SACF;KACF;IACD,OAAO,EAAE;QACP,UAAU,EAAE,CAAC,MAAM,EAAE,MAAM,EAAE,KAAK,EAAE,KAAK,CAAC;QAC1C,KAAK,EAAE;YACL,mBAAmB,EAAE,IAAI,CAAC,OAAO,CAC/B,SAAS,EACT,gCAAgC,CACjC;YACD,kBAAkB,EAAE,IAAI,CAAC,OAAO,CAAC,SAAS,EAAE,kCAAkC,CAAC;SAChF;KACF;IACD,SAAS,EAAE;QACT,KAAK,EAAE,OAAO;KACf;IACD,MAAM,EAAE;QACN,OAAO,EAAE;YACP,IAAI,EAAE,KAAK;SACZ;QACD,YAAY,EAAE,MAAM;QACpB,QAAQ,EAAE,gBAAgB;QAC1B,IAAI,EAAE,IAAI,CAAC,OAAO,CAAC,SAAS,EAAE,2CAA2C,CAAC,EAAE,4CAA4C;KACzH;IACD,YAAY,EAAE;QACZ,iBAAiB,EAAE,IAAI;QACvB,sBAAsB,EAAE,IAAI;QAC5B,WAAW,EAAE,IAAI;KAClB;CACF,CAAC"}
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
declare const _exports: {
|
|
2
|
+
entry: string;
|
|
3
|
+
plugins: import("eslint-webpack-plugin")[];
|
|
4
|
+
devtool: string;
|
|
5
|
+
module: {
|
|
6
|
+
rules: ({
|
|
7
|
+
test: RegExp;
|
|
8
|
+
exclude: RegExp;
|
|
9
|
+
use: {
|
|
10
|
+
loader: string;
|
|
11
|
+
options: {
|
|
12
|
+
jsc: {
|
|
13
|
+
parser: {
|
|
14
|
+
syntax: string;
|
|
15
|
+
};
|
|
16
|
+
};
|
|
17
|
+
};
|
|
18
|
+
};
|
|
19
|
+
} | {
|
|
20
|
+
test: RegExp;
|
|
21
|
+
use: (string | {
|
|
22
|
+
loader: string;
|
|
23
|
+
options: {
|
|
24
|
+
postcssOptions: {
|
|
25
|
+
plugins: (import("postcss").PluginCreator<string | import("tailwindcss/types/config").Config | {
|
|
26
|
+
config: string | import("tailwindcss/types/config").Config;
|
|
27
|
+
}> | typeof import("autoprefixer"))[];
|
|
28
|
+
};
|
|
29
|
+
api?: undefined;
|
|
30
|
+
};
|
|
31
|
+
} | {
|
|
32
|
+
loader: string;
|
|
33
|
+
options: {
|
|
34
|
+
api: string;
|
|
35
|
+
postcssOptions?: undefined;
|
|
36
|
+
};
|
|
37
|
+
})[];
|
|
38
|
+
exclude?: undefined;
|
|
39
|
+
})[];
|
|
40
|
+
};
|
|
41
|
+
resolve: {
|
|
42
|
+
extensions: string[];
|
|
43
|
+
alias: {
|
|
44
|
+
"@codemirror/state": string;
|
|
45
|
+
"lodash/kebabCase": string;
|
|
46
|
+
};
|
|
47
|
+
};
|
|
48
|
+
externals: {
|
|
49
|
+
react: string;
|
|
50
|
+
};
|
|
51
|
+
output: {
|
|
52
|
+
library: {
|
|
53
|
+
type: string;
|
|
54
|
+
};
|
|
55
|
+
globalObject: string;
|
|
56
|
+
filename: string;
|
|
57
|
+
path: string;
|
|
58
|
+
};
|
|
59
|
+
optimization: {
|
|
60
|
+
removeEmptyChunks: boolean;
|
|
61
|
+
removeAvailableModules: boolean;
|
|
62
|
+
usedExports: boolean;
|
|
63
|
+
};
|
|
64
|
+
};
|
|
65
|
+
export = _exports;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
const { merge } = require("webpack-merge");
|
|
2
|
+
const common = require("./webpack.common");
|
|
3
|
+
module.exports = merge(common, {
|
|
4
|
+
mode: "development",
|
|
5
|
+
devtool: "eval-cheap-source-map",
|
|
6
|
+
output: {
|
|
7
|
+
sourceMapFilename: "[file].map",
|
|
8
|
+
},
|
|
9
|
+
externals: ["react", "react-dom"],
|
|
10
|
+
});
|
|
11
|
+
//# sourceMappingURL=webpack.dev.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"webpack.dev.js","sourceRoot":"","sources":["../webpack.dev.js"],"names":[],"mappings":"AAAA,MAAM,EAAE,KAAK,EAAE,GAAG,OAAO,CAAC,eAAe,CAAC,CAAC;AAC3C,MAAM,MAAM,GAAG,OAAO,CAAC,kBAAkB,CAAC,CAAC;AAE3C,MAAM,CAAC,OAAO,GAAG,KAAK,CAAC,MAAM,EAAE;IAC7B,IAAI,EAAE,aAAa;IACnB,OAAO,EAAE,uBAAuB;IAChC,MAAM,EAAE;QACN,iBAAiB,EAAE,YAAY;KAChC;IACD,SAAS,EAAE,CAAC,OAAO,EAAE,WAAW,CAAC;CAClC,CAAC,CAAC"}
|